aria2.pot 47 KB

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