ko.po 69 KB

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