ko.po 71 KB

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