aria2.pot 71 KB

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