en@quot.po 101 KB

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