th.po 160 KB

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