da.po 60 KB

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