th.po 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694
  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: 2011-12-26 00:58+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. "Language: th\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Launchpad-Export-Date: 2008-03-01 03:48+0000\n"
  19. "X-Generator: Launchpad (build Unknown)\n"
  20. #: src/DownloadEngine.cc:225
  21. msgid ""
  22. "Shutdown sequence commencing... Press Ctrl-C again for emergency shutdown."
  23. msgstr ""
  24. #: src/DownloadEngine.cc:232
  25. msgid "Emergency shutdown sequence commencing..."
  26. msgstr ""
  27. #: src/MultiUrlRequestInfo.cc:159
  28. msgid "aria2 will resume download if the transfer is restarted."
  29. msgstr ""
  30. #: src/MultiUrlRequestInfo.cc:160
  31. msgid ""
  32. "If there are any errors, then see the log file. See '-l' option in help/man "
  33. "page for details."
  34. msgstr ""
  35. #: src/MultiUrlRequestInfo.cc:274
  36. #, c-format
  37. msgid "Serialized session to '%s' successfully."
  38. msgstr ""
  39. #: src/MultiUrlRequestInfo.cc:277
  40. #, c-format
  41. msgid "Failed to serialize session to '%s'."
  42. msgstr ""
  43. #: src/RequestGroupMan.cc:342
  44. #, fuzzy, c-format
  45. msgid "Download GID#%lld not complete: %s"
  46. msgstr "CUID#%d - การดาวน์โหลดไม่สิ้นสุด: %s"
  47. #: src/RequestGroupMan.cc:607
  48. msgid "Download Results:"
  49. msgstr ""
  50. #: src/RequestGroupMan.cc:650
  51. msgid "Status Legend:"
  52. msgstr ""
  53. #: src/RequestGroupMan.cc:652
  54. msgid "(OK):download completed."
  55. msgstr ""
  56. #: src/RequestGroupMan.cc:655
  57. msgid "(ERR):error occurred."
  58. msgstr ""
  59. #: src/RequestGroupMan.cc:658
  60. msgid "(INPR):download in-progress."
  61. msgstr ""
  62. #: src/RequestGroupMan.cc:661
  63. msgid "(RM):download removed."
  64. msgstr ""
  65. #: src/OptionHandler.cc:38
  66. msgid " Default: "
  67. msgstr ""
  68. #: src/OptionHandler.cc:39
  69. msgid " Tags: "
  70. msgstr ""
  71. #: src/OptionHandler.cc:40
  72. msgid " Possible Values: "
  73. msgstr ""
  74. #: src/usage_text.h:37
  75. msgid ""
  76. " -d, --dir=DIR The directory to store the downloaded file."
  77. msgstr ""
  78. #: src/usage_text.h:39
  79. msgid ""
  80. " -o, --out=FILE The file name of the downloaded file. When -Z\n"
  81. " option is used, this option is ignored."
  82. msgstr ""
  83. #: src/usage_text.h:42
  84. msgid ""
  85. " -l, --log=LOG The file name of the log file. If '-' is\n"
  86. " specified, log is written to stdout."
  87. msgstr ""
  88. #: src/usage_text.h:45
  89. msgid ""
  90. " -D, --daemon[=true|false] Run as daemon. The current working directory "
  91. "will\n"
  92. " be changed to \"/\" and standard input, "
  93. "standard\n"
  94. " output and standard error will be redirected "
  95. "to\n"
  96. " \"/dev/null\"."
  97. msgstr ""
  98. #: src/usage_text.h:50
  99. msgid ""
  100. " -s, --split=N Download a file using N connections. If more\n"
  101. " than N URLs are given, first N URLs are used "
  102. "and\n"
  103. " remaining URLs are used for backup. If less "
  104. "than\n"
  105. " N URLs are given, those URLs are used more "
  106. "than\n"
  107. " once so that N connections total are made\n"
  108. " simultaneously. The number of connections to "
  109. "the\n"
  110. " same host is restricted by\n"
  111. " --max-connection-per-server option. See also\n"
  112. " --min-split-size option."
  113. msgstr ""
  114. #: src/usage_text.h:60
  115. msgid ""
  116. " --retry-wait=SEC Set the seconds to wait between retries. \n"
  117. " With SEC > 0, aria2 will retry download when "
  118. "the\n"
  119. " HTTP server returns 503 response."
  120. msgstr ""
  121. #: src/usage_text.h:64
  122. msgid " -t, --timeout=SEC Set timeout in seconds."
  123. msgstr ""
  124. #: src/usage_text.h:66
  125. msgid " -m, --max-tries=N Set number of tries. 0 means unlimited."
  126. msgstr ""
  127. #: src/usage_text.h:68
  128. msgid ""
  129. " --http-proxy=PROXY Use this proxy server for HTTP. To erase\n"
  130. " previously defined proxy, use \"\".\n"
  131. " See also --all-proxy option.\n"
  132. " This affects all URLs."
  133. msgstr ""
  134. #: src/usage_text.h:73
  135. msgid ""
  136. " --https-proxy=PROXY Use this proxy server for HTTPS. To erase\n"
  137. " previously defined proxy, use \"\".\n"
  138. " See also --all-proxy option.\n"
  139. " This affects all URLs."
  140. msgstr ""
  141. #: src/usage_text.h:78
  142. msgid ""
  143. " --ftp-proxy=PROXY Use this proxy server for FTP. To erase "
  144. "previously\n"
  145. " defined proxy, use \"\".\n"
  146. " See also --all-proxy option.\n"
  147. " This affects all URLs."
  148. msgstr ""
  149. #: src/usage_text.h:83
  150. msgid ""
  151. " --all-proxy=PROXY Use this proxy server for all protocols. To "
  152. "erase\n"
  153. " previously defined proxy, use \"\".\n"
  154. " You can override this setting and specify a\n"
  155. " proxy server for a particular protocol using\n"
  156. " --http-proxy, --https-proxy and --ftp-proxy\n"
  157. " options.\n"
  158. " This affects all URLs."
  159. msgstr ""
  160. #: src/usage_text.h:91
  161. msgid " --http-user=USER Set HTTP user. This affects all URLs."
  162. msgstr ""
  163. #: src/usage_text.h:93
  164. msgid " --http-passwd=PASSWD Set HTTP password. This affects all URLs."
  165. msgstr ""
  166. #: src/usage_text.h:95
  167. msgid " --proxy-method=METHOD Set the method to use in proxy request."
  168. msgstr ""
  169. #: src/usage_text.h:97
  170. msgid " --referer=REFERER Set Referer. This affects all URLs."
  171. msgstr ""
  172. #: src/usage_text.h:99
  173. msgid " --ftp-user=USER Set FTP user. This affects all URLs."
  174. msgstr ""
  175. #: src/usage_text.h:101
  176. msgid " --ftp-passwd=PASSWD Set FTP password. This affects all URLs."
  177. msgstr ""
  178. #: src/usage_text.h:103
  179. msgid " --ftp-type=TYPE Set FTP transfer type."
  180. msgstr ""
  181. #: src/usage_text.h:105
  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:108
  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:114
  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:120
  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:126
  216. msgid ""
  217. " --file-allocation=METHOD Specify file allocation method.\n"
  218. " 'none' doesn't pre-allocate file space. "
  219. "'prealloc'\n"
  220. " pre-allocates file space before download "
  221. "begins.\n"
  222. " This may take some time depending on the size "
  223. "of\n"
  224. " the file.\n"
  225. " If you are using newer file systems such as "
  226. "ext4\n"
  227. " (with extents support), btrfs, xfs or NTFS\n"
  228. " (MinGW build only), 'falloc' is your best\n"
  229. " choice. It allocates large(few GiB) files\n"
  230. " almost instantly. Don't use 'falloc' with "
  231. "legacy\n"
  232. " file systems such as ext3 and FAT32 because "
  233. "it\n"
  234. " takes almost same time as 'prealloc' and it\n"
  235. " blocks aria2 entirely until allocation "
  236. "finishes.\n"
  237. " 'falloc' may not be available if your system\n"
  238. " doesn't have posix_fallocate() function."
  239. msgstr ""
  240. #: src/usage_text.h:142
  241. msgid ""
  242. " --no-file-allocation-limit=SIZE No file allocation is made for files whose\n"
  243. " size is smaller than SIZE.\n"
  244. " You can append K or M(1K = 1024, 1M = 1024K)."
  245. msgstr ""
  246. #: src/usage_text.h:146
  247. msgid ""
  248. " --enable-direct-io[=true|false] Enable directI/O, which lowers cpu usage "
  249. "while\n"
  250. " allocating files.\n"
  251. " Turn off if you encounter any error"
  252. msgstr ""
  253. #: src/usage_text.h:150
  254. msgid ""
  255. " --allow-overwrite[=true|false] Restart download from scratch if the\n"
  256. " corresponding control file doesn't exist. "
  257. "See\n"
  258. " also --auto-file-renaming option."
  259. msgstr ""
  260. #: src/usage_text.h:154
  261. msgid ""
  262. " --allow-piece-length-change[=true|false] If false is given, aria2 aborts\n"
  263. " download when a piece length is different "
  264. "from\n"
  265. " one in a control file. If true is given, you "
  266. "can\n"
  267. " proceed but some download progress will be "
  268. "lost."
  269. msgstr ""
  270. #: src/usage_text.h:159
  271. msgid ""
  272. " -Z, --force-sequential[=true|false] Fetch URIs in the command-line "
  273. "sequentially\n"
  274. " and download each URI in a separate session, "
  275. "like\n"
  276. " the usual command-line download utilities."
  277. msgstr ""
  278. #: src/usage_text.h:163
  279. msgid ""
  280. " --auto-file-renaming[=true|false] Rename file name if the same file "
  281. "already\n"
  282. " exists. This option works only in http(s)/ftp\n"
  283. " download.\n"
  284. " The new file name has a dot and a number"
  285. "(1..9999)\n"
  286. " appended."
  287. msgstr ""
  288. #: src/usage_text.h:169
  289. msgid ""
  290. " -P, --parameterized-uri[=true|false] Enable parameterized URI support.\n"
  291. " You can specify set of parts:\n"
  292. " http://{sv1,sv2,sv3}/foo.iso\n"
  293. " Also you can specify numeric sequences with "
  294. "step\n"
  295. " counter:\n"
  296. " http://host/image[000-100:2].img\n"
  297. " A step counter can be omitted.\n"
  298. " If all URIs do not point to the same file, "
  299. "such\n"
  300. " as the second example above, -Z option is\n"
  301. " required."
  302. msgstr ""
  303. #: src/usage_text.h:180
  304. msgid ""
  305. " --enable-http-keep-alive[=true|false] Enable HTTP/1.1 persistent connection."
  306. msgstr ""
  307. #: src/usage_text.h:182
  308. msgid " --enable-http-pipelining[=true|false] Enable HTTP/1.1 pipelining."
  309. msgstr ""
  310. #: src/usage_text.h:184
  311. msgid ""
  312. " -V, --check-integrity[=true|false] Check file integrity by validating "
  313. "piece\n"
  314. " hashes or a hash of entire file. This option "
  315. "has\n"
  316. " effect only in BitTorrent, Metalink downloads\n"
  317. " with checksums or HTTP(S)/FTP downloads with\n"
  318. " --checksum option. If piece hashes are "
  319. "provided,\n"
  320. " this option can detect damaged portions of a "
  321. "file\n"
  322. " and re-download them. If a hash of entire file "
  323. "is\n"
  324. " provided, hash check is only done when file "
  325. "has\n"
  326. " been already download. This is determined by "
  327. "file\n"
  328. " length. If hash check fails, file is\n"
  329. " re-downloaded from scratch. If both piece "
  330. "hashes\n"
  331. " and a hash of entire file are provided, only\n"
  332. " piece hashes are used."
  333. msgstr ""
  334. #: src/usage_text.h:198
  335. msgid ""
  336. " --bt-hash-check-seed[=true|false] If true is given, after hash check using\n"
  337. " --check-integrity option and file is "
  338. "complete,\n"
  339. " continue to seed file. If you want to check "
  340. "file\n"
  341. " and download it only when it is damaged or\n"
  342. " incomplete, set this option to false.\n"
  343. " This option has effect only on BitTorrent\n"
  344. " download."
  345. msgstr ""
  346. #: src/usage_text.h:206
  347. msgid ""
  348. " --realtime-chunk-checksum[=true|false] Validate chunk of data by "
  349. "calculating\n"
  350. " checksum while downloading a file if chunk\n"
  351. " checksums are provided."
  352. msgstr ""
  353. #: src/usage_text.h:210
  354. msgid ""
  355. " -c, --continue[=true|false] Continue downloading a partially downloaded\n"
  356. " file. Use this option to resume a download\n"
  357. " started by a web browser or another program\n"
  358. " which downloads files sequentially from the\n"
  359. " beginning. Currently this option is only\n"
  360. " applicable to http(s)/ftp downloads."
  361. msgstr ""
  362. #: src/usage_text.h:217
  363. msgid " -U, --user-agent=USER_AGENT Set user agent for http(s) downloads."
  364. msgstr ""
  365. #: src/usage_text.h:219
  366. msgid " -n, --no-netrc[=true|false] Disables netrc support."
  367. msgstr ""
  368. #: src/usage_text.h:221
  369. msgid ""
  370. " -i, --input-file=FILE Downloads URIs found in FILE. You can specify\n"
  371. " multiple URIs for a single entity: separate\n"
  372. " URIs on a single line using the TAB "
  373. "character.\n"
  374. " Reads input from stdin when '-' is specified.\n"
  375. " Additionally, options can be specified after "
  376. "each\n"
  377. " line of URI. This optional line must start "
  378. "with\n"
  379. " one or more white spaces and have one option "
  380. "per\n"
  381. " single line. See INPUT FILE section of man "
  382. "page\n"
  383. " for details."
  384. msgstr ""
  385. #: src/usage_text.h:231
  386. msgid ""
  387. " -j, --max-concurrent-downloads=N Set maximum number of parallel downloads "
  388. "for\n"
  389. " every static (HTTP/FTP) URL, torrent and "
  390. "metalink.\n"
  391. " See also --split option."
  392. msgstr ""
  393. #: src/usage_text.h:235
  394. msgid ""
  395. " --load-cookies=FILE Load Cookies from FILE using the Firefox3 "
  396. "format\n"
  397. " and Mozilla/Firefox(1.x/2.x)/Netscape format."
  398. msgstr ""
  399. #: src/usage_text.h:238
  400. msgid ""
  401. " --save-cookies=FILE Save Cookies to FILE in Mozilla/Firefox(1.x/2."
  402. "x)/\n"
  403. " Netscape format. If FILE already exists, it "
  404. "is\n"
  405. " overwritten. Session Cookies are also saved "
  406. "and\n"
  407. " their expiry values are treated as 0."
  408. msgstr ""
  409. #: src/usage_text.h:243
  410. msgid ""
  411. " -S, --show-files[=true|false] Print file listing of .torrent, .meta4 and\n"
  412. " .metalink file and exit. More detailed\n"
  413. " information will be listed in case of torrent\n"
  414. " file."
  415. msgstr ""
  416. #: src/usage_text.h:248
  417. msgid ""
  418. " --select-file=INDEX... Set file to download by specifying its index.\n"
  419. " You can find the file index using the\n"
  420. " --show-files option. Multiple indexes can be\n"
  421. " specified by using ',', for example: \"3,6\".\n"
  422. " You can also use '-' to specify a range: "
  423. "\"1-5\".\n"
  424. " ',' and '-' can be used together.\n"
  425. " When used with the -M option, index may vary\n"
  426. " depending on the query(see --metalink-* "
  427. "options)."
  428. msgstr ""
  429. #: src/usage_text.h:257
  430. msgid " -T, --torrent-file=TORRENT_FILE The path to the .torrent file."
  431. msgstr ""
  432. #: src/usage_text.h:259
  433. msgid ""
  434. " --follow-torrent=true|false|mem If true or mem is specified, when a file\n"
  435. " whose suffix is .torrent or content type is\n"
  436. " application/x-bittorrent is downloaded, aria2\n"
  437. " parses it as a torrent file and downloads "
  438. "files\n"
  439. " mentioned in it.\n"
  440. " If mem is specified, a torrent file is not\n"
  441. " written to the disk, but is just kept in "
  442. "memory.\n"
  443. " If false is specified, the action mentioned "
  444. "above\n"
  445. " is not taken."
  446. msgstr ""
  447. #: src/usage_text.h:269
  448. msgid ""
  449. " --listen-port=PORT... Set TCP port number for BitTorrent downloads.\n"
  450. " Multiple ports can be specified by using ',',\n"
  451. " for example: \"6881,6885\". You can also use "
  452. "'-'\n"
  453. " to specify a range: \"6881-6999\". ',' and '-' "
  454. "can\n"
  455. " be used together."
  456. msgstr ""
  457. #: src/usage_text.h:275
  458. msgid ""
  459. " --max-overall-upload-limit=SPEED Set max overall upload speed in bytes/"
  460. "sec.\n"
  461. " 0 means unrestricted.\n"
  462. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  463. " To limit the upload speed per torrent, use\n"
  464. " --max-upload-limit option."
  465. msgstr ""
  466. #: src/usage_text.h:281
  467. msgid ""
  468. " -u, --max-upload-limit=SPEED Set max upload speed per each torrent in\n"
  469. " bytes/sec. 0 means unrestricted.\n"
  470. " You can append K or M(1K = 1024, 1M = 1024K).\n"
  471. " To limit the overall upload speed, use\n"
  472. " --max-overall-upload-limit option."
  473. msgstr ""
  474. #: src/usage_text.h:287
  475. msgid ""
  476. " --seed-time=MINUTES Specify seeding time in minutes. Also see the\n"
  477. " --seed-ratio option."
  478. msgstr ""
  479. #: src/usage_text.h:290
  480. msgid ""
  481. " --seed-ratio=RATIO Specify share ratio. Seed completed torrents\n"
  482. " until share ratio reaches RATIO.\n"
  483. " You are strongly encouraged to specify equals "
  484. "or\n"
  485. " more than 1.0 here. Specify 0.0 if you intend "
  486. "to\n"
  487. " do seeding regardless of share ratio.\n"
  488. " If --seed-time option is specified along with\n"
  489. " this option, seeding ends when at least one "
  490. "of\n"
  491. " the conditions is satisfied."
  492. msgstr ""
  493. #: src/usage_text.h:299
  494. msgid ""
  495. " --peer-id-prefix=PEER_ID_PREFIX Specify the prefix of peer ID. The peer ID "
  496. "in\n"
  497. " BitTorrent is 20 byte length. If more than 20\n"
  498. " bytes are specified, only first 20 bytes are\n"
  499. " used. If less than 20 bytes are specified, "
  500. "random\n"
  501. " byte data are added to make its length 20 "
  502. "bytes."
  503. msgstr ""
  504. #: src/usage_text.h:305
  505. msgid " --enable-peer-exchange[=true|false] Enable Peer Exchange extension."
  506. msgstr ""
  507. #: src/usage_text.h:307
  508. msgid " --enable-dht[=true|false] Enable IPv4 DHT functionality."
  509. msgstr ""
  510. #: src/usage_text.h:309
  511. msgid ""
  512. " --dht-listen-port=PORT... Set UDP listening port for both IPv4 and IPv6\n"
  513. " DHT. Multiple ports can be specified by using\n"
  514. " ',', for example: \"6881,6885\". You can also\n"
  515. " use '-' to specify a range: \"6881-6999\". "
  516. "','\n"
  517. " and '-' can be used together."
  518. msgstr ""
  519. #: src/usage_text.h:315
  520. msgid ""
  521. " --dht-entry-point=HOST:PORT Set host and port as an entry point to IPv4 "
  522. "DHT\n"
  523. " network."
  524. msgstr ""
  525. #: src/usage_text.h:318
  526. msgid ""
  527. " --dht-file-path=PATH Change the IPv4 DHT routing table file to PATH."
  528. msgstr ""
  529. #: src/usage_text.h:320
  530. msgid ""
  531. " --bt-min-crypto-level=plain|arc4 Set minimum level of encryption method.\n"
  532. " If several encryption methods are provided by "
  533. "a\n"
  534. " peer, aria2 chooses the lowest one which "
  535. "satisfies\n"
  536. " the given level."
  537. msgstr ""
  538. #: src/usage_text.h:325
  539. msgid ""
  540. " --bt-require-crypto[=true|false] If true is given, aria2 doesn't accept "
  541. "and\n"
  542. " establish connection with legacy BitTorrent\n"
  543. " handshake. Thus aria2 always uses Obfuscation\n"
  544. " handshake."
  545. msgstr ""
  546. #: src/usage_text.h:330
  547. msgid ""
  548. " --bt-request-peer-speed-limit=SPEED If the whole download speed of every\n"
  549. " torrent is lower than SPEED, aria2 "
  550. "temporarily\n"
  551. " increases the number of peers to try for more\n"
  552. " download speed. Configuring this option with "
  553. "your\n"
  554. " preferred download speed can increase your\n"
  555. " download speed in some cases.\n"
  556. " You can append K or M(1K = 1024, 1M = 1024K)."
  557. msgstr ""
  558. #: src/usage_text.h:338
  559. msgid ""
  560. " --bt-max-open-files=NUM Specify maximum number of files to open in "
  561. "each\n"
  562. " BitTorrent download."
  563. msgstr ""
  564. #: src/usage_text.h:341
  565. msgid ""
  566. " --bt-seed-unverified[=true|false] Seed previously downloaded files without\n"
  567. " verifying piece hashes."
  568. msgstr ""
  569. #: src/usage_text.h:344
  570. msgid ""
  571. " --bt-max-peers=NUM Specify the maximum number of peers per "
  572. "torrent.\n"
  573. " 0 means unlimited.\n"
  574. " See also --bt-request-peer-speed-limit option."
  575. msgstr ""
  576. #: src/usage_text.h:348
  577. msgid ""
  578. " -M, --metalink-file=METALINK_FILE The file path to the .meta4 and ."
  579. "metalink\n"
  580. " file. Reads input from stdin when '-' is\n"
  581. " specified."
  582. msgstr ""
  583. #: src/usage_text.h:352
  584. msgid ""
  585. " -C, --metalink-servers=NUM_SERVERS The number of servers to connect to\n"
  586. " simultaneously. Some Metalinks regulate the\n"
  587. " number of servers to connect. aria2 strictly\n"
  588. " respects them. This means that if Metalink "
  589. "defines\n"
  590. " the maxconnections attribute lower than\n"
  591. " NUM_SERVERS, then aria2 uses the value of\n"
  592. " maxconnections attribute instead of "
  593. "NUM_SERVERS.\n"
  594. " See also -s and -j options."
  595. msgstr ""
  596. #: src/usage_text.h:361
  597. msgid " --metalink-version=VERSION The version of the file to download."
  598. msgstr ""
  599. #: src/usage_text.h:363
  600. msgid " --metalink-language=LANGUAGE The language of the file to download."
  601. msgstr ""
  602. #: src/usage_text.h:365
  603. msgid ""
  604. " --metalink-os=OS The operating system of the file to download."
  605. msgstr ""
  606. #: src/usage_text.h:367
  607. msgid ""
  608. " --metalink-location=LOCATION[,...] The location of the preferred server.\n"
  609. " A comma-delimited list of locations is\n"
  610. " acceptable."
  611. msgstr ""
  612. #: src/usage_text.h:371
  613. msgid ""
  614. " --metalink-preferred-protocol=PROTO Specify preferred protocol. Specify "
  615. "'none'\n"
  616. " if you don't have any preferred protocol."
  617. msgstr ""
  618. #: src/usage_text.h:374
  619. msgid ""
  620. " --follow-metalink=true|false|mem If true or mem is specified, when a file\n"
  621. " whose suffix is .meta4 or .metalink, or "
  622. "content\n"
  623. " type of application/metalink4+xml or\n"
  624. " application/metalink+xml is downloaded, aria2\n"
  625. " parses it as a metalink file and downloads "
  626. "files\n"
  627. " mentioned in it.\n"
  628. " If mem is specified, a metalink file is not\n"
  629. " written to the disk, but is just kept in "
  630. "memory.\n"
  631. " If false is specified, the action mentioned "
  632. "above\n"
  633. " is not taken."
  634. msgstr ""
  635. #: src/usage_text.h:385
  636. msgid ""
  637. " --metalink-enable-unique-protocol[=true|false] If true is given and "
  638. "several\n"
  639. " protocols are available for a mirror in a "
  640. "metalink\n"
  641. " file, aria2 uses one of them.\n"
  642. " Use --metalink-preferred-protocol option to\n"
  643. " specify the preference of protocol."
  644. msgstr ""
  645. #: src/usage_text.h:391
  646. msgid " -v, --version Print the version number and exit."
  647. msgstr ""
  648. #: src/usage_text.h:393
  649. msgid ""
  650. " -h, --help[=TAG|KEYWORD] Print usage and exit.\n"
  651. " The help messages are classified with tags. A "
  652. "tag\n"
  653. " starts with \"#\". For example, type \"--"
  654. "help=#http\"\n"
  655. " to get the usage for the options tagged with\n"
  656. " \"#http\". If non-tag word is given, print the "
  657. "usage\n"
  658. " for the options whose name includes that word."
  659. msgstr ""
  660. #: src/usage_text.h:400
  661. msgid " --no-conf[=true|false] Disable loading aria2.conf file."
  662. msgstr ""
  663. #: src/usage_text.h:402
  664. msgid ""
  665. " --conf-path=PATH Change the configuration file path to PATH."
  666. msgstr ""
  667. #: src/usage_text.h:404
  668. msgid ""
  669. " --stop=SEC Stop application after SEC seconds has "
  670. "passed.\n"
  671. " If 0 is given, this feature is disabled."
  672. msgstr ""
  673. #: src/usage_text.h:407
  674. msgid ""
  675. " --header=HEADER Append HEADER to HTTP request header. You can "
  676. "use\n"
  677. " this option repeatedly to specify more than "
  678. "one\n"
  679. " header:\n"
  680. " aria2c --header=\"X-A: b78\" --header=\"X-B: "
  681. "9J1\"\n"
  682. " http://host/file"
  683. msgstr ""
  684. #: src/usage_text.h:413
  685. msgid " -q, --quiet[=true|false] Make aria2 quiet(no console output)."
  686. msgstr ""
  687. #: src/usage_text.h:415
  688. msgid " --async-dns[=true|false] Enable asynchronous DNS."
  689. msgstr ""
  690. #: src/usage_text.h:417
  691. msgid " --ftp-reuse-connection[=true|false] Reuse connection in FTP."
  692. msgstr ""
  693. #: src/usage_text.h:419
  694. msgid ""
  695. " --summary-interval=SEC Set interval to output download progress "
  696. "summary.\n"
  697. " Setting 0 suppresses the output."
  698. msgstr ""
  699. #: src/usage_text.h:422
  700. msgid " --log-level=LEVEL Set log level to output."
  701. msgstr ""
  702. #: src/usage_text.h:424
  703. msgid ""
  704. " -R, --remote-time[=true|false] Retrieve timestamp of the remote file from "
  705. "the\n"
  706. " remote HTTP/FTP server and if it is "
  707. "available,\n"
  708. " apply it to the local file."
  709. msgstr ""
  710. #: src/usage_text.h:428
  711. msgid ""
  712. " --connect-timeout=SEC Set the connect timeout in seconds to "
  713. "establish\n"
  714. " connection to HTTP/FTP/proxy server. After "
  715. "the\n"
  716. " connection is established, this option makes "
  717. "no\n"
  718. " effect and --timeout option is used instead."
  719. msgstr ""
  720. #: src/usage_text.h:433
  721. msgid ""
  722. " --max-file-not-found=NUM If aria2 receives `file not found' status from "
  723. "the\n"
  724. " remote HTTP/FTP servers NUM times without "
  725. "getting\n"
  726. " a single byte, then force the download to "
  727. "fail.\n"
  728. " Specify 0 to disable this option.\n"
  729. " This options is effective only when using\n"
  730. " HTTP/FTP servers."
  731. msgstr ""
  732. #: src/usage_text.h:440
  733. msgid ""
  734. " --uri-selector=SELECTOR Specify URI selection algorithm.\n"
  735. " If 'inorder' is given, URI is tried in the "
  736. "order\n"
  737. " appeared in the URI list.\n"
  738. " If 'feedback' is given, aria2 uses download "
  739. "speed\n"
  740. " observed in the previous downloads and choose\n"
  741. " fastest server in the URI list. This also\n"
  742. " effectively skips dead mirrors. The observed\n"
  743. " download speed is a part of performance "
  744. "profile\n"
  745. " of servers mentioned in --server-stat-of and\n"
  746. " --server-stat-if options.\n"
  747. " If 'adaptive' is given, selects one of the "
  748. "best\n"
  749. " mirrors for the first and reserved "
  750. "connections.\n"
  751. " For supplementary ones, it returns mirrors "
  752. "which\n"
  753. " has not been tested yet, and if each of them "
  754. "has\n"
  755. " already been tested, returns mirrors which has "
  756. "to\n"
  757. " be tested again. Otherwise, it doesn't select\n"
  758. " anymore mirrors. Like 'feedback', it uses a\n"
  759. " performance profile of servers."
  760. msgstr ""
  761. #: src/usage_text.h:459
  762. msgid ""
  763. " --server-stat-of=FILE Specify the filename to which performance "
  764. "profile\n"
  765. " of the servers is saved. You can load saved "
  766. "data\n"
  767. " using --server-stat-if option."
  768. msgstr ""
  769. #: src/usage_text.h:463
  770. msgid ""
  771. " --server-stat-if=FILE Specify the filename to load performance "
  772. "profile\n"
  773. " of the servers. The loaded data will be used "
  774. "in\n"
  775. " some URI selector such as 'feedback'.\n"
  776. " See also --uri-selector option"
  777. msgstr ""
  778. #: src/usage_text.h:468
  779. msgid ""
  780. " --server-stat-timeout=SEC Specifies timeout in seconds to invalidate\n"
  781. " performance profile of the servers since the "
  782. "last\n"
  783. " contact to them."
  784. msgstr ""
  785. #: src/usage_text.h:472
  786. msgid ""
  787. " --auto-save-interval=SEC Save a control file(*.aria2) every SEC "
  788. "seconds.\n"
  789. " If 0 is given, a control file is not saved "
  790. "during\n"
  791. " download. aria2 saves a control file when it "
  792. "stops\n"
  793. " regardless of the value."
  794. msgstr ""
  795. #: src/usage_text.h:477
  796. msgid ""
  797. " --certificate=FILE Use the client certificate in FILE.\n"
  798. " The certificate must be in PEM format.\n"
  799. " You may use --private-key option to specify "
  800. "the\n"
  801. " private key."
  802. msgstr ""
  803. #: src/usage_text.h:482
  804. msgid ""
  805. " --private-key=FILE Use the private key in FILE.\n"
  806. " The private key must be decrypted and in PEM\n"
  807. " format. See also --certificate option."
  808. msgstr ""
  809. #: src/usage_text.h:486
  810. msgid ""
  811. " --ca-certificate=FILE Use the certificate authorities in FILE to "
  812. "verify\n"
  813. " the peers. The certificate file must be in "
  814. "PEM\n"
  815. " format and can contain multiple CA "
  816. "certificates.\n"
  817. " Use --check-certificate option to enable\n"
  818. " verification."
  819. msgstr ""
  820. #: src/usage_text.h:492
  821. msgid ""
  822. " --check-certificate[=true|false] Verify the peer using certificates "
  823. "specified\n"
  824. " in --ca-certificate option."
  825. msgstr ""
  826. #: src/usage_text.h:495
  827. msgid ""
  828. " --no-proxy=DOMAINS Specify comma separated hostnames, domains or\n"
  829. " network address with or without CIDR block "
  830. "where\n"
  831. " proxy should not be used."
  832. msgstr ""
  833. #: src/usage_text.h:499
  834. msgid ""
  835. " --use-head[=true|false] Use HEAD method for the first request to the "
  836. "HTTP\n"
  837. " server."
  838. msgstr ""
  839. #: src/usage_text.h:502
  840. msgid " --event-poll=POLL Specify the method for polling events."
  841. msgstr ""
  842. #: src/usage_text.h:504
  843. msgid ""
  844. " --bt-external-ip=IPADDRESS Specify the external IP address to report to "
  845. "a\n"
  846. " BitTorrent tracker. Although this function is\n"
  847. " named 'external', it can accept any kind of "
  848. "IP\n"
  849. " addresses."
  850. msgstr ""
  851. #: src/usage_text.h:509
  852. msgid ""
  853. " --http-auth-challenge[=true|false] Send HTTP authorization header only when "
  854. "it\n"
  855. " is requested by the server. If false is set, "
  856. "then\n"
  857. " authorization header is always sent to the "
  858. "server.\n"
  859. " There is an exception: if username and "
  860. "password\n"
  861. " are embedded in URI, authorization header is\n"
  862. " always sent to the server regardless of this\n"
  863. " option."
  864. msgstr ""
  865. #: src/usage_text.h:517
  866. msgid ""
  867. " -O, --index-out=INDEX=PATH Set file path for file with index=INDEX. You "
  868. "can\n"
  869. " find the file index using the --show-files "
  870. "option.\n"
  871. " PATH is a relative path to the path specified "
  872. "in\n"
  873. " --dir option. You can use this option "
  874. "multiple\n"
  875. " times."
  876. msgstr ""
  877. #: src/usage_text.h:523
  878. msgid ""
  879. " --dry-run[=true|false] If true is given, aria2 just checks whether "
  880. "the\n"
  881. " remote file is available and doesn't download\n"
  882. " data. This option has effect on HTTP/FTP "
  883. "download.\n"
  884. " BitTorrent downloads are canceled if true is\n"
  885. " specified."
  886. msgstr ""
  887. #: src/usage_text.h:529
  888. msgid ""
  889. " --bt-tracker-interval=SEC Set the interval in seconds between tracker\n"
  890. " requests. This completely overrides interval "
  891. "value\n"
  892. " and aria2 just uses this value and ignores "
  893. "the\n"
  894. " min interval and interval value in the "
  895. "response of\n"
  896. " tracker. If 0 is set, aria2 determines "
  897. "interval\n"
  898. " based on the response of tracker and the "
  899. "download\n"
  900. " progress."
  901. msgstr ""
  902. #: src/usage_text.h:537
  903. msgid ""
  904. " --on-download-complete=COMMAND Set the command to be executed after "
  905. "download\n"
  906. " completed.\n"
  907. " See --on-download-start option for the\n"
  908. " requirement of COMMAND.\n"
  909. " See also --on-download-stop option."
  910. msgstr ""
  911. #: src/usage_text.h:543
  912. msgid ""
  913. " --on-download-start=COMMAND Set the command to be executed after download\n"
  914. " got started. aria2 passes 3 arguments to "
  915. "COMMAND:\n"
  916. " GID, the nubmer of files and file path. See "
  917. "Event\n"
  918. " Hook in man page for more details."
  919. msgstr ""
  920. #: src/usage_text.h:548
  921. msgid ""
  922. " --on-download-pause=COMMAND Set the command to be executed after download\n"
  923. " was paused.\n"
  924. " See --on-download-start option for the\n"
  925. " requirement of COMMAND."
  926. msgstr ""
  927. #: src/usage_text.h:553
  928. msgid ""
  929. " --on-download-error=COMMAND Set the command to be executed after download\n"
  930. " aborted due to error.\n"
  931. " See --on-download-start option for the\n"
  932. " requirement of COMMAND.\n"
  933. " See also --on-download-stop option."
  934. msgstr ""
  935. #: src/usage_text.h:559
  936. msgid ""
  937. " --on-download-stop=COMMAND Set the command to be executed after download\n"
  938. " stopped. You can override the command to be\n"
  939. " executed for particular download result using\n"
  940. " --on-download-complete and --on-download-"
  941. "error. If\n"
  942. " they are specified, command specified in this\n"
  943. " option is not executed.\n"
  944. " See --on-download-start option for the\n"
  945. " requirement of COMMAND."
  946. msgstr ""
  947. #: src/usage_text.h:568
  948. msgid ""
  949. " --bt-stop-timeout=SEC Stop BitTorrent download if download speed is "
  950. "0 in\n"
  951. " consecutive SEC seconds. If 0 is given, this\n"
  952. " feature is disabled."
  953. msgstr ""
  954. #: src/usage_text.h:572
  955. msgid ""
  956. " --bt-prioritize-piece=head[=SIZE],tail[=SIZE] Try to download first and "
  957. "last\n"
  958. " pieces of each file first. This is useful for\n"
  959. " previewing files. The argument can contain 2\n"
  960. " keywords:head and tail. To include both "
  961. "keywords,\n"
  962. " they must be separated by comma. These "
  963. "keywords\n"
  964. " can take one parameter, SIZE. For example, if\n"
  965. " head=SIZE is specified, pieces in the range "
  966. "of\n"
  967. " first SIZE bytes of each file get higher "
  968. "priority.\n"
  969. " tail=SIZE means the range of last SIZE bytes "
  970. "of\n"
  971. " each file. SIZE can include K or M(1K = 1024, "
  972. "1M =\n"
  973. " 1024K). If SIZE is omitted, SIZE=1M is used."
  974. msgstr ""
  975. #: src/usage_text.h:584
  976. msgid ""
  977. " --interface=INTERFACE Bind sockets to given interface. You can "
  978. "specify\n"
  979. " interface name, IP address and hostname."
  980. msgstr ""
  981. #: src/usage_text.h:587
  982. msgid " --disable-ipv6[=true|false] Disable IPv6."
  983. msgstr ""
  984. #: src/usage_text.h:589
  985. msgid ""
  986. " --bt-save-metadata[=true|false] Save metadata as .torrent file. This option "
  987. "has\n"
  988. " effect only when BitTorrent Magnet URI is "
  989. "used.\n"
  990. " The filename is hex encoded info hash with "
  991. "suffix\n"
  992. " .torrent. The directory to be saved is the "
  993. "same\n"
  994. " directory where download file is saved. If "
  995. "the\n"
  996. " same file already exists, metadata is not "
  997. "saved.\n"
  998. " See also --bt-metadata-only option."
  999. msgstr ""
  1000. #: src/usage_text.h:597
  1001. msgid ""
  1002. " --http-no-cache[=true|false] Send Cache-Control: no-cache and Pragma: no-"
  1003. "cache\n"
  1004. " header to avoid cached content. If false is\n"
  1005. " given, these headers are not sent and you can "
  1006. "add\n"
  1007. " Cache-Control header with a directive you "
  1008. "like\n"
  1009. " using --header option."
  1010. msgstr ""
  1011. #: src/usage_text.h:603
  1012. msgid ""
  1013. " --bt-metadata-only[=true|false] Download metadata only. The file(s) "
  1014. "described\n"
  1015. " in metadata will not be downloaded. This "
  1016. "option\n"
  1017. " has effect only when BitTorrent Magnet URI is\n"
  1018. " used. See also --bt-save-metadata option."
  1019. msgstr ""
  1020. #: src/usage_text.h:608
  1021. msgid ""
  1022. " --human-readable[=true|false] Print sizes and speed in human readable "
  1023. "format\n"
  1024. " (e.g., 1.2Ki, 3.4Mi) in the console readout."
  1025. msgstr ""
  1026. #: src/usage_text.h:611
  1027. msgid " --bt-enable-lpd[=true|false] Enable Local Peer Discovery."
  1028. msgstr ""
  1029. #: src/usage_text.h:613
  1030. msgid ""
  1031. " --bt-lpd-interface=INTERFACE Use given interface for Local Peer Discovery. "
  1032. "If\n"
  1033. " this option is not specified, the default\n"
  1034. " interface is chosen. You can specify "
  1035. "interface\n"
  1036. " name and IP address."
  1037. msgstr ""
  1038. #: src/usage_text.h:618
  1039. msgid ""
  1040. " --reuse-uri[=true|false] Reuse already used URIs if no unused URIs are\n"
  1041. " left."
  1042. msgstr ""
  1043. #: src/usage_text.h:621
  1044. msgid " --all-proxy-user=USER Set user for --all-proxy option."
  1045. msgstr ""
  1046. #: src/usage_text.h:623
  1047. msgid " --all-proxy-passwd=PASSWD Set password for --all-proxy option."
  1048. msgstr ""
  1049. #: src/usage_text.h:625
  1050. msgid " --http-proxy-user=USER Set user for --http-proxy option."
  1051. msgstr ""
  1052. #: src/usage_text.h:627
  1053. msgid " --http-proxy-passwd=PASSWD Set password for --http-proxy option."
  1054. msgstr ""
  1055. #: src/usage_text.h:629
  1056. msgid " --https-proxy-user=USER Set user for --https-proxy option."
  1057. msgstr ""
  1058. #: src/usage_text.h:631
  1059. msgid " --https-proxy-passwd=PASSWD Set password for --https-proxy option."
  1060. msgstr ""
  1061. #: src/usage_text.h:633
  1062. msgid " --ftp-proxy-user=USER Set user for --ftp-proxy option."
  1063. msgstr ""
  1064. #: src/usage_text.h:635
  1065. msgid " --ftp-proxy-passwd=PASSWD Set password for --ftp-proxy option."
  1066. msgstr ""
  1067. #: src/usage_text.h:637
  1068. msgid ""
  1069. " --remove-control-file[=true|false] Remove control file before download. "
  1070. "Using\n"
  1071. " with --allow-overwrite=true, download always\n"
  1072. " starts from scratch. This will be useful for\n"
  1073. " users behind proxy server which disables "
  1074. "resume."
  1075. msgstr ""
  1076. #: src/usage_text.h:642
  1077. msgid ""
  1078. " --always-resume[=true|false] Always resume download. If true is given, "
  1079. "aria2\n"
  1080. " always tries to resume download and if resume "
  1081. "is\n"
  1082. " not possible, aborts download. If false is "
  1083. "given,\n"
  1084. " when all given URIs do not support resume or\n"
  1085. " aria2 encounters N URIs which does not "
  1086. "support\n"
  1087. " resume (N is the value specified using\n"
  1088. " --max-resume-failure-tries option), aria2\n"
  1089. " downloads file from scratch.\n"
  1090. " See --max-resume-failure-tries option."
  1091. msgstr ""
  1092. #: src/usage_text.h:652
  1093. msgid ""
  1094. " --max-resume-failure-tries=N When used with --always-resume=false, aria2\n"
  1095. " downloads file from scratch when aria2 detects "
  1096. "N\n"
  1097. " number of URIs that does not support resume. "
  1098. "If N\n"
  1099. " is 0, aria2 downloads file from scratch when "
  1100. "all\n"
  1101. " given URIs do not support resume.\n"
  1102. " See --always-resume option."
  1103. msgstr ""
  1104. #: src/usage_text.h:659
  1105. msgid " --bt-tracker-timeout=SEC Set timeout in seconds."
  1106. msgstr ""
  1107. #: src/usage_text.h:661
  1108. msgid ""
  1109. " --bt-tracker-connect-timeout=SEC Set the connect timeout in seconds to\n"
  1110. " establish connection to tracker. After the\n"
  1111. " connection is established, this option makes "
  1112. "no\n"
  1113. " effect and --bt-tracker-timeout option is "
  1114. "used\n"
  1115. " instead."
  1116. msgstr ""
  1117. #: src/usage_text.h:667
  1118. msgid " --dht-message-timeout=SEC Set timeout in seconds."
  1119. msgstr ""
  1120. #: src/usage_text.h:669
  1121. msgid ""
  1122. " --http-accept-gzip[=true|false] Send 'Accept: deflate, gzip' request "
  1123. "header\n"
  1124. " and inflate response if remote server "
  1125. "responds\n"
  1126. " with 'Content-Encoding: gzip' or\n"
  1127. " 'Content-Encoding: deflate'."
  1128. msgstr ""
  1129. #: src/usage_text.h:674
  1130. msgid ""
  1131. " --save-session=FILE Save error/unfinished downloads to FILE on "
  1132. "exit.\n"
  1133. " You can pass this output file to aria2c with -"
  1134. "i\n"
  1135. " option on restart. Please note that downloads\n"
  1136. " added by aria2.addTorrent and aria2."
  1137. "addMetalink\n"
  1138. " RPC method and whose metadata could not be "
  1139. "saved\n"
  1140. " as a file will not be saved. Downloads "
  1141. "removed\n"
  1142. " using aria2.remove and aria2.forceRemove will "
  1143. "not\n"
  1144. " be saved."
  1145. msgstr ""
  1146. #: src/usage_text.h:683
  1147. msgid ""
  1148. " -x, --max-connection-per-server=NUM The maximum number of connections to "
  1149. "one\n"
  1150. " server for each download."
  1151. msgstr ""
  1152. #: src/usage_text.h:686
  1153. msgid ""
  1154. " -k, --min-split-size=SIZE aria2 does not split less than 2*SIZE byte "
  1155. "range.\n"
  1156. " For example, let's consider downloading 20MiB\n"
  1157. " file. If SIZE is 10M, aria2 can split file "
  1158. "into 2\n"
  1159. " range [0-10MiB) and [10MiB-20MiB) and download "
  1160. "it\n"
  1161. " using 2 sources(if --split >= 2, of course).\n"
  1162. " If SIZE is 15M, since 2*15M > 20MiB, aria2 "
  1163. "does\n"
  1164. " not split file and download it using 1 "
  1165. "source.\n"
  1166. " You can append K or M(1K = 1024, 1M = 1024K)."
  1167. msgstr ""
  1168. #: src/usage_text.h:695
  1169. msgid ""
  1170. " --conditional-get[=true|false] Download file only when the local file is "
  1171. "older\n"
  1172. " than remote file. Currently, this function "
  1173. "has\n"
  1174. " many limitations. See man page for details."
  1175. msgstr ""
  1176. #: src/usage_text.h:699
  1177. msgid ""
  1178. " --on-bt-download-complete=COMMAND For BitTorrent, a command specified in\n"
  1179. " --on-download-complete is called after "
  1180. "download\n"
  1181. " completed and seeding is over. On the other "
  1182. "hand,\n"
  1183. " this option sets the command to be executed "
  1184. "after\n"
  1185. " download completed but before seeding.\n"
  1186. " See --on-download-start option for the\n"
  1187. " requirement of COMMAND."
  1188. msgstr ""
  1189. #: src/usage_text.h:707
  1190. msgid ""
  1191. " --enable-async-dns6[=true|false] Enable IPv6 name resolution in "
  1192. "asynchronous\n"
  1193. " DNS resolver. This option will be ignored "
  1194. "when\n"
  1195. " --async-dns=false."
  1196. msgstr ""
  1197. #: src/usage_text.h:711
  1198. msgid ""
  1199. " --enable-dht6[=true|false] Enable IPv6 DHT functionality.\n"
  1200. " Use --dht-listen-port option to specify port\n"
  1201. " number to listen on. See also --dht-listen-"
  1202. "addr6\n"
  1203. " option."
  1204. msgstr ""
  1205. #: src/usage_text.h:716
  1206. msgid ""
  1207. " --dht-listen-addr6=ADDR Specify address to bind socket for IPv6 DHT. \n"
  1208. " It should be a global unicast IPv6 address of "
  1209. "the\n"
  1210. " host."
  1211. msgstr ""
  1212. #: src/usage_text.h:720
  1213. msgid ""
  1214. " --dht-entry-point6=HOST:PORT Set host and port as an entry point to IPv6 "
  1215. "DHT\n"
  1216. " network."
  1217. msgstr ""
  1218. #: src/usage_text.h:723
  1219. msgid ""
  1220. " --dht-file-path6=PATH Change the IPv6 DHT routing table file to PATH."
  1221. msgstr ""
  1222. #: src/usage_text.h:725
  1223. msgid ""
  1224. " --bt-tracker=URI[,...] Comma separated list of additional BitTorrent\n"
  1225. " tracker's announce URI. These URIs are not\n"
  1226. " affected by --bt-exclude-tracker option "
  1227. "because\n"
  1228. " they are added after URIs in --bt-exclude-"
  1229. "tracker\n"
  1230. " option are removed."
  1231. msgstr ""
  1232. #: src/usage_text.h:731
  1233. msgid ""
  1234. " --bt-exclude-tracker=URI[,...] Comma separated list of BitTorrent "
  1235. "tracker's\n"
  1236. " announce URI to remove. You can use special "
  1237. "value\n"
  1238. " '*' which matches all URIs, thus removes all\n"
  1239. " announce URIs. When specifying '*' in shell\n"
  1240. " command-line, don't forget to escape or quote "
  1241. "it.\n"
  1242. " See also --bt-tracker option."
  1243. msgstr ""
  1244. #: src/usage_text.h:738
  1245. msgid ""
  1246. " --max-download-result=NUM Set maximum number of download result kept in\n"
  1247. " memory. The download results are completed/"
  1248. "error/\n"
  1249. " removed downloads. The download results are "
  1250. "stored\n"
  1251. " in FIFO queue and it can store at most NUM\n"
  1252. " download results. When queue is full and new\n"
  1253. " download result is created, oldest download "
  1254. "result\n"
  1255. " is removed from the front of the queue and new "
  1256. "one\n"
  1257. " is pushed to the back. Setting big number in "
  1258. "this\n"
  1259. " option may result high memory consumption "
  1260. "after\n"
  1261. " thousands of downloads. Specifying 0 means no\n"
  1262. " download result is kept."
  1263. msgstr ""
  1264. #: src/usage_text.h:750
  1265. msgid ""
  1266. " --async-dns-server=IPADDRESS[,...] Comma separated list of DNS server "
  1267. "address\n"
  1268. " used in asynchronous DNS resolver. Usually\n"
  1269. " asynchronous DNS resolver reads DNS server\n"
  1270. " addresses from /etc/resolv.conf. When this "
  1271. "option\n"
  1272. " is used, it uses DNS servers specified in "
  1273. "this\n"
  1274. " option instead of ones in /etc/resolv.conf. "
  1275. "You\n"
  1276. " can specify both IPv4 and IPv6 address. This\n"
  1277. " option is useful when the system does not "
  1278. "have\n"
  1279. " /etc/resolv.conf and user does not have the\n"
  1280. " permission to create it."
  1281. msgstr ""
  1282. #: src/usage_text.h:761
  1283. msgid ""
  1284. " --enable-rpc[=true|false] Enable JSON-RPC/XML-RPC server.\n"
  1285. " It is strongly recommended to set username "
  1286. "and\n"
  1287. " password using --rpc-user and --rpc-passwd\n"
  1288. " option. See also --rpc-listen-port option."
  1289. msgstr ""
  1290. #: src/usage_text.h:766
  1291. msgid ""
  1292. " --rpc-max-request-size=SIZE Set max size of JSON-RPC/XML-RPC request. If "
  1293. "aria2\n"
  1294. " detects the request is more than SIZE bytes, "
  1295. "it\n"
  1296. " drops connection."
  1297. msgstr ""
  1298. #: src/usage_text.h:770
  1299. msgid " --rpc-user=USER Set JSON-RPC/XML-RPC user."
  1300. msgstr ""
  1301. #: src/usage_text.h:772
  1302. msgid " --rpc-passwd=PASSWD Set JSON-RPC/XML-RPC password."
  1303. msgstr ""
  1304. #: src/usage_text.h:774
  1305. msgid ""
  1306. " --rpc-listen-all[=true|false] Listen incoming JSON-RPC/XML-RPC requests on "
  1307. "all\n"
  1308. " network interfaces. If false is given, listen "
  1309. "only\n"
  1310. " on local loopback interface."
  1311. msgstr ""
  1312. #: src/usage_text.h:778
  1313. msgid ""
  1314. " --rpc-listen-port=PORT Specify a port number for JSON-RPC/XML-RPC "
  1315. "server\n"
  1316. " to listen to."
  1317. msgstr ""
  1318. #: src/usage_text.h:781
  1319. msgid " --show-console-readout[=true|false] Show console readout."
  1320. msgstr ""
  1321. #: src/usage_text.h:783
  1322. msgid ""
  1323. " --metalink-base-uri=URI Specify base URI to resolve relative URI in\n"
  1324. " metalink:url and metalink:metaurl element in "
  1325. "a\n"
  1326. " metalink file stored in local disk. If URI "
  1327. "points\n"
  1328. " to a directory, URI must end with '/'."
  1329. msgstr ""
  1330. #: src/usage_text.h:788
  1331. msgid ""
  1332. " --stream-piece-selector=SELECTOR Specify piece selection algorithm\n"
  1333. " used in HTTP/FTP download. Piece means fixed\n"
  1334. " length segment which is downloaded in "
  1335. "parallel\n"
  1336. " in segmented download. If 'default' is given,\n"
  1337. " aria2 selects piece so that it reduces the\n"
  1338. " number of establishing connection. This is\n"
  1339. " reasonable default behaviour because\n"
  1340. " establishing connection is an expensive\n"
  1341. " operation.\n"
  1342. " If 'inorder' is given, aria2 selects piece "
  1343. "which\n"
  1344. " has minimum index. Index=0 means first of the\n"
  1345. " file. This will be useful to view movie while\n"
  1346. " downloading it. --enable-http-pipelining "
  1347. "option\n"
  1348. " may be useful to reduce reconnection "
  1349. "overhead.\n"
  1350. " Please note that aria2 honors\n"
  1351. " --min-split-size option, so it will be "
  1352. "necessary\n"
  1353. " to specify a reasonable value to\n"
  1354. " --min-split-size option.\n"
  1355. " If 'geom' is given, at the beginning aria2\n"
  1356. " selects piece which has minimum index like\n"
  1357. " 'inorder', but it exponentially increasingly\n"
  1358. " keeps space from previously selected piece. "
  1359. "This\n"
  1360. " will reduce the number of establishing "
  1361. "connection\n"
  1362. " and at the same time it will download the\n"
  1363. " beginning part of the file first. This will "
  1364. "be\n"
  1365. " useful to view movie while downloading it."
  1366. msgstr ""
  1367. #: src/usage_text.h:815
  1368. msgid ""
  1369. " --truncate-console-readout[=true|false] Truncate console readout to fit in\n"
  1370. " a single line."
  1371. msgstr ""
  1372. #: src/usage_text.h:818
  1373. msgid ""
  1374. " --pause[=true|false] Pause download after added. This option is\n"
  1375. " effective only when --enable-rpc=true is given."
  1376. msgstr ""
  1377. #: src/usage_text.h:821
  1378. msgid ""
  1379. " --rpc-allow-origin-all[=true|false] Add Access-Control-Allow-Origin header\n"
  1380. " field with value '*' to the RPC response."
  1381. msgstr ""
  1382. #: src/usage_text.h:824
  1383. msgid ""
  1384. " --download-result=OPT This option changes the way \"Download Results"
  1385. "\"\n"
  1386. " is formatted. If OPT is 'default', print GID,\n"
  1387. " status, average download speed and path/URI. "
  1388. "If\n"
  1389. " multiple files are involved, path/URI of "
  1390. "first\n"
  1391. " requested file is printed and remaining ones "
  1392. "are\n"
  1393. " omitted.\n"
  1394. " If OPT is 'full', print GID, status, average\n"
  1395. " download speed, percentage of progress and\n"
  1396. " path/URI. The percentage of progress and\n"
  1397. " path/URI are printed for each requested file "
  1398. "in\n"
  1399. " each row."
  1400. msgstr ""
  1401. #: src/usage_text.h:836
  1402. msgid ""
  1403. " --hash-check-only[=true|false] If true is given, after hash check using\n"
  1404. " --check-integrity option, abort download "
  1405. "whether\n"
  1406. " or not download is complete."
  1407. msgstr ""
  1408. #: src/usage_text.h:840
  1409. msgid ""
  1410. " --checksum=TYPE=DIGEST Set checksum. TYPE is hash type. The "
  1411. "supported\n"
  1412. " hash type is listed in \"Hash Algorithms\" in\n"
  1413. " \"aria2c -v\". DIGEST is hex digest.\n"
  1414. " For example, setting sha-1 digest looks like\n"
  1415. " this:\n"
  1416. " sha-1=0192ba11326fe2298c8cb4de616f4d4140213838\n"
  1417. " This option applies only to HTTP(S)/FTP\n"
  1418. " downloads."
  1419. msgstr ""
  1420. #: src/usage_text.h:849
  1421. msgid ""
  1422. " --piece-length=LENGTH Set a piece length for HTTP/FTP downloads. "
  1423. "This\n"
  1424. " is the boundary when aria2 splits a file. All\n"
  1425. " splits occur at multiple of this length. This\n"
  1426. " option will be ignored in BitTorrent "
  1427. "downloads.\n"
  1428. " It will be also ignored if Metalink file\n"
  1429. " contains piece hashes."
  1430. msgstr ""
  1431. #: src/usage_text.h:856
  1432. msgid ""
  1433. " --stop-with-process=PID Stop application when process PID is not "
  1434. "running.\n"
  1435. " This is useful if aria2 process is forked from "
  1436. "a\n"
  1437. " parent process. The parent process can fork "
  1438. "aria2\n"
  1439. " with its own pid and when parent process "
  1440. "exits\n"
  1441. " for some reason, aria2 can detect it and "
  1442. "shutdown\n"
  1443. " itself."
  1444. msgstr ""
  1445. #: src/version_usage.cc:57
  1446. msgid " version "
  1447. msgstr ""
  1448. #: src/version_usage.cc:61
  1449. msgid ""
  1450. "This program is free software; you can redistribute it and/or modify\n"
  1451. "it under the terms of the GNU General Public License as published by\n"
  1452. "the Free Software Foundation; either version 2 of the License, or\n"
  1453. "(at your option) any later version.\n"
  1454. "\n"
  1455. "This program is distributed in the hope that it will be useful,\n"
  1456. "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  1457. "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  1458. "GNU General Public License for more details.\n"
  1459. msgstr ""
  1460. #: src/version_usage.cc:71
  1461. msgid "** Configuration **"
  1462. msgstr ""
  1463. #: src/version_usage.cc:72
  1464. msgid "Enabled Features"
  1465. msgstr ""
  1466. #: src/version_usage.cc:75
  1467. msgid "Hash Algorithms"
  1468. msgstr ""
  1469. #: src/version_usage.cc:79
  1470. #, c-format
  1471. msgid "Report bugs to %s"
  1472. msgstr ""
  1473. #: src/version_usage.cc:80
  1474. msgid "Visit"
  1475. msgstr ""
  1476. #: src/version_usage.cc:87
  1477. #, c-format
  1478. msgid ""
  1479. "Usage: aria2c [OPTIONS] [URI | MAGNET | TORRENT_FILE | METALINK_FILE]..."
  1480. msgstr ""
  1481. #: src/version_usage.cc:92
  1482. #, c-format
  1483. msgid "See 'aria2c -h'."
  1484. msgstr ""
  1485. #: src/version_usage.cc:99
  1486. #, c-format
  1487. msgid "Printing all options."
  1488. msgstr ""
  1489. #: src/version_usage.cc:101
  1490. #, c-format
  1491. msgid "Printing options tagged with '%s'."
  1492. msgstr ""
  1493. #: src/version_usage.cc:104
  1494. #, c-format
  1495. msgid "See 'aria2c -h#help' to know all available tags."
  1496. msgstr ""
  1497. #: src/version_usage.cc:107 src/version_usage.cc:121
  1498. #, c-format
  1499. msgid "Options:"
  1500. msgstr ""
  1501. #: src/version_usage.cc:118
  1502. #, c-format
  1503. msgid "Printing options whose name includes '%s'."
  1504. msgstr ""
  1505. #: src/version_usage.cc:129
  1506. #, c-format
  1507. msgid "No option matching with '%s'."
  1508. msgstr ""
  1509. #: src/version_usage.cc:137
  1510. #, c-format
  1511. msgid ""
  1512. " You can specify multiple HTTP(S)/FTP URIs. Unless you specify -Z option, "
  1513. "all\n"
  1514. " URIs must point to the same file or downloading will fail."
  1515. msgstr ""
  1516. #: src/version_usage.cc:140
  1517. #, c-format
  1518. msgid ""
  1519. " You can also specify arbitrary number of BitTorrent Magnet URIs, torrent/\n"
  1520. " metalink files stored in a local drive. Please note that they are always\n"
  1521. " treated as a separate download."
  1522. msgstr ""
  1523. #: src/version_usage.cc:144
  1524. #, c-format
  1525. msgid ""
  1526. " You can specify both torrent file with -T option and URIs. By doing this,\n"
  1527. " download a file from both torrent swarm and HTTP/FTP server at the same "
  1528. "time,\n"
  1529. " while the data from HTTP/FTP are uploaded to the torrent swarm. For single "
  1530. "file\n"
  1531. " torrents, URI can be a complete URI pointing to the resource or if URI "
  1532. "ends\n"
  1533. " with '/', 'name' in torrent file is added. For multi-file torrents, 'name' "
  1534. "and\n"
  1535. " 'path' in torrent are added to form a URI for each file."
  1536. msgstr ""
  1537. #: src/version_usage.cc:151
  1538. #, c-format
  1539. msgid ""
  1540. " Make sure that URI is quoted with single(') or double(\") quotation if it\n"
  1541. " contains \"&\" or any characters that have special meaning in shell."
  1542. msgstr ""
  1543. #: src/version_usage.cc:154
  1544. #, c-format
  1545. msgid ""
  1546. "About the number of connections\n"
  1547. " Since 1.10.0 release, aria2 uses 1 connection per host by default and has "
  1548. "20MiB\n"
  1549. " segment size restriction. So whatever value you specify using -s option, "
  1550. "it\n"
  1551. " uses 1 connection per host. To make it behave like 1.9.x, use\n"
  1552. " --max-connection-per-server=4 --min-split-size=1M.\n"
  1553. "\n"
  1554. msgstr ""
  1555. #: src/version_usage.cc:161
  1556. #, c-format
  1557. msgid "Refer to man page for more information."
  1558. msgstr ""
  1559. #: src/option_processing.cc:86
  1560. #, c-format
  1561. msgid "Caught Error while parsing environment variable '%s'"
  1562. msgstr ""
  1563. #: src/option_processing.cc:168
  1564. #, c-format
  1565. msgid "Did you mean:"
  1566. msgstr ""
  1567. #: src/option_processing.cc:237 src/option_processing.cc:246
  1568. #, c-format
  1569. msgid "Parse error in %s"
  1570. msgstr ""
  1571. #: src/option_processing.cc:241 src/option_processing.cc:282
  1572. #, c-format
  1573. msgid "Usage:"
  1574. msgstr ""
  1575. #: src/option_processing.cc:251
  1576. #, c-format
  1577. msgid "Configuration file %s is not found."
  1578. msgstr ""
  1579. #: src/OptionHandlerException.cc:43
  1580. #, c-format
  1581. msgid "We encountered a problem while processing the option '--%s'."
  1582. msgstr ""
  1583. #: src/UnknownOptionException.cc:41
  1584. #, c-format
  1585. msgid "Unknown option '%s'"
  1586. msgstr ""
  1587. #: src/BtSetup.cc:215
  1588. msgid "Errors occurred while binding port.\n"
  1589. msgstr ""
  1590. #: src/AbstractCommand.cc:443
  1591. #, c-format
  1592. msgid "CUID#%lld - Failed to resume download. Download from scratch."
  1593. msgstr ""
  1594. #: src/AdaptiveURISelector.cc:228
  1595. #, c-format
  1596. msgid ""
  1597. "Lowering lowest-speed-limit since known max speed is too near (new:%d was:%d "
  1598. "max:%d)"
  1599. msgstr ""
  1600. #: src/AdaptiveURISelector.cc:235
  1601. #, c-format
  1602. msgid ""
  1603. "Lowering lowest-speed-limit since we have no clue about available speed (now:"
  1604. "%d was:%d)"
  1605. msgstr ""
  1606. #: src/BtStopDownloadCommand.cc:64
  1607. #, c-format
  1608. msgid "GID#%lld Stop downloading torrent due to --bt-stop-timeout option."
  1609. msgstr ""
  1610. #: src/DHTConnectionImpl.cc:89
  1611. #, c-format
  1612. msgid "IPv%d DHT: listening to port %u"
  1613. msgstr ""
  1614. #: src/HttpListenCommand.cc:112
  1615. #, c-format
  1616. msgid "IPv%d RPC: listening to port %u"
  1617. msgstr ""
  1618. #: src/PeerListenCommand.cc:83
  1619. #, c-format
  1620. msgid "IPv%d BitTorrent: listening to port %u"
  1621. msgstr ""
  1622. #: src/RequestGroup.cc:381
  1623. msgid ""
  1624. "For BitTorrent Magnet URI, enabling DHT is strongly recommended. See --"
  1625. "enable-dht option."
  1626. msgstr ""
  1627. #: src/RequestGroup.cc:686
  1628. #, c-format
  1629. msgid "Removed control file for %s because it is requested by user."
  1630. msgstr ""
  1631. #: src/SingleFileAllocationIterator.cc:75
  1632. msgid ""
  1633. "Allocating disk space. Use --file-allocation=none to disable it. See --file-"
  1634. "allocation option in man page for more details."
  1635. msgstr ""
  1636. #: src/message.h:57
  1637. #, fuzzy, c-format
  1638. msgid "GID#%lld - Download has already completed: %s"
  1639. msgstr "%d - การดาวน์โหลดสมบูรณ์แล้ว: %s"
  1640. #: src/message.h:106
  1641. #, c-format
  1642. msgid "Unrecognized URI or unsupported protocol: %s"
  1643. msgstr "รูปแบบ URI ไม่ถูกต้องหรือเป็นโปรโตคอลที่ไม่สนับสนุน: %s"
  1644. #: src/message.h:107
  1645. #, c-format
  1646. msgid "Tracker returned warning message: %s"
  1647. msgstr "แทรกเกอร์ส่งคำเตือนกลับมา: %s"
  1648. #: src/message.h:108
  1649. #, c-format
  1650. msgid "The segment file %s exists."
  1651. msgstr "พบไฟล์เซ็คเมนท์ %s"
  1652. #: src/message.h:109
  1653. #, c-format
  1654. msgid "The segment file %s does not exist."
  1655. msgstr "ไม่พบไฟล์เซ็คเมนท์ %s"
  1656. #: src/message.h:110
  1657. #, c-format
  1658. msgid "Saving the segment file %s"
  1659. msgstr ""
  1660. #: src/message.h:111
  1661. msgid "The segment file was saved successfully."
  1662. msgstr ""
  1663. #: src/message.h:112
  1664. #, c-format
  1665. msgid "Loading the segment file %s."
  1666. msgstr ""
  1667. #: src/message.h:113
  1668. msgid "The segment file was loaded successfully."
  1669. msgstr ""
  1670. #: src/message.h:114
  1671. msgid "No URI to download. Download aborted."
  1672. msgstr ""
  1673. #: src/message.h:115
  1674. #, c-format
  1675. msgid ""
  1676. "File %s exists, but a control file(*.aria2) does not exist. Download was "
  1677. "canceled in order to prevent your file from being truncated to 0. If you are "
  1678. "sure to download the file all over again, then delete it or add --allow-"
  1679. "overwrite=true option and restart aria2."
  1680. msgstr ""
  1681. #: src/message.h:116
  1682. #, c-format
  1683. msgid "Allocating file %s, %s bytes"
  1684. msgstr ""
  1685. #: src/message.h:117
  1686. msgid "File not found"
  1687. msgstr ""
  1688. #: src/message.h:118
  1689. msgid "Not a directory"
  1690. msgstr ""
  1691. #: src/message.h:119
  1692. #, c-format
  1693. msgid "Insufficient checksums. checksumLength=%d, numChecksum=%d"
  1694. msgstr ""
  1695. #: src/message.h:120
  1696. #, c-format
  1697. msgid "Writing file %s"
  1698. msgstr ""
  1699. #: src/message.h:121
  1700. msgid "No peer list received."
  1701. msgstr ""
  1702. #: src/message.h:122
  1703. #, c-format
  1704. msgid "Adding peer %s:%d"
  1705. msgstr ""
  1706. #: src/message.h:123
  1707. #, c-format
  1708. msgid "Deleting used piece index=%d, fillRate(%%)=%d<=%d"
  1709. msgstr ""
  1710. #: src/message.h:124
  1711. msgid "Download of selected files was complete."
  1712. msgstr ""
  1713. #: src/message.h:125
  1714. msgid "The download was complete."
  1715. msgstr ""
  1716. #: src/message.h:126
  1717. #, c-format
  1718. msgid "Removed %lu have entries."
  1719. msgstr ""
  1720. #: src/message.h:127
  1721. #, c-format
  1722. msgid "Validating file %s"
  1723. msgstr ""
  1724. #: src/message.h:131
  1725. #, c-format
  1726. msgid "Metalink: Queueing %s for download."
  1727. msgstr ""
  1728. #: src/message.h:132
  1729. #, c-format
  1730. msgid "Download complete: %s"
  1731. msgstr ""
  1732. #: src/message.h:133
  1733. msgid "Seeding is over."
  1734. msgstr ""
  1735. #: src/message.h:134
  1736. msgid "No chunk to verify."
  1737. msgstr ""
  1738. #: src/message.h:135
  1739. #, c-format
  1740. msgid "Good chunk checksum. hash=%s"
  1741. msgstr ""
  1742. #: src/message.h:136
  1743. #, c-format
  1744. msgid "Failed to load cookies from %s"
  1745. msgstr ""
  1746. #: src/message.h:137
  1747. #, c-format
  1748. msgid ""
  1749. ".netrc file %s does not have correct permissions. It should be 600. netrc "
  1750. "support disabled."
  1751. msgstr ""
  1752. #: src/message.h:138
  1753. msgid "Logging started."
  1754. msgstr ""
  1755. #: src/message.h:139
  1756. msgid "Specify at least one URL."
  1757. msgstr ""
  1758. #: src/message.h:140
  1759. msgid "daemon failed."
  1760. msgstr ""
  1761. #: src/message.h:141
  1762. #, c-format
  1763. msgid "Verification finished successfully. file=%s"
  1764. msgstr ""
  1765. #: src/message.h:142
  1766. #, c-format
  1767. msgid "Checksum error detected. file=%s"
  1768. msgstr ""
  1769. #: src/message.h:143
  1770. #, c-format
  1771. msgid "Incomplete range specified. %s"
  1772. msgstr ""
  1773. #: src/message.h:144
  1774. #, c-format
  1775. msgid "Failed to convert string into value: %s"
  1776. msgstr ""
  1777. #: src/message.h:145
  1778. msgid "Resource not found"
  1779. msgstr ""
  1780. #: src/message.h:146
  1781. #, c-format
  1782. msgid "File already exists. Renamed to %s."
  1783. msgstr ""
  1784. #: src/message.h:147
  1785. msgid "Cannot parse metalink XML file. XML may be malformed."
  1786. msgstr ""
  1787. #: src/message.h:148
  1788. #, c-format
  1789. msgid "Too small payload size for %s, size=%lu."
  1790. msgstr ""
  1791. #: src/message.h:149
  1792. #, c-format
  1793. msgid ""
  1794. "Removed the defunct control file %s because the download file %s doesn't "
  1795. "exist."
  1796. msgstr ""
  1797. #: src/message.h:150
  1798. #, c-format
  1799. msgid "Your share ratio was %.1f, uploaded/downloaded=%sB/%sB"
  1800. msgstr ""
  1801. #: src/message.h:151
  1802. #, c-format
  1803. msgid "Missing %s in torrent metainfo."
  1804. msgstr ""
  1805. #: src/message.h:152
  1806. msgid "Tracker returned null data."
  1807. msgstr ""
  1808. #: src/message.h:153
  1809. msgid "Windows socket library initialization failed"
  1810. msgstr ""
  1811. #: src/message.h:154
  1812. #, c-format
  1813. msgid "%ld second(s) has passed. Stopping application."
  1814. msgstr ""
  1815. #: src/message.h:155
  1816. #, c-format
  1817. msgid ""
  1818. "Saved signature as %s. Please note that aria2 doesn't verify signatures."
  1819. msgstr ""
  1820. #: src/message.h:157
  1821. #, c-format
  1822. msgid "Saving signature as %s failed. Maybe file already exists."
  1823. msgstr ""
  1824. #: src/message.h:160
  1825. #, c-format
  1826. msgid "Failed to open ServerStat file %s for read."
  1827. msgstr ""
  1828. #: src/message.h:161
  1829. #, c-format
  1830. msgid "ServerStat file %s loaded successfully."
  1831. msgstr ""
  1832. #: src/message.h:162
  1833. #, c-format
  1834. msgid "Failed to read ServerStat from %s."
  1835. msgstr ""
  1836. #: src/message.h:165
  1837. #, c-format
  1838. msgid "Failed to open ServerStat file %s for write."
  1839. msgstr ""
  1840. #: src/message.h:166
  1841. #, c-format
  1842. msgid "ServerStat file %s saved successfully."
  1843. msgstr ""
  1844. #: src/message.h:167
  1845. #, c-format
  1846. msgid "Failed to write ServerStat to %s."
  1847. msgstr ""
  1848. #: src/message.h:170
  1849. #, c-format
  1850. msgid "Failed to establish connection, cause: %s"
  1851. msgstr ""
  1852. #: src/message.h:171
  1853. #, c-format
  1854. msgid "Network problem has occurred. cause:%s"
  1855. msgstr ""
  1856. #: src/message.h:173
  1857. #, c-format
  1858. msgid "Failed to load trusted CA certificates from %s. Cause: %s"
  1859. msgstr ""
  1860. #: src/message.h:175
  1861. #, c-format
  1862. msgid ""
  1863. "Certificate verification failed. Cause: %s See --ca-certificate and --check-"
  1864. "certificate option."
  1865. msgstr ""
  1866. #: src/message.h:177
  1867. msgid "No certificate found."
  1868. msgstr ""
  1869. #: src/message.h:178
  1870. msgid "Hostname not match."
  1871. msgstr ""
  1872. #: src/message.h:179
  1873. msgid "No files to download."
  1874. msgstr ""
  1875. #: src/message.h:181
  1876. msgid ""
  1877. "You may encounter the certificate verification error with HTTPS server. See "
  1878. "--ca-certificate and --check-certificate option."
  1879. msgstr ""
  1880. #: src/message.h:183
  1881. #, c-format
  1882. msgid "Printing the contents of file '%s'..."
  1883. msgstr ""
  1884. #: src/message.h:184
  1885. msgid "This file is neither Torrent nor Metalink file. Skipping."
  1886. msgstr ""
  1887. #: src/message.h:189
  1888. #, c-format
  1889. msgid "Is '%s' a file?"
  1890. msgstr ""
  1891. #: src/message.h:190
  1892. #, c-format
  1893. msgid "Failed to find given interface %s, cause: %s"
  1894. msgstr ""
  1895. #: src/message.h:192
  1896. #, c-format
  1897. msgid "Saved metadata as %s."
  1898. msgstr ""
  1899. #: src/message.h:193
  1900. #, c-format
  1901. msgid "Saving metadata as %s failed. Maybe file already exists."
  1902. msgstr ""
  1903. #: src/message.h:195
  1904. #, c-format
  1905. msgid "Detected directory traversal directive in %s"
  1906. msgstr ""
  1907. #: src/message.h:199
  1908. msgid "Timeout."
  1909. msgstr ""
  1910. #: src/message.h:200
  1911. msgid "Invalid chunk size."
  1912. msgstr ""
  1913. #: src/message.h:201
  1914. #, c-format
  1915. msgid "Too large chunk. size=%d"
  1916. msgstr ""
  1917. #: src/message.h:202
  1918. msgid "Invalid header."
  1919. msgstr ""
  1920. #: src/message.h:203
  1921. msgid "Invalid response."
  1922. msgstr ""
  1923. #: src/message.h:204
  1924. msgid "No header found."
  1925. msgstr ""
  1926. #: src/message.h:205
  1927. msgid "No status header."
  1928. msgstr ""
  1929. #: src/message.h:206
  1930. msgid "Proxy connection failed."
  1931. msgstr ""
  1932. #: src/message.h:207
  1933. msgid "Connection failed."
  1934. msgstr ""
  1935. #: src/message.h:208
  1936. #, c-format
  1937. msgid ""
  1938. "The requested filename and the previously registered one are not same. "
  1939. "Expected:%s Actual:%s"
  1940. msgstr ""
  1941. #: src/message.h:209
  1942. #, c-format
  1943. msgid "The response status is not successful. status=%d"
  1944. msgstr ""
  1945. #: src/message.h:211
  1946. #, c-format
  1947. msgid "Transfer encoding %s is not supported."
  1948. msgstr ""
  1949. #: src/message.h:212
  1950. #, c-format
  1951. msgid "SSL initialization failed: %s"
  1952. msgstr ""
  1953. #: src/message.h:213
  1954. msgid "SSL I/O error"
  1955. msgstr ""
  1956. #: src/message.h:214
  1957. msgid "SSL protocol error"
  1958. msgstr ""
  1959. #: src/message.h:215
  1960. #, c-format
  1961. msgid "SSL unknown error %d"
  1962. msgstr ""
  1963. #: src/message.h:216
  1964. #, c-format
  1965. msgid "SSL initialization failed: OpenSSL connect error %d"
  1966. msgstr ""
  1967. #: src/message.h:218
  1968. msgid "Authorization failed."
  1969. msgstr ""
  1970. #: src/message.h:219
  1971. msgid "Got EOF from the server."
  1972. msgstr ""
  1973. #: src/message.h:220
  1974. msgid "Got EOF from peer."
  1975. msgstr ""
  1976. #: src/message.h:221
  1977. msgid "Malformed meta info."
  1978. msgstr ""
  1979. #: src/message.h:223
  1980. #, c-format
  1981. msgid "Failed to open the file %s, cause: %s"
  1982. msgstr ""
  1983. #: src/message.h:224
  1984. #, c-format
  1985. msgid "Failed to write into the file %s, cause: %s"
  1986. msgstr ""
  1987. #: src/message.h:225
  1988. #, c-format
  1989. msgid "Failed to read from the file %s, cause: %s"
  1990. msgstr ""
  1991. #: src/message.h:226
  1992. msgid "Failed to read data from disk."
  1993. msgstr ""
  1994. #: src/message.h:227
  1995. #, c-format
  1996. msgid "Failed to calculate SHA1 digest of or a part of the file %s, cause: %s"
  1997. msgstr ""
  1998. #: src/message.h:228
  1999. #, c-format
  2000. msgid "Failed to seek the file %s, cause: %s"
  2001. msgstr ""
  2002. #: src/message.h:230
  2003. #, c-format
  2004. msgid "%s is not a directory."
  2005. msgstr ""
  2006. #: src/message.h:231
  2007. #, c-format
  2008. msgid "Failed to make the directory %s, cause: %s"
  2009. msgstr ""
  2010. #: src/message.h:235
  2011. #, c-format
  2012. msgid "Failed to open a socket, cause: %s"
  2013. msgstr ""
  2014. #: src/message.h:236
  2015. #, c-format
  2016. msgid "Failed to set a socket option, cause: %s"
  2017. msgstr ""
  2018. #: src/message.h:237
  2019. #, c-format
  2020. msgid "Failed to set a socket as blocking, cause: %s"
  2021. msgstr ""
  2022. #: src/message.h:238
  2023. #, c-format
  2024. msgid "Failed to set a socket as non-blocking, cause: %s"
  2025. msgstr ""
  2026. #: src/message.h:239
  2027. #, c-format
  2028. msgid "Failed to bind a socket, cause: %s"
  2029. msgstr ""
  2030. #: src/message.h:240
  2031. #, c-format
  2032. msgid "Failed to listen to a socket, cause: %s"
  2033. msgstr ""
  2034. #: src/message.h:241
  2035. #, c-format
  2036. msgid "Failed to accept a peer connection, cause: %s"
  2037. msgstr ""
  2038. #: src/message.h:242
  2039. #, c-format
  2040. msgid "Failed to get the name of socket, cause: %s"
  2041. msgstr ""
  2042. #: src/message.h:243
  2043. #, c-format
  2044. msgid "Failed to get the name of connected peer, cause: %s"
  2045. msgstr ""
  2046. #: src/message.h:244
  2047. #, c-format
  2048. msgid "Failed to resolve the hostname %s, cause: %s"
  2049. msgstr ""
  2050. #: src/message.h:245
  2051. #, c-format
  2052. msgid "Failed to connect to the host %s, cause: %s"
  2053. msgstr ""
  2054. #: src/message.h:246
  2055. #, c-format
  2056. msgid "Failed to check whether the socket is writable, cause: %s"
  2057. msgstr ""
  2058. #: src/message.h:247
  2059. #, c-format
  2060. msgid "Failed to check whether the socket is readable, cause: %s"
  2061. msgstr ""
  2062. #: src/message.h:248
  2063. #, c-format
  2064. msgid "Failed to send data, cause: %s"
  2065. msgstr ""
  2066. #: src/message.h:249
  2067. #, c-format
  2068. msgid "Failed to receive data, cause: %s"
  2069. msgstr ""
  2070. #: src/message.h:250
  2071. #, c-format
  2072. msgid "Failed to peek data, cause: %s"
  2073. msgstr ""
  2074. #: src/message.h:251
  2075. #, c-format
  2076. msgid "Unknown socket error %d (0x%x)"
  2077. msgstr ""
  2078. #: src/message.h:252
  2079. #, c-format
  2080. msgid "File %s exists, but %s does not exist."
  2081. msgstr ""
  2082. #: src/message.h:254
  2083. #, c-format
  2084. msgid "Invalid payload size for %s, size=%lu. It should be %lu."
  2085. msgstr ""
  2086. #: src/message.h:255
  2087. #, c-format
  2088. msgid "Invalid ID=%d for %s. It should be %d."
  2089. msgstr ""
  2090. #: src/message.h:257
  2091. msgid "Download aborted."
  2092. msgstr ""
  2093. #: src/message.h:258
  2094. #, c-format
  2095. msgid "File %s is being downloaded by other command."
  2096. msgstr ""
  2097. #: src/message.h:259
  2098. msgid "Insufficient checksums."
  2099. msgstr ""
  2100. #: src/message.h:260
  2101. #, c-format
  2102. msgid "Tracker returned failure reason: %s"
  2103. msgstr ""
  2104. #: src/message.h:261
  2105. msgid "Flooding detected."
  2106. msgstr ""
  2107. #: src/message.h:263
  2108. #, c-format
  2109. msgid ""
  2110. "Drop connection because no request/piece messages were exchanged in a "
  2111. "certain period(%ld seconds)."
  2112. msgstr ""
  2113. #: src/message.h:265
  2114. msgid "The infoHash in torrent file doesn't match to one in .aria2 file."
  2115. msgstr ""
  2116. #: src/message.h:266
  2117. #, c-format
  2118. msgid "No such file entry %s"
  2119. msgstr ""
  2120. #: src/message.h:267
  2121. #, c-format
  2122. msgid "Too slow Downloading speed: %d <= %d(B/s), host:%s"
  2123. msgstr ""
  2124. #: src/message.h:268
  2125. msgid "No HttpRequestEntry found."
  2126. msgstr ""
  2127. #: src/message.h:269
  2128. #, c-format
  2129. msgid "Got %d status, but no location header provided."
  2130. msgstr ""
  2131. #: src/message.h:271
  2132. msgid "No file matched with your preference."
  2133. msgstr ""
  2134. #: src/message.h:272
  2135. msgid "Exception caught"
  2136. msgstr ""
  2137. #: src/message.h:273
  2138. #, c-format
  2139. msgid "Max payload length exceeded or invalid. length = %u"
  2140. msgstr ""
  2141. #: src/message.h:274
  2142. #, c-format
  2143. msgid "Invalid file length. Cannot continue download %s: local %s, remote %s"
  2144. msgstr ""
  2145. #, fuzzy
  2146. #~ msgid "must be either 'true' or 'false'."
  2147. #~ msgstr "ต้องเป็น 'true' หรือ 'false'"
  2148. #~ msgid "must be between %s and %s."
  2149. #~ msgstr "ต้องอยู่ระหว่าง %s และ %s"
  2150. #~ msgid "must be smaller than or equal to %s."
  2151. #~ msgstr "ต้องน้อยกว่าหรือเท่ากับ %s"
  2152. #~ msgid "must be greater than or equal to %s."
  2153. #~ msgstr "ต้องมากกว่าหรือเท่ากับ %s"
  2154. #~ msgid "must be a number."
  2155. #~ msgstr "ต้องเป็นตัวเลข"
  2156. #~ msgid "must be smaller than or equal to %.1f."
  2157. #~ msgstr "ต้องน้อยกว่าหรือเท่ากับ %.1f"
  2158. #~ msgid "must be between %.1f and %.1f."
  2159. #~ msgstr "ต้องอยู่ระหว่าง %.1f และ %.1f"
  2160. #~ msgid "must be greater than or equal to %.1f."
  2161. #~ msgstr "ต้องมากกว่าหรือเท่ากับ %.1f"
  2162. #~ msgid "must be one of the following:"
  2163. #~ msgstr "ต้องเลือกหนึ่งตัวเลือกจากรายการต่อไปนี้"
  2164. #, fuzzy
  2165. #~ msgid "Unrecognized format"
  2166. #~ msgstr "รูปแบบพร๊อกซีไม่ถูกต้อง"
  2167. #~ msgid "unrecognized proxy format"
  2168. #~ msgstr "รูปแบบพร๊อกซีไม่ถูกต้อง"
  2169. #~ msgid "CUID#%d - The download for one segment completed successfully."
  2170. #~ msgstr "CUID#%d - การดาวน์โหลดหนึ่งเซ็กเมนท์เสร็จสิ้นสมบูรณ์"
  2171. #, fuzzy
  2172. #~ msgid "CUID#%d - No segment available."
  2173. #~ msgstr "CUID@%d - ไม่มีเซ็กเมนท์ว่างอยู่"
  2174. #~ msgid "CUID#%d - Connecting to %s:%d"
  2175. #~ msgstr "CUID#%d - เชื่อมต่อไปยัง %s:%d"
  2176. #~ msgid ""
  2177. #~ "CUID#%d - The segment changed. We send the request again with new Range "
  2178. #~ "header."
  2179. #~ msgstr ""
  2180. #~ "CUID#%d - เซ็กเมนท์นี้ถูกเปลี่ยนแปลง เราได้ส่งคำร้องขออีกครั้งพร้อมกับค่า Range header ใหม่"
  2181. #~ msgid "CUID#%d - Redirecting to %s"
  2182. #~ msgstr "CUID#%d - เปลี่ยนทางไปยัง %s"
  2183. #~ msgid ""
  2184. #~ "CUID#%d - Requesting:\n"
  2185. #~ "%s"
  2186. #~ msgstr ""
  2187. #~ "CUID#%d - กำลังร้องขอ:\n"
  2188. #~ "%s"
  2189. #~ msgid ""
  2190. #~ "CUID#%d - Response received:\n"
  2191. #~ "%s"
  2192. #~ msgstr ""
  2193. #~ "CUID#%d - ได้รับการตอบรับ:\n"
  2194. #~ "%s"
  2195. #~ msgid "CUID#%d - Download aborted. URI=%s"
  2196. #~ msgstr "CUID#%d - การดาวน์โหลดถูกยกเลิก URI=%s"
  2197. #~ msgid "CUID#%d - Restarting the download. URI=%s"
  2198. #~ msgstr "CUID#%d - เริ่มต้นการดาวน์โหลดใหม่ URI=%s"
  2199. #~ msgid "CUID#%d - Download aborted."
  2200. #~ msgstr "CUID#%d - การดาวน์โหลดถูกยกเลิก"
  2201. #~ msgid "CUID#%d - %d times attempted, but no success. Download aborted."
  2202. #~ msgstr "CUID#%d - ได้พยายามแล้ว %d ครั้งแต่ไม่ประสบความสำเร็จ การดาวน์โหลดถูกยกเลิก"
  2203. #~ msgid "CUID#%d - we got new piece. index=%d"
  2204. #~ msgstr "CUID#%d - เราได้รับชิ้นข้อมูลใหม่ ดัชนี=%d"
  2205. #~ msgid "CUID#%d - we got wrong piece. index=%d"
  2206. #~ msgstr "CUID#%d - เราได้รับชิ้นข้อมูลที่ไม่ถูกต้อง ดัชนี=%d"
  2207. #, fuzzy
  2208. #~ msgid "CUID#%d - Good checksum: %s"
  2209. #~ msgstr "CUID#%d - เช็คซัมถูกต้อง: %s"
  2210. #, fuzzy
  2211. #~ msgid "CUID#%d - Bad checksum: %s"
  2212. #~ msgstr "CUID#%d - เช็คซัมไม่ถูกต้อง: %s"
  2213. #~ msgid "CUID#%d - Resolving hostname %s"
  2214. #~ msgstr "CUID#%d - กำลังค้นหาชื่อเครื่อง %s"
  2215. #~ msgid "CUID#%d - Name resolution complete: %s -> %s"
  2216. #~ msgstr "CUID#%d - การค้นหาชื่อสมบูรณ์: %s -> %s"
  2217. #~ msgid "CUID#%d - Name resolution for %s failed:%s"
  2218. #~ msgstr "CUID#%d - การค้นหาชื่อสำหรับ %s ล้มเหลว: %s"
  2219. #~ msgid "CUID#%d - DNS cache hit: %s -> %s"
  2220. #~ msgstr "CUID#%d - ค้นหาเจอใน DNS แคช: %s -> %s"
  2221. #~ msgid "CUID#%d - Abort requested."
  2222. #~ msgstr "CUID#%d - ยกเลิกการร้องขอ"
  2223. #~ msgid "CUID#%d - Connecting to the peer %s"
  2224. #~ msgstr "CUID#%d - เชื่อมต่อไปยังเพียร์ %s"
  2225. #~ msgid ""
  2226. #~ "CUID#%d - Piece received. index=%d, begin=%d, length=%d, offset=%llu, "
  2227. #~ "blockIndex=%d"
  2228. #~ msgstr ""
  2229. #~ "CUID#%d - ได้รับชิ้นข้อมูล ดัชนี=%d เริ่มต้น=%d ความยาว=%d ออฟเซ็ต=%llu ดัชนีบล๊อค=%d"
  2230. #~ msgid "CUID#%d - Piece bitfield %s"
  2231. #~ msgstr "CUID#%d - บิทฟิล์ดของช้ินข้อมูล %s"
  2232. #~ msgid ""
  2233. #~ "CUID#%d - Reject piece message in queue because the peer has been choked. "
  2234. #~ "index=%d, begin=%d, length=%d"
  2235. #~ msgstr ""
  2236. #~ "CUID#%d - ปฏิเสธชิ้นข้อมูลในคิวเพราะว่าเพียร์ไม่สามารถส่งข้อมูลมาได้ ดัชนี=%d เริ่มต้น=%d "
  2237. #~ "ความยาว=%d"
  2238. #~ msgid ""
  2239. #~ "CUID#%d - Reject piece message in queue because cancel message received. "
  2240. #~ "index=%d, begin=%d, length=%d"
  2241. #~ msgstr ""
  2242. #~ "CUID#%d - ปฏิเสธชิ้นข้อมูลในคิวเพราะว่าได้รับคำขอยกเลิก ดัชนี=%d เริ่มต้น=%d ความยาว=%d"
  2243. #~ msgid "CUID#%d - Exception caught while validating file integrity."
  2244. #~ msgstr "CUID#%d - เกิดข้อผิดพลาดระหว่างการตรวจสอบความถูกต้องของไฟล์"
  2245. #~ msgid "CUID#%d - Interested in the peer"
  2246. #~ msgstr "CUID#%d - แสดงความสนใจในเพียร์"
  2247. #~ msgid "CUID#%d - Not interested in the peer"
  2248. #~ msgstr "CUID#%d - ไม่สนใจในเพียร์"
  2249. #~ msgid "CUID#%d - Deleting request slot index=%d, blockIndex=%d"
  2250. #~ msgstr "CUID#%d - ทำการลบสล๊อตการร้องขอ ดัชนี=%d ดัชนีบล๊อค=%d"
  2251. #~ msgid ""
  2252. #~ "CUID#%d - Deleting request slot index=%d, blockIndex=%d because localhost "
  2253. #~ "got choked."
  2254. #~ msgstr ""
  2255. #~ "CUID#%d - ทำการลบสล๊อตการร้องขอ ดัชนี=%d ดัชนีบล๊อค=%d "
  2256. #~ "เพราะว่าโฮสท์ท้องถิ่นไม่สามารถจัดการข้อมูลได้"
  2257. #~ msgid "CUID#%d - Deleting request slot blockIndex=%d because of time out"
  2258. #~ msgstr "CUID#%d - ทำการลบสล๊อตการร้องขอ ดัชนี=%d เพราะว่าหมดเวลา"
  2259. #, fuzzy
  2260. #~ msgid "CUID#%d - Fast extension enabled."
  2261. #~ msgstr "CUID#%d - ส่วนขยายให้ทำงานเร็วขึ้นได้ถูกเรียกใช้"
  2262. #~ msgid "CUID#%d - Exception caught while allocating file space."
  2263. #~ msgstr "CUID#%d - พบความผิดพลาดระหว่างการจัดสรรพื้นที่เก็บไฟล์"
  2264. #~ msgid "CUID#%d - Content-Disposition detected. Use %s as filename"
  2265. #~ msgstr "CUID#%d - ตรวจพบ Content-Disposition ใช้ %s สำหรับชื่อไฟล์"
  2266. #~ msgid "CUID#%d - Peer %s:%d banned."
  2267. #~ msgstr "CUID#%d - เพียร์ %s:%d ถูกแบน"
  2268. #~ msgid "CUID#%d - Using port %d for accepting new connections"
  2269. #~ msgstr "CUID#%d - ใช้พอร์ต %d สำหรับรับการเชื่อมต่อใหม่"
  2270. #~ msgid "CUID#%d - An error occurred while binding port=%d"
  2271. #~ msgstr "CUID#%d - เกิดความผิดพลาดระหว่างการจองพอร์ต=%d"
  2272. #, fuzzy
  2273. #~ msgid "CUID#%d - Incoming connection, adding new command CUID#%d"
  2274. #~ msgstr "CUID#%d - มีการเชื่อมต่อเข้ามา เพิ่มคำสั่งใหม่ CUID#%d"
  2275. #~ msgid "CUID#%d - Error in accepting connection"
  2276. #~ msgstr "CUID#%d - เกิดความผิดพลาดในการรับการเชื่อมต่อ"
  2277. #~ msgid "CUID#%d - Error occurred while processing tracker response."
  2278. #~ msgstr "CUID#%d - เกิดความผิดพลาดระหว่างการประมวลผลการตอบรับจากแทรกเกอร์"
  2279. #~ msgid "CUID#%d - Cannot create tracker request."
  2280. #~ msgstr "CUID#%d - ไม่สามารถสร้างคำร้องขอแทรกเกอร์"
  2281. #, fuzzy
  2282. #~ msgid "CUID#%d - Creating new tracker request command #%d"
  2283. #~ msgstr "CUID#%d - สร้างคำสั่งร้องขอแทรกเกอร์ %d"
  2284. #~ msgid "CUID#%d - Unregistering cuid from segmentManager."
  2285. #~ msgstr "CUID#%d - cuid ที่ไม่ได้ถูกจดทะเบียนจาก segmentManager"