cy.po 81 KB

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