km.po 133 KB

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