en@boldquot.po 72 KB

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