km.po 167 KB

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