ko.po 81 KB

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