en@boldquot.po 80 KB

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