th.po 126 KB

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