cy.po 81 KB

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