cy.po 86 KB

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