km.po 134 KB

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