en@quot.po 96 KB

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