ko.po 62 KB

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