th.po 168 KB

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