da.po 67 KB

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