th.po 163 KB

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