aria2.pot 76 KB

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