da.po 58 KB

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