aria2.pot 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  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.3.0\n"
  10. "Report-Msgid-Bugs-To: http://aria2.sourceforge.net/\n"
  11. "POT-Creation-Date: 2009-03-13 23:24+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. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=CHARSET\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: src/DownloadEngine.cc:208
  19. msgid ""
  20. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  21. msgstr ""
  22. #: src/DownloadEngine.cc:214
  23. msgid "Emergency shutdown sequence commencing..."
  24. msgstr ""
  25. #: src/MultiUrlRequestInfo.cc:96
  26. msgid "aria2 will resume download if the transfer is restarted."
  27. msgstr ""
  28. #: src/MultiUrlRequestInfo.cc:98
  29. msgid ""
  30. "If there are any errors, then see the log file. See '-l' option in help/man "
  31. "page for details."
  32. msgstr ""
  33. #: src/RequestGroupMan.cc:423
  34. msgid "Download Results:"
  35. msgstr ""
  36. #: src/RequestGroupMan.cc:464
  37. msgid "Status Legend:"
  38. msgstr ""
  39. #: src/OptionHandler.cc:38
  40. msgid " Default: "
  41. msgstr ""
  42. #: src/OptionHandler.cc:39
  43. msgid " Tags: "
  44. msgstr ""
  45. #: src/OptionHandler.cc:40
  46. msgid " Possible Values: "
  47. msgstr ""
  48. #: src/OptionHandlerImpl.h:129
  49. msgid "must be either 'true' or 'false'."
  50. msgstr ""
  51. #: src/OptionHandlerImpl.h:162 src/OptionHandlerImpl.h:210
  52. #, c-format
  53. msgid "must be between %s and %s."
  54. msgstr ""
  55. #: src/OptionHandlerImpl.h:207
  56. #, c-format
  57. msgid "must be smaller than or equal to %s."
  58. msgstr ""
  59. #: src/OptionHandlerImpl.h:213
  60. #, c-format
  61. msgid "must be greater than or equal to %s."
  62. msgstr ""
  63. #: src/OptionHandlerImpl.h:216 src/OptionHandlerImpl.h:282
  64. msgid "must be a number."
  65. msgstr ""
  66. #: src/OptionHandlerImpl.h:273
  67. #, c-format
  68. msgid "must be smaller than or equal to %.1f."
  69. msgstr ""
  70. #: src/OptionHandlerImpl.h:276
  71. #, c-format
  72. msgid "must be between %.1f and %.1f."
  73. msgstr ""
  74. #: src/OptionHandlerImpl.h:279
  75. #, c-format
  76. msgid "must be greater than or equal to %.1f."
  77. msgstr ""
  78. #: src/OptionHandlerImpl.h:456
  79. msgid "must be one of the following:"
  80. msgstr ""
  81. #: src/OptionHandlerImpl.h:505 src/OptionHandlerImpl.h:548
  82. msgid "unrecognized proxy format"
  83. msgstr ""
  84. #: src/usage_text.h:37
  85. msgid ""
  86. " -d, --dir=DIR The directory to store the downloaded file."
  87. msgstr ""
  88. #: src/usage_text.h:39
  89. msgid " -o, --out=FILE The file name of the downloaded file."
  90. msgstr ""
  91. #: src/usage_text.h:41
  92. msgid ""
  93. " -l, --log=LOG The file name of the log file. If '-' is\n"
  94. " specified, log is written to stdout."
  95. msgstr ""
  96. #: src/usage_text.h:44
  97. msgid " -D, --daemon Run as daemon."
  98. msgstr ""
  99. #: src/usage_text.h:46
  100. msgid ""
  101. " -s, --split=N Download a file using N connections. If more\n"
  102. " than N URLs are given, first N URLs are used "
  103. "and\n"
  104. " remaining URLs are used for backup. If less "
  105. "than\n"
  106. " N URLs are given, those URLs are used more "
  107. "than\n"
  108. " once so that N connections total are made\n"
  109. " simultaneously. Please see -j option too.\n"
  110. " Please note that in Metalink download, this\n"
  111. " option has no effect and use -C option instead."
  112. msgstr ""
  113. #: src/usage_text.h:55
  114. msgid ""
  115. " --retry-wait=SEC Set the seconds to wait to retry after an "
  116. "error\n"
  117. " has occured."
  118. msgstr ""
  119. #: src/usage_text.h:58
  120. msgid " -t, --timeout=SEC Set timeout in seconds."
  121. msgstr ""
  122. #: src/usage_text.h:60
  123. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  124. msgstr ""
  125. #: src/usage_text.h:62
  126. msgid ""
  127. " --http-proxy=PROXY Use this proxy server for HTTP.\n"
  128. " See also --all-proxy option.\n"
  129. " This affects all URLs."
  130. msgstr ""
  131. #: src/usage_text.h:66
  132. msgid ""
  133. " --https-proxy=PROXY Use this proxy server for HTTPS.\n"
  134. " See also --all-proxy option.\n"
  135. " This affects all URLs."
  136. msgstr ""
  137. #: src/usage_text.h:70
  138. msgid ""
  139. " --ftp-proxy=PROXY Use this proxy server for FTP.\n"
  140. " See also --all-proxy option.\n"
  141. " This affects all URLs."
  142. msgstr ""
  143. #: src/usage_text.h:74
  144. msgid ""
  145. " --all-proxy=PROXY Use this proxy server for all protocols.\n"
  146. " You can override this setting and specify a\n"
  147. " proxy server for a particular protocol using\n"
  148. " --http-proxy, --https-proxy and --ftp-proxy\n"
  149. " options.\n"
  150. " This affects all URLs."
  151. msgstr ""
  152. #: src/usage_text.h:81
  153. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  154. msgstr ""
  155. #: src/usage_text.h:83
  156. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  157. msgstr ""
  158. #: src/usage_text.h:85
  159. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  160. msgstr ""
  161. #: src/usage_text.h:87
  162. msgid ""
  163. " --http-auth-scheme=SCHEME Set HTTP authentication scheme. Currently, "
  164. "basic\n"
  165. " is the only supported scheme."
  166. msgstr ""
  167. #: src/usage_text.h:90
  168. msgid " --referer=REFERER Set Referer. This affects all URLs."
  169. msgstr ""
  170. #: src/usage_text.h:92
  171. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  172. msgstr ""
  173. #: src/usage_text.h:94
  174. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  175. msgstr ""
  176. #: src/usage_text.h:96
  177. msgid " --ftp-type=TYPE Set FTP transfer type."
  178. msgstr ""
  179. #: src/usage_text.h:98
  180. msgid ""
  181. " -p, --ftp-pasv[=true|false] Use the passive mode in FTP. If false is "
  182. "given,\n"
  183. " the active mode will be used."
  184. msgstr ""
  185. #: src/usage_text.h:101
  186. msgid ""
  187. " --lowest-speed-limit=SPEED Close connection if download speed is lower "
  188. "than\n"
  189. " or equal to this value(bytes per sec).\n"
  190. " 0 means aria2 does not have a lowest speed "
  191. "limit.\n"
  192. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  193. " This option does not affect BitTorrent "
  194. "downloads."
  195. msgstr ""
  196. #: src/usage_text.h:107
  197. msgid ""
  198. " --max-overall-download-limit=SPEED Set max overall download speed in bytes/"
  199. "sec.\n"
  200. " 0 means unrestricted.\n"
  201. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  202. " To limit the download speed per download, use\n"
  203. " --max-download-limit option."
  204. msgstr ""
  205. #: src/usage_text.h:113
  206. msgid ""
  207. " --max-download-limit=SPEED Set max download speed per each download in\n"
  208. " bytes/sec. 0 means unrestricted.\n"
  209. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  210. " To limit the overall download speed, use\n"
  211. " --max-overall-download-limit option."
  212. msgstr ""
  213. #: src/usage_text.h:119
  214. msgid ""
  215. " --file-allocation=METHOD Specify file allocation method.\n"
  216. " 'none' doesn't pre-allocate file space. "
  217. "'prealloc'\n"
  218. " pre-allocates file space before download "
  219. "begins.\n"
  220. " This may take some time depending on the size "
  221. "of\n"
  222. " the file."
  223. msgstr ""
  224. #: src/usage_text.h:125
  225. msgid ""
  226. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  227. " size is smaller than SIZE.\n"
  228. " You can append K or M(1K = 1024, 1M = 1024K)."
  229. msgstr ""
  230. #: src/usage_text.h:129
  231. msgid ""
  232. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  233. "while\n"
  234. " allocating files.\n"
  235. " Turn off if you encounter any error"
  236. msgstr ""
  237. #: src/usage_text.h:133
  238. msgid ""
  239. " --allow-overwrite=true|false If false, aria2 doesn't download a file which\n"
  240. " already exists but the corresponding .aria2 "
  241. "file\n"
  242. " doesn't exist."
  243. msgstr ""
  244. #: src/usage_text.h:137
  245. msgid ""
  246. " --allow-piece-length-change=true|false If false is given, aria2 aborts "
  247. "download\n"
  248. " when a piece length is different from one in\n"
  249. " a control file. If true is given, you can "
  250. "proceed\n"
  251. " but some download progress will be lost."
  252. msgstr ""
  253. #: src/usage_text.h:142
  254. msgid ""
  255. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  256. "sequentially\n"
  257. " and download each URI in a separate session, "
  258. "like\n"
  259. " the usual command-line download utilities."
  260. msgstr ""
  261. #: src/usage_text.h:146
  262. msgid ""
  263. " --auto-file-renaming[=true|false] Rename file name if the same file "
  264. "already\n"
  265. " exists. This option works only in http(s)/ftp\n"
  266. " download.\n"
  267. " The new file name has a dot and a number"
  268. "(1..9999)\n"
  269. " appended."
  270. msgstr ""
  271. #: src/usage_text.h:152
  272. msgid ""
  273. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  274. " You can specify set of parts:\n"
  275. " http://{sv1,sv2,sv3}/foo.iso\n"
  276. " Also you can specify numeric sequences with "
  277. "step\n"
  278. " counter:\n"
  279. " http://host/image[000-100:2].img\n"
  280. " A step counter can be omitted.\n"
  281. " If all URIs do not point to the same file, "
  282. "such\n"
  283. " as the second example above, -Z option is\n"
  284. " required."
  285. msgstr ""
  286. #: src/usage_text.h:163
  287. msgid ""
  288. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  289. msgstr ""
  290. #: src/usage_text.h:165
  291. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  292. msgstr ""
  293. #: src/usage_text.h:167
  294. msgid ""
  295. " -V, --check-integrity[=true|false] Check file integrity by validating "
  296. "piece\n"
  297. " hashes. This option has effect only in "
  298. "BitTorrent\n"
  299. " and Metalink downloads with chunk checksums.\n"
  300. " Use this option to re-download a damaged "
  301. "portion\n"
  302. " of a file. See also --bt-hash-check-seed "
  303. "option."
  304. msgstr ""
  305. #: src/usage_text.h:173
  306. msgid ""
  307. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  308. " --check-integrity option and file is "
  309. "complete,\n"
  310. " continue to seed file. If you want to check "
  311. "file\n"
  312. " and download it only when it is damaged or\n"
  313. " incomplete, set this option to false.\n"
  314. " This option has effect only on BitTorrent\n"
  315. " download."
  316. msgstr ""
  317. #: src/usage_text.h:181
  318. msgid ""
  319. " --realtime-chunk-checksum=true|false Validate chunk of data by "
  320. "calculating\n"
  321. " checksum while downloading a file if chunk\n"
  322. " checksums are provided."
  323. msgstr ""
  324. #: src/usage_text.h:185
  325. msgid ""
  326. " -c, --continue Continue downloading a partially downloaded\n"
  327. " file. Use this option to resume a download\n"
  328. " started by a web browser or another program\n"
  329. " which downloads files sequentially from the\n"
  330. " beginning. Currently this option is only\n"
  331. " applicable to http(s)/ftp downloads."
  332. msgstr ""
  333. #: src/usage_text.h:192
  334. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  335. msgstr ""
  336. #: src/usage_text.h:194
  337. msgid " -n, --no-netrc Disables netrc support."
  338. msgstr ""
  339. #: src/usage_text.h:196
  340. msgid ""
  341. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  342. " multiple URIs for a single entity: separate\n"
  343. " URIs on a single line using the TAB "
  344. "character.\n"
  345. " Reads input from stdin when '-' is specified.\n"
  346. " The additional out and dir options can be\n"
  347. " specified after each line of URIs. This "
  348. "optional\n"
  349. " line must start with white space(s). See "
  350. "INPUT\n"
  351. " FILE section of man page for details."
  352. msgstr ""
  353. #: src/usage_text.h:205
  354. msgid ""
  355. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  356. "for\n"
  357. " every static (HTTP/FTP) URL, torrent and "
  358. "metalink.\n"
  359. " See also -s and -C options."
  360. msgstr ""
  361. #: src/usage_text.h:209
  362. msgid ""
  363. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  364. "format\n"
  365. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  366. msgstr ""
  367. #: src/usage_text.h:212
  368. msgid ""
  369. " -S, --show-files Print file listing of .torrent or .metalink "
  370. "file\n"
  371. " and exit. More detailed information will be "
  372. "listed\n"
  373. " in case of torrent file."
  374. msgstr ""
  375. #: src/usage_text.h:216
  376. msgid ""
  377. " --select-file=INDEX... Set file to download by specifying its index.\n"
  378. " You can find the file index using the\n"
  379. " --show-files option. Multiple indexes can be\n"
  380. " specified by using ',', for example: \"3,6\".\n"
  381. " You can also use '-' to specify a range: \"1-5"
  382. "\".\n"
  383. " ',' and '-' can be used together.\n"
  384. " When used with the -M option, index may vary\n"
  385. " depending on the query(see --metalink-* "
  386. "options)."
  387. msgstr ""
  388. #: src/usage_text.h:225
  389. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  390. msgstr ""
  391. #: src/usage_text.h:227
  392. msgid ""
  393. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  394. " whose suffix is .torrent or content type is\n"
  395. " application/x-bittorrent is downloaded, aria2\n"
  396. " parses it as a torrent file and downloads "
  397. "files\n"
  398. " mentioned in it.\n"
  399. " If mem is specified, a torrent file is not\n"
  400. " written to the disk, but is just kept in "
  401. "memory.\n"
  402. " If false is specified, the action mentioned "
  403. "above\n"
  404. " is not taken."
  405. msgstr ""
  406. #: src/usage_text.h:237
  407. msgid ""
  408. " --direct-file-mapping=true|false Directly read from and write to each file\n"
  409. " mentioned in .torrent file."
  410. msgstr ""
  411. #: src/usage_text.h:240
  412. msgid ""
  413. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  414. " Multiple ports can be specified by using ',',\n"
  415. " for example: \"6881,6885\". You can also use "
  416. "'-'\n"
  417. " to specify a range: \"6881-6999\". ',' and '-' "
  418. "can\n"
  419. " be used together."
  420. msgstr ""
  421. #: src/usage_text.h:246
  422. msgid ""
  423. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  424. "sec.\n"
  425. " 0 means unrestricted.\n"
  426. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  427. " To limit the upload speed per torrent, use\n"
  428. " --max-upload-limit option."
  429. msgstr ""
  430. #: src/usage_text.h:252
  431. msgid ""
  432. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  433. " bytes/sec. 0 means unrestricted.\n"
  434. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  435. " To limit the overall upload speed, use\n"
  436. " --max-overall-upload-limit option."
  437. msgstr ""
  438. #: src/usage_text.h:258
  439. msgid ""
  440. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  441. " --seed-ratio option."
  442. msgstr ""
  443. #: src/usage_text.h:261
  444. msgid ""
  445. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  446. " until share ratio reaches RATIO.\n"
  447. " You are strongly encouraged to specify equals "
  448. "or\n"
  449. " more than 1.0 here. Specify 0.0 if you intend "
  450. "to\n"
  451. " do seeding regardless of share ratio.\n"
  452. " If --seed-time option is specified along with\n"
  453. " this option, seeding ends when at least one "
  454. "of\n"
  455. " the conditions is satisfied."
  456. msgstr ""
  457. #: src/usage_text.h:270
  458. msgid ""
  459. " --peer-id-prefix=PEERI_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  460. "in\n"
  461. " BitTorrent is 20 byte length. If more than 20\n"
  462. " bytes are specified, only first 20\n"
  463. " bytes are used. If less than 20 bytes are\n"
  464. " specified, the random alphabet characters are\n"
  465. " added to make it's length 20 bytes."
  466. msgstr ""
  467. #: src/usage_text.h:277
  468. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  469. msgstr ""
  470. #: src/usage_text.h:279
  471. msgid " --enable-dht[=true|false] Enable DHT functionality."
  472. msgstr ""
  473. #: src/usage_text.h:281
  474. msgid ""
  475. " --dht-listen-port=PORT... Set UDP listening port for DHT.\n"
  476. " Multiple ports can be specified by using ',',\n"
  477. " for example: \"6881,6885\". You can also use "
  478. "'-'\n"
  479. " to specify a range: \"6881-6999\". ',' and '-' "
  480. "can\n"
  481. " be used together."
  482. msgstr ""
  483. #: src/usage_text.h:287
  484. msgid ""
  485. " --dht-entry-point=HOST:PORT Set host and port as an entry point to DHT\n"
  486. " network."
  487. msgstr ""
  488. #: src/usage_text.h:290
  489. msgid ""
  490. " --dht-file-path=PATH Change the DHT routing table file to PATH."
  491. msgstr ""
  492. #: src/usage_text.h:292
  493. msgid ""
  494. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  495. " If several encryption methods are provided by "
  496. "a\n"
  497. " peer, aria2 chooses the lowest one which "
  498. "satisfies\n"
  499. " the given level."
  500. msgstr ""
  501. #: src/usage_text.h:297
  502. msgid ""
  503. " --bt-require-crypto=true|false If true is given, aria2 doesn't accept and\n"
  504. " establish connection with legacy BitTorrent\n"
  505. " handshake. Thus aria2 always uses Obfuscation\n"
  506. " handshake."
  507. msgstr ""
  508. #: src/usage_text.h:302
  509. msgid ""
  510. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  511. " torrent is lower than SPEED, aria2 "
  512. "temporarily\n"
  513. " increases the number of peers to try for more\n"
  514. " download speed. Configuring this option with "
  515. "your\n"
  516. " preferred download speed can increase your\n"
  517. " download speed in some cases.\n"
  518. " You can append K or M(1K = 1024, 1M = 1024K)."
  519. msgstr ""
  520. #: src/usage_text.h:310
  521. msgid ""
  522. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  523. "each\n"
  524. " BitTorrent download."
  525. msgstr ""
  526. #: src/usage_text.h:313
  527. msgid ""
  528. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  529. " verifying piece hashes."
  530. msgstr ""
  531. #: src/usage_text.h:316
  532. msgid ""
  533. " --bt-max-peers=NUM Specify the maximum number of peers per "
  534. "torrent.\n"
  535. " 0 means unlimited.\n"
  536. " See also --bt-request-peer-speed-limit option."
  537. msgstr ""
  538. #: src/usage_text.h:320
  539. msgid " -M, --metalink-file=METALINK_FILE The file path to the .metalink file."
  540. msgstr ""
  541. #: src/usage_text.h:322
  542. msgid ""
  543. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  544. " simultaneously. Some Metalinks regulate the\n"
  545. " number of servers to connect. aria2 strictly\n"
  546. " respects them. This means that if Metalink "
  547. "defines\n"
  548. " the maxconnections attribute lower than\n"
  549. " NUM_SERVERS, then aria2 uses the value of\n"
  550. " maxconnections attribute instead of "
  551. "NUM_SERVERS.\n"
  552. " See also -s and -j options."
  553. msgstr ""
  554. #: src/usage_text.h:331
  555. msgid " --metalink-version=VERSION The version of the file to download."
  556. msgstr ""
  557. #: src/usage_text.h:333
  558. msgid " --metalink-language=LANGUAGE The language of the file to download."
  559. msgstr ""
  560. #: src/usage_text.h:335
  561. msgid ""
  562. " --metalink-os=OS The operating system of the file to download."
  563. msgstr ""
  564. #: src/usage_text.h:337
  565. msgid ""
  566. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  567. " A comma-delimited list of locations is\n"
  568. " acceptable."
  569. msgstr ""
  570. #: src/usage_text.h:341
  571. msgid ""
  572. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  573. "'none'\n"
  574. " if you don't have any preferred protocol."
  575. msgstr ""
  576. #: src/usage_text.h:344
  577. msgid ""
  578. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  579. " whose suffix is .metaink or content type of\n"
  580. " application/metalink+xml is downloaded, aria2\n"
  581. " parses it as a metalink file and downloads "
  582. "files\n"
  583. " mentioned in it.\n"
  584. " If mem is specified, a metalink file is not\n"
  585. " written to the disk, but is just kept in "
  586. "memory.\n"
  587. " If false is specified, the action mentioned "
  588. "above\n"
  589. " is not taken."
  590. msgstr ""
  591. #: src/usage_text.h:354
  592. msgid ""
  593. " --metalink-enable-unique-protocol=true|false If true is given and several\n"
  594. " protocols are available for a mirror in a "
  595. "metalink\n"
  596. " file, aria2 uses one of them.\n"
  597. " Use --metalink-preferred-protocol option to\n"
  598. " specify the preference of protocol."
  599. msgstr ""
  600. #: src/usage_text.h:360
  601. msgid " -v, --version Print the version number and exit."
  602. msgstr ""
  603. #: src/usage_text.h:362
  604. msgid ""
  605. " -h, --help[=CATEGORY] Print usage and exit.\n"
  606. " The help messages are classified in several\n"
  607. " categories. For example, type \"--help=http\" "
  608. "for\n"
  609. " detailed explanation for the options related "
  610. "to\n"
  611. " http. If no matching category is found, "
  612. "search\n"
  613. " option name using a given word in middle "
  614. "match\n"
  615. " and print the result."
  616. msgstr ""
  617. #: src/usage_text.h:370
  618. msgid " --no-conf Disable loading aria2.conf file."
  619. msgstr ""
  620. #: src/usage_text.h:372
  621. msgid ""
  622. " --conf-path=PATH Change the configuration file path to PATH."
  623. msgstr ""
  624. #: src/usage_text.h:374
  625. msgid ""
  626. " --stop=SEC Stop application after SEC seconds has "
  627. "passed.\n"
  628. " If 0 is given, this feature is disabled."
  629. msgstr ""
  630. #: src/usage_text.h:377
  631. msgid ""
  632. " --header=HEADER Append HEADER to HTTP request header. You can "
  633. "use\n"
  634. " this option repeatedly to specify more than "
  635. "one\n"
  636. " header:\n"
  637. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  638. "9J1\"\n"
  639. " http://host/file"
  640. msgstr ""
  641. #: src/usage_text.h:383
  642. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  643. msgstr ""
  644. #: src/usage_text.h:385
  645. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  646. msgstr ""
  647. #: src/usage_text.h:387
  648. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  649. msgstr ""
  650. #: src/usage_text.h:389
  651. msgid ""
  652. " --summary-interval=SEC Set interval to output download progress "
  653. "summary.\n"
  654. " Setting 0 suppresses the output."
  655. msgstr ""
  656. #: src/usage_text.h:392
  657. msgid " --log-level=LEVEL Set log level to output."
  658. msgstr ""
  659. #: src/usage_text.h:394
  660. msgid ""
  661. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  662. "the\n"
  663. " remote HTTP/FTP server and if it is "
  664. "available,\n"
  665. " apply it to the local file."
  666. msgstr ""
  667. #: src/usage_text.h:398
  668. msgid ""
  669. " --connect-timeout=SEC Set the connect timeout in seconds to "
  670. "establish\n"
  671. " connection to HTTP/FTP/proxy server. After "
  672. "the\n"
  673. " connection is established, this option makes "
  674. "no\n"
  675. " effect and --timeout option is used instead."
  676. msgstr ""
  677. #: src/usage_text.h:403
  678. msgid ""
  679. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  680. "the\n"
  681. " remote HTTP/FTP servers NUM times without "
  682. "getting\n"
  683. " a single byte, then force the download to "
  684. "fail.\n"
  685. " Specify 0 to disable this option.\n"
  686. " This options is effective only when using\n"
  687. " HTTP/FTP servers."
  688. msgstr ""
  689. #: src/usage_text.h:410
  690. msgid ""
  691. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  692. " If 'inorder' is given, URI is tried in the "
  693. "order\n"
  694. " appeared in the URI list.\n"
  695. " If 'feedback' is given, aria2 uses download "
  696. "speed\n"
  697. " observed in the previous downloads and choose\n"
  698. " fastest server in the URI list. This also\n"
  699. " effectively skips dead mirrors. The observed\n"
  700. " download speed is a part of performance "
  701. "profile\n"
  702. " of servers mentioned in --server-stat-of and\n"
  703. " --server-stat-if options.\n"
  704. " If 'adaptive' is given, selects one of the "
  705. "best\n"
  706. " mirrors for the first and reserved "
  707. "connections.\n"
  708. " For supplementary ones, it returns mirrors "
  709. "which\n"
  710. " has not been tested yet, and if each of them "
  711. "has\n"
  712. " already been tested, returns mirrors which has "
  713. "to\n"
  714. " be tested again. Otherwise, it doesn't select\n"
  715. " anymore mirrors. Like 'feedback', it uses a\n"
  716. " performance profile of servers."
  717. msgstr ""
  718. #: src/usage_text.h:429
  719. msgid ""
  720. " --server-stat-of=FILE Specify the filename to which performance "
  721. "profile\n"
  722. " of the servers is saved. You can load saved "
  723. "data\n"
  724. " using --server-stat-if option."
  725. msgstr ""
  726. #: src/usage_text.h:433
  727. msgid ""
  728. " --server-stat-if=FILE Specify the filename to load performance "
  729. "profile\n"
  730. " of the servers. The loaded data will be used "
  731. "in\n"
  732. " some URI selector such as 'feedback'.\n"
  733. " See also --uri-selector option"
  734. msgstr ""
  735. #: src/usage_text.h:438
  736. msgid ""
  737. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  738. " performance profile of the servers since the "
  739. "last\n"
  740. " contact to them."
  741. msgstr ""
  742. #: src/usage_text.h:442
  743. msgid ""
  744. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  745. "seconds.\n"
  746. " If 0 is given, a control file is not saved "
  747. "during\n"
  748. " download. aria2 saves a control file when it "
  749. "stops\n"
  750. " regardless of the value."
  751. msgstr ""
  752. #: src/usage_text.h:447
  753. msgid ""
  754. " --certificate=FILE Use the client certificate in FILE.\n"
  755. " The certificate must be in PEM format.\n"
  756. " You may use --private-key option to specify "
  757. "the\n"
  758. " private key."
  759. msgstr ""
  760. #: src/usage_text.h:452
  761. msgid ""
  762. " --private-key=FILE Use the private key in FILE.\n"
  763. " The private key must be decrypted and in PEM\n"
  764. " format. See also --certificate option."
  765. msgstr ""
  766. #: src/usage_text.h:456
  767. msgid ""
  768. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  769. "verify\n"
  770. " the peers. The certificate file must be in "
  771. "PEM\n"
  772. " format and can contain multiple CA "
  773. "certificates.\n"
  774. " Use --check-certificate option to enable\n"
  775. " verification."
  776. msgstr ""
  777. #: src/usage_text.h:462
  778. msgid ""
  779. " --check-certificate[=true|false] Verify the peer using certificates "
  780. "specified\n"
  781. " in --ca-certificate option."
  782. msgstr ""
  783. #: src/usage_text.h:465
  784. msgid ""
  785. " --no-proxy=DOMAINS Specify comma separated hostnames or domains "
  786. "where\n"
  787. " proxy should not be used."
  788. msgstr ""
  789. #: src/usage_text.h:468
  790. msgid ""
  791. " --use-head[=true|false] Use HEAD method for the first request to the "
  792. "HTTP\n"
  793. " server."
  794. msgstr ""
  795. #: src/usage_text.h:471
  796. msgid " --event-poll=POLL Specify the method for polling events."
  797. msgstr ""
  798. #: src/usage_text.h:484
  799. msgid ""
  800. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  801. "a\n"
  802. " BitTorrent tracker. Although this function is\n"
  803. " named 'external', it can accept any kind of "
  804. "IP\n"
  805. " addresses."
  806. msgstr ""
  807. #: src/usage_text.h:489
  808. msgid ""
  809. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  810. "it\n"
  811. " is requested by the server. If false is set, "
  812. "then\n"
  813. " authorization header is always sent to the "
  814. "server.\n"
  815. " There is an exception: if username and "
  816. "password\n"
  817. " are embedded in URI, authorization header is\n"
  818. " always sent to the server regardless of this\n"
  819. " option."
  820. msgstr ""
  821. #: src/usage_text.h:497
  822. msgid ""
  823. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  824. "can\n"
  825. " find the file index using the --show-files "
  826. "option.\n"
  827. " PATH is a relative path to the path specified "
  828. "in\n"
  829. " --dir option. You can use this option "
  830. "multiple\n"
  831. " times."
  832. msgstr ""
  833. #: src/usage_text.h:503
  834. msgid ""
  835. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  836. "the\n"
  837. " remote file is available and doesn't download\n"
  838. " data. This option has effect on HTTP/FTP "
  839. "download.\n"
  840. " BitTorrent downloads are canceled if true is\n"
  841. " specified."
  842. msgstr ""
  843. #: src/version_usage.cc:54
  844. msgid " version "
  845. msgstr ""
  846. #: src/version_usage.cc:71
  847. #, c-format
  848. msgid "Report bugs to %s"
  849. msgstr ""
  850. #: src/version_usage.cc:76
  851. #, c-format
  852. msgid "Usage: %s [OPTIONS] [URL | TORRENT_FILE | METALINK_FILE]..."
  853. msgstr ""
  854. #: src/version_usage.cc:86
  855. #, c-format
  856. msgid "Printing options whose name includes '%s'."
  857. msgstr ""
  858. #: src/version_usage.cc:89 src/version_usage.cc:111
  859. msgid "Options:"
  860. msgstr ""
  861. #: src/version_usage.cc:94
  862. #, c-format
  863. msgid "No help category or option name matching with '%s'."
  864. msgstr ""
  865. #: src/version_usage.cc:100
  866. msgid "Printing all options."
  867. msgstr ""
  868. #: src/version_usage.cc:102
  869. #, c-format
  870. msgid "Printing options tagged with '%s'."
  871. msgstr ""
  872. #: src/version_usage.cc:106
  873. #, c-format
  874. msgid "See -h option to know other command-line options(%s)."
  875. msgstr ""
  876. #: src/version_usage.cc:120
  877. msgid ""
  878. " You can specify multiple URLs. Unless you specify -Z option, all URLs must\n"
  879. " point to the same file or downloading will fail."
  880. msgstr ""
  881. #: src/version_usage.cc:122
  882. msgid ""
  883. " You can also specify arbitrary number of torrent files and metalink files\n"
  884. " stored in a local drive. Please note that they are always treated as a\n"
  885. " separate download."
  886. msgstr ""
  887. #: src/version_usage.cc:127
  888. msgid ""
  889. " You can specify both torrent file with -T option and URLs. By doing this,\n"
  890. " download a file from both torrent swarm and http/ftp server at the same "
  891. "time,\n"
  892. " while the data from http/ftp are uploaded to the torrent swarm. Note that\n"
  893. " only single file torrent can be integrated with http/ftp."
  894. msgstr ""
  895. #: src/version_usage.cc:132
  896. msgid ""
  897. " Make sure that URL is quoted with single(') or double(\") quotation if it\n"
  898. " contains \"&\" or any characters that have special meaning in shell."
  899. msgstr ""
  900. #: src/version_usage.cc:136
  901. msgid "Refer to man page for more information."
  902. msgstr ""
  903. #: src/message.h:40
  904. #, c-format
  905. msgid "CUID#%d - The download for one segment completed successfully."
  906. msgstr ""
  907. #: src/message.h:41
  908. #, c-format
  909. msgid "CUID#%d - No segment available."
  910. msgstr ""
  911. #: src/message.h:42
  912. #, c-format
  913. msgid "CUID#%d - Connecting to %s:%d"
  914. msgstr ""
  915. #: src/message.h:43
  916. #, c-format
  917. msgid ""
  918. "CUID#%d - The segment changed. We send the request again with new Range "
  919. "header."
  920. msgstr ""
  921. #: src/message.h:44
  922. #, c-format
  923. msgid "CUID#%d - Redirecting to %s"
  924. msgstr ""
  925. #: src/message.h:45
  926. #, c-format
  927. msgid ""
  928. "CUID#%d - Requesting:\n"
  929. "%s"
  930. msgstr ""
  931. #: src/message.h:46
  932. #, c-format
  933. msgid ""
  934. "CUID#%d - Response received:\n"
  935. "%s"
  936. msgstr ""
  937. #: src/message.h:47
  938. #, c-format
  939. msgid "CUID#%d - Download aborted. URI=%s"
  940. msgstr ""
  941. #: src/message.h:48
  942. #, c-format
  943. msgid "CUID#%d - Restarting the download. URI=%s"
  944. msgstr ""
  945. #: src/message.h:49
  946. #, c-format
  947. msgid "CUID#%d - Download aborted."
  948. msgstr ""
  949. #: src/message.h:50
  950. #, c-format
  951. msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  952. msgstr ""
  953. #: src/message.h:51
  954. #, c-format
  955. msgid "CUID#%d - Unregistering cuid from segmentManager."
  956. msgstr ""
  957. #: src/message.h:57
  958. #, c-format
  959. msgid "CUID#%d - we got new piece. index=%d"
  960. msgstr ""
  961. #: src/message.h:58
  962. #, c-format
  963. msgid "CUID#%d - we got wrong piece. index=%d"
  964. msgstr ""
  965. #: src/message.h:59
  966. #, c-format
  967. msgid "CUID#%d - Download not complete: %s"
  968. msgstr ""
  969. #: src/message.h:60
  970. #, c-format
  971. msgid "#%d - Download has already completed: %s"
  972. msgstr ""
  973. #: src/message.h:61
  974. #, c-format
  975. msgid "CUID#%d - Good checksum: %s"
  976. msgstr ""
  977. #: src/message.h:62
  978. #, c-format
  979. msgid "CUID#%d - Bad checksum: %s"
  980. msgstr ""
  981. #: src/message.h:63
  982. #, c-format
  983. msgid "CUID#%d - Resolving hostname %s"
  984. msgstr ""
  985. #: src/message.h:64
  986. #, c-format
  987. msgid "CUID#%d - Name resolution complete: %s -> %s"
  988. msgstr ""
  989. #: src/message.h:65
  990. #, c-format
  991. msgid "CUID#%d - Name resolution for %s failed:%s"
  992. msgstr ""
  993. #: src/message.h:66
  994. #, c-format
  995. msgid "CUID#%d - DNS cache hit: %s -> %s"
  996. msgstr ""
  997. #: src/message.h:67
  998. #, c-format
  999. msgid "CUID#%d - Abort requested."
  1000. msgstr ""
  1001. #: src/message.h:68
  1002. #, c-format
  1003. msgid "CUID#%d - Connecting to the peer %s"
  1004. msgstr ""
  1005. #: src/message.h:69
  1006. #, c-format
  1007. msgid ""
  1008. "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  1009. "blockIndex=%d"
  1010. msgstr ""
  1011. #: src/message.h:70
  1012. #, c-format
  1013. msgid "CUID#%d - Piece bitfield %s"
  1014. msgstr ""
  1015. #: src/message.h:71
  1016. #, c-format
  1017. msgid ""
  1018. "CUID#%d - Reject piece message in queue because the peer has been choked. "
  1019. "index=%d, begin=%d, length=%d"
  1020. msgstr ""
  1021. #: src/message.h:72
  1022. #, c-format
  1023. msgid ""
  1024. "CUID#%d - Reject piece message in queue because cancel message received. "
  1025. "index=%d, begin=%d, length=%d"
  1026. msgstr ""
  1027. #: src/message.h:73
  1028. #, c-format
  1029. msgid "CUID#%d - Exception caught while validating file integrity."
  1030. msgstr ""
  1031. #: src/message.h:74
  1032. #, c-format
  1033. msgid "CUID#%d - Interested in the peer"
  1034. msgstr ""
  1035. #: src/message.h:75
  1036. #, c-format
  1037. msgid "CUID#%d - Not interested in the peer"
  1038. msgstr ""
  1039. #: src/message.h:76
  1040. #, c-format
  1041. msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  1042. msgstr ""
  1043. #: src/message.h:77
  1044. #, c-format
  1045. msgid ""
  1046. "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  1047. "got choked."
  1048. msgstr ""
  1049. #: src/message.h:78
  1050. #, c-format
  1051. msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  1052. msgstr ""
  1053. #: src/message.h:79
  1054. #, c-format
  1055. msgid ""
  1056. "CUID#%d - Deleting request slot blockIndex=%d because the block has been "
  1057. "acquired."
  1058. msgstr ""
  1059. #: src/message.h:80
  1060. #, c-format
  1061. msgid "CUID#%d - Fast extension enabled."
  1062. msgstr ""
  1063. #: src/message.h:81
  1064. #, c-format
  1065. msgid "CUID#%d - Extended Messaging enabled."
  1066. msgstr ""
  1067. #: src/message.h:82
  1068. #, c-format
  1069. msgid "CUID#%d - Exception caught while allocating file space."
  1070. msgstr ""
  1071. #: src/message.h:83
  1072. #, c-format
  1073. msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  1074. msgstr ""
  1075. #: src/message.h:84
  1076. #, c-format
  1077. msgid "CUID#%d - Peer %s:%d banned."
  1078. msgstr ""
  1079. #: src/message.h:85
  1080. #, c-format
  1081. msgid "CUID#%d - Using port %d for accepting new connections"
  1082. msgstr ""
  1083. #: src/message.h:86
  1084. #, c-format
  1085. msgid "CUID#%d - An error occurred while binding port=%d"
  1086. msgstr ""
  1087. #: src/message.h:87
  1088. #, c-format
  1089. msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  1090. msgstr ""
  1091. #: src/message.h:88
  1092. #, c-format
  1093. msgid "CUID#%d - Error in accepting connection"
  1094. msgstr ""
  1095. #: src/message.h:89
  1096. #, c-format
  1097. msgid "CUID#%d - Error occurred while processing tracker response."
  1098. msgstr ""
  1099. #: src/message.h:90
  1100. #, c-format
  1101. msgid "CUID#%d - Cannot create tracker request."
  1102. msgstr ""
  1103. #: src/message.h:91
  1104. #, c-format
  1105. msgid "CUID#%d - Creating new tracker request command #%d"
  1106. msgstr ""
  1107. #: src/message.h:92
  1108. #, c-format
  1109. msgid "CUID#%d - The peer is DHT-enabled."
  1110. msgstr ""
  1111. #: src/message.h:94
  1112. #, c-format
  1113. msgid "Unrecognized URI or unsupported protocol: %s"
  1114. msgstr ""
  1115. #: src/message.h:95
  1116. #, c-format
  1117. msgid "Tracker returned warning message: %s"
  1118. msgstr ""
  1119. #: src/message.h:96
  1120. #, c-format
  1121. msgid "The segment file %s exists."
  1122. msgstr ""
  1123. #: src/message.h:97
  1124. #, c-format
  1125. msgid "The segment file %s does not exist."
  1126. msgstr ""
  1127. #: src/message.h:98
  1128. #, c-format
  1129. msgid "Saving the segment file %s"
  1130. msgstr ""
  1131. #: src/message.h:99
  1132. msgid "The segment file was saved successfully."
  1133. msgstr ""
  1134. #: src/message.h:100
  1135. #, c-format
  1136. msgid "Loading the segment file %s."
  1137. msgstr ""
  1138. #: src/message.h:101
  1139. msgid "The segment file was loaded successfully."
  1140. msgstr ""
  1141. #: src/message.h:102
  1142. msgid "No URI to download. Download aborted."
  1143. msgstr ""
  1144. #: src/message.h:103
  1145. #, c-format
  1146. msgid ""
  1147. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1148. "canceled in order to prevent your file from being truncated to 0. If you are "
  1149. "sure to download the file all over again, then delete it or add --allow-"
  1150. "overwrite=true option and restart aria2."
  1151. msgstr ""
  1152. #: src/message.h:104
  1153. #, c-format
  1154. msgid "Allocating file %s, %s bytes"
  1155. msgstr ""
  1156. #: src/message.h:105
  1157. msgid "File not found"
  1158. msgstr ""
  1159. #: src/message.h:106
  1160. msgid "Not a directory"
  1161. msgstr ""
  1162. #: src/message.h:107
  1163. #, c-format
  1164. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1165. msgstr ""
  1166. #: src/message.h:108
  1167. #, c-format
  1168. msgid "Writing file %s"
  1169. msgstr ""
  1170. #: src/message.h:109
  1171. msgid "No peer list received."
  1172. msgstr ""
  1173. #: src/message.h:110
  1174. #, c-format
  1175. msgid "Adding peer %s:%d"
  1176. msgstr ""
  1177. #: src/message.h:111
  1178. #, c-format
  1179. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1180. msgstr ""
  1181. #: src/message.h:112
  1182. msgid "Download of selected files was complete."
  1183. msgstr ""
  1184. #: src/message.h:113
  1185. msgid "The download was complete."
  1186. msgstr ""
  1187. #: src/message.h:114
  1188. #, c-format
  1189. msgid "Removed %d have entries."
  1190. msgstr ""
  1191. #: src/message.h:115
  1192. #, c-format
  1193. msgid "Validating file %s"
  1194. msgstr ""
  1195. #: src/message.h:116
  1196. #, c-format
  1197. msgid "%d seconds to allocate %s byte(s)"
  1198. msgstr ""
  1199. #: src/message.h:117
  1200. #, c-format
  1201. msgid "Dispatching FileAllocationCommand for CUID#%d."
  1202. msgstr ""
  1203. #: src/message.h:118
  1204. #, c-format
  1205. msgid "Metalink: Queueing %s for download."
  1206. msgstr ""
  1207. #: src/message.h:119
  1208. #, c-format
  1209. msgid "Download complete: %s"
  1210. msgstr ""
  1211. #: src/message.h:120
  1212. msgid "Seeding is over."
  1213. msgstr ""
  1214. #: src/message.h:121
  1215. #, c-format
  1216. msgid "CUID#%d cancels segment index=%d. CUID#%d handles it instead."
  1217. msgstr ""
  1218. #: src/message.h:122
  1219. msgid "No chunk to verify."
  1220. msgstr ""
  1221. #: src/message.h:123
  1222. #, c-format
  1223. msgid "Good chunk checksum. hash=%s"
  1224. msgstr ""
  1225. #: src/message.h:124
  1226. #, c-format
  1227. msgid "Failed to load cookies from %s"
  1228. msgstr ""
  1229. #: src/message.h:125
  1230. #, c-format
  1231. msgid ""
  1232. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1233. "support disabled."
  1234. msgstr ""
  1235. #: src/message.h:126
  1236. msgid "Logging started."
  1237. msgstr ""
  1238. #: src/message.h:127
  1239. msgid "Specify at least one URL."
  1240. msgstr ""
  1241. #: src/message.h:128
  1242. msgid "daemon failed."
  1243. msgstr ""
  1244. #: src/message.h:129
  1245. #, c-format
  1246. msgid "Verification finished successfully. file=%s"
  1247. msgstr ""
  1248. #: src/message.h:130
  1249. #, c-format
  1250. msgid "Checksum error detected. file=%s"
  1251. msgstr ""
  1252. #: src/message.h:131
  1253. #, c-format
  1254. msgid "Incomplete range specified. %s"
  1255. msgstr ""
  1256. #: src/message.h:132
  1257. #, c-format
  1258. msgid "Failed to convert string into value: %s"
  1259. msgstr ""
  1260. #: src/message.h:133
  1261. msgid "Resource not found"
  1262. msgstr ""
  1263. #: src/message.h:134
  1264. #, c-format
  1265. msgid "File already exists. Renamed to %s."
  1266. msgstr ""
  1267. #: src/message.h:135
  1268. msgid "Cannot parse metalink XML file. XML may be malformed."
  1269. msgstr ""
  1270. #: src/message.h:136
  1271. #, c-format
  1272. msgid "Too small payload size for %s, size=%d."
  1273. msgstr ""
  1274. #: src/message.h:137
  1275. #, c-format
  1276. msgid ""
  1277. "Removed the defunct control file %s because the download file %s doesn't "
  1278. "exist."
  1279. msgstr ""
  1280. #: src/message.h:138
  1281. #, c-format
  1282. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1283. msgstr ""
  1284. #: src/message.h:139
  1285. #, c-format
  1286. msgid "Missing %s in torrent metainfo."
  1287. msgstr ""
  1288. #: src/message.h:140
  1289. msgid "Tracker returned null data."
  1290. msgstr ""
  1291. #: src/message.h:141
  1292. msgid "Windows socket library initialization failed"
  1293. msgstr ""
  1294. #: src/message.h:142
  1295. #, c-format
  1296. msgid "%d second(s) has passed. Stopping application."
  1297. msgstr ""
  1298. #: src/message.h:143
  1299. #, c-format
  1300. msgid ""
  1301. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1302. msgstr ""
  1303. #: src/message.h:145
  1304. #, c-format
  1305. msgid "Saving signature as %s failed. Maybe file already exists."
  1306. msgstr ""
  1307. #: src/message.h:148
  1308. #, c-format
  1309. msgid "Failed to open ServerStat file %s for read."
  1310. msgstr ""
  1311. #: src/message.h:149
  1312. #, c-format
  1313. msgid "ServerStat file %s loaded successfully."
  1314. msgstr ""
  1315. #: src/message.h:150
  1316. #, c-format
  1317. msgid "Failed to read ServerStat from %s."
  1318. msgstr ""
  1319. #: src/message.h:153
  1320. #, c-format
  1321. msgid "Failed to open ServerStat file %s for write."
  1322. msgstr ""
  1323. #: src/message.h:154
  1324. #, c-format
  1325. msgid "ServerStat file %s saved successfully."
  1326. msgstr ""
  1327. #: src/message.h:155
  1328. #, c-format
  1329. msgid "Failed to write ServerStat to %s."
  1330. msgstr ""
  1331. #: src/message.h:158
  1332. #, c-format
  1333. msgid "Failed to establish connection, cause: %s"
  1334. msgstr ""
  1335. #: src/message.h:159
  1336. #, c-format
  1337. msgid "Network problem has occurred. cause:%s"
  1338. msgstr ""
  1339. #: src/message.h:161
  1340. #, c-format
  1341. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1342. msgstr ""
  1343. #: src/message.h:163
  1344. #, c-format
  1345. msgid "Certificate verification failed. Cause: %s"
  1346. msgstr ""
  1347. #: src/message.h:164
  1348. msgid "No certificate found."
  1349. msgstr ""
  1350. #: src/message.h:165
  1351. msgid "Hostname not match."
  1352. msgstr ""
  1353. #: src/message.h:166
  1354. msgid "No files to download."
  1355. msgstr ""
  1356. #: src/message.h:168
  1357. msgid ""
  1358. "You may encounter the certificate verification error with HTTPS server. See "
  1359. "--ca-certificate and --check-certificate option."
  1360. msgstr ""
  1361. #: src/message.h:170
  1362. #, c-format
  1363. msgid "Printing the contents of file '%s'..."
  1364. msgstr ""
  1365. #: src/message.h:171
  1366. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1367. msgstr ""
  1368. #: src/message.h:174
  1369. msgid "Timeout."
  1370. msgstr ""
  1371. #: src/message.h:175
  1372. msgid "Invalid chunk size."
  1373. msgstr ""
  1374. #: src/message.h:176
  1375. #, c-format
  1376. msgid "Too large chunk. size=%d"
  1377. msgstr ""
  1378. #: src/message.h:177
  1379. msgid "Invalid header."
  1380. msgstr ""
  1381. #: src/message.h:178
  1382. msgid "Invalid response."
  1383. msgstr ""
  1384. #: src/message.h:179
  1385. msgid "No header found."
  1386. msgstr ""
  1387. #: src/message.h:180
  1388. msgid "No status header."
  1389. msgstr ""
  1390. #: src/message.h:181
  1391. msgid "Proxy connection failed."
  1392. msgstr ""
  1393. #: src/message.h:182
  1394. msgid "Connection failed."
  1395. msgstr ""
  1396. #: src/message.h:183
  1397. #, c-format
  1398. msgid ""
  1399. "The requested filename and the previously registered one are not same. "
  1400. "Expected:%s Actual:%s"
  1401. msgstr ""
  1402. #: src/message.h:184
  1403. #, c-format
  1404. msgid "The response status is not successful. status=%d"
  1405. msgstr ""
  1406. #: src/message.h:185
  1407. #, c-format
  1408. msgid "Too large file size. size=%s"
  1409. msgstr ""
  1410. #: src/message.h:186
  1411. #, c-format
  1412. msgid "Transfer encoding %s is not supported."
  1413. msgstr ""
  1414. #: src/message.h:187
  1415. #, c-format
  1416. msgid "SSL initialization failed: %s"
  1417. msgstr ""
  1418. #: src/message.h:188
  1419. msgid "SSL I/O error"
  1420. msgstr ""
  1421. #: src/message.h:189
  1422. msgid "SSL protocol error"
  1423. msgstr ""
  1424. #: src/message.h:190
  1425. #, c-format
  1426. msgid "SSL unknown error %d"
  1427. msgstr ""
  1428. #: src/message.h:191
  1429. #, c-format
  1430. msgid "SSL initialization failed: OpenSSL connect error %d"
  1431. msgstr ""
  1432. #: src/message.h:192
  1433. #, c-format
  1434. msgid "Size mismatch Expected:%s Actual:%s"
  1435. msgstr ""
  1436. #: src/message.h:193
  1437. msgid "Authorization failed."
  1438. msgstr ""
  1439. #: src/message.h:194
  1440. msgid "Got EOF from the server."
  1441. msgstr ""
  1442. #: src/message.h:195
  1443. msgid "Got EOF from peer."
  1444. msgstr ""
  1445. #: src/message.h:196
  1446. msgid "Malformed meta info."
  1447. msgstr ""
  1448. #: src/message.h:198
  1449. #, c-format
  1450. msgid "Failed to open the file %s, cause: %s"
  1451. msgstr ""
  1452. #: src/message.h:199
  1453. #, c-format
  1454. msgid "Failed to write into the file %s, cause: %s"
  1455. msgstr ""
  1456. #: src/message.h:200
  1457. #, c-format
  1458. msgid "Failed to read from the file %s, cause: %s"
  1459. msgstr ""
  1460. #: src/message.h:201
  1461. msgid "Failed to read data from disk."
  1462. msgstr ""
  1463. #: src/message.h:202
  1464. #, c-format
  1465. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1466. msgstr ""
  1467. #: src/message.h:203
  1468. #, c-format
  1469. msgid "Failed to seek the file %s, cause: %s"
  1470. msgstr ""
  1471. #: src/message.h:204
  1472. #, c-format
  1473. msgid "The offset is out of range, offset=%s"
  1474. msgstr ""
  1475. #: src/message.h:205
  1476. #, c-format
  1477. msgid "%s is not a directory."
  1478. msgstr ""
  1479. #: src/message.h:206
  1480. #, c-format
  1481. msgid "Failed to make the directory %s, cause: %s"
  1482. msgstr ""
  1483. #: src/message.h:207
  1484. #, c-format
  1485. msgid "Failed to open the segment file %s, cause: %s"
  1486. msgstr ""
  1487. #: src/message.h:208
  1488. #, c-format
  1489. msgid "Failed to write into the segment file %s, cause: %s"
  1490. msgstr ""
  1491. #: src/message.h:209
  1492. #, c-format
  1493. msgid "Failed to read from the segment file %s, cause: %s"
  1494. msgstr ""
  1495. #: src/message.h:211
  1496. #, c-format
  1497. msgid "Failed to open a socket, cause: %s"
  1498. msgstr ""
  1499. #: src/message.h:212
  1500. #, c-format
  1501. msgid "Failed to set a socket option, cause: %s"
  1502. msgstr ""
  1503. #: src/message.h:213
  1504. #, c-format
  1505. msgid "Failed to set a socket as blocking, cause: %s"
  1506. msgstr ""
  1507. #: src/message.h:214
  1508. #, c-format
  1509. msgid "Failed to set a socket as non-blocking, cause: %s"
  1510. msgstr ""
  1511. #: src/message.h:215
  1512. #, c-format
  1513. msgid "Failed to bind a socket, cause: %s"
  1514. msgstr ""
  1515. #: src/message.h:216
  1516. #, c-format
  1517. msgid "Failed to listen to a socket, cause: %s"
  1518. msgstr ""
  1519. #: src/message.h:217
  1520. #, c-format
  1521. msgid "Failed to accept a peer connection, cause: %s"
  1522. msgstr ""
  1523. #: src/message.h:218
  1524. #, c-format
  1525. msgid "Failed to get the name of socket, cause: %s"
  1526. msgstr ""
  1527. #: src/message.h:219
  1528. #, c-format
  1529. msgid "Failed to get the name of connected peer, cause: %s"
  1530. msgstr ""
  1531. #: src/message.h:220
  1532. #, c-format
  1533. msgid "Failed to resolve the hostname %s, cause: %s"
  1534. msgstr ""
  1535. #: src/message.h:221
  1536. #, c-format
  1537. msgid "Failed to connect to the host %s, cause: %s"
  1538. msgstr ""
  1539. #: src/message.h:222
  1540. #, c-format
  1541. msgid "Failed to check whether the socket is writable, cause: %s"
  1542. msgstr ""
  1543. #: src/message.h:223
  1544. #, c-format
  1545. msgid "Failed to check whether the socket is readable, cause: %s"
  1546. msgstr ""
  1547. #: src/message.h:224
  1548. #, c-format
  1549. msgid "Failed to send data, cause: %s"
  1550. msgstr ""
  1551. #: src/message.h:225
  1552. #, c-format
  1553. msgid "Failed to receive data, cause: %s"
  1554. msgstr ""
  1555. #: src/message.h:226
  1556. #, c-format
  1557. msgid "Failed to peek data, cause: %s"
  1558. msgstr ""
  1559. #: src/message.h:227
  1560. #, c-format
  1561. msgid "Unknown socket error %d (0x%x)"
  1562. msgstr ""
  1563. #: src/message.h:228
  1564. #, c-format
  1565. msgid "File %s exists, but %s does not exist."
  1566. msgstr ""
  1567. #: src/message.h:229
  1568. #, c-format
  1569. msgid "Invalid payload size for %s, size=%d. It should be %d."
  1570. msgstr ""
  1571. #: src/message.h:230
  1572. #, c-format
  1573. msgid "Invalid ID=%d for %s. It should be %d."
  1574. msgstr ""
  1575. #: src/message.h:231
  1576. #, c-format
  1577. msgid ""
  1578. "Chunk checksum validation failed. checksumIndex=%d, offset=%s, expectedHash=%"
  1579. "s, actualHash=%s"
  1580. msgstr ""
  1581. #: src/message.h:232
  1582. msgid "Download aborted."
  1583. msgstr ""
  1584. #: src/message.h:233
  1585. #, c-format
  1586. msgid "File %s is being downloaded by other command."
  1587. msgstr ""
  1588. #: src/message.h:234
  1589. msgid "Insufficient checksums."
  1590. msgstr ""
  1591. #: src/message.h:235
  1592. #, c-format
  1593. msgid "Tracker returned failure reason: %s"
  1594. msgstr ""
  1595. #: src/message.h:236
  1596. msgid "Flooding detected."
  1597. msgstr ""
  1598. #: src/message.h:237
  1599. #, c-format
  1600. msgid ""
  1601. "Drop connection because no request/piece messages were exchanged in a "
  1602. "certain period(%d seconds)."
  1603. msgstr ""
  1604. #: src/message.h:238
  1605. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  1606. msgstr ""
  1607. #: src/message.h:239
  1608. #, c-format
  1609. msgid "No such file entry %s"
  1610. msgstr ""
  1611. #: src/message.h:240
  1612. #, c-format
  1613. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  1614. msgstr ""
  1615. #: src/message.h:241
  1616. msgid "No HttpRequestEntry found."
  1617. msgstr ""
  1618. #: src/message.h:242
  1619. #, c-format
  1620. msgid "Got %d status, but no location header provided."
  1621. msgstr ""
  1622. #: src/message.h:243
  1623. #, c-format
  1624. msgid "Invalid range header. Request: %s-%s/%s, Response: %s-%s/%s"
  1625. msgstr ""
  1626. #: src/message.h:244
  1627. msgid "No file matched with your preference."
  1628. msgstr ""
  1629. #: src/message.h:245
  1630. msgid "Exception caught"
  1631. msgstr ""
  1632. #: src/message.h:246
  1633. #, c-format
  1634. msgid "Max payload length exceeded or invalid. length = %u"
  1635. msgstr ""
  1636. #: src/message.h:247
  1637. #, c-format
  1638. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  1639. msgstr ""
  1640. #: src/BtSetup.cc:160
  1641. msgid "Errors occurred while binding port.\n"
  1642. msgstr ""
  1643. #: src/Util.cc:731
  1644. msgid "Files:"
  1645. msgstr ""