en@quot.po 71 KB

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