th.po 162 KB

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