sv.po 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  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: 2010-02-03 21:54+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. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Launchpad-Export-Date: 2010-01-23 09:28+0000\n"
  18. "X-Generator: Launchpad (build Unknown)\n"
  19. #: src/DownloadEngine.cc:215
  20. msgid ""
  21. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  22. msgstr "Avslut påbörjat... Tryck ner Ctrl-C igen för att tvinga fram avslut."
  23. #: src/DownloadEngine.cc:221
  24. msgid "Emergency shutdown sequence commencing..."
  25. msgstr "Avslut tvingas..."
  26. #: src/MultiUrlRequestInfo.cc:97
  27. msgid "aria2 will resume download if the transfer is restarted."
  28. msgstr ""
  29. #: src/MultiUrlRequestInfo.cc:99
  30. msgid ""
  31. "If there are any errors, then see the log file. See '-l' option in help/man "
  32. "page for details."
  33. msgstr ""
  34. #: src/RequestGroupMan.cc:578
  35. msgid "Download Results:"
  36. msgstr "Nedladdningsresultat:"
  37. #: src/RequestGroupMan.cc:627
  38. msgid "Status Legend:"
  39. msgstr "Statusförklaring:"
  40. #: src/OptionHandler.cc:38
  41. msgid " Default: "
  42. msgstr " Standard: "
  43. #: src/OptionHandler.cc:39
  44. msgid " Tags: "
  45. msgstr ""
  46. #: src/OptionHandler.cc:40
  47. msgid " Possible Values: "
  48. msgstr ""
  49. #: src/OptionHandlerImpl.h:135
  50. msgid "must be either 'true' or 'false'."
  51. msgstr ""
  52. #: src/OptionHandlerImpl.h:169 src/OptionHandlerImpl.h:218
  53. #, c-format
  54. msgid "must be between %s and %s."
  55. msgstr "måste vara mellan %s och %s."
  56. #: src/OptionHandlerImpl.h:215
  57. #, c-format
  58. msgid "must be smaller than or equal to %s."
  59. msgstr "måste vara mindre än eller lika med %s."
  60. #: src/OptionHandlerImpl.h:221
  61. #, c-format
  62. msgid "must be greater than or equal to %s."
  63. msgstr "måste vara större än eller lika med %s."
  64. #: src/OptionHandlerImpl.h:224 src/OptionHandlerImpl.h:302
  65. msgid "must be a number."
  66. msgstr "måste vara ett numeriskt värde."
  67. #: src/OptionHandlerImpl.h:293
  68. #, c-format
  69. msgid "must be smaller than or equal to %.1f."
  70. msgstr "måste vara mindre än eller lika med %.1f."
  71. #: src/OptionHandlerImpl.h:296
  72. #, c-format
  73. msgid "must be between %.1f and %.1f."
  74. msgstr "måste vara mellan %.1f och %.1f."
  75. #: src/OptionHandlerImpl.h:299
  76. #, c-format
  77. msgid "must be greater than or equal to %.1f."
  78. msgstr "måste vara större än eller lika med %.1f."
  79. #: src/OptionHandlerImpl.h:477
  80. msgid "must be one of the following:"
  81. msgstr "måste vara ett av följande:"
  82. #: src/OptionHandlerImpl.h:526 src/OptionHandlerImpl.h:572
  83. msgid "unrecognized proxy format"
  84. msgstr "Okänt format för proxy."
  85. #: src/usage_text.h:37
  86. msgid ""
  87. " -d, --dir=DIR The directory to store the downloaded file."
  88. msgstr ""
  89. #: src/usage_text.h:39
  90. msgid ""
  91. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  92. " option is used, this option is ignored."
  93. msgstr ""
  94. #: src/usage_text.h:42
  95. msgid ""
  96. " -l, --log=LOG The file name of the log file. If '-' is\n"
  97. " specified, log is written to stdout."
  98. msgstr ""
  99. #: src/usage_text.h:45
  100. msgid ""
  101. " -D, --daemon Run as daemon. The current working directory "
  102. "will\n"
  103. " be changed to \"/\" and standard input, "
  104. "standard\n"
  105. " output and standard error will be redirected "
  106. "to\n"
  107. " \"/dev/null\"."
  108. msgstr ""
  109. #: src/usage_text.h:50
  110. msgid ""
  111. " -s, --split=N Download a file using N connections. If more\n"
  112. " than N URLs are given, first N URLs are used "
  113. "and\n"
  114. " remaining URLs are used for backup. If less "
  115. "than\n"
  116. " N URLs are given, those URLs are used more "
  117. "than\n"
  118. " once so that N connections total are made\n"
  119. " simultaneously. Please see -j option too.\n"
  120. " Please note that in Metalink download, this\n"
  121. " option has no effect and use -C option instead."
  122. msgstr ""
  123. #: src/usage_text.h:59
  124. msgid ""
  125. " --retry-wait=SEC Set the seconds to wait to retry after an "
  126. "error\n"
  127. " has occured."
  128. msgstr ""
  129. " --retry-wait=SEC Anger väntetid i sekunder efter att ett fel \n"
  130. " har inträffat."
  131. #: src/usage_text.h:62
  132. msgid " -t, --timeout=SEC Set timeout in seconds."
  133. msgstr ""
  134. #: src/usage_text.h:64
  135. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  136. msgstr ""
  137. #: src/usage_text.h:66
  138. msgid ""
  139. " --http-proxy=PROXY Use this proxy server for HTTP. 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:71
  145. msgid ""
  146. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  147. " previously defined proxy, use \"\".\n"
  148. " See also --all-proxy option.\n"
  149. " This affects all URLs."
  150. msgstr ""
  151. #: src/usage_text.h:76
  152. msgid ""
  153. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  154. "previously\n"
  155. " defined proxy, use \"\".\n"
  156. " See also --all-proxy option.\n"
  157. " This affects all URLs."
  158. msgstr ""
  159. #: src/usage_text.h:81
  160. msgid ""
  161. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  162. "erase\n"
  163. " previously defined proxy, use \"\".\n"
  164. " You can override this setting and specify a\n"
  165. " proxy server for a particular protocol using\n"
  166. " --http-proxy, --https-proxy and --ftp-proxy\n"
  167. " options.\n"
  168. " This affects all URLs."
  169. msgstr ""
  170. #: src/usage_text.h:89
  171. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  172. msgstr ""
  173. " --http-user=USER Anger HTTP-användare. Angivet värde påverkar \n"
  174. " alla URL:er."
  175. #: src/usage_text.h:91
  176. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  177. msgstr ""
  178. " --http-passwd=PASSWD Anger HTTP-lösenordet. Angivet värde påverkar\n"
  179. " alla URL:er."
  180. #: src/usage_text.h:93
  181. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  182. msgstr " --proxy-method=METHOD Anger metod vid förfrågan till proxy-server."
  183. #: src/usage_text.h:95
  184. msgid " --referer=REFERER Set Referer. This affects all URLs."
  185. msgstr ""
  186. " --referer=REFERER Anger varifrån en förfrågan kommer. Angivet värde "
  187. "påverkar alla URL:er."
  188. #: src/usage_text.h:97
  189. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  190. msgstr ""
  191. " --ftp-user=USER Anger FTP-användare. Angivet värde påverkar alla URL:er."
  192. #: src/usage_text.h:99
  193. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  194. msgstr ""
  195. " --ftp-passwd=PASSWD Anger FTP-lösenord. Angivet värde påverkar alla URL:er."
  196. #: src/usage_text.h:101
  197. msgid " --ftp-type=TYPE Set FTP transfer type."
  198. msgstr " --ftp-type=TYPE Anger överföringstyp."
  199. #: src/usage_text.h:103
  200. msgid ""
  201. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  202. "given,\n"
  203. " the active mode will be used."
  204. msgstr ""
  205. " -p, --ftp-pasv[=true|false] Anger om FTP-anslutningen ska vara i passivt \n"
  206. " läge eller ej. Värdet false innebär att "
  207. "aktivt \n"
  208. " läge används."
  209. #: src/usage_text.h:106
  210. msgid ""
  211. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  212. "than\n"
  213. " or equal to this value(bytes per sec).\n"
  214. " 0 means aria2 does not have a lowest speed "
  215. "limit.\n"
  216. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  217. " This option does not affect BitTorrent "
  218. "downloads."
  219. msgstr ""
  220. " --lowest-speed-limit=SPEED Stäng anslutningen om nedladdningshastigheten \n"
  221. " är lägre än eller lika med detta värde "
  222. "(antal \n"
  223. " bytes per sekund). Värdet 0 innebär att "
  224. "aria2 \n"
  225. " inte har någon lägsta nedladdningshastighet. \n"
  226. " Du kan avsluta värdet med ett K eller M \n"
  227. " (1K = 1024 bytes, 1M = 1024K). Detta värde \n"
  228. " påverkar inte BitTorrent-nedladdningar."
  229. #: src/usage_text.h:112
  230. msgid ""
  231. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  232. "sec.\n"
  233. " 0 means unrestricted.\n"
  234. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  235. " To limit the download speed per download, use\n"
  236. " --max-download-limit option."
  237. msgstr ""
  238. " --max-overall-download-limit=SPEED Anger den högsta tillåtna \n"
  239. " nedladdningshastigheten överlag i antal bytes "
  240. "per \n"
  241. " sekund. Värdet 0 är detsamma som obegränsad \n"
  242. " hastighet. Du kan avsluta med ett K eller M \n"
  243. " (1K = 1024 bytes, 1M = 1024K). För att "
  244. "begränsa \n"
  245. " nedladdningshastigheten per nedladdning, "
  246. "använd \n"
  247. " alternativet: --max-download-limit."
  248. #: src/usage_text.h:118
  249. msgid ""
  250. " --max-download-limit=SPEED Set max download speed per each download in\n"
  251. " bytes/sec. 0 means unrestricted.\n"
  252. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  253. " To limit the overall download speed, use\n"
  254. " --max-overall-download-limit option."
  255. msgstr ""
  256. " --max-download-limit=SPEED Anger högsta tillåtna nedladdningshastighet \n"
  257. " per nedladdning i bytes per sekund. Värdet 0 \n"
  258. " innebär en obegränsad hastighet. Du kan "
  259. "avsluta \n"
  260. " med antingen ett K eller M (1K = 1024 bytes, \n"
  261. " 1M = 1024K). För att begränsa hastigheten \n"
  262. " överlag, använd alternativet: \n"
  263. " --max-overall-download-limit."
  264. #: src/usage_text.h:124
  265. msgid ""
  266. " --file-allocation=METHOD Specify file allocation method.\n"
  267. " 'none' doesn't pre-allocate file space. "
  268. "'prealloc'\n"
  269. " pre-allocates file space before download "
  270. "begins.\n"
  271. " This may take some time depending on the size "
  272. "of\n"
  273. " the file.\n"
  274. " If you are using newer file systems such as "
  275. "ext4\n"
  276. " (with extents support), btrfs or xfs, 'falloc' "
  277. "is\n"
  278. " your best choice. It allocates large(few GiB)\n"
  279. " files almost instantly. Don't use 'falloc' "
  280. "with\n"
  281. " legacy file systems such as ext3 because it "
  282. "takes\n"
  283. " almost same time as 'prealloc' and it blocks "
  284. "aria2\n"
  285. " entirely until allocation finishes. 'falloc' "
  286. "may\n"
  287. " not be available if your system doesn't have\n"
  288. " posix_fallocate() function."
  289. msgstr ""
  290. " --file-allocation=METHOD Anger filallokeringsmetod. Värdet 'none' \n"
  291. " innebär att inget utrymme allokeras innan \n"
  292. " nedladdning. 'pre-alloc' innebär att utrymme \n"
  293. " allokeras innan nedladdningen inleds, vilket \n"
  294. " kan ta tid beroende på nedladdningsfilens \n"
  295. " storlek. 'falloc' är det bästa alternativet "
  296. "om \n"
  297. " du använder ett filsystem som ext4 (som har \n"
  298. " stöd för extents), btrfs eller xfs, eftersom \n"
  299. " det allokerar stora filer (några GiB) nästan \n"
  300. " omedelbart. Använd aldrig 'falloc' med äldre \n"
  301. " filsystem som ext3 eftersom det tar nästan "
  302. "lika \n"
  303. " lång tid som 'prealloc', vilket blockerar "
  304. "aria2 \n"
  305. " under hela förallokeringsprocessen. Det kan \n"
  306. " hända att 'falloc' inte kan användas om ditt \n"
  307. " system inte har funktionen: posix_fallocate()."
  308. #: src/usage_text.h:139
  309. msgid ""
  310. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  311. " size is smaller than SIZE.\n"
  312. " You can append K or M(1K = 1024, 1M = 1024K)."
  313. msgstr ""
  314. " --no-file-allocation-limit=SIZE Ingen filallokering görs för filer mindre "
  315. "än \n"
  316. " SIZE. Du kan avsluta med K eller M (1K = "
  317. "1024 \n"
  318. " bytes, 1M = 1024K)."
  319. #: src/usage_text.h:143
  320. msgid ""
  321. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  322. "while\n"
  323. " allocating files.\n"
  324. " Turn off if you encounter any error"
  325. msgstr ""
  326. " --enable-direct-io[=true|false] Aktiverar direktöverföring, vilket "
  327. "minskar \n"
  328. " användningen av processorn när filer "
  329. "allokeras. \n"
  330. " Använd 'false' om du får problem med \n"
  331. " nedladdningen."
  332. #: src/usage_text.h:147
  333. #, fuzzy
  334. msgid ""
  335. " --allow-overwrite=true|false Restart download from scratch if the\n"
  336. " corresponding control file doesn't exist. "
  337. "See\n"
  338. " also --auto-file-renaming option."
  339. msgstr ""
  340. " --allow-overwrite[=true|false] Om 'false' används och filen redan "
  341. "existerar \n"
  342. " men tillhörande kontrollfil (filenamn.aria2) \n"
  343. " fattas kommer inte aria2 att ladda ner filen "
  344. "på \n"
  345. " nytt. Se även alternativet: \n"
  346. " --auto-file-renaming."
  347. #: src/usage_text.h:151
  348. msgid ""
  349. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  350. "download\n"
  351. " when a piece length is different from one in\n"
  352. " a control file. If true is given, you can "
  353. "proceed\n"
  354. " but some download progress will be lost."
  355. msgstr ""
  356. #: src/usage_text.h:156
  357. msgid ""
  358. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  359. "sequentially\n"
  360. " and download each URI in a separate session, "
  361. "like\n"
  362. " the usual command-line download utilities."
  363. msgstr ""
  364. " -Z, --force-sequential[=true|false] Hämtar URI:er från kommandoraden i "
  365. "sekvenser \n"
  366. " och laddar ner varje URI i en separat "
  367. "session, \n"
  368. " som är det vanliga beteendet för kommadorads-\n"
  369. " program."
  370. #: src/usage_text.h:160
  371. msgid ""
  372. " --auto-file-renaming[=true|false] Rename file name if the same file "
  373. "already\n"
  374. " exists. This option works only in http(s)/ftp\n"
  375. " download.\n"
  376. " The new file name has a dot and a number"
  377. "(1..9999)\n"
  378. " appended."
  379. msgstr ""
  380. " --auto-file-renaming[=true|false] Döper om filen om en fil med samma namn "
  381. "redan \n"
  382. " finns. Detta alternativ fungerar endast för \n"
  383. " http(s)/ftp-nedladdningar. Det nya filnamnet \n"
  384. " kommer att avslutas med en punkt och en "
  385. "siffra \n"
  386. " (1..9999)."
  387. #: src/usage_text.h:166
  388. msgid ""
  389. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  390. " You can specify set of parts:\n"
  391. " http://{sv1,sv2,sv3}/foo.iso\n"
  392. " Also you can specify numeric sequences with "
  393. "step\n"
  394. " counter:\n"
  395. " http://host/image[000-100:2].img\n"
  396. " A step counter can be omitted.\n"
  397. " If all URIs do not point to the same file, "
  398. "such\n"
  399. " as the second example above, -Z option is\n"
  400. " required."
  401. msgstr ""
  402. #: src/usage_text.h:177
  403. msgid ""
  404. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  405. msgstr ""
  406. #: src/usage_text.h:179
  407. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  408. msgstr ""
  409. " --enable-http-pipelining[=true|false] Aktivera stöd för samtidiga "
  410. "förfrågningar med HTTP/1.1."
  411. #: src/usage_text.h:181
  412. msgid ""
  413. " -V, --check-integrity[=true|false] Check file integrity by validating "
  414. "piece\n"
  415. " hashes. This option has effect only in "
  416. "BitTorrent\n"
  417. " and Metalink downloads with chunk checksums.\n"
  418. " Use this option to re-download a damaged "
  419. "portion\n"
  420. " of a file. See also --bt-hash-check-seed "
  421. "option."
  422. msgstr ""
  423. " -V, --check-integrity[=true|false] Bekräftar filintegriteten genom att "
  424. "validera \n"
  425. " nedladdade delar med motsvarande "
  426. "hashnycklar. \n"
  427. " Detta alternativ fungerar endast med "
  428. "BitTorrent \n"
  429. " och Metalink nedladdningar som använder \n"
  430. " checksummor för varje del. Använd detta \n"
  431. " alternativ för att ladda ner en skadad del "
  432. "av \n"
  433. " filen på nytt. Se även alternativet: \n"
  434. " --bt-hash-check-seed."
  435. #: src/usage_text.h:187
  436. msgid ""
  437. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  438. " --check-integrity option and file is "
  439. "complete,\n"
  440. " continue to seed file. If you want to check "
  441. "file\n"
  442. " and download it only when it is damaged or\n"
  443. " incomplete, set this option to false.\n"
  444. " This option has effect only on BitTorrent\n"
  445. " download."
  446. msgstr ""
  447. " --bt-hash-check-seed[=true|false] Om 'true' används kommer filen att ligga "
  448. "öppen \n"
  449. " även efter att hashnycklar verifierats med \n"
  450. " alternativet --check-integrity och filen "
  451. "laddats \n"
  452. " ner i sin helhet. Om du endast vill "
  453. "verifiera \n"
  454. " och ladda ner filen om den är skadad eller \n"
  455. " ofullständig ska du använda värdet 'false'. \n"
  456. " Detta alternativ används bara vid BitTorrent-\n"
  457. " nedladdningar."
  458. #: src/usage_text.h:195
  459. msgid ""
  460. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  461. "calculating\n"
  462. " checksum while downloading a file if chunk\n"
  463. " checksums are provided."
  464. msgstr ""
  465. " --realtime-chunk-checksum[=true|false] Validera datadelar genom att "
  466. "beräkna \n"
  467. " checksumman under nedladdningen om \n"
  468. " delchecksumman är tillgänglig."
  469. #: src/usage_text.h:199
  470. msgid ""
  471. " -c, --continue Continue downloading a partially downloaded\n"
  472. " file. Use this option to resume a download\n"
  473. " started by a web browser or another program\n"
  474. " which downloads files sequentially from the\n"
  475. " beginning. Currently this option is only\n"
  476. " applicable to http(s)/ftp downloads."
  477. msgstr ""
  478. " -c, --continue Fortsätter nedladdningen av en delvis hämtad \n"
  479. " fil. Använd det här alternativet om du vill \n"
  480. " fortsätta en nedladdning startad av en \n"
  481. " webbläsare eller annat program som laddar "
  482. "ner \n"
  483. " filer i sekvenser från filens början. För \n"
  484. " tillfället används detta alternativ endast "
  485. "vid \n"
  486. " http(s)/ftp-hämtningar."
  487. #: src/usage_text.h:206
  488. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  489. msgstr ""
  490. " -U, --user-agent=USER_AGENT Anger vilken användarklient som ska användas \n"
  491. " för http(s)-nedladdningar."
  492. #: src/usage_text.h:208
  493. msgid " -n, --no-netrc Disables netrc support."
  494. msgstr ""
  495. #: src/usage_text.h:210
  496. msgid ""
  497. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  498. " multiple URIs for a single entity: separate\n"
  499. " URIs on a single line using the TAB "
  500. "character.\n"
  501. " Reads input from stdin when '-' is specified.\n"
  502. " The additional out and dir options can be\n"
  503. " specified after each line of URIs. This "
  504. "optional\n"
  505. " line must start with white space(s). See "
  506. "INPUT\n"
  507. " FILE section of man page for details."
  508. msgstr ""
  509. #: src/usage_text.h:219
  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 -s and -C options."
  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:223
  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:226
  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:231
  544. msgid ""
  545. " -S, --show-files Print file listing of .torrent or .metalink "
  546. "file\n"
  547. " and exit. More detailed information will be "
  548. "listed\n"
  549. " in case of torrent file."
  550. msgstr ""
  551. #: src/usage_text.h:235
  552. msgid ""
  553. " --select-file=INDEX... Set file to download by specifying its index.\n"
  554. " You can find the file index using the\n"
  555. " --show-files option. Multiple indexes can be\n"
  556. " specified by using ',', for example: \"3,6\".\n"
  557. " You can also use '-' to specify a range: \"1-5"
  558. "\".\n"
  559. " ',' and '-' can be used together.\n"
  560. " When used with the -M option, index may vary\n"
  561. " depending on the query(see --metalink-* "
  562. "options)."
  563. msgstr ""
  564. " --select-file=INDEX Anger index för den fil som ska laddas ner. Du \n"
  565. " kan hitta filens index med alternativet: \n"
  566. " --show-files. Flera index kan ges genom att \n"
  567. " använda kommatecknet ',' som avskiljare. Ett \n"
  568. " exempel: \"3,6\". Du kan också ange ett "
  569. "interval \n"
  570. " genom att använda bindestrecket '-' som \n"
  571. " avskiljare: \"1-5\". ',' och '-' kan användas "
  572. "på \n"
  573. " en och samma gång. När alternativet -M är \n"
  574. " angivet kan index variera beroende på "
  575. "sökningen \n"
  576. " (se alternativen: --metalink-*)"
  577. #: src/usage_text.h:244
  578. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  579. msgstr ""
  580. #: src/usage_text.h:246
  581. msgid ""
  582. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  583. " whose suffix is .torrent or content type is\n"
  584. " application/x-bittorrent is downloaded, aria2\n"
  585. " parses it as a torrent file and downloads "
  586. "files\n"
  587. " mentioned in it.\n"
  588. " If mem is specified, a torrent file is not\n"
  589. " written to the disk, but is just kept in "
  590. "memory.\n"
  591. " If false is specified, the action mentioned "
  592. "above\n"
  593. " is not taken."
  594. msgstr ""
  595. #: src/usage_text.h:256
  596. msgid ""
  597. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  598. " mentioned in .torrent file."
  599. msgstr ""
  600. #: src/usage_text.h:259
  601. msgid ""
  602. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  603. " Multiple ports can be specified by using ',',\n"
  604. " for example: \"6881,6885\". You can also use "
  605. "'-'\n"
  606. " to specify a range: \"6881-6999\". ',' and '-' "
  607. "can\n"
  608. " be used together."
  609. msgstr ""
  610. #: src/usage_text.h:265
  611. msgid ""
  612. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  613. "sec.\n"
  614. " 0 means unrestricted.\n"
  615. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  616. " To limit the upload speed per torrent, use\n"
  617. " --max-upload-limit option."
  618. msgstr ""
  619. #: src/usage_text.h:271
  620. msgid ""
  621. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  622. " bytes/sec. 0 means unrestricted.\n"
  623. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  624. " To limit the overall upload speed, use\n"
  625. " --max-overall-upload-limit option."
  626. msgstr ""
  627. #: src/usage_text.h:277
  628. msgid ""
  629. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  630. " --seed-ratio option."
  631. msgstr ""
  632. #: src/usage_text.h:280
  633. msgid ""
  634. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  635. " until share ratio reaches RATIO.\n"
  636. " You are strongly encouraged to specify equals "
  637. "or\n"
  638. " more than 1.0 here. Specify 0.0 if you intend "
  639. "to\n"
  640. " do seeding regardless of share ratio.\n"
  641. " If --seed-time option is specified along with\n"
  642. " this option, seeding ends when at least one "
  643. "of\n"
  644. " the conditions is satisfied."
  645. msgstr ""
  646. #: src/usage_text.h:289
  647. msgid ""
  648. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  649. "in\n"
  650. " BitTorrent is 20 byte length. If more than 20\n"
  651. " bytes are specified, only first 20 bytes are\n"
  652. " used. If less than 20 bytes are specified, "
  653. "random\n"
  654. " byte data are added to make its length 20 "
  655. "bytes."
  656. msgstr ""
  657. #: src/usage_text.h:295
  658. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  659. msgstr ""
  660. #: src/usage_text.h:297
  661. msgid " --enable-dht[=true|false] Enable DHT functionality."
  662. msgstr ""
  663. #: src/usage_text.h:299
  664. msgid ""
  665. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  666. " Multiple ports can be specified by using ',',\n"
  667. " for example: \"6881,6885\". You can also use "
  668. "'-'\n"
  669. " to specify a range: \"6881-6999\". ',' and '-' "
  670. "can\n"
  671. " be used together."
  672. msgstr ""
  673. #: src/usage_text.h:305
  674. msgid ""
  675. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  676. " network."
  677. msgstr ""
  678. #: src/usage_text.h:308
  679. msgid ""
  680. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  681. msgstr ""
  682. #: src/usage_text.h:310
  683. msgid ""
  684. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  685. " If several encryption methods are provided by "
  686. "a\n"
  687. " peer, aria2 chooses the lowest one which "
  688. "satisfies\n"
  689. " the given level."
  690. msgstr ""
  691. #: src/usage_text.h:315
  692. msgid ""
  693. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  694. " establish connection with legacy BitTorrent\n"
  695. " handshake. Thus aria2 always uses Obfuscation\n"
  696. " handshake."
  697. msgstr ""
  698. #: src/usage_text.h:320
  699. msgid ""
  700. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  701. " torrent is lower than SPEED, aria2 "
  702. "temporarily\n"
  703. " increases the number of peers to try for more\n"
  704. " download speed. Configuring this option with "
  705. "your\n"
  706. " preferred download speed can increase your\n"
  707. " download speed in some cases.\n"
  708. " You can append K or M(1K = 1024, 1M = 1024K)."
  709. msgstr ""
  710. #: src/usage_text.h:328
  711. msgid ""
  712. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  713. "each\n"
  714. " BitTorrent download."
  715. msgstr ""
  716. #: src/usage_text.h:331
  717. msgid ""
  718. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  719. " verifying piece hashes."
  720. msgstr ""
  721. #: src/usage_text.h:334
  722. msgid ""
  723. " --bt-max-peers=NUM Specify the maximum number of peers per "
  724. "torrent.\n"
  725. " 0 means unlimited.\n"
  726. " See also --bt-request-peer-speed-limit option."
  727. msgstr ""
  728. #: src/usage_text.h:338
  729. msgid ""
  730. " -M, --metalink-file=METALINK_FILE The file path to the .metalink file. "
  731. "Reads\n"
  732. " input from stdin when '-' is specified."
  733. msgstr ""
  734. #: src/usage_text.h:341
  735. msgid ""
  736. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  737. " simultaneously. Some Metalinks regulate the\n"
  738. " number of servers to connect. aria2 strictly\n"
  739. " respects them. This means that if Metalink "
  740. "defines\n"
  741. " the maxconnections attribute lower than\n"
  742. " NUM_SERVERS, then aria2 uses the value of\n"
  743. " maxconnections attribute instead of "
  744. "NUM_SERVERS.\n"
  745. " See also -s and -j options."
  746. msgstr ""
  747. #: src/usage_text.h:350
  748. msgid " --metalink-version=VERSION The version of the file to download."
  749. msgstr ""
  750. #: src/usage_text.h:352
  751. msgid " --metalink-language=LANGUAGE The language of the file to download."
  752. msgstr ""
  753. #: src/usage_text.h:354
  754. msgid ""
  755. " --metalink-os=OS The operating system of the file to download."
  756. msgstr ""
  757. #: src/usage_text.h:356
  758. msgid ""
  759. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  760. " A comma-delimited list of locations is\n"
  761. " acceptable."
  762. msgstr ""
  763. #: src/usage_text.h:360
  764. msgid ""
  765. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  766. "'none'\n"
  767. " if you don't have any preferred protocol."
  768. msgstr ""
  769. #: src/usage_text.h:363
  770. msgid ""
  771. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  772. " whose suffix is .metalink or content type of\n"
  773. " application/metalink+xml is downloaded, aria2\n"
  774. " parses it as a metalink file and downloads "
  775. "files\n"
  776. " mentioned in it.\n"
  777. " If mem is specified, a metalink file is not\n"
  778. " written to the disk, but is just kept in "
  779. "memory.\n"
  780. " If false is specified, the action mentioned "
  781. "above\n"
  782. " is not taken."
  783. msgstr ""
  784. #: src/usage_text.h:373
  785. msgid ""
  786. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  787. " protocols are available for a mirror in a "
  788. "metalink\n"
  789. " file, aria2 uses one of them.\n"
  790. " Use --metalink-preferred-protocol option to\n"
  791. " specify the preference of protocol."
  792. msgstr ""
  793. #: src/usage_text.h:379
  794. msgid " -v, --version Print the version number and exit."
  795. msgstr ""
  796. #: src/usage_text.h:381
  797. msgid ""
  798. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  799. " The help messages are classified with tags. A "
  800. "tag\n"
  801. " starts with \"#\". For example, type \"--"
  802. "help=#http\"\n"
  803. " to get the usage for the options tagged with\n"
  804. " \"#http\". If non-tag word is given, print the "
  805. "usage\n"
  806. " for the options whose name includes that word."
  807. msgstr ""
  808. #: src/usage_text.h:388
  809. msgid " --no-conf Disable loading aria2.conf file."
  810. msgstr ""
  811. #: src/usage_text.h:390
  812. msgid ""
  813. " --conf-path=PATH Change the configuration file path to PATH."
  814. msgstr ""
  815. #: src/usage_text.h:392
  816. msgid ""
  817. " --stop=SEC Stop application after SEC seconds has "
  818. "passed.\n"
  819. " If 0 is given, this feature is disabled."
  820. msgstr ""
  821. #: src/usage_text.h:395
  822. msgid ""
  823. " --header=HEADER Append HEADER to HTTP request header. You can "
  824. "use\n"
  825. " this option repeatedly to specify more than "
  826. "one\n"
  827. " header:\n"
  828. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  829. "9J1\"\n"
  830. " http://host/file"
  831. msgstr ""
  832. #: src/usage_text.h:401
  833. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  834. msgstr ""
  835. #: src/usage_text.h:403
  836. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  837. msgstr ""
  838. #: src/usage_text.h:405
  839. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  840. msgstr ""
  841. #: src/usage_text.h:407
  842. msgid ""
  843. " --summary-interval=SEC Set interval to output download progress "
  844. "summary.\n"
  845. " Setting 0 suppresses the output."
  846. msgstr ""
  847. #: src/usage_text.h:410
  848. msgid " --log-level=LEVEL Set log level to output."
  849. msgstr ""
  850. #: src/usage_text.h:412
  851. msgid ""
  852. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  853. "the\n"
  854. " remote HTTP/FTP server and if it is "
  855. "available,\n"
  856. " apply it to the local file."
  857. msgstr ""
  858. #: src/usage_text.h:416
  859. msgid ""
  860. " --connect-timeout=SEC Set the connect timeout in seconds to "
  861. "establish\n"
  862. " connection to HTTP/FTP/proxy server. After "
  863. "the\n"
  864. " connection is established, this option makes "
  865. "no\n"
  866. " effect and --timeout option is used instead."
  867. msgstr ""
  868. #: src/usage_text.h:421
  869. msgid ""
  870. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  871. "the\n"
  872. " remote HTTP/FTP servers NUM times without "
  873. "getting\n"
  874. " a single byte, then force the download to "
  875. "fail.\n"
  876. " Specify 0 to disable this option.\n"
  877. " This options is effective only when using\n"
  878. " HTTP/FTP servers."
  879. msgstr ""
  880. #: src/usage_text.h:428
  881. msgid ""
  882. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  883. " If 'inorder' is given, URI is tried in the "
  884. "order\n"
  885. " appeared in the URI list.\n"
  886. " If 'feedback' is given, aria2 uses download "
  887. "speed\n"
  888. " observed in the previous downloads and choose\n"
  889. " fastest server in the URI list. This also\n"
  890. " effectively skips dead mirrors. The observed\n"
  891. " download speed is a part of performance "
  892. "profile\n"
  893. " of servers mentioned in --server-stat-of and\n"
  894. " --server-stat-if options.\n"
  895. " If 'adaptive' is given, selects one of the "
  896. "best\n"
  897. " mirrors for the first and reserved "
  898. "connections.\n"
  899. " For supplementary ones, it returns mirrors "
  900. "which\n"
  901. " has not been tested yet, and if each of them "
  902. "has\n"
  903. " already been tested, returns mirrors which has "
  904. "to\n"
  905. " be tested again. Otherwise, it doesn't select\n"
  906. " anymore mirrors. Like 'feedback', it uses a\n"
  907. " performance profile of servers."
  908. msgstr ""
  909. #: src/usage_text.h:447
  910. msgid ""
  911. " --server-stat-of=FILE Specify the filename to which performance "
  912. "profile\n"
  913. " of the servers is saved. You can load saved "
  914. "data\n"
  915. " using --server-stat-if option."
  916. msgstr ""
  917. #: src/usage_text.h:451
  918. msgid ""
  919. " --server-stat-if=FILE Specify the filename to load performance "
  920. "profile\n"
  921. " of the servers. The loaded data will be used "
  922. "in\n"
  923. " some URI selector such as 'feedback'.\n"
  924. " See also --uri-selector option"
  925. msgstr ""
  926. #: src/usage_text.h:456
  927. msgid ""
  928. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  929. " performance profile of the servers since the "
  930. "last\n"
  931. " contact to them."
  932. msgstr ""
  933. #: src/usage_text.h:460
  934. msgid ""
  935. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  936. "seconds.\n"
  937. " If 0 is given, a control file is not saved "
  938. "during\n"
  939. " download. aria2 saves a control file when it "
  940. "stops\n"
  941. " regardless of the value."
  942. msgstr ""
  943. #: src/usage_text.h:465
  944. msgid ""
  945. " --certificate=FILE Use the client certificate in FILE.\n"
  946. " The certificate must be in PEM format.\n"
  947. " You may use --private-key option to specify "
  948. "the\n"
  949. " private key."
  950. msgstr ""
  951. #: src/usage_text.h:470
  952. msgid ""
  953. " --private-key=FILE Use the private key in FILE.\n"
  954. " The private key must be decrypted and in PEM\n"
  955. " format. See also --certificate option."
  956. msgstr ""
  957. #: src/usage_text.h:474
  958. msgid ""
  959. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  960. "verify\n"
  961. " the peers. The certificate file must be in "
  962. "PEM\n"
  963. " format and can contain multiple CA "
  964. "certificates.\n"
  965. " Use --check-certificate option to enable\n"
  966. " verification."
  967. msgstr ""
  968. #: src/usage_text.h:480
  969. msgid ""
  970. " --check-certificate[=true|false] Verify the peer using certificates "
  971. "specified\n"
  972. " in --ca-certificate option."
  973. msgstr ""
  974. #: src/usage_text.h:483
  975. msgid ""
  976. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  977. "where\n"
  978. " proxy should not be used."
  979. msgstr ""
  980. #: src/usage_text.h:486
  981. msgid ""
  982. " --use-head[=true|false] Use HEAD method for the first request to the "
  983. "HTTP\n"
  984. " server."
  985. msgstr ""
  986. #: src/usage_text.h:489
  987. msgid " --event-poll=POLL Specify the method for polling events."
  988. msgstr ""
  989. #: src/usage_text.h:491
  990. msgid ""
  991. " --xml-rpc-listen-port=PORT Specify a port number for XML-RPC server to "
  992. "listen\n"
  993. " to."
  994. msgstr ""
  995. #: src/usage_text.h:494
  996. msgid ""
  997. " --enable-xml-rpc[=true|false] Enable XML-RPC server.\n"
  998. " It is strongly recommended to set username "
  999. "and\n"
  1000. " password using --xml-rpc-user and --xml-rpc-"
  1001. "passwd\n"
  1002. " option. See also --xml-rpc-listen-port option."
  1003. msgstr ""
  1004. #: src/usage_text.h:499
  1005. msgid ""
  1006. " --xml-rpc-max-request-size=SIZE Set max size of XML-RPC request. If aria2\n"
  1007. " detects the request is more than SIZE bytes, "
  1008. "it\n"
  1009. " drops connection."
  1010. msgstr ""
  1011. #: src/usage_text.h:503
  1012. msgid " --xml-rpc-user=USER Set XML-RPC user."
  1013. msgstr ""
  1014. #: src/usage_text.h:505
  1015. msgid " --xml-rpc-passwd=PASSWD Set XML-RPC password."
  1016. msgstr ""
  1017. #: src/usage_text.h:507
  1018. msgid ""
  1019. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  1020. "a\n"
  1021. " BitTorrent tracker. Although this function is\n"
  1022. " named 'external', it can accept any kind of "
  1023. "IP\n"
  1024. " addresses."
  1025. msgstr ""
  1026. #: src/usage_text.h:512
  1027. msgid ""
  1028. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  1029. "it\n"
  1030. " is requested by the server. If false is set, "
  1031. "then\n"
  1032. " authorization header is always sent to the "
  1033. "server.\n"
  1034. " There is an exception: if username and "
  1035. "password\n"
  1036. " are embedded in URI, authorization header is\n"
  1037. " always sent to the server regardless of this\n"
  1038. " option."
  1039. msgstr ""
  1040. #: src/usage_text.h:520
  1041. msgid ""
  1042. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  1043. "can\n"
  1044. " find the file index using the --show-files "
  1045. "option.\n"
  1046. " PATH is a relative path to the path specified "
  1047. "in\n"
  1048. " --dir option. You can use this option "
  1049. "multiple\n"
  1050. " times."
  1051. msgstr ""
  1052. #: src/usage_text.h:526
  1053. msgid ""
  1054. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  1055. "the\n"
  1056. " remote file is available and doesn't download\n"
  1057. " data. This option has effect on HTTP/FTP "
  1058. "download.\n"
  1059. " BitTorrent downloads are canceled if true is\n"
  1060. " specified."
  1061. msgstr ""
  1062. #: src/usage_text.h:532
  1063. msgid ""
  1064. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  1065. " requests. This completely overrides interval "
  1066. "value\n"
  1067. " and aria2 just uses this value and ignores "
  1068. "the\n"
  1069. " min interval and interval value in the "
  1070. "response of\n"
  1071. " tracker. If 0 is set, aria2 determines "
  1072. "interval\n"
  1073. " based on the response of tracker and the "
  1074. "download\n"
  1075. " progress."
  1076. msgstr ""
  1077. #: src/usage_text.h:540
  1078. msgid ""
  1079. " --on-download-complete=COMMAND Set the command to be executed when "
  1080. "download\n"
  1081. " completes.\n"
  1082. " See --on-download-start option for the\n"
  1083. " requirement of COMMAND.\n"
  1084. " See also --on-download-stop option."
  1085. msgstr ""
  1086. #: src/usage_text.h:546
  1087. msgid ""
  1088. " --on-download-start=COMMAND Set the command to be executed when download\n"
  1089. " starts up. COMMAND must take just one argument "
  1090. "and\n"
  1091. " GID is passed to COMMAND as a first argument."
  1092. msgstr ""
  1093. #: src/usage_text.h:550
  1094. msgid ""
  1095. " --on-download-error=COMMAND Set the command to be executed when download\n"
  1096. " aborts due to error.\n"
  1097. " See --on-download-start option for the\n"
  1098. " requirement of COMMAND.\n"
  1099. " See also --on-download-stop option."
  1100. msgstr ""
  1101. #: src/usage_text.h:556
  1102. msgid ""
  1103. " --on-download-stop=COMMAND Set the command to be executed when download\n"
  1104. " stops. You can override the command to be "
  1105. "executed\n"
  1106. " for particular download result using\n"
  1107. " --on-download-complete and --on-download-"
  1108. "error. If\n"
  1109. " they are specified, command specified in this\n"
  1110. " option is not executed.\n"
  1111. " See --on-download-start option for the\n"
  1112. " requirement of COMMAND."
  1113. msgstr ""
  1114. #: src/usage_text.h:565
  1115. msgid ""
  1116. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  1117. "0 in\n"
  1118. " consecutive SEC seconds. If 0 is given, this\n"
  1119. " feature is disabled."
  1120. msgstr ""
  1121. #: src/usage_text.h:569
  1122. msgid ""
  1123. " --xml-rpc-listen-all[=true|false] Listen incoming XML-RPC requests on all\n"
  1124. " network interfaces. If false is given, listen "
  1125. "only\n"
  1126. " on local loopback interface."
  1127. msgstr ""
  1128. #: src/usage_text.h:573
  1129. msgid ""
  1130. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  1131. "last\n"
  1132. " pieces of each file first. This is useful for\n"
  1133. " previewing files. The argument can contain 2\n"
  1134. " keywords:head and tail. To include both "
  1135. "keywords,\n"
  1136. " they must be separated by comma. These "
  1137. "keywords\n"
  1138. " can take one parameter, SIZE. For example, if\n"
  1139. " head=SIZE is specified, pieces in the range "
  1140. "of\n"
  1141. " first SIZE bytes of each file get higher "
  1142. "priority.\n"
  1143. " tail=SIZE means the range of last SIZE bytes "
  1144. "of\n"
  1145. " each file. SIZE can include K or M(1K = 1024, "
  1146. "1M =\n"
  1147. " 1024K). If SIZE is omitted, SIZE=1M is used."
  1148. msgstr ""
  1149. #: src/usage_text.h:585
  1150. msgid ""
  1151. " --interface=INTERFACE Bind sockets to given interface. You can "
  1152. "specify\n"
  1153. " interface name, IP address and hostname."
  1154. msgstr ""
  1155. #: src/usage_text.h:588
  1156. msgid " --disable-ipv6[=true|false] Disable IPv6."
  1157. msgstr ""
  1158. #: src/usage_text.h:590
  1159. msgid ""
  1160. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  1161. "has\n"
  1162. " effect only when BitTorrent Magnet URI is "
  1163. "used.\n"
  1164. " The filename is hex encoded info hash with "
  1165. "suffix\n"
  1166. " .torrent. The directory to be saved is the "
  1167. "same\n"
  1168. " directory where download file is saved. If "
  1169. "the\n"
  1170. " same file already exists, metadata is not "
  1171. "saved.\n"
  1172. " See also --bt-metadata-only option."
  1173. msgstr ""
  1174. #: src/usage_text.h:598
  1175. msgid ""
  1176. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1177. "cache\n"
  1178. " header to avoid cached content. If false is\n"
  1179. " given, these headers are not sent and you can "
  1180. "add\n"
  1181. " Cache-Control header with a directive you "
  1182. "like\n"
  1183. " using --header option."
  1184. msgstr ""
  1185. #: src/usage_text.h:604
  1186. msgid ""
  1187. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1188. "described\n"
  1189. " in metadata will not be downloaded. This "
  1190. "option\n"
  1191. " has effect only when BitTorrent Magnet URI is\n"
  1192. " used. See also --bt-save-metadata option."
  1193. msgstr ""
  1194. #: src/usage_text.h:609
  1195. msgid ""
  1196. " --human-readable[=true|false] Print sizes and speed in human readable "
  1197. "format\n"
  1198. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1199. msgstr ""
  1200. #: src/version_usage.cc:57
  1201. msgid " version "
  1202. msgstr ""
  1203. #: src/version_usage.cc:80
  1204. #, c-format
  1205. msgid "Report bugs to %s"
  1206. msgstr ""
  1207. #: src/version_usage.cc:85
  1208. msgid ""
  1209. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1210. msgstr ""
  1211. #: src/version_usage.cc:92
  1212. msgid "Printing all options."
  1213. msgstr ""
  1214. #: src/version_usage.cc:94
  1215. #, c-format
  1216. msgid "Printing options tagged with '%s'."
  1217. msgstr ""
  1218. #: src/version_usage.cc:98
  1219. #, c-format
  1220. msgid "See -h option to know other command-line options(%s)."
  1221. msgstr ""
  1222. #: src/version_usage.cc:103 src/version_usage.cc:115
  1223. msgid "Options:"
  1224. msgstr ""
  1225. #: src/version_usage.cc:112
  1226. #, c-format
  1227. msgid "Printing options whose name includes '%s'."
  1228. msgstr ""
  1229. #: src/version_usage.cc:120
  1230. #, c-format
  1231. msgid "No option matching with '%s'."
  1232. msgstr ""
  1233. #: src/version_usage.cc:128
  1234. msgid ""
  1235. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1236. "all\n"
  1237. " URIs must point to the same file or downloading will fail."
  1238. msgstr ""
  1239. #: src/version_usage.cc:130
  1240. msgid ""
  1241. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1242. " metalink files stored in a local drive. Please note that they are always\n"
  1243. " treated as a separate download."
  1244. msgstr ""
  1245. #: src/version_usage.cc:135
  1246. msgid ""
  1247. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1248. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1249. "time,\n"
  1250. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1251. "file\n"
  1252. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1253. "ends\n"
  1254. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1255. "and\n"
  1256. " 'path' in torrent are added to form a URI for each file."
  1257. msgstr ""
  1258. #: src/version_usage.cc:142
  1259. msgid ""
  1260. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1261. " contains \"&\" or any characters that have special meaning in shell."
  1262. msgstr ""
  1263. #: src/version_usage.cc:146
  1264. msgid "Refer to man page for more information."
  1265. msgstr ""
  1266. #: src/message.h:40
  1267. #, c-format
  1268. msgid "CUID#%d - The download for one segment completed successfully."
  1269. msgstr ""
  1270. #: src/message.h:41
  1271. #, c-format
  1272. msgid "CUID#%d - No segment available."
  1273. msgstr ""
  1274. #: src/message.h:42
  1275. #, c-format
  1276. msgid "CUID#%d - Connecting to %s:%d"
  1277. msgstr ""
  1278. #: src/message.h:43
  1279. #, c-format
  1280. msgid ""
  1281. "CUID#%d - The segment changed. We send the request again with new Range "
  1282. "header."
  1283. msgstr ""
  1284. #: src/message.h:44
  1285. #, c-format
  1286. msgid "CUID#%d - Redirecting to %s"
  1287. msgstr ""
  1288. #: src/message.h:45
  1289. #, c-format
  1290. msgid ""
  1291. "CUID#%d - Requesting:\n"
  1292. "%s"
  1293. msgstr ""
  1294. #: src/message.h:46
  1295. #, c-format
  1296. msgid ""
  1297. "CUID#%d - Response received:\n"
  1298. "%s"
  1299. msgstr ""
  1300. #: src/message.h:47
  1301. #, c-format
  1302. msgid "CUID#%d - Download aborted. URI=%s"
  1303. msgstr ""
  1304. #: src/message.h:48
  1305. #, c-format
  1306. msgid "CUID#%d - Restarting the download. URI=%s"
  1307. msgstr ""
  1308. #: src/message.h:49
  1309. #, c-format
  1310. msgid "CUID#%d - Download aborted."
  1311. msgstr ""
  1312. #: src/message.h:50
  1313. #, c-format
  1314. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  1315. msgstr ""
  1316. #: src/message.h:56
  1317. #, c-format
  1318. msgid "CUID#%d - we got new piece. index=%d"
  1319. msgstr ""
  1320. #: src/message.h:57
  1321. #, c-format
  1322. msgid "CUID#%d - we got wrong piece. index=%d"
  1323. msgstr ""
  1324. #: src/message.h:58
  1325. #, c-format
  1326. msgid "CUID#%d - Download not complete: %s"
  1327. msgstr ""
  1328. #: src/message.h:59
  1329. #, c-format
  1330. msgid "#%d - Download has already completed: %s"
  1331. msgstr ""
  1332. #: src/message.h:60
  1333. #, c-format
  1334. msgid "CUID#%d - Good checksum: %s"
  1335. msgstr ""
  1336. #: src/message.h:61
  1337. #, c-format
  1338. msgid "CUID#%d - Bad checksum: %s"
  1339. msgstr ""
  1340. #: src/message.h:62
  1341. #, c-format
  1342. msgid "CUID#%d - Resolving hostname %s"
  1343. msgstr ""
  1344. #: src/message.h:63
  1345. #, c-format
  1346. msgid "CUID#%d - Name resolution complete: %s -> %s"
  1347. msgstr ""
  1348. #: src/message.h:64
  1349. #, c-format
  1350. msgid "CUID#%d - Name resolution for %s failed:%s"
  1351. msgstr ""
  1352. #: src/message.h:65
  1353. #, c-format
  1354. msgid "CUID#%d - DNS cache hit: %s -> %s"
  1355. msgstr ""
  1356. #: src/message.h:66
  1357. #, c-format
  1358. msgid "CUID#%d - Abort requested."
  1359. msgstr ""
  1360. #: src/message.h:67
  1361. #, c-format
  1362. msgid "CUID#%d - Connecting to the peer %s"
  1363. msgstr ""
  1364. #: src/message.h:68
  1365. #, c-format
  1366. msgid ""
  1367. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1368. "blockIndex=%d"
  1369. msgstr ""
  1370. #: src/message.h:69
  1371. #, c-format
  1372. msgid "CUID#%d - Piece bitfield %s"
  1373. msgstr ""
  1374. #: src/message.h:70
  1375. #, c-format
  1376. msgid ""
  1377. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1378. "index=%d, begin=%d, length=%d"
  1379. msgstr ""
  1380. #: src/message.h:71
  1381. #, c-format
  1382. msgid ""
  1383. "CUID#%d - Reject piece message in queue because cancel message received. "
  1384. "index=%d, begin=%d, length=%d"
  1385. msgstr ""
  1386. #: src/message.h:72
  1387. #, c-format
  1388. msgid "CUID#%d - Exception caught while validating file integrity."
  1389. msgstr ""
  1390. #: src/message.h:73
  1391. #, c-format
  1392. msgid "CUID#%d - Interested in the peer"
  1393. msgstr ""
  1394. #: src/message.h:74
  1395. #, c-format
  1396. msgid "CUID#%d - Not interested in the peer"
  1397. msgstr ""
  1398. #: src/message.h:75
  1399. #, c-format
  1400. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1401. msgstr ""
  1402. #: src/message.h:76
  1403. #, c-format
  1404. msgid ""
  1405. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1406. "got choked."
  1407. msgstr ""
  1408. #: src/message.h:77
  1409. #, c-format
  1410. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1411. msgstr ""
  1412. #: src/message.h:78
  1413. #, c-format
  1414. msgid ""
  1415. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1416. "acquired."
  1417. msgstr ""
  1418. #: src/message.h:79
  1419. #, c-format
  1420. msgid "CUID#%d - Fast extension enabled."
  1421. msgstr ""
  1422. #: src/message.h:80
  1423. #, c-format
  1424. msgid "CUID#%d - Extended Messaging enabled."
  1425. msgstr ""
  1426. #: src/message.h:81
  1427. #, c-format
  1428. msgid "CUID#%d - Exception caught while allocating file space."
  1429. msgstr ""
  1430. #: src/message.h:82
  1431. #, c-format
  1432. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1433. msgstr ""
  1434. #: src/message.h:83
  1435. #, c-format
  1436. msgid "CUID#%d - Peer %s:%d banned."
  1437. msgstr ""
  1438. #: src/message.h:84
  1439. #, c-format
  1440. msgid "CUID#%d - Using port %d for accepting new connections"
  1441. msgstr ""
  1442. #: src/message.h:85
  1443. #, c-format
  1444. msgid "CUID#%d - An error occurred while binding port=%d"
  1445. msgstr ""
  1446. #: src/message.h:86
  1447. #, c-format
  1448. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1449. msgstr ""
  1450. #: src/message.h:87
  1451. #, c-format
  1452. msgid "CUID#%d - Error in accepting connection"
  1453. msgstr ""
  1454. #: src/message.h:88
  1455. #, c-format
  1456. msgid "CUID#%d - Error occurred while processing tracker response."
  1457. msgstr ""
  1458. #: src/message.h:89
  1459. #, c-format
  1460. msgid "CUID#%d - Cannot create tracker request."
  1461. msgstr ""
  1462. #: src/message.h:90
  1463. #, c-format
  1464. msgid "CUID#%d - Creating new tracker request command #%d"
  1465. msgstr ""
  1466. #: src/message.h:91
  1467. #, c-format
  1468. msgid "CUID#%d - The peer is DHT-enabled."
  1469. msgstr ""
  1470. #: src/message.h:95
  1471. #, c-format
  1472. msgid "Unrecognized URI or unsupported protocol: %s"
  1473. msgstr ""
  1474. #: src/message.h:96
  1475. #, c-format
  1476. msgid "Tracker returned warning message: %s"
  1477. msgstr ""
  1478. #: src/message.h:97
  1479. #, c-format
  1480. msgid "The segment file %s exists."
  1481. msgstr ""
  1482. #: src/message.h:98
  1483. #, c-format
  1484. msgid "The segment file %s does not exist."
  1485. msgstr ""
  1486. #: src/message.h:99
  1487. #, c-format
  1488. msgid "Saving the segment file %s"
  1489. msgstr ""
  1490. #: src/message.h:100
  1491. msgid "The segment file was saved successfully."
  1492. msgstr ""
  1493. #: src/message.h:101
  1494. #, c-format
  1495. msgid "Loading the segment file %s."
  1496. msgstr ""
  1497. #: src/message.h:102
  1498. msgid "The segment file was loaded successfully."
  1499. msgstr ""
  1500. #: src/message.h:103
  1501. msgid "No URI to download. Download aborted."
  1502. msgstr ""
  1503. #: src/message.h:104
  1504. #, c-format
  1505. msgid ""
  1506. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1507. "canceled in order to prevent your file from being truncated to 0. If you are "
  1508. "sure to download the file all over again, then delete it or add --allow-"
  1509. "overwrite=true option and restart aria2."
  1510. msgstr ""
  1511. #: src/message.h:105
  1512. #, c-format
  1513. msgid "Allocating file %s, %s bytes"
  1514. msgstr ""
  1515. #: src/message.h:106
  1516. msgid "File not found"
  1517. msgstr ""
  1518. #: src/message.h:107
  1519. msgid "Not a directory"
  1520. msgstr ""
  1521. #: src/message.h:108
  1522. #, c-format
  1523. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1524. msgstr ""
  1525. #: src/message.h:109
  1526. #, c-format
  1527. msgid "Writing file %s"
  1528. msgstr ""
  1529. #: src/message.h:110
  1530. msgid "No peer list received."
  1531. msgstr ""
  1532. #: src/message.h:111
  1533. #, c-format
  1534. msgid "Adding peer %s:%d"
  1535. msgstr ""
  1536. #: src/message.h:112
  1537. #, c-format
  1538. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1539. msgstr ""
  1540. #: src/message.h:113
  1541. msgid "Download of selected files was complete."
  1542. msgstr ""
  1543. #: src/message.h:114
  1544. msgid "The download was complete."
  1545. msgstr ""
  1546. #: src/message.h:115
  1547. #, c-format
  1548. msgid "Removed %d have entries."
  1549. msgstr ""
  1550. #: src/message.h:116
  1551. #, c-format
  1552. msgid "Validating file %s"
  1553. msgstr ""
  1554. #: src/message.h:117
  1555. #, c-format
  1556. msgid "%d seconds to allocate %s byte(s)"
  1557. msgstr ""
  1558. #: src/message.h:118
  1559. #, c-format
  1560. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1561. msgstr ""
  1562. #: src/message.h:119
  1563. #, c-format
  1564. msgid "Metalink: Queueing %s for download."
  1565. msgstr ""
  1566. #: src/message.h:120
  1567. #, c-format
  1568. msgid "Download complete: %s"
  1569. msgstr ""
  1570. #: src/message.h:121
  1571. msgid "Seeding is over."
  1572. msgstr ""
  1573. #: src/message.h:122
  1574. #, c-format
  1575. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1576. msgstr ""
  1577. #: src/message.h:123
  1578. msgid "No chunk to verify."
  1579. msgstr ""
  1580. #: src/message.h:124
  1581. #, c-format
  1582. msgid "Good chunk checksum. hash=%s"
  1583. msgstr ""
  1584. #: src/message.h:125
  1585. #, c-format
  1586. msgid "Failed to load cookies from %s"
  1587. msgstr ""
  1588. #: src/message.h:126
  1589. #, c-format
  1590. msgid ""
  1591. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1592. "support disabled."
  1593. msgstr ""
  1594. #: src/message.h:127
  1595. msgid "Logging started."
  1596. msgstr ""
  1597. #: src/message.h:128
  1598. msgid "Specify at least one URL."
  1599. msgstr ""
  1600. #: src/message.h:129
  1601. msgid "daemon failed."
  1602. msgstr ""
  1603. #: src/message.h:130
  1604. #, c-format
  1605. msgid "Verification finished successfully. file=%s"
  1606. msgstr ""
  1607. #: src/message.h:131
  1608. #, c-format
  1609. msgid "Checksum error detected. file=%s"
  1610. msgstr ""
  1611. #: src/message.h:132
  1612. #, c-format
  1613. msgid "Incomplete range specified. %s"
  1614. msgstr ""
  1615. #: src/message.h:133
  1616. #, c-format
  1617. msgid "Failed to convert string into value: %s"
  1618. msgstr ""
  1619. #: src/message.h:134
  1620. msgid "Resource not found"
  1621. msgstr ""
  1622. #: src/message.h:135
  1623. #, c-format
  1624. msgid "File already exists. Renamed to %s."
  1625. msgstr ""
  1626. #: src/message.h:136
  1627. msgid "Cannot parse metalink XML file. XML may be malformed."
  1628. msgstr ""
  1629. #: src/message.h:137
  1630. #, c-format
  1631. msgid "Too small payload size for %s, size=%d."
  1632. msgstr ""
  1633. #: src/message.h:138
  1634. #, c-format
  1635. msgid ""
  1636. "Removed the defunct control file %s because the download file %s doesn't "
  1637. "exist."
  1638. msgstr ""
  1639. #: src/message.h:139
  1640. #, c-format
  1641. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1642. msgstr ""
  1643. #: src/message.h:140
  1644. #, c-format
  1645. msgid "Missing %s in torrent metainfo."
  1646. msgstr ""
  1647. #: src/message.h:141
  1648. msgid "Tracker returned null data."
  1649. msgstr ""
  1650. #: src/message.h:142
  1651. msgid "Windows socket library initialization failed"
  1652. msgstr ""
  1653. #: src/message.h:143
  1654. #, c-format
  1655. msgid "%d second(s) has passed. Stopping application."
  1656. msgstr ""
  1657. #: src/message.h:144
  1658. #, c-format
  1659. msgid ""
  1660. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1661. msgstr ""
  1662. #: src/message.h:146
  1663. #, c-format
  1664. msgid "Saving signature as %s failed. Maybe file already exists."
  1665. msgstr ""
  1666. #: src/message.h:149
  1667. #, c-format
  1668. msgid "Failed to open ServerStat file %s for read."
  1669. msgstr ""
  1670. #: src/message.h:150
  1671. #, c-format
  1672. msgid "ServerStat file %s loaded successfully."
  1673. msgstr ""
  1674. #: src/message.h:151
  1675. #, c-format
  1676. msgid "Failed to read ServerStat from %s."
  1677. msgstr ""
  1678. #: src/message.h:154
  1679. #, c-format
  1680. msgid "Failed to open ServerStat file %s for write."
  1681. msgstr ""
  1682. #: src/message.h:155
  1683. #, c-format
  1684. msgid "ServerStat file %s saved successfully."
  1685. msgstr ""
  1686. #: src/message.h:156
  1687. #, c-format
  1688. msgid "Failed to write ServerStat to %s."
  1689. msgstr ""
  1690. #: src/message.h:159
  1691. #, c-format
  1692. msgid "Failed to establish connection, cause: %s"
  1693. msgstr ""
  1694. #: src/message.h:160
  1695. #, c-format
  1696. msgid "Network problem has occurred. cause:%s"
  1697. msgstr ""
  1698. #: src/message.h:162
  1699. #, c-format
  1700. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1701. msgstr ""
  1702. #: src/message.h:164
  1703. #, c-format
  1704. msgid "Certificate verification failed. Cause: %s"
  1705. msgstr ""
  1706. #: src/message.h:165
  1707. msgid "No certificate found."
  1708. msgstr ""
  1709. #: src/message.h:166
  1710. msgid "Hostname not match."
  1711. msgstr ""
  1712. #: src/message.h:167
  1713. msgid "No files to download."
  1714. msgstr ""
  1715. #: src/message.h:169
  1716. msgid ""
  1717. "You may encounter the certificate verification error with HTTPS server. See "
  1718. "--ca-certificate and --check-certificate option."
  1719. msgstr ""
  1720. #: src/message.h:171
  1721. #, c-format
  1722. msgid "Printing the contents of file '%s'..."
  1723. msgstr ""
  1724. #: src/message.h:172
  1725. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1726. msgstr ""
  1727. #: src/message.h:177
  1728. #, c-format
  1729. msgid "Is '%s' a file?"
  1730. msgstr ""
  1731. #: src/message.h:178
  1732. #, c-format
  1733. msgid "Failed to find given interface %s, cause: %s"
  1734. msgstr ""
  1735. #: src/message.h:180
  1736. #, c-format
  1737. msgid "Saved metadata as %s."
  1738. msgstr ""
  1739. #: src/message.h:181
  1740. #, c-format
  1741. msgid "Saving metadata as %s failed. Maybe file already exists."
  1742. msgstr ""
  1743. #: src/message.h:184
  1744. msgid "Timeout."
  1745. msgstr ""
  1746. #: src/message.h:185
  1747. msgid "Invalid chunk size."
  1748. msgstr ""
  1749. #: src/message.h:186
  1750. #, c-format
  1751. msgid "Too large chunk. size=%d"
  1752. msgstr ""
  1753. #: src/message.h:187
  1754. msgid "Invalid header."
  1755. msgstr ""
  1756. #: src/message.h:188
  1757. msgid "Invalid response."
  1758. msgstr ""
  1759. #: src/message.h:189
  1760. msgid "No header found."
  1761. msgstr ""
  1762. #: src/message.h:190
  1763. msgid "No status header."
  1764. msgstr ""
  1765. #: src/message.h:191
  1766. msgid "Proxy connection failed."
  1767. msgstr ""
  1768. #: src/message.h:192
  1769. msgid "Connection failed."
  1770. msgstr ""
  1771. #: src/message.h:193
  1772. #, c-format
  1773. msgid ""
  1774. "The requested filename and the previously registered one are not same. "
  1775. "Expected:%s Actual:%s"
  1776. msgstr ""
  1777. #: src/message.h:194
  1778. #, c-format
  1779. msgid "The response status is not successful. status=%d"
  1780. msgstr ""
  1781. #: src/message.h:195
  1782. #, c-format
  1783. msgid "Too large file size. size=%s"
  1784. msgstr ""
  1785. #: src/message.h:196
  1786. #, c-format
  1787. msgid "Transfer encoding %s is not supported."
  1788. msgstr ""
  1789. #: src/message.h:197
  1790. #, c-format
  1791. msgid "SSL initialization failed: %s"
  1792. msgstr ""
  1793. #: src/message.h:198
  1794. msgid "SSL I/O error"
  1795. msgstr ""
  1796. #: src/message.h:199
  1797. msgid "SSL protocol error"
  1798. msgstr ""
  1799. #: src/message.h:200
  1800. #, c-format
  1801. msgid "SSL unknown error %d"
  1802. msgstr ""
  1803. #: src/message.h:201
  1804. #, c-format
  1805. msgid "SSL initialization failed: OpenSSL connect error %d"
  1806. msgstr ""
  1807. #: src/message.h:202
  1808. #, c-format
  1809. msgid "Size mismatch Expected:%s Actual:%s"
  1810. msgstr ""
  1811. #: src/message.h:203
  1812. msgid "Authorization failed."
  1813. msgstr ""
  1814. #: src/message.h:204
  1815. msgid "Got EOF from the server."
  1816. msgstr ""
  1817. #: src/message.h:205
  1818. msgid "Got EOF from peer."
  1819. msgstr ""
  1820. #: src/message.h:206
  1821. msgid "Malformed meta info."
  1822. msgstr ""
  1823. #: src/message.h:208
  1824. #, c-format
  1825. msgid "Failed to open the file %s, cause: %s"
  1826. msgstr ""
  1827. #: src/message.h:209
  1828. #, c-format
  1829. msgid "Failed to write into the file %s, cause: %s"
  1830. msgstr ""
  1831. #: src/message.h:210
  1832. #, c-format
  1833. msgid "Failed to read from the file %s, cause: %s"
  1834. msgstr ""
  1835. #: src/message.h:211
  1836. msgid "Failed to read data from disk."
  1837. msgstr ""
  1838. #: src/message.h:212
  1839. #, c-format
  1840. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1841. msgstr ""
  1842. #: src/message.h:213
  1843. #, c-format
  1844. msgid "Failed to seek the file %s, cause: %s"
  1845. msgstr ""
  1846. #: src/message.h:214
  1847. #, c-format
  1848. msgid "The offset is out of range, offset=%s"
  1849. msgstr ""
  1850. #: src/message.h:215
  1851. #, c-format
  1852. msgid "%s is not a directory."
  1853. msgstr ""
  1854. #: src/message.h:216
  1855. #, c-format
  1856. msgid "Failed to make the directory %s, cause: %s"
  1857. msgstr ""
  1858. #: src/message.h:217
  1859. #, c-format
  1860. msgid "Failed to open the segment file %s, cause: %s"
  1861. msgstr ""
  1862. #: src/message.h:218
  1863. #, c-format
  1864. msgid "Failed to write into the segment file %s, cause: %s"
  1865. msgstr ""
  1866. #: src/message.h:219
  1867. #, c-format
  1868. msgid "Failed to read from the segment file %s, cause: %s"
  1869. msgstr ""
  1870. #: src/message.h:221
  1871. #, c-format
  1872. msgid "Failed to open a socket, cause: %s"
  1873. msgstr ""
  1874. #: src/message.h:222
  1875. #, c-format
  1876. msgid "Failed to set a socket option, cause: %s"
  1877. msgstr ""
  1878. #: src/message.h:223
  1879. #, c-format
  1880. msgid "Failed to set a socket as blocking, cause: %s"
  1881. msgstr ""
  1882. #: src/message.h:224
  1883. #, c-format
  1884. msgid "Failed to set a socket as non-blocking, cause: %s"
  1885. msgstr ""
  1886. #: src/message.h:225
  1887. #, c-format
  1888. msgid "Failed to bind a socket, cause: %s"
  1889. msgstr ""
  1890. #: src/message.h:226
  1891. #, c-format
  1892. msgid "Failed to listen to a socket, cause: %s"
  1893. msgstr ""
  1894. #: src/message.h:227
  1895. #, c-format
  1896. msgid "Failed to accept a peer connection, cause: %s"
  1897. msgstr ""
  1898. #: src/message.h:228
  1899. #, c-format
  1900. msgid "Failed to get the name of socket, cause: %s"
  1901. msgstr ""
  1902. #: src/message.h:229
  1903. #, c-format
  1904. msgid "Failed to get the name of connected peer, cause: %s"
  1905. msgstr ""
  1906. #: src/message.h:230
  1907. #, c-format
  1908. msgid "Failed to resolve the hostname %s, cause: %s"
  1909. msgstr ""
  1910. #: src/message.h:231
  1911. #, c-format
  1912. msgid "Failed to connect to the host %s, cause: %s"
  1913. msgstr ""
  1914. #: src/message.h:232
  1915. #, c-format
  1916. msgid "Failed to check whether the socket is writable, cause: %s"
  1917. msgstr ""
  1918. #: src/message.h:233
  1919. #, c-format
  1920. msgid "Failed to check whether the socket is readable, cause: %s"
  1921. msgstr ""
  1922. #: src/message.h:234
  1923. #, c-format
  1924. msgid "Failed to send data, cause: %s"
  1925. msgstr ""
  1926. #: src/message.h:235
  1927. #, c-format
  1928. msgid "Failed to receive data, cause: %s"
  1929. msgstr ""
  1930. #: src/message.h:236
  1931. #, c-format
  1932. msgid "Failed to peek data, cause: %s"
  1933. msgstr ""
  1934. #: src/message.h:237
  1935. #, c-format
  1936. msgid "Unknown socket error %d (0x%x)"
  1937. msgstr ""
  1938. #: src/message.h:238
  1939. #, c-format
  1940. msgid "File %s exists, but %s does not exist."
  1941. msgstr ""
  1942. #: src/message.h:239
  1943. #, c-format
  1944. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1945. msgstr ""
  1946. #: src/message.h:240
  1947. #, c-format
  1948. msgid "Invalid ID=%d for %s. It should be %d."
  1949. msgstr ""
  1950. #: src/message.h:241
  1951. #, c-format
  1952. msgid ""
  1953. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1954. "s, actualHash=%s"
  1955. msgstr ""
  1956. #: src/message.h:242
  1957. msgid "Download aborted."
  1958. msgstr ""
  1959. #: src/message.h:243
  1960. #, c-format
  1961. msgid "File %s is being downloaded by other command."
  1962. msgstr ""
  1963. #: src/message.h:244
  1964. msgid "Insufficient checksums."
  1965. msgstr ""
  1966. #: src/message.h:245
  1967. #, c-format
  1968. msgid "Tracker returned failure reason: %s"
  1969. msgstr ""
  1970. #: src/message.h:246
  1971. msgid "Flooding detected."
  1972. msgstr ""
  1973. #: src/message.h:247
  1974. #, c-format
  1975. msgid ""
  1976. "Drop connection because no request/piece messages were exchanged in a "
  1977. "certain period(%d seconds)."
  1978. msgstr ""
  1979. #: src/message.h:248
  1980. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1981. msgstr ""
  1982. #: src/message.h:249
  1983. #, c-format
  1984. msgid "No such file entry %s"
  1985. msgstr ""
  1986. #: src/message.h:250
  1987. #, c-format
  1988. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1989. msgstr ""
  1990. #: src/message.h:251
  1991. msgid "No HttpRequestEntry found."
  1992. msgstr ""
  1993. #: src/message.h:252
  1994. #, c-format
  1995. msgid "Got %d status, but no location header provided."
  1996. msgstr ""
  1997. #: src/message.h:253
  1998. #, c-format
  1999. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  2000. msgstr ""
  2001. #: src/message.h:254
  2002. msgid "No file matched with your preference."
  2003. msgstr ""
  2004. #: src/message.h:255
  2005. msgid "Exception caught"
  2006. msgstr ""
  2007. #: src/message.h:256
  2008. #, c-format
  2009. msgid "Max payload length exceeded or invalid. length = %u"
  2010. msgstr ""
  2011. #: src/message.h:257
  2012. #, c-format
  2013. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2014. msgstr ""
  2015. #: src/BtSetup.cc:161
  2016. msgid "Errors occurred while binding port.\n"
  2017. msgstr "Ett fel inträffade vid anslutning till port.\n"