en@quot.po 80 KB

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