th.po 62 KB

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