th.po 169 KB

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