en@boldquot.po 106 KB

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