en@boldquot.po 105 KB

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