cy.po 85 KB

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