en@boldquot.po 88 KB

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