en@boldquot.po 101 KB

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