th.po 157 KB

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