km.po 164 KB

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