th.po 87 KB

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