th.po 55 KB

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