km.po 141 KB

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