th.po 169 KB

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