en@quot.po 105 KB

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