en@quot.po 88 KB

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