th.po 64 KB

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