th.po 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907
  1. # Thai translation of apt.
  2. # Copyright (C) 2007 Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the apt package.
  4. # Theppiak Karoonboonyanan <thep@linux.thai.net>, 2007.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2007-06-07 00:57+0200\n"
  11. "PO-Revision-Date: 2007-09-17 16:07+0700\n"
  12. "Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
  13. "Language-Team: Thai <thai-l10n@googlegroups.com>\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #: cmdline/apt-cache.cc:143
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n"
  21. #: cmdline/apt-cache.cc:183 cmdline/apt-cache.cc:552 cmdline/apt-cache.cc:640
  22. #: cmdline/apt-cache.cc:796 cmdline/apt-cache.cc:1018
  23. #: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1570
  24. #, c-format
  25. msgid "Unable to locate package %s"
  26. msgstr "ไม่พบแพกเกจ %s"
  27. #: cmdline/apt-cache.cc:247
  28. msgid "Total package names : "
  29. msgstr "จำนวนชื่อแพกเกจทั้งหมด : "
  30. #: cmdline/apt-cache.cc:287
  31. msgid " Normal packages: "
  32. msgstr " แพกเกจปกติ: "
  33. #: cmdline/apt-cache.cc:288
  34. msgid " Pure virtual packages: "
  35. msgstr " แพกเกจเสมือนแท้ๆ: "
  36. #: cmdline/apt-cache.cc:289
  37. msgid " Single virtual packages: "
  38. msgstr " แพกเกจเสมือนที่มีแพกเกจจริงเดียว: "
  39. #: cmdline/apt-cache.cc:290
  40. msgid " Mixed virtual packages: "
  41. msgstr " แพกเกจเสมือนผสม: "
  42. #: cmdline/apt-cache.cc:291
  43. msgid " Missing: "
  44. msgstr " แพกเกจที่ขาดหาย: "
  45. #: cmdline/apt-cache.cc:293
  46. msgid "Total distinct versions: "
  47. msgstr "จำนวนรุ่นที่แตกต่างกันทั้งหมด: "
  48. #: cmdline/apt-cache.cc:295
  49. msgid "Total Distinct Descriptions: "
  50. msgstr "จำนวนคำบรรยายแพกเกจที่แตกต่างกันทั้งหมด: "
  51. #: cmdline/apt-cache.cc:297
  52. msgid "Total dependencies: "
  53. msgstr "จำนวนการเชื่อมโยงระหว่างแพกเกจทั้งหมด: "
  54. #: cmdline/apt-cache.cc:300
  55. msgid "Total ver/file relations: "
  56. msgstr "จำนวนความสัมพันธ์ รุ่น/แฟ้ม ทั้งหมด: "
  57. #: cmdline/apt-cache.cc:302
  58. msgid "Total Desc/File relations: "
  59. msgstr "จำนวนความสัมพันธ์ คำบรรยาย/แฟ้ม ทั้งหมด: "
  60. #: cmdline/apt-cache.cc:304
  61. msgid "Total Provides mappings: "
  62. msgstr "จำนวนผังการตระเตรียมทั้งหมด: "
  63. #: cmdline/apt-cache.cc:316
  64. msgid "Total globbed strings: "
  65. msgstr "จำนวนสตริงทั้งหมด: "
  66. #: cmdline/apt-cache.cc:330
  67. msgid "Total dependency version space: "
  68. msgstr "ขนาดของพื้นที่ความเชื่อมโยงระหว่างแพกเกจทั้งหมด: "
  69. #: cmdline/apt-cache.cc:335
  70. msgid "Total slack space: "
  71. msgstr "พื้นที่สำรองทั้งหมด: "
  72. #: cmdline/apt-cache.cc:343
  73. msgid "Total space accounted for: "
  74. msgstr "พื้นที่ที่นับรวมทั้งหมด: "
  75. #: cmdline/apt-cache.cc:471 cmdline/apt-cache.cc:1218
  76. #, c-format
  77. msgid "Package file %s is out of sync."
  78. msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง"
  79. #: cmdline/apt-cache.cc:1293
  80. msgid "You must give exactly one pattern"
  81. msgstr "คุณต้องระบุแพตเทิร์นด้วย"
  82. #: cmdline/apt-cache.cc:1447
  83. msgid "No packages found"
  84. msgstr "ไม่พบแพกเกจ"
  85. #: cmdline/apt-cache.cc:1524
  86. msgid "Package files:"
  87. msgstr "แฟ้มแพกเกจ:"
  88. #: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1617
  89. msgid "Cache is out of sync, can't x-ref a package file"
  90. msgstr "ข้อมูลแคชไม่ตรงกับความเป็นจริงแล้ว ไม่สามารถอ้างอิงไขว้ระหว่างแฟ้มแพกเกจ"
  91. #: cmdline/apt-cache.cc:1532
  92. #, c-format
  93. msgid "%4i %s\n"
  94. msgstr "%4i %s\n"
  95. #. Show any packages have explicit pins
  96. #: cmdline/apt-cache.cc:1544
  97. msgid "Pinned packages:"
  98. msgstr "แพกเกจที่ถูกตรึง:"
  99. #: cmdline/apt-cache.cc:1556 cmdline/apt-cache.cc:1597
  100. msgid "(not found)"
  101. msgstr "(ไม่พบ)"
  102. #. Installed version
  103. #: cmdline/apt-cache.cc:1577
  104. msgid " Installed: "
  105. msgstr " ที่ติดตั้งอยู่: "
  106. #: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1587
  107. msgid "(none)"
  108. msgstr "(ไม่มี)"
  109. #. Candidate Version
  110. #: cmdline/apt-cache.cc:1584
  111. msgid " Candidate: "
  112. msgstr " รุ่นที่ติดตั้งได้: "
  113. #: cmdline/apt-cache.cc:1594
  114. msgid " Package pin: "
  115. msgstr " การตรึงแพกเกจ: "
  116. #. Show the priority tables
  117. #: cmdline/apt-cache.cc:1603
  118. msgid " Version table:"
  119. msgstr " ตารางรุ่น:"
  120. #: cmdline/apt-cache.cc:1618
  121. #, c-format
  122. msgid " %4i %s\n"
  123. msgstr " %4i %s\n"
  124. #: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70
  125. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:550
  126. #: cmdline/apt-get.cc:2564 cmdline/apt-sortpkgs.cc:144
  127. #, fuzzy, c-format
  128. msgid "%s %s for %s %s compiled on %s %s\n"
  129. msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n"
  130. #: cmdline/apt-cache.cc:1721
  131. msgid ""
  132. "Usage: apt-cache [options] command\n"
  133. " apt-cache [options] add file1 [file2 ...]\n"
  134. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  135. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  136. "\n"
  137. "apt-cache is a low-level tool used to manipulate APT's binary\n"
  138. "cache files, and query information from them\n"
  139. "\n"
  140. "Commands:\n"
  141. " add - Add a package file to the source cache\n"
  142. " gencaches - Build both the package and source cache\n"
  143. " showpkg - Show some general information for a single package\n"
  144. " showsrc - Show source records\n"
  145. " stats - Show some basic statistics\n"
  146. " dump - Show the entire file in a terse form\n"
  147. " dumpavail - Print an available file to stdout\n"
  148. " unmet - Show unmet dependencies\n"
  149. " search - Search the package list for a regex pattern\n"
  150. " show - Show a readable record for the package\n"
  151. " depends - Show raw dependency information for a package\n"
  152. " rdepends - Show reverse dependency information for a package\n"
  153. " pkgnames - List the names of all packages\n"
  154. " dotty - Generate package graphs for GraphVis\n"
  155. " xvcg - Generate package graphs for xvcg\n"
  156. " policy - Show policy settings\n"
  157. "\n"
  158. "Options:\n"
  159. " -h This help text.\n"
  160. " -p=? The package cache.\n"
  161. " -s=? The source cache.\n"
  162. " -q Disable progress indicator.\n"
  163. " -i Show only important deps for the unmet command.\n"
  164. " -c=? Read this configuration file\n"
  165. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  166. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  167. msgstr ""
  168. "วิธีใช้: apt-cache [ตัวเลือก] คำสั่ง\n"
  169. " apt-cache [ตัวเลือก] add file1 [file2 ...]\n"
  170. " apt-cache [ตัวเลือก] showpkg pkg1 [pkg2 ...]\n"
  171. " apt-cache [ตัวเลือก] showsrc pkg1 [pkg2 ...]\n"
  172. "\n"
  173. "apt-cache เป็นเครื่องมือระดับล่างสำหรับจัดการแฟ้มแคชไบนารีของ APT\n"
  174. "และใช้สืบค้นข้อมูลจากแคช\n"
  175. "\n"
  176. "คำสั่ง:\n"
  177. " add - เพิ่มแฟ้มแพกเกจเข้าในแคชของซอร์ส\n"
  178. " gencaches - สร้างทั้งแคชของแพกเกจและแคชของซอร์ส\n"
  179. " showpkg - แสดงข้อมูลทั่วไปของแพกเกจที่กำหนด\n"
  180. " showsrc - แสดงระเบียนข้อมูลซอร์ส\n"
  181. " stats - แสดงสถิติทั่วไป\n"
  182. " dump - แสดงเนื้อหาแคชทั้งหมดในรูปแบบดิบ\n"
  183. " dumpavail - แสดงข้อมูลแพกเกจที่มีทั้งหมดออกทาง stdout\n"
  184. " unmet - แสดงความเชื่อมโยงที่ยังขาดหาย\n"
  185. " search - ค้นรายชื่อแพกเกจด้วยนิพจน์เรกิวลาร์\n"
  186. " show - แสดงข้อมูลของแพกเกจ\n"
  187. " depends - แสดงข้อมูลแพกเกจที่ต้องใช้สำหรับแพกเกจที่กำหนด\n"
  188. " rdepends - แสดงข้อมูลแพกเกจอื่นที่ต้องใช้แพกเกจที่กำหนด\n"
  189. " pkgnames - แสดงรายชื่อแพกเกจทั้งหมด\n"
  190. " dotty - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป GraphVis\n"
  191. " xvcg - สร้างกราฟความเชื่อมโยงของแพกเกจในรูป xvcg\n"
  192. " policy - แสดงค่าตั้งนโยบาย\n"
  193. "\n"
  194. "ตัวเลือก:\n"
  195. " -h แสดงข้อความช่วยเหลือนี้\n"
  196. " -p=? แฟ้มเก็บแคชของแพกเกจ\n"
  197. " -s=? แฟ้มเก็บแคชของซอร์ส\n"
  198. " -q ปิดแถบแสดงความคืบหน้า\n"
  199. " -i แสดงเฉพาะข้อมูลความเชื่อมโยงที่สำคัญสำหรับคำสั่ง unmet\n"
  200. " -c=? อ่านแฟ้มค่าตั้งนี้\n"
  201. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
  202. "กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n"
  203. #: cmdline/apt-cdrom.cc:78
  204. msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'"
  205. msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 4.0r1 Disk 1'"
  206. #: cmdline/apt-cdrom.cc:93
  207. msgid "Please insert a Disc in the drive and press enter"
  208. msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter"
  209. #: cmdline/apt-cdrom.cc:117
  210. msgid "Repeat this process for the rest of the CDs in your set."
  211. msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด"
  212. #: cmdline/apt-config.cc:41
  213. msgid "Arguments not in pairs"
  214. msgstr "อาร์กิวเมนต์ไม่ได้ระบุเป็นคู่ๆ"
  215. #: cmdline/apt-config.cc:76
  216. msgid ""
  217. "Usage: apt-config [options] command\n"
  218. "\n"
  219. "apt-config is a simple tool to read the APT config file\n"
  220. "\n"
  221. "Commands:\n"
  222. " shell - Shell mode\n"
  223. " dump - Show the configuration\n"
  224. "\n"
  225. "Options:\n"
  226. " -h This help text.\n"
  227. " -c=? Read this configuration file\n"
  228. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  229. msgstr ""
  230. "วิธีใช้: apt-config [ตัวเลือก] คำสั่ง\n"
  231. "\n"
  232. "apt-config เป็นเครื่องมือง่ายๆ ที่ใช้อ่านแฟ้มค่าตั้ง APT\n"
  233. "\n"
  234. "คำสั่ง:\n"
  235. " shell - โหมดเชลล์\n"
  236. " dump - แสดงค่าตั้ง\n"
  237. "\n"
  238. "ตัวเลือก:\n"
  239. " -h ข้อความช่วยเหลือนี้ -c=? อ่านแฟ้มค่าตั้งนี้\n"
  240. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
  241. #: cmdline/apt-extracttemplates.cc:98
  242. #, c-format
  243. msgid "%s not a valid DEB package."
  244. msgstr "%s ไม่ใช่แพกเกจ DEB ที่ใช้การได้"
  245. #: cmdline/apt-extracttemplates.cc:232
  246. msgid ""
  247. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  248. "\n"
  249. "apt-extracttemplates is a tool to extract config and template info\n"
  250. "from debian packages\n"
  251. "\n"
  252. "Options:\n"
  253. " -h This help text\n"
  254. " -t Set the temp dir\n"
  255. " -c=? Read this configuration file\n"
  256. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  257. msgstr ""
  258. "วิธีใช้: apt-extracttemplates file1 [file2 ...]\n"
  259. "\n"
  260. "apt-extracttemplates เป็นเครื่องมือสำหรับแยกเอาข้อมูลการตั้งค่าและเทมเพลต\n"
  261. "ออกมาจากแพกเกจเดเบียน\n"
  262. "\n"
  263. "ตัวเลือก:\n"
  264. " -h แสดงข้อความช่วยเหลือนี้\n"
  265. " -t กำหนดไดเรกทอรีทำงานชั่วคราว\n"
  266. " -c=? อ่านแฟ้มค่าตั้งนี้\n"
  267. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
  268. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:819
  269. #: apt-pkg/pkgcachegen.cc:815
  270. #, c-format
  271. msgid "Unable to write to %s"
  272. msgstr "ไม่สามารถเขียนลงแฟ้ม %s"
  273. #: cmdline/apt-extracttemplates.cc:310
  274. msgid "Cannot get debconf version. Is debconf installed?"
  275. msgstr "ไม่สามารถอ่านรุ่นของ debconf ได้ ได้ติดตั้ง debconf ไว้หรือไม่?"
  276. #: ftparchive/apt-ftparchive.cc:167 ftparchive/apt-ftparchive.cc:341
  277. msgid "Package extension list is too long"
  278. msgstr "รายชื่อนามสกุลแพกเกจยาวเกินไป"
  279. #: ftparchive/apt-ftparchive.cc:169 ftparchive/apt-ftparchive.cc:183
  280. #: ftparchive/apt-ftparchive.cc:206 ftparchive/apt-ftparchive.cc:256
  281. #: ftparchive/apt-ftparchive.cc:270 ftparchive/apt-ftparchive.cc:292
  282. #, c-format
  283. msgid "Error processing directory %s"
  284. msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s"
  285. #: ftparchive/apt-ftparchive.cc:254
  286. msgid "Source extension list is too long"
  287. msgstr "รายชื่อนามสกุลซอร์สยาวเกินไป"
  288. #: ftparchive/apt-ftparchive.cc:371
  289. msgid "Error writing header to contents file"
  290. msgstr "เกิดข้อผิดพลาดขณะเขียนข้อมูลส่วนหัวลงในแฟ้มสารบัญ"
  291. #: ftparchive/apt-ftparchive.cc:401
  292. #, c-format
  293. msgid "Error processing contents %s"
  294. msgstr "เกิดข้อผิดพลาดขณะประมวลผลสารบัญ %s"
  295. #: ftparchive/apt-ftparchive.cc:556
  296. msgid ""
  297. "Usage: apt-ftparchive [options] command\n"
  298. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  299. " sources srcpath [overridefile [pathprefix]]\n"
  300. " contents path\n"
  301. " release path\n"
  302. " generate config [groups]\n"
  303. " clean config\n"
  304. "\n"
  305. "apt-ftparchive generates index files for Debian archives. It supports\n"
  306. "many styles of generation from fully automated to functional replacements\n"
  307. "for dpkg-scanpackages and dpkg-scansources\n"
  308. "\n"
  309. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  310. "Package file contains the contents of all the control fields from\n"
  311. "each package as well as the MD5 hash and filesize. An override file\n"
  312. "is supported to force the value of Priority and Section.\n"
  313. "\n"
  314. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  315. "The --source-override option can be used to specify a src override file\n"
  316. "\n"
  317. "The 'packages' and 'sources' command should be run in the root of the\n"
  318. "tree. BinaryPath should point to the base of the recursive search and \n"
  319. "override file should contain the override flags. Pathprefix is\n"
  320. "appended to the filename fields if present. Example usage from the \n"
  321. "Debian archive:\n"
  322. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  323. " dists/potato/main/binary-i386/Packages\n"
  324. "\n"
  325. "Options:\n"
  326. " -h This help text\n"
  327. " --md5 Control MD5 generation\n"
  328. " -s=? Source override file\n"
  329. " -q Quiet\n"
  330. " -d=? Select the optional caching database\n"
  331. " --no-delink Enable delinking debug mode\n"
  332. " --contents Control contents file generation\n"
  333. " -c=? Read this configuration file\n"
  334. " -o=? Set an arbitrary configuration option"
  335. msgstr ""
  336. "วิธีใช้: apt-ftparchive [ตัวเลือก] คำสั่ง\n"
  337. "คำสั่ง: packages binarypath [overridefile [pathprefix]]\n"
  338. " sources srcpath [overridefile [pathprefix]]\n"
  339. " contents path\n"
  340. " release path\n"
  341. " generate config [groups]\n"
  342. " clean config\n"
  343. "\n"
  344. "apt-ftparchive ใช้สร้างแฟ้มดัชนีสำหรับแหล่งแพกเกจเดเบียน รองรับวิธีสร้างหลายแบบ\n"
  345. "ตั้งแต่แบบอัตโนมัติทั้งหมด ไปจนถึงการใช้แทน dpkg-scanpackages และ dpkg-scansources\n"
  346. "\n"
  347. "apt-ftparchive สร้างแฟ้ม Package จากต้นไม้ไดเรกทอรีที่เก็บ .deb แฟ้ม Package\n"
  348. "จะรวมเนื้อหาข้อมูลควบคุมทุกรายการของแต่ละแพกเกจ รวมถึง MD5 hash และขนาดแฟ้ม\n"
  349. "และรองรับการสร้างแฟ้ม override เพื่อบังคับค่าลำดับความสำคัญและหมวดแพกเกจด้วย\n"
  350. "\n"
  351. "ในทำนองเดียวกัน apt-ftparchive จะสร้างแฟ้ม Sources จากต้นไม้ไดเรกทอรีที่เก็บ .dsc\n"
  352. "คุณสามารถใช้ตัวเลือก --source-override เพื่อระบุแฟ้ม override สำหรับซอร์สได้\n"
  353. "\n"
  354. "คำสั่ง 'packages' และ 'sources' ควรเรียกที่ตำแหน่งรากของต้นไม้ไดเรกทอรี\n"
  355. "ค่า binarypath ควรชี้ไปที่ตำแหน่งฐานที่จะค้นหาแบบทั่วถึง และแฟ้ม override ก็ควรมีแฟล็ก\n"
  356. "override ต่างๆ สำหรับแพกเกจ ค่า pathprefix จะถูกเพิ่มเข้าที่หน้าข้อมูล filename ถ้ามี\n"
  357. "ตัวอย่างการใช้งานจากแหล่งแพกเกจเดเบียน:\n"
  358. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  359. " dists/potato/main/binary-i386/Packages\n"
  360. "\n"
  361. "ตัวเลือก:\n"
  362. " -h แสดงข้อความช่วยเหลือนี้\n"
  363. " --md5 ควบคุมการสร้าง MD5\n"
  364. " -s=? แฟ้ม override สำหรับซอร์ส\n"
  365. " -q ทำงานแบบเงียบ\n"
  366. " -d=? เลือกฐานข้อมูลแคชอื่น\n"
  367. " --no-delink เปิดโหมดดีบั๊กสำหรับการตัดลิงก์\n"
  368. " --contents ควบคุมการสร้างแฟ้มสารบัญ\n"
  369. " -c=? อ่านแฟ้มค่าตั้งนี้\n"
  370. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว"
  371. #: ftparchive/apt-ftparchive.cc:762
  372. msgid "No selections matched"
  373. msgstr "ไม่มีรายการเลือกที่ตรง"
  374. #: ftparchive/apt-ftparchive.cc:835
  375. #, c-format
  376. msgid "Some files are missing in the package file group `%s'"
  377. msgstr "บางแฟ้มขาดหายไปในกลุ่มแฟ้มแพกเกจ `%s'"
  378. #: ftparchive/cachedb.cc:47
  379. #, c-format
  380. msgid "DB was corrupted, file renamed to %s.old"
  381. msgstr "DB เสีย จะเปลี่ยนชื่อแฟ้มเป็น %s.old"
  382. #: ftparchive/cachedb.cc:65
  383. #, c-format
  384. msgid "DB is old, attempting to upgrade %s"
  385. msgstr "DB เป็นรุ่นเก่า จะพยายามปรับรุ่น %s ขึ้น"
  386. #: ftparchive/cachedb.cc:76
  387. msgid ""
  388. "DB format is invalid. If you upgraded from a older version of apt, please "
  389. "remove and re-create the database."
  390. msgstr "ฟอร์แมตของ DB ผิด ถ้าคุณเพิ่งปรับรุ่นมาจาก apt รุ่นเก่า กรุณาลบฐานข้อมูลแล้วสร้างใหม่"
  391. #: ftparchive/cachedb.cc:81
  392. #, c-format
  393. msgid "Unable to open DB file %s: %s"
  394. msgstr "ไม่สามารถเปิดแฟ้ม DB %s: %s"
  395. #: ftparchive/cachedb.cc:127 apt-inst/extract.cc:181 apt-inst/extract.cc:193
  396. #: apt-inst/extract.cc:210 apt-inst/deb/dpkgdb.cc:121 methods/gpgv.cc:272
  397. #, c-format
  398. msgid "Failed to stat %s"
  399. msgstr "stat %s ไม่สำเร็จ"
  400. #: ftparchive/cachedb.cc:242
  401. msgid "Archive has no control record"
  402. msgstr "แพกเกจไม่มีระเบียนควบคุม"
  403. #: ftparchive/cachedb.cc:448
  404. msgid "Unable to get a cursor"
  405. msgstr "ไม่สามารถนำตัวชี้ตำแหน่งมาใช้ได้"
  406. #: ftparchive/writer.cc:79
  407. #, c-format
  408. msgid "W: Unable to read directory %s\n"
  409. msgstr "W: อ่านไดเรกทอรี %s ไม่สำเร็จ\n"
  410. #: ftparchive/writer.cc:84
  411. #, c-format
  412. msgid "W: Unable to stat %s\n"
  413. msgstr "W: stat %s ไม่สำเร็จ\n"
  414. #: ftparchive/writer.cc:135
  415. msgid "E: "
  416. msgstr "E: "
  417. #: ftparchive/writer.cc:137
  418. msgid "W: "
  419. msgstr "W: "
  420. #: ftparchive/writer.cc:144
  421. msgid "E: Errors apply to file "
  422. msgstr "E: ข้อผิดพลาดเกิดกับแฟ้ม "
  423. #: ftparchive/writer.cc:161 ftparchive/writer.cc:191
  424. #, c-format
  425. msgid "Failed to resolve %s"
  426. msgstr "หาพาธเต็มของ %s ไม่สำเร็จ"
  427. #: ftparchive/writer.cc:173
  428. msgid "Tree walking failed"
  429. msgstr "เดินท่องต้นไม้ไม่สำเร็จ"
  430. #: ftparchive/writer.cc:198
  431. #, c-format
  432. msgid "Failed to open %s"
  433. msgstr "เปิด %s ไม่สำเร็จ"
  434. #: ftparchive/writer.cc:257
  435. #, c-format
  436. msgid " DeLink %s [%s]\n"
  437. msgstr " DeLink %s [%s]\n"
  438. #: ftparchive/writer.cc:265
  439. #, c-format
  440. msgid "Failed to readlink %s"
  441. msgstr "readlink %s ไม่สำเร็จ"
  442. #: ftparchive/writer.cc:269
  443. #, c-format
  444. msgid "Failed to unlink %s"
  445. msgstr "unlink %s ไม่สำเร็จ"
  446. #: ftparchive/writer.cc:276
  447. #, c-format
  448. msgid "*** Failed to link %s to %s"
  449. msgstr "*** ลิงก์ %s ไปยัง %s ไม่สำเร็จ"
  450. #: ftparchive/writer.cc:286
  451. #, c-format
  452. msgid " DeLink limit of %sB hit.\n"
  453. msgstr " มาถึงขีดจำกัดการ DeLink ที่ %sB แล้ว\n"
  454. #: ftparchive/writer.cc:390
  455. msgid "Archive had no package field"
  456. msgstr "แพกเกจไม่มีช่องข้อมูล 'Package'"
  457. #: ftparchive/writer.cc:398 ftparchive/writer.cc:613
  458. #, c-format
  459. msgid " %s has no override entry\n"
  460. msgstr " %s ไม่มีข้อมูล override\n"
  461. #: ftparchive/writer.cc:443 ftparchive/writer.cc:701
  462. #, c-format
  463. msgid " %s maintainer is %s not %s\n"
  464. msgstr " ผู้ดูแล %s คือ %s ไม่ใช่ %s\n"
  465. #: ftparchive/writer.cc:623
  466. #, c-format
  467. msgid " %s has no source override entry\n"
  468. msgstr " %s ไม่มีข้อมูล override สำหรับซอร์ส\n"
  469. #: ftparchive/writer.cc:627
  470. #, c-format
  471. msgid " %s has no binary override entry either\n"
  472. msgstr " %s ไม่มีข้อมูล override สำหรับไบนารีเช่นกัน\n"
  473. #: ftparchive/contents.cc:317
  474. #, c-format
  475. msgid "Internal error, could not locate member %s"
  476. msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก %s"
  477. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  478. msgid "realloc - Failed to allocate memory"
  479. msgstr "realloc - จองหน่วยความจำไม่สำเร็จ"
  480. #: ftparchive/override.cc:38 ftparchive/override.cc:146
  481. #, c-format
  482. msgid "Unable to open %s"
  483. msgstr "ไม่สามารถเปิด %s"
  484. #: ftparchive/override.cc:64 ftparchive/override.cc:170
  485. #, c-format
  486. msgid "Malformed override %s line %lu #1"
  487. msgstr "แฟ้ม override %s ผิดรูปแบบที่บรรทัด %lu #1"
  488. #: ftparchive/override.cc:78 ftparchive/override.cc:182
  489. #, c-format
  490. msgid "Malformed override %s line %lu #2"
  491. msgstr "แฟ้ม override %s ผิดรูปแบบที่บรรทัด %lu #2"
  492. #: ftparchive/override.cc:92 ftparchive/override.cc:195
  493. #, c-format
  494. msgid "Malformed override %s line %lu #3"
  495. msgstr "แฟ้ม override %s ผิดรูปแบบที่บรรทัด %lu #3"
  496. #: ftparchive/override.cc:131 ftparchive/override.cc:205
  497. #, c-format
  498. msgid "Failed to read the override file %s"
  499. msgstr "ไม่สามารถอ่านแฟ้ม override %s"
  500. #: ftparchive/multicompress.cc:75
  501. #, c-format
  502. msgid "Unknown compression algorithm '%s'"
  503. msgstr "ไม่รู้จักอัลกอริทึมบีบอัด '%s'"
  504. #: ftparchive/multicompress.cc:105
  505. #, c-format
  506. msgid "Compressed output %s needs a compression set"
  507. msgstr "ผลลัพธ์ของการบีบอัด %s ต้องมีชุดของการบีบอัดด้วย"
  508. #: ftparchive/multicompress.cc:172 methods/rsh.cc:91
  509. msgid "Failed to create IPC pipe to subprocess"
  510. msgstr "ไม่สามารถสร้างไปป์ IPC ไปยังโพรเซสย่อย"
  511. #: ftparchive/multicompress.cc:198
  512. msgid "Failed to create FILE*"
  513. msgstr "สร้าง FILE* ไม่สำเร็จ"
  514. #: ftparchive/multicompress.cc:201
  515. msgid "Failed to fork"
  516. msgstr "fork ไม่สำเร็จ"
  517. #: ftparchive/multicompress.cc:215
  518. msgid "Compress child"
  519. msgstr "โพรเซสลูกสำหรับบีบอัด"
  520. #: ftparchive/multicompress.cc:238
  521. #, c-format
  522. msgid "Internal error, failed to create %s"
  523. msgstr "ข้อผิดพลาดภายใน: ไม่สามารถสร้าง %s"
  524. #: ftparchive/multicompress.cc:289
  525. msgid "Failed to create subprocess IPC"
  526. msgstr "สร้าง IPC ของโพรเซสย่อยไม่สำเร็จ"
  527. #: ftparchive/multicompress.cc:324
  528. msgid "Failed to exec compressor "
  529. msgstr "เรียกทำงานตัวบีบอัดไม่สำเร็จ"
  530. #: ftparchive/multicompress.cc:363
  531. msgid "decompressor"
  532. msgstr "ตัวคลายบีบอัด"
  533. #: ftparchive/multicompress.cc:406
  534. msgid "IO to subprocess/file failed"
  535. msgstr "IO ไปยังโพรเซสย่อยหรือแฟ้มล้มเหลว"
  536. #: ftparchive/multicompress.cc:458
  537. msgid "Failed to read while computing MD5"
  538. msgstr "อ่านแฟ้มไม่สำเร็จขณะคำนวณ MD5"
  539. #: ftparchive/multicompress.cc:475
  540. #, c-format
  541. msgid "Problem unlinking %s"
  542. msgstr "มีปัญหาขณะลบแฟ้ม %s"
  543. #: ftparchive/multicompress.cc:490 apt-inst/extract.cc:188
  544. #, c-format
  545. msgid "Failed to rename %s to %s"
  546. msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไปเป็น %s"
  547. #: cmdline/apt-get.cc:121
  548. msgid "Y"
  549. msgstr "Y"
  550. #: cmdline/apt-get.cc:143 cmdline/apt-get.cc:1655
  551. #, c-format
  552. msgid "Regex compilation error - %s"
  553. msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s"
  554. #: cmdline/apt-get.cc:238
  555. msgid "The following packages have unmet dependencies:"
  556. msgstr "แพกเกจต่อไปนี้ขาดแพกเกจที่ต้องใช้:"
  557. #: cmdline/apt-get.cc:328
  558. #, c-format
  559. msgid "but %s is installed"
  560. msgstr "แต่รุ่นที่ติดตั้งไว้คือ %s"
  561. #: cmdline/apt-get.cc:330
  562. #, c-format
  563. msgid "but %s is to be installed"
  564. msgstr "แต่รุ่นที่จะติดตั้งคือ %s"
  565. #: cmdline/apt-get.cc:337
  566. msgid "but it is not installable"
  567. msgstr "แต่ไม่สามารถติดตั้งได้"
  568. #: cmdline/apt-get.cc:339
  569. msgid "but it is a virtual package"
  570. msgstr "แต่แพกเกจนี้เป็นแพกเกจเสมือน"
  571. #: cmdline/apt-get.cc:342
  572. msgid "but it is not installed"
  573. msgstr "แต่ได้ติดตั้งไว้"
  574. #: cmdline/apt-get.cc:342
  575. msgid "but it is not going to be installed"
  576. msgstr "แต่แพกเกจนี้จะไม่ถูกติดตั้ง"
  577. #: cmdline/apt-get.cc:347
  578. msgid " or"
  579. msgstr " หรือ"
  580. #: cmdline/apt-get.cc:376
  581. msgid "The following NEW packages will be installed:"
  582. msgstr "จะติดตั้งแพกเกจ *ใหม่* ต่อไปนี้:"
  583. #: cmdline/apt-get.cc:402
  584. msgid "The following packages will be REMOVED:"
  585. msgstr "จะ *ลบ* แพกเกจต่อไปนี้:"
  586. #: cmdline/apt-get.cc:424
  587. msgid "The following packages have been kept back:"
  588. msgstr "จะคงรุ่นแพกเกจต่อไปนี้:"
  589. #: cmdline/apt-get.cc:445
  590. msgid "The following packages will be upgraded:"
  591. msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ขึ้น:"
  592. #: cmdline/apt-get.cc:466
  593. msgid "The following packages will be DOWNGRADED:"
  594. msgstr "จะปรับรุ่นแพกเกจต่อไปนี้ *ลง*:"
  595. #: cmdline/apt-get.cc:486
  596. msgid "The following held packages will be changed:"
  597. msgstr "จะเปลี่ยนแปลงรายการคงรุ่นแพกเกจต่อไปนี้:"
  598. #: cmdline/apt-get.cc:539
  599. #, c-format
  600. msgid "%s (due to %s) "
  601. msgstr "%s (เนื่องจาก %s) "
  602. #: cmdline/apt-get.cc:547
  603. msgid ""
  604. "WARNING: The following essential packages will be removed.\n"
  605. "This should NOT be done unless you know exactly what you are doing!"
  606. msgstr ""
  607. "*คำเตือน*: แพกเกจที่จำเป็นต่อไปนี้จะถูกถอดถอน\n"
  608. "คุณ *ไม่ควร* ทำเช่นนี้ นอกจากคุณเข้าใจสิ่งที่จะทำ!"
  609. #: cmdline/apt-get.cc:578
  610. #, c-format
  611. msgid "%lu upgraded, %lu newly installed, "
  612. msgstr "ปรับรุ่นขึ้น %lu, ติดตั้งใหม่ %lu, "
  613. #: cmdline/apt-get.cc:582
  614. #, c-format
  615. msgid "%lu reinstalled, "
  616. msgstr "ติดตั้งซ้ำ %lu, "
  617. #: cmdline/apt-get.cc:584
  618. #, c-format
  619. msgid "%lu downgraded, "
  620. msgstr "ปรับรุ่นลง %lu, "
  621. #: cmdline/apt-get.cc:586
  622. #, c-format
  623. msgid "%lu to remove and %lu not upgraded.\n"
  624. msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n"
  625. #: cmdline/apt-get.cc:590
  626. #, c-format
  627. msgid "%lu not fully installed or removed.\n"
  628. msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n"
  629. #: cmdline/apt-get.cc:664
  630. msgid "Correcting dependencies..."
  631. msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..."
  632. #: cmdline/apt-get.cc:667
  633. msgid " failed."
  634. msgstr " ล้มเหลว"
  635. #: cmdline/apt-get.cc:670
  636. msgid "Unable to correct dependencies"
  637. msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้"
  638. #: cmdline/apt-get.cc:673
  639. msgid "Unable to minimize the upgrade set"
  640. msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้"
  641. #: cmdline/apt-get.cc:675
  642. msgid " Done"
  643. msgstr " เสร็จแล้ว"
  644. #: cmdline/apt-get.cc:679
  645. msgid "You might want to run `apt-get -f install' to correct these."
  646. msgstr "คุณอาจต้องเรียก `apt-get -f install' เพื่อแก้ปัญหาเหล่านี้"
  647. #: cmdline/apt-get.cc:682
  648. msgid "Unmet dependencies. Try using -f."
  649. msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f"
  650. #: cmdline/apt-get.cc:704
  651. msgid "WARNING: The following packages cannot be authenticated!"
  652. msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!"
  653. #: cmdline/apt-get.cc:708
  654. msgid "Authentication warning overridden.\n"
  655. msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n"
  656. #: cmdline/apt-get.cc:715
  657. msgid "Install these packages without verification [y/N]? "
  658. msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่ [y/N]? "
  659. #: cmdline/apt-get.cc:717
  660. msgid "Some packages could not be authenticated"
  661. msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้"
  662. #: cmdline/apt-get.cc:726 cmdline/apt-get.cc:873
  663. msgid "There are problems and -y was used without --force-yes"
  664. msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes"
  665. #: cmdline/apt-get.cc:770
  666. msgid "Internal error, InstallPackages was called with broken packages!"
  667. msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!"
  668. #: cmdline/apt-get.cc:779
  669. msgid "Packages need to be removed but remove is disabled."
  670. msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้"
  671. #: cmdline/apt-get.cc:790
  672. msgid "Internal error, Ordering didn't finish"
  673. msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น"
  674. #: cmdline/apt-get.cc:806 cmdline/apt-get.cc:1995 cmdline/apt-get.cc:2028
  675. msgid "Unable to lock the download directory"
  676. msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด"
  677. #: cmdline/apt-get.cc:816 cmdline/apt-get.cc:2076 cmdline/apt-get.cc:2312
  678. #: apt-pkg/cachefile.cc:67 apt-pkg/cachefile.cc:63
  679. msgid "The list of sources could not be read."
  680. msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้"
  681. #: cmdline/apt-get.cc:831
  682. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  683. msgstr "แปลกประหลาด.. ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org"
  684. #: cmdline/apt-get.cc:836
  685. #, c-format
  686. msgid "Need to get %sB/%sB of archives.\n"
  687. msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n"
  688. #: cmdline/apt-get.cc:839
  689. #, c-format
  690. msgid "Need to get %sB of archives.\n"
  691. msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n"
  692. #: cmdline/apt-get.cc:844
  693. #, c-format
  694. msgid "After unpacking %sB of additional disk space will be used.\n"
  695. msgstr "หลังจากแตกแพกเกจแล้ว ต้องใช้เนื้อที่บนดิสก์อีก %s\n"
  696. #: cmdline/apt-get.cc:847
  697. #, c-format
  698. msgid "After unpacking %sB disk space will be freed.\n"
  699. msgstr "หลังจากแตกแพกเกจแล้ว เนื้อที่บนดิสก์จะว่างเพิ่มอีก %s\n"
  700. #: cmdline/apt-get.cc:861 cmdline/apt-get.cc:2166
  701. #, c-format
  702. msgid "Couldn't determine free space in %s"
  703. msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s"
  704. #: cmdline/apt-get.cc:864
  705. #, c-format
  706. msgid "You don't have enough free space in %s."
  707. msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
  708. #: cmdline/apt-get.cc:879 cmdline/apt-get.cc:899
  709. msgid "Trivial Only specified but this is not a trivial operation."
  710. msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย"
  711. #: cmdline/apt-get.cc:881
  712. msgid "Yes, do as I say!"
  713. msgstr "Yes, do as I say!"
  714. #: cmdline/apt-get.cc:883
  715. #, c-format
  716. msgid ""
  717. "You are about to do something potentially harmful.\n"
  718. "To continue type in the phrase '%s'\n"
  719. " ?] "
  720. msgstr ""
  721. "คุณกำลังจะทำสิ่งที่อาจเป็นอันตราย\n"
  722. "หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n"
  723. " ?] "
  724. #: cmdline/apt-get.cc:889 cmdline/apt-get.cc:908
  725. msgid "Abort."
  726. msgstr "เลิกทำ"
  727. #: cmdline/apt-get.cc:904
  728. msgid "Do you want to continue [Y/n]? "
  729. msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?"
  730. #: cmdline/apt-get.cc:976 cmdline/apt-get.cc:1383 cmdline/apt-get.cc:2209
  731. #, c-format
  732. msgid "Failed to fetch %s %s\n"
  733. msgstr "ไม่สามารถดาวน์โหลด %s %s\n"
  734. #: cmdline/apt-get.cc:994
  735. msgid "Some files failed to download"
  736. msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ"
  737. #: cmdline/apt-get.cc:995 cmdline/apt-get.cc:2218
  738. msgid "Download complete and in download only mode"
  739. msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว"
  740. #: cmdline/apt-get.cc:1001
  741. msgid ""
  742. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  743. "missing?"
  744. msgstr ""
  745. "ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-"
  746. "missing อาจช่วยได้"
  747. #: cmdline/apt-get.cc:1005
  748. msgid "--fix-missing and media swapping is not currently supported"
  749. msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น"
  750. #: cmdline/apt-get.cc:1010
  751. msgid "Unable to correct missing packages."
  752. msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้"
  753. #: cmdline/apt-get.cc:1011
  754. msgid "Aborting install."
  755. msgstr "จะล้มเลิกการติดตั้ง"
  756. #: cmdline/apt-get.cc:1045
  757. #, c-format
  758. msgid "Note, selecting %s instead of %s\n"
  759. msgstr "หมายเหตุ: จะเลือก %s แทน %s\n"
  760. #: cmdline/apt-get.cc:1055
  761. #, c-format
  762. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  763. msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n"
  764. #: cmdline/apt-get.cc:1073
  765. #, c-format
  766. msgid "Package %s is not installed, so not removed\n"
  767. msgstr "แพกเกจ %s ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n"
  768. #: cmdline/apt-get.cc:1084
  769. #, c-format
  770. msgid "Package %s is a virtual package provided by:\n"
  771. msgstr "แพกเกจ %s เป็นแพกเกจเสมือนที่ตระเตรียมโดย:\n"
  772. #: cmdline/apt-get.cc:1096
  773. msgid " [Installed]"
  774. msgstr " [ติดตั้งอยู่]"
  775. #: cmdline/apt-get.cc:1101
  776. msgid "You should explicitly select one to install."
  777. msgstr "คุณควรเจาะจงเลือกแพกเกจใดแพกเกจหนึ่งเพื่อติดตั้ง"
  778. #: cmdline/apt-get.cc:1106
  779. #, c-format
  780. msgid ""
  781. "Package %s is not available, but is referred to by another package.\n"
  782. "This may mean that the package is missing, has been obsoleted, or\n"
  783. "is only available from another source\n"
  784. msgstr ""
  785. "ไม่มีแพกเกจ %s ให้ใช้ติดตั้ง แต่ถูกอ้างถึงโดยแพกเกจอื่น\n"
  786. "แพกเกจนี้อาจขาดหายไป หรือตกรุ่นไปแล้ว หรืออยู่ในแหล่งอื่น\n"
  787. #: cmdline/apt-get.cc:1125
  788. msgid "However the following packages replace it:"
  789. msgstr "อย่างไรก็ดี แพกเกจต่อไปนี้ได้แทนที่แพกเกจดังกล่าวไปแล้ว:"
  790. #: cmdline/apt-get.cc:1128
  791. #, c-format
  792. msgid "Package %s has no installation candidate"
  793. msgstr "แพกเกจ %s ไม่มีรุ่นที่จะใช้ติดตั้ง"
  794. #: cmdline/apt-get.cc:1148
  795. #, c-format
  796. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  797. msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n"
  798. #: cmdline/apt-get.cc:1156
  799. #, c-format
  800. msgid "%s is already the newest version.\n"
  801. msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n"
  802. #: cmdline/apt-get.cc:1185
  803. #, c-format
  804. msgid "Release '%s' for '%s' was not found"
  805. msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'"
  806. #: cmdline/apt-get.cc:1187
  807. #, c-format
  808. msgid "Version '%s' for '%s' was not found"
  809. msgstr "ไม่พบรุ่น '%s' ของ '%s'"
  810. #: cmdline/apt-get.cc:1193
  811. #, c-format
  812. msgid "Selected version %s (%s) for %s\n"
  813. msgstr "เลือกรุ่น %s (%s) สำหรับ %s แล้ว\n"
  814. #: cmdline/apt-get.cc:1330
  815. msgid "The update command takes no arguments"
  816. msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม"
  817. #: cmdline/apt-get.cc:1343
  818. msgid "Unable to lock the list directory"
  819. msgstr "ไม่สามารถล็อคไดเรกทอรีรายชื่อแพกเกจ"
  820. #: cmdline/apt-get.cc:1410 cmdline/apt-get.cc:1412
  821. msgid ""
  822. "Some index files failed to download, they have been ignored, or old ones "
  823. "used instead."
  824. msgstr "ดาวน์โหลดแฟ้มดัชนีบางแฟ้มไม่สำเร็จ จะข้ามรายการดังกล่าวไป หรือใช้ข้อมูลเก่าแทน"
  825. #: cmdline/apt-get.cc:1433
  826. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  827. msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้"
  828. #: cmdline/apt-get.cc:1465
  829. msgid ""
  830. "The following packages were automatically installed and are no longer "
  831. "required:"
  832. msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:"
  833. #: cmdline/apt-get.cc:1467
  834. msgid "Use 'apt-get autoremove' to remove them."
  835. msgstr "ใช้ 'apt-get autoremove' เพื่อลบแพกเกจดังกล่าวได้"
  836. #: cmdline/apt-get.cc:1472
  837. msgid ""
  838. "Hmm, seems like the AutoRemover destroyed something which really\n"
  839. "shouldn't happen. Please file a bug report against apt."
  840. msgstr ""
  841. "ดูเหมือนการถอดถอนอัตโนมัติได้สร้างความเสียหายบางอย่าง ซึ่งไม่ควรเกิดขึ้น\n"
  842. "กรุณารายงานบั๊กนี้ของแพกเกจ apt"
  843. #: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1736
  844. msgid "The following information may help to resolve the situation:"
  845. msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:"
  846. #: cmdline/apt-get.cc:1479
  847. msgid "Internal Error, AutoRemover broke stuff"
  848. msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย"
  849. #: cmdline/apt-get.cc:1498
  850. msgid "Internal error, AllUpgrade broke stuff"
  851. msgstr "เกิดข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย"
  852. #: cmdline/apt-get.cc:1543
  853. #, c-format
  854. msgid "Couldn't find task %s"
  855. msgstr "ไม่พบงาน %s"
  856. #: cmdline/apt-get.cc:1642 cmdline/apt-get.cc:1678
  857. #, c-format
  858. msgid "Couldn't find package %s"
  859. msgstr "ไม่พบแพกเกจ %s"
  860. #: cmdline/apt-get.cc:1665
  861. #, c-format
  862. msgid "Note, selecting %s for regex '%s'\n"
  863. msgstr "หมายเหตุ: จะเลือก %s สำหรับนิพจน์เรกิวลาร์ '%s'\n"
  864. #: cmdline/apt-get.cc:1695
  865. #, c-format
  866. msgid "%s set to manual installed.\n"
  867. msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n"
  868. #: cmdline/apt-get.cc:1708
  869. msgid "You might want to run `apt-get -f install' to correct these:"
  870. msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:"
  871. #: cmdline/apt-get.cc:1711
  872. msgid ""
  873. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  874. "solution)."
  875. msgstr ""
  876. "มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ "
  877. "(หรือจะระบุทางแก้ก็ได้)"
  878. #: cmdline/apt-get.cc:1723
  879. msgid ""
  880. "Some packages could not be installed. This may mean that you have\n"
  881. "requested an impossible situation or if you are using the unstable\n"
  882. "distribution that some required packages have not yet been created\n"
  883. "or been moved out of Incoming."
  884. msgstr ""
  885. "ไม่สามารถติดตั้งบางแพกเกจได้ คุณอาจระบุเงื่อนไขการติดตั้งที่เป็นไปไม่ได้\n"
  886. "หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n"
  887. "ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming"
  888. #: cmdline/apt-get.cc:1731
  889. msgid ""
  890. "Since you only requested a single operation it is extremely likely that\n"
  891. "the package is simply not installable and a bug report against\n"
  892. "that package should be filed."
  893. msgstr ""
  894. "และเนื่องจากคุณได้สั่งดำเนินการเพียงรายการเดียวเท่านั้น ก็เป็นไปได้สูงว่าแพกเกจนี้เสีย\n"
  895. "คุณควรจะรายงานบั๊กสำหรับแพกเกจนี้"
  896. #: cmdline/apt-get.cc:1739
  897. msgid "Broken packages"
  898. msgstr "แพกเกจมีปัญหา"
  899. #: cmdline/apt-get.cc:1770
  900. msgid "The following extra packages will be installed:"
  901. msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:"
  902. #: cmdline/apt-get.cc:1859
  903. msgid "Suggested packages:"
  904. msgstr "แพกเกจที่แนะนำ:"
  905. #: cmdline/apt-get.cc:1860
  906. msgid "Recommended packages:"
  907. msgstr "แพกเกจที่ควรใช้ร่วมกัน:"
  908. #: cmdline/apt-get.cc:1888
  909. msgid "Calculating upgrade... "
  910. msgstr "กำลังคำนวณการปรับรุ่น... "
  911. #: cmdline/apt-get.cc:1891 methods/ftp.cc:702 methods/connect.cc:101
  912. msgid "Failed"
  913. msgstr "ล้มเหลว"
  914. #: cmdline/apt-get.cc:1896
  915. msgid "Done"
  916. msgstr "เสร็จแล้ว"
  917. #: cmdline/apt-get.cc:1963 cmdline/apt-get.cc:1971
  918. msgid "Internal error, problem resolver broke stuff"
  919. msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย"
  920. #: cmdline/apt-get.cc:2071
  921. msgid "Must specify at least one package to fetch source for"
  922. msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด"
  923. #: cmdline/apt-get.cc:2101 cmdline/apt-get.cc:2330
  924. #, c-format
  925. msgid "Unable to find a source package for %s"
  926. msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s"
  927. #: cmdline/apt-get.cc:2145
  928. #, c-format
  929. msgid "Skipping already downloaded file '%s'\n"
  930. msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n"
  931. #: cmdline/apt-get.cc:2169
  932. #, c-format
  933. msgid "You don't have enough free space in %s"
  934. msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s"
  935. #: cmdline/apt-get.cc:2174
  936. #, c-format
  937. msgid "Need to get %sB/%sB of source archives.\n"
  938. msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n"
  939. #: cmdline/apt-get.cc:2177
  940. #, c-format
  941. msgid "Need to get %sB of source archives.\n"
  942. msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n"
  943. #: cmdline/apt-get.cc:2183
  944. #, c-format
  945. msgid "Fetch source %s\n"
  946. msgstr "ดาวน์โหลดซอร์ส %s\n"
  947. #: cmdline/apt-get.cc:2214
  948. msgid "Failed to fetch some archives."
  949. msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม"
  950. #: cmdline/apt-get.cc:2242
  951. #, c-format
  952. msgid "Skipping unpack of already unpacked source in %s\n"
  953. msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n"
  954. #: cmdline/apt-get.cc:2254
  955. #, c-format
  956. msgid "Unpack command '%s' failed.\n"
  957. msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n"
  958. #: cmdline/apt-get.cc:2255
  959. #, c-format
  960. msgid "Check if the 'dpkg-dev' package is installed.\n"
  961. msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n"
  962. #: cmdline/apt-get.cc:2272
  963. #, c-format
  964. msgid "Build command '%s' failed.\n"
  965. msgstr "คำสั่ง build '%s' ล้มเหลว\n"
  966. #: cmdline/apt-get.cc:2291
  967. msgid "Child process failed"
  968. msgstr "โพรเซสลูกล้มเหลว"
  969. #: cmdline/apt-get.cc:2307
  970. msgid "Must specify at least one package to check builddeps for"
  971. msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build"
  972. #: cmdline/apt-get.cc:2335
  973. #, c-format
  974. msgid "Unable to get build-dependency information for %s"
  975. msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s"
  976. #: cmdline/apt-get.cc:2355
  977. #, c-format
  978. msgid "%s has no build depends.\n"
  979. msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n"
  980. #: cmdline/apt-get.cc:2407
  981. #, c-format
  982. msgid ""
  983. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  984. "found"
  985. msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่พบแพกเกจ %s"
  986. #: cmdline/apt-get.cc:2459
  987. #, c-format
  988. msgid ""
  989. "%s dependency for %s cannot be satisfied because no available versions of "
  990. "package %s can satisfy version requirements"
  991. msgstr ""
  992. "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s "
  993. "รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้"
  994. #: cmdline/apt-get.cc:2494
  995. #, c-format
  996. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  997. msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป"
  998. #: cmdline/apt-get.cc:2519
  999. #, c-format
  1000. msgid "Failed to satisfy %s dependency for %s: %s"
  1001. msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s"
  1002. #: cmdline/apt-get.cc:2533
  1003. #, c-format
  1004. msgid "Build-dependencies for %s could not be satisfied."
  1005. msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้"
  1006. #: cmdline/apt-get.cc:2537
  1007. msgid "Failed to process build dependencies"
  1008. msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ"
  1009. #: cmdline/apt-get.cc:2569
  1010. msgid "Supported modules:"
  1011. msgstr "มอดูลที่รองรับ:"
  1012. #: cmdline/apt-get.cc:2610
  1013. #, fuzzy
  1014. msgid ""
  1015. "Usage: apt-get [options] command\n"
  1016. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1017. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1018. "\n"
  1019. "apt-get is a simple command line interface for downloading and\n"
  1020. "installing packages. The most frequently used commands are update\n"
  1021. "and install.\n"
  1022. "\n"
  1023. "Commands:\n"
  1024. " update - Retrieve new lists of packages\n"
  1025. " upgrade - Perform an upgrade\n"
  1026. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1027. " remove - Remove packages\n"
  1028. " source - Download source archives\n"
  1029. " build-dep - Configure build-dependencies for source packages\n"
  1030. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1031. " dselect-upgrade - Follow dselect selections\n"
  1032. " clean - Erase downloaded archive files\n"
  1033. " autoclean - Erase old downloaded archive files\n"
  1034. " check - Verify that there are no broken dependencies\n"
  1035. "\n"
  1036. "Options:\n"
  1037. " -h This help text.\n"
  1038. " -q Loggable output - no progress indicator\n"
  1039. " -qq No output except for errors\n"
  1040. " -d Download only - do NOT install or unpack archives\n"
  1041. " -s No-act. Perform ordering simulation\n"
  1042. " -y Assume Yes to all queries and do not prompt\n"
  1043. " -f Attempt to continue if the integrity check fails\n"
  1044. " -m Attempt to continue if archives are unlocatable\n"
  1045. " -u Show a list of upgraded packages as well\n"
  1046. " -b Build the source package after fetching it\n"
  1047. " -V Show verbose version numbers\n"
  1048. " -c=? Read this configuration file\n"
  1049. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1050. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1051. "pages for more information and options.\n"
  1052. " This APT has Super Cow Powers.\n"
  1053. msgstr ""
  1054. "วิธีใช้: apt-get [ตัวเลือก] คำสั่ง\n"
  1055. " apt-get [ตัวเลือก] install|remove pkg1 [pkg2 ...]\n"
  1056. " apt-get [ตัวเลือก] source pkg1 [pkg2 ...]\n"
  1057. "\n"
  1058. "apt-get เป็นคำสั่งง่ายๆ สำหรับดาวน์โหลดและติดตั้งแพกเกจ คำสั่งที่ใช้บ่อยที่สุดก็คือ\n"
  1059. "update และ install\n"
  1060. "\n"
  1061. "คำสั่ง:\n"
  1062. " update - ดาวน์โหลดรายชื่อแพกเกจชุดใหม่\n"
  1063. " upgrade - ปรับรุ่นแพกเกจต่างๆ ขึ้น\n"
  1064. " install - ติดตั้งแพกเกจใหม่ (pkg อยู่ในรูปเช่น libc6 ไม่ใช่ libc6.deb)\n"
  1065. " remove - ถอดถอนแพกเกจ\n"
  1066. " purge - ถอดถอนแพกเกจพร้อมลบค่าตั้งทั้งหมด\n"
  1067. " source - ดาวน์โหลดซอร์สโค้ดของแพกเกจ\n"
  1068. " build-dep - ติดตั้งสิ่งที่จำเป็นสำหรับการ build ของแพกเกจซอร์สโค้ด\n"
  1069. " dist-upgrade - ปรับรุ่นขึ้นแบบข้ามรุ่นจัดแจก ดู apt-get(8)\n"
  1070. " dselect-upgrade - ทำตามสิ่งที่เลือกโดย dselect\n"
  1071. " clean - ลบแฟ้มแพกเกจที่ดาวน์โหลดมา\n"
  1072. " autoclean - ลบแฟ้มแพกเกจเก่าที่ดาวน์โหลดมา\n"
  1073. " check - ตรวจสอบว่าไม่มีความเชื่อมโยงที่เสียระหว่างแพกเกจ\n"
  1074. "\n"
  1075. "ตัวเลือก:\n"
  1076. " -h แสดงข้อความช่วยเหลือนี้\n"
  1077. " -q แสดงผลลัพธ์แบบบันทึกลงแฟ้มได้ - ไม่ต้องแสดงความคืบหน้า\n"
  1078. " -qq ไม่ต้องแสดงผลลัพธ์ ยกเว้นข้อผิดพลาด\n"
  1079. " -d ดาวน์โหลดอย่างเดียว - *ไม่ต้อง* ติดตั้งหรือแตกแพกเกจ\n"
  1080. " -s ไม่ต้องทำจริง เพียงจำลองลำดับการทำงานเท่านั้น\n"
  1081. " -y ตอบ Yes สำหรับทุกคำถามโดยไม่ต้องถาม\n"
  1082. " -f พยายามดำเนินการต่อถ้าพบความผิดปกติของฐานข้อมูลแพกเกจ\n"
  1083. " -m พยายามดำเนินการต่อถ้าหาแฟ้มแพกเกจไม่พบ\n"
  1084. " -u แสดงรายชื่อของแพกเกจที่จะปรับรุ่นทั้งหมดด้วย\n"
  1085. " -b build แพกเกจซอร์สหลังจากดาวน์โหลดมาแล้วด้วย\n"
  1086. " -V แสดงเลขรุ่นแบบยาวของโปรแกรม\n"
  1087. " -c=? อ่านแฟ้มค่าตั้งนี้\n"
  1088. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
  1089. "กรุณาอ่านข้อมูลและตัวเลือกเพิ่มเติมจาก manual page apt-get(8), sources.list(5)\n"
  1090. "และ apt.conf(5)\n"
  1091. " APT นี้มีพลังของ Super Cow\n"
  1092. #: cmdline/acqprogress.cc:55
  1093. msgid "Hit "
  1094. msgstr "เจอ "
  1095. #: cmdline/acqprogress.cc:79
  1096. msgid "Get:"
  1097. msgstr "ดึง:"
  1098. #: cmdline/acqprogress.cc:110
  1099. msgid "Ign "
  1100. msgstr "ข้าม "
  1101. #: cmdline/acqprogress.cc:114
  1102. msgid "Err "
  1103. msgstr "ปัญหา "
  1104. #: cmdline/acqprogress.cc:135
  1105. #, c-format
  1106. msgid "Fetched %sB in %s (%sB/s)\n"
  1107. msgstr "ดาวน์โหลด %sB ใน %s (%sB/s)\n"
  1108. #: cmdline/acqprogress.cc:225
  1109. #, c-format
  1110. msgid " [Working]"
  1111. msgstr " [กำลังทำงาน]"
  1112. #: cmdline/acqprogress.cc:271
  1113. #, c-format
  1114. msgid ""
  1115. "Media change: please insert the disc labeled\n"
  1116. " '%s'\n"
  1117. "in the drive '%s' and press enter\n"
  1118. msgstr ""
  1119. "เปลี่ยนแผ่น: กรุณาใส่แผ่นชื่อ\n"
  1120. " '%s'\n"
  1121. "ลงในไดรว์ %s แล้วกด enter\n"
  1122. #: cmdline/apt-sortpkgs.cc:86
  1123. msgid "Unknown package record!"
  1124. msgstr "พบระเบียนแพกเกจที่ไม่รู้จัก!"
  1125. #: cmdline/apt-sortpkgs.cc:150
  1126. msgid ""
  1127. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1128. "\n"
  1129. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1130. "to indicate what kind of file it is.\n"
  1131. "\n"
  1132. "Options:\n"
  1133. " -h This help text\n"
  1134. " -s Use source file sorting\n"
  1135. " -c=? Read this configuration file\n"
  1136. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1137. msgstr ""
  1138. "วิธีใช้: apt-sortpkgs [ตัวเลือก] file1 [file2 ...]\n"
  1139. "\n"
  1140. "apt-sortpkgs เป็นเครื่องมืออย่างง่ายสำหรับเรียงลำดับแฟ้มรายชื่อแพกเกจ ตัวเลือก -s\n"
  1141. "ใช้สำหรับระบุชนิดของแฟ้มที่เรียง\n"
  1142. "\n"
  1143. "ตัวเลือก:\n"
  1144. " -h แสดงข้อความช่วยเหลือนี้\n"
  1145. " -s เรียงตามแฟ้มซอร์สโค้ด\n"
  1146. " -c=? อ่านแฟ้มค่าตั้งนี้\n"
  1147. " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n"
  1148. #: dselect/install:32
  1149. msgid "Bad default setting!"
  1150. msgstr "ค่าตั้งปริยายผิดพลาด!"
  1151. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:93
  1152. #: dselect/install:104 dselect/update:45
  1153. msgid "Press enter to continue."
  1154. msgstr "กด enter เพื่อดำเนินการต่อ"
  1155. #: dselect/install:100
  1156. msgid "Some errors occurred while unpacking. I'm going to configure the"
  1157. msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว"
  1158. #: dselect/install:101
  1159. msgid "packages that were installed. This may result in duplicate errors"
  1160. msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย"
  1161. #: dselect/install:102
  1162. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1163. msgstr "ซึ่งไม่มีปัญหาอะไร มีเฉพาะข้อผิดพลาดก่อนหน้าข้อความนี้เท่านั้นที่สำคัญ"
  1164. #: dselect/install:103
  1165. msgid ""
  1166. "above this message are important. Please fix them and run [I]nstall again"
  1167. msgstr "กรุณาแก้ปัญหาเหล่านั้น แล้วเรียกติดตั้งใหม่อีกครั้ง"
  1168. #: dselect/update:30
  1169. msgid "Merging available information"
  1170. msgstr "กำลังผสานรายชื่อแพกเกจที่มี"
  1171. #: apt-inst/contrib/extracttar.cc:117
  1172. msgid "Failed to create pipes"
  1173. msgstr "สร้างไปป์ไม่สำเร็จ"
  1174. #: apt-inst/contrib/extracttar.cc:144
  1175. msgid "Failed to exec gzip "
  1176. msgstr "เรียก gzip ไม่สำเร็จ"
  1177. #: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:207
  1178. msgid "Corrupted archive"
  1179. msgstr "แฟ้มจัดเก็บเสียหาย"
  1180. #: apt-inst/contrib/extracttar.cc:196
  1181. msgid "Tar checksum failed, archive corrupted"
  1182. msgstr "checksum ของแฟ้ม tar ผิดพลาด แฟ้มจัดเก็บเสียหาย"
  1183. #: apt-inst/contrib/extracttar.cc:299
  1184. #, c-format
  1185. msgid "Unknown TAR header type %u, member %s"
  1186. msgstr "พบชนิด %u ของข้อมูลส่วนหัว TAR ที่ไม่รู้จัก ที่สมาชิก %s"
  1187. #: apt-inst/contrib/arfile.cc:73
  1188. msgid "Invalid archive signature"
  1189. msgstr "เอกลักษณ์ archive ไม่ถูกต้อง"
  1190. #: apt-inst/contrib/arfile.cc:81
  1191. msgid "Error reading archive member header"
  1192. msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิก archive"
  1193. #: apt-inst/contrib/arfile.cc:93 apt-inst/contrib/arfile.cc:105
  1194. msgid "Invalid archive member header"
  1195. msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง"
  1196. #: apt-inst/contrib/arfile.cc:131
  1197. msgid "Archive is too short"
  1198. msgstr "archive สั้นเกินไป"
  1199. #: apt-inst/contrib/arfile.cc:135
  1200. msgid "Failed to read the archive headers"
  1201. msgstr "อ่านข้อมูลส่วนหัวของ archive ไม่สำเร็จ"
  1202. #: apt-inst/filelist.cc:384
  1203. msgid "DropNode called on still linked node"
  1204. msgstr "DropNode ถูกเรียกใช้กับโหนดที่ยังลิงก์อยู่"
  1205. #: apt-inst/filelist.cc:416
  1206. msgid "Failed to locate the hash element!"
  1207. msgstr "หาสมาชิกในตาราง hash ไม่สำเร็จ!"
  1208. #: apt-inst/filelist.cc:463
  1209. msgid "Failed to allocate diversion"
  1210. msgstr "จองเนื้อที่สำหรับ diversion ไม่สำเร็จ"
  1211. #: apt-inst/filelist.cc:468
  1212. msgid "Internal error in AddDiversion"
  1213. msgstr "ข้อผิดพลาดภายในที่ AddDiversion"
  1214. #: apt-inst/filelist.cc:481
  1215. #, c-format
  1216. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1217. msgstr "พยายามเขียนทับ diversion: %s -> %s กับ %s/%s"
  1218. #: apt-inst/filelist.cc:510
  1219. #, c-format
  1220. msgid "Double add of diversion %s -> %s"
  1221. msgstr "เพิ่ม diversion %s -> %s ซ้ำสอง"
  1222. #: apt-inst/filelist.cc:553
  1223. #, c-format
  1224. msgid "Duplicate conf file %s/%s"
  1225. msgstr "แฟ้มค่าตั้ง %s/%s ซ้ำ"
  1226. #: apt-inst/dirstream.cc:45 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:53
  1227. #, c-format
  1228. msgid "Failed to write file %s"
  1229. msgstr "ไม่สามารถเขียนแฟ้ม %s"
  1230. #: apt-inst/dirstream.cc:96 apt-inst/dirstream.cc:104
  1231. #, c-format
  1232. msgid "Failed to close file %s"
  1233. msgstr "ไม่สามารถปิดแฟ้ม %s"
  1234. #: apt-inst/extract.cc:96 apt-inst/extract.cc:167
  1235. #, c-format
  1236. msgid "The path %s is too long"
  1237. msgstr "พาธ %s ยาวเกินไป"
  1238. #: apt-inst/extract.cc:127
  1239. #, c-format
  1240. msgid "Unpacking %s more than once"
  1241. msgstr "พยายามแตกแพกเกจ %s มากกว่าหนึ่งครั้ง"
  1242. #: apt-inst/extract.cc:137
  1243. #, c-format
  1244. msgid "The directory %s is diverted"
  1245. msgstr "ไดเรกทอรี %s ถูก divert"
  1246. #: apt-inst/extract.cc:147
  1247. #, c-format
  1248. msgid "The package is trying to write to the diversion target %s/%s"
  1249. msgstr "แพกเกจนี้พยายามเขียนลงปลายทางของ diversion %s/%s"
  1250. #: apt-inst/extract.cc:157 apt-inst/extract.cc:300
  1251. msgid "The diversion path is too long"
  1252. msgstr "พาธของ diversion ยาวเกินไป"
  1253. #: apt-inst/extract.cc:243
  1254. #, c-format
  1255. msgid "The directory %s is being replaced by a non-directory"
  1256. msgstr "ไดเรกทอรี %s กำลังจะถูกแทนที่ด้วยสิ่งที่ไม่ใช่ไดเรกทอรี"
  1257. #: apt-inst/extract.cc:283
  1258. msgid "Failed to locate node in its hash bucket"
  1259. msgstr "หาโหนดใน bucket ของ hash ไม่พบ"
  1260. #: apt-inst/extract.cc:287
  1261. msgid "The path is too long"
  1262. msgstr "พาธยาวเกินไป"
  1263. #: apt-inst/extract.cc:417
  1264. #, c-format
  1265. msgid "Overwrite package match with no version for %s"
  1266. msgstr "พบแพกเกจที่เขียนทับโดยไม่มีข้อมูลรุ่นสำหรับ %s"
  1267. #: apt-inst/extract.cc:434
  1268. #, c-format
  1269. msgid "File %s/%s overwrites the one in the package %s"
  1270. msgstr "แฟ้ม %s/%s เขียนทับแฟ้มในแพกเกจ %s"
  1271. #: apt-inst/extract.cc:467 apt-pkg/contrib/configuration.cc:750
  1272. #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/sourcelist.cc:324
  1273. #: apt-pkg/acquire.cc:421 apt-pkg/clean.cc:38
  1274. #: apt-pkg/contrib/configuration.cc:748 apt-pkg/contrib/cdromutl.cc:150
  1275. #: apt-pkg/sourcelist.cc:320 apt-pkg/acquire.cc:418 apt-pkg/clean.cc:34
  1276. #, c-format
  1277. msgid "Unable to read %s"
  1278. msgstr "ไม่สามารถอ่าน %s"
  1279. #: apt-inst/extract.cc:494
  1280. #, c-format
  1281. msgid "Unable to stat %s"
  1282. msgstr "ไม่สามารถ stat %s"
  1283. #: apt-inst/deb/dpkgdb.cc:55 apt-inst/deb/dpkgdb.cc:61
  1284. #, c-format
  1285. msgid "Failed to remove %s"
  1286. msgstr "ไม่สามารถลบ %s"
  1287. #: apt-inst/deb/dpkgdb.cc:110 apt-inst/deb/dpkgdb.cc:112
  1288. #, c-format
  1289. msgid "Unable to create %s"
  1290. msgstr "ไม่สามารถสร้าง %s"
  1291. #: apt-inst/deb/dpkgdb.cc:118
  1292. #, c-format
  1293. msgid "Failed to stat %sinfo"
  1294. msgstr "ไม่สามารถ stat %sinfo"
  1295. #: apt-inst/deb/dpkgdb.cc:123
  1296. msgid "The info and temp directories need to be on the same filesystem"
  1297. msgstr "ไดเรกทอรี info และ temp ต้องอยู่ในระบบแฟ้มเดียวกัน"
  1298. #. Build the status cache
  1299. #: apt-inst/deb/dpkgdb.cc:139 apt-pkg/pkgcachegen.cc:752
  1300. #: apt-pkg/pkgcachegen.cc:821 apt-pkg/pkgcachegen.cc:826
  1301. #: apt-pkg/pkgcachegen.cc:949 apt-pkg/pkgcachegen.cc:748
  1302. #: apt-pkg/pkgcachegen.cc:817 apt-pkg/pkgcachegen.cc:822
  1303. #: apt-pkg/pkgcachegen.cc:945
  1304. msgid "Reading package lists"
  1305. msgstr "กำลังอ่านรายชื่อแพกเกจ"
  1306. #: apt-inst/deb/dpkgdb.cc:180
  1307. #, c-format
  1308. msgid "Failed to change to the admin dir %sinfo"
  1309. msgstr "ไม่สามารถเปลี่ยนไปยังไดเรกทอรีระบบ %sinfo"
  1310. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:355
  1311. #: apt-inst/deb/dpkgdb.cc:448
  1312. msgid "Internal error getting a package name"
  1313. msgstr "เกิดข้อผิดพลาดภายในขณะอ่านชื่อแพกเกจ"
  1314. #: apt-inst/deb/dpkgdb.cc:205 apt-inst/deb/dpkgdb.cc:386
  1315. msgid "Reading file listing"
  1316. msgstr "กำลังอ่านรายชื่อแฟ้ม"
  1317. #: apt-inst/deb/dpkgdb.cc:216
  1318. #, c-format
  1319. msgid ""
  1320. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1321. "then make it empty and immediately re-install the same version of the "
  1322. "package!"
  1323. msgstr ""
  1324. "เปิดแฟ้มรายชื่อแฟ้ม '%sinfo/%s' ไม่สำเร็จ ถ้าคุณไม่สามารถเรียกแฟ้มนี้คืนได้ "
  1325. "ก็ให้สร้างแฟ้มดังกล่าวให้เป็นแฟ้มเปล่า แล้วติดตั้งแพกเกจรุ่นเดิมซ้ำทันที"
  1326. #: apt-inst/deb/dpkgdb.cc:229 apt-inst/deb/dpkgdb.cc:242
  1327. #, c-format
  1328. msgid "Failed reading the list file %sinfo/%s"
  1329. msgstr "อ่านแฟ้มรายชื่อแฟ้ม %sinfo/%s ไม่สำเร็จ"
  1330. #: apt-inst/deb/dpkgdb.cc:266
  1331. msgid "Internal error getting a node"
  1332. msgstr "เกิดข้อผิดพลาดภายในขณะอ่านโหนด"
  1333. #: apt-inst/deb/dpkgdb.cc:309
  1334. #, c-format
  1335. msgid "Failed to open the diversions file %sdiversions"
  1336. msgstr "เปิดแฟ้ม diversion %sdiversions ไม่สำเร็จ"
  1337. #: apt-inst/deb/dpkgdb.cc:324
  1338. msgid "The diversion file is corrupted"
  1339. msgstr "แฟ้ม diversion เสียหาย"
  1340. #: apt-inst/deb/dpkgdb.cc:331 apt-inst/deb/dpkgdb.cc:336
  1341. #: apt-inst/deb/dpkgdb.cc:341
  1342. #, c-format
  1343. msgid "Invalid line in the diversion file: %s"
  1344. msgstr "ข้อมูลผิดพลาดในแฟ้ม diversion: %s"
  1345. #: apt-inst/deb/dpkgdb.cc:362
  1346. msgid "Internal error adding a diversion"
  1347. msgstr "เกิดข้อผิดพลาดภายในขณะเพิ่ม diversion"
  1348. #: apt-inst/deb/dpkgdb.cc:383
  1349. msgid "The pkg cache must be initialized first"
  1350. msgstr "ต้องกำหนดค่าตั้งต้นแคชของแพกเกจก่อน"
  1351. #: apt-inst/deb/dpkgdb.cc:443
  1352. #, c-format
  1353. msgid "Failed to find a Package: header, offset %lu"
  1354. msgstr "หาข้อมูลส่วนหัว Package: ไม่พบ ที่ออฟเซ็ต %lu"
  1355. #: apt-inst/deb/dpkgdb.cc:465
  1356. #, c-format
  1357. msgid "Bad ConfFile section in the status file. Offset %lu"
  1358. msgstr "หมวด ConfFile เสียหายในแฟ้ม status ที่ออฟเซ็ต %lu"
  1359. #: apt-inst/deb/dpkgdb.cc:470
  1360. #, c-format
  1361. msgid "Error parsing MD5. Offset %lu"
  1362. msgstr "เกิดข้อผิดพลาดขณะแจง MD5 ที่ออฟเซ็ต %lu"
  1363. #: apt-inst/deb/debfile.cc:42 apt-inst/deb/debfile.cc:47
  1364. #, c-format
  1365. msgid "This is not a valid DEB archive, missing '%s' member"
  1366. msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s'"
  1367. #: apt-inst/deb/debfile.cc:52
  1368. #, fuzzy, c-format
  1369. msgid "This is not a valid DEB archive, it has no '%s' or '%s' member"
  1370. msgstr "แฟ้มนี้ไม่ใช่แพกเกจ DEB ที่ใช้การได้ ขาดสมาชิก '%s', '%s' หรือ '%s'"
  1371. #: apt-inst/deb/debfile.cc:112
  1372. #, c-format
  1373. msgid "Couldn't change to %s"
  1374. msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s"
  1375. #: apt-inst/deb/debfile.cc:138
  1376. msgid "Internal error, could not locate member"
  1377. msgstr "ข้อผิดพลาดภายใน: ไม่พบสมาชิก"
  1378. #: apt-inst/deb/debfile.cc:171
  1379. msgid "Failed to locate a valid control file"
  1380. msgstr "ไม่พบแฟ้มควบคุมที่ใช้การได้"
  1381. #: apt-inst/deb/debfile.cc:256
  1382. msgid "Unparsable control file"
  1383. msgstr "ไม่สามารถแจงแฟ้มควบคุมได้"
  1384. #: methods/cdrom.cc:114
  1385. #, c-format
  1386. msgid "Unable to read the cdrom database %s"
  1387. msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s"
  1388. #: methods/cdrom.cc:123
  1389. msgid ""
  1390. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1391. "cannot be used to add new CD-ROMs"
  1392. msgstr ""
  1393. "กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้"
  1394. #: methods/cdrom.cc:131
  1395. msgid "Wrong CD-ROM"
  1396. msgstr "ซีดีรอมผิดแผ่น"
  1397. #: methods/cdrom.cc:166
  1398. #, c-format
  1399. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1400. msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่"
  1401. #: methods/cdrom.cc:171
  1402. msgid "Disk not found."
  1403. msgstr "ไม่พบแผ่น"
  1404. #: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264
  1405. msgid "File not found"
  1406. msgstr "ไม่พบแฟ้ม"
  1407. #: methods/copy.cc:42 methods/gpgv.cc:281 methods/gzip.cc:141
  1408. #: methods/gzip.cc:150 methods/rred.cc:234 methods/rred.cc:243
  1409. #: methods/copy.cc:43
  1410. msgid "Failed to stat"
  1411. msgstr "stat ไม่สำเร็จ"
  1412. #: methods/copy.cc:79 methods/gpgv.cc:278 methods/gzip.cc:147
  1413. #: methods/rred.cc:240 methods/copy.cc:80
  1414. msgid "Failed to set modification time"
  1415. msgstr "กำหนดเวลาแก้ไขไม่สำเร็จ"
  1416. #: methods/file.cc:44
  1417. msgid "Invalid URI, local URIS must not start with //"
  1418. msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //"
  1419. #. Login must be before getpeername otherwise dante won't work.
  1420. #: methods/ftp.cc:162
  1421. msgid "Logging in"
  1422. msgstr "เข้าระบบ"
  1423. #: methods/ftp.cc:168
  1424. msgid "Unable to determine the peer name"
  1425. msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้"
  1426. #: methods/ftp.cc:173
  1427. msgid "Unable to determine the local name"
  1428. msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้"
  1429. #: methods/ftp.cc:204 methods/ftp.cc:232
  1430. #, c-format
  1431. msgid "The server refused the connection and said: %s"
  1432. msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s"
  1433. #: methods/ftp.cc:210
  1434. #, c-format
  1435. msgid "USER failed, server said: %s"
  1436. msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
  1437. #: methods/ftp.cc:217
  1438. #, c-format
  1439. msgid "PASS failed, server said: %s"
  1440. msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
  1441. #: methods/ftp.cc:237
  1442. msgid ""
  1443. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1444. "is empty."
  1445. msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า"
  1446. #: methods/ftp.cc:265
  1447. #, c-format
  1448. msgid "Login script command '%s' failed, server said: %s"
  1449. msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
  1450. #: methods/ftp.cc:291
  1451. #, c-format
  1452. msgid "TYPE failed, server said: %s"
  1453. msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
  1454. #: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226
  1455. msgid "Connection timeout"
  1456. msgstr "หมดเวลารอเชื่อมต่อ"
  1457. #: methods/ftp.cc:335
  1458. msgid "Server closed the connection"
  1459. msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ"
  1460. #: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:471 methods/rsh.cc:190
  1461. #: apt-pkg/contrib/fileutl.cc:469
  1462. msgid "Read error"
  1463. msgstr "การอ่านข้อมูลผิดพลาด"
  1464. #: methods/ftp.cc:345 methods/rsh.cc:197
  1465. msgid "A response overflowed the buffer."
  1466. msgstr "คำตอบท่วมบัฟเฟอร์"
  1467. #: methods/ftp.cc:362 methods/ftp.cc:374
  1468. msgid "Protocol corruption"
  1469. msgstr "มีความเสียหายของโพรโทคอล"
  1470. #: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:510 methods/rsh.cc:232
  1471. #: apt-pkg/contrib/fileutl.cc:508
  1472. msgid "Write error"
  1473. msgstr "การเขียนข้อมูลผิดพลาด"
  1474. #: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729
  1475. msgid "Could not create a socket"
  1476. msgstr "ไม่สามารถสร้างซ็อกเก็ต"
  1477. #: methods/ftp.cc:698
  1478. msgid "Could not connect data socket, connection timed out"
  1479. msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย"
  1480. #: methods/ftp.cc:704
  1481. msgid "Could not connect passive socket."
  1482. msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive"
  1483. #: methods/ftp.cc:722
  1484. msgid "getaddrinfo was unable to get a listening socket"
  1485. msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้"
  1486. #: methods/ftp.cc:736
  1487. msgid "Could not bind a socket"
  1488. msgstr "ไม่สามารถ bind ซ็อกเก็ต"
  1489. #: methods/ftp.cc:740
  1490. msgid "Could not listen on the socket"
  1491. msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต"
  1492. #: methods/ftp.cc:747
  1493. msgid "Could not determine the socket's name"
  1494. msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต"
  1495. #: methods/ftp.cc:779
  1496. msgid "Unable to send PORT command"
  1497. msgstr "ไม่สามารถส่งคำสั่ง PORT"
  1498. #: methods/ftp.cc:789
  1499. #, c-format
  1500. msgid "Unknown address family %u (AF_*)"
  1501. msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)"
  1502. #: methods/ftp.cc:798
  1503. #, c-format
  1504. msgid "EPRT failed, server said: %s"
  1505. msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s"
  1506. #: methods/ftp.cc:818
  1507. msgid "Data socket connect timed out"
  1508. msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล"
  1509. #: methods/ftp.cc:825
  1510. msgid "Unable to accept connection"
  1511. msgstr "ไม่สามารถรับการเชื่อมต่อ"
  1512. #: methods/ftp.cc:864 methods/http.cc:958 methods/rsh.cc:303
  1513. #: methods/http.cc:959
  1514. msgid "Problem hashing file"
  1515. msgstr "เกิดปัญหาขณะคำนวณค่า hash ของแฟ้ม"
  1516. #: methods/ftp.cc:877
  1517. #, c-format
  1518. msgid "Unable to fetch file, server said '%s'"
  1519. msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'"
  1520. #: methods/ftp.cc:892 methods/rsh.cc:322
  1521. msgid "Data socket timed out"
  1522. msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล"
  1523. #: methods/ftp.cc:922
  1524. #, c-format
  1525. msgid "Data transfer failed, server said '%s'"
  1526. msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'"
  1527. #. Get the files information
  1528. #: methods/ftp.cc:997
  1529. msgid "Query"
  1530. msgstr "สอบถาม"
  1531. #: methods/ftp.cc:1109
  1532. msgid "Unable to invoke "
  1533. msgstr "ไม่สามารถเรียก "
  1534. #: methods/connect.cc:64
  1535. #, c-format
  1536. msgid "Connecting to %s (%s)"
  1537. msgstr "เชื่อมต่อไปยัง %s (%s)"
  1538. #: methods/connect.cc:71
  1539. #, c-format
  1540. msgid "[IP: %s %s]"
  1541. msgstr "[IP: %s %s]"
  1542. #: methods/connect.cc:80
  1543. #, c-format
  1544. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1545. msgstr "ไม่สามารถสร้างซ็อกเก็ตสำหรับ %s (f=%u t=%u p=%u)"
  1546. #: methods/connect.cc:86
  1547. #, c-format
  1548. msgid "Cannot initiate the connection to %s:%s (%s)."
  1549. msgstr "ไม่สามารถเริ่มการเชื่อมต่อไปยัง %s:%s (%s)"
  1550. #: methods/connect.cc:93
  1551. #, c-format
  1552. msgid "Could not connect to %s:%s (%s), connection timed out"
  1553. msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s) เนื่องจากหมดเวลาคอย"
  1554. #: methods/connect.cc:108
  1555. #, c-format
  1556. msgid "Could not connect to %s:%s (%s)."
  1557. msgstr "ไม่สามารถเชื่อมต่อไปยัง %s:%s (%s)"
  1558. #. We say this mainly because the pause here is for the
  1559. #. ssh connection that is still going
  1560. #: methods/connect.cc:136 methods/rsh.cc:425
  1561. #, c-format
  1562. msgid "Connecting to %s"
  1563. msgstr "เชื่อมต่อไปยัง %s"
  1564. #: methods/connect.cc:167
  1565. #, c-format
  1566. msgid "Could not resolve '%s'"
  1567. msgstr "ไม่สามารถเปิดหาที่อยู่ '%s'"
  1568. #: methods/connect.cc:173
  1569. #, c-format
  1570. msgid "Temporary failure resolving '%s'"
  1571. msgstr "เกิดข้อผิดพลาดชั่วคราวขณะเปิดหาที่อยู่ '%s'"
  1572. #: methods/connect.cc:176
  1573. #, c-format
  1574. msgid "Something wicked happened resolving '%s:%s' (%i)"
  1575. msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i)"
  1576. #: methods/connect.cc:223
  1577. #, c-format
  1578. msgid "Unable to connect to %s %s:"
  1579. msgstr "ไม่สามารถเชื่อมต่อไปยัง %s %s:"
  1580. #: methods/gpgv.cc:65
  1581. #, c-format
  1582. msgid "Couldn't access keyring: '%s'"
  1583. msgstr "ไม่สามารถเข้าใช้พวงกุญแจ: '%s'"
  1584. #: methods/gpgv.cc:100
  1585. msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  1586. msgstr "E: รายการอาร์กิวเมนต์ใน Acquire::gpgv::Options ยาวเกินไป จะจบการทำงาน"
  1587. #: methods/gpgv.cc:204
  1588. msgid ""
  1589. "Internal error: Good signature, but could not determine key fingerprint?!"
  1590. msgstr "ข้อผิดพลาดภายใน: ลายเซ็นใช้การได้ แต่ไม่สามารถระบุลายนิ้วมือของกุญแจ?!"
  1591. #: methods/gpgv.cc:209
  1592. msgid "At least one invalid signature was encountered."
  1593. msgstr "พบลายเซ็นที่ใช้การไม่ได้อย่างน้อยหนึ่งรายการ"
  1594. #: methods/gpgv.cc:213
  1595. #, c-format
  1596. msgid "Could not execute '%s' to verify signature (is gnupg installed?)"
  1597. msgstr "ไม่สามารถเรียก '%s' เพื่อตรวจสอบลายเซ็น (ได้ติดตั้ง gnupg ไว้หรือไม่?)"
  1598. #: methods/gpgv.cc:218
  1599. msgid "Unknown error executing gpgv"
  1600. msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะเรียก gpgv"
  1601. #: methods/gpgv.cc:249
  1602. msgid "The following signatures were invalid:\n"
  1603. msgstr "ลายเซ็นต่อไปนี้ใช้การไม่ได้:\n"
  1604. #: methods/gpgv.cc:256
  1605. msgid ""
  1606. "The following signatures couldn't be verified because the public key is not "
  1607. "available:\n"
  1608. msgstr "ลายเซ็นต่อไปนี้ไม่สามารถตรวจสอบได้ เพราะไม่มีกุญแจสาธารณะ:\n"
  1609. #: methods/gzip.cc:64
  1610. #, c-format
  1611. msgid "Couldn't open pipe for %s"
  1612. msgstr "ไม่สามารถเปิดไปป์สำหรับ %s"
  1613. #: methods/gzip.cc:109
  1614. #, c-format
  1615. msgid "Read error from %s process"
  1616. msgstr "เกิดข้อผิดพลาดขณะอ่านจากโพรเซส %s"
  1617. #: methods/http.cc:376 methods/http.cc:377
  1618. msgid "Waiting for headers"
  1619. msgstr "รอหัวข้อมูล"
  1620. #: methods/http.cc:522 methods/http.cc:523
  1621. #, c-format
  1622. msgid "Got a single header line over %u chars"
  1623. msgstr "ได้รับบรรทัดข้อมูลส่วนหัวยาวเกิน %u อักขระ"
  1624. #: methods/http.cc:530 methods/http.cc:531
  1625. msgid "Bad header line"
  1626. msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด"
  1627. #: methods/http.cc:549 methods/http.cc:556 methods/http.cc:550
  1628. #: methods/http.cc:557
  1629. msgid "The HTTP server sent an invalid reply header"
  1630. msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง"
  1631. #: methods/http.cc:585 methods/http.cc:586
  1632. msgid "The HTTP server sent an invalid Content-Length header"
  1633. msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง"
  1634. #: methods/http.cc:600 methods/http.cc:601
  1635. msgid "The HTTP server sent an invalid Content-Range header"
  1636. msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง"
  1637. #: methods/http.cc:602 methods/http.cc:603
  1638. msgid "This HTTP server has broken range support"
  1639. msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด"
  1640. #: methods/http.cc:626 methods/http.cc:627
  1641. msgid "Unknown date format"
  1642. msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก"
  1643. #: methods/http.cc:773 methods/http.cc:774
  1644. msgid "Select failed"
  1645. msgstr "select ไม่สำเร็จ"
  1646. #: methods/http.cc:778 methods/http.cc:779
  1647. msgid "Connection timed out"
  1648. msgstr "หมดเวลารอเชื่อมต่อ"
  1649. #: methods/http.cc:801 methods/http.cc:802
  1650. msgid "Error writing to output file"
  1651. msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์"
  1652. #: methods/http.cc:832 methods/http.cc:833
  1653. msgid "Error writing to file"
  1654. msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม"
  1655. #: methods/http.cc:860 methods/http.cc:861
  1656. msgid "Error writing to the file"
  1657. msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม"
  1658. #: methods/http.cc:874 methods/http.cc:875
  1659. msgid "Error reading from server. Remote end closed connection"
  1660. msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ"
  1661. #: methods/http.cc:876 methods/http.cc:877
  1662. msgid "Error reading from server"
  1663. msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์"
  1664. #: methods/http.cc:1107 methods/http.cc:1104
  1665. msgid "Bad header data"
  1666. msgstr "ข้อมูลส่วนหัวผิดพลาด"
  1667. #: methods/http.cc:1124 methods/http.cc:1121 methods/http.cc:1176
  1668. msgid "Connection failed"
  1669. msgstr "เชื่อมต่อไม่สำเร็จ"
  1670. #: methods/http.cc:1215 methods/http.cc:1228
  1671. msgid "Internal error"
  1672. msgstr "ข้อผิดพลาดภายใน"
  1673. #: apt-pkg/contrib/mmap.cc:82 apt-pkg/contrib/mmap.cc:78
  1674. #: apt-pkg/contrib/mmap.cc:80
  1675. msgid "Can't mmap an empty file"
  1676. msgstr "ไม่สามารถ mmap แฟ้มเปล่า"
  1677. #: apt-pkg/contrib/mmap.cc:87 apt-pkg/contrib/mmap.cc:83
  1678. #: apt-pkg/contrib/mmap.cc:85
  1679. #, c-format
  1680. msgid "Couldn't make mmap of %lu bytes"
  1681. msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์"
  1682. #: apt-pkg/contrib/strutl.cc:981 apt-pkg/contrib/strutl.cc:978
  1683. #, c-format
  1684. msgid "Selection %s not found"
  1685. msgstr "ไม่พบรายการเลือก %s"
  1686. #: apt-pkg/contrib/configuration.cc:436 apt-pkg/contrib/configuration.cc:434
  1687. #, c-format
  1688. msgid "Unrecognized type abbreviation: '%c'"
  1689. msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'"
  1690. #: apt-pkg/contrib/configuration.cc:494 apt-pkg/contrib/configuration.cc:492
  1691. #, c-format
  1692. msgid "Opening configuration file %s"
  1693. msgstr "ขณะเปิดแฟ้มค่าตั้ง %s"
  1694. #: apt-pkg/contrib/configuration.cc:512
  1695. #, fuzzy, c-format
  1696. msgid "Line %d too long (max %d)"
  1697. msgstr "บรรทัด %d ยาวเกินไป (สูงสุด %u)"
  1698. #: apt-pkg/contrib/configuration.cc:608 apt-pkg/contrib/configuration.cc:606
  1699. #, c-format
  1700. msgid "Syntax error %s:%u: Block starts with no name."
  1701. msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ"
  1702. #: apt-pkg/contrib/configuration.cc:627 apt-pkg/contrib/configuration.cc:625
  1703. #, c-format
  1704. msgid "Syntax error %s:%u: Malformed tag"
  1705. msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ"
  1706. #: apt-pkg/contrib/configuration.cc:644 apt-pkg/contrib/configuration.cc:642
  1707. #, c-format
  1708. msgid "Syntax error %s:%u: Extra junk after value"
  1709. msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า"
  1710. #: apt-pkg/contrib/configuration.cc:684 apt-pkg/contrib/configuration.cc:682
  1711. #, c-format
  1712. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1713. msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น"
  1714. #: apt-pkg/contrib/configuration.cc:691 apt-pkg/contrib/configuration.cc:689
  1715. #, c-format
  1716. msgid "Syntax error %s:%u: Too many nested includes"
  1717. msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป"
  1718. #: apt-pkg/contrib/configuration.cc:695 apt-pkg/contrib/configuration.cc:700
  1719. #: apt-pkg/contrib/configuration.cc:693 apt-pkg/contrib/configuration.cc:698
  1720. #, c-format
  1721. msgid "Syntax error %s:%u: Included from here"
  1722. msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่"
  1723. #: apt-pkg/contrib/configuration.cc:704 apt-pkg/contrib/configuration.cc:702
  1724. #, c-format
  1725. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1726. msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ"
  1727. #: apt-pkg/contrib/configuration.cc:738 apt-pkg/contrib/configuration.cc:736
  1728. #, c-format
  1729. msgid "Syntax error %s:%u: Extra junk at end of file"
  1730. msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม"
  1731. #: apt-pkg/contrib/progress.cc:155 apt-pkg/contrib/progress.cc:152
  1732. #: apt-pkg/contrib/progress.cc:153
  1733. #, c-format
  1734. msgid "%c%s... Error!"
  1735. msgstr "%c%s... ผิดพลาด!"
  1736. #: apt-pkg/contrib/progress.cc:157 apt-pkg/contrib/progress.cc:154
  1737. #: apt-pkg/contrib/progress.cc:155
  1738. #, c-format
  1739. msgid "%c%s... Done"
  1740. msgstr "%c%s... เสร็จแล้ว"
  1741. #: apt-pkg/contrib/cmndline.cc:80 apt-pkg/contrib/cmndline.cc:77
  1742. #, c-format
  1743. msgid "Command line option '%c' [from %s] is not known."
  1744. msgstr "ไม่รู้จักตัวเลือกบรรทัดคำสั่ง '%c' [จาก %s]"
  1745. #: apt-pkg/contrib/cmndline.cc:106 apt-pkg/contrib/cmndline.cc:114
  1746. #: apt-pkg/contrib/cmndline.cc:122 apt-pkg/contrib/cmndline.cc:103
  1747. #: apt-pkg/contrib/cmndline.cc:111 apt-pkg/contrib/cmndline.cc:119
  1748. #, c-format
  1749. msgid "Command line option %s is not understood"
  1750. msgstr "ไม่เข้าใจตัวเลือกบรรทัดคำสั่ง %s"
  1751. #: apt-pkg/contrib/cmndline.cc:127 apt-pkg/contrib/cmndline.cc:124
  1752. #, c-format
  1753. msgid "Command line option %s is not boolean"
  1754. msgstr "ตัวเลือกบรรทัดคำสั่ง %s ไม่ได้เป็นค่าบูลีน"
  1755. #: apt-pkg/contrib/cmndline.cc:166 apt-pkg/contrib/cmndline.cc:187
  1756. #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184
  1757. #, c-format
  1758. msgid "Option %s requires an argument."
  1759. msgstr "ตัวเลือก %s ต้องมีอาร์กิวเมนต์"
  1760. #: apt-pkg/contrib/cmndline.cc:201 apt-pkg/contrib/cmndline.cc:207
  1761. #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204
  1762. #, c-format
  1763. msgid "Option %s: Configuration item specification must have an =<val>."
  1764. msgstr "ตัวเลือก %s: การกำหนดรายการค่าตั้งต้องมี =<val>"
  1765. #: apt-pkg/contrib/cmndline.cc:237 apt-pkg/contrib/cmndline.cc:234
  1766. #, c-format
  1767. msgid "Option %s requires an integer argument, not '%s'"
  1768. msgstr "ตัวเลือก %s ต้องการอาร์กิวเมนต์จำนวนเต็ม ไม่ใช่ '%s'"
  1769. #: apt-pkg/contrib/cmndline.cc:268 apt-pkg/contrib/cmndline.cc:265
  1770. #, c-format
  1771. msgid "Option '%s' is too long"
  1772. msgstr "ตัวเลือก '%s' ยาวเกินไป"
  1773. #: apt-pkg/contrib/cmndline.cc:301 apt-pkg/contrib/cmndline.cc:298
  1774. #, c-format
  1775. msgid "Sense %s is not understood, try true or false."
  1776. msgstr "ไม่เข้าใจค่าบูลีน %s กรุณาลองใช้ true หรือ false"
  1777. #: apt-pkg/contrib/cmndline.cc:351 apt-pkg/contrib/cmndline.cc:348
  1778. #, c-format
  1779. msgid "Invalid operation %s"
  1780. msgstr "ไม่รู้จักคำสั่ง %s"
  1781. #: apt-pkg/contrib/cdromutl.cc:55 apt-pkg/contrib/cdromutl.cc:52
  1782. #, c-format
  1783. msgid "Unable to stat the mount point %s"
  1784. msgstr "ไม่สามารถ stat จุดเมานท์ %s"
  1785. #: apt-pkg/contrib/cdromutl.cc:149 apt-pkg/acquire.cc:427 apt-pkg/clean.cc:44
  1786. #: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/acquire.cc:424 apt-pkg/clean.cc:40
  1787. #, c-format
  1788. msgid "Unable to change to %s"
  1789. msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s"
  1790. #: apt-pkg/contrib/cdromutl.cc:190 apt-pkg/contrib/cdromutl.cc:187
  1791. msgid "Failed to stat the cdrom"
  1792. msgstr "ไม่สามารถ stat ซีดีรอม"
  1793. #: apt-pkg/contrib/fileutl.cc:82 apt-pkg/contrib/fileutl.cc:80
  1794. #, c-format
  1795. msgid "Not using locking for read only lock file %s"
  1796. msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่อ่านได้อย่างเดียว"
  1797. #: apt-pkg/contrib/fileutl.cc:87 apt-pkg/contrib/fileutl.cc:85
  1798. #, c-format
  1799. msgid "Could not open lock file %s"
  1800. msgstr "ไม่สามารถเปิดแฟ้มล็อค %s"
  1801. #: apt-pkg/contrib/fileutl.cc:105 apt-pkg/contrib/fileutl.cc:103
  1802. #, c-format
  1803. msgid "Not using locking for nfs mounted lock file %s"
  1804. msgstr "จะไม่ใช้การล็อคกับแฟ้มล็อค %s ที่เมานท์ผ่าน nfs"
  1805. #: apt-pkg/contrib/fileutl.cc:109 apt-pkg/contrib/fileutl.cc:107
  1806. #, c-format
  1807. msgid "Could not get lock %s"
  1808. msgstr "ไม่สามารถล็อค %s"
  1809. #: apt-pkg/contrib/fileutl.cc:377 apt-pkg/contrib/fileutl.cc:375
  1810. #, c-format
  1811. msgid "Waited for %s but it wasn't there"
  1812. msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่"
  1813. #: apt-pkg/contrib/fileutl.cc:387 apt-pkg/contrib/fileutl.cc:385
  1814. #, c-format
  1815. msgid "Sub-process %s received a segmentation fault."
  1816. msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)"
  1817. #: apt-pkg/contrib/fileutl.cc:390 apt-pkg/contrib/fileutl.cc:388
  1818. #, c-format
  1819. msgid "Sub-process %s returned an error code (%u)"
  1820. msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)"
  1821. #: apt-pkg/contrib/fileutl.cc:392 apt-pkg/contrib/fileutl.cc:390
  1822. #, c-format
  1823. msgid "Sub-process %s exited unexpectedly"
  1824. msgstr "โพรเซสย่อย %s จบการทำงานกระทันหัน"
  1825. #: apt-pkg/contrib/fileutl.cc:436 apt-pkg/contrib/fileutl.cc:434
  1826. #, c-format
  1827. msgid "Could not open file %s"
  1828. msgstr "ไม่สามารถเปิดแฟ้ม %s"
  1829. #: apt-pkg/contrib/fileutl.cc:492 apt-pkg/contrib/fileutl.cc:490
  1830. #, c-format
  1831. msgid "read, still have %lu to read but none left"
  1832. msgstr "read: ยังเหลือ %lu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว"
  1833. #: apt-pkg/contrib/fileutl.cc:522 apt-pkg/contrib/fileutl.cc:520
  1834. #, c-format
  1835. msgid "write, still have %lu to write but couldn't"
  1836. msgstr "write: ยังเหลือ %lu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้"
  1837. #: apt-pkg/contrib/fileutl.cc:597 apt-pkg/contrib/fileutl.cc:595
  1838. msgid "Problem closing the file"
  1839. msgstr "เกิดปัญหาขณะปิดแฟ้ม"
  1840. #: apt-pkg/contrib/fileutl.cc:603 apt-pkg/contrib/fileutl.cc:601
  1841. msgid "Problem unlinking the file"
  1842. msgstr "เกิดปัญหาขณะลบแฟ้ม"
  1843. #: apt-pkg/contrib/fileutl.cc:614 apt-pkg/contrib/fileutl.cc:612
  1844. msgid "Problem syncing the file"
  1845. msgstr "เกิดปัญหาขณะ sync แฟ้ม"
  1846. #: apt-pkg/pkgcache.cc:132
  1847. msgid "Empty package cache"
  1848. msgstr "แคชของแพกเกจว่างเปล่า"
  1849. #: apt-pkg/pkgcache.cc:138
  1850. msgid "The package cache file is corrupted"
  1851. msgstr "แฟ้มแคชของแพกเกจเสียหาย"
  1852. #: apt-pkg/pkgcache.cc:143
  1853. msgid "The package cache file is an incompatible version"
  1854. msgstr "แฟ้มแคชของแพกเกจเป็นคนละรุ่นกัน"
  1855. #: apt-pkg/pkgcache.cc:148
  1856. #, c-format
  1857. msgid "This APT does not support the versioning system '%s'"
  1858. msgstr "APT รุ่นนี้ไม่รองรับระบบนับรุ่นแบบ '%s'"
  1859. #: apt-pkg/pkgcache.cc:153
  1860. msgid "The package cache was built for a different architecture"
  1861. msgstr "แคชของแพกเกจถูกสร้างมาสำหรับสถาปัตยกรรมอื่น"
  1862. #: apt-pkg/pkgcache.cc:224
  1863. msgid "Depends"
  1864. msgstr "ต้องใช้"
  1865. #: apt-pkg/pkgcache.cc:224
  1866. msgid "PreDepends"
  1867. msgstr "ต้องใช้ขณะติดตั้ง"
  1868. #: apt-pkg/pkgcache.cc:224
  1869. msgid "Suggests"
  1870. msgstr "แนะนำ"
  1871. #: apt-pkg/pkgcache.cc:225
  1872. msgid "Recommends"
  1873. msgstr "ควรใช้ร่วมกับ"
  1874. #: apt-pkg/pkgcache.cc:225
  1875. msgid "Conflicts"
  1876. msgstr "ขัดแย้งกับ"
  1877. #: apt-pkg/pkgcache.cc:225
  1878. msgid "Replaces"
  1879. msgstr "แทนที่"
  1880. #: apt-pkg/pkgcache.cc:226
  1881. msgid "Obsoletes"
  1882. msgstr "ใช้แทน"
  1883. #: apt-pkg/pkgcache.cc:226
  1884. msgid "Breaks"
  1885. msgstr "ทำให้พัง"
  1886. #: apt-pkg/pkgcache.cc:237
  1887. msgid "important"
  1888. msgstr "สำคัญ"
  1889. #: apt-pkg/pkgcache.cc:237
  1890. msgid "required"
  1891. msgstr "จำเป็น"
  1892. #: apt-pkg/pkgcache.cc:237
  1893. msgid "standard"
  1894. msgstr "มาตรฐาน"
  1895. #: apt-pkg/pkgcache.cc:238
  1896. msgid "optional"
  1897. msgstr "ตัวเลือก"
  1898. #: apt-pkg/pkgcache.cc:238
  1899. msgid "extra"
  1900. msgstr "ส่วนเสริม"
  1901. #: apt-pkg/depcache.cc:98 apt-pkg/depcache.cc:127 apt-pkg/depcache.cc:121
  1902. #: apt-pkg/depcache.cc:150
  1903. msgid "Building dependency tree"
  1904. msgstr "กำลังสร้างโครงสร้างลำดับความสัมพันธ์"
  1905. #: apt-pkg/depcache.cc:99 apt-pkg/depcache.cc:122
  1906. msgid "Candidate versions"
  1907. msgstr "รุ่นแพกเกจที่มี"
  1908. #: apt-pkg/depcache.cc:128 apt-pkg/depcache.cc:151
  1909. msgid "Dependency generation"
  1910. msgstr "สร้างลำดับความสัมพันธ์"
  1911. #: apt-pkg/depcache.cc:149 apt-pkg/depcache.cc:168 apt-pkg/depcache.cc:172
  1912. #: apt-pkg/depcache.cc:191 apt-pkg/depcache.cc:195
  1913. msgid "Reading state information"
  1914. msgstr "กำลังอ่านข้อมูลสถานะ"
  1915. #: apt-pkg/depcache.cc:196 apt-pkg/depcache.cc:219
  1916. #, c-format
  1917. msgid "Failed to open StateFile %s"
  1918. msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s"
  1919. #: apt-pkg/depcache.cc:202 apt-pkg/depcache.cc:225
  1920. #, c-format
  1921. msgid "Failed to write temporary StateFile %s"
  1922. msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s"
  1923. #: apt-pkg/tagfile.cc:106 apt-pkg/tagfile.cc:102
  1924. #, c-format
  1925. msgid "Unable to parse package file %s (1)"
  1926. msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)"
  1927. #: apt-pkg/tagfile.cc:193 apt-pkg/tagfile.cc:189
  1928. #, c-format
  1929. msgid "Unable to parse package file %s (2)"
  1930. msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (2)"
  1931. #: apt-pkg/sourcelist.cc:94 apt-pkg/sourcelist.cc:90
  1932. #, c-format
  1933. msgid "Malformed line %lu in source list %s (URI)"
  1934. msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (URI)"
  1935. #: apt-pkg/sourcelist.cc:96 apt-pkg/sourcelist.cc:92
  1936. #, c-format
  1937. msgid "Malformed line %lu in source list %s (dist)"
  1938. msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist)"
  1939. #: apt-pkg/sourcelist.cc:99 apt-pkg/sourcelist.cc:95
  1940. #, c-format
  1941. msgid "Malformed line %lu in source list %s (URI parse)"
  1942. msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง URI)"
  1943. #: apt-pkg/sourcelist.cc:105 apt-pkg/sourcelist.cc:101
  1944. #, c-format
  1945. msgid "Malformed line %lu in source list %s (absolute dist)"
  1946. msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (dist แบบสัมบูรณ์)"
  1947. #: apt-pkg/sourcelist.cc:112 apt-pkg/sourcelist.cc:108
  1948. #, c-format
  1949. msgid "Malformed line %lu in source list %s (dist parse)"
  1950. msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)"
  1951. #: apt-pkg/sourcelist.cc:203 apt-pkg/sourcelist.cc:199
  1952. #, c-format
  1953. msgid "Opening %s"
  1954. msgstr "กำลังเปิด %s"
  1955. #: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:450 apt-pkg/sourcelist.cc:216
  1956. #: apt-pkg/cdrom.cc:448
  1957. #, c-format
  1958. msgid "Line %u too long in source list %s."
  1959. msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป"
  1960. #: apt-pkg/sourcelist.cc:240 apt-pkg/sourcelist.cc:236
  1961. #, c-format
  1962. msgid "Malformed line %u in source list %s (type)"
  1963. msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)"
  1964. #: apt-pkg/sourcelist.cc:244 apt-pkg/sourcelist.cc:240
  1965. #, c-format
  1966. msgid "Type '%s' is not known on line %u in source list %s"
  1967. msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s"
  1968. #: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255
  1969. #: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251
  1970. #, c-format
  1971. msgid "Malformed line %u in source list %s (vendor id)"
  1972. msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (id ผู้ผลิต)"
  1973. #: apt-pkg/packagemanager.cc:403 apt-pkg/packagemanager.cc:399
  1974. #, c-format
  1975. msgid ""
  1976. "This installation run will require temporarily removing the essential "
  1977. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1978. "you really want to do it, activate the APT::Force-LoopBreak option."
  1979. msgstr ""
  1980. "การติดตั้งครั้งนี้จำเป็นต้องลบแพกเกจ %s ชั่วคราว "
  1981. "อันเนื่องมาจากความขัดแย้งหรือความขึ้นต่อกันระหว่างติดตั้งที่เป็นวงรอบ "
  1982. "ซึ่งแพกเกจดังกล่าวเป็นแพกเกจที่จำเป็นสำหรับระบบ การลบดังกล่าวมักเป็นอันตราย "
  1983. "แต่ถ้าคุณต้องการทำเช่นนั้นจริงๆ ก็ให้เปิดตัวเลือก APT::Force-LoopBreak"
  1984. #: apt-pkg/pkgrecords.cc:37 apt-pkg/pkgrecords.cc:32
  1985. #, c-format
  1986. msgid "Index file type '%s' is not supported"
  1987. msgstr "ไม่รองรับแฟ้มดัชนีชนิด '%s'"
  1988. #: apt-pkg/algorithms.cc:248 apt-pkg/algorithms.cc:247
  1989. #, c-format
  1990. msgid ""
  1991. "The package %s needs to be reinstalled, but I can't find an archive for it."
  1992. msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ"
  1993. #: apt-pkg/algorithms.cc:1104 apt-pkg/algorithms.cc:1103
  1994. #: apt-pkg/algorithms.cc:1105
  1995. msgid ""
  1996. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  1997. "held packages."
  1998. msgstr ""
  1999. "ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย "
  2000. "อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้"
  2001. #: apt-pkg/algorithms.cc:1106 apt-pkg/algorithms.cc:1105
  2002. #: apt-pkg/algorithms.cc:1107
  2003. msgid "Unable to correct problems, you have held broken packages."
  2004. msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้"
  2005. #: apt-pkg/acquire.cc:62 apt-pkg/acquire.cc:59
  2006. #, c-format
  2007. msgid "Lists directory %spartial is missing."
  2008. msgstr "ไม่มีไดเรกทอรีรายชื่อแพกเกจ %spartial"
  2009. #: apt-pkg/acquire.cc:66 apt-pkg/acquire.cc:63
  2010. #, c-format
  2011. msgid "Archive directory %spartial is missing."
  2012. msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial"
  2013. #. only show the ETA if it makes sense
  2014. #. two days
  2015. #: apt-pkg/acquire.cc:830 apt-pkg/acquire.cc:827
  2016. #, c-format
  2017. msgid "Retrieving file %li of %li (%s remaining)"
  2018. msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)"
  2019. #: apt-pkg/acquire.cc:832 apt-pkg/acquire.cc:829
  2020. #, c-format
  2021. msgid "Retrieving file %li of %li"
  2022. msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li"
  2023. #: apt-pkg/acquire-worker.cc:113 apt-pkg/acquire-worker.cc:110
  2024. #, c-format
  2025. msgid "The method driver %s could not be found."
  2026. msgstr "ไม่พบไดรเวอร์สำหรับวิธีการ %s"
  2027. #: apt-pkg/acquire-worker.cc:162 apt-pkg/acquire-worker.cc:159
  2028. #, c-format
  2029. msgid "Method %s did not start correctly"
  2030. msgstr "ไม่สามารถเรียกทำงานวิธีการ %s"
  2031. #: apt-pkg/acquire-worker.cc:384 apt-pkg/acquire-worker.cc:396
  2032. #: apt-pkg/acquire-worker.cc:398
  2033. #, c-format
  2034. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2035. msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter"
  2036. #: apt-pkg/init.cc:125 apt-pkg/init.cc:124
  2037. #, c-format
  2038. msgid "Packaging system '%s' is not supported"
  2039. msgstr "ไม่รองรับระบบแพกเกจ '%s'"
  2040. #: apt-pkg/init.cc:141 apt-pkg/init.cc:140
  2041. msgid "Unable to determine a suitable packaging system type"
  2042. msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้"
  2043. #: apt-pkg/clean.cc:61 apt-pkg/clean.cc:57
  2044. #, c-format
  2045. msgid "Unable to stat %s."
  2046. msgstr "ไม่สามารถ stat %s"
  2047. #: apt-pkg/srcrecords.cc:48 apt-pkg/srcrecords.cc:44
  2048. msgid "You must put some 'source' URIs in your sources.list"
  2049. msgstr "คุณต้องเพิ่ม URI ชนิด 'source' ใน sources.list ของคุณด้วย"
  2050. #: apt-pkg/cachefile.cc:73 apt-pkg/cachefile.cc:69
  2051. msgid "The package lists or status file could not be parsed or opened."
  2052. msgstr "ไม่สามารถแจงหรือเปิดรายชื่อแพกเกจหรือสถานะแพกเกจได้"
  2053. #: apt-pkg/cachefile.cc:77 apt-pkg/cachefile.cc:73
  2054. msgid "You may want to run apt-get update to correct these problems"
  2055. msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้"
  2056. #: apt-pkg/policy.cc:270 apt-pkg/policy.cc:267
  2057. msgid "Invalid record in the preferences file, no Package header"
  2058. msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง: ไม่มีข้อมูลส่วนหัว 'Package'"
  2059. #: apt-pkg/policy.cc:292 apt-pkg/policy.cc:289
  2060. #, c-format
  2061. msgid "Did not understand pin type %s"
  2062. msgstr "ไม่เข้าใจชนิดการตรึง %s"
  2063. #: apt-pkg/policy.cc:300 apt-pkg/policy.cc:297
  2064. msgid "No priority (or zero) specified for pin"
  2065. msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง"
  2066. #: apt-pkg/pkgcachegen.cc:76 apt-pkg/pkgcachegen.cc:72
  2067. msgid "Cache has an incompatible versioning system"
  2068. msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน"
  2069. #: apt-pkg/pkgcachegen.cc:119 apt-pkg/pkgcachegen.cc:115
  2070. #, c-format
  2071. msgid "Error occurred while processing %s (NewPackage)"
  2072. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewPackage)"
  2073. #: apt-pkg/pkgcachegen.cc:134 apt-pkg/pkgcachegen.cc:130
  2074. #, c-format
  2075. msgid "Error occurred while processing %s (UsePackage1)"
  2076. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage1)"
  2077. #: apt-pkg/pkgcachegen.cc:157
  2078. #, fuzzy, c-format
  2079. msgid "Error occured while processing %s (NewFileDesc1)"
  2080. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)"
  2081. #: apt-pkg/pkgcachegen.cc:182 apt-pkg/pkgcachegen.cc:178
  2082. #, c-format
  2083. msgid "Error occurred while processing %s (UsePackage2)"
  2084. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage2)"
  2085. #: apt-pkg/pkgcachegen.cc:186 apt-pkg/pkgcachegen.cc:182
  2086. #, c-format
  2087. msgid "Error occurred while processing %s (NewFileVer1)"
  2088. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileVer1)"
  2089. #: apt-pkg/pkgcachegen.cc:217 apt-pkg/pkgcachegen.cc:213
  2090. #, c-format
  2091. msgid "Error occurred while processing %s (NewVersion1)"
  2092. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion1)"
  2093. #: apt-pkg/pkgcachegen.cc:221 apt-pkg/pkgcachegen.cc:217
  2094. #, c-format
  2095. msgid "Error occurred while processing %s (UsePackage3)"
  2096. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage3)"
  2097. #: apt-pkg/pkgcachegen.cc:225 apt-pkg/pkgcachegen.cc:221
  2098. #, c-format
  2099. msgid "Error occurred while processing %s (NewVersion2)"
  2100. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion2)"
  2101. #: apt-pkg/pkgcachegen.cc:249
  2102. #, fuzzy, c-format
  2103. msgid "Error occured while processing %s (NewFileDesc2)"
  2104. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)"
  2105. #: apt-pkg/pkgcachegen.cc:255 apt-pkg/pkgcachegen.cc:251
  2106. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2107. msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว"
  2108. #: apt-pkg/pkgcachegen.cc:258 apt-pkg/pkgcachegen.cc:254
  2109. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2110. msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว"
  2111. #: apt-pkg/pkgcachegen.cc:261 apt-pkg/pkgcachegen.cc:257
  2112. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2113. msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว"
  2114. #: apt-pkg/pkgcachegen.cc:264 apt-pkg/pkgcachegen.cc:260
  2115. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2116. msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว"
  2117. #: apt-pkg/pkgcachegen.cc:292 apt-pkg/pkgcachegen.cc:288
  2118. #, c-format
  2119. msgid "Error occurred while processing %s (FindPkg)"
  2120. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (FindPkg)"
  2121. #: apt-pkg/pkgcachegen.cc:305 apt-pkg/pkgcachegen.cc:301
  2122. #, c-format
  2123. msgid "Error occurred while processing %s (CollectFileProvides)"
  2124. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (CollectFileProvides)"
  2125. #: apt-pkg/pkgcachegen.cc:311 apt-pkg/pkgcachegen.cc:307
  2126. #, c-format
  2127. msgid "Package %s %s was not found while processing file dependencies"
  2128. msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม"
  2129. #: apt-pkg/pkgcachegen.cc:682 apt-pkg/pkgcachegen.cc:678
  2130. #, c-format
  2131. msgid "Couldn't stat source package list %s"
  2132. msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s"
  2133. #: apt-pkg/pkgcachegen.cc:767 apt-pkg/pkgcachegen.cc:763
  2134. msgid "Collecting File Provides"
  2135. msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้"
  2136. #: apt-pkg/pkgcachegen.cc:894 apt-pkg/pkgcachegen.cc:901
  2137. #: apt-pkg/pkgcachegen.cc:890 apt-pkg/pkgcachegen.cc:897
  2138. msgid "IO Error saving source cache"
  2139. msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส"
  2140. #: apt-pkg/acquire-item.cc:127
  2141. #, c-format
  2142. msgid "rename failed, %s (%s -> %s)."
  2143. msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)"
  2144. #: apt-pkg/acquire-item.cc:405 apt-pkg/acquire-item.cc:662
  2145. #: apt-pkg/acquire-item.cc:1412 apt-pkg/acquire-item.cc:401
  2146. msgid "MD5Sum mismatch"
  2147. msgstr "MD5Sum ไม่ตรงกัน"
  2148. #: apt-pkg/acquire-item.cc:1107 apt-pkg/acquire-item.cc:1097
  2149. #: apt-pkg/acquire-item.cc:1100
  2150. msgid "There is no public key available for the following key IDs:\n"
  2151. msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n"
  2152. #: apt-pkg/acquire-item.cc:1220 apt-pkg/acquire-item.cc:1210
  2153. #: apt-pkg/acquire-item.cc:1213
  2154. #, c-format
  2155. msgid ""
  2156. "I wasn't able to locate a file for the %s package. This might mean you need "
  2157. "to manually fix this package. (due to missing arch)"
  2158. msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง (ไม่มี arch)"
  2159. #: apt-pkg/acquire-item.cc:1279 apt-pkg/acquire-item.cc:1269
  2160. #: apt-pkg/acquire-item.cc:1272
  2161. #, c-format
  2162. msgid ""
  2163. "I wasn't able to locate file for the %s package. This might mean you need to "
  2164. "manually fix this package."
  2165. msgstr "ไม่พบแฟ้มสำหรับแพกเกจ %s คุณอาจต้องแก้ปัญหาแพกเกจนี้เอง"
  2166. #: apt-pkg/acquire-item.cc:1315 apt-pkg/acquire-item.cc:1310
  2167. #: apt-pkg/acquire-item.cc:1313
  2168. #, c-format
  2169. msgid ""
  2170. "The package index files are corrupted. No Filename: field for package %s."
  2171. msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: สำหรับแพกเกจ %s"
  2172. #: apt-pkg/acquire-item.cc:1402 apt-pkg/acquire-item.cc:1397
  2173. #: apt-pkg/acquire-item.cc:1400
  2174. msgid "Size mismatch"
  2175. msgstr "ขนาดไม่ตรงกัน"
  2176. #: apt-pkg/vendorlist.cc:66
  2177. #, c-format
  2178. msgid "Vendor block %s contains no fingerprint"
  2179. msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ"
  2180. #: apt-pkg/cdrom.cc:531 apt-pkg/cdrom.cc:529
  2181. #, c-format
  2182. msgid ""
  2183. "Using CD-ROM mount point %s\n"
  2184. "Mounting CD-ROM\n"
  2185. msgstr ""
  2186. "กำลังใช้จุดเมานท์ซีดีรอม %s\n"
  2187. "กำลังเมานท์ซีดีรอม\n"
  2188. #: apt-pkg/cdrom.cc:540 apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:538
  2189. #: apt-pkg/cdrom.cc:620 apt-pkg/cdrom.cc:627
  2190. msgid "Identifying.. "
  2191. msgstr "กำลังตรวจสอบชื่อแผ่น..."
  2192. #: apt-pkg/cdrom.cc:565 apt-pkg/cdrom.cc:563
  2193. #, fuzzy, c-format
  2194. msgid "Stored label: %s \n"
  2195. msgstr "ชื่อที่เก็บไว้: %s\n"
  2196. #: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:583 apt-pkg/cdrom.cc:590
  2197. #, c-format
  2198. msgid "Using CD-ROM mount point %s\n"
  2199. msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n"
  2200. #: apt-pkg/cdrom.cc:603 apt-pkg/cdrom.cc:601 apt-pkg/cdrom.cc:608
  2201. msgid "Unmounting CD-ROM\n"
  2202. msgstr "กำลังเลิกเมานท์ซีดีรอม\n"
  2203. #: apt-pkg/cdrom.cc:607 apt-pkg/cdrom.cc:605 apt-pkg/cdrom.cc:612
  2204. msgid "Waiting for disc...\n"
  2205. msgstr "กำลังรอแผ่น...\n"
  2206. #. Mount the new CDROM
  2207. #: apt-pkg/cdrom.cc:615 apt-pkg/cdrom.cc:613 apt-pkg/cdrom.cc:620
  2208. msgid "Mounting CD-ROM...\n"
  2209. msgstr "กำลังเมานท์ซีดีรอม...\n"
  2210. #: apt-pkg/cdrom.cc:633 apt-pkg/cdrom.cc:631 apt-pkg/cdrom.cc:638
  2211. msgid "Scanning disc for index files..\n"
  2212. msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี...\n"
  2213. #: apt-pkg/cdrom.cc:673 apt-pkg/cdrom.cc:671
  2214. #, fuzzy, c-format
  2215. msgid ""
  2216. "Found %i package indexes, %i source indexes, %i translation indexes and %i "
  2217. "signatures\n"
  2218. msgstr ""
  2219. "พบดัชนีแพกเกจ %i รายการ, ดัชนีซอร์ส %i รายการ, ดัชนีคำแปล %i รายการ และลายเซ็น %i "
  2220. "รายการ\n"
  2221. #: apt-pkg/cdrom.cc:710 apt-pkg/cdrom.cc:708 apt-pkg/cdrom.cc:715
  2222. #, c-format
  2223. msgid "Found label '%s'\n"
  2224. msgstr "พบชื่อแผ่น '%s'\n"
  2225. #: apt-pkg/cdrom.cc:739 apt-pkg/cdrom.cc:737 apt-pkg/cdrom.cc:744
  2226. msgid "That is not a valid name, try again.\n"
  2227. msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n"
  2228. #: apt-pkg/cdrom.cc:755 apt-pkg/cdrom.cc:753 apt-pkg/cdrom.cc:760
  2229. #, c-format
  2230. msgid ""
  2231. "This disc is called: \n"
  2232. "'%s'\n"
  2233. msgstr ""
  2234. "แผ่นนี้เรียกชื่อว่า:\n"
  2235. "'%s'\n"
  2236. #: apt-pkg/cdrom.cc:759 apt-pkg/cdrom.cc:757 apt-pkg/cdrom.cc:764
  2237. msgid "Copying package lists..."
  2238. msgstr "กำลังคัดลอกรายชื่อแพกเกจ..."
  2239. #: apt-pkg/cdrom.cc:785 apt-pkg/cdrom.cc:783 apt-pkg/cdrom.cc:790
  2240. msgid "Writing new source list\n"
  2241. msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่...\n"
  2242. #: apt-pkg/cdrom.cc:794 apt-pkg/cdrom.cc:792 apt-pkg/cdrom.cc:799
  2243. msgid "Source list entries for this disc are:\n"
  2244. msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n"
  2245. #: apt-pkg/cdrom.cc:836 apt-pkg/cdrom.cc:834 apt-pkg/cdrom.cc:570
  2246. #: apt-pkg/cdrom.cc:841
  2247. msgid "Unmounting CD-ROM...\n"
  2248. msgstr "กำลังเลิกเมานท์ซีดีรอม...\n"
  2249. #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:830 apt-pkg/indexcopy.cc:823
  2250. #, c-format
  2251. msgid "Wrote %i records.\n"
  2252. msgstr "เขียนแล้ว %i ระเบียน\n"
  2253. #: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:832 apt-pkg/indexcopy.cc:825
  2254. #, c-format
  2255. msgid "Wrote %i records with %i missing files.\n"
  2256. msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n"
  2257. #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:835 apt-pkg/indexcopy.cc:828
  2258. #, c-format
  2259. msgid "Wrote %i records with %i mismatched files\n"
  2260. msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n"
  2261. #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:838 apt-pkg/indexcopy.cc:831
  2262. #, c-format
  2263. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2264. msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n"
  2265. #: apt-pkg/deb/dpkgpm.cc:358 apt-pkg/deb/dpkgpm.cc:522
  2266. #: apt-pkg/deb/dpkgpm.cc:596
  2267. #, c-format
  2268. msgid "Preparing %s"
  2269. msgstr "กำลังเตรียม %s"
  2270. #: apt-pkg/deb/dpkgpm.cc:359 apt-pkg/deb/dpkgpm.cc:523
  2271. #: apt-pkg/deb/dpkgpm.cc:597
  2272. #, c-format
  2273. msgid "Unpacking %s"
  2274. msgstr "กำลังแตกแพกเกจ %s"
  2275. #: apt-pkg/deb/dpkgpm.cc:364 apt-pkg/deb/dpkgpm.cc:528
  2276. #: apt-pkg/deb/dpkgpm.cc:602
  2277. #, c-format
  2278. msgid "Preparing to configure %s"
  2279. msgstr "กำลังเตรียมตั้งค่า %s"
  2280. #: apt-pkg/deb/dpkgpm.cc:365 apt-pkg/deb/dpkgpm.cc:529
  2281. #: apt-pkg/deb/dpkgpm.cc:603
  2282. #, c-format
  2283. msgid "Configuring %s"
  2284. msgstr "กำลังตั้งค่า %s"
  2285. #: apt-pkg/deb/dpkgpm.cc:366 apt-pkg/deb/dpkgpm.cc:530
  2286. #: apt-pkg/deb/dpkgpm.cc:608
  2287. #, c-format
  2288. msgid "Installed %s"
  2289. msgstr "ติดตั้ง %s แล้ว"
  2290. #: apt-pkg/deb/dpkgpm.cc:371 apt-pkg/deb/dpkgpm.cc:535
  2291. #: apt-pkg/deb/dpkgpm.cc:613 apt-pkg/deb/dpkgpm.cc:615
  2292. #: apt-pkg/deb/dpkgpm.cc:616
  2293. #, c-format
  2294. msgid "Preparing for removal of %s"
  2295. msgstr "กำลังเตรียมถอดถอน %s"
  2296. #: apt-pkg/deb/dpkgpm.cc:372 apt-pkg/deb/dpkgpm.cc:536
  2297. #: apt-pkg/deb/dpkgpm.cc:618
  2298. #, c-format
  2299. msgid "Removing %s"
  2300. msgstr "กำลังถอดถอน %s"
  2301. #: apt-pkg/deb/dpkgpm.cc:373 apt-pkg/deb/dpkgpm.cc:537
  2302. #: apt-pkg/deb/dpkgpm.cc:619
  2303. #, c-format
  2304. msgid "Removed %s"
  2305. msgstr "ถอดถอน %s แล้ว"
  2306. #: apt-pkg/deb/dpkgpm.cc:378 apt-pkg/deb/dpkgpm.cc:542
  2307. #: apt-pkg/deb/dpkgpm.cc:624
  2308. #, c-format
  2309. msgid "Preparing to completely remove %s"
  2310. msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์"
  2311. #: apt-pkg/deb/dpkgpm.cc:379 apt-pkg/deb/dpkgpm.cc:543
  2312. #: apt-pkg/deb/dpkgpm.cc:625
  2313. #, c-format
  2314. msgid "Completely removed %s"
  2315. msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว"
  2316. #: methods/rsh.cc:330
  2317. msgid "Connection closed prematurely"
  2318. msgstr "การเชื่อมต่อถูกปิดก่อนเวลาอันควร"
  2319. #: methods/rred.cc:219
  2320. msgid "Could not patch file"
  2321. msgstr "ไม่สามารถแพตช์แฟ้ม"
  2322. #: apt-pkg/contrib/configuration.cc:510
  2323. #, c-format
  2324. msgid "Line %d too long (max %u)"
  2325. msgstr "บรรทัด %d ยาวเกินไป (สูงสุด %u)"
  2326. #: apt-pkg/pkgcachegen.cc:153
  2327. #, c-format
  2328. msgid "Error occurred while processing %s (NewFileDesc1)"
  2329. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)"
  2330. #: apt-pkg/pkgcachegen.cc:245
  2331. #, c-format
  2332. msgid "Error occurred while processing %s (NewFileDesc2)"
  2333. msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)"
  2334. #: apt-pkg/acquire-item.cc:647 apt-pkg/acquire-item.cc:1405
  2335. #: apt-pkg/acquire-item.cc:1408
  2336. msgid "Hash Sum mismatch"
  2337. msgstr "Hash Sum ไม่ตรงกัน"
  2338. #: apt-pkg/deb/dpkgpm.cc:566 apt-pkg/deb/dpkgpm.cc:513
  2339. #, c-format
  2340. msgid "Directory '%s' missing"
  2341. msgstr "ไม่มีไดเรกทอรี '%s'"
  2342. #: apt-pkg/deb/dpkgpm.cc:709
  2343. #, c-format
  2344. msgid "openpty failed\n"
  2345. msgstr "openpty ล้มเหลว\n"
  2346. #: apt-pkg/cdrom.cc:563
  2347. #, c-format
  2348. msgid "Stored label: %s\n"
  2349. msgstr "ชื่อที่เก็บไว้: %s\n"
  2350. #: apt-pkg/cdrom.cc:678
  2351. #, fuzzy, c-format
  2352. msgid ""
  2353. "Found %u package indexes, %u source indexes, %u translation indexes and %u "
  2354. "signatures\n"
  2355. msgstr ""
  2356. "พบดัชนีแพกเกจ %i รายการ, ดัชนีซอร์ส %i รายการ, ดัชนีคำแปล %i รายการ และลายเซ็น %i "
  2357. "รายการ\n"
  2358. #: apt-pkg/deb/dpkgpm.cc:605 apt-pkg/deb/dpkgpm.cc:606
  2359. #, fuzzy, c-format
  2360. msgid "Processing triggers for %s"
  2361. msgstr "เกิดข้อผิดพลาดขณะประมวลผลไดเรกทอรี %s"
  2362. #: apt-pkg/deb/dpkgpm.cc:775
  2363. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2364. msgstr ""