cy.po 114 KB

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