en@quot.po 97 KB

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