cy.po 89 KB

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