km.po 137 KB

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