th.po 64 KB

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