cy.po 88 KB

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