cy.po 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621
  1. # APT yn Gymraeg: APT in Welsh.
  2. # This file is under the same licence as APT itself.
  3. # Dafydd Harries <daf@muse.19inch.net>, 2004.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: APT\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2011-07-05 13:23+0100\n"
  10. "PO-Revision-Date: 2005-06-06 13:46+0100\n"
  11. "Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n"
  12. "Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
  13. "Language: cy\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #: cmdline/apt-cache.cc:154
  18. #, c-format
  19. msgid "Package %s version %s has an unmet dep:\n"
  20. msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n"
  21. #: cmdline/apt-cache.cc:282
  22. #, fuzzy
  23. msgid "Total package names: "
  24. msgstr "Cyfanswm Enwau Pecynnau : "
  25. #: cmdline/apt-cache.cc:284
  26. #, fuzzy
  27. msgid "Total package structures: "
  28. msgstr "Cyfanswm Enwau Pecynnau : "
  29. #: cmdline/apt-cache.cc:324
  30. #, fuzzy
  31. msgid " Normal packages: "
  32. msgstr " Pecynnau Normal: "
  33. #: cmdline/apt-cache.cc:325
  34. #, fuzzy
  35. msgid " Pure virtual packages: "
  36. msgstr " Pecynnau Cwbl Rhithwir: "
  37. #: cmdline/apt-cache.cc:326
  38. #, fuzzy
  39. msgid " Single virtual packages: "
  40. msgstr " Pecynnau Rhithwir Sengl: "
  41. #: cmdline/apt-cache.cc:327
  42. #, fuzzy
  43. msgid " Mixed virtual packages: "
  44. msgstr " Pecynnau Rhithwir Cymysg: "
  45. #: cmdline/apt-cache.cc:328
  46. msgid " Missing: "
  47. msgstr " Ar Goll: "
  48. #: cmdline/apt-cache.cc:330
  49. #, fuzzy
  50. msgid "Total distinct versions: "
  51. msgstr "Cyfanswm Fersiynau Gwahanol: "
  52. #: cmdline/apt-cache.cc:332
  53. #, fuzzy
  54. msgid "Total distinct descriptions: "
  55. msgstr "Cyfanswm Fersiynau Gwahanol: "
  56. #: cmdline/apt-cache.cc:334
  57. #, fuzzy
  58. msgid "Total dependencies: "
  59. msgstr "Cyfanswm Dibyniaethau: "
  60. #: cmdline/apt-cache.cc:337
  61. #, fuzzy
  62. msgid "Total ver/file relations: "
  63. msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
  64. #: cmdline/apt-cache.cc:339
  65. #, fuzzy
  66. msgid "Total Desc/File relations: "
  67. msgstr "Cyfanswm perthyniadau fersiwn/ffeil: "
  68. #: cmdline/apt-cache.cc:341
  69. #, fuzzy
  70. msgid "Total Provides mappings: "
  71. msgstr "Cyfanswm Mapiau Darpariath: "
  72. #: cmdline/apt-cache.cc:353
  73. #, fuzzy
  74. msgid "Total globbed strings: "
  75. msgstr "Cyfanswm Llinynau Glob: "
  76. #: cmdline/apt-cache.cc:367
  77. #, fuzzy
  78. msgid "Total dependency version space: "
  79. msgstr "Cyfanswm gofod Fersiwn Dibyniaeth: "
  80. #: cmdline/apt-cache.cc:372
  81. #, fuzzy
  82. msgid "Total slack space: "
  83. msgstr "Cyfanswm gofod Slac: "
  84. #: cmdline/apt-cache.cc:380
  85. #, fuzzy
  86. msgid "Total space accounted for: "
  87. msgstr "Cyfanswm Gofod Cyfrifwyd: "
  88. #: cmdline/apt-cache.cc:511 cmdline/apt-cache.cc:1139
  89. #, c-format
  90. msgid "Package file %s is out of sync."
  91. msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig."
  92. #: cmdline/apt-cache.cc:589 cmdline/apt-cache.cc:1374
  93. #: cmdline/apt-cache.cc:1376 cmdline/apt-cache.cc:1453 cmdline/apt-mark.cc:37
  94. #: cmdline/apt-mark.cc:84 cmdline/apt-mark.cc:160
  95. msgid "No packages found"
  96. msgstr "Canfuwyd dim pecyn"
  97. #: cmdline/apt-cache.cc:1218
  98. #, fuzzy
  99. msgid "You must give at least one search pattern"
  100. msgstr "Rhaid i chi ddarparu un patrwm yn union"
  101. #: cmdline/apt-cache.cc:1353
  102. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  103. msgstr ""
  104. #: cmdline/apt-cache.cc:1448 apt-pkg/cacheset.cc:440
  105. #, c-format
  106. msgid "Unable to locate package %s"
  107. msgstr "Ni ellir lleoli'r pecyn %s"
  108. #: cmdline/apt-cache.cc:1478
  109. #, fuzzy
  110. msgid "Package files:"
  111. msgstr "Ffeiliau Pecynnau:"
  112. #: cmdline/apt-cache.cc:1485 cmdline/apt-cache.cc:1576
  113. msgid "Cache is out of sync, can't x-ref a package file"
  114. msgstr "Nid yw'r storfa yn gydamserol, ni ellir croesgyfeirio ffeil pecym"
  115. #. Show any packages have explicit pins
  116. #: cmdline/apt-cache.cc:1499
  117. #, fuzzy
  118. msgid "Pinned packages:"
  119. msgstr "Pecynnau wedi eu Pinio:"
  120. #: cmdline/apt-cache.cc:1511 cmdline/apt-cache.cc:1556
  121. msgid "(not found)"
  122. msgstr "(heb ganfod)"
  123. #: cmdline/apt-cache.cc:1519
  124. msgid " Installed: "
  125. msgstr " Wedi Sefydlu: "
  126. #: cmdline/apt-cache.cc:1520
  127. msgid " Candidate: "
  128. msgstr " Ymgeisydd: "
  129. #: cmdline/apt-cache.cc:1538 cmdline/apt-cache.cc:1546
  130. msgid "(none)"
  131. msgstr "(dim)"
  132. #: cmdline/apt-cache.cc:1553
  133. #, fuzzy
  134. msgid " Package pin: "
  135. msgstr " Pin Pecyn: "
  136. #. Show the priority tables
  137. #: cmdline/apt-cache.cc:1562
  138. #, fuzzy
  139. msgid " Version table:"
  140. msgstr " Tabl Fersiynnau:"
  141. #: cmdline/apt-cache.cc:1675 cmdline/apt-cdrom.cc:197 cmdline/apt-config.cc:73
  142. #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:589
  143. #: cmdline/apt-get.cc:3122 cmdline/apt-mark.cc:264 cmdline/apt-sortpkgs.cc:144
  144. #, fuzzy, c-format
  145. msgid "%s %s for %s compiled on %s %s\n"
  146. msgstr "%s %s ar gyfer %s %s wedi ei grynhow ar %s %s\n"
  147. #: cmdline/apt-cache.cc:1682
  148. #, fuzzy
  149. msgid ""
  150. "Usage: apt-cache [options] command\n"
  151. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  152. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  153. "\n"
  154. "apt-cache is a low-level tool used to query information\n"
  155. "from APT's binary cache files\n"
  156. "\n"
  157. "Commands:\n"
  158. " gencaches - Build both the package and source cache\n"
  159. " showpkg - Show some general information for a single package\n"
  160. " showsrc - Show source records\n"
  161. " stats - Show some basic statistics\n"
  162. " dump - Show the entire file in a terse form\n"
  163. " dumpavail - Print an available file to stdout\n"
  164. " unmet - Show unmet dependencies\n"
  165. " search - Search the package list for a regex pattern\n"
  166. " show - Show a readable record for the package\n"
  167. " depends - Show raw dependency information for a package\n"
  168. " rdepends - Show reverse dependency information for a package\n"
  169. " pkgnames - List the names of all packages in the system\n"
  170. " dotty - Generate package graphs for GraphViz\n"
  171. " xvcg - Generate package graphs for xvcg\n"
  172. " policy - Show policy settings\n"
  173. "\n"
  174. "Options:\n"
  175. " -h This help text.\n"
  176. " -p=? The package cache.\n"
  177. " -s=? The source cache.\n"
  178. " -q Disable progress indicator.\n"
  179. " -i Show only important deps for the unmet command.\n"
  180. " -c=? Read this configuration file\n"
  181. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  182. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  183. msgstr ""
  184. "Defnydd: apt-cache [opsiynnau] gorchymyn\n"
  185. " apt-cache [opsiynnau] add ffeil1 [ffeil2 ...]\n"
  186. " apt-cache [opsiynnau] showpkg pecyn1 [pecyn2 ...]\n"
  187. " apt-cache [opsiynnau] showsrc pecyn1 [pecyn2 ...]\n"
  188. "\n"
  189. "Mae apt-cache yn erfyn lefel isel a ddefnyddir i ymdrin a ffeiliau storfa "
  190. "deuol APT, ac ymholi gwybodaeth ohonynt\n"
  191. "\n"
  192. "Gorchmynion:\n"
  193. " add - Ychwanegu ffeil pecyn i'r storfa ffynhonell\n"
  194. " gencaches - Adeiladu'r storfeydd pecyn a ffynhonell\n"
  195. " showpkg - Dangos gwybodaeth cyffredinol am becyn sengl\n"
  196. " showsrc - Dangos cofnodion ffynhonell\n"
  197. " stats - Dangos rhyw ystadegau sylfaenol\n"
  198. " dump - Dangos y ffeil cyfan mewn ffurf syml\n"
  199. " dumpavail - Dangos ffeil argaeledd\n"
  200. " unmet - Dangos dibyniaethau heb eu darparu\n"
  201. " search - Search the package list for a regex pattern\n"
  202. " show - Show a readable record for the package\n"
  203. " depends - Show raw dependency information for a package\n"
  204. " rdepends - Show reverse dependency information for a package\n"
  205. " pkgnames - List the names of all packages\n"
  206. " dotty - Generate package graphs for GraphViz\n"
  207. " xvcg - Generate package graphs for xvcg\n"
  208. " policy - Show policy settings\n"
  209. "\n"
  210. "Options:\n"
  211. " -h This help text.\n"
  212. " -p=? The package cache.\n"
  213. " -s=? The source cache.\n"
  214. " -q Disable progress indicator.\n"
  215. " -i Show only important deps for the unmet command.\n"
  216. " -c=? Read this configuration file\n"
  217. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  218. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  219. #: cmdline/apt-cdrom.cc:77
  220. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  221. msgstr ""
  222. #: cmdline/apt-cdrom.cc:92
  223. #, fuzzy
  224. msgid "Please insert a Disc in the drive and press enter"
  225. msgstr ""
  226. "Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
  227. " '%s'\n"
  228. "yn y gyrriant '%s' a gwasgwch Enter\n"
  229. #: cmdline/apt-cdrom.cc:127
  230. #, fuzzy, c-format
  231. msgid "Failed to mount '%s' to '%s'"
  232. msgstr "Methwyd ailenwi %s at %s"
  233. #: cmdline/apt-cdrom.cc:162
  234. msgid "Repeat this process for the rest of the CDs in your set."
  235. msgstr ""
  236. #: cmdline/apt-config.cc:44
  237. msgid "Arguments not in pairs"
  238. msgstr "Nid yw ymresymiadau mewn parau"
  239. #: cmdline/apt-config.cc:79
  240. #, fuzzy
  241. msgid ""
  242. "Usage: apt-config [options] command\n"
  243. "\n"
  244. "apt-config is a simple tool to read the APT config file\n"
  245. "\n"
  246. "Commands:\n"
  247. " shell - Shell mode\n"
  248. " dump - Show the configuration\n"
  249. "\n"
  250. "Options:\n"
  251. " -h This help text.\n"
  252. " -c=? Read this configuration file\n"
  253. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  254. msgstr ""
  255. "Defnydd: apt-config [opsiynnau] gorchymyn\n"
  256. "\n"
  257. "Mae apt-config yn erfyn syml sy'n darllen ffeil cyfluniad APT\n"
  258. "\n"
  259. "Gorchmynion:\n"
  260. " shell - Modd plisgyn\n"
  261. " dump - Dangod y cyfluniad\n"
  262. "\n"
  263. "Opsiynnau:\n"
  264. " -h Y testun cymorth hwn\n"
  265. " -c=? Darllen y ffeil cyfluniad\n"
  266. " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
  267. #: cmdline/apt-extracttemplates.cc:98
  268. #, c-format
  269. msgid "%s not a valid DEB package."
  270. msgstr "Nid yw %s yn becyn DEB dilys."
  271. # FIXME: "debian"
  272. #: cmdline/apt-extracttemplates.cc:232
  273. #, fuzzy
  274. msgid ""
  275. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  276. "\n"
  277. "apt-extracttemplates is a tool to extract config and template info\n"
  278. "from debian packages\n"
  279. "\n"
  280. "Options:\n"
  281. " -h This help text\n"
  282. " -t Set the temp dir\n"
  283. " -c=? Read this configuration file\n"
  284. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  285. msgstr ""
  286. "Defnydd: apt-extracttemplates ffeil1 [ffeil2 ...]\n"
  287. "\n"
  288. "Mae apt-extracttemplates yn erfyn ar gyfer echdynnu manylion cyfluniad a\n"
  289. "templed o becynnau Debian.\n"
  290. "\n"
  291. "Opsiynnau:\n"
  292. " -h Dangos y testun cymorth hwn\n"
  293. " -t Gosod y cyfeiriadur dros dro\n"
  294. " -c=? Darllen y ffeil cyfluniad hwn\n"
  295. " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n"
  296. #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:1149
  297. #, c-format
  298. msgid "Unable to write to %s"
  299. msgstr "Ni ellir ysgrifennu i %s"
  300. #: cmdline/apt-extracttemplates.cc:309
  301. msgid "Cannot get debconf version. Is debconf installed?"
  302. msgstr "Ni ellir cael fersiwn debconf. Ydi debconf wedi ei sefydlu?"
  303. #: ftparchive/apt-ftparchive.cc:170 ftparchive/apt-ftparchive.cc:347
  304. msgid "Package extension list is too long"
  305. msgstr "Mae'r rhestr estyniad pecyn yn rhy hir."
  306. #: ftparchive/apt-ftparchive.cc:172 ftparchive/apt-ftparchive.cc:189
  307. #: ftparchive/apt-ftparchive.cc:212 ftparchive/apt-ftparchive.cc:262
  308. #: ftparchive/apt-ftparchive.cc:276 ftparchive/apt-ftparchive.cc:298
  309. #, fuzzy, c-format
  310. msgid "Error processing directory %s"
  311. msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
  312. #: ftparchive/apt-ftparchive.cc:260
  313. msgid "Source extension list is too long"
  314. msgstr "Mae'r rhestr estyniad ffynhonell yn rhy hir"
  315. #: ftparchive/apt-ftparchive.cc:377
  316. msgid "Error writing header to contents file"
  317. msgstr "Gwall wrth ysgrifennu pennawd i'r ffeil cynnwys"
  318. #: ftparchive/apt-ftparchive.cc:407
  319. #, fuzzy, c-format
  320. msgid "Error processing contents %s"
  321. msgstr "Gwall wrth Brosesu Cynnwys %s"
  322. # FIXME: full stops
  323. #: ftparchive/apt-ftparchive.cc:595
  324. #, fuzzy
  325. msgid ""
  326. "Usage: apt-ftparchive [options] command\n"
  327. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  328. " sources srcpath [overridefile [pathprefix]]\n"
  329. " contents path\n"
  330. " release path\n"
  331. " generate config [groups]\n"
  332. " clean config\n"
  333. "\n"
  334. "apt-ftparchive generates index files for Debian archives. It supports\n"
  335. "many styles of generation from fully automated to functional replacements\n"
  336. "for dpkg-scanpackages and dpkg-scansources\n"
  337. "\n"
  338. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  339. "Package file contains the contents of all the control fields from\n"
  340. "each package as well as the MD5 hash and filesize. An override file\n"
  341. "is supported to force the value of Priority and Section.\n"
  342. "\n"
  343. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  344. "The --source-override option can be used to specify a src override file\n"
  345. "\n"
  346. "The 'packages' and 'sources' command should be run in the root of the\n"
  347. "tree. BinaryPath should point to the base of the recursive search and \n"
  348. "override file should contain the override flags. Pathprefix is\n"
  349. "appended to the filename fields if present. Example usage from the \n"
  350. "Debian archive:\n"
  351. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  352. " dists/potato/main/binary-i386/Packages\n"
  353. "\n"
  354. "Options:\n"
  355. " -h This help text\n"
  356. " --md5 Control MD5 generation\n"
  357. " -s=? Source override file\n"
  358. " -q Quiet\n"
  359. " -d=? Select the optional caching database\n"
  360. " --no-delink Enable delinking debug mode\n"
  361. " --contents Control contents file generation\n"
  362. " -c=? Read this configuration file\n"
  363. " -o=? Set an arbitrary configuration option"
  364. msgstr ""
  365. "Defnydd: apt-ftparchive [opsiynnau] gorchymyn\n"
  366. "Gorchmynion: packages llwybrdeuol [ffeilgwrthwneud [cynddodiadllwybr]]\n"
  367. " sources llwybrffynhonell [ffeilgwrthwneud [cynddodiadllwybr]]\n"
  368. " contents llwybr\n"
  369. " release llwybr\n"
  370. " generate cyfluniad [grŵpiau]\n"
  371. " clean cyfluniad\n"
  372. "\n"
  373. "Mae apt-ftparchive yn cynhyrchu ffeiliau mynegai ar gyfer archifau Debian.\n"
  374. "Mae'n cynnal nifer o arddulliau o gynhyrchiad, yn cynnwys modd wedi\n"
  375. "awtomeiddio'n llwyr a modd yn debyg i dpkg-scanpackages a dpkg-scansources.\n"
  376. "\n"
  377. "Gall apt-ftparchive gynhyrchu ffeil Package o goeden o ffeiliau .deb.\n"
  378. "Mae'r ffeil Package yn cynnwys yr holl feysydd rheoli o bob pecyn yn\n"
  379. "ogystal a'r stwnsh MD5 a maint y ffeil. Cynhelir ffeil gwrthwneud er mwyn\n"
  380. "gorfodi'r gwerthoedd Priority a Section.\n"
  381. "\n"
  382. "Yn debyg, gall apt-ftparchive gynhyrchu ffeil Sources o goeden o ffeiliau\n"
  383. ".dsc. Gellir defnyddio'r opsiwn --source-override er mwyn penodi ffeil\n"
  384. "gwrthwneud ffynhonell.\n"
  385. "\n"
  386. "Dylid rhedeg y gorchmynion 'packages' a 'sources' yng ngwraidd y goeden.\n"
  387. "Fe ddylai llwybrdeuol bwyntio at sail y chwilio ailadroddus a fe ddylai\n"
  388. "ffeilgwrthwneud gynnwys y gosodiadau gwrthwneud. Ychwanegir\n"
  389. "cynddodiadllwybr i'r meysydd enw ffeil os ydynt yn bresennol. Esiampl\n"
  390. "defnydd o'r archif Debian:\n"
  391. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  392. " dists/potato/main/binary-i386/Packages\n"
  393. "\n"
  394. "Opsiynnau:\n"
  395. " -h Y testun cymorth hwn\n"
  396. " --md5 Rheoli cynhyrchiad stwnch MD5\n"
  397. " -s=? Ffeil gwrthwneud ffynhonell\n"
  398. " -q Tawel\n"
  399. " -d=? Dewis cronda data storfa opsiynnol\n"
  400. " --no-delink Galluogi'r modd datgysylltu datnamu\n"
  401. " --contents Rheoli cynhyrchiad ffeil cynnwys\n"
  402. " -c=? Darllen y ffeil cyfluniad hwn\n"
  403. " -o=? Gosod opsiwn cyfluniad mympwyol"
  404. #: ftparchive/apt-ftparchive.cc:801
  405. msgid "No selections matched"
  406. msgstr "Dim dewisiadau'n cyfateb"
  407. #: ftparchive/apt-ftparchive.cc:879
  408. #, c-format
  409. msgid "Some files are missing in the package file group `%s'"
  410. msgstr "Mae rhai ffeiliau ar goll yn y grŵp ffeiliau pecyn `%s'"
  411. #: ftparchive/cachedb.cc:43
  412. #, c-format
  413. msgid "DB was corrupted, file renamed to %s.old"
  414. msgstr "Llygrwyd y cronfa data, ailenwyd y ffeil i %s.old"
  415. #: ftparchive/cachedb.cc:61
  416. #, c-format
  417. msgid "DB is old, attempting to upgrade %s"
  418. msgstr "Hen gronfa data, yn ceisio uwchraddio %s"
  419. #: ftparchive/cachedb.cc:72
  420. msgid ""
  421. "DB format is invalid. If you upgraded from an older version of apt, please "
  422. "remove and re-create the database."
  423. msgstr ""
  424. #: ftparchive/cachedb.cc:77
  425. #, c-format
  426. msgid "Unable to open DB file %s: %s"
  427. msgstr "Ni ellir agor y ffeil DB2 %s: %s"
  428. #: ftparchive/cachedb.cc:123 apt-inst/extract.cc:178 apt-inst/extract.cc:190
  429. #: apt-inst/extract.cc:207 apt-inst/deb/dpkgdb.cc:117
  430. #, c-format
  431. msgid "Failed to stat %s"
  432. msgstr "Methodd stat() o %s"
  433. #: ftparchive/cachedb.cc:242
  434. msgid "Archive has no control record"
  435. msgstr "Does dim cofnod rheoli gan yr archif"
  436. #: ftparchive/cachedb.cc:448
  437. msgid "Unable to get a cursor"
  438. msgstr "Ni ellir cael cyrchydd"
  439. #: ftparchive/writer.cc:78
  440. #, c-format
  441. msgid "W: Unable to read directory %s\n"
  442. msgstr "Rh: Ni ellir darllen y cyfeiriadur %s\n"
  443. #: ftparchive/writer.cc:83
  444. #, c-format
  445. msgid "W: Unable to stat %s\n"
  446. msgstr "Rh: Ni ellir gwneud stat() o %s\n"
  447. #: ftparchive/writer.cc:139
  448. msgid "E: "
  449. msgstr "G: "
  450. #: ftparchive/writer.cc:141
  451. msgid "W: "
  452. msgstr "Rh: "
  453. #: ftparchive/writer.cc:148
  454. msgid "E: Errors apply to file "
  455. msgstr "G: Mae gwallau yn cymhwyso i'r ffeil "
  456. #: ftparchive/writer.cc:166 ftparchive/writer.cc:198
  457. #, c-format
  458. msgid "Failed to resolve %s"
  459. msgstr "Methwyd datrys %s"
  460. #: ftparchive/writer.cc:179
  461. msgid "Tree walking failed"
  462. msgstr "Methwyd cerdded y goeden"
  463. #: ftparchive/writer.cc:206
  464. #, c-format
  465. msgid "Failed to open %s"
  466. msgstr "Methwyd agor %s"
  467. # FIXME
  468. #: ftparchive/writer.cc:265
  469. #, c-format
  470. msgid " DeLink %s [%s]\n"
  471. msgstr " DatGysylltu %s [%s]\n"
  472. #: ftparchive/writer.cc:273
  473. #, c-format
  474. msgid "Failed to readlink %s"
  475. msgstr "Methwyd darllen y cyswllt %s"
  476. #: ftparchive/writer.cc:277
  477. #, c-format
  478. msgid "Failed to unlink %s"
  479. msgstr "Methwyd datgysylltu %s"
  480. #: ftparchive/writer.cc:284
  481. #, c-format
  482. msgid "*** Failed to link %s to %s"
  483. msgstr "*** Methwyd cysylltu %s at %s"
  484. #: ftparchive/writer.cc:294
  485. #, c-format
  486. msgid " DeLink limit of %sB hit.\n"
  487. msgstr " Tarwyd y terfyn cyswllt %sB.\n"
  488. #: ftparchive/writer.cc:398
  489. msgid "Archive had no package field"
  490. msgstr "Doedd dim maes pecyn gan yr archif"
  491. #: ftparchive/writer.cc:406 ftparchive/writer.cc:703
  492. #, c-format
  493. msgid " %s has no override entry\n"
  494. msgstr " Does dim cofnod gwrthwneud gan %s\n"
  495. #: ftparchive/writer.cc:472 ftparchive/writer.cc:811
  496. #, c-format
  497. msgid " %s maintainer is %s not %s\n"
  498. msgstr " Cynaliwr %s yw %s nid %s\n"
  499. #: ftparchive/writer.cc:713
  500. #, fuzzy, c-format
  501. msgid " %s has no source override entry\n"
  502. msgstr " Does dim cofnod gwrthwneud gan %s\n"
  503. #: ftparchive/writer.cc:717
  504. #, fuzzy, c-format
  505. msgid " %s has no binary override entry either\n"
  506. msgstr " Does dim cofnod gwrthwneud gan %s\n"
  507. #: ftparchive/contents.cc:337 ftparchive/contents.cc:368
  508. msgid "realloc - Failed to allocate memory"
  509. msgstr "realloc - Methwyd neilltuo cof"
  510. #: ftparchive/override.cc:34 ftparchive/override.cc:142
  511. #, c-format
  512. msgid "Unable to open %s"
  513. msgstr "Ni ellir agor %s"
  514. #: ftparchive/override.cc:60 ftparchive/override.cc:166
  515. #, c-format
  516. msgid "Malformed override %s line %lu #1"
  517. msgstr "Gwrthwneud camffurfiol %s llinell %lu #1"
  518. #: ftparchive/override.cc:74 ftparchive/override.cc:178
  519. #, c-format
  520. msgid "Malformed override %s line %lu #2"
  521. msgstr "Gwrthwneud camffurfiol %s llinell %lu #2"
  522. #: ftparchive/override.cc:88 ftparchive/override.cc:191
  523. #, c-format
  524. msgid "Malformed override %s line %lu #3"
  525. msgstr "Gwrthwneud camffurfiol %s llinell %lu #3"
  526. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  527. #, c-format
  528. msgid "Failed to read the override file %s"
  529. msgstr "Methwydd darllen y ffeil dargyfeirio %s"
  530. #: ftparchive/multicompress.cc:67
  531. #, fuzzy, c-format
  532. msgid "Unknown compression algorithm '%s'"
  533. msgstr "Dull Cywasgu Anhysbys '%s'"
  534. #: ftparchive/multicompress.cc:97
  535. #, c-format
  536. msgid "Compressed output %s needs a compression set"
  537. msgstr "Mae'r allbwn cywasgiedig %s angen cywasgiad wedi ei osod"
  538. #: ftparchive/multicompress.cc:165 methods/rsh.cc:91
  539. msgid "Failed to create IPC pipe to subprocess"
  540. msgstr "Methwyd creu pibell cyfathrebu at isbroses"
  541. #: ftparchive/multicompress.cc:191
  542. msgid "Failed to create FILE*"
  543. msgstr "Methwyd creu FILE*"
  544. #: ftparchive/multicompress.cc:194
  545. msgid "Failed to fork"
  546. msgstr "Methodd fork()"
  547. #: ftparchive/multicompress.cc:208
  548. #, fuzzy
  549. msgid "Compress child"
  550. msgstr "Plentyn Cywasgu"
  551. #: ftparchive/multicompress.cc:231
  552. #, fuzzy, c-format
  553. msgid "Internal error, failed to create %s"
  554. msgstr "Gwall Mewnol, Methwyd creu %s"
  555. #: ftparchive/multicompress.cc:282
  556. msgid "Failed to create subprocess IPC"
  557. msgstr "Methwyd creu isbroses IPC"
  558. #: ftparchive/multicompress.cc:319
  559. msgid "Failed to exec compressor "
  560. msgstr "Methwyd gweithredu cywasgydd "
  561. #: ftparchive/multicompress.cc:358
  562. msgid "decompressor"
  563. msgstr "datgywasgydd"
  564. #: ftparchive/multicompress.cc:401
  565. msgid "IO to subprocess/file failed"
  566. msgstr "Methodd MA i isbroses/ffeil"
  567. #: ftparchive/multicompress.cc:453
  568. msgid "Failed to read while computing MD5"
  569. msgstr "Methwyd darllen wrth gyfrifo MD5"
  570. #: ftparchive/multicompress.cc:470
  571. #, c-format
  572. msgid "Problem unlinking %s"
  573. msgstr "Gwall wrth datgysylltu %s"
  574. #: ftparchive/multicompress.cc:485 apt-inst/extract.cc:185
  575. #, c-format
  576. msgid "Failed to rename %s to %s"
  577. msgstr "Methwyd ailenwi %s at %s"
  578. #: cmdline/apt-get.cc:135
  579. msgid "Y"
  580. msgstr "I"
  581. #: cmdline/apt-get.cc:157 apt-pkg/cachefilter.cc:29
  582. #, c-format
  583. msgid "Regex compilation error - %s"
  584. msgstr "Gwall crynhoi patrwm - %s"
  585. #: cmdline/apt-get.cc:252
  586. msgid "The following packages have unmet dependencies:"
  587. msgstr "Mae gan y pecynnau canlynol ddibyniaethau heb eu bodloni:"
  588. #: cmdline/apt-get.cc:342
  589. #, c-format
  590. msgid "but %s is installed"
  591. msgstr "ond mae %s wedi ei sefydlu"
  592. #: cmdline/apt-get.cc:344
  593. #, c-format
  594. msgid "but %s is to be installed"
  595. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  596. #: cmdline/apt-get.cc:351
  597. msgid "but it is not installable"
  598. msgstr "ond ni ellir ei sefydlu"
  599. #: cmdline/apt-get.cc:353
  600. msgid "but it is a virtual package"
  601. msgstr "ond mae'n becyn rhithwir"
  602. #: cmdline/apt-get.cc:356
  603. msgid "but it is not installed"
  604. msgstr "ond nid yw wedi ei sefydlu"
  605. #: cmdline/apt-get.cc:356
  606. msgid "but it is not going to be installed"
  607. msgstr "ond nid yw'n mynd i gael ei sefydlu"
  608. #: cmdline/apt-get.cc:361
  609. msgid " or"
  610. msgstr " neu"
  611. #: cmdline/apt-get.cc:390
  612. msgid "The following NEW packages will be installed:"
  613. msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
  614. #: cmdline/apt-get.cc:416
  615. msgid "The following packages will be REMOVED:"
  616. msgstr "Caiff y pecynnau canlynol eu TYNNU:"
  617. #: cmdline/apt-get.cc:438
  618. #, fuzzy
  619. msgid "The following packages have been kept back:"
  620. msgstr "Mae'r pecynnau canlynol wedi eu dal yn ôl"
  621. #: cmdline/apt-get.cc:459
  622. #, fuzzy
  623. msgid "The following packages will be upgraded:"
  624. msgstr "Caiff y pecynnau canlynol eu uwchraddio"
  625. #: cmdline/apt-get.cc:480
  626. #, fuzzy
  627. msgid "The following packages will be DOWNGRADED:"
  628. msgstr "Caiff y pecynnau canlynol eu ISRADDIO"
  629. #: cmdline/apt-get.cc:500
  630. msgid "The following held packages will be changed:"
  631. msgstr "Caiff y pecynnau wedi eu dal canlynol eu newid:"
  632. #: cmdline/apt-get.cc:555
  633. #, c-format
  634. msgid "%s (due to %s) "
  635. msgstr "%s (oherwydd %s) "
  636. #: cmdline/apt-get.cc:563
  637. #, fuzzy
  638. msgid ""
  639. "WARNING: The following essential packages will be removed.\n"
  640. "This should NOT be done unless you know exactly what you are doing!"
  641. msgstr ""
  642. "RHYBUDD: Caiff y pecynnau hanfodol canlynol eu tynnu\n"
  643. "NI DDYLIR gwneud hyn os nad ydych chi'n gwybod yn union beth rydych chi'n\n"
  644. "ei wneud!"
  645. #: cmdline/apt-get.cc:594
  646. #, c-format
  647. msgid "%lu upgraded, %lu newly installed, "
  648. msgstr "%lu wedi uwchraddio, %lu newydd eu sefydlu, "
  649. #: cmdline/apt-get.cc:598
  650. #, c-format
  651. msgid "%lu reinstalled, "
  652. msgstr "%lu wedi ailsefydlu, "
  653. #: cmdline/apt-get.cc:600
  654. #, c-format
  655. msgid "%lu downgraded, "
  656. msgstr "%lu wedi eu israddio, "
  657. #: cmdline/apt-get.cc:602
  658. #, c-format
  659. msgid "%lu to remove and %lu not upgraded.\n"
  660. msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n"
  661. #: cmdline/apt-get.cc:606
  662. #, c-format
  663. msgid "%lu not fully installed or removed.\n"
  664. msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n"
  665. #: cmdline/apt-get.cc:628
  666. #, fuzzy, c-format
  667. msgid "Note, selecting '%s' for task '%s'\n"
  668. msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
  669. #: cmdline/apt-get.cc:634
  670. #, fuzzy, c-format
  671. msgid "Note, selecting '%s' for regex '%s'\n"
  672. msgstr "Sylwer, yn dewis %s ar gyfer y patrwm '%s'\n"
  673. #: cmdline/apt-get.cc:651
  674. #, c-format
  675. msgid "Package %s is a virtual package provided by:\n"
  676. msgstr "Mae'r pecyn %s yn becyn rhithwir a ddarparir gan:\n"
  677. #: cmdline/apt-get.cc:662
  678. msgid " [Installed]"
  679. msgstr " [Sefydliwyd]"
  680. #: cmdline/apt-get.cc:671
  681. #, fuzzy
  682. msgid " [Not candidate version]"
  683. msgstr "Fersiynau Posib"
  684. #: cmdline/apt-get.cc:673
  685. msgid "You should explicitly select one to install."
  686. msgstr "Dylech ddewis un yn benodol i'w sefydlu."
  687. # FIXME: punctuation
  688. #: cmdline/apt-get.cc:676
  689. #, fuzzy, c-format
  690. msgid ""
  691. "Package %s is not available, but is referred to by another package.\n"
  692. "This may mean that the package is missing, has been obsoleted, or\n"
  693. "is only available from another source\n"
  694. msgstr ""
  695. "Does dim fersiwn gan y pecyn %s, ond mae'n bodoli yn y cronfa data.\n"
  696. "Mae hyn fel arfer yn golygu y crybwyllwyd y pecyn mewn dibyniaeth ond heb\n"
  697. "gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n"
  698. "ffeil sources.list.\n"
  699. #: cmdline/apt-get.cc:694
  700. msgid "However the following packages replace it:"
  701. msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:"
  702. #: cmdline/apt-get.cc:706
  703. #, fuzzy, c-format
  704. msgid "Package '%s' has no installation candidate"
  705. msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s"
  706. #: cmdline/apt-get.cc:717
  707. #, c-format
  708. msgid "Virtual packages like '%s' can't be removed\n"
  709. msgstr ""
  710. #: cmdline/apt-get.cc:748
  711. #, fuzzy, c-format
  712. msgid "Note, selecting '%s' instead of '%s'\n"
  713. msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
  714. #: cmdline/apt-get.cc:778
  715. #, c-format
  716. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  717. msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n"
  718. #: cmdline/apt-get.cc:782
  719. #, fuzzy, c-format
  720. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  721. msgstr "Yn hepgor %s, mae wedi ei sefydlu a nid yw uwchraddio wedi ei osod.\n"
  722. #: cmdline/apt-get.cc:794
  723. #, c-format
  724. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  725. msgstr "Nid yw ailsefydlu %s yn bosib, gan ni ellir ei lawrlwytho.\n"
  726. #: cmdline/apt-get.cc:799
  727. #, c-format
  728. msgid "%s is already the newest version.\n"
  729. msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
  730. #: cmdline/apt-get.cc:818 cmdline/apt-get.cc:2080 cmdline/apt-mark.cc:59
  731. #, fuzzy, c-format
  732. msgid "%s set to manually installed.\n"
  733. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  734. #: cmdline/apt-get.cc:844
  735. #, fuzzy, c-format
  736. msgid "Selected version '%s' (%s) for '%s'\n"
  737. msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
  738. #: cmdline/apt-get.cc:849
  739. #, fuzzy, c-format
  740. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  741. msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n"
  742. #: cmdline/apt-get.cc:893
  743. #, c-format
  744. msgid "Package %s is not installed, so not removed\n"
  745. msgstr "Nid yw'r pecyn %s wedi ei sefydlu, felly ni chaif ei dynnu\n"
  746. #: cmdline/apt-get.cc:971
  747. msgid "Correcting dependencies..."
  748. msgstr "Yn cywiro dibyniaethau..."
  749. #: cmdline/apt-get.cc:974
  750. msgid " failed."
  751. msgstr " wedi methu."
  752. #: cmdline/apt-get.cc:977
  753. msgid "Unable to correct dependencies"
  754. msgstr "Ni ellir cywiro dibyniaethau"
  755. #: cmdline/apt-get.cc:980
  756. msgid "Unable to minimize the upgrade set"
  757. msgstr "Ni ellir bychanu y set uwchraddio"
  758. #: cmdline/apt-get.cc:982
  759. msgid " Done"
  760. msgstr " Wedi Gorffen"
  761. #: cmdline/apt-get.cc:986
  762. msgid "You might want to run 'apt-get -f install' to correct these."
  763. msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain."
  764. #: cmdline/apt-get.cc:989
  765. msgid "Unmet dependencies. Try using -f."
  766. msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f."
  767. #: cmdline/apt-get.cc:1014
  768. #, fuzzy
  769. msgid "WARNING: The following packages cannot be authenticated!"
  770. msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
  771. #: cmdline/apt-get.cc:1018
  772. msgid "Authentication warning overridden.\n"
  773. msgstr ""
  774. #: cmdline/apt-get.cc:1025
  775. msgid "Install these packages without verification [y/N]? "
  776. msgstr ""
  777. #: cmdline/apt-get.cc:1027
  778. #, fuzzy
  779. msgid "Some packages could not be authenticated"
  780. msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!"
  781. #: cmdline/apt-get.cc:1036 cmdline/apt-get.cc:1197
  782. msgid "There are problems and -y was used without --force-yes"
  783. msgstr "Mae problemau a defnyddwyd -y heb --force-yes"
  784. #: cmdline/apt-get.cc:1077
  785. msgid "Internal error, InstallPackages was called with broken packages!"
  786. msgstr ""
  787. #: cmdline/apt-get.cc:1086
  788. #, fuzzy
  789. msgid "Packages need to be removed but remove is disabled."
  790. msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi."
  791. #: cmdline/apt-get.cc:1097
  792. #, fuzzy
  793. msgid "Internal error, Ordering didn't finish"
  794. msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
  795. #: cmdline/apt-get.cc:1135
  796. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  797. msgstr ""
  798. #. TRANSLATOR: The required space between number and unit is already included
  799. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  800. #: cmdline/apt-get.cc:1142
  801. #, c-format
  802. msgid "Need to get %sB/%sB of archives.\n"
  803. msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n"
  804. #. TRANSLATOR: The required space between number and unit is already included
  805. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  806. #: cmdline/apt-get.cc:1147
  807. #, c-format
  808. msgid "Need to get %sB of archives.\n"
  809. msgstr "Mae angen cyrchu %sB o archifau.\n"
  810. #. TRANSLATOR: The required space between number and unit is already included
  811. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  812. #: cmdline/apt-get.cc:1154
  813. #, fuzzy, c-format
  814. msgid "After this operation, %sB of additional disk space will be used.\n"
  815. msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n"
  816. #. TRANSLATOR: The required space between number and unit is already included
  817. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  818. #: cmdline/apt-get.cc:1159
  819. #, fuzzy, c-format
  820. msgid "After this operation, %sB disk space will be freed.\n"
  821. msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n"
  822. #: cmdline/apt-get.cc:1174 cmdline/apt-get.cc:1177 cmdline/apt-get.cc:2492
  823. #: cmdline/apt-get.cc:2495
  824. #, fuzzy, c-format
  825. msgid "Couldn't determine free space in %s"
  826. msgstr "Does dim digon o le rhydd yn %s gennych"
  827. #: cmdline/apt-get.cc:1187
  828. #, c-format
  829. msgid "You don't have enough free space in %s."
  830. msgstr "Does dim digon o le rhydd gennych yn %s."
  831. #: cmdline/apt-get.cc:1203 cmdline/apt-get.cc:1223
  832. msgid "Trivial Only specified but this is not a trivial operation."
  833. msgstr "Penodwyd Syml Yn Unig ond nid yw hyn yn weithred syml."
  834. #: cmdline/apt-get.cc:1205
  835. msgid "Yes, do as I say!"
  836. msgstr "Ie, gwna fel rydw i'n dweud!"
  837. #: cmdline/apt-get.cc:1207
  838. #, fuzzy, c-format
  839. msgid ""
  840. "You are about to do something potentially harmful.\n"
  841. "To continue type in the phrase '%s'\n"
  842. " ?] "
  843. msgstr ""
  844. "Rydych ar fin gwneud rhywbeth a all fod yn niweidiol\n"
  845. "Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n"
  846. " ?]"
  847. #: cmdline/apt-get.cc:1213 cmdline/apt-get.cc:1232
  848. msgid "Abort."
  849. msgstr "Erthylu."
  850. #: cmdline/apt-get.cc:1228
  851. #, fuzzy
  852. msgid "Do you want to continue [Y/n]? "
  853. msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] "
  854. #: cmdline/apt-get.cc:1300 cmdline/apt-get.cc:2557 apt-pkg/algorithms.cc:1410
  855. #, c-format
  856. msgid "Failed to fetch %s %s\n"
  857. msgstr "Methwyd cyrchu %s %s\n"
  858. #: cmdline/apt-get.cc:1318
  859. msgid "Some files failed to download"
  860. msgstr "Methodd rhai ffeiliau lawrlwytho"
  861. #: cmdline/apt-get.cc:1319 cmdline/apt-get.cc:2569
  862. msgid "Download complete and in download only mode"
  863. msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig"
  864. #: cmdline/apt-get.cc:1325
  865. msgid ""
  866. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  867. "missing?"
  868. msgstr ""
  869. "Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu "
  870. "geidio defnyddio --fix-missing?"
  871. #: cmdline/apt-get.cc:1329
  872. msgid "--fix-missing and media swapping is not currently supported"
  873. msgstr "Ni chynhelir cyfnewid cyfrwng efo --fix-missing ar hyn o bryd"
  874. #: cmdline/apt-get.cc:1334
  875. msgid "Unable to correct missing packages."
  876. msgstr "Ni ellir cywiro pecynnau ar goll."
  877. #: cmdline/apt-get.cc:1335
  878. #, fuzzy
  879. msgid "Aborting install."
  880. msgstr "Yn Erthylu'r Sefydliad."
  881. #: cmdline/apt-get.cc:1363
  882. msgid ""
  883. "The following package disappeared from your system as\n"
  884. "all files have been overwritten by other packages:"
  885. msgid_plural ""
  886. "The following packages disappeared from your system as\n"
  887. "all files have been overwritten by other packages:"
  888. msgstr[0] ""
  889. msgstr[1] ""
  890. #: cmdline/apt-get.cc:1367
  891. msgid "Note: This is done automatic and on purpose by dpkg."
  892. msgstr ""
  893. #: cmdline/apt-get.cc:1497
  894. #, c-format
  895. msgid "Ignore unavailable target release '%s' of package '%s'"
  896. msgstr ""
  897. #: cmdline/apt-get.cc:1529
  898. #, fuzzy, c-format
  899. msgid "Picking '%s' as source package instead of '%s'\n"
  900. msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s"
  901. #. if (VerTag.empty() == false && Last == 0)
  902. #: cmdline/apt-get.cc:1567
  903. #, c-format
  904. msgid "Ignore unavailable version '%s' of package '%s'"
  905. msgstr ""
  906. #: cmdline/apt-get.cc:1583
  907. msgid "The update command takes no arguments"
  908. msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau"
  909. #: cmdline/apt-get.cc:1645
  910. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  911. msgstr ""
  912. #: cmdline/apt-get.cc:1740
  913. msgid ""
  914. "Hmm, seems like the AutoRemover destroyed something which really\n"
  915. "shouldn't happen. Please file a bug report against apt."
  916. msgstr ""
  917. #.
  918. #. if (Packages == 1)
  919. #. {
  920. #. c1out << endl;
  921. #. c1out <<
  922. #. _("Since you only requested a single operation it is extremely likely that\n"
  923. #. "the package is simply not installable and a bug report against\n"
  924. #. "that package should be filed.") << endl;
  925. #. }
  926. #.
  927. #: cmdline/apt-get.cc:1743 cmdline/apt-get.cc:1913
  928. msgid "The following information may help to resolve the situation:"
  929. msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:"
  930. #: cmdline/apt-get.cc:1747
  931. #, fuzzy
  932. msgid "Internal Error, AutoRemover broke stuff"
  933. msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
  934. #: cmdline/apt-get.cc:1754
  935. #, fuzzy
  936. msgid ""
  937. "The following package was automatically installed and is no longer required:"
  938. msgid_plural ""
  939. "The following packages were automatically installed and are no longer "
  940. "required:"
  941. msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
  942. msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
  943. #: cmdline/apt-get.cc:1758
  944. #, fuzzy, c-format
  945. msgid "%lu package was automatically installed and is no longer required.\n"
  946. msgid_plural ""
  947. "%lu packages were automatically installed and are no longer required.\n"
  948. msgstr[0] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
  949. msgstr[1] "Caiff y pecynnau NEWYDD canlynol eu sefydlu:"
  950. #: cmdline/apt-get.cc:1760
  951. msgid "Use 'apt-get autoremove' to remove them."
  952. msgstr ""
  953. #: cmdline/apt-get.cc:1779
  954. #, fuzzy
  955. msgid "Internal error, AllUpgrade broke stuff"
  956. msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
  957. #: cmdline/apt-get.cc:1878
  958. msgid "You might want to run 'apt-get -f install' to correct these:"
  959. msgstr "Efallai hoffech rhedeg 'apt-get -f install' er mwyn cywiro'r rhain:"
  960. # FIXME
  961. #: cmdline/apt-get.cc:1882
  962. msgid ""
  963. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  964. "solution)."
  965. msgstr ""
  966. "Dibyniaethau heb eu bodloni. Ceisiwch rhedeg 'apt-get -f install' efo dim "
  967. "pecyn (neu penodwch ddatrys)"
  968. # FIXME: needs commas
  969. #: cmdline/apt-get.cc:1898
  970. msgid ""
  971. "Some packages could not be installed. This may mean that you have\n"
  972. "requested an impossible situation or if you are using the unstable\n"
  973. "distribution that some required packages have not yet been created\n"
  974. "or been moved out of Incoming."
  975. msgstr ""
  976. "Methwyd sefydlu rhai pecynnau. Gall hyn olygu eich bod chi wedi gofyn\n"
  977. "am sefyllfa amhosib neu, os ydych chi'n defnyddio'r dosraniad\n"
  978. "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n"
  979. "heb gael eu symud allan o Incoming."
  980. #: cmdline/apt-get.cc:1916
  981. msgid "Broken packages"
  982. msgstr "Pecynnau wedi torri"
  983. #: cmdline/apt-get.cc:1942
  984. msgid "The following extra packages will be installed:"
  985. msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
  986. #: cmdline/apt-get.cc:2032
  987. msgid "Suggested packages:"
  988. msgstr "Pecynnau a awgrymmir:"
  989. #: cmdline/apt-get.cc:2033
  990. msgid "Recommended packages:"
  991. msgstr "Pecynnau a argymhellir:"
  992. #: cmdline/apt-get.cc:2075
  993. #, c-format
  994. msgid "Couldn't find package %s"
  995. msgstr "Methwyd canfod pecyn %s"
  996. #: cmdline/apt-get.cc:2082 cmdline/apt-mark.cc:61
  997. #, fuzzy, c-format
  998. msgid "%s set to automatically installed.\n"
  999. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  1000. #: cmdline/apt-get.cc:2090 cmdline/apt-mark.cc:105
  1001. msgid ""
  1002. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  1003. "instead."
  1004. msgstr ""
  1005. #: cmdline/apt-get.cc:2106
  1006. #, fuzzy
  1007. msgid "Calculating upgrade... "
  1008. msgstr "Yn Cyfrifo'r Uwchraddiad... "
  1009. #: cmdline/apt-get.cc:2109 methods/ftp.cc:707 methods/connect.cc:111
  1010. msgid "Failed"
  1011. msgstr "Methwyd"
  1012. #: cmdline/apt-get.cc:2114
  1013. msgid "Done"
  1014. msgstr "Wedi Gorffen"
  1015. #: cmdline/apt-get.cc:2181 cmdline/apt-get.cc:2189
  1016. #, fuzzy
  1017. msgid "Internal error, problem resolver broke stuff"
  1018. msgstr "Gwall Mewnol, torrodd AllUpgrade bethau"
  1019. #: cmdline/apt-get.cc:2213 cmdline/apt-get.cc:2246
  1020. msgid "Unable to lock the download directory"
  1021. msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho"
  1022. #: cmdline/apt-get.cc:2297
  1023. #, c-format
  1024. msgid "Downloading %s %s"
  1025. msgstr ""
  1026. #: cmdline/apt-get.cc:2353
  1027. msgid "Must specify at least one package to fetch source for"
  1028. msgstr "Rhaid penodi o leiaf un pecyn i gyrchi ffynhonell ar ei gyfer"
  1029. #: cmdline/apt-get.cc:2394 cmdline/apt-get.cc:2690
  1030. #, c-format
  1031. msgid "Unable to find a source package for %s"
  1032. msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s"
  1033. #: cmdline/apt-get.cc:2411
  1034. #, c-format
  1035. msgid ""
  1036. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1037. "%s\n"
  1038. msgstr ""
  1039. #: cmdline/apt-get.cc:2416
  1040. #, c-format
  1041. msgid ""
  1042. "Please use:\n"
  1043. "bzr get %s\n"
  1044. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1045. msgstr ""
  1046. #: cmdline/apt-get.cc:2469
  1047. #, fuzzy, c-format
  1048. msgid "Skipping already downloaded file '%s'\n"
  1049. msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
  1050. #: cmdline/apt-get.cc:2506
  1051. #, c-format
  1052. msgid "You don't have enough free space in %s"
  1053. msgstr "Does dim digon o le rhydd yn %s gennych"
  1054. #. TRANSLATOR: The required space between number and unit is already included
  1055. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1056. #: cmdline/apt-get.cc:2515
  1057. #, c-format
  1058. msgid "Need to get %sB/%sB of source archives.\n"
  1059. msgstr "Rhaid cyrchu %sB/%sB o archifau ffynhonell.\n"
  1060. #. TRANSLATOR: The required space between number and unit is already included
  1061. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1062. #: cmdline/apt-get.cc:2520
  1063. #, c-format
  1064. msgid "Need to get %sB of source archives.\n"
  1065. msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n"
  1066. #: cmdline/apt-get.cc:2526
  1067. #, fuzzy, c-format
  1068. msgid "Fetch source %s\n"
  1069. msgstr "Cyrchu Ffynhonell %s\n"
  1070. #: cmdline/apt-get.cc:2564
  1071. msgid "Failed to fetch some archives."
  1072. msgstr "Methwyd cyrchu rhai archifau."
  1073. #: cmdline/apt-get.cc:2595
  1074. #, c-format
  1075. msgid "Skipping unpack of already unpacked source in %s\n"
  1076. msgstr "Yn hepgor dadbacio y ffynhonell wedi ei dadbacio eisioes yn %s\n"
  1077. #: cmdline/apt-get.cc:2607
  1078. #, c-format
  1079. msgid "Unpack command '%s' failed.\n"
  1080. msgstr "Methodd y gorchymyn dadbacio '%s'.\n"
  1081. #: cmdline/apt-get.cc:2608
  1082. #, c-format
  1083. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1084. msgstr ""
  1085. #: cmdline/apt-get.cc:2625
  1086. #, c-format
  1087. msgid "Build command '%s' failed.\n"
  1088. msgstr "Methodd y gorchymyn adeiladu '%s'.\n"
  1089. #: cmdline/apt-get.cc:2645
  1090. msgid "Child process failed"
  1091. msgstr "Methodd proses plentyn"
  1092. #: cmdline/apt-get.cc:2664
  1093. msgid "Must specify at least one package to check builddeps for"
  1094. msgstr ""
  1095. "Rhaid penodi o leiaf un pecyn i wirio dibyniaethau adeiladu ar eu cyfer"
  1096. #: cmdline/apt-get.cc:2695
  1097. #, c-format
  1098. msgid "Unable to get build-dependency information for %s"
  1099. msgstr "Ni ellir cyrchu manylion dibyniaeth adeiladu ar gyfer %s"
  1100. #: cmdline/apt-get.cc:2715
  1101. #, c-format
  1102. msgid "%s has no build depends.\n"
  1103. msgstr "Nid oes dibyniaethau adeiladu gan %s.\n"
  1104. #: cmdline/apt-get.cc:2766
  1105. #, c-format
  1106. msgid ""
  1107. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1108. "found"
  1109. msgstr ""
  1110. "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn "
  1111. "%s"
  1112. #: cmdline/apt-get.cc:2819
  1113. #, c-format
  1114. msgid ""
  1115. "%s dependency for %s cannot be satisfied because no available versions of "
  1116. "package %s can satisfy version requirements"
  1117. msgstr ""
  1118. "Ni ellir bodloni'r dibyniaeth %s ar gyfer %s oherwydd does dim fersiwn sydd "
  1119. "ar gael o'r pecyn %s yn gallu bodloni'r gofynion ferswin"
  1120. #: cmdline/apt-get.cc:2855
  1121. #, c-format
  1122. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1123. msgstr ""
  1124. "Methwyd bodloni dibynniaeth %s am %s: Mae'r pecyn sefydliedig %s yn rhy "
  1125. "newydd"
  1126. #: cmdline/apt-get.cc:2882
  1127. #, c-format
  1128. msgid "Failed to satisfy %s dependency for %s: %s"
  1129. msgstr "Methwyd bodloni dibyniaeth %s am %s: %s"
  1130. #: cmdline/apt-get.cc:2898
  1131. #, c-format
  1132. msgid "Build-dependencies for %s could not be satisfied."
  1133. msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s."
  1134. #: cmdline/apt-get.cc:2903
  1135. msgid "Failed to process build dependencies"
  1136. msgstr "Methwyd prosesu dibyniaethau adeiladu"
  1137. #: cmdline/apt-get.cc:2996 cmdline/apt-get.cc:3008
  1138. #, fuzzy, c-format
  1139. msgid "Changelog for %s (%s)"
  1140. msgstr "Yn cysylltu i %s (%s)"
  1141. #: cmdline/apt-get.cc:3127
  1142. #, fuzzy
  1143. msgid "Supported modules:"
  1144. msgstr "Modylau a Gynhelir:"
  1145. # FIXME: split
  1146. #: cmdline/apt-get.cc:3168
  1147. #, fuzzy
  1148. msgid ""
  1149. "Usage: apt-get [options] command\n"
  1150. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1151. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1152. "\n"
  1153. "apt-get is a simple command line interface for downloading and\n"
  1154. "installing packages. The most frequently used commands are update\n"
  1155. "and install.\n"
  1156. "\n"
  1157. "Commands:\n"
  1158. " update - Retrieve new lists of packages\n"
  1159. " upgrade - Perform an upgrade\n"
  1160. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1161. " remove - Remove packages\n"
  1162. " autoremove - Remove automatically all unused packages\n"
  1163. " purge - Remove packages and config files\n"
  1164. " source - Download source archives\n"
  1165. " build-dep - Configure build-dependencies for source packages\n"
  1166. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1167. " dselect-upgrade - Follow dselect selections\n"
  1168. " clean - Erase downloaded archive files\n"
  1169. " autoclean - Erase old downloaded archive files\n"
  1170. " check - Verify that there are no broken dependencies\n"
  1171. " changelog - Download and display the changelog for the given package\n"
  1172. " download - Download the binary package into the current directory\n"
  1173. "\n"
  1174. "Options:\n"
  1175. " -h This help text.\n"
  1176. " -q Loggable output - no progress indicator\n"
  1177. " -qq No output except for errors\n"
  1178. " -d Download only - do NOT install or unpack archives\n"
  1179. " -s No-act. Perform ordering simulation\n"
  1180. " -y Assume Yes to all queries and do not prompt\n"
  1181. " -f Attempt to correct a system with broken dependencies in place\n"
  1182. " -m Attempt to continue if archives are unlocatable\n"
  1183. " -u Show a list of upgraded packages as well\n"
  1184. " -b Build the source package after fetching it\n"
  1185. " -V Show verbose version numbers\n"
  1186. " -c=? Read this configuration file\n"
  1187. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1188. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1189. "pages for more information and options.\n"
  1190. " This APT has Super Cow Powers.\n"
  1191. msgstr ""
  1192. "Defnydd: apt-get [opsiynnau] gorchymyn\n"
  1193. " apt-get [opsiynnau] install|remove pecyn1 [pecyn2 ...]\n"
  1194. " apt-get [opsiynnau] source pecyn1 [pecyn2 ...]\n"
  1195. "\n"
  1196. "Mae apt-get yn rhyngwyneb llinell orchymyn syml ar gyfer lawrlwytho a\n"
  1197. "sefydlu pecynnau. Y gorchmynion \"update\" a \"install\" yw'r rhai a\n"
  1198. "ddefnyddir amlaf.\n"
  1199. "\n"
  1200. "Gorchmynion:\n"
  1201. " update - Cyrchu rhestrau pecynnau newydd\n"
  1202. " update - Uwchraddio pecynnau wedi sefydlu\n"
  1203. " install - Sefydlu pecynnau newydd (defnyddiwch libc6 nid libc6.deb)\n"
  1204. " remove - Tynnu pecynnau\n"
  1205. " source - Lawrlwytho archifau ffynhonell\n"
  1206. " build-dep - Cyflunio dibyniaethau adeiladu ar gyfer pecynnau ffynhonell\n"
  1207. " dist-upgrade - Uwchraddio dosraniad, gweler apt-get(8)\n"
  1208. " dselect-upgrade - Dilyn dewisiadau dselect\n"
  1209. " clean - Dileu ffeiliau archif wedi eu lawrlwytho\n"
  1210. " autoclean - Dileu hen ffeiliau archif wedi eu lawrlwytho\n"
  1211. " check - Gwirio fod dim dibyniaethau torredig\n"
  1212. "\n"
  1213. "Opsiynnau:\n"
  1214. " -h Y testun cymorth hwn.\n"
  1215. " -q Allbwn cofnodadwy - dim dangosydd cynydd\n"
  1216. " -qq Dim allbwn ar wahan i wallau\n"
  1217. " -d Lawrlwytho yn unig - peidio a sefydlu na dadbacio archifau\n"
  1218. " -s Peidio gweithredu. Gwneir efelychiad trefn.\n"
  1219. " -y Peidio a gofyn cwestiynnau a chymryd yn ganiataol mai 'Ie' yw'r ateb\n"
  1220. " -f Ceisio mynd ymlaen os mae'r prawf integredd yn methu\n"
  1221. " -m Ceisio mynd ymlaen os methir dod o hyd i archifau\n"
  1222. " -u Dangos rhestr o archifau a uwchraddir hefyd\n"
  1223. " -b Adeiladu'r pecyn ffynhonell ar ôl ei lawrlwytho\n"
  1224. " -V Dangos rhifau fersiwn cyflawn\n"
  1225. " -c=? Darllen y ffeil cyfluniad hwn\n"
  1226. " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
  1227. "\n"
  1228. "Gweler y tudalenau llawlyfr apt-get(8) sources.list(5) a apt.conf(5) am\n"
  1229. "fwy o wybodaeth ac opsiynnau.\n"
  1230. "\n"
  1231. " Mae gan yr APT hwn bŵerau buwch hudol.\n"
  1232. #: cmdline/apt-get.cc:3330
  1233. msgid ""
  1234. "NOTE: This is only a simulation!\n"
  1235. " apt-get needs root privileges for real execution.\n"
  1236. " Keep also in mind that locking is deactivated,\n"
  1237. " so don't depend on the relevance to the real current situation!"
  1238. msgstr ""
  1239. #: cmdline/acqprogress.cc:57
  1240. msgid "Hit "
  1241. msgstr "Presennol "
  1242. #: cmdline/acqprogress.cc:81
  1243. msgid "Get:"
  1244. msgstr "Cyrchu:"
  1245. #: cmdline/acqprogress.cc:112
  1246. msgid "Ign "
  1247. msgstr "Anwybyddu "
  1248. #: cmdline/acqprogress.cc:116
  1249. msgid "Err "
  1250. msgstr "Gwall "
  1251. #: cmdline/acqprogress.cc:137
  1252. #, c-format
  1253. msgid "Fetched %sB in %s (%sB/s)\n"
  1254. msgstr "Cyrchwyd %sB yn %s (%sB/s)\n"
  1255. #: cmdline/acqprogress.cc:227
  1256. #, c-format
  1257. msgid " [Working]"
  1258. msgstr " [Gweithio]"
  1259. #: cmdline/acqprogress.cc:283
  1260. #, fuzzy, c-format
  1261. msgid ""
  1262. "Media change: please insert the disc labeled\n"
  1263. " '%s'\n"
  1264. "in the drive '%s' and press enter\n"
  1265. msgstr ""
  1266. "Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
  1267. " '%s'\n"
  1268. "yn y gyrriant '%s' a gwasgwch Enter\n"
  1269. #: cmdline/apt-mark.cc:46
  1270. #, fuzzy, c-format
  1271. msgid "%s can not be marked as it is not installed.\n"
  1272. msgstr "ond nid yw wedi ei sefydlu"
  1273. #: cmdline/apt-mark.cc:52
  1274. #, fuzzy, c-format
  1275. msgid "%s was already set to manually installed.\n"
  1276. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  1277. #: cmdline/apt-mark.cc:54
  1278. #, fuzzy, c-format
  1279. msgid "%s was already set to automatically installed.\n"
  1280. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  1281. #: cmdline/apt-mark.cc:169
  1282. #, fuzzy, c-format
  1283. msgid "%s was already set on hold.\n"
  1284. msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
  1285. #: cmdline/apt-mark.cc:171
  1286. #, fuzzy, c-format
  1287. msgid "%s was already not hold.\n"
  1288. msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n"
  1289. #: cmdline/apt-mark.cc:185 cmdline/apt-mark.cc:207
  1290. #, fuzzy, c-format
  1291. msgid "%s set on hold.\n"
  1292. msgstr "ond mae %s yn mynd i gael ei sefydlu"
  1293. #: cmdline/apt-mark.cc:187 cmdline/apt-mark.cc:212
  1294. #, fuzzy, c-format
  1295. msgid "Canceled hold on %s.\n"
  1296. msgstr "Methwyd agor %s"
  1297. #: cmdline/apt-mark.cc:220
  1298. msgid "Executing dpkg failed. Are you root?"
  1299. msgstr ""
  1300. #: cmdline/apt-mark.cc:268
  1301. msgid ""
  1302. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1303. "\n"
  1304. "apt-mark is a simple command line interface for marking packages\n"
  1305. "as manual or automatical installed. It can also list marks.\n"
  1306. "\n"
  1307. "Commands:\n"
  1308. " auto - Mark the given packages as automatically installed\n"
  1309. " manual - Mark the given packages as manually installed\n"
  1310. "\n"
  1311. "Options:\n"
  1312. " -h This help text.\n"
  1313. " -q Loggable output - no progress indicator\n"
  1314. " -qq No output except for errors\n"
  1315. " -s No-act. Just prints what would be done.\n"
  1316. " -f read/write auto/manual marking in the given file\n"
  1317. " -c=? Read this configuration file\n"
  1318. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1319. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  1320. msgstr ""
  1321. #: cmdline/apt-sortpkgs.cc:86
  1322. msgid "Unknown package record!"
  1323. msgstr "Cofnod pecyn anhysbys!"
  1324. #: cmdline/apt-sortpkgs.cc:150
  1325. #, fuzzy
  1326. msgid ""
  1327. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1328. "\n"
  1329. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1330. "to indicate what kind of file it is.\n"
  1331. "\n"
  1332. "Options:\n"
  1333. " -h This help text\n"
  1334. " -s Use source file sorting\n"
  1335. " -c=? Read this configuration file\n"
  1336. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1337. msgstr ""
  1338. "Defnydd: apt-sortpkgs [opsiynnau] ffeil1 [ffeil2 ...]\n"
  1339. "\n"
  1340. "Mae apt-sortpkgs yn erfyn syml er mwyn trefnu ffeiliau pecyn. Defnyddir yr\n"
  1341. "opsiwn -s er mwyn penodi pa fath o ffeil ydyw.\n"
  1342. "\n"
  1343. "Opsiynnau:\n"
  1344. " -h Y testun cymorth hwn\n"
  1345. " -s Defnyddio trefnu ffeil ffynhonell\n"
  1346. " -c=? Darllen y ffeil cyfluniad hwn\n"
  1347. " -o=? Gosod opsiwn cyfluniad mympwyol, ee -o dir::cache=/tmp\n"
  1348. #: dselect/install:32
  1349. msgid "Bad default setting!"
  1350. msgstr "Rhagosodiad gwael!"
  1351. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1352. #: dselect/install:105 dselect/update:45
  1353. msgid "Press enter to continue."
  1354. msgstr "Gwasgwch Enter er mwyn mynd ymlaen."
  1355. #: dselect/install:91
  1356. msgid "Do you want to erase any previously downloaded .deb files?"
  1357. msgstr ""
  1358. #: dselect/install:101
  1359. #, fuzzy
  1360. msgid "Some errors occurred while unpacking. Packages that were installed"
  1361. msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r"
  1362. #: dselect/install:102
  1363. #, fuzzy
  1364. msgid "will be configured. This may result in duplicate errors"
  1365. msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu"
  1366. #: dselect/install:103
  1367. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1368. msgstr "wallau a achosir gan ddibyniaethau coll. Mae hyn yn iawn, dim ond y"
  1369. #: dselect/install:104
  1370. msgid ""
  1371. "above this message are important. Please fix them and run [I]nstall again"
  1372. msgstr ""
  1373. "gwallau uwchben y neges hwn sy'n bwysig. Trwsiwch nhw a rhedwch [S]efydlu "
  1374. "eto."
  1375. #: dselect/update:30
  1376. #, fuzzy
  1377. msgid "Merging available information"
  1378. msgstr "Yn cyfuno manylion Ar Gael"
  1379. #: apt-inst/contrib/extracttar.cc:114
  1380. msgid "Failed to create pipes"
  1381. msgstr "Methwyd creu pibau"
  1382. #: apt-inst/contrib/extracttar.cc:141
  1383. msgid "Failed to exec gzip "
  1384. msgstr "Methwyd gweithredu gzip"
  1385. #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:208
  1386. msgid "Corrupted archive"
  1387. msgstr "Archif llygredig"
  1388. #: apt-inst/contrib/extracttar.cc:193
  1389. #, fuzzy
  1390. msgid "Tar checksum failed, archive corrupted"
  1391. msgstr "Methodd swm gwirio Tar, archif llygredig"
  1392. #: apt-inst/contrib/extracttar.cc:300
  1393. #, c-format
  1394. msgid "Unknown TAR header type %u, member %s"
  1395. msgstr "Math pennawd TAR anhysbys %u, aelod %s"
  1396. #: apt-inst/contrib/arfile.cc:70
  1397. msgid "Invalid archive signature"
  1398. msgstr "Llofnod archif annilys"
  1399. #: apt-inst/contrib/arfile.cc:78
  1400. msgid "Error reading archive member header"
  1401. msgstr "Gwall wrth ddarllen pennawd aelod archif"
  1402. #: apt-inst/contrib/arfile.cc:90
  1403. #, fuzzy, c-format
  1404. msgid "Invalid archive member header %s"
  1405. msgstr "Pennawd aelod archif annilys"
  1406. #: apt-inst/contrib/arfile.cc:102
  1407. msgid "Invalid archive member header"
  1408. msgstr "Pennawd aelod archif annilys"
  1409. #: apt-inst/contrib/arfile.cc:128
  1410. msgid "Archive is too short"
  1411. msgstr "Mae'r archif yn rhy fyr"
  1412. #: apt-inst/contrib/arfile.cc:132
  1413. msgid "Failed to read the archive headers"
  1414. msgstr "Methwyd darllen pennawdau'r archif"
  1415. #: apt-inst/filelist.cc:380
  1416. msgid "DropNode called on still linked node"
  1417. msgstr "Galwyd DropNode ar nôd sydd o hyd wedi ei gysylltu"
  1418. #: apt-inst/filelist.cc:412
  1419. msgid "Failed to locate the hash element!"
  1420. msgstr "Methyd lleoli yr elfen <hash>!"
  1421. #: apt-inst/filelist.cc:459
  1422. msgid "Failed to allocate diversion"
  1423. msgstr "Methwyd neilltuo dargyfeiriad"
  1424. #: apt-inst/filelist.cc:464
  1425. #, fuzzy
  1426. msgid "Internal error in AddDiversion"
  1427. msgstr "Gwall Mewnol yn AddDiversion"
  1428. #: apt-inst/filelist.cc:477
  1429. #, c-format
  1430. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1431. msgstr "Yn ceisio trosysgrifo dargyfeiriad, %s -> %s a %s/%s"
  1432. # FIXME: "the"
  1433. #: apt-inst/filelist.cc:506
  1434. #, c-format
  1435. msgid "Double add of diversion %s -> %s"
  1436. msgstr "Ychwanegiad dwbl o'r dargyfeiriad %s -> %s"
  1437. #: apt-inst/filelist.cc:549
  1438. #, c-format
  1439. msgid "Duplicate conf file %s/%s"
  1440. msgstr "Ffeil cyfluniad dyblyg %s/%s"
  1441. #: apt-inst/dirstream.cc:41 apt-inst/dirstream.cc:47 apt-inst/dirstream.cc:53
  1442. #, fuzzy, c-format
  1443. msgid "Failed to write file %s"
  1444. msgstr "Methwyd ysgrifennu ffeil %s"
  1445. #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
  1446. #, c-format
  1447. msgid "Failed to close file %s"
  1448. msgstr "Methwyd cau ffeil %s"
  1449. #: apt-inst/extract.cc:93 apt-inst/extract.cc:164
  1450. #, c-format
  1451. msgid "The path %s is too long"
  1452. msgstr "Mae'r llwybr %s yn rhy hir"
  1453. #: apt-inst/extract.cc:124
  1454. #, c-format
  1455. msgid "Unpacking %s more than once"
  1456. msgstr "Yn dadbacio %s mwy nag unwaith"
  1457. #: apt-inst/extract.cc:134
  1458. #, c-format
  1459. msgid "The directory %s is diverted"
  1460. msgstr "Mae'r cyfeiriadur %s wedi ei ddargyfeirio"
  1461. #: apt-inst/extract.cc:144
  1462. #, c-format
  1463. msgid "The package is trying to write to the diversion target %s/%s"
  1464. msgstr "Mae'r pecyn yn ceisio ysgrifennu i'r targed dargyfeiriad %s/%s"
  1465. #: apt-inst/extract.cc:154 apt-inst/extract.cc:297
  1466. msgid "The diversion path is too long"
  1467. msgstr "Mae llwybr y dargyfeiriad yn rhy hir"
  1468. #: apt-inst/extract.cc:240
  1469. #, c-format
  1470. msgid "The directory %s is being replaced by a non-directory"
  1471. msgstr ""
  1472. "Mae'r cyfeiriadur %s yn cael ei amnewid efo rhywbeth nid cyfeiriadur ydyw"
  1473. #: apt-inst/extract.cc:280
  1474. msgid "Failed to locate node in its hash bucket"
  1475. msgstr "Methwyd lleoli nôd yn ei fwced stwnsh"
  1476. #: apt-inst/extract.cc:284
  1477. msgid "The path is too long"
  1478. msgstr "Mae'r llwybr yn rhy hir"
  1479. # FIXME: wtf?
  1480. #: apt-inst/extract.cc:412
  1481. #, c-format
  1482. msgid "Overwrite package match with no version for %s"
  1483. msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s"
  1484. #: apt-inst/extract.cc:429
  1485. #, c-format
  1486. msgid "File %s/%s overwrites the one in the package %s"
  1487. msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s"
  1488. #. Only warn if there are no sources.list.d.
  1489. #. Only warn if there is no sources.list file.
  1490. #: apt-inst/extract.cc:462 apt-pkg/contrib/cdromutl.cc:179
  1491. #: apt-pkg/contrib/fileutl.cc:343 apt-pkg/sourcelist.cc:204
  1492. #: apt-pkg/sourcelist.cc:210 apt-pkg/acquire.cc:450 apt-pkg/init.cc:100
  1493. #: apt-pkg/init.cc:108 apt-pkg/clean.cc:33 apt-pkg/policy.cc:338
  1494. #: methods/mirror.cc:91
  1495. #, c-format
  1496. msgid "Unable to read %s"
  1497. msgstr "Ni ellir darllen %s"
  1498. #: apt-inst/extract.cc:489
  1499. #, c-format
  1500. msgid "Unable to stat %s"
  1501. msgstr "Ni ellir gwneud stat() o %s"
  1502. #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57
  1503. #, c-format
  1504. msgid "Failed to remove %s"
  1505. msgstr "Methwyd dileu %s"
  1506. #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108
  1507. #, c-format
  1508. msgid "Unable to create %s"
  1509. msgstr "Ni ellir creu %s"
  1510. #: apt-inst/deb/dpkgdb.cc:114
  1511. #, c-format
  1512. msgid "Failed to stat %sinfo"
  1513. msgstr "Methwyd stat() ar %sinfo"
  1514. #: apt-inst/deb/dpkgdb.cc:119
  1515. msgid "The info and temp directories need to be on the same filesystem"
  1516. msgstr "Rhaid i'r cyfeiriaduron 'info' a 'temp' for ar yr un system ffeiliau"
  1517. #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:1048
  1518. #: apt-pkg/pkgcachegen.cc:1152 apt-pkg/pkgcachegen.cc:1158
  1519. #: apt-pkg/pkgcachegen.cc:1304
  1520. #, fuzzy
  1521. msgid "Reading package lists"
  1522. msgstr "Yn Darllen Rhestrau Pecynnau"
  1523. #: apt-inst/deb/dpkgdb.cc:176
  1524. #, c-format
  1525. msgid "Failed to change to the admin dir %sinfo"
  1526. msgstr "Methwyd newid i'r cyfeiriadur gweinyddiaeth %sinfo"
  1527. # FIXME
  1528. #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351
  1529. #: apt-inst/deb/dpkgdb.cc:444
  1530. #, fuzzy
  1531. msgid "Internal error getting a package name"
  1532. msgstr "Gwall mewnol wrth gyrchu enw pecyn"
  1533. #: apt-inst/deb/dpkgdb.cc:201 apt-inst/deb/dpkgdb.cc:382
  1534. #, fuzzy
  1535. msgid "Reading file listing"
  1536. msgstr "Yn Darllen Rhestr Ffeiliau"
  1537. #: apt-inst/deb/dpkgdb.cc:212
  1538. #, c-format
  1539. msgid ""
  1540. "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  1541. "then make it empty and immediately re-install the same version of the "
  1542. "package!"
  1543. msgstr ""
  1544. "Methwyd agor y ffeil rhestr '%sinfo/%s'. Os na allwch adfer y ffeil hwn yna "
  1545. "gwnewch e'n wag ac yna ail sefydlwch yr un ferswin o'r pecyn yn syth!"
  1546. # FIXME
  1547. #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238
  1548. #, c-format
  1549. msgid "Failed reading the list file %sinfo/%s"
  1550. msgstr "Methwyd darllen y ffeil rhestr %sinfo/%s"
  1551. #: apt-inst/deb/dpkgdb.cc:262
  1552. #, fuzzy
  1553. msgid "Internal error getting a node"
  1554. msgstr "Gwall Mewnol wrth gael Nôd"
  1555. # FIXME: literal
  1556. #: apt-inst/deb/dpkgdb.cc:305
  1557. #, c-format
  1558. msgid "Failed to open the diversions file %sdiversions"
  1559. msgstr "Methwyd agor y ffeil dargyfeirio %sdiversions"
  1560. #: apt-inst/deb/dpkgdb.cc:320
  1561. msgid "The diversion file is corrupted"
  1562. msgstr "Mae'r ffeil dargyfeirio wed ei lygru"
  1563. #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332
  1564. #: apt-inst/deb/dpkgdb.cc:337
  1565. #, c-format
  1566. msgid "Invalid line in the diversion file: %s"
  1567. msgstr "Llinell annilys yn y ffeil dargyfeirio: %s"
  1568. #: apt-inst/deb/dpkgdb.cc:358
  1569. #, fuzzy
  1570. msgid "Internal error adding a diversion"
  1571. msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad"
  1572. #: apt-inst/deb/dpkgdb.cc:379
  1573. #, fuzzy
  1574. msgid "The pkg cache must be initialized first"
  1575. msgstr "Rhaid i'r storfa pecynnau gael ei ymgychwyn yn gyntaf"
  1576. #: apt-inst/deb/dpkgdb.cc:439
  1577. #, fuzzy, c-format
  1578. msgid "Failed to find a Package: header, offset %lu"
  1579. msgstr "Methwyd canfod pennawd \"Package:\". Atred: %lu"
  1580. #: apt-inst/deb/dpkgdb.cc:461
  1581. #, c-format
  1582. msgid "Bad ConfFile section in the status file. Offset %lu"
  1583. msgstr "Adrean \"ConfFile\" gwael yn y ffeil statws. Atred: %lu"
  1584. #: apt-inst/deb/dpkgdb.cc:466
  1585. #, c-format
  1586. msgid "Error parsing MD5. Offset %lu"
  1587. msgstr "Gwall wrth ramadegu MD5. Atred: %lu"
  1588. #: apt-inst/deb/debfile.cc:39 apt-inst/deb/debfile.cc:44
  1589. #, c-format
  1590. msgid "This is not a valid DEB archive, missing '%s' member"
  1591. msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll"
  1592. #. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
  1593. #: apt-inst/deb/debfile.cc:53
  1594. #, fuzzy, c-format
  1595. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1596. msgstr "Nid yw hyn yn archif DEB dilys, aelod '%s' ar goll"
  1597. #: apt-inst/deb/debfile.cc:113
  1598. #, c-format
  1599. msgid "Couldn't change to %s"
  1600. msgstr "Methwyd newid i %s"
  1601. #: apt-inst/deb/debfile.cc:154
  1602. #, fuzzy, c-format
  1603. msgid "Internal error, could not locate member %s"
  1604. msgstr "Gwall Mewnol, methwyd lleoli aelod %s"
  1605. #: apt-inst/deb/debfile.cc:189
  1606. msgid "Failed to locate a valid control file"
  1607. msgstr "Methwyd lleoli ffeil rheoli dilys"
  1608. #: apt-inst/deb/debfile.cc:274
  1609. #, fuzzy
  1610. msgid "Unparsable control file"
  1611. msgstr "Ffeil rheoli ni ellir ei ramadegu"
  1612. #: methods/bzip2.cc:60 methods/gzip.cc:52
  1613. msgid "Empty files can't be valid archives"
  1614. msgstr ""
  1615. #: methods/bzip2.cc:64
  1616. #, c-format
  1617. msgid "Couldn't open pipe for %s"
  1618. msgstr "Methwyd agor pibell ar gyfer %s"
  1619. #: methods/bzip2.cc:108
  1620. #, c-format
  1621. msgid "Read error from %s process"
  1622. msgstr "Gwall darllen o broses %s"
  1623. #: methods/bzip2.cc:140 methods/bzip2.cc:149 methods/copy.cc:43
  1624. #: methods/gzip.cc:92 methods/gzip.cc:101 methods/rred.cc:524
  1625. #: methods/rred.cc:533
  1626. msgid "Failed to stat"
  1627. msgstr "Methwyd stat()"
  1628. #: methods/bzip2.cc:146 methods/copy.cc:80 methods/gzip.cc:98
  1629. #: methods/rred.cc:530
  1630. msgid "Failed to set modification time"
  1631. msgstr "Methwyd gosod amser newid"
  1632. #: methods/cdrom.cc:199
  1633. #, c-format
  1634. msgid "Unable to read the cdrom database %s"
  1635. msgstr "Methwyd darllen y cronfa ddata CD-ROM %s"
  1636. #: methods/cdrom.cc:208
  1637. #, fuzzy
  1638. msgid ""
  1639. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1640. "cannot be used to add new CD-ROMs"
  1641. msgstr ""
  1642. "Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-"
  1643. "get update i ychwanegu CDau newydd."
  1644. #: methods/cdrom.cc:218
  1645. #, fuzzy
  1646. msgid "Wrong CD-ROM"
  1647. msgstr "CD Anghywir"
  1648. #: methods/cdrom.cc:245
  1649. #, c-format
  1650. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1651. msgstr ""
  1652. "Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio."
  1653. #: methods/cdrom.cc:250
  1654. #, fuzzy
  1655. msgid "Disk not found."
  1656. msgstr "Ffeil heb ei ganfod"
  1657. #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:265
  1658. msgid "File not found"
  1659. msgstr "Ffeil heb ei ganfod"
  1660. #: methods/file.cc:44
  1661. msgid "Invalid URI, local URIS must not start with //"
  1662. msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\""
  1663. #. Login must be before getpeername otherwise dante won't work.
  1664. #: methods/ftp.cc:168
  1665. msgid "Logging in"
  1666. msgstr "Yn mewngofnodi"
  1667. #: methods/ftp.cc:174
  1668. msgid "Unable to determine the peer name"
  1669. msgstr "Ni ellir darganfod enw'r cymar"
  1670. #: methods/ftp.cc:179
  1671. msgid "Unable to determine the local name"
  1672. msgstr "Ni ellir darganfod yr enw lleol"
  1673. #: methods/ftp.cc:210 methods/ftp.cc:238
  1674. #, fuzzy, c-format
  1675. msgid "The server refused the connection and said: %s"
  1676. msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s"
  1677. #: methods/ftp.cc:216
  1678. #, c-format
  1679. msgid "USER failed, server said: %s"
  1680. msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s"
  1681. #: methods/ftp.cc:223
  1682. #, c-format
  1683. msgid "PASS failed, server said: %s"
  1684. msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s"
  1685. #: methods/ftp.cc:243
  1686. msgid ""
  1687. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1688. "is empty."
  1689. msgstr ""
  1690. "Penodwyd gweinydd dirprwy ond dim sgript mengofnodi. (Mae Acquire::ftp::"
  1691. "ProxyLogin yn wag.)"
  1692. # FIXME
  1693. #: methods/ftp.cc:271
  1694. #, c-format
  1695. msgid "Login script command '%s' failed, server said: %s"
  1696. msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s"
  1697. #: methods/ftp.cc:297
  1698. #, c-format
  1699. msgid "TYPE failed, server said: %s"
  1700. msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s"
  1701. #: methods/ftp.cc:335 methods/ftp.cc:446 methods/rsh.cc:184 methods/rsh.cc:227
  1702. msgid "Connection timeout"
  1703. msgstr "Goramser cysylltu"
  1704. #: methods/ftp.cc:341
  1705. msgid "Server closed the connection"
  1706. msgstr "Caeodd y gweinydd y cysylltiad"
  1707. #: methods/ftp.cc:344 apt-pkg/contrib/fileutl.cc:820 methods/rsh.cc:191
  1708. msgid "Read error"
  1709. msgstr "Gwall darllen"
  1710. #: methods/ftp.cc:351 methods/rsh.cc:198
  1711. msgid "A response overflowed the buffer."
  1712. msgstr "Gorlifodd ateb y byffer."
  1713. #: methods/ftp.cc:368 methods/ftp.cc:380
  1714. msgid "Protocol corruption"
  1715. msgstr "Llygr protocol"
  1716. #: methods/ftp.cc:452 apt-pkg/contrib/fileutl.cc:862 methods/rsh.cc:233
  1717. msgid "Write error"
  1718. msgstr "Gwall ysgrifennu"
  1719. #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734
  1720. msgid "Could not create a socket"
  1721. msgstr "Methwyd creu soced"
  1722. #: methods/ftp.cc:703
  1723. msgid "Could not connect data socket, connection timed out"
  1724. msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad"
  1725. #: methods/ftp.cc:709
  1726. #, fuzzy
  1727. msgid "Could not connect passive socket."
  1728. msgstr "Methwyd cysylltu soced goddefol"
  1729. # FIXME
  1730. #: methods/ftp.cc:727
  1731. msgid "getaddrinfo was unable to get a listening socket"
  1732. msgstr "Methodd getaddrinfo gael soced gwrando"
  1733. #: methods/ftp.cc:741
  1734. msgid "Could not bind a socket"
  1735. msgstr "Methwyd rhwymo soced"
  1736. #: methods/ftp.cc:745
  1737. msgid "Could not listen on the socket"
  1738. msgstr "Methwyd gwrando ar y soced"
  1739. #: methods/ftp.cc:752
  1740. msgid "Could not determine the socket's name"
  1741. msgstr "Methwyd canfod enw'r soced"
  1742. #: methods/ftp.cc:784
  1743. msgid "Unable to send PORT command"
  1744. msgstr "Methwyd danfod gorchymyn PORT"
  1745. #: methods/ftp.cc:794
  1746. #, c-format
  1747. msgid "Unknown address family %u (AF_*)"
  1748. msgstr "Teulu cyfeiriad anhysbys %u (AF_*)"
  1749. #: methods/ftp.cc:803
  1750. #, c-format
  1751. msgid "EPRT failed, server said: %s"
  1752. msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s"
  1753. #: methods/ftp.cc:823
  1754. msgid "Data socket connect timed out"
  1755. msgstr "Goramserodd cysylltiad y soced data"
  1756. #: methods/ftp.cc:830
  1757. msgid "Unable to accept connection"
  1758. msgstr "Methwyd derbyn cysylltiad"
  1759. #: methods/ftp.cc:869 methods/http.cc:1023 methods/rsh.cc:303
  1760. msgid "Problem hashing file"
  1761. msgstr "Problem wrth stwnshio ffeil"
  1762. #: methods/ftp.cc:882
  1763. #, c-format
  1764. msgid "Unable to fetch file, server said '%s'"
  1765. msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'"
  1766. #: methods/ftp.cc:897 methods/rsh.cc:322
  1767. msgid "Data socket timed out"
  1768. msgstr "Goramserodd soced data"
  1769. #: methods/ftp.cc:927
  1770. #, c-format
  1771. msgid "Data transfer failed, server said '%s'"
  1772. msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'"
  1773. #. Get the files information
  1774. #: methods/ftp.cc:1004
  1775. msgid "Query"
  1776. msgstr "Ymholiad"
  1777. # FIXME
  1778. #: methods/ftp.cc:1116
  1779. msgid "Unable to invoke "
  1780. msgstr "Methwyd gweithredu "
  1781. #: methods/connect.cc:71
  1782. #, c-format
  1783. msgid "Connecting to %s (%s)"
  1784. msgstr "Yn cysylltu i %s (%s)"
  1785. #: methods/connect.cc:82
  1786. #, c-format
  1787. msgid "[IP: %s %s]"
  1788. msgstr "[IP: %s %s]"
  1789. #: methods/connect.cc:89
  1790. #, c-format
  1791. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1792. msgstr "Methwyd creu soced ar gyfer %s (f=%u t=%u p=%u)"
  1793. #: methods/connect.cc:95
  1794. #, c-format
  1795. msgid "Cannot initiate the connection to %s:%s (%s)."
  1796. msgstr "Ni ellir cychwyn y cysylltiad i %s:%s (%s)."
  1797. #: methods/connect.cc:103
  1798. #, c-format
  1799. msgid "Could not connect to %s:%s (%s), connection timed out"
  1800. msgstr "Methwyd cysylltu i %s:%s (%s), goramserodd y cysylltiad"
  1801. #: methods/connect.cc:121
  1802. #, c-format
  1803. msgid "Could not connect to %s:%s (%s)."
  1804. msgstr "Methwyd cysylltu i %s:%s (%s)."
  1805. #. We say this mainly because the pause here is for the
  1806. #. ssh connection that is still going
  1807. #: methods/connect.cc:149 methods/rsh.cc:425
  1808. #, c-format
  1809. msgid "Connecting to %s"
  1810. msgstr "Yn cysylltu i %s"
  1811. #: methods/connect.cc:168 methods/connect.cc:187
  1812. #, c-format
  1813. msgid "Could not resolve '%s'"
  1814. msgstr "Methwyd datrys '%s'"
  1815. #: methods/connect.cc:193
  1816. #, c-format
  1817. msgid "Temporary failure resolving '%s'"
  1818. msgstr "Methiant dros dro yn datrys '%s'"
  1819. #: methods/connect.cc:196
  1820. #, fuzzy, c-format
  1821. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1822. msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)"
  1823. #: methods/connect.cc:243
  1824. #, fuzzy, c-format
  1825. msgid "Unable to connect to %s:%s:"
  1826. msgstr "Methwyd cysylltu i %s %s:"
  1827. #. TRANSLATOR: %s is the trusted keyring parts directory
  1828. #: methods/gpgv.cc:71
  1829. #, fuzzy, c-format
  1830. msgid "No keyring installed in %s."
  1831. msgstr "Yn Erthylu'r Sefydliad."
  1832. #: methods/gpgv.cc:163
  1833. msgid ""
  1834. "Internal error: Good signature, but could not determine key fingerprint?!"
  1835. msgstr ""
  1836. #: methods/gpgv.cc:168
  1837. msgid "At least one invalid signature was encountered."
  1838. msgstr ""
  1839. #: methods/gpgv.cc:172
  1840. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1841. msgstr ""
  1842. #: methods/gpgv.cc:177
  1843. msgid "Unknown error executing gpgv"
  1844. msgstr ""
  1845. #: methods/gpgv.cc:211 methods/gpgv.cc:218
  1846. #, fuzzy
  1847. msgid "The following signatures were invalid:\n"
  1848. msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:"
  1849. #: methods/gpgv.cc:225
  1850. msgid ""
  1851. "The following signatures couldn't be verified because the public key is not "
  1852. "available:\n"
  1853. msgstr ""
  1854. #: methods/http.cc:385
  1855. msgid "Waiting for headers"
  1856. msgstr "Yn aros am benawdau"
  1857. #: methods/http.cc:531
  1858. #, c-format
  1859. msgid "Got a single header line over %u chars"
  1860. msgstr "Derbynnwyd llinell pennaws sengl dros %u nod"
  1861. #: methods/http.cc:539
  1862. msgid "Bad header line"
  1863. msgstr "Llinell pennawd gwael"
  1864. #: methods/http.cc:564 methods/http.cc:571
  1865. #, fuzzy
  1866. msgid "The HTTP server sent an invalid reply header"
  1867. msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys"
  1868. #: methods/http.cc:600
  1869. #, fuzzy
  1870. msgid "The HTTP server sent an invalid Content-Length header"
  1871. msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys"
  1872. #: methods/http.cc:615
  1873. #, fuzzy
  1874. msgid "The HTTP server sent an invalid Content-Range header"
  1875. msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys"
  1876. #: methods/http.cc:617
  1877. #, fuzzy
  1878. msgid "This HTTP server has broken range support"
  1879. msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri"
  1880. #: methods/http.cc:641
  1881. msgid "Unknown date format"
  1882. msgstr "Fformat dyddiad anhysbys"
  1883. #: methods/http.cc:800
  1884. msgid "Select failed"
  1885. msgstr "Methwyd dewis"
  1886. #: methods/http.cc:805
  1887. msgid "Connection timed out"
  1888. msgstr "Goramserodd y cysylltiad"
  1889. #: methods/http.cc:828
  1890. msgid "Error writing to output file"
  1891. msgstr "Gwall wrth ysgrifennu i ffeil allbwn"
  1892. #: methods/http.cc:859
  1893. msgid "Error writing to file"
  1894. msgstr "Gwall wrth ysgrifennu at ffeil"
  1895. #: methods/http.cc:887
  1896. msgid "Error writing to the file"
  1897. msgstr "Gwall wrth ysgrifennu at y ffeil"
  1898. #: methods/http.cc:901
  1899. #, fuzzy
  1900. msgid "Error reading from server. Remote end closed connection"
  1901. msgstr "Gwall wrth ddarllen o'r gweinydd: caeodd yr ochr pell y cysylltiad"
  1902. #: methods/http.cc:903
  1903. msgid "Error reading from server"
  1904. msgstr "Gwall wrth ddarllen o'r gweinydd"
  1905. #: methods/http.cc:1008 apt-pkg/contrib/mmap.cc:291
  1906. #, fuzzy
  1907. msgid "Failed to truncate file"
  1908. msgstr "Methwyd ysgrifennu ffeil %s"
  1909. #: methods/http.cc:1183
  1910. #, fuzzy
  1911. msgid "Bad header data"
  1912. msgstr "Data pennawd gwael"
  1913. #: methods/http.cc:1200 methods/http.cc:1255
  1914. msgid "Connection failed"
  1915. msgstr "Methodd y cysylltiad"
  1916. #: methods/http.cc:1347
  1917. msgid "Internal error"
  1918. msgstr "Gwall mewnol"
  1919. #: apt-pkg/contrib/mmap.cc:77
  1920. msgid "Can't mmap an empty file"
  1921. msgstr "Ni ellir defnyddio mmap() ar ffeil gwag"
  1922. #: apt-pkg/contrib/mmap.cc:89
  1923. #, fuzzy, c-format
  1924. msgid "Couldn't duplicate file descriptor %i"
  1925. msgstr "Methwyd agor pibell ar gyfer %s"
  1926. #: apt-pkg/contrib/mmap.cc:97 apt-pkg/contrib/mmap.cc:258
  1927. #, c-format
  1928. msgid "Couldn't make mmap of %lu bytes"
  1929. msgstr "Methwyd gwneud mmap() efo %lu beit"
  1930. #: apt-pkg/contrib/mmap.cc:124
  1931. #, fuzzy
  1932. msgid "Unable to close mmap"
  1933. msgstr "Ni ellir agor %s"
  1934. # FIXME
  1935. #: apt-pkg/contrib/mmap.cc:152 apt-pkg/contrib/mmap.cc:180
  1936. #, fuzzy
  1937. msgid "Unable to synchronize mmap"
  1938. msgstr "Methwyd gweithredu "
  1939. #: apt-pkg/contrib/mmap.cc:310
  1940. #, c-format
  1941. msgid ""
  1942. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. "
  1943. "Current value: %lu. (man 5 apt.conf)"
  1944. msgstr ""
  1945. #: apt-pkg/contrib/mmap.cc:409
  1946. #, c-format
  1947. msgid ""
  1948. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1949. "reached."
  1950. msgstr ""
  1951. #: apt-pkg/contrib/mmap.cc:412
  1952. msgid ""
  1953. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1954. msgstr ""
  1955. #. d means days, h means hours, min means minutes, s means seconds
  1956. #: apt-pkg/contrib/strutl.cc:371
  1957. #, c-format
  1958. msgid "%lid %lih %limin %lis"
  1959. msgstr ""
  1960. #. h means hours, min means minutes, s means seconds
  1961. #: apt-pkg/contrib/strutl.cc:378
  1962. #, c-format
  1963. msgid "%lih %limin %lis"
  1964. msgstr ""
  1965. #. min means minutes, s means seconds
  1966. #: apt-pkg/contrib/strutl.cc:385
  1967. #, c-format
  1968. msgid "%limin %lis"
  1969. msgstr ""
  1970. #. s means seconds
  1971. #: apt-pkg/contrib/strutl.cc:390
  1972. #, c-format
  1973. msgid "%lis"
  1974. msgstr ""
  1975. #: apt-pkg/contrib/strutl.cc:1138
  1976. #, c-format
  1977. msgid "Selection %s not found"
  1978. msgstr "Ni chanfuwyd y dewis %s"
  1979. #: apt-pkg/contrib/configuration.cc:452
  1980. #, c-format
  1981. msgid "Unrecognized type abbreviation: '%c'"
  1982. msgstr "Talgryniad math anhysbys: '%c'"
  1983. #: apt-pkg/contrib/configuration.cc:510
  1984. #, c-format
  1985. msgid "Opening configuration file %s"
  1986. msgstr "Yn agor y ffeil cyfluniad %s"
  1987. #: apt-pkg/contrib/configuration.cc:678
  1988. #, c-format
  1989. msgid "Syntax error %s:%u: Block starts with no name."
  1990. msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw."
  1991. # FIXME
  1992. #: apt-pkg/contrib/configuration.cc:697
  1993. #, fuzzy, c-format
  1994. msgid "Syntax error %s:%u: Malformed tag"
  1995. msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio"
  1996. #: apt-pkg/contrib/configuration.cc:714
  1997. #, c-format
  1998. msgid "Syntax error %s:%u: Extra junk after value"
  1999. msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth"
  2000. #: apt-pkg/contrib/configuration.cc:754
  2001. #, c-format
  2002. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2003. msgstr ""
  2004. "Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig"
  2005. #: apt-pkg/contrib/configuration.cc:761
  2006. #, c-format
  2007. msgid "Syntax error %s:%u: Too many nested includes"
  2008. msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol"
  2009. #: apt-pkg/contrib/configuration.cc:765 apt-pkg/contrib/configuration.cc:770
  2010. #, c-format
  2011. msgid "Syntax error %s:%u: Included from here"
  2012. msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn"
  2013. #: apt-pkg/contrib/configuration.cc:774
  2014. #, c-format
  2015. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2016. msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'"
  2017. #: apt-pkg/contrib/configuration.cc:777
  2018. #, fuzzy, c-format
  2019. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2020. msgstr ""
  2021. "Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig"
  2022. #: apt-pkg/contrib/configuration.cc:827
  2023. #, c-format
  2024. msgid "Syntax error %s:%u: Extra junk at end of file"
  2025. msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil"
  2026. #: apt-pkg/contrib/progress.cc:153
  2027. #, c-format
  2028. msgid "%c%s... Error!"
  2029. msgstr "%c%s... Gwall!"
  2030. #: apt-pkg/contrib/progress.cc:155
  2031. #, c-format
  2032. msgid "%c%s... Done"
  2033. msgstr "%c%s... Wedi Gorffen"
  2034. # FIXME
  2035. #: apt-pkg/contrib/cmndline.cc:77
  2036. #, c-format
  2037. msgid "Command line option '%c' [from %s] is not known."
  2038. msgstr "Ni adnabyddir yr opsiwn llinell orchymyn '%c' (o %s)."
  2039. #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111
  2040. #: apt-pkg/contrib/cmndline.cc:119
  2041. #, c-format
  2042. msgid "Command line option %s is not understood"
  2043. msgstr "Ni adnabyddir yr opsiwn llinell orchymyn %s"
  2044. #: apt-pkg/contrib/cmndline.cc:124
  2045. #, c-format
  2046. msgid "Command line option %s is not boolean"
  2047. msgstr "Nid yw'r opsiwn llinell orchymyn %s yn fŵleaidd"
  2048. #: apt-pkg/contrib/cmndline.cc:165 apt-pkg/contrib/cmndline.cc:186
  2049. #, c-format
  2050. msgid "Option %s requires an argument."
  2051. msgstr "Mae'r opsiwn %s yn mynnu ymresymiad."
  2052. #: apt-pkg/contrib/cmndline.cc:200 apt-pkg/contrib/cmndline.cc:206
  2053. #, c-format
  2054. msgid "Option %s: Configuration item specification must have an =<val>."
  2055. msgstr "Opsiwn %s: Rhaid i benodiad eitem cyfluniad gael =<gwerth>."
  2056. #: apt-pkg/contrib/cmndline.cc:236
  2057. #, c-format
  2058. msgid "Option %s requires an integer argument, not '%s'"
  2059. msgstr "Mae'r opsiwn %s yn mynnu ymresymiad cyfanrif, nid '%s'"
  2060. #: apt-pkg/contrib/cmndline.cc:267
  2061. #, c-format
  2062. msgid "Option '%s' is too long"
  2063. msgstr "Opsiwn '%s' yn rhy hir"
  2064. # FIXME: 'Sense'?
  2065. #: apt-pkg/contrib/cmndline.cc:300
  2066. #, c-format
  2067. msgid "Sense %s is not understood, try true or false."
  2068. msgstr "Ni ddeallir %s, ceiswich ddefnyddio 'true' neu 'false'."
  2069. #: apt-pkg/contrib/cmndline.cc:350
  2070. #, c-format
  2071. msgid "Invalid operation %s"
  2072. msgstr "Gweithred annilys %s"
  2073. #: apt-pkg/contrib/cdromutl.cc:52
  2074. #, c-format
  2075. msgid "Unable to stat the mount point %s"
  2076. msgstr "Ni ellir gwneud stat() o'r pwynt clymu %s"
  2077. #: apt-pkg/contrib/cdromutl.cc:175 apt-pkg/contrib/cdromutl.cc:209
  2078. #: apt-pkg/acquire.cc:456 apt-pkg/acquire.cc:481 apt-pkg/clean.cc:39
  2079. #: methods/mirror.cc:97
  2080. #, c-format
  2081. msgid "Unable to change to %s"
  2082. msgstr "Ni ellir newid i %s"
  2083. #: apt-pkg/contrib/cdromutl.cc:220
  2084. msgid "Failed to stat the cdrom"
  2085. msgstr "Methwyd gwneud stat() o'r CD-ROM"
  2086. #: apt-pkg/contrib/fileutl.cc:168
  2087. #, c-format
  2088. msgid "Not using locking for read only lock file %s"
  2089. msgstr "Ddim yn cloi'r ffeil clo darllen-yn-unig %s"
  2090. #: apt-pkg/contrib/fileutl.cc:173
  2091. #, c-format
  2092. msgid "Could not open lock file %s"
  2093. msgstr "Methwyd agor y ffeil clo %s"
  2094. #: apt-pkg/contrib/fileutl.cc:191
  2095. #, c-format
  2096. msgid "Not using locking for nfs mounted lock file %s"
  2097. msgstr "Ddim yn cloi'r ffeil clo ar NFS %s"
  2098. #: apt-pkg/contrib/fileutl.cc:195
  2099. #, c-format
  2100. msgid "Could not get lock %s"
  2101. msgstr "Methwyd cael y clo %s"
  2102. #: apt-pkg/contrib/fileutl.cc:335
  2103. #, c-format
  2104. msgid "List of files can't be created as '%s' is not a directory"
  2105. msgstr ""
  2106. #: apt-pkg/contrib/fileutl.cc:362
  2107. #, c-format
  2108. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2109. msgstr ""
  2110. #: apt-pkg/contrib/fileutl.cc:380
  2111. #, c-format
  2112. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2113. msgstr ""
  2114. #: apt-pkg/contrib/fileutl.cc:389
  2115. #, c-format
  2116. msgid ""
  2117. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2118. msgstr ""
  2119. #: apt-pkg/contrib/fileutl.cc:679
  2120. #, fuzzy, c-format
  2121. msgid "Waited for %s but it wasn't there"
  2122. msgstr "Arhoswyd am %s ond nid oedd e yna"
  2123. #: apt-pkg/contrib/fileutl.cc:691
  2124. #, c-format
  2125. msgid "Sub-process %s received a segmentation fault."
  2126. msgstr "Derbyniodd is-broses %s wall segmentu."
  2127. #: apt-pkg/contrib/fileutl.cc:693
  2128. #, fuzzy, c-format
  2129. msgid "Sub-process %s received signal %u."
  2130. msgstr "Derbyniodd is-broses %s wall segmentu."
  2131. #: apt-pkg/contrib/fileutl.cc:697
  2132. #, c-format
  2133. msgid "Sub-process %s returned an error code (%u)"
  2134. msgstr "Dychwelodd is-broses %s gôd gwall (%u)"
  2135. #: apt-pkg/contrib/fileutl.cc:699
  2136. #, c-format
  2137. msgid "Sub-process %s exited unexpectedly"
  2138. msgstr "Gorffenodd is-broses %s yn annisgwyl"
  2139. #: apt-pkg/contrib/fileutl.cc:764
  2140. #, c-format
  2141. msgid "Could not open file %s"
  2142. msgstr "Methwyd agor ffeil %s"
  2143. #: apt-pkg/contrib/fileutl.cc:781
  2144. #, fuzzy, c-format
  2145. msgid "Could not open file descriptor %d"
  2146. msgstr "Methwyd agor pibell ar gyfer %s"
  2147. # FIXME
  2148. #: apt-pkg/contrib/fileutl.cc:841
  2149. #, c-format
  2150. msgid "read, still have %lu to read but none left"
  2151. msgstr "o hyd %lu i ddarllen ond dim ar ôl"
  2152. # FIXME
  2153. #: apt-pkg/contrib/fileutl.cc:874
  2154. #, c-format
  2155. msgid "write, still have %lu to write but couldn't"
  2156. msgstr "o hyd %lu i ysgrifennu ond methwyd"
  2157. #: apt-pkg/contrib/fileutl.cc:1010
  2158. #, fuzzy, c-format
  2159. msgid "Problem closing the gzip file %s"
  2160. msgstr "Gwall wrth gau'r ffeil"
  2161. #: apt-pkg/contrib/fileutl.cc:1013
  2162. #, fuzzy, c-format
  2163. msgid "Problem closing the file %s"
  2164. msgstr "Gwall wrth gau'r ffeil"
  2165. #: apt-pkg/contrib/fileutl.cc:1018
  2166. #, fuzzy, c-format
  2167. msgid "Problem renaming the file %s to %s"
  2168. msgstr "Gwall wrth gyfamseru'r ffeil"
  2169. #: apt-pkg/contrib/fileutl.cc:1029
  2170. #, fuzzy, c-format
  2171. msgid "Problem unlinking the file %s"
  2172. msgstr "Gwall wrth dadgysylltu'r ffeil"
  2173. #: apt-pkg/contrib/fileutl.cc:1042
  2174. msgid "Problem syncing the file"
  2175. msgstr "Gwall wrth gyfamseru'r ffeil"
  2176. #: apt-pkg/pkgcache.cc:145
  2177. msgid "Empty package cache"
  2178. msgstr "Storfa pecyn gwag"
  2179. #: apt-pkg/pkgcache.cc:151
  2180. msgid "The package cache file is corrupted"
  2181. msgstr "Mae'r ffeil storfa pecyn yn llygredig"
  2182. #: apt-pkg/pkgcache.cc:156
  2183. msgid "The package cache file is an incompatible version"
  2184. msgstr "Mae'r ffeil storfa pecyn yn fersiwn anghyflawn"
  2185. # FIXME: capitalisation?
  2186. #: apt-pkg/pkgcache.cc:161
  2187. #, fuzzy, c-format
  2188. msgid "This APT does not support the versioning system '%s'"
  2189. msgstr "Nid yw'r APT yma yn cefnogi'r system fersiwn '%s'"
  2190. #: apt-pkg/pkgcache.cc:166
  2191. msgid "The package cache was built for a different architecture"
  2192. msgstr "Adeiladwyd y storfa pecyn ar gyfer pernsaerniaeth gwahanol"
  2193. #: apt-pkg/pkgcache.cc:299
  2194. msgid "Depends"
  2195. msgstr "Dibynnu"
  2196. #: apt-pkg/pkgcache.cc:299
  2197. msgid "PreDepends"
  2198. msgstr "CynDdibynnu"
  2199. #: apt-pkg/pkgcache.cc:299
  2200. msgid "Suggests"
  2201. msgstr "Awgrymu"
  2202. #: apt-pkg/pkgcache.cc:300
  2203. msgid "Recommends"
  2204. msgstr "Argymell"
  2205. #: apt-pkg/pkgcache.cc:300
  2206. msgid "Conflicts"
  2207. msgstr "Gwrthdaro"
  2208. #: apt-pkg/pkgcache.cc:300
  2209. msgid "Replaces"
  2210. msgstr "Amnewid"
  2211. #: apt-pkg/pkgcache.cc:301
  2212. msgid "Obsoletes"
  2213. msgstr "Darfodi"
  2214. #: apt-pkg/pkgcache.cc:301
  2215. msgid "Breaks"
  2216. msgstr ""
  2217. #: apt-pkg/pkgcache.cc:301
  2218. msgid "Enhances"
  2219. msgstr ""
  2220. #: apt-pkg/pkgcache.cc:312
  2221. msgid "important"
  2222. msgstr "pwysig"
  2223. #: apt-pkg/pkgcache.cc:312
  2224. msgid "required"
  2225. msgstr "angenrheidiol"
  2226. #: apt-pkg/pkgcache.cc:312
  2227. msgid "standard"
  2228. msgstr "safonnol"
  2229. #: apt-pkg/pkgcache.cc:313
  2230. msgid "optional"
  2231. msgstr "opsiynnol"
  2232. #: apt-pkg/pkgcache.cc:313
  2233. msgid "extra"
  2234. msgstr "ychwanegol"
  2235. #: apt-pkg/depcache.cc:125 apt-pkg/depcache.cc:154
  2236. #, fuzzy
  2237. msgid "Building dependency tree"
  2238. msgstr "Yn Aideladu Coeden Dibyniaeth"
  2239. #: apt-pkg/depcache.cc:126
  2240. #, fuzzy
  2241. msgid "Candidate versions"
  2242. msgstr "Fersiynau Posib"
  2243. #: apt-pkg/depcache.cc:155
  2244. #, fuzzy
  2245. msgid "Dependency generation"
  2246. msgstr "Cynhyrchaid Dibyniaeth"
  2247. #: apt-pkg/depcache.cc:175 apt-pkg/depcache.cc:208 apt-pkg/depcache.cc:212
  2248. #, fuzzy
  2249. msgid "Reading state information"
  2250. msgstr "Yn cyfuno manylion Ar Gael"
  2251. #: apt-pkg/depcache.cc:237
  2252. #, fuzzy, c-format
  2253. msgid "Failed to open StateFile %s"
  2254. msgstr "Methwyd agor %s"
  2255. #: apt-pkg/depcache.cc:243
  2256. #, fuzzy, c-format
  2257. msgid "Failed to write temporary StateFile %s"
  2258. msgstr "Methwyd ysgrifennu ffeil %s"
  2259. # FIXME: number?
  2260. #: apt-pkg/tagfile.cc:102
  2261. #, c-format
  2262. msgid "Unable to parse package file %s (1)"
  2263. msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
  2264. #: apt-pkg/tagfile.cc:189
  2265. #, c-format
  2266. msgid "Unable to parse package file %s (2)"
  2267. msgstr "Ni ellir gramadegu ffeil becynnau %s (2)"
  2268. #: apt-pkg/sourcelist.cc:92
  2269. #, fuzzy, c-format
  2270. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2271. msgstr ""
  2272. "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
  2273. #: apt-pkg/sourcelist.cc:95
  2274. #, fuzzy, c-format
  2275. msgid "Malformed line %lu in source list %s ([option] too short)"
  2276. msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
  2277. #: apt-pkg/sourcelist.cc:106
  2278. #, fuzzy, c-format
  2279. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2280. msgstr ""
  2281. "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
  2282. #: apt-pkg/sourcelist.cc:112
  2283. #, fuzzy, c-format
  2284. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2285. msgstr ""
  2286. "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
  2287. #: apt-pkg/sourcelist.cc:115
  2288. #, fuzzy, c-format
  2289. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2290. msgstr ""
  2291. "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
  2292. #: apt-pkg/sourcelist.cc:128
  2293. #, c-format
  2294. msgid "Malformed line %lu in source list %s (URI)"
  2295. msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (URI)"
  2296. #: apt-pkg/sourcelist.cc:130
  2297. #, c-format
  2298. msgid "Malformed line %lu in source list %s (dist)"
  2299. msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
  2300. #: apt-pkg/sourcelist.cc:133
  2301. #, c-format
  2302. msgid "Malformed line %lu in source list %s (URI parse)"
  2303. msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu URI)"
  2304. #: apt-pkg/sourcelist.cc:139
  2305. #, fuzzy, c-format
  2306. msgid "Malformed line %lu in source list %s (absolute dist)"
  2307. msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad llwyr)"
  2308. #: apt-pkg/sourcelist.cc:146
  2309. #, c-format
  2310. msgid "Malformed line %lu in source list %s (dist parse)"
  2311. msgstr ""
  2312. "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)"
  2313. #: apt-pkg/sourcelist.cc:244
  2314. #, c-format
  2315. msgid "Opening %s"
  2316. msgstr "Yn agor %s"
  2317. #: apt-pkg/sourcelist.cc:261 apt-pkg/cdrom.cc:444
  2318. #, c-format
  2319. msgid "Line %u too long in source list %s."
  2320. msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
  2321. #: apt-pkg/sourcelist.cc:281
  2322. #, c-format
  2323. msgid "Malformed line %u in source list %s (type)"
  2324. msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)"
  2325. #: apt-pkg/sourcelist.cc:285
  2326. #, fuzzy, c-format
  2327. msgid "Type '%s' is not known on line %u in source list %s"
  2328. msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s"
  2329. #: apt-pkg/packagemanager.cc:335 apt-pkg/packagemanager.cc:733
  2330. #, c-format
  2331. msgid ""
  2332. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2333. "under APT::Immediate-Configure for details. (%d)"
  2334. msgstr ""
  2335. # FIXME: %s may have an arbirrary length
  2336. #: apt-pkg/packagemanager.cc:548
  2337. #, c-format
  2338. msgid ""
  2339. "This installation run will require temporarily removing the essential "
  2340. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2341. "you really want to do it, activate the APT::Force-LoopBreak option."
  2342. msgstr ""
  2343. "Bydd y rhediad sefydlu hwn yn gorfodi tynnu'r pecyn angenrheidiol %s "
  2344. "oherwydd lŵp gwrthdaro/cynddibynu. Mae hyn yn aml yn wael, ond os ydych wir "
  2345. "eisiau ei wneud ef, gweithredwch yr opsiwn APT::Force-LoopBreak."
  2346. #: apt-pkg/packagemanager.cc:596
  2347. #, c-format
  2348. msgid ""
  2349. "Could not perform immediate configuration on already unpacked '%s'. Please "
  2350. "see man 5 apt.conf under APT::Immediate-Configure for details."
  2351. msgstr ""
  2352. #: apt-pkg/pkgrecords.cc:32
  2353. #, c-format
  2354. msgid "Index file type '%s' is not supported"
  2355. msgstr "Ni chynhelir y math ffeil mynegai '%s'"
  2356. #: apt-pkg/algorithms.cc:247
  2357. #, c-format
  2358. msgid ""
  2359. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2360. msgstr ""
  2361. "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar "
  2362. "ei gyfer."
  2363. #: apt-pkg/algorithms.cc:1158
  2364. msgid ""
  2365. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2366. "held packages."
  2367. msgstr ""
  2368. "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi "
  2369. "ei achosi gan pecynnau wedi eu dal."
  2370. #: apt-pkg/algorithms.cc:1160
  2371. msgid "Unable to correct problems, you have held broken packages."
  2372. msgstr ""
  2373. "Ni ellir cywiro'r problemau gan eich bod chi wedi dal pecynnau torredig."
  2374. #: apt-pkg/algorithms.cc:1436 apt-pkg/algorithms.cc:1438
  2375. #, fuzzy
  2376. msgid ""
  2377. "Some index files failed to download. They have been ignored, or old ones "
  2378. "used instead."
  2379. msgstr ""
  2380. "Methwodd rhai ffeiliau mynegai lawrlwytho: maent wedi eu anwybyddu, neu hen "
  2381. "rai eu defnyddio yn lle."
  2382. #: apt-pkg/acquire.cc:79
  2383. #, fuzzy, c-format
  2384. msgid "List directory %spartial is missing."
  2385. msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
  2386. #: apt-pkg/acquire.cc:83
  2387. #, fuzzy, c-format
  2388. msgid "Archives directory %spartial is missing."
  2389. msgstr "Mae'r cyfeiriadur archif %spartial ar goll."
  2390. #: apt-pkg/acquire.cc:91
  2391. #, fuzzy, c-format
  2392. msgid "Unable to lock directory %s"
  2393. msgstr "Ni ellir cloi'r cyfeiriadur rhestr"
  2394. #. only show the ETA if it makes sense
  2395. #. two days
  2396. #: apt-pkg/acquire.cc:857
  2397. #, c-format
  2398. msgid "Retrieving file %li of %li (%s remaining)"
  2399. msgstr ""
  2400. #: apt-pkg/acquire.cc:859
  2401. #, fuzzy, c-format
  2402. msgid "Retrieving file %li of %li"
  2403. msgstr "Yn Darllen Rhestr Ffeiliau"
  2404. #: apt-pkg/acquire-worker.cc:110
  2405. #, c-format
  2406. msgid "The method driver %s could not be found."
  2407. msgstr "Methwyd canfod y gyrrydd dull %s."
  2408. #: apt-pkg/acquire-worker.cc:159
  2409. #, c-format
  2410. msgid "Method %s did not start correctly"
  2411. msgstr "Ni gychwynodd y dull %s yn gywir"
  2412. #: apt-pkg/acquire-worker.cc:423
  2413. #, fuzzy, c-format
  2414. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2415. msgstr ""
  2416. "Newid Cyfrwng: Os gwelwch yn dda, rhowch y disg a'r label\n"
  2417. " '%s'\n"
  2418. "yn y gyrriant '%s' a gwasgwch Enter\n"
  2419. #: apt-pkg/init.cc:143
  2420. #, c-format
  2421. msgid "Packaging system '%s' is not supported"
  2422. msgstr "Ni chynhelir y system pecynnu '%s'"
  2423. #: apt-pkg/init.cc:159
  2424. #, fuzzy
  2425. msgid "Unable to determine a suitable packaging system type"
  2426. msgstr "Ni ellir canfod math system addas"
  2427. #: apt-pkg/clean.cc:56
  2428. #, c-format
  2429. msgid "Unable to stat %s."
  2430. msgstr "Ni ellir gwneud stat() o %s."
  2431. # FIXME: ...file
  2432. #: apt-pkg/srcrecords.cc:44
  2433. msgid "You must put some 'source' URIs in your sources.list"
  2434. msgstr "Rhaid i chi rhoi rhai URI 'source' yn eich ffeil sources.list"
  2435. #: apt-pkg/cachefile.cc:84
  2436. msgid "The package lists or status file could not be parsed or opened."
  2437. msgstr "Methwyd agor neu ramadegu'r ffeil rhestrau neu statws."
  2438. #: apt-pkg/cachefile.cc:88
  2439. msgid "You may want to run apt-get update to correct these problems"
  2440. msgstr "Efallai hoffech rhedege apt-get update er mwyn cywiro'r problemau hyn."
  2441. #: apt-pkg/cachefile.cc:106
  2442. msgid "The list of sources could not be read."
  2443. msgstr "Methwyd darllen y rhestr ffynhonellau."
  2444. # FIXME: literal
  2445. #: apt-pkg/policy.cc:375
  2446. #, fuzzy, c-format
  2447. msgid "Invalid record in the preferences file %s, no Package header"
  2448. msgstr "Cofnod annilys yn y ffeil hoffterau, dim pennawd 'Package'"
  2449. # FIXME: tense
  2450. #: apt-pkg/policy.cc:397
  2451. #, c-format
  2452. msgid "Did not understand pin type %s"
  2453. msgstr "Methwyd daeall y math pin %s"
  2454. #: apt-pkg/policy.cc:405
  2455. msgid "No priority (or zero) specified for pin"
  2456. msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin"
  2457. #: apt-pkg/pkgcachegen.cc:80
  2458. msgid "Cache has an incompatible versioning system"
  2459. msgstr "Mae can y storfa system fersiwn anghyfaddas"
  2460. #: apt-pkg/pkgcachegen.cc:187
  2461. #, fuzzy, c-format
  2462. msgid "Error occurred while processing %s (NewPackage)"
  2463. msgstr "Digwyddod gwall wrth brosesu %s (NewPackage)"
  2464. #: apt-pkg/pkgcachegen.cc:204
  2465. #, fuzzy, c-format
  2466. msgid "Error occurred while processing %s (UsePackage1)"
  2467. msgstr "Digwyddod gwall wrth brosesu %s (UsePackage1)"
  2468. #: apt-pkg/pkgcachegen.cc:242
  2469. #, fuzzy, c-format
  2470. msgid "Error occurred while processing %s (NewFileDesc1)"
  2471. msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
  2472. #: apt-pkg/pkgcachegen.cc:274
  2473. #, fuzzy, c-format
  2474. msgid "Error occurred while processing %s (UsePackage2)"
  2475. msgstr "Digwyddod gwall wrth brosesu %s (UsePackage2)"
  2476. #: apt-pkg/pkgcachegen.cc:278
  2477. #, fuzzy, c-format
  2478. msgid "Error occurred while processing %s (NewFileVer1)"
  2479. msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
  2480. #: apt-pkg/pkgcachegen.cc:295 apt-pkg/pkgcachegen.cc:305
  2481. #: apt-pkg/pkgcachegen.cc:313
  2482. #, fuzzy, c-format
  2483. msgid "Error occurred while processing %s (NewVersion%d)"
  2484. msgstr "Digwyddod gwall wrth brosesu %s (NewVersion1)"
  2485. #: apt-pkg/pkgcachegen.cc:309
  2486. #, fuzzy, c-format
  2487. msgid "Error occurred while processing %s (UsePackage3)"
  2488. msgstr "Digwyddod gwall wrth brosesu %s (UsePackage3)"
  2489. #: apt-pkg/pkgcachegen.cc:342
  2490. #, fuzzy, c-format
  2491. msgid "Error occurred while processing %s (NewFileDesc2)"
  2492. msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
  2493. #: apt-pkg/pkgcachegen.cc:348
  2494. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2495. msgstr ""
  2496. "Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin."
  2497. #: apt-pkg/pkgcachegen.cc:351
  2498. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2499. msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
  2500. #: apt-pkg/pkgcachegen.cc:354
  2501. #, fuzzy
  2502. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2503. msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin."
  2504. #: apt-pkg/pkgcachegen.cc:357
  2505. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2506. msgstr ""
  2507. "Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin."
  2508. #: apt-pkg/pkgcachegen.cc:386
  2509. #, fuzzy, c-format
  2510. msgid "Error occurred while processing %s (FindPkg)"
  2511. msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)"
  2512. #: apt-pkg/pkgcachegen.cc:400
  2513. #, fuzzy, c-format
  2514. msgid "Error occurred while processing %s (CollectFileProvides)"
  2515. msgstr "Digwyddod gwall wrth brosesu %s (CollectFileProvides)"
  2516. #: apt-pkg/pkgcachegen.cc:406
  2517. #, c-format
  2518. msgid "Package %s %s was not found while processing file dependencies"
  2519. msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil"
  2520. #: apt-pkg/pkgcachegen.cc:960
  2521. #, c-format
  2522. msgid "Couldn't stat source package list %s"
  2523. msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s"
  2524. #: apt-pkg/pkgcachegen.cc:1065
  2525. msgid "Collecting File Provides"
  2526. msgstr "Yn Casglu Darpariaethau Ffeil"
  2527. #: apt-pkg/pkgcachegen.cc:1243 apt-pkg/pkgcachegen.cc:1250
  2528. msgid "IO Error saving source cache"
  2529. msgstr "Gwall M/A wrth gadw'r storfa ffynhonell"
  2530. #: apt-pkg/acquire-item.cc:135
  2531. #, c-format
  2532. msgid "rename failed, %s (%s -> %s)."
  2533. msgstr "methwyd ailenwi, %s (%s -> %s)."
  2534. #: apt-pkg/acquire-item.cc:636
  2535. msgid "MD5Sum mismatch"
  2536. msgstr "Camgyfatebiaeth swm MD5"
  2537. #: apt-pkg/acquire-item.cc:900 apt-pkg/acquire-item.cc:1846
  2538. #: apt-pkg/acquire-item.cc:1989
  2539. #, fuzzy
  2540. msgid "Hash Sum mismatch"
  2541. msgstr "Camgyfatebiaeth swm MD5"
  2542. #: apt-pkg/acquire-item.cc:1388
  2543. #, c-format
  2544. msgid ""
  2545. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2546. "or malformed file)"
  2547. msgstr ""
  2548. # FIXME: number?
  2549. #: apt-pkg/acquire-item.cc:1403
  2550. #, fuzzy, c-format
  2551. msgid "Unable to find hash sum for '%s' in Release file"
  2552. msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
  2553. #: apt-pkg/acquire-item.cc:1439
  2554. msgid "There is no public key available for the following key IDs:\n"
  2555. msgstr ""
  2556. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2557. #. the time since then the file is invalid - formated in the same way as in
  2558. #. the download progress display (e.g. 7d 3h 42min 1s)
  2559. #: apt-pkg/acquire-item.cc:1476
  2560. #, c-format
  2561. msgid "Release file expired, ignoring %s (invalid since %s)"
  2562. msgstr ""
  2563. #: apt-pkg/acquire-item.cc:1497
  2564. #, c-format
  2565. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2566. msgstr ""
  2567. #: apt-pkg/acquire-item.cc:1530
  2568. #, c-format
  2569. msgid ""
  2570. "A error occurred during the signature verification. The repository is not "
  2571. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2572. msgstr ""
  2573. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2574. #: apt-pkg/acquire-item.cc:1540 apt-pkg/acquire-item.cc:1545
  2575. #, c-format
  2576. msgid "GPG error: %s: %s"
  2577. msgstr ""
  2578. # FIXME: case
  2579. #: apt-pkg/acquire-item.cc:1637
  2580. #, c-format
  2581. msgid ""
  2582. "I wasn't able to locate a file for the %s package. This might mean you need "
  2583. "to manually fix this package. (due to missing arch)"
  2584. msgstr ""
  2585. "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi "
  2586. "drwsio'r pecyn hyn a law. (Oherwydd pensaerniaeth coll.)"
  2587. #: apt-pkg/acquire-item.cc:1696
  2588. #, c-format
  2589. msgid ""
  2590. "I wasn't able to locate a file for the %s package. This might mean you need "
  2591. "to manually fix this package."
  2592. msgstr ""
  2593. "Methais i leoli ffeila r gyfer y pecyn %s. Fa all hyn olygu bod rhaid i chi "
  2594. "drwsio'r pecyn hyn a law."
  2595. #: apt-pkg/acquire-item.cc:1751
  2596. #, c-format
  2597. msgid ""
  2598. "The package index files are corrupted. No Filename: field for package %s."
  2599. msgstr ""
  2600. "Mae'r ffeiliau mynegai pecyn yn llygr. Dim maes Filename: gan y pecyn %s."
  2601. #: apt-pkg/acquire-item.cc:1838
  2602. msgid "Size mismatch"
  2603. msgstr "Camgyfatebiaeth maint"
  2604. # FIXME: number?
  2605. #: apt-pkg/indexrecords.cc:53
  2606. #, fuzzy, c-format
  2607. msgid "Unable to parse Release file %s"
  2608. msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
  2609. #: apt-pkg/indexrecords.cc:63
  2610. #, fuzzy, c-format
  2611. msgid "No sections in Release file %s"
  2612. msgstr "Sylwer, yn dewis %s yn hytrach na %s\n"
  2613. #: apt-pkg/indexrecords.cc:97
  2614. #, c-format
  2615. msgid "No Hash entry in Release file %s"
  2616. msgstr ""
  2617. #: apt-pkg/indexrecords.cc:110
  2618. #, fuzzy, c-format
  2619. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2620. msgstr "Llinell annilys yn y ffeil dargyfeirio: %s"
  2621. # FIXME: number?
  2622. #: apt-pkg/indexrecords.cc:125
  2623. #, fuzzy, c-format
  2624. msgid "Invalid 'Date' entry in Release file %s"
  2625. msgstr "Ni ellir gramadegu ffeil becynnau %s (1)"
  2626. #: apt-pkg/vendorlist.cc:71
  2627. #, c-format
  2628. msgid "Vendor block %s contains no fingerprint"
  2629. msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys"
  2630. #: apt-pkg/cdrom.cc:525
  2631. #, c-format
  2632. msgid ""
  2633. "Using CD-ROM mount point %s\n"
  2634. "Mounting CD-ROM\n"
  2635. msgstr ""
  2636. #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:631
  2637. msgid "Identifying.. "
  2638. msgstr ""
  2639. #: apt-pkg/cdrom.cc:562
  2640. #, c-format
  2641. msgid "Stored label: %s\n"
  2642. msgstr ""
  2643. #: apt-pkg/cdrom.cc:571 apt-pkg/cdrom.cc:847
  2644. #, fuzzy
  2645. msgid "Unmounting CD-ROM...\n"
  2646. msgstr "CD Anghywir"
  2647. #: apt-pkg/cdrom.cc:591
  2648. #, c-format
  2649. msgid "Using CD-ROM mount point %s\n"
  2650. msgstr ""
  2651. #: apt-pkg/cdrom.cc:609
  2652. msgid "Unmounting CD-ROM\n"
  2653. msgstr ""
  2654. #: apt-pkg/cdrom.cc:614
  2655. #, fuzzy
  2656. msgid "Waiting for disc...\n"
  2657. msgstr "Yn aros am benawdau"
  2658. #: apt-pkg/cdrom.cc:623
  2659. msgid "Mounting CD-ROM...\n"
  2660. msgstr ""
  2661. #: apt-pkg/cdrom.cc:642
  2662. msgid "Scanning disc for index files..\n"
  2663. msgstr ""
  2664. #: apt-pkg/cdrom.cc:684
  2665. #, c-format
  2666. msgid ""
  2667. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2668. "%zu signatures\n"
  2669. msgstr ""
  2670. #: apt-pkg/cdrom.cc:695
  2671. msgid ""
  2672. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2673. "wrong architecture?"
  2674. msgstr ""
  2675. #: apt-pkg/cdrom.cc:722
  2676. #, c-format
  2677. msgid "Found label '%s'\n"
  2678. msgstr ""
  2679. #: apt-pkg/cdrom.cc:751
  2680. msgid "That is not a valid name, try again.\n"
  2681. msgstr ""
  2682. #: apt-pkg/cdrom.cc:768
  2683. #, c-format
  2684. msgid ""
  2685. "This disc is called: \n"
  2686. "'%s'\n"
  2687. msgstr ""
  2688. #: apt-pkg/cdrom.cc:770
  2689. #, fuzzy
  2690. msgid "Copying package lists..."
  2691. msgstr "Yn Darllen Rhestrau Pecynnau"
  2692. #: apt-pkg/cdrom.cc:797
  2693. #, fuzzy
  2694. msgid "Writing new source list\n"
  2695. msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s."
  2696. #: apt-pkg/cdrom.cc:805
  2697. msgid "Source list entries for this disc are:\n"
  2698. msgstr ""
  2699. #: apt-pkg/indexcopy.cc:270 apt-pkg/indexcopy.cc:909
  2700. #, c-format
  2701. msgid "Wrote %i records.\n"
  2702. msgstr ""
  2703. #: apt-pkg/indexcopy.cc:272 apt-pkg/indexcopy.cc:911
  2704. #, c-format
  2705. msgid "Wrote %i records with %i missing files.\n"
  2706. msgstr ""
  2707. #: apt-pkg/indexcopy.cc:275 apt-pkg/indexcopy.cc:914
  2708. #, c-format
  2709. msgid "Wrote %i records with %i mismatched files\n"
  2710. msgstr ""
  2711. #: apt-pkg/indexcopy.cc:278 apt-pkg/indexcopy.cc:917
  2712. #, c-format
  2713. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2714. msgstr ""
  2715. #: apt-pkg/indexcopy.cc:537
  2716. #, fuzzy, c-format
  2717. msgid "Skipping nonexistent file %s"
  2718. msgstr "Yn agor y ffeil cyfluniad %s"
  2719. #: apt-pkg/indexcopy.cc:543
  2720. #, c-format
  2721. msgid "Can't find authentication record for: %s"
  2722. msgstr ""
  2723. #: apt-pkg/indexcopy.cc:549
  2724. #, fuzzy, c-format
  2725. msgid "Hash mismatch for: %s"
  2726. msgstr "Camgyfatebiaeth swm MD5"
  2727. #: apt-pkg/cacheset.cc:337
  2728. #, c-format
  2729. msgid "Release '%s' for '%s' was not found"
  2730. msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'"
  2731. #: apt-pkg/cacheset.cc:340
  2732. #, c-format
  2733. msgid "Version '%s' for '%s' was not found"
  2734. msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' "
  2735. #: apt-pkg/cacheset.cc:447
  2736. #, fuzzy, c-format
  2737. msgid "Couldn't find task '%s'"
  2738. msgstr "Methwyd canfod pecyn %s"
  2739. #: apt-pkg/cacheset.cc:454
  2740. #, fuzzy, c-format
  2741. msgid "Couldn't find any package by regex '%s'"
  2742. msgstr "Methwyd canfod pecyn %s"
  2743. #: apt-pkg/cacheset.cc:467
  2744. #, c-format
  2745. msgid "Can't select versions from package '%s' as it is purely virtual"
  2746. msgstr ""
  2747. #: apt-pkg/cacheset.cc:475 apt-pkg/cacheset.cc:483
  2748. #, c-format
  2749. msgid ""
  2750. "Can't select installed nor candidate version from package '%s' as it has "
  2751. "neither of them"
  2752. msgstr ""
  2753. #: apt-pkg/cacheset.cc:491
  2754. #, c-format
  2755. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2756. msgstr ""
  2757. #: apt-pkg/cacheset.cc:499
  2758. #, c-format
  2759. msgid "Can't select candidate version from package %s as it has no candidate"
  2760. msgstr ""
  2761. #: apt-pkg/cacheset.cc:507
  2762. #, c-format
  2763. msgid "Can't select installed version from package %s as it is not installed"
  2764. msgstr ""
  2765. #: apt-pkg/deb/dpkgpm.cc:54
  2766. #, fuzzy, c-format
  2767. msgid "Installing %s"
  2768. msgstr " Wedi Sefydlu: "
  2769. #: apt-pkg/deb/dpkgpm.cc:55 apt-pkg/deb/dpkgpm.cc:848
  2770. #, fuzzy, c-format
  2771. msgid "Configuring %s"
  2772. msgstr "Yn cysylltu i %s"
  2773. #: apt-pkg/deb/dpkgpm.cc:56 apt-pkg/deb/dpkgpm.cc:855
  2774. #, fuzzy, c-format
  2775. msgid "Removing %s"
  2776. msgstr "Yn agor %s"
  2777. #: apt-pkg/deb/dpkgpm.cc:57
  2778. #, fuzzy, c-format
  2779. msgid "Completely removing %s"
  2780. msgstr "Methwyd dileu %s"
  2781. #: apt-pkg/deb/dpkgpm.cc:58
  2782. #, c-format
  2783. msgid "Noting disappearance of %s"
  2784. msgstr ""
  2785. #: apt-pkg/deb/dpkgpm.cc:59
  2786. #, c-format
  2787. msgid "Running post-installation trigger %s"
  2788. msgstr ""
  2789. #. FIXME: use a better string after freeze
  2790. #: apt-pkg/deb/dpkgpm.cc:654
  2791. #, fuzzy, c-format
  2792. msgid "Directory '%s' missing"
  2793. msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll."
  2794. #: apt-pkg/deb/dpkgpm.cc:669 apt-pkg/deb/dpkgpm.cc:689
  2795. #, fuzzy, c-format
  2796. msgid "Could not open file '%s'"
  2797. msgstr "Methwyd agor ffeil %s"
  2798. #: apt-pkg/deb/dpkgpm.cc:841
  2799. #, fuzzy, c-format
  2800. msgid "Preparing %s"
  2801. msgstr "Yn agor %s"
  2802. #: apt-pkg/deb/dpkgpm.cc:842
  2803. #, fuzzy, c-format
  2804. msgid "Unpacking %s"
  2805. msgstr "Yn agor %s"
  2806. #: apt-pkg/deb/dpkgpm.cc:847
  2807. #, fuzzy, c-format
  2808. msgid "Preparing to configure %s"
  2809. msgstr "Yn agor y ffeil cyfluniad %s"
  2810. #: apt-pkg/deb/dpkgpm.cc:849
  2811. #, fuzzy, c-format
  2812. msgid "Installed %s"
  2813. msgstr " Wedi Sefydlu: "
  2814. #: apt-pkg/deb/dpkgpm.cc:854
  2815. #, c-format
  2816. msgid "Preparing for removal of %s"
  2817. msgstr ""
  2818. #: apt-pkg/deb/dpkgpm.cc:856
  2819. #, fuzzy, c-format
  2820. msgid "Removed %s"
  2821. msgstr "Argymell"
  2822. #: apt-pkg/deb/dpkgpm.cc:861
  2823. #, fuzzy, c-format
  2824. msgid "Preparing to completely remove %s"
  2825. msgstr "Yn agor y ffeil cyfluniad %s"
  2826. #: apt-pkg/deb/dpkgpm.cc:862
  2827. #, fuzzy, c-format
  2828. msgid "Completely removed %s"
  2829. msgstr "Methwyd dileu %s"
  2830. #: apt-pkg/deb/dpkgpm.cc:1082
  2831. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2832. msgstr ""
  2833. #: apt-pkg/deb/dpkgpm.cc:1113
  2834. msgid "Running dpkg"
  2835. msgstr ""
  2836. #: apt-pkg/deb/dpkgpm.cc:1338
  2837. msgid "No apport report written because MaxReports is reached already"
  2838. msgstr ""
  2839. #. check if its not a follow up error
  2840. #: apt-pkg/deb/dpkgpm.cc:1343
  2841. msgid "dependency problems - leaving unconfigured"
  2842. msgstr ""
  2843. #: apt-pkg/deb/dpkgpm.cc:1345
  2844. msgid ""
  2845. "No apport report written because the error message indicates its a followup "
  2846. "error from a previous failure."
  2847. msgstr ""
  2848. #: apt-pkg/deb/dpkgpm.cc:1351
  2849. msgid ""
  2850. "No apport report written because the error message indicates a disk full "
  2851. "error"
  2852. msgstr ""
  2853. #: apt-pkg/deb/dpkgpm.cc:1357
  2854. msgid ""
  2855. "No apport report written because the error message indicates a out of memory "
  2856. "error"
  2857. msgstr ""
  2858. #: apt-pkg/deb/dpkgpm.cc:1364
  2859. msgid ""
  2860. "No apport report written because the error message indicates a dpkg I/O error"
  2861. msgstr ""
  2862. #: apt-pkg/deb/debsystem.cc:69
  2863. #, c-format
  2864. msgid ""
  2865. "Unable to lock the administration directory (%s), is another process using "
  2866. "it?"
  2867. msgstr ""
  2868. #: apt-pkg/deb/debsystem.cc:72
  2869. #, fuzzy, c-format
  2870. msgid "Unable to lock the administration directory (%s), are you root?"
  2871. msgstr "Ni ellir cloi'r cyfeiriadur rhestr"
  2872. #. TRANSLATORS: the %s contains the recovery command, usually
  2873. #. dpkg --configure -a
  2874. #: apt-pkg/deb/debsystem.cc:88
  2875. #, c-format
  2876. msgid ""
  2877. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2878. msgstr ""
  2879. #: apt-pkg/deb/debsystem.cc:106
  2880. msgid "Not locked"
  2881. msgstr ""
  2882. #. FIXME: fallback to a default mirror here instead
  2883. #. and provide a config option to define that default
  2884. #: methods/mirror.cc:260
  2885. #, c-format
  2886. msgid "No mirror file '%s' found "
  2887. msgstr ""
  2888. #. FIXME: fallback to a default mirror here instead
  2889. #. and provide a config option to define that default
  2890. #: methods/mirror.cc:267
  2891. #, fuzzy, c-format
  2892. msgid "Can not read mirror file '%s'"
  2893. msgstr "Methwyd agor ffeil %s"
  2894. #: methods/mirror.cc:422
  2895. #, c-format
  2896. msgid "[Mirror: %s]"
  2897. msgstr ""
  2898. #: methods/rred.cc:503
  2899. #, c-format
  2900. msgid ""
  2901. "Could not patch %s with mmap and with file operation usage - the patch seems "
  2902. "to be corrupt."
  2903. msgstr ""
  2904. #: methods/rred.cc:508
  2905. #, c-format
  2906. msgid ""
  2907. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  2908. "to be corrupt."
  2909. msgstr ""
  2910. #: methods/rsh.cc:330
  2911. msgid "Connection closed prematurely"
  2912. msgstr "Caewyd y cysylltiad yn gynnar"
  2913. #, fuzzy
  2914. #~ msgid "Internal error, could not locate member"
  2915. #~ msgstr "Gwall Methwyd, methwyd lleoli aelod"
  2916. #, fuzzy
  2917. #~ msgid "Error occurred while processing %s (NewVersion2)"
  2918. #~ msgstr "Digwyddod gwall wrth brosesu %s (NewVersion2)"
  2919. #, fuzzy
  2920. #~ msgid "Malformed line %u in source list %s (vendor id)"
  2921. #~ msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)"
  2922. #, fuzzy
  2923. #~ msgid "Couldn't access keyring: '%s'"
  2924. #~ msgstr "Methwyd datrys '%s'"
  2925. #, fuzzy
  2926. #~ msgid "Could not patch file"
  2927. #~ msgstr "Methwyd agor ffeil %s"
  2928. #~ msgid " %4i %s\n"
  2929. #~ msgstr " %4i %s\n"
  2930. #~ msgid "%4i %s\n"
  2931. #~ msgstr "%4i %s\n"
  2932. #, fuzzy
  2933. #~ msgid "Processing triggers for %s"
  2934. #~ msgstr "Gwall wrth brosesu'r cyfeiriadur %s"
  2935. # FIXME: commas, wrapping
  2936. #~ msgid ""
  2937. #~ "Since you only requested a single operation it is extremely likely that\n"
  2938. #~ "the package is simply not installable and a bug report against\n"
  2939. #~ "that package should be filed."
  2940. #~ msgstr ""
  2941. #~ "Gan y gofynnoch am weithred syml yn unig, mae'n debygol nad yw'r pecyn\n"
  2942. #~ "yn sefydladwy a dylid cyflwyno adroddiad nam yn erbyn y pecyn hwnnw."
  2943. #, fuzzy
  2944. #~ msgid "Line %d too long (max %lu)"
  2945. #~ msgstr "Linell %d yn rhy hir (uchaf %d)"
  2946. #, fuzzy
  2947. #~ msgid "Line %d too long (max %d)"
  2948. #~ msgstr "Linell %d yn rhy hir (uchaf %d)"
  2949. #, fuzzy
  2950. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2951. #~ msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
  2952. #, fuzzy
  2953. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2954. #~ msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)"
  2955. #, fuzzy
  2956. #~ msgid "openpty failed\n"
  2957. #~ msgstr "Methwyd dewis"
  2958. #~ msgid "File date has changed %s"
  2959. #~ msgstr "Dyddiad ffeil wedi newid %s"
  2960. #, fuzzy
  2961. #~ msgid "Reading file list"
  2962. #~ msgstr "Yn Darllen Rhestr Ffeiliau"
  2963. #, fuzzy
  2964. #~ msgid "Could not execute "
  2965. #~ msgstr "Methwyd cael y clo %s"
  2966. #~ msgid "Abort? [Y/n] "
  2967. #~ msgstr "Erthylu? [I/n] "
  2968. #~ msgid "Write Error"
  2969. #~ msgstr "Gwall Ysgrifennu"
  2970. #~ msgid "File Not Found"
  2971. #~ msgstr "Ni Chanfuwyd Y Ffeil"