en@boldquot.po 98 KB

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