th.po 156 KB

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