th.po 62 KB

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