en@boldquot.po 80 KB

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