vi.po 78 KB

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