th.po 140 KB

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