cy.po 85 KB

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