cy.po 105 KB

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