th.po 136 KB

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