cy.po 111 KB

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