th.po 57 KB

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