en@quot.po 80 KB

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