da.po 58 KB

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