cy.po 113 KB

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