th.po 122 KB

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