ko.po 67 KB

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