en@quot.po 104 KB

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