gl.po 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074
  1. # translation of apt_po_gl.po to galician
  2. # Galician translation of apt
  3. # This file is put in the public domain.
  4. #
  5. # Jacobo Tarrío <jtarrio@debian.org>, 2005, 2007, 2008.
  6. # mvillarino <mvillarino@users.sourceforge.net>, 2008.
  7. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2011.
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt 1.0.5\n"
  12. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  13. "POT-Creation-Date: 2015-09-11 23:36+0200\n"
  14. "PO-Revision-Date: 2011-05-12 15:28+0100\n"
  15. "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
  16. "Language-Team: galician <proxecto@trasno.net>\n"
  17. "Language: gl\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "X-Generator: KBabel 1.11.4\n"
  22. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  23. "X-Poedit-Language: Galician\n"
  24. #: cmdline/apt-cache.cc:149
  25. #, c-format
  26. msgid "Package %s version %s has an unmet dep:\n"
  27. msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n"
  28. #: cmdline/apt-cache.cc:319
  29. #, fuzzy
  30. msgid "apt-cache stats does not take any arguments"
  31. msgstr "A orde «update» non toma argumentos"
  32. #: cmdline/apt-cache.cc:325
  33. msgid "Total package names: "
  34. msgstr "Número total de nomes de paquetes : "
  35. #: cmdline/apt-cache.cc:327
  36. msgid "Total package structures: "
  37. msgstr "Estruturas de paquetes totais: "
  38. #: cmdline/apt-cache.cc:367
  39. msgid " Normal packages: "
  40. msgstr " Paquetes normais: "
  41. #: cmdline/apt-cache.cc:368
  42. msgid " Pure virtual packages: "
  43. msgstr " Paquetes virtuais puros: "
  44. #: cmdline/apt-cache.cc:369
  45. msgid " Single virtual packages: "
  46. msgstr " Paquetes virtuais simples: "
  47. #: cmdline/apt-cache.cc:370
  48. msgid " Mixed virtual packages: "
  49. msgstr " Paquetes virtuais mixtos: "
  50. #: cmdline/apt-cache.cc:371
  51. msgid " Missing: "
  52. msgstr " Non atopados: "
  53. #: cmdline/apt-cache.cc:373
  54. msgid "Total distinct versions: "
  55. msgstr "Número total de versións distintas: "
  56. #: cmdline/apt-cache.cc:375
  57. msgid "Total distinct descriptions: "
  58. msgstr "Número total de descricións distintas: "
  59. #: cmdline/apt-cache.cc:377
  60. msgid "Total dependencies: "
  61. msgstr "Número total de dependencias: "
  62. #: cmdline/apt-cache.cc:380
  63. msgid "Total ver/file relations: "
  64. msgstr "Número total de relacións versión/ficheiro: "
  65. #: cmdline/apt-cache.cc:382
  66. msgid "Total Desc/File relations: "
  67. msgstr "Número total de relacións descrición/ficheiro: "
  68. #: cmdline/apt-cache.cc:384
  69. msgid "Total Provides mappings: "
  70. msgstr "Número total de asignacións provistas: "
  71. #: cmdline/apt-cache.cc:440
  72. msgid "Total globbed strings: "
  73. msgstr "Número total de cadeas: "
  74. #: cmdline/apt-cache.cc:446
  75. msgid "Total slack space: "
  76. msgstr "Espazo de reserva total: "
  77. #: cmdline/apt-cache.cc:463
  78. msgid "Total space accounted for: "
  79. msgstr "Espazo total contabilizado: "
  80. #: cmdline/apt-cache.cc:605 cmdline/apt-cache.cc:1256
  81. #: apt-private/private-show.cc:58
  82. #, c-format
  83. msgid "Package file %s is out of sync."
  84. msgstr "O ficheiro de paquete %s está sen sincronizar."
  85. #: cmdline/apt-cache.cc:680 cmdline/apt-cache.cc:1541 cmdline/apt-cache.cc:1543
  86. #: cmdline/apt-cache.cc:1624 cmdline/apt-mark.cc:56 cmdline/apt-mark.cc:103
  87. #: cmdline/apt-mark.cc:229 apt-private/private-show.cc:173
  88. #: apt-private/private-show.cc:175
  89. msgid "No packages found"
  90. msgstr "Non se atopou ningún paquete"
  91. #: cmdline/apt-cache.cc:1356 apt-private/private-search.cc:41
  92. msgid "You must give at least one search pattern"
  93. msgstr "Debe fornecer cando menos un patrón de busca"
  94. #: cmdline/apt-cache.cc:1520
  95. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  96. msgstr ""
  97. #: cmdline/apt-cache.cc:1619 apt-pkg/cacheset.cc:754
  98. #, c-format
  99. msgid "Unable to locate package %s"
  100. msgstr "Non foi posíbel atopar o paquete %s"
  101. #: cmdline/apt-cache.cc:1649
  102. msgid "Package files:"
  103. msgstr "Ficheiros de paquetes:"
  104. #: cmdline/apt-cache.cc:1658 cmdline/apt-cache.cc:1766
  105. msgid "Cache is out of sync, can't x-ref a package file"
  106. msgstr ""
  107. "A caché está sen sincronizar, non se pode facer referencia a un ficheiro de "
  108. "paquetes"
  109. #. Show any packages have explicit pins
  110. #: cmdline/apt-cache.cc:1672
  111. msgid "Pinned packages:"
  112. msgstr "Paquetes inmobilizados:"
  113. #: cmdline/apt-cache.cc:1686 cmdline/apt-cache.cc:1743
  114. msgid "(not found)"
  115. msgstr "(non se atopou)"
  116. #. Print the package name and the version we are forcing to
  117. #: cmdline/apt-cache.cc:1700
  118. #, c-format
  119. msgid "%s -> %s with priority %d\n"
  120. msgstr ""
  121. #: cmdline/apt-cache.cc:1706
  122. msgid " Installed: "
  123. msgstr " Instalado: "
  124. #: cmdline/apt-cache.cc:1707
  125. msgid " Candidate: "
  126. msgstr " Candidato: "
  127. #: cmdline/apt-cache.cc:1725 cmdline/apt-cache.cc:1733
  128. msgid "(none)"
  129. msgstr "(ningún)"
  130. #: cmdline/apt-cache.cc:1740
  131. msgid " Package pin: "
  132. msgstr " Inmobilizado: "
  133. #. Show the priority tables
  134. #: cmdline/apt-cache.cc:1749
  135. msgid " Version table:"
  136. msgstr " Táboa de versións:"
  137. #: cmdline/apt-cache.cc:1871
  138. #, fuzzy
  139. msgid ""
  140. "Usage: apt-cache [options] command\n"
  141. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  142. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  143. "\n"
  144. "apt-cache is a low-level tool used to query information\n"
  145. "from APT's binary cache files\n"
  146. "\n"
  147. "Commands:\n"
  148. " gencaches - Build both the package and source cache\n"
  149. " showpkg - Show some general information for a single package\n"
  150. " showsrc - Show source records\n"
  151. " stats - Show some basic statistics\n"
  152. " dump - Show the entire file in a terse form\n"
  153. " dumpavail - Print an available file to stdout\n"
  154. " unmet - Show unmet dependencies\n"
  155. " search - Search the package list for a regex pattern\n"
  156. " show - Show a readable record for the package\n"
  157. " depends - Show raw dependency information for a package\n"
  158. " rdepends - Show reverse dependency information for a package\n"
  159. " pkgnames - List the names of all packages in the system\n"
  160. " dotty - Generate package graphs for GraphViz\n"
  161. " xvcg - Generate package graphs for xvcg\n"
  162. " policy - Show policy settings\n"
  163. "\n"
  164. "Options:\n"
  165. " -h This help text.\n"
  166. " -p=? The package cache.\n"
  167. " -s=? The source cache.\n"
  168. " -q Disable progress indicator.\n"
  169. " -i Show only important deps for the unmet command.\n"
  170. " -c=? Read this configuration file\n"
  171. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  172. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  173. msgstr ""
  174. "Uso: apt-cache [opcións] orde\n"
  175. " apt-cache [opcións] showpkg paquete1 [paquete2 ...]\n"
  176. " apt-cache [opcións] showsrc paquete1 [paquete2 ...]\n"
  177. "\n"
  178. "apt-cache é unha ferramenta de baixo nivel usada para consultar\n"
  179. "informacións dos ficheiros binarios da cache do APT\n"
  180. "\n"
  181. "Ordes:\n"
  182. " gencaches - Constrúe as caches de paquete e fonte\n"
  183. " showpkg - Mostra algunhas informacións xerais dun único paquete\n"
  184. " showsrc - Mostra rexistros da fonte\n"
  185. " stats - Mostra algunhas estatísticas básicas\n"
  186. " dump - Mostra o ficheiro enteiro nun formato concreto\n"
  187. " dumpavail - Imprime un ficheiro dispoñíbel para stdout\n"
  188. " unmet - Mostra dependencias non atopadas\n"
  189. " search - Busca na lista de paquetes por unha expresión regular\n"
  190. " show - Mostra un rexistro lexíbel para o paquete\n"
  191. " showauto - Mostra unha lista dos paquetes instalados automaticamente\n"
  192. " depends - Mostra informacións brutas de dependencia para un paquete\n"
  193. " rdepends - Mostra informacións de dependencia inversa para un paquete\n"
  194. " pkgnames - Lista os nomes de todos os paquetes no sistema\n"
  195. " dotty - Xera gráficos de paquete para o GraphViz\n"
  196. " xvcg - Xera gráficos de paquete para o xvcg\n"
  197. " policy - Mostra configuracións da política\n"
  198. "\n"
  199. "Options:\n"
  200. " -h Este texto de axuda.\n"
  201. " -p=? A cache do paquete.\n"
  202. " -s=? A cache da fonte.\n"
  203. " -q Desactiva o indicador de progreso.\n"
  204. " -i Mostra soamente dependencias importantes para a orde unmet.\n"
  205. " -c=? Ler este ficheiro de configuración\n"
  206. " -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/"
  207. "tmp\n"
  208. "Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais "
  209. "información.\n"
  210. #: cmdline/apt-cdrom.cc:77
  211. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  212. msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»"
  213. #: cmdline/apt-cdrom.cc:92
  214. #, fuzzy
  215. msgid "Please insert a Disc in the drive and press [Enter]"
  216. msgstr "Insira un disco na unidade e prema Intro"
  217. #: cmdline/apt-cdrom.cc:140
  218. #, c-format
  219. msgid "Failed to mount '%s' to '%s'"
  220. msgstr "Produciuse un fallo ao montar «%s» en «%s»"
  221. #: cmdline/apt-cdrom.cc:179
  222. msgid ""
  223. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  224. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  225. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  226. "mount point."
  227. msgstr ""
  228. #: cmdline/apt-cdrom.cc:183
  229. msgid "Repeat this process for the rest of the CDs in your set."
  230. msgstr "Repita este proceso para o resto de CD do seu conxunto."
  231. #: cmdline/apt-config.cc:48
  232. msgid "Arguments not in pairs"
  233. msgstr "Os argumentos non van en parellas"
  234. #: cmdline/apt-config.cc:88
  235. msgid ""
  236. "Usage: apt-config [options] command\n"
  237. "\n"
  238. "apt-config is a simple tool to read the APT config file\n"
  239. "\n"
  240. "Commands:\n"
  241. " shell - Shell mode\n"
  242. " dump - Show the configuration\n"
  243. "\n"
  244. "Options:\n"
  245. " -h This help text.\n"
  246. " -c=? Read this configuration file\n"
  247. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  248. msgstr ""
  249. "Uso: apt-config [opcións] orde\n"
  250. "\n"
  251. "apt-config é unha ferramenta simple para ler a configuración de APT\n"
  252. "\n"
  253. "Ordes:\n"
  254. " shell - Modo de intérprete de ordes\n"
  255. " dump - Amosa a configuración\n"
  256. "\n"
  257. "Opcións:\n"
  258. " -h Este texto de axuda.\n"
  259. " -c=? Le este ficheiro de configuración\n"
  260. " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
  261. "tmp\n"
  262. #: cmdline/apt-get.cc:211
  263. #, fuzzy, c-format
  264. msgid "Can not find a package for architecture '%s'"
  265. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  266. #: cmdline/apt-get.cc:287
  267. #, fuzzy, c-format
  268. msgid "Can not find a package '%s' with version '%s'"
  269. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  270. #: cmdline/apt-get.cc:290
  271. #, fuzzy, c-format
  272. msgid "Can not find a package '%s' with release '%s'"
  273. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  274. #: cmdline/apt-get.cc:327
  275. #, c-format
  276. msgid "Picking '%s' as source package instead of '%s'\n"
  277. msgstr "Tome «%s» como paquete fonte no canto de «%s»\n"
  278. #: cmdline/apt-get.cc:386
  279. #, fuzzy, c-format
  280. msgid "Can not find version '%s' of package '%s'"
  281. msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»"
  282. #: cmdline/apt-get.cc:417
  283. #, c-format
  284. msgid "Couldn't find package %s"
  285. msgstr "Non foi posíbel atopar o paquete %s"
  286. #: cmdline/apt-get.cc:422 cmdline/apt-mark.cc:78
  287. #: apt-private/private-install.cc:851
  288. #, c-format
  289. msgid "%s set to manually installed.\n"
  290. msgstr "%s cambiado a instalado manualmente.\n"
  291. #: cmdline/apt-get.cc:424 cmdline/apt-mark.cc:80
  292. #, c-format
  293. msgid "%s set to automatically installed.\n"
  294. msgstr "%s está estabelecido para a súa instalación automática.\n"
  295. #: cmdline/apt-get.cc:432 cmdline/apt-mark.cc:124
  296. msgid ""
  297. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  298. "instead."
  299. msgstr ""
  300. #: cmdline/apt-get.cc:501 cmdline/apt-get.cc:509
  301. msgid "Internal error, problem resolver broke stuff"
  302. msgstr "Produciuse un erro interno, o solucionador interno estragou cousas"
  303. #: cmdline/apt-get.cc:570
  304. msgid "Unable to lock the download directory"
  305. msgstr "Non é posíbel bloquear o directorio de descargas"
  306. #: cmdline/apt-get.cc:685
  307. msgid "Must specify at least one package to fetch source for"
  308. msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  309. #: cmdline/apt-get.cc:722 cmdline/apt-get.cc:1029
  310. #, c-format
  311. msgid "Unable to find a source package for %s"
  312. msgstr "Non sé posíbel atopar un paquete fonte para %s"
  313. #: cmdline/apt-get.cc:742
  314. #, c-format
  315. msgid ""
  316. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  317. "%s\n"
  318. msgstr ""
  319. "AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n"
  320. "%s\n"
  321. #: cmdline/apt-get.cc:747
  322. #, fuzzy, c-format
  323. msgid ""
  324. "Please use:\n"
  325. "bzr branch %s\n"
  326. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  327. msgstr ""
  328. "Empregue:\n"
  329. "bzr get %s\n"
  330. "para obter as últimas actualizacións (posibelmente non publicadas) do "
  331. "paquete.\n"
  332. #: cmdline/apt-get.cc:795
  333. #, c-format
  334. msgid "Skipping already downloaded file '%s'\n"
  335. msgstr "Omítese o ficheiro xa descargado «%s»\n"
  336. #. TRANSLATOR: The required space between number and unit is already included
  337. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  338. #: cmdline/apt-get.cc:825
  339. #, c-format
  340. msgid "Need to get %sB/%sB of source archives.\n"
  341. msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n"
  342. #. TRANSLATOR: The required space between number and unit is already included
  343. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  344. #: cmdline/apt-get.cc:830
  345. #, c-format
  346. msgid "Need to get %sB of source archives.\n"
  347. msgstr "Ten que recibir %sB de arquivos de fonte.\n"
  348. #: cmdline/apt-get.cc:836
  349. #, c-format
  350. msgid "Fetch source %s\n"
  351. msgstr "Obter fonte %s\n"
  352. #: cmdline/apt-get.cc:858
  353. msgid "Failed to fetch some archives."
  354. msgstr "Non se puideron obter algúns arquivos."
  355. #: cmdline/apt-get.cc:863 apt-private/private-install.cc:300
  356. msgid "Download complete and in download only mode"
  357. msgstr "Completouse a descarga no modo de só descargas"
  358. #: cmdline/apt-get.cc:888
  359. #, c-format
  360. msgid "Skipping unpack of already unpacked source in %s\n"
  361. msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n"
  362. #: cmdline/apt-get.cc:901
  363. #, c-format
  364. msgid "Unpack command '%s' failed.\n"
  365. msgstr "Fallou a orde de desempaquetado «%s».\n"
  366. #: cmdline/apt-get.cc:902
  367. #, c-format
  368. msgid "Check if the 'dpkg-dev' package is installed.\n"
  369. msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n"
  370. #: cmdline/apt-get.cc:930
  371. #, c-format
  372. msgid "Build command '%s' failed.\n"
  373. msgstr "Fallou a orde de construción de «%s».\n"
  374. #: cmdline/apt-get.cc:949
  375. msgid "Child process failed"
  376. msgstr "O proceso fillo fallou"
  377. #: cmdline/apt-get.cc:970
  378. msgid "Must specify at least one package to check builddeps for"
  379. msgstr ""
  380. "Ten que especificar polo menos un paquete para comprobarlle as dependencias "
  381. "de compilación"
  382. #: cmdline/apt-get.cc:988
  383. #, c-format
  384. msgid ""
  385. "No architecture information available for %s. See apt.conf(5) APT::"
  386. "Architectures for setup"
  387. msgstr ""
  388. #: cmdline/apt-get.cc:1006
  389. #, c-format
  390. msgid "Note, using directory '%s' to get the build dependencies\n"
  391. msgstr ""
  392. #: cmdline/apt-get.cc:1016
  393. #, fuzzy, c-format
  394. msgid "Note, using file '%s' to get the build dependencies\n"
  395. msgstr "Non se puideron procesar as dependencias de construción"
  396. #: cmdline/apt-get.cc:1041 cmdline/apt-get.cc:1044
  397. #, c-format
  398. msgid "Unable to get build-dependency information for %s"
  399. msgstr "Non é posíbel obter a información de dependencias de compilación de %s"
  400. #: cmdline/apt-get.cc:1064
  401. #, c-format
  402. msgid "%s has no build depends.\n"
  403. msgstr "%s non ten dependencias de compilación.\n"
  404. #: cmdline/apt-get.cc:1234
  405. #, fuzzy, c-format
  406. msgid ""
  407. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  408. "packages"
  409. msgstr ""
  410. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  411. "paquete %s"
  412. #: cmdline/apt-get.cc:1252
  413. #, c-format
  414. msgid ""
  415. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  416. "found"
  417. msgstr ""
  418. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  419. "paquete %s"
  420. #: cmdline/apt-get.cc:1275
  421. #, c-format
  422. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  423. msgstr ""
  424. "Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s "
  425. "é novo de máis"
  426. #: cmdline/apt-get.cc:1314
  427. #, fuzzy, c-format
  428. msgid ""
  429. "%s dependency for %s cannot be satisfied because candidate version of "
  430. "package %s can't satisfy version requirements"
  431. msgstr ""
  432. "A dependencia «%s» de %s non se pode satisfacer porque ningunha versión "
  433. "dispoñíbel do paquete %s satisfai os requirimentos de versión"
  434. #: cmdline/apt-get.cc:1320
  435. #, fuzzy, c-format
  436. msgid ""
  437. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  438. "version"
  439. msgstr ""
  440. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  441. "paquete %s"
  442. #: cmdline/apt-get.cc:1343
  443. #, c-format
  444. msgid "Failed to satisfy %s dependency for %s: %s"
  445. msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s"
  446. #: cmdline/apt-get.cc:1358
  447. #, c-format
  448. msgid "Build-dependencies for %s could not be satisfied."
  449. msgstr "Non se puideron satisfacer as dependencias de construción de %s."
  450. #: cmdline/apt-get.cc:1363
  451. msgid "Failed to process build dependencies"
  452. msgstr "Non se puideron procesar as dependencias de construción"
  453. #: cmdline/apt-get.cc:1553
  454. msgid "Supported modules:"
  455. msgstr "Módulos admitidos:"
  456. #: cmdline/apt-get.cc:1594
  457. #, fuzzy
  458. msgid ""
  459. "Usage: apt-get [options] command\n"
  460. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  461. " apt-get [options] source pkg1 [pkg2 ...]\n"
  462. "\n"
  463. "apt-get is a simple command line interface for downloading and\n"
  464. "installing packages. The most frequently used commands are update\n"
  465. "and install.\n"
  466. "\n"
  467. "Commands:\n"
  468. " update - Retrieve new lists of packages\n"
  469. " upgrade - Perform an upgrade\n"
  470. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  471. " remove - Remove packages\n"
  472. " autoremove - Remove automatically all unused packages\n"
  473. " purge - Remove packages and config files\n"
  474. " source - Download source archives\n"
  475. " build-dep - Configure build-dependencies for source packages\n"
  476. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  477. " dselect-upgrade - Follow dselect selections\n"
  478. " clean - Erase downloaded archive files\n"
  479. " autoclean - Erase old downloaded archive files\n"
  480. " check - Verify that there are no broken dependencies\n"
  481. " changelog - Download and display the changelog for the given package\n"
  482. " download - Download the binary package into the current directory\n"
  483. "\n"
  484. "Options:\n"
  485. " -h This help text.\n"
  486. " -q Loggable output - no progress indicator\n"
  487. " -qq No output except for errors\n"
  488. " -d Download only - do NOT install or unpack archives\n"
  489. " -s No-act. Perform ordering simulation\n"
  490. " -y Assume Yes to all queries and do not prompt\n"
  491. " -f Attempt to correct a system with broken dependencies in place\n"
  492. " -m Attempt to continue if archives are unlocatable\n"
  493. " -u Show a list of upgraded packages as well\n"
  494. " -b Build the source package after fetching it\n"
  495. " -V Show verbose version numbers\n"
  496. " -c=? Read this configuration file\n"
  497. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  498. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  499. "pages for more information and options.\n"
  500. " This APT has Super Cow Powers.\n"
  501. msgstr ""
  502. "Uso: apt-get [opcións] orde\n"
  503. " apt-get [opcións] install|remove paquete1 [paquete2 ...]\n"
  504. " apt-get [opcións] source paquete1 [paquete2 ...]\n"
  505. "\n"
  506. "apt-get é unha sinxela interface de liña de ordes para a descarga e\n"
  507. "instalación de paquetes. As ordes empregadas con máis frecuencia\n"
  508. "son actualizadas e instaladas. \n"
  509. "\n"
  510. "Ordes:\n"
  511. " update - Recupera unha nova lista de paquetes\n"
  512. " upgrade - Executa unha actualización\n"
  513. " install - Instala novos paquetes (o paquete é libc6 non libc6.deb)\n"
  514. " remove - Retira paquetes\n"
  515. " autoremove - Retira automaticamente todos os paquetes sen uso\n"
  516. " purge - Retira paquetes e ficheiros de configuración\n"
  517. " source - Descarga os arquivos de fontes\n"
  518. " build-dep - Configura as dependencias para paquetes de fontes\n"
  519. " dist-upgrade - Actualiza a distribución, vexa apt-get(8)\n"
  520. " dselect-upgrade - Segue as seleccións de dselect\n"
  521. " clean - Borra os arquivos de ficheiros\n"
  522. " autoclean - Borra os arquivos de ficheiros antigos\n"
  523. " check - Comproba que non haxa dependencias sen cumprir\n"
  524. " markauto - Marca os paquetes como instalados automaticamente\n"
  525. " unmarkauto - Marca os paquetes como instalados manualmente\n"
  526. " changelog - Descarga e mostra o rexistro de cambios para o paquete "
  527. "proposto\n"
  528. " download - Descarga o paquete binario no directorio actual\n"
  529. "\n"
  530. "Opçións:\n"
  531. " -h Este texto de axuda\n"
  532. " -q Saída rexistrábel - sen indicador de progreso\n"
  533. " -qq Sen saída, agás para os erros \n"
  534. " -d Só descarga - NON instala ou desempaqueta os arquivos\n"
  535. " -s Sen acción. Fai unha simulación\n"
  536. " -y Asume Si para todas as preguntas e non as presenta\n"
  537. " -f Tenta corrixir un sistema con dependencias non cumpridas\n"
  538. " -m Tenta continuar se os arquivos non son localizados\n"
  539. " -u Mostra tamén unha lista de paquetes actualizados\n"
  540. " -b Constrúe o paquete fonte despois de descargalo\n"
  541. " -V Mostra os números detallados da versión\n"
  542. " -c=? Ler este ficheiro de configuración\n"
  543. " -o=? Define unha opción arbitraria de configuración, p.ex. -o dir::cache=/"
  544. "tmp\n"
  545. "Vexa as páxinas do manual sobre apt-get(8), sources.list(5) e apt.conf(5) \n"
  546. "para obter mais información e opcións\n"
  547. " Este APT ten poderes da Super Vaca.\n"
  548. #: cmdline/apt-helper.cc:37
  549. msgid "Need one URL as argument"
  550. msgstr ""
  551. #: cmdline/apt-helper.cc:50
  552. #, fuzzy
  553. msgid "Must specify at least one pair url/filename"
  554. msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  555. #: cmdline/apt-helper.cc:73 cmdline/apt-helper.cc:77
  556. msgid "Download Failed"
  557. msgstr ""
  558. #: cmdline/apt-helper.cc:98 cmdline/apt-helper.cc:101
  559. #, c-format
  560. msgid "GetSrvRec failed for %s"
  561. msgstr ""
  562. #: cmdline/apt-helper.cc:117
  563. msgid ""
  564. "Usage: apt-helper [options] command\n"
  565. " apt-helper [options] download-file uri target-path\n"
  566. "\n"
  567. "apt-helper is a internal helper for apt\n"
  568. "\n"
  569. "Commands:\n"
  570. " download-file - download the given uri to the target-path\n"
  571. " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
  572. " auto-detect-proxy - detect proxy using apt.conf\n"
  573. "\n"
  574. " This APT helper has Super Meep Powers.\n"
  575. msgstr ""
  576. #: cmdline/apt-mark.cc:65
  577. #, fuzzy, c-format
  578. msgid "%s can not be marked as it is not installed.\n"
  579. msgstr "mais non está instalado"
  580. #: cmdline/apt-mark.cc:71
  581. #, fuzzy, c-format
  582. msgid "%s was already set to manually installed.\n"
  583. msgstr "%s cambiado a instalado manualmente.\n"
  584. #: cmdline/apt-mark.cc:73
  585. #, fuzzy, c-format
  586. msgid "%s was already set to automatically installed.\n"
  587. msgstr "%s está estabelecido para a súa instalación automática.\n"
  588. #: cmdline/apt-mark.cc:238
  589. #, fuzzy, c-format
  590. msgid "%s was already set on hold.\n"
  591. msgstr "%s xa é a versión máis recente.\n"
  592. #: cmdline/apt-mark.cc:240
  593. #, fuzzy, c-format
  594. msgid "%s was already not hold.\n"
  595. msgstr "%s xa é a versión máis recente.\n"
  596. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  597. #: apt-pkg/deb/dpkgpm.cc:1302 apt-pkg/contrib/fileutl.cc:850
  598. #: apt-pkg/contrib/gpgv.cc:207
  599. #, c-format
  600. msgid "Waited for %s but it wasn't there"
  601. msgstr "Agardouse por %s pero non estaba alí"
  602. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  603. #, fuzzy, c-format
  604. msgid "%s set on hold.\n"
  605. msgstr "%s cambiado a instalado manualmente.\n"
  606. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  607. #, fuzzy, c-format
  608. msgid "Canceled hold on %s.\n"
  609. msgstr "Non foi posíbel abrir %s"
  610. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  611. msgid "Executing dpkg failed. Are you root?"
  612. msgstr ""
  613. #: cmdline/apt-mark.cc:449
  614. msgid ""
  615. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  616. "\n"
  617. "apt-mark is a simple command line interface for marking packages\n"
  618. "as manually or automatically installed. It can also list marks.\n"
  619. "\n"
  620. "Commands:\n"
  621. " auto - Mark the given packages as automatically installed\n"
  622. " manual - Mark the given packages as manually installed\n"
  623. " hold - Mark a package as held back\n"
  624. " unhold - Unset a package set as held back\n"
  625. " showauto - Print the list of automatically installed packages\n"
  626. " showmanual - Print the list of manually installed packages\n"
  627. " showhold - Print the list of package on hold\n"
  628. "\n"
  629. "Options:\n"
  630. " -h This help text.\n"
  631. " -q Loggable output - no progress indicator\n"
  632. " -qq No output except for errors\n"
  633. " -s No-act. Just prints what would be done.\n"
  634. " -f read/write auto/manual marking in the given file\n"
  635. " -c=? Read this configuration file\n"
  636. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  637. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  638. msgstr ""
  639. #: cmdline/apt.cc:46
  640. msgid ""
  641. "Usage: apt [options] command\n"
  642. "\n"
  643. "CLI for apt.\n"
  644. "Basic commands: \n"
  645. " list - list packages based on package names\n"
  646. " search - search in package descriptions\n"
  647. " show - show package details\n"
  648. "\n"
  649. " update - update list of available packages\n"
  650. "\n"
  651. " install - install packages\n"
  652. " remove - remove packages\n"
  653. " autoremove - Remove automatically all unused packages\n"
  654. "\n"
  655. " upgrade - upgrade the system by installing/upgrading packages\n"
  656. " full-upgrade - upgrade the system by removing/installing/upgrading "
  657. "packages\n"
  658. "\n"
  659. " edit-sources - edit the source information file\n"
  660. msgstr ""
  661. #: methods/cdrom.cc:203
  662. #, c-format
  663. msgid "Unable to read the cdrom database %s"
  664. msgstr "Non é posíbel ler a base de datos do CD-ROM %s"
  665. #: methods/cdrom.cc:212
  666. msgid ""
  667. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  668. "cannot be used to add new CD-ROMs"
  669. msgstr ""
  670. "Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel "
  671. "empregar apt-get update para engadir un CD-ROM"
  672. #: methods/cdrom.cc:222
  673. msgid "Wrong CD-ROM"
  674. msgstr "CD-ROM incorrecto"
  675. #: methods/cdrom.cc:249
  676. #, c-format
  677. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  678. msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda."
  679. #: methods/cdrom.cc:254
  680. msgid "Disk not found."
  681. msgstr "Non se atopou o disco"
  682. #: methods/cdrom.cc:262 methods/file.cc:121 methods/rsh.cc:299
  683. msgid "File not found"
  684. msgstr "Non se atopou o ficheiro"
  685. #: methods/copy.cc:57 methods/gzip.cc:127 methods/rred.cc:663
  686. #: methods/rred.cc:673
  687. msgid "Failed to stat"
  688. msgstr "Non foi posíbel determinar o estado"
  689. #: methods/copy.cc:101 methods/gzip.cc:134 methods/rred.cc:670
  690. msgid "Failed to set modification time"
  691. msgstr "Non foi posíbel estabelecer a hora de modificación"
  692. #: methods/file.cc:49
  693. msgid "Invalid URI, local URIS must not start with //"
  694. msgstr "URI incorrecto, os URI locais non deben comezar por //"
  695. #. Login must be before getpeername otherwise dante won't work.
  696. #: methods/ftp.cc:177
  697. msgid "Logging in"
  698. msgstr "Identificándose"
  699. #: methods/ftp.cc:183
  700. msgid "Unable to determine the peer name"
  701. msgstr "Non é posíbel determinar o nome do outro extremo"
  702. #: methods/ftp.cc:188
  703. msgid "Unable to determine the local name"
  704. msgstr "Non é posíbel determinar o nome local"
  705. #: methods/ftp.cc:219 methods/ftp.cc:247
  706. #, c-format
  707. msgid "The server refused the connection and said: %s"
  708. msgstr "O servidor rexeitou a conexión e dixo: %s"
  709. #: methods/ftp.cc:225
  710. #, c-format
  711. msgid "USER failed, server said: %s"
  712. msgstr "Fallou a orde USER, o servidor dixo: %s"
  713. #: methods/ftp.cc:232
  714. #, c-format
  715. msgid "PASS failed, server said: %s"
  716. msgstr "Fallou a orde PASS, o servidor dixo: %s"
  717. #: methods/ftp.cc:252
  718. msgid ""
  719. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  720. "is empty."
  721. msgstr ""
  722. "Especificouse un servidor proxy pero non un script de conexión, Acquire::"
  723. "ftp::ProxyLogin está baleiro."
  724. #: methods/ftp.cc:282
  725. #, c-format
  726. msgid "Login script command '%s' failed, server said: %s"
  727. msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s"
  728. #: methods/ftp.cc:308
  729. #, c-format
  730. msgid "TYPE failed, server said: %s"
  731. msgstr "Fallou a orde TYPE, o servidor dixo: %s"
  732. #: methods/ftp.cc:346 methods/ftp.cc:458 methods/rsh.cc:213 methods/rsh.cc:261
  733. msgid "Connection timeout"
  734. msgstr "Esgotouse o tempo para a conexión"
  735. #: methods/ftp.cc:352
  736. msgid "Server closed the connection"
  737. msgstr "O servidor pechou a conexión"
  738. #: methods/ftp.cc:355 methods/rsh.cc:220 apt-pkg/contrib/fileutl.cc:1569
  739. #: apt-pkg/contrib/fileutl.cc:1578 apt-pkg/contrib/fileutl.cc:1583
  740. #: apt-pkg/contrib/fileutl.cc:1585
  741. msgid "Read error"
  742. msgstr "Produciuse un erro de lectura"
  743. #: methods/ftp.cc:362 methods/rsh.cc:227
  744. msgid "A response overflowed the buffer."
  745. msgstr "Unha resposta desbordou o búfer."
  746. #: methods/ftp.cc:379 methods/ftp.cc:391
  747. msgid "Protocol corruption"
  748. msgstr "Dano no protocolo"
  749. #: methods/ftp.cc:464 methods/rsh.cc:267 apt-pkg/contrib/fileutl.cc:946
  750. #: apt-pkg/contrib/fileutl.cc:1691 apt-pkg/contrib/fileutl.cc:1700
  751. #: apt-pkg/contrib/fileutl.cc:1705 apt-pkg/contrib/fileutl.cc:1707
  752. #: apt-pkg/contrib/fileutl.cc:1732
  753. msgid "Write error"
  754. msgstr "Produciuse un erro de escritura"
  755. #: methods/ftp.cc:703 methods/ftp.cc:709 methods/ftp.cc:744
  756. msgid "Could not create a socket"
  757. msgstr "Non é posíbel crear un socket"
  758. #: methods/ftp.cc:714
  759. msgid "Could not connect data socket, connection timed out"
  760. msgstr ""
  761. "Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión"
  762. #: methods/ftp.cc:718 methods/connect.cc:119 methods/rsh.cc:102
  763. msgid "Failed"
  764. msgstr "Fallou"
  765. #: methods/ftp.cc:720
  766. msgid "Could not connect passive socket."
  767. msgstr "Non é posíbel conectar o socket pasivo."
  768. #: methods/ftp.cc:737
  769. msgid "getaddrinfo was unable to get a listening socket"
  770. msgstr "getaddrinfo non puido obter un socket no que atender"
  771. #: methods/ftp.cc:751
  772. msgid "Could not bind a socket"
  773. msgstr "Non é posíbel ligar un socket"
  774. #: methods/ftp.cc:755
  775. msgid "Could not listen on the socket"
  776. msgstr "Non é posíbel escoitar no socket"
  777. #: methods/ftp.cc:762
  778. msgid "Could not determine the socket's name"
  779. msgstr "Non é posíbel determinar o nome do socket"
  780. #: methods/ftp.cc:794
  781. msgid "Unable to send PORT command"
  782. msgstr "Non é posíbel enviar a orde PORT"
  783. #: methods/ftp.cc:804
  784. #, c-format
  785. msgid "Unknown address family %u (AF_*)"
  786. msgstr "Familia de enderezos %u (AF_*) descoñecida"
  787. #: methods/ftp.cc:813
  788. #, c-format
  789. msgid "EPRT failed, server said: %s"
  790. msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s"
  791. #: methods/ftp.cc:833
  792. msgid "Data socket connect timed out"
  793. msgstr "A conexión do socket de datos esgotou o tempo"
  794. #: methods/ftp.cc:840
  795. msgid "Unable to accept connection"
  796. msgstr "Non é posíbel aceptar a conexión"
  797. #: methods/ftp.cc:880 methods/server.cc:391 methods/rsh.cc:337
  798. msgid "Problem hashing file"
  799. msgstr "Xurdiu un problema ao calcular o hash do ficheiro"
  800. #: methods/ftp.cc:893
  801. #, c-format
  802. msgid "Unable to fetch file, server said '%s'"
  803. msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»"
  804. #: methods/ftp.cc:908 methods/rsh.cc:356
  805. msgid "Data socket timed out"
  806. msgstr "O socket de datos esgotou o tempo"
  807. #: methods/ftp.cc:945
  808. #, c-format
  809. msgid "Data transfer failed, server said '%s'"
  810. msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»"
  811. #. Get the files information
  812. #: methods/ftp.cc:1028
  813. msgid "Query"
  814. msgstr "Petición"
  815. #: methods/ftp.cc:1142
  816. msgid "Unable to invoke "
  817. msgstr "Non é posíbel chamar a "
  818. #: methods/connect.cc:79
  819. #, c-format
  820. msgid "Connecting to %s (%s)"
  821. msgstr "Conectando a %s (%s)"
  822. #: methods/connect.cc:90
  823. #, c-format
  824. msgid "[IP: %s %s]"
  825. msgstr "[IP: %s %s]"
  826. #: methods/connect.cc:97
  827. #, c-format
  828. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  829. msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)"
  830. #: methods/connect.cc:103
  831. #, c-format
  832. msgid "Cannot initiate the connection to %s:%s (%s)."
  833. msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)."
  834. #: methods/connect.cc:111
  835. #, c-format
  836. msgid "Could not connect to %s:%s (%s), connection timed out"
  837. msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo"
  838. #: methods/connect.cc:129
  839. #, c-format
  840. msgid "Could not connect to %s:%s (%s)."
  841. msgstr "Non foi posíbel conectar a %s:%s (%s)."
  842. #. We say this mainly because the pause here is for the
  843. #. ssh connection that is still going
  844. #: methods/connect.cc:153 methods/rsh.cc:460
  845. #, c-format
  846. msgid "Connecting to %s"
  847. msgstr "Conectando a %s"
  848. #: methods/connect.cc:179 methods/connect.cc:198
  849. #, c-format
  850. msgid "Could not resolve '%s'"
  851. msgstr "Non foi posíbel atopar «%s»"
  852. #: methods/connect.cc:204
  853. #, c-format
  854. msgid "Temporary failure resolving '%s'"
  855. msgstr "Produciuse un fallo temporal ao buscar «%s»"
  856. #: methods/connect.cc:208
  857. #, fuzzy, c-format
  858. msgid "System error resolving '%s:%s'"
  859. msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)"
  860. #: methods/connect.cc:210
  861. #, c-format
  862. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  863. msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)"
  864. #: methods/connect.cc:257
  865. #, c-format
  866. msgid "Unable to connect to %s:%s:"
  867. msgstr "Non é posíbel conectar %s:%s:"
  868. #: methods/gpgv.cc:205 methods/gpgv.cc:215
  869. msgid "At least one invalid signature was encountered."
  870. msgstr "Atopouse polo menos unha sinatura incorrecta."
  871. #: methods/gpgv.cc:210
  872. msgid ""
  873. "Internal error: Good signature, but could not determine key fingerprint?!"
  874. msgstr ""
  875. "Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada "
  876. "dixital da chave"
  877. #: methods/gpgv.cc:217
  878. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  879. msgstr ""
  880. "Non é posíbel executar «apt-key» para verificar a sinatura (Está instalado "
  881. "gnupg?)"
  882. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  883. #: methods/gpgv.cc:223 apt-pkg/acquire-item.cc:650
  884. #, c-format
  885. msgid ""
  886. "Clearsigned file isn't valid, got '%s' (does the network require "
  887. "authentication?)"
  888. msgstr ""
  889. #: methods/gpgv.cc:227
  890. msgid "Unknown error executing apt-key"
  891. msgstr "Produciuse un erro descoñecido ao executar apt-key"
  892. #: methods/gpgv.cc:260 methods/gpgv.cc:267
  893. msgid "The following signatures were invalid:\n"
  894. msgstr "As seguintes sinaturas non eran correctas:\n"
  895. #: methods/gpgv.cc:274
  896. msgid ""
  897. "The following signatures couldn't be verified because the public key is not "
  898. "available:\n"
  899. msgstr ""
  900. "Non se puideron verificar as seguintes sinaturas porque a chave pública non "
  901. "está dispoñíbel:\n"
  902. #: methods/gzip.cc:79
  903. msgid "Empty files can't be valid archives"
  904. msgstr "Os ficheiros baleiros non poden ser arquivadores válidos"
  905. #: methods/http.cc:515
  906. msgid "Error writing to the file"
  907. msgstr "Produciuse un erro ao escribir no ficheiro"
  908. #: methods/http.cc:529
  909. msgid "Error reading from server. Remote end closed connection"
  910. msgstr ""
  911. "Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión"
  912. #: methods/http.cc:531
  913. msgid "Error reading from server"
  914. msgstr "Produciuse un erro ao ler do servidor"
  915. #: methods/http.cc:567
  916. msgid "Error writing to file"
  917. msgstr "Produciuse un erro ao escribir nun ficheiro"
  918. #: methods/http.cc:627
  919. msgid "Select failed"
  920. msgstr "Fallou a chamada a select"
  921. #: methods/http.cc:632
  922. msgid "Connection timed out"
  923. msgstr "A conexión esgotou o tempo"
  924. #: methods/http.cc:655
  925. msgid "Error writing to output file"
  926. msgstr "Produciuse un erro ao escribir no ficheiro de saída"
  927. #: methods/server.cc:52
  928. msgid "Waiting for headers"
  929. msgstr "Agardando polas cabeceiras"
  930. #: methods/server.cc:111
  931. msgid "Bad header line"
  932. msgstr "Liña de cabeceira incorrecta"
  933. #: methods/server.cc:136 methods/server.cc:143
  934. msgid "The HTTP server sent an invalid reply header"
  935. msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta"
  936. #: methods/server.cc:173
  937. msgid "The HTTP server sent an invalid Content-Length header"
  938. msgstr ""
  939. "O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta"
  940. #: methods/server.cc:200
  941. msgid "The HTTP server sent an invalid Content-Range header"
  942. msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto"
  943. #: methods/server.cc:202
  944. msgid "This HTTP server has broken range support"
  945. msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada"
  946. #: methods/server.cc:229
  947. msgid "Unknown date format"
  948. msgstr "Formato de datos descoñecido"
  949. #: methods/server.cc:535
  950. msgid "Bad header data"
  951. msgstr "Datos da cabeceira incorrectos"
  952. #: methods/server.cc:552 methods/server.cc:646
  953. msgid "Connection failed"
  954. msgstr "Produciuse un fallo na conexión"
  955. #: methods/server.cc:618
  956. #, c-format
  957. msgid ""
  958. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  959. "5 apt.conf)"
  960. msgstr ""
  961. #: methods/server.cc:741
  962. msgid "Internal error"
  963. msgstr "Produciuse un erro interno"
  964. #: apt-private/private-cacheset.cc:38 apt-private/private-search.cc:65
  965. msgid "Sorting"
  966. msgstr ""
  967. #: apt-private/private-cacheset.cc:127
  968. #, c-format
  969. msgid "Note, selecting '%s' for task '%s'\n"
  970. msgstr "Nota, seleccione «%s» para a tarefa «%s»\n"
  971. #: apt-private/private-cacheset.cc:133
  972. #, fuzzy, c-format
  973. msgid "Note, selecting '%s' for glob '%s'\n"
  974. msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
  975. #: apt-private/private-cacheset.cc:139
  976. #, c-format
  977. msgid "Note, selecting '%s' for regex '%s'\n"
  978. msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
  979. #: apt-private/private-cacheset.cc:157
  980. #, c-format
  981. msgid "Package %s is a virtual package provided by:\n"
  982. msgstr "O paquete %s é un paquete virtual fornecido por:\n"
  983. #: apt-private/private-cacheset.cc:168
  984. #, fuzzy
  985. msgid " [Installed]"
  986. msgstr " [Instalado]"
  987. #: apt-private/private-cacheset.cc:177
  988. msgid " [Not candidate version]"
  989. msgstr " [Non hai unha versión candidata]"
  990. #: apt-private/private-cacheset.cc:179
  991. msgid "You should explicitly select one to install."
  992. msgstr "Debería escoller un para instalar."
  993. #: apt-private/private-cacheset.cc:182
  994. #, c-format
  995. msgid ""
  996. "Package %s is not available, but is referred to by another package.\n"
  997. "This may mean that the package is missing, has been obsoleted, or\n"
  998. "is only available from another source\n"
  999. msgstr ""
  1000. "O paquete %s non está dispoñíbel, mais outro paquete fai referencia a el.\n"
  1001. "Isto pode significar que falta o paquete, está obsoleto ou só está\n"
  1002. "dispoñíbel noutra fonte.\n"
  1003. #: apt-private/private-cacheset.cc:200
  1004. msgid "However the following packages replace it:"
  1005. msgstr "Porén, os seguintes paquetes substitúeno:"
  1006. #: apt-private/private-cacheset.cc:213
  1007. #, c-format
  1008. msgid "Package '%s' has no installation candidate"
  1009. msgstr "O paquete «%s» non ten unha instalación candidata"
  1010. #: apt-private/private-cacheset.cc:226
  1011. #, c-format
  1012. msgid "Virtual packages like '%s' can't be removed\n"
  1013. msgstr "Non se poden retirar os paquetes virtuais como «%s»\n"
  1014. #. TRANSLATORS: Note, this is not an interactive question
  1015. #: apt-private/private-cacheset.cc:238 apt-private/private-install.cc:927
  1016. #, fuzzy, c-format
  1017. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1018. msgstr "O paquete %s non está instalado, así que non foi retirado\n"
  1019. #: apt-private/private-cacheset.cc:244 apt-private/private-install.cc:933
  1020. #, fuzzy, c-format
  1021. msgid "Package '%s' is not installed, so not removed\n"
  1022. msgstr "O paquete %s non está instalado, así que non foi retirado\n"
  1023. #: apt-private/private-cacheset.cc:289
  1024. #, c-format
  1025. msgid "Note, selecting '%s' instead of '%s'\n"
  1026. msgstr "Nota, seleccione «%s» no canto de «%s»\n"
  1027. #: apt-private/private-install.cc:87
  1028. msgid "Internal error, InstallPackages was called with broken packages!"
  1029. msgstr ""
  1030. "Produciuse un erro interno, chamouse a InstallPackages con paquetes "
  1031. "estragados."
  1032. #: apt-private/private-install.cc:96
  1033. msgid "Packages need to be removed but remove is disabled."
  1034. msgstr "Hai que retirar paquetes mais o retirado está desactivado."
  1035. #: apt-private/private-install.cc:103 apt-private/private-download.cc:69
  1036. msgid ""
  1037. "--force-yes is deprecated, use one of the options starting with --allow "
  1038. "instead."
  1039. msgstr ""
  1040. #: apt-private/private-install.cc:108
  1041. #, fuzzy
  1042. msgid ""
  1043. "Essential packages were removed and -y was used without --allow-remove-"
  1044. "essential."
  1045. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  1046. #: apt-private/private-install.cc:110
  1047. #, fuzzy
  1048. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  1049. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  1050. #: apt-private/private-install.cc:112
  1051. msgid ""
  1052. "Held packages were changed and -y was used without --allow-change-held-"
  1053. "packages."
  1054. msgstr ""
  1055. #: apt-private/private-install.cc:128
  1056. msgid "Internal error, Ordering didn't finish"
  1057. msgstr "Produciuse un erro interno; non rematou a ordenación"
  1058. #: apt-private/private-install.cc:166
  1059. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1060. msgstr ""
  1061. "Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages."
  1062. "debian.org"
  1063. #. TRANSLATOR: The required space between number and unit is already included
  1064. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1065. #: apt-private/private-install.cc:173
  1066. #, c-format
  1067. msgid "Need to get %sB/%sB of archives.\n"
  1068. msgstr "Ten que recibir %sB/%sB de arquivos.\n"
  1069. #. TRANSLATOR: The required space between number and unit is already included
  1070. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1071. #: apt-private/private-install.cc:178
  1072. #, c-format
  1073. msgid "Need to get %sB of archives.\n"
  1074. msgstr "Ten que recibir %sB de arquivos.\n"
  1075. #. TRANSLATOR: The required space between number and unit is already included
  1076. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1077. #: apt-private/private-install.cc:185
  1078. #, c-format
  1079. msgid "After this operation, %sB of additional disk space will be used.\n"
  1080. msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n"
  1081. #. TRANSLATOR: The required space between number and unit is already included
  1082. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1083. #: apt-private/private-install.cc:190
  1084. #, c-format
  1085. msgid "After this operation, %sB disk space will be freed.\n"
  1086. msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n"
  1087. #: apt-private/private-install.cc:202 apt-private/private-install.cc:224
  1088. msgid "Trivial Only specified but this is not a trivial operation."
  1089. msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial."
  1090. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1091. #. careful with hard to type or special characters (like non-breaking spaces)
  1092. #: apt-private/private-install.cc:206
  1093. msgid "Yes, do as I say!"
  1094. msgstr "Si, fai o que digo!"
  1095. #: apt-private/private-install.cc:208
  1096. #, c-format
  1097. msgid ""
  1098. "You are about to do something potentially harmful.\n"
  1099. "To continue type in the phrase '%s'\n"
  1100. " ?] "
  1101. msgstr ""
  1102. "Está a piques de facer algo perigoso.\n"
  1103. "Para continuar escriba a frase «%s»\n"
  1104. " ?] "
  1105. #: apt-private/private-install.cc:214 apt-private/private-install.cc:232
  1106. msgid "Abort."
  1107. msgstr "Interromper."
  1108. #: apt-private/private-install.cc:229
  1109. msgid "Do you want to continue?"
  1110. msgstr "Quere continuar?"
  1111. #: apt-private/private-install.cc:299
  1112. msgid "Some files failed to download"
  1113. msgstr "Non foi posíbel descargar algúns ficheiros"
  1114. #: apt-private/private-install.cc:306
  1115. msgid ""
  1116. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1117. "missing?"
  1118. msgstr ""
  1119. "Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-"
  1120. "missing."
  1121. #: apt-private/private-install.cc:310
  1122. msgid "--fix-missing and media swapping is not currently supported"
  1123. msgstr ""
  1124. "O emprego conxunto de --fix-missing e intercambio de discos non está admitido"
  1125. #: apt-private/private-install.cc:315
  1126. msgid "Unable to correct missing packages."
  1127. msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis."
  1128. #: apt-private/private-install.cc:316
  1129. msgid "Aborting install."
  1130. msgstr "Interrompendo a instalación."
  1131. #: apt-private/private-install.cc:341
  1132. msgid ""
  1133. "The following package disappeared from your system as\n"
  1134. "all files have been overwritten by other packages:"
  1135. msgid_plural ""
  1136. "The following packages disappeared from your system as\n"
  1137. "all files have been overwritten by other packages:"
  1138. msgstr[0] ""
  1139. "O seguinte paquete desapareceu do seu sistema e todos os \n"
  1140. "ficheiros serán sobrescritos por outros paquetes:"
  1141. msgstr[1] ""
  1142. "Os seguintes paquetes desapareceron do seu sistema e todos os \n"
  1143. "ficheiros serán sobrescritos por outros paquetes:"
  1144. #: apt-private/private-install.cc:348
  1145. msgid "Note: This is done automatically and on purpose by dpkg."
  1146. msgstr "Nota: Isto será feito automaticamente por dpkg."
  1147. #: apt-private/private-install.cc:370
  1148. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1149. msgstr ""
  1150. "Non se agarda que eliminemos cousas, non se pode iniciar o Retirado "
  1151. "automático"
  1152. #: apt-private/private-install.cc:463
  1153. msgid ""
  1154. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1155. "shouldn't happen. Please file a bug report against apt."
  1156. msgstr ""
  1157. "Vaia, semella que o Retirado automático destruíu algo que realmente\n"
  1158. "non debería ter feito. Informe deste erro de apt."
  1159. #.
  1160. #. if (Packages == 1)
  1161. #. {
  1162. #. c1out << std::endl;
  1163. #. c1out <<
  1164. #. _("Since you only requested a single operation it is extremely likely that\n"
  1165. #. "the package is simply not installable and a bug report against\n"
  1166. #. "that package should be filed.") << std::endl;
  1167. #. }
  1168. #.
  1169. #: apt-private/private-install.cc:466 apt-private/private-install.cc:622
  1170. msgid "The following information may help to resolve the situation:"
  1171. msgstr "A seguinte información pode axudar a solucionar a situación:"
  1172. #: apt-private/private-install.cc:470
  1173. msgid "Internal Error, AutoRemover broke stuff"
  1174. msgstr "Produciuse un erro interno, o Retirado automático estragou cousas"
  1175. #: apt-private/private-install.cc:479
  1176. msgid ""
  1177. "The following package was automatically installed and is no longer required:"
  1178. msgid_plural ""
  1179. "The following packages were automatically installed and are no longer "
  1180. "required:"
  1181. msgstr[0] ""
  1182. "O seguinte paquete foi instalado automaticamente e xa non é necesario:"
  1183. msgstr[1] ""
  1184. "Os seguintes paquetes foron instalados automaticamente e xa non son "
  1185. "necesarios:"
  1186. #: apt-private/private-install.cc:486
  1187. #, c-format
  1188. msgid "%lu package was automatically installed and is no longer required.\n"
  1189. msgid_plural ""
  1190. "%lu packages were automatically installed and are no longer required.\n"
  1191. msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n"
  1192. msgstr[1] ""
  1193. "%lu paquetes foron instalados automaticamente e xa non son necesarios.\n"
  1194. #: apt-private/private-install.cc:488
  1195. #, fuzzy
  1196. msgid "Use 'apt-get autoremove' to remove it."
  1197. msgid_plural "Use 'apt-get autoremove' to remove them."
  1198. msgstr[0] "Empregue «apt-get autoremove» para eliminalos."
  1199. msgstr[1] "Empregue «apt-get autoremove» para eliminalos."
  1200. #: apt-private/private-install.cc:582
  1201. msgid "You might want to run 'apt-get -f install' to correct these:"
  1202. msgstr "Pode querer executar «apt-get -f install» para corrixir isto:"
  1203. #: apt-private/private-install.cc:584
  1204. msgid ""
  1205. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1206. "solution)."
  1207. msgstr ""
  1208. "Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou "
  1209. "especifique unha solución)."
  1210. #: apt-private/private-install.cc:607
  1211. msgid ""
  1212. "Some packages could not be installed. This may mean that you have\n"
  1213. "requested an impossible situation or if you are using the unstable\n"
  1214. "distribution that some required packages have not yet been created\n"
  1215. "or been moved out of Incoming."
  1216. msgstr ""
  1217. "Non foi posíbel instalar algúns paquetes. Isto pode significar que "
  1218. "solicitou\n"
  1219. "unha situación imposíbel ou, se emprega a distribución inestábel, que\n"
  1220. "algúns paquetes solicitados aínda non se creasen ou que se movesen da "
  1221. "entrada."
  1222. #: apt-private/private-install.cc:628
  1223. msgid "Broken packages"
  1224. msgstr "Paquetes estragados"
  1225. #: apt-private/private-install.cc:697
  1226. #, fuzzy
  1227. msgid "The following additional packages will be installed:"
  1228. msgstr "Instalaranse os seguintes paquetes extra:"
  1229. #: apt-private/private-install.cc:786
  1230. msgid "Suggested packages:"
  1231. msgstr "Paquetes suxeridos:"
  1232. #: apt-private/private-install.cc:788
  1233. msgid "Recommended packages:"
  1234. msgstr "Paquetes recomendados:"
  1235. #: apt-private/private-install.cc:810
  1236. #, c-format
  1237. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1238. msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n"
  1239. #: apt-private/private-install.cc:814
  1240. #, c-format
  1241. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1242. msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n"
  1243. #: apt-private/private-install.cc:826
  1244. #, c-format
  1245. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1246. msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n"
  1247. #. TRANSLATORS: First string is package name, second is version
  1248. #: apt-private/private-install.cc:832
  1249. #, fuzzy, c-format
  1250. msgid "%s is already the newest version (%s).\n"
  1251. msgstr "%s xa é a versión máis recente.\n"
  1252. #: apt-private/private-install.cc:880
  1253. #, c-format
  1254. msgid "Selected version '%s' (%s) for '%s'\n"
  1255. msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
  1256. #: apt-private/private-install.cc:885
  1257. #, c-format
  1258. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1259. msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n"
  1260. #: apt-private/private-list.cc:121
  1261. msgid "Listing"
  1262. msgstr ""
  1263. #: apt-private/private-list.cc:151
  1264. #, c-format
  1265. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1266. msgid_plural ""
  1267. "There are %i additional versions. Please use the '-a' switch to see them."
  1268. msgstr[0] ""
  1269. msgstr[1] ""
  1270. #: apt-private/private-cachefile.cc:96
  1271. msgid "Correcting dependencies..."
  1272. msgstr "Corrixindo as dependencias..."
  1273. #: apt-private/private-cachefile.cc:99
  1274. msgid " failed."
  1275. msgstr " fallou."
  1276. #: apt-private/private-cachefile.cc:102
  1277. msgid "Unable to correct dependencies"
  1278. msgstr "Non foi posíbel corrixir as dependencias."
  1279. #: apt-private/private-cachefile.cc:105
  1280. msgid "Unable to minimize the upgrade set"
  1281. msgstr "Non foi posíbel minimizar o conxunto de anovacións"
  1282. #: apt-private/private-cachefile.cc:107
  1283. msgid " Done"
  1284. msgstr " Feito"
  1285. #: apt-private/private-cachefile.cc:111
  1286. msgid "You might want to run 'apt-get -f install' to correct these."
  1287. msgstr "Pode querer executar «apt-get -f install» para corrixilos."
  1288. #: apt-private/private-cachefile.cc:114
  1289. msgid "Unmet dependencies. Try using -f."
  1290. msgstr "Dependencias incumpridas. Probe a empregar -f."
  1291. #: apt-private/private-output.cc:105 apt-private/private-show.cc:84
  1292. #: apt-private/private-show.cc:89
  1293. msgid "unknown"
  1294. msgstr ""
  1295. #: apt-private/private-output.cc:272
  1296. #, fuzzy, c-format
  1297. msgid "[installed,upgradable to: %s]"
  1298. msgstr " [Instalado]"
  1299. #: apt-private/private-output.cc:275
  1300. #, fuzzy
  1301. msgid "[installed,local]"
  1302. msgstr " [Instalado]"
  1303. #: apt-private/private-output.cc:277
  1304. msgid "[installed,auto-removable]"
  1305. msgstr ""
  1306. #: apt-private/private-output.cc:279
  1307. #, fuzzy
  1308. msgid "[installed,automatic]"
  1309. msgstr " [Instalado]"
  1310. #: apt-private/private-output.cc:281
  1311. #, fuzzy
  1312. msgid "[installed]"
  1313. msgstr " [Instalado]"
  1314. #: apt-private/private-output.cc:284
  1315. #, c-format
  1316. msgid "[upgradable from: %s]"
  1317. msgstr ""
  1318. #: apt-private/private-output.cc:288
  1319. msgid "[residual-config]"
  1320. msgstr ""
  1321. #: apt-private/private-output.cc:402
  1322. #, c-format
  1323. msgid "but %s is installed"
  1324. msgstr "mais %s está instalado"
  1325. #: apt-private/private-output.cc:404
  1326. #, c-format
  1327. msgid "but %s is to be installed"
  1328. msgstr "mais vaise instalar %s"
  1329. #: apt-private/private-output.cc:411
  1330. msgid "but it is not installable"
  1331. msgstr "mais non é instalábel"
  1332. #: apt-private/private-output.cc:413
  1333. msgid "but it is a virtual package"
  1334. msgstr "mais é un paquete virtual"
  1335. #: apt-private/private-output.cc:416
  1336. msgid "but it is not installed"
  1337. msgstr "mais non está instalado"
  1338. #: apt-private/private-output.cc:416
  1339. msgid "but it is not going to be installed"
  1340. msgstr "mais non se vai a instalar"
  1341. #: apt-private/private-output.cc:421
  1342. msgid " or"
  1343. msgstr " ou"
  1344. #: apt-private/private-output.cc:435 apt-private/private-output.cc:445
  1345. msgid "The following packages have unmet dependencies:"
  1346. msgstr "Os seguintes paquetes teñen dependencias sen cumprir:"
  1347. #: apt-private/private-output.cc:455
  1348. msgid "The following NEW packages will be installed:"
  1349. msgstr "Os seguintes paquetes NOVOS hanse instalar:"
  1350. #: apt-private/private-output.cc:465
  1351. msgid "The following packages will be REMOVED:"
  1352. msgstr "Vanse RETIRAR os paquetes seguintes:"
  1353. #: apt-private/private-output.cc:481
  1354. msgid "The following packages have been kept back:"
  1355. msgstr "Consérvanse os seguintes paquetes:"
  1356. #: apt-private/private-output.cc:497
  1357. msgid "The following packages will be upgraded:"
  1358. msgstr "Vanse anovar os paquetes seguintes:"
  1359. #: apt-private/private-output.cc:512
  1360. msgid "The following packages will be DOWNGRADED:"
  1361. msgstr "Vanse REVERTER os seguintes paquetes :"
  1362. #: apt-private/private-output.cc:525
  1363. msgid "The following held packages will be changed:"
  1364. msgstr "Vanse modificar os paquetes retidos seguintes:"
  1365. #: apt-private/private-output.cc:552
  1366. #, c-format
  1367. msgid "%s (due to %s)"
  1368. msgstr "%s (por mor de %s)"
  1369. #: apt-private/private-output.cc:602
  1370. msgid ""
  1371. "WARNING: The following essential packages will be removed.\n"
  1372. "This should NOT be done unless you know exactly what you are doing!"
  1373. msgstr ""
  1374. "AVISO: Retiraranse os seguintes paquetes esenciais.\n"
  1375. "Isto NON se debe facer a menos que saiba exactamente o que está a facer!"
  1376. #: apt-private/private-output.cc:633
  1377. #, c-format
  1378. msgid "%lu upgraded, %lu newly installed, "
  1379. msgstr "%lu anovados, %lu instalados, "
  1380. #: apt-private/private-output.cc:637
  1381. #, c-format
  1382. msgid "%lu reinstalled, "
  1383. msgstr "%lu reinstalados, "
  1384. #: apt-private/private-output.cc:639
  1385. #, c-format
  1386. msgid "%lu downgraded, "
  1387. msgstr "%lu revertidos, "
  1388. #: apt-private/private-output.cc:641
  1389. #, c-format
  1390. msgid "%lu to remove and %lu not upgraded.\n"
  1391. msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n"
  1392. #: apt-private/private-output.cc:645
  1393. #, c-format
  1394. msgid "%lu not fully installed or removed.\n"
  1395. msgstr "%lu non instalados ou retirados de todo.\n"
  1396. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1397. #. e.g. "Do you want to continue? [Y/n] "
  1398. #. The user has to answer with an input matching the
  1399. #. YESEXPR/NOEXPR defined in your l10n.
  1400. #: apt-private/private-output.cc:667
  1401. msgid "[Y/n]"
  1402. msgstr "[S/n]"
  1403. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1404. #. e.g. "Should this file be removed? [y/N] "
  1405. #. The user has to answer with an input matching the
  1406. #. YESEXPR/NOEXPR defined in your l10n.
  1407. #: apt-private/private-output.cc:673
  1408. msgid "[y/N]"
  1409. msgstr "[s/N]"
  1410. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1411. #: apt-private/private-output.cc:684
  1412. msgid "Y"
  1413. msgstr "S"
  1414. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1415. #: apt-private/private-output.cc:690
  1416. msgid "N"
  1417. msgstr "N"
  1418. #: apt-private/private-output.cc:712 apt-pkg/cachefilter.cc:40
  1419. #, c-format
  1420. msgid "Regex compilation error - %s"
  1421. msgstr "Produciuse un erro na compilación da expresión regular - %s"
  1422. #: apt-private/private-update.cc:31
  1423. msgid "The update command takes no arguments"
  1424. msgstr "A orde «update» non toma argumentos"
  1425. #: apt-private/private-update.cc:96
  1426. #, c-format
  1427. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1428. msgid_plural ""
  1429. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1430. msgstr[0] ""
  1431. msgstr[1] ""
  1432. #: apt-private/private-update.cc:100
  1433. msgid "All packages are up to date."
  1434. msgstr ""
  1435. #: apt-private/private-show.cc:158
  1436. #, c-format
  1437. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1438. msgid_plural ""
  1439. "There are %i additional records. Please use the '-a' switch to see them."
  1440. msgstr[0] ""
  1441. msgstr[1] ""
  1442. #: apt-private/private-show.cc:165
  1443. msgid "not a real package (virtual)"
  1444. msgstr ""
  1445. #: apt-private/private-main.cc:34
  1446. msgid ""
  1447. "NOTE: This is only a simulation!\n"
  1448. " apt-get needs root privileges for real execution.\n"
  1449. " Keep also in mind that locking is deactivated,\n"
  1450. " so don't depend on the relevance to the real current situation!"
  1451. msgstr ""
  1452. "NOTA: Isto é só unha simulación!\n"
  1453. " apt-get precisa de privilexios de administrador para executarse "
  1454. "realmente.\n"
  1455. " Lembre tamén que o bloqueo está desactivado,\n"
  1456. " polo que non debe depender da relevancia da situación actual real."
  1457. #: apt-private/private-download.cc:45
  1458. msgid "WARNING: The following packages cannot be authenticated!"
  1459. msgstr "AVISO: Non se poden autenticar os seguintes paquetes!"
  1460. #: apt-private/private-download.cc:52
  1461. msgid "Authentication warning overridden.\n"
  1462. msgstr "Ignórase o aviso de autenticación.\n"
  1463. #: apt-private/private-download.cc:57 apt-private/private-download.cc:64
  1464. msgid "Some packages could not be authenticated"
  1465. msgstr "Non foi posíbel autenticar algúns paquetes"
  1466. #: apt-private/private-download.cc:62
  1467. msgid "Install these packages without verification?"
  1468. msgstr "Instalar estes paquetes sen verificación?"
  1469. #: apt-private/private-download.cc:73
  1470. #, fuzzy
  1471. msgid ""
  1472. "There were unauthenticated packages and -y was used without --allow-"
  1473. "unauthenticated"
  1474. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  1475. #: apt-private/private-download.cc:105
  1476. #, c-format
  1477. msgid "Failed to fetch %s %s\n"
  1478. msgstr "Non foi posíbel obter %s %s\n"
  1479. #: apt-private/private-download.cc:127 apt-private/private-download.cc:130
  1480. #, c-format
  1481. msgid "Couldn't determine free space in %s"
  1482. msgstr "Non foi posíbel determinar o espazo libre en %s"
  1483. #: apt-private/private-download.cc:144
  1484. #, c-format
  1485. msgid "You don't have enough free space in %s."
  1486. msgstr "Non hai espazo libre abondo en %s."
  1487. #: apt-private/private-sources.cc:58
  1488. #, fuzzy, c-format
  1489. msgid "Failed to parse %s. Edit again? "
  1490. msgstr "Non foi posíbel cambiar o nome de %s a %s"
  1491. #: apt-private/private-sources.cc:70
  1492. #, c-format
  1493. msgid "Your '%s' file changed, please run 'apt-get update'."
  1494. msgstr ""
  1495. #: apt-private/private-search.cc:69
  1496. msgid "Full Text Search"
  1497. msgstr ""
  1498. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1499. #: apt-private/acqprogress.cc:74
  1500. #, c-format
  1501. msgid "Hit:%lu %s"
  1502. msgstr "Teño:%lu %s"
  1503. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1504. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1505. #: apt-private/acqprogress.cc:96
  1506. #, c-format
  1507. msgid "Get:%lu %s"
  1508. msgstr "Rcb:%lu %s"
  1509. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1510. #. which failed to download, but the error is ignored (compare "Err:")
  1511. #: apt-private/acqprogress.cc:126
  1512. #, c-format
  1513. msgid "Ign:%lu %s"
  1514. msgstr ""
  1515. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1516. #. which failed to download and the error is critical (compare "Ign:")
  1517. #: apt-private/acqprogress.cc:136
  1518. #, c-format
  1519. msgid "Err:%lu %s"
  1520. msgstr ""
  1521. #: apt-private/acqprogress.cc:159
  1522. #, c-format
  1523. msgid "Fetched %sB in %s (%sB/s)\n"
  1524. msgstr "Obtivéronse %sB en %s (%sB/s)\n"
  1525. #: apt-private/acqprogress.cc:229
  1526. msgid " [Working]"
  1527. msgstr " [Traballando]"
  1528. #: apt-private/acqprogress.cc:297
  1529. #, fuzzy, c-format
  1530. msgid ""
  1531. "Media change: please insert the disc labeled\n"
  1532. " '%s'\n"
  1533. "in the drive '%s' and press [Enter]\n"
  1534. msgstr ""
  1535. "Cambio de soporte: introduza o disco etiquetado\n"
  1536. " «%s»\n"
  1537. "na unidade «%s» e prema Intro\n"
  1538. #. Only warn if there are no sources.list.d.
  1539. #. Only warn if there is no sources.list file.
  1540. #: methods/mirror.cc:95 apt-pkg/init.cc:133 apt-pkg/init.cc:141
  1541. #: apt-pkg/acquire.cc:622 apt-pkg/clean.cc:43 apt-pkg/policy.cc:412
  1542. #: apt-pkg/sourcelist.cc:318 apt-pkg/sourcelist.cc:324
  1543. #: apt-pkg/contrib/fileutl.cc:375 apt-pkg/contrib/fileutl.cc:488
  1544. #: apt-pkg/contrib/cdromutl.cc:205 apt-inst/extract.cc:471
  1545. #, c-format
  1546. msgid "Unable to read %s"
  1547. msgstr "Non é posíbel ler %s"
  1548. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/acquire.cc:628
  1549. #: apt-pkg/acquire.cc:653 apt-pkg/clean.cc:49 apt-pkg/clean.cc:67
  1550. #: apt-pkg/clean.cc:130 apt-pkg/contrib/cdromutl.cc:201
  1551. #: apt-pkg/contrib/cdromutl.cc:235
  1552. #, c-format
  1553. msgid "Unable to change to %s"
  1554. msgstr "Non é posíbel cambiar a %s"
  1555. #. FIXME: fallback to a default mirror here instead
  1556. #. and provide a config option to define that default
  1557. #: methods/mirror.cc:280
  1558. #, c-format
  1559. msgid "No mirror file '%s' found "
  1560. msgstr "Non se atopou ningún ficheiro de replica «%s» "
  1561. #. FIXME: fallback to a default mirror here instead
  1562. #. and provide a config option to define that default
  1563. #: methods/mirror.cc:287
  1564. #, c-format
  1565. msgid "Can not read mirror file '%s'"
  1566. msgstr "Non é posíbel ler o ficheiro de replica «%s»"
  1567. #: methods/mirror.cc:315
  1568. #, fuzzy, c-format
  1569. msgid "No entry found in mirror file '%s'"
  1570. msgstr "Non é posíbel ler o ficheiro de replica «%s»"
  1571. #: methods/mirror.cc:445
  1572. #, c-format
  1573. msgid "[Mirror: %s]"
  1574. msgstr "[Replica: %s]"
  1575. #: methods/rsh.cc:109 ftparchive/multicompress.cc:170
  1576. msgid "Failed to create IPC pipe to subprocess"
  1577. msgstr "Non foi posíbel crear a canle IPC ao subproceso"
  1578. #: methods/rsh.cc:364
  1579. msgid "Connection closed prematurely"
  1580. msgstr "A conexión pechouse prematuramente"
  1581. #: dselect/install:33
  1582. msgid "Bad default setting!"
  1583. msgstr "Configuración predeterminada incorrecta!"
  1584. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1585. #: dselect/install:106 dselect/update:45
  1586. #, fuzzy
  1587. msgid "Press [Enter] to continue."
  1588. msgstr "Prema Intro para continuar."
  1589. #: dselect/install:92
  1590. msgid "Do you want to erase any previously downloaded .deb files?"
  1591. msgstr "Quere borrar os ficheiros .deb descargados anteriormente?"
  1592. #: dselect/install:102
  1593. msgid "Some errors occurred while unpacking. Packages that were installed"
  1594. msgstr ""
  1595. "Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron"
  1596. #: dselect/install:103
  1597. msgid "will be configured. This may result in duplicate errors"
  1598. msgstr "serán configurados, Isto pode dar erros de duplicación"
  1599. #: dselect/install:104
  1600. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1601. msgstr ""
  1602. "ou erros causados por dependencias incumpridas. Isto é normal, só os erros"
  1603. #: dselect/install:105
  1604. msgid ""
  1605. "above this message are important. Please fix them and run [I]nstall again"
  1606. msgstr ""
  1607. "que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar."
  1608. #: dselect/update:30
  1609. msgid "Merging available information"
  1610. msgstr "Mesturando a información sobre paquetes dispoñíbeis"
  1611. #: apt-pkg/install-progress.cc:58
  1612. #, c-format
  1613. msgid "Progress: [%3i%%]"
  1614. msgstr ""
  1615. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:177
  1616. msgid "Running dpkg"
  1617. msgstr "Executando dpkg"
  1618. #: apt-pkg/init.cc:176
  1619. #, c-format
  1620. msgid "Packaging system '%s' is not supported"
  1621. msgstr "O sistema de empaquetado «%s» non está admitido"
  1622. #: apt-pkg/init.cc:192
  1623. msgid "Unable to determine a suitable packaging system type"
  1624. msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado"
  1625. #: apt-pkg/indexcopy.cc:228 apt-pkg/indexcopy.cc:753
  1626. #, c-format
  1627. msgid "Wrote %i records.\n"
  1628. msgstr "Escribíronse %i rexistros.\n"
  1629. #: apt-pkg/indexcopy.cc:230 apt-pkg/indexcopy.cc:755
  1630. #, c-format
  1631. msgid "Wrote %i records with %i missing files.\n"
  1632. msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n"
  1633. #: apt-pkg/indexcopy.cc:233 apt-pkg/indexcopy.cc:758
  1634. #, c-format
  1635. msgid "Wrote %i records with %i mismatched files\n"
  1636. msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n"
  1637. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:761
  1638. #, c-format
  1639. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1640. msgstr ""
  1641. "Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non "
  1642. "coinciden\n"
  1643. #: apt-pkg/indexcopy.cc:498
  1644. #, c-format
  1645. msgid "Can't find authentication record for: %s"
  1646. msgstr "Non é posíbel atopar un rexistro de autenticación para: %s"
  1647. #: apt-pkg/indexcopy.cc:504
  1648. #, c-format
  1649. msgid "Hash mismatch for: %s"
  1650. msgstr "Valor de hash non coincidente para: %s"
  1651. #: apt-pkg/cachefile.cc:98
  1652. msgid "The package lists or status file could not be parsed or opened."
  1653. msgstr ""
  1654. "Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de "
  1655. "estado."
  1656. #: apt-pkg/cachefile.cc:102
  1657. msgid "You may want to run apt-get update to correct these problems"
  1658. msgstr "Pode querer executar «apt-get update» para corrixir estes problemas"
  1659. #: apt-pkg/cachefile.cc:120
  1660. msgid "The list of sources could not be read."
  1661. msgstr "Non foi posíbel ler a lista de orixes."
  1662. #: apt-pkg/pkgcache.cc:163
  1663. msgid "Empty package cache"
  1664. msgstr "Caché de paquetes baleira"
  1665. #: apt-pkg/pkgcache.cc:169 apt-pkg/pkgcache.cc:180
  1666. msgid "The package cache file is corrupted"
  1667. msgstr "O ficheiro de caché de paquetes está danado"
  1668. #: apt-pkg/pkgcache.cc:174
  1669. msgid "The package cache file is an incompatible version"
  1670. msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel"
  1671. #: apt-pkg/pkgcache.cc:177
  1672. #, fuzzy
  1673. msgid "The package cache file is corrupted, it is too small"
  1674. msgstr "O ficheiro de caché de paquetes está danado"
  1675. #: apt-pkg/pkgcache.cc:184
  1676. #, c-format
  1677. msgid "This APT does not support the versioning system '%s'"
  1678. msgstr "Este APT non admite o sistema de versionado «%s»"
  1679. #: apt-pkg/pkgcache.cc:194
  1680. #, fuzzy, c-format
  1681. msgid "The package cache was built for different architectures: %s vs %s"
  1682. msgstr "A caché de paquetes construíuse para unha arquitectura diferente"
  1683. #: apt-pkg/pkgcache.cc:319
  1684. msgid "Depends"
  1685. msgstr "Depende"
  1686. #: apt-pkg/pkgcache.cc:319
  1687. msgid "PreDepends"
  1688. msgstr "PreDepende"
  1689. #: apt-pkg/pkgcache.cc:319
  1690. msgid "Suggests"
  1691. msgstr "Suxire"
  1692. #: apt-pkg/pkgcache.cc:320
  1693. msgid "Recommends"
  1694. msgstr "Recomenda"
  1695. #: apt-pkg/pkgcache.cc:320
  1696. msgid "Conflicts"
  1697. msgstr "Conflitos"
  1698. #: apt-pkg/pkgcache.cc:320
  1699. msgid "Replaces"
  1700. msgstr "Substitúe a"
  1701. #: apt-pkg/pkgcache.cc:321
  1702. msgid "Obsoletes"
  1703. msgstr "Fai obsoleto a"
  1704. #: apt-pkg/pkgcache.cc:321
  1705. msgid "Breaks"
  1706. msgstr "Estraga"
  1707. #: apt-pkg/pkgcache.cc:321
  1708. msgid "Enhances"
  1709. msgstr "Mellora"
  1710. #: apt-pkg/pkgcache.cc:332
  1711. msgid "important"
  1712. msgstr "importante"
  1713. #: apt-pkg/pkgcache.cc:332
  1714. msgid "required"
  1715. msgstr "requirido"
  1716. #: apt-pkg/pkgcache.cc:332
  1717. msgid "standard"
  1718. msgstr "estándar"
  1719. #: apt-pkg/pkgcache.cc:333
  1720. msgid "optional"
  1721. msgstr "opcional"
  1722. #: apt-pkg/pkgcache.cc:333
  1723. msgid "extra"
  1724. msgstr "extra"
  1725. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  1726. msgid "Calculating upgrade"
  1727. msgstr "Calculando a anovación"
  1728. #: apt-pkg/acquire-worker.cc:111
  1729. #, c-format
  1730. msgid "The method driver %s could not be found."
  1731. msgstr "Non foi posíbel atopar o controlador de métodos %s."
  1732. #: apt-pkg/acquire-worker.cc:113
  1733. #, fuzzy, c-format
  1734. msgid "Is the package %s installed?"
  1735. msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n"
  1736. #: apt-pkg/acquire-worker.cc:164
  1737. #, c-format
  1738. msgid "Method %s did not start correctly"
  1739. msgstr "O método %s non se iniciou correctamente"
  1740. #: apt-pkg/acquire-worker.cc:543
  1741. #, fuzzy, c-format
  1742. msgid ""
  1743. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  1744. msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro."
  1745. #: apt-pkg/depcache.cc:139 apt-pkg/depcache.cc:167
  1746. msgid "Building dependency tree"
  1747. msgstr "Construindo a árbore de dependencias"
  1748. #: apt-pkg/depcache.cc:140
  1749. msgid "Candidate versions"
  1750. msgstr "Versións candidatas"
  1751. #: apt-pkg/depcache.cc:168
  1752. msgid "Dependency generation"
  1753. msgstr "Xeración de dependencias"
  1754. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1755. msgid "Reading state information"
  1756. msgstr "Lendo a información do estado"
  1757. #: apt-pkg/depcache.cc:252
  1758. #, c-format
  1759. msgid "Failed to open StateFile %s"
  1760. msgstr "Non foi posíbel abrir o ficheiro de estado %s"
  1761. #: apt-pkg/depcache.cc:257
  1762. #, c-format
  1763. msgid "Failed to write temporary StateFile %s"
  1764. msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s"
  1765. #: apt-pkg/acquire-item.cc:156
  1766. msgid "Use --allow-insecure-repositories to force the update"
  1767. msgstr ""
  1768. #: apt-pkg/acquire-item.cc:607 apt-pkg/contrib/fileutl.cc:2189
  1769. #, c-format
  1770. msgid "rename failed, %s (%s -> %s)."
  1771. msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)."
  1772. #: apt-pkg/acquire-item.cc:631
  1773. msgid "Hash Sum mismatch"
  1774. msgstr "A sumas «hash» non coinciden"
  1775. #: apt-pkg/acquire-item.cc:636
  1776. msgid "Size mismatch"
  1777. msgstr "Os tamaños non coinciden"
  1778. #: apt-pkg/acquire-item.cc:641
  1779. #, fuzzy
  1780. msgid "Invalid file format"
  1781. msgstr "Operación incorrecta: %s"
  1782. #: apt-pkg/acquire-item.cc:646
  1783. #, fuzzy
  1784. msgid "Signature error"
  1785. msgstr "Produciuse un erro de escritura"
  1786. #: apt-pkg/acquire-item.cc:835
  1787. #, fuzzy, c-format
  1788. msgid ""
  1789. "An error occurred during the signature verification. The repository is not "
  1790. "updated and the previous index files will be used. GPG error: %s: %s"
  1791. msgstr ""
  1792. "Produciuse un erro durante a verificación da sinatura. O repositorio non foi "
  1793. "actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: "
  1794. "%s: %s\n"
  1795. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1796. #: apt-pkg/acquire-item.cc:845 apt-pkg/acquire-item.cc:851
  1797. #, c-format
  1798. msgid "GPG error: %s: %s"
  1799. msgstr "Produciuse un erro de GPG: %s %s"
  1800. #: apt-pkg/acquire-item.cc:1016
  1801. #, c-format
  1802. msgid ""
  1803. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1804. "or malformed file)"
  1805. msgstr ""
  1806. "Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación "
  1807. "(entrada sources.list incorrecta ou ficheiro con formato incorrecto)"
  1808. #: apt-pkg/acquire-item.cc:1122
  1809. msgid "There is no public key available for the following key IDs:\n"
  1810. msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n"
  1811. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  1812. #. the time since then the file is invalid - formatted in the same way as in
  1813. #. the download progress display (e.g. 7d 3h 42min 1s)
  1814. #: apt-pkg/acquire-item.cc:1162
  1815. #, c-format
  1816. msgid ""
  1817. "Release file for %s is expired (invalid since %s). Updates for this "
  1818. "repository will not be applied."
  1819. msgstr ""
  1820. #: apt-pkg/acquire-item.cc:1203
  1821. #, c-format
  1822. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1823. msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)"
  1824. #: apt-pkg/acquire-item.cc:1320 apt-pkg/acquire-item.cc:1576
  1825. #, c-format
  1826. msgid ""
  1827. "The data from '%s' is not signed. Packages from that repository can not be "
  1828. "authenticated."
  1829. msgstr ""
  1830. #: apt-pkg/acquire-item.cc:1422
  1831. #, c-format
  1832. msgid ""
  1833. "The repository '%s' does not have a Release file. This is deprecated, please "
  1834. "contact the owner of the repository."
  1835. msgstr ""
  1836. #: apt-pkg/acquire-item.cc:1555
  1837. #, fuzzy, c-format
  1838. msgid "The repository '%s' is no longer signed."
  1839. msgstr "O directorio %s está desviado"
  1840. #: apt-pkg/acquire-item.cc:1562
  1841. msgid ""
  1842. "This is normally not allowed, but the option Acquire::"
  1843. "AllowDowngradeToInsecureRepositories was given to override it."
  1844. msgstr ""
  1845. #: apt-pkg/acquire-item.cc:2685
  1846. #, c-format
  1847. msgid ""
  1848. "I wasn't able to locate a file for the %s package. This might mean you need "
  1849. "to manually fix this package. (due to missing arch)"
  1850. msgstr ""
  1851. "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que "
  1852. "ten que arranxar este paquete a man. (Falta a arquitectura)"
  1853. #: apt-pkg/acquire-item.cc:2751
  1854. #, c-format
  1855. msgid "Can't find a source to download version '%s' of '%s'"
  1856. msgstr ""
  1857. #: apt-pkg/acquire-item.cc:2789
  1858. #, c-format
  1859. msgid ""
  1860. "The package index files are corrupted. No Filename: field for package %s."
  1861. msgstr ""
  1862. "Os ficheiros de índices de paquetes están danados. Non hai un campo "
  1863. "Filename: para o paquete %s."
  1864. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  1865. #: apt-pkg/acquire-item.cc:2990 apt-pkg/acquire-item.cc:3132
  1866. #, fuzzy, c-format
  1867. msgid "Changelog unavailable for %s=%s"
  1868. msgstr "Rexistro de cambios de %s (%s)"
  1869. #: apt-pkg/pkgcachegen.cc:112
  1870. msgid "Cache has an incompatible versioning system"
  1871. msgstr "A caché ten un sistema de versionado incompatíbel"
  1872. #. TRANSLATOR: The first placeholder is a package name,
  1873. #. the other two should be copied verbatim as they include debug info
  1874. #: apt-pkg/pkgcachegen.cc:237 apt-pkg/pkgcachegen.cc:299
  1875. #: apt-pkg/pkgcachegen.cc:365 apt-pkg/pkgcachegen.cc:369
  1876. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:394
  1877. #: apt-pkg/pkgcachegen.cc:398 apt-pkg/pkgcachegen.cc:402
  1878. #: apt-pkg/pkgcachegen.cc:423 apt-pkg/pkgcachegen.cc:428
  1879. #: apt-pkg/pkgcachegen.cc:474 apt-pkg/pkgcachegen.cc:488
  1880. #, fuzzy, c-format
  1881. msgid "Error occurred while processing %s (%s%d)"
  1882. msgstr "Produciuse un erro ao procesar %s (FindPkg)"
  1883. #: apt-pkg/pkgcachegen.cc:257
  1884. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1885. msgstr ""
  1886. "Vaites!, superou o número de nomes de paquetes que este APT pode manexar."
  1887. #: apt-pkg/pkgcachegen.cc:260
  1888. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1889. msgstr "Vaites!, superou o número de versións que este APT pode manexar."
  1890. #: apt-pkg/pkgcachegen.cc:263
  1891. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1892. msgstr "Vaites!, superou o número de descricións que este APT pode manexar."
  1893. #: apt-pkg/pkgcachegen.cc:266
  1894. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1895. msgstr "Vaites!, superou o número de dependencias que este APT pode manexar."
  1896. #: apt-pkg/pkgcachegen.cc:1419 apt-pkg/pkgcachegen.cc:1546
  1897. #: apt-pkg/pkgcachegen.cc:1572 apt-pkg/pkgcachegen.cc:1681
  1898. msgid "Reading package lists"
  1899. msgstr "Lendo as listas de paquetes"
  1900. #: apt-pkg/pkgcachegen.cc:1490 apt-pkg/pkgcachegen.cc:1497
  1901. msgid "IO Error saving source cache"
  1902. msgstr "Produciuse un erro de E/S ao gravar a caché de fontes"
  1903. #: apt-pkg/acquire.cc:127 apt-pkg/acquire.cc:147 apt-pkg/cdrom.cc:833
  1904. #, c-format
  1905. msgid "List directory %spartial is missing."
  1906. msgstr "Non se atopa a lista de directorios %sparcial."
  1907. #: apt-pkg/acquire.cc:130 apt-pkg/acquire.cc:152
  1908. #, c-format
  1909. msgid "Archives directory %spartial is missing."
  1910. msgstr "Non se atopa a lista de arquivos %sparcial."
  1911. #: apt-pkg/acquire.cc:163
  1912. #, c-format
  1913. msgid "Unable to lock directory %s"
  1914. msgstr "Non é posíbel bloquear o directorio %s"
  1915. #: apt-pkg/acquire.cc:500
  1916. #, c-format
  1917. msgid ""
  1918. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1919. "user '%s'."
  1920. msgstr ""
  1921. #: apt-pkg/acquire.cc:618 apt-pkg/clean.cc:39
  1922. #, fuzzy, c-format
  1923. msgid "Clean of %s is not supported"
  1924. msgstr "O tipo de ficheiros de índices «%s» non está admitido"
  1925. #. only show the ETA if it makes sense
  1926. #. two days
  1927. #: apt-pkg/acquire.cc:1146
  1928. #, c-format
  1929. msgid "Retrieving file %li of %li (%s remaining)"
  1930. msgstr "Obtendo o ficheiro %li de %li (restan %s)"
  1931. #: apt-pkg/acquire.cc:1148
  1932. #, c-format
  1933. msgid "Retrieving file %li of %li"
  1934. msgstr "Obtendo o ficheiro %li de %li"
  1935. #: apt-pkg/update.cc:76
  1936. #, fuzzy, c-format
  1937. msgid "Failed to fetch %s %s"
  1938. msgstr "Non foi posíbel obter %s %s\n"
  1939. #: apt-pkg/update.cc:102 apt-pkg/update.cc:104
  1940. #, fuzzy
  1941. msgid ""
  1942. "Some index files failed to download. They have been ignored, or old ones "
  1943. "used instead."
  1944. msgstr ""
  1945. "Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou "
  1946. "foron utilizados algúns antigos no seu lugar"
  1947. #: apt-pkg/srcrecords.cc:53
  1948. msgid "You must put some 'source' URIs in your sources.list"
  1949. msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list"
  1950. #: apt-pkg/clean.cc:64
  1951. #, c-format
  1952. msgid "Unable to stat %s."
  1953. msgstr "Non é posíbel analizar %s."
  1954. #: apt-pkg/policy.cc:77
  1955. #, c-format
  1956. msgid ""
  1957. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  1958. "available in the sources"
  1959. msgstr ""
  1960. #: apt-pkg/policy.cc:453
  1961. #, c-format
  1962. msgid "Invalid record in the preferences file %s, no Package header"
  1963. msgstr ""
  1964. "Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package"
  1965. #: apt-pkg/policy.cc:475
  1966. #, c-format
  1967. msgid "Did not understand pin type %s"
  1968. msgstr "Non se entendeu o tipo de inmobilización %s"
  1969. #: apt-pkg/policy.cc:484
  1970. #, c-format
  1971. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  1972. msgstr ""
  1973. #: apt-pkg/policy.cc:491
  1974. msgid "No priority (or zero) specified for pin"
  1975. msgstr ""
  1976. "Non se indicou unha prioridade (ou indicouse cero) para a inmobilización"
  1977. #: apt-pkg/packagemanager.cc:330 apt-pkg/packagemanager.cc:1018
  1978. #, c-format
  1979. msgid ""
  1980. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  1981. "under APT::Immediate-Configure for details. (%d)"
  1982. msgstr ""
  1983. "Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf "
  1984. "baixo APT::Immediate-Configure para obter máis detalles. (%d)"
  1985. #: apt-pkg/packagemanager.cc:589 apt-pkg/packagemanager.cc:627
  1986. #, fuzzy, c-format
  1987. msgid "Could not configure '%s'. "
  1988. msgstr "Non foi posíbel abrir o ficheiro «%s»"
  1989. #: apt-pkg/packagemanager.cc:677
  1990. #, c-format
  1991. msgid ""
  1992. "This installation run will require temporarily removing the essential "
  1993. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  1994. "you really want to do it, activate the APT::Force-LoopBreak option."
  1995. msgstr ""
  1996. "Esta instalación requirirá que se retire temporalmente o paquete esencial %s "
  1997. "por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, "
  1998. "pero se o quere facer, active a opción APT::Force-LoopBreak."
  1999. #: apt-pkg/cdrom.cc:498
  2000. #, c-format
  2001. msgid "Line %u too long in source list %s."
  2002. msgstr "Liña %u longa de máis na lista de orixes %s."
  2003. #: apt-pkg/cdrom.cc:572
  2004. msgid "Unmounting CD-ROM...\n"
  2005. msgstr "Desmontando o CD-ROM...\n"
  2006. #: apt-pkg/cdrom.cc:587
  2007. #, c-format
  2008. msgid "Using CD-ROM mount point %s\n"
  2009. msgstr "Empregando o punto de montaxe de CD-ROM %s\n"
  2010. #: apt-pkg/cdrom.cc:600
  2011. msgid "Waiting for disc...\n"
  2012. msgstr "Agardando polo disco...\n"
  2013. #: apt-pkg/cdrom.cc:610
  2014. msgid "Mounting CD-ROM...\n"
  2015. msgstr "Montando o CD-ROM...\n"
  2016. #: apt-pkg/cdrom.cc:621
  2017. msgid "Identifying... "
  2018. msgstr "Identificando... "
  2019. #: apt-pkg/cdrom.cc:663
  2020. #, c-format
  2021. msgid "Stored label: %s\n"
  2022. msgstr "Etiqueta almacenada: %s\n"
  2023. #: apt-pkg/cdrom.cc:681
  2024. msgid "Scanning disc for index files...\n"
  2025. msgstr "Buscando os ficheiros de índices no disco...\n"
  2026. #: apt-pkg/cdrom.cc:735
  2027. #, c-format
  2028. msgid ""
  2029. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2030. "%zu signatures\n"
  2031. msgstr ""
  2032. "Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de "
  2033. "traducións e %zu sinaturas\n"
  2034. #: apt-pkg/cdrom.cc:745
  2035. msgid ""
  2036. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2037. "wrong architecture?"
  2038. msgstr ""
  2039. "Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa "
  2040. "un disco de Debian ou que a arquitectura sexa incorrecta."
  2041. #: apt-pkg/cdrom.cc:772
  2042. #, c-format
  2043. msgid "Found label '%s'\n"
  2044. msgstr "Atopouse a etiqueta «%s»\n"
  2045. #: apt-pkg/cdrom.cc:801
  2046. msgid "That is not a valid name, try again.\n"
  2047. msgstr "Ese non é un nome correcto, volva tentalo.\n"
  2048. #: apt-pkg/cdrom.cc:818
  2049. #, c-format
  2050. msgid ""
  2051. "This disc is called: \n"
  2052. "'%s'\n"
  2053. msgstr ""
  2054. "Este disco chámase: \n"
  2055. "«%s»\n"
  2056. #: apt-pkg/cdrom.cc:820
  2057. msgid "Copying package lists..."
  2058. msgstr "Copiando as listas de paquetes..."
  2059. #: apt-pkg/cdrom.cc:867
  2060. msgid "Writing new source list\n"
  2061. msgstr "Escribindo a nova lista de orixes\n"
  2062. #: apt-pkg/cdrom.cc:878
  2063. msgid "Source list entries for this disc are:\n"
  2064. msgstr "As entradas da lista de orixes deste disco son:\n"
  2065. #: apt-pkg/algorithms.cc:263
  2066. #, c-format
  2067. msgid ""
  2068. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2069. msgstr ""
  2070. "O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu "
  2071. "arquivo."
  2072. #: apt-pkg/algorithms.cc:1080
  2073. msgid ""
  2074. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2075. "held packages."
  2076. msgstr ""
  2077. "Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar "
  2078. "causado por paquetes retidos."
  2079. #: apt-pkg/algorithms.cc:1082
  2080. msgid "Unable to correct problems, you have held broken packages."
  2081. msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos."
  2082. #: apt-pkg/edsp.cc:184 apt-pkg/edsp.cc:210
  2083. msgid "Send scenario to solver"
  2084. msgstr ""
  2085. #: apt-pkg/edsp.cc:232
  2086. msgid "Send request to solver"
  2087. msgstr ""
  2088. #: apt-pkg/edsp.cc:311
  2089. msgid "Prepare for receiving solution"
  2090. msgstr ""
  2091. #: apt-pkg/edsp.cc:318
  2092. msgid "External solver failed without a proper error message"
  2093. msgstr ""
  2094. #: apt-pkg/edsp.cc:610 apt-pkg/edsp.cc:613 apt-pkg/edsp.cc:618
  2095. msgid "Execute external solver"
  2096. msgstr ""
  2097. #: apt-pkg/pkgrecords.cc:38
  2098. #, c-format
  2099. msgid "Index file type '%s' is not supported"
  2100. msgstr "O tipo de ficheiros de índices «%s» non está admitido"
  2101. #: apt-pkg/tagfile.cc:196 apt-pkg/tagfile.cc:296 apt-pkg/deb/debrecords.cc:212
  2102. #, c-format
  2103. msgid "Unable to parse package file %s (%d)"
  2104. msgstr "Non é posíbel analizar o ficheiro de paquetes %s (%d)"
  2105. #: apt-pkg/tagfile.cc:541 apt-pkg/tagfile.cc:544
  2106. #, c-format
  2107. msgid "Cannot convert %s to integer"
  2108. msgstr ""
  2109. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  2110. #: apt-pkg/sourcelist.cc:140 apt-pkg/sourcelist.cc:147
  2111. #: apt-pkg/sourcelist.cc:150 apt-pkg/sourcelist.cc:158
  2112. #: apt-pkg/sourcelist.cc:165 apt-pkg/sourcelist.cc:209
  2113. #: apt-pkg/sourcelist.cc:212 apt-pkg/sourcelist.cc:223
  2114. #: apt-pkg/sourcelist.cc:229 apt-pkg/sourcelist.cc:232
  2115. #: apt-pkg/sourcelist.cc:245 apt-pkg/sourcelist.cc:247
  2116. #: apt-pkg/sourcelist.cc:250 apt-pkg/sourcelist.cc:256
  2117. #: apt-pkg/sourcelist.cc:263
  2118. #, fuzzy, c-format
  2119. msgid "Malformed entry %u in %s file %s (%s)"
  2120. msgstr "«Override» %s liña %lu incorrecta (1)"
  2121. #: apt-pkg/sourcelist.cc:367
  2122. #, c-format
  2123. msgid "Opening %s"
  2124. msgstr "Abrindo %s"
  2125. #: apt-pkg/sourcelist.cc:401
  2126. #, c-format
  2127. msgid "Malformed line %u in source list %s (type)"
  2128. msgstr "Liña %u mal construída na lista de orixes %s (tipo)"
  2129. #: apt-pkg/sourcelist.cc:405
  2130. #, c-format
  2131. msgid "Type '%s' is not known on line %u in source list %s"
  2132. msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s"
  2133. #: apt-pkg/sourcelist.cc:425 apt-pkg/sourcelist.cc:431
  2134. #, fuzzy, c-format
  2135. msgid "Malformed stanza %u in source list %s (type)"
  2136. msgstr "Liña %u mal construída na lista de orixes %s (tipo)"
  2137. #: apt-pkg/sourcelist.cc:441
  2138. #, fuzzy, c-format
  2139. msgid "Type '%s' is not known on stanza %u in source list %s"
  2140. msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s"
  2141. #: apt-pkg/cacheset.cc:492
  2142. #, c-format
  2143. msgid "Release '%s' for '%s' was not found"
  2144. msgstr "Non se atopou a publicación «%s» de «%s»"
  2145. #: apt-pkg/cacheset.cc:495
  2146. #, c-format
  2147. msgid "Version '%s' for '%s' was not found"
  2148. msgstr "Non se atopou a versión «%s» de «%s»"
  2149. #: apt-pkg/cacheset.cc:730
  2150. #, c-format
  2151. msgid "Couldn't find task '%s'"
  2152. msgstr "Non foi posíbel atopar a tarefa «%s»"
  2153. #: apt-pkg/cacheset.cc:736
  2154. #, c-format
  2155. msgid "Couldn't find any package by regex '%s'"
  2156. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  2157. #: apt-pkg/cacheset.cc:742
  2158. #, fuzzy, c-format
  2159. msgid "Couldn't find any package by glob '%s'"
  2160. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  2161. #: apt-pkg/cacheset.cc:781
  2162. #, c-format
  2163. msgid "Can't select versions from package '%s' as it is purely virtual"
  2164. msgstr ""
  2165. "Non é posíbel seleccionar distintas versións do paquete «%s» xa que é "
  2166. "puramente virtual"
  2167. #: apt-pkg/cacheset.cc:820
  2168. #, c-format
  2169. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2170. msgstr ""
  2171. "Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é "
  2172. "puramente virtual"
  2173. #: apt-pkg/cacheset.cc:828
  2174. #, c-format
  2175. msgid "Can't select candidate version from package %s as it has no candidate"
  2176. msgstr ""
  2177. "Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten "
  2178. "candidata"
  2179. #: apt-pkg/cacheset.cc:836
  2180. #, c-format
  2181. msgid "Can't select installed version from package %s as it is not installed"
  2182. msgstr ""
  2183. "Non é posíbel seleccionar a versión instalada do paquete %s xa que non está "
  2184. "instalado"
  2185. #: apt-pkg/cacheset.cc:844 apt-pkg/cacheset.cc:852
  2186. #, c-format
  2187. msgid ""
  2188. "Can't select installed nor candidate version from package '%s' as it has "
  2189. "neither of them"
  2190. msgstr ""
  2191. "Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete "
  2192. "«%s» xa que non ten ningunha delas"
  2193. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2194. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2195. #. filename and linenumber of the sources.list entry currently parsed
  2196. #: apt-pkg/deb/debmetaindex.cc:215
  2197. #, c-format
  2198. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2199. msgstr ""
  2200. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2201. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2202. #. two sources.list entries
  2203. #: apt-pkg/deb/debmetaindex.cc:234
  2204. #, c-format
  2205. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2206. msgstr ""
  2207. #: apt-pkg/deb/debmetaindex.cc:314
  2208. #, c-format
  2209. msgid "Unable to parse Release file %s"
  2210. msgstr "Non se puido analizar o ficheiro de publicación %s"
  2211. #: apt-pkg/deb/debmetaindex.cc:323
  2212. #, c-format
  2213. msgid "No sections in Release file %s"
  2214. msgstr "Non hai seccións no ficheiro de publicación %s"
  2215. #: apt-pkg/deb/debmetaindex.cc:363
  2216. #, c-format
  2217. msgid "No Hash entry in Release file %s"
  2218. msgstr "Non hai entrada de Hash no ficheiro de publicación %s"
  2219. #: apt-pkg/deb/debmetaindex.cc:371
  2220. #, c-format
  2221. msgid "Invalid 'Date' entry in Release file %s"
  2222. msgstr "A entrada «Date» no ficheiro de publicación %s non é válida"
  2223. #: apt-pkg/deb/debmetaindex.cc:392
  2224. #, c-format
  2225. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2226. msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida"
  2227. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2228. #: apt-pkg/deb/debmetaindex.cc:521 apt-pkg/deb/debmetaindex.cc:529
  2229. #: apt-pkg/deb/debmetaindex.cc:537 apt-pkg/deb/debmetaindex.cc:545
  2230. #: apt-pkg/deb/debmetaindex.cc:568
  2231. #, c-format
  2232. msgid "Conflicting values set for option %s concerning source %s %s"
  2233. msgstr ""
  2234. #: apt-pkg/deb/debmetaindex.cc:563
  2235. #, c-format
  2236. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2237. msgstr ""
  2238. #: apt-pkg/deb/dpkgpm.cc:110
  2239. #, c-format
  2240. msgid "Installing %s"
  2241. msgstr "Instalando %s"
  2242. #: apt-pkg/deb/dpkgpm.cc:111 apt-pkg/deb/dpkgpm.cc:1007
  2243. #, c-format
  2244. msgid "Configuring %s"
  2245. msgstr "Configurando %s"
  2246. #: apt-pkg/deb/dpkgpm.cc:112 apt-pkg/deb/dpkgpm.cc:1014
  2247. #, c-format
  2248. msgid "Removing %s"
  2249. msgstr "Retirando %s"
  2250. #: apt-pkg/deb/dpkgpm.cc:113
  2251. #, c-format
  2252. msgid "Completely removing %s"
  2253. msgstr "%s completamente retirado"
  2254. #: apt-pkg/deb/dpkgpm.cc:114
  2255. #, c-format
  2256. msgid "Noting disappearance of %s"
  2257. msgstr "Tomando nota da desaparición de %s"
  2258. #: apt-pkg/deb/dpkgpm.cc:115
  2259. #, c-format
  2260. msgid "Running post-installation trigger %s"
  2261. msgstr "Executando o disparador de post-instalación %s"
  2262. #. FIXME: use a better string after freeze
  2263. #: apt-pkg/deb/dpkgpm.cc:838
  2264. #, c-format
  2265. msgid "Directory '%s' missing"
  2266. msgstr "Falta o directorio «%s»"
  2267. #: apt-pkg/deb/dpkgpm.cc:853 apt-pkg/deb/dpkgpm.cc:875
  2268. #, c-format
  2269. msgid "Could not open file '%s'"
  2270. msgstr "Non foi posíbel abrir o ficheiro «%s»"
  2271. #: apt-pkg/deb/dpkgpm.cc:1000
  2272. #, c-format
  2273. msgid "Preparing %s"
  2274. msgstr "Preparando %s"
  2275. #: apt-pkg/deb/dpkgpm.cc:1001
  2276. #, c-format
  2277. msgid "Unpacking %s"
  2278. msgstr "Desempaquetando %s"
  2279. #: apt-pkg/deb/dpkgpm.cc:1006
  2280. #, c-format
  2281. msgid "Preparing to configure %s"
  2282. msgstr "Preparandose para configurar %s"
  2283. #: apt-pkg/deb/dpkgpm.cc:1008
  2284. #, c-format
  2285. msgid "Installed %s"
  2286. msgstr "Instalouse %s"
  2287. #: apt-pkg/deb/dpkgpm.cc:1013
  2288. #, c-format
  2289. msgid "Preparing for removal of %s"
  2290. msgstr "Preparándose para o retirado de %s"
  2291. #: apt-pkg/deb/dpkgpm.cc:1015
  2292. #, c-format
  2293. msgid "Removed %s"
  2294. msgstr "Retirouse %s"
  2295. #: apt-pkg/deb/dpkgpm.cc:1020
  2296. #, c-format
  2297. msgid "Preparing to completely remove %s"
  2298. msgstr "Preparándose para retirar %s completamente"
  2299. #: apt-pkg/deb/dpkgpm.cc:1021
  2300. #, c-format
  2301. msgid "Completely removed %s"
  2302. msgstr "Retirouse %s completamente"
  2303. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2304. #, fuzzy, c-format
  2305. msgid "Can not write log (%s)"
  2306. msgstr "Non é posíbel escribir en %s"
  2307. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2308. msgid "Is /dev/pts mounted?"
  2309. msgstr ""
  2310. #: apt-pkg/deb/dpkgpm.cc:1656
  2311. msgid "Operation was interrupted before it could finish"
  2312. msgstr ""
  2313. #: apt-pkg/deb/dpkgpm.cc:1718
  2314. msgid "No apport report written because MaxReports is reached already"
  2315. msgstr ""
  2316. "Non se escribiu ningún informe de Apport porque xa se acadou o nivel "
  2317. "MaxReports"
  2318. #. check if its not a follow up error
  2319. #: apt-pkg/deb/dpkgpm.cc:1723
  2320. msgid "dependency problems - leaving unconfigured"
  2321. msgstr "problemas de dependencias - déixase sen configurar"
  2322. #: apt-pkg/deb/dpkgpm.cc:1725
  2323. msgid ""
  2324. "No apport report written because the error message indicates its a followup "
  2325. "error from a previous failure."
  2326. msgstr ""
  2327. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que "
  2328. "é un error provinte dun fallo anterior."
  2329. #: apt-pkg/deb/dpkgpm.cc:1731
  2330. msgid ""
  2331. "No apport report written because the error message indicates a disk full "
  2332. "error"
  2333. msgstr ""
  2334. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2335. "erro de disco cheo."
  2336. #: apt-pkg/deb/dpkgpm.cc:1738
  2337. msgid ""
  2338. "No apport report written because the error message indicates a out of memory "
  2339. "error"
  2340. msgstr ""
  2341. "Non se escribiu un informe de contribución porque a mensaxe de erro indica "
  2342. "un erro de falta de memoria"
  2343. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2344. #, fuzzy
  2345. msgid ""
  2346. "No apport report written because the error message indicates an issue on the "
  2347. "local system"
  2348. msgstr ""
  2349. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2350. "erro de disco cheo."
  2351. #: apt-pkg/deb/dpkgpm.cc:1773
  2352. msgid ""
  2353. "No apport report written because the error message indicates a dpkg I/O error"
  2354. msgstr ""
  2355. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2356. "erro de E/S en dpkg"
  2357. #: apt-pkg/deb/debsystem.cc:88
  2358. #, c-format
  2359. msgid ""
  2360. "Unable to lock the administration directory (%s), is another process using "
  2361. "it?"
  2362. msgstr ""
  2363. "Non é posíbel bloquear o directorio de administración (%s). Esta usandoo "
  2364. "algún outro proceso?"
  2365. #: apt-pkg/deb/debsystem.cc:91
  2366. #, c-format
  2367. msgid "Unable to lock the administration directory (%s), are you root?"
  2368. msgstr ""
  2369. "Non é posíbel bloquear o directorio de administración (%s). É o "
  2370. "administrador?"
  2371. #. TRANSLATORS: the %s contains the recovery command, usually
  2372. #. dpkg --configure -a
  2373. #: apt-pkg/deb/debsystem.cc:107
  2374. #, c-format
  2375. msgid ""
  2376. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2377. msgstr ""
  2378. "dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. "
  2379. #: apt-pkg/deb/debsystem.cc:125
  2380. msgid "Not locked"
  2381. msgstr "Non está bloqueado"
  2382. #: apt-pkg/contrib/fileutl.cc:197
  2383. #, c-format
  2384. msgid "Not using locking for read only lock file %s"
  2385. msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s"
  2386. #: apt-pkg/contrib/fileutl.cc:202
  2387. #, c-format
  2388. msgid "Could not open lock file %s"
  2389. msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s"
  2390. #: apt-pkg/contrib/fileutl.cc:225
  2391. #, c-format
  2392. msgid "Not using locking for nfs mounted lock file %s"
  2393. msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s"
  2394. #: apt-pkg/contrib/fileutl.cc:230
  2395. #, c-format
  2396. msgid "Could not get lock %s"
  2397. msgstr "Non foi posíbel obter o bloqueo %s"
  2398. #: apt-pkg/contrib/fileutl.cc:367 apt-pkg/contrib/fileutl.cc:481
  2399. #, c-format
  2400. msgid "List of files can't be created as '%s' is not a directory"
  2401. msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio"
  2402. #: apt-pkg/contrib/fileutl.cc:401
  2403. #, c-format
  2404. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2405. msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular"
  2406. #: apt-pkg/contrib/fileutl.cc:419
  2407. #, c-format
  2408. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2409. msgstr ""
  2410. "Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome"
  2411. #: apt-pkg/contrib/fileutl.cc:428
  2412. #, c-format
  2413. msgid ""
  2414. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2415. msgstr ""
  2416. "Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de "
  2417. "nome incorrecta"
  2418. #: apt-pkg/contrib/fileutl.cc:862
  2419. #, c-format
  2420. msgid "Sub-process %s received a segmentation fault."
  2421. msgstr "O subproceso %s recibiu un fallo de segmento."
  2422. #: apt-pkg/contrib/fileutl.cc:864
  2423. #, c-format
  2424. msgid "Sub-process %s received signal %u."
  2425. msgstr "O subproceso %s recibiu o sinal %u."
  2426. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:227
  2427. #, c-format
  2428. msgid "Sub-process %s returned an error code (%u)"
  2429. msgstr "O subproceso %s devolveu un código de erro (%u)"
  2430. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:220
  2431. #, c-format
  2432. msgid "Sub-process %s exited unexpectedly"
  2433. msgstr "O subproceso %s saíu de xeito inesperado"
  2434. #: apt-pkg/contrib/fileutl.cc:987
  2435. #, c-format
  2436. msgid "Problem closing the gzip file %s"
  2437. msgstr "Produciuse un problema ao pechar o arquivo gzip %s"
  2438. #: apt-pkg/contrib/fileutl.cc:1194
  2439. #, c-format
  2440. msgid "Could not open file %s"
  2441. msgstr "Non foi posíbel abrir o ficheiro %s"
  2442. #: apt-pkg/contrib/fileutl.cc:1253 apt-pkg/contrib/fileutl.cc:1300
  2443. #, c-format
  2444. msgid "Could not open file descriptor %d"
  2445. msgstr "Non foi posíbel abrir o descritor de ficheiro %d"
  2446. #: apt-pkg/contrib/fileutl.cc:1408 apt-pkg/contrib/fileutl.cc:2204
  2447. msgid "Failed to create subprocess IPC"
  2448. msgstr "Non foi posíbel crear o IPC do subproceso"
  2449. #: apt-pkg/contrib/fileutl.cc:1466
  2450. msgid "Failed to exec compressor "
  2451. msgstr "Non foi posíbel executar o compresor "
  2452. #: apt-pkg/contrib/fileutl.cc:1607
  2453. #, fuzzy, c-format
  2454. msgid "read, still have %llu to read but none left"
  2455. msgstr "lectura, aínda hai %lu para ler pero non queda ningún"
  2456. #: apt-pkg/contrib/fileutl.cc:1720 apt-pkg/contrib/fileutl.cc:1742
  2457. #, fuzzy, c-format
  2458. msgid "write, still have %llu to write but couldn't"
  2459. msgstr "escritura, aínda hai %lu para escribir pero non se puido"
  2460. #: apt-pkg/contrib/fileutl.cc:2008
  2461. #, c-format
  2462. msgid "Problem closing the file %s"
  2463. msgstr "Produciuse un problema ao pechar o ficheiro %s"
  2464. #: apt-pkg/contrib/fileutl.cc:2020
  2465. #, c-format
  2466. msgid "Problem renaming the file %s to %s"
  2467. msgstr "Produciuse un problema ao renomear o ficheiro %s a %s"
  2468. #: apt-pkg/contrib/fileutl.cc:2031
  2469. #, c-format
  2470. msgid "Problem unlinking the file %s"
  2471. msgstr "Produciuse un problema ao desligar o ficheiro %s"
  2472. #: apt-pkg/contrib/fileutl.cc:2044
  2473. msgid "Problem syncing the file"
  2474. msgstr "Produciuse un problema ao sincronizar o ficheiro"
  2475. #: apt-pkg/contrib/fileutl.cc:2174 cmdline/apt-extracttemplates.cc:258
  2476. #, fuzzy, c-format
  2477. msgid "Unable to mkstemp %s"
  2478. msgstr "Non é posíbel determinar o estado %s"
  2479. #: apt-pkg/contrib/fileutl.cc:2179 cmdline/apt-extracttemplates.cc:263
  2480. #, c-format
  2481. msgid "Unable to write to %s"
  2482. msgstr "Non é posíbel escribir en %s"
  2483. #: apt-pkg/contrib/progress.cc:148
  2484. #, c-format
  2485. msgid "%c%s... Error!"
  2486. msgstr "%c%s... Erro!"
  2487. #: apt-pkg/contrib/progress.cc:150
  2488. #, c-format
  2489. msgid "%c%s... Done"
  2490. msgstr "%c%s... Feito"
  2491. #: apt-pkg/contrib/progress.cc:181
  2492. msgid "..."
  2493. msgstr ""
  2494. #. Print the spinner
  2495. #: apt-pkg/contrib/progress.cc:197
  2496. #, fuzzy, c-format
  2497. msgid "%c%s... %u%%"
  2498. msgstr "%c%s... Feito"
  2499. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2500. #: apt-pkg/contrib/strutl.cc:420
  2501. #, c-format
  2502. msgid "%lid %lih %limin %lis"
  2503. msgstr "%lid %lih %limin %lis"
  2504. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2505. #: apt-pkg/contrib/strutl.cc:425
  2506. #, c-format
  2507. msgid "%lih %limin %lis"
  2508. msgstr "%lih %limin %lis"
  2509. #. TRANSLATOR: min means minutes, s means seconds
  2510. #: apt-pkg/contrib/strutl.cc:430
  2511. #, c-format
  2512. msgid "%limin %lis"
  2513. msgstr "%limin %lis"
  2514. #. TRANSLATOR: s means seconds
  2515. #: apt-pkg/contrib/strutl.cc:435
  2516. #, c-format
  2517. msgid "%lis"
  2518. msgstr "%lis"
  2519. #: apt-pkg/contrib/strutl.cc:1279
  2520. #, c-format
  2521. msgid "Selection %s not found"
  2522. msgstr "Non se atopou a selección %s"
  2523. #: apt-pkg/contrib/mmap.cc:79
  2524. msgid "Can't mmap an empty file"
  2525. msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro"
  2526. #: apt-pkg/contrib/mmap.cc:111
  2527. #, c-format
  2528. msgid "Couldn't duplicate file descriptor %i"
  2529. msgstr "Non foi posíbel duplicar o descritor de ficheiro %i"
  2530. #: apt-pkg/contrib/mmap.cc:119
  2531. #, fuzzy, c-format
  2532. msgid "Couldn't make mmap of %llu bytes"
  2533. msgstr "Non foi posíbel facer mmap de %lu bytes"
  2534. #: apt-pkg/contrib/mmap.cc:146
  2535. msgid "Unable to close mmap"
  2536. msgstr "Non é posíbel pechar mmap"
  2537. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2538. msgid "Unable to synchronize mmap"
  2539. msgstr "Non é posíbel sincronizar mmap"
  2540. #: apt-pkg/contrib/mmap.cc:290
  2541. #, c-format
  2542. msgid "Couldn't make mmap of %lu bytes"
  2543. msgstr "Non foi posíbel facer mmap de %lu bytes"
  2544. #: apt-pkg/contrib/mmap.cc:322
  2545. msgid "Failed to truncate file"
  2546. msgstr "Non foi posíbel truncar o ficheiro"
  2547. #: apt-pkg/contrib/mmap.cc:341
  2548. #, c-format
  2549. msgid ""
  2550. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2551. "Current value: %lu. (man 5 apt.conf)"
  2552. msgstr ""
  2553. "Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-"
  2554. "Start. O valor actual é : %lu. (man 5 apt.conf)"
  2555. #: apt-pkg/contrib/mmap.cc:446
  2556. #, c-format
  2557. msgid ""
  2558. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2559. "reached."
  2560. msgstr ""
  2561. "Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi "
  2562. "acadado."
  2563. #: apt-pkg/contrib/mmap.cc:449
  2564. msgid ""
  2565. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2566. msgstr ""
  2567. "Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi "
  2568. "desactivado polo usuario."
  2569. #: apt-pkg/contrib/cdromutl.cc:65
  2570. #, c-format
  2571. msgid "Unable to stat the mount point %s"
  2572. msgstr "Non é posíbel analizar o punto de montaxe %s"
  2573. #: apt-pkg/contrib/cdromutl.cc:247
  2574. msgid "Failed to stat the cdrom"
  2575. msgstr "Non foi posíbel analizar o CD-ROM"
  2576. #: apt-pkg/contrib/configuration.cc:516
  2577. #, c-format
  2578. msgid "Unrecognized type abbreviation: '%c'"
  2579. msgstr "Abreviatura de tipo «%c» descoñecida"
  2580. #: apt-pkg/contrib/configuration.cc:630
  2581. #, c-format
  2582. msgid "Opening configuration file %s"
  2583. msgstr "Abrindo o ficheiro de configuración %s"
  2584. #: apt-pkg/contrib/configuration.cc:798
  2585. #, c-format
  2586. msgid "Syntax error %s:%u: Block starts with no name."
  2587. msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome."
  2588. #: apt-pkg/contrib/configuration.cc:817
  2589. #, c-format
  2590. msgid "Syntax error %s:%u: Malformed tag"
  2591. msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada"
  2592. #: apt-pkg/contrib/configuration.cc:834
  2593. #, c-format
  2594. msgid "Syntax error %s:%u: Extra junk after value"
  2595. msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor"
  2596. #: apt-pkg/contrib/configuration.cc:874
  2597. #, c-format
  2598. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2599. msgstr ""
  2600. "Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel "
  2601. "superior"
  2602. #: apt-pkg/contrib/configuration.cc:881
  2603. #, c-format
  2604. msgid "Syntax error %s:%u: Too many nested includes"
  2605. msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis"
  2606. #: apt-pkg/contrib/configuration.cc:885 apt-pkg/contrib/configuration.cc:890
  2607. #, c-format
  2608. msgid "Syntax error %s:%u: Included from here"
  2609. msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí"
  2610. #: apt-pkg/contrib/configuration.cc:894
  2611. #, c-format
  2612. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2613. msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»"
  2614. #: apt-pkg/contrib/configuration.cc:897
  2615. #, c-format
  2616. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2617. msgstr ""
  2618. "Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore "
  2619. "de opción como argumento"
  2620. #: apt-pkg/contrib/configuration.cc:947
  2621. #, c-format
  2622. msgid "Syntax error %s:%u: Extra junk at end of file"
  2623. msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña"
  2624. #: apt-pkg/contrib/cmndline.cc:127
  2625. #, fuzzy, c-format
  2626. msgid ""
  2627. "Command line option '%c' [from %s] is not understood in combination with the "
  2628. "other options."
  2629. msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]."
  2630. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2631. #: apt-pkg/contrib/cmndline.cc:169
  2632. #, fuzzy, c-format
  2633. msgid ""
  2634. "Command line option %s is not understood in combination with the other "
  2635. "options"
  2636. msgstr "Non se entende a opción de liña de ordes %s"
  2637. #: apt-pkg/contrib/cmndline.cc:174
  2638. #, c-format
  2639. msgid "Command line option %s is not boolean"
  2640. msgstr "A opción de liña de ordes %s non é booleana"
  2641. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2642. #, c-format
  2643. msgid "Option %s requires an argument."
  2644. msgstr "A opción %s precisa dun argumento."
  2645. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2646. #, c-format
  2647. msgid "Option %s: Configuration item specification must have an =<val>."
  2648. msgstr ""
  2649. "Opción %s: A especificación de elemento de configuración debe ter un =<val>."
  2650. #: apt-pkg/contrib/cmndline.cc:284
  2651. #, c-format
  2652. msgid "Option %s requires an integer argument, not '%s'"
  2653. msgstr "A opción %s precisa dun argumento enteiro, non «%s»"
  2654. #: apt-pkg/contrib/cmndline.cc:315
  2655. #, c-format
  2656. msgid "Option '%s' is too long"
  2657. msgstr "A opción «%s» é longa de máis"
  2658. #: apt-pkg/contrib/cmndline.cc:347
  2659. #, c-format
  2660. msgid "Sense %s is not understood, try true or false."
  2661. msgstr "O senso %s non se entende, probe «true» ou «false»."
  2662. #: apt-pkg/contrib/cmndline.cc:397
  2663. #, c-format
  2664. msgid "Invalid operation %s"
  2665. msgstr "Operación incorrecta: %s"
  2666. #: cmdline/apt-extracttemplates.cc:228
  2667. msgid ""
  2668. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2669. "\n"
  2670. "apt-extracttemplates is a tool to extract config and template info\n"
  2671. "from debian packages\n"
  2672. "\n"
  2673. "Options:\n"
  2674. " -h This help text\n"
  2675. " -t Set the temp dir\n"
  2676. " -c=? Read this configuration file\n"
  2677. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2678. msgstr ""
  2679. "Uso: apt-extracttemplates fich1 [fich2 ...]\n"
  2680. "\n"
  2681. "apt-extracttemplates é unha ferramenta para extraer información\n"
  2682. "de configuración e patróns dos paquetes debian\n"
  2683. "\n"
  2684. "Opcións:\n"
  2685. " -h Este texto de axuda\n"
  2686. " -t Estabelece o directorio temporal\n"
  2687. " -c=? Le este ficheiro de configuración\n"
  2688. " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
  2689. "tmp\n"
  2690. #: cmdline/apt-extracttemplates.cc:304
  2691. msgid "Cannot get debconf version. Is debconf installed?"
  2692. msgstr "Non é posíbel obter a versión de debconf. Debconf está instalado?"
  2693. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:368
  2694. msgid "Package extension list is too long"
  2695. msgstr "A lista de extensións de paquetes é longa de máis"
  2696. #: ftparchive/apt-ftparchive.cc:190 ftparchive/apt-ftparchive.cc:202
  2697. #: ftparchive/apt-ftparchive.cc:225 ftparchive/apt-ftparchive.cc:281
  2698. #: ftparchive/apt-ftparchive.cc:291 ftparchive/apt-ftparchive.cc:313
  2699. #, c-format
  2700. msgid "Error processing directory %s"
  2701. msgstr "Produciuse un erro ao procesar o directorio %s"
  2702. #: ftparchive/apt-ftparchive.cc:279
  2703. msgid "Source extension list is too long"
  2704. msgstr "A lista de extensións de fontes é longa de máis"
  2705. #: ftparchive/apt-ftparchive.cc:394
  2706. msgid "Error writing header to contents file"
  2707. msgstr "Produciuse un erro ao gravar a cabeceira no ficheiro de contido"
  2708. #: ftparchive/apt-ftparchive.cc:424
  2709. #, c-format
  2710. msgid "Error processing contents %s"
  2711. msgstr "Produciuse un erro ao procesar o contido %s"
  2712. #: ftparchive/apt-ftparchive.cc:616
  2713. msgid ""
  2714. "Usage: apt-ftparchive [options] command\n"
  2715. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2716. " sources srcpath [overridefile [pathprefix]]\n"
  2717. " contents path\n"
  2718. " release path\n"
  2719. " generate config [groups]\n"
  2720. " clean config\n"
  2721. "\n"
  2722. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2723. "many styles of generation from fully automated to functional replacements\n"
  2724. "for dpkg-scanpackages and dpkg-scansources\n"
  2725. "\n"
  2726. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2727. "Package file contains the contents of all the control fields from\n"
  2728. "each package as well as the MD5 hash and filesize. An override file\n"
  2729. "is supported to force the value of Priority and Section.\n"
  2730. "\n"
  2731. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2732. "The --source-override option can be used to specify a src override file\n"
  2733. "\n"
  2734. "The 'packages' and 'sources' command should be run in the root of the\n"
  2735. "tree. BinaryPath should point to the base of the recursive search and \n"
  2736. "override file should contain the override flags. Pathprefix is\n"
  2737. "appended to the filename fields if present. Example usage from the \n"
  2738. "Debian archive:\n"
  2739. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2740. " dists/potato/main/binary-i386/Packages\n"
  2741. "\n"
  2742. "Options:\n"
  2743. " -h This help text\n"
  2744. " --md5 Control MD5 generation\n"
  2745. " -s=? Source override file\n"
  2746. " -q Quiet\n"
  2747. " -d=? Select the optional caching database\n"
  2748. " --no-delink Enable delinking debug mode\n"
  2749. " --contents Control contents file generation\n"
  2750. " -c=? Read this configuration file\n"
  2751. " -o=? Set an arbitrary configuration option"
  2752. msgstr ""
  2753. "Emprego: apt-ftparchive [opcións] orde\n"
  2754. "Ordes: packages rutabinaria [fichoverride [prefixoruta]]\n"
  2755. " sources rutafontes [fichoverride [prefixoruta]]\n"
  2756. " contents ruta\n"
  2757. " release ruta\n"
  2758. " generate config [grupos]\n"
  2759. " clean config\n"
  2760. "\n"
  2761. "apt-ftparchive xera ficheiros de índices para arquivos de Debian. Admite\n"
  2762. "varios estilos de xeración, de totalmente automática a substitutos "
  2763. "funcionais\n"
  2764. "de dpkg-scanpackages e dpkg-scansources\n"
  2765. "\n"
  2766. "apt-ftparchive xera ficheiros Packages dunha árbore de .debs. O ficheiro\n"
  2767. "Packages ten o contido de todos os campos de control de cada paquete, así\n"
  2768. "coma a suma MD5 e o tamaño do ficheiro. Admitese un ficheiro de «overrides»\n"
  2769. "para forzar o valor dos campos Priority e Section.\n"
  2770. "\n"
  2771. "De xeito semellante, apt-ftparchive xera ficheiros Sources dunha árbore de\n"
  2772. ".dscs. Pódese empregar a opción --source-override para especificar un "
  2773. "ficheiro\n"
  2774. "de «overrides» para fontes.\n"
  2775. "\n"
  2776. "As ordes «packages» e «sources» deberían executarse na raíz da árbore.\n"
  2777. "«Rutabinaria» debería apuntar á base da busca recursiva e o ficheiro\n"
  2778. "«fichoverride» debería conter os modificadores de «override». «Prefixoruta»\n"
  2779. "engádese aos campos de nomes de ficheiros se está presente. Un exemplo\n"
  2780. "de emprego do arquivo de Debian:\n"
  2781. " apt-ftparchive packages dists/potato/main/binary-i386/ > \n"
  2782. " dists/potato/main/binary-i386/Packages\n"
  2783. "\n"
  2784. "Opcións:\n"
  2785. " -h Este texto de axuda\n"
  2786. " --md5 Controla a xeración de MD5\n"
  2787. " -s=? Ficheiro de «override» de fontes\n"
  2788. " -q Non produce ningunha saída por pantalla\n"
  2789. " -d=? Escolle a base de datos de caché opcional\n"
  2790. " --no-delink Activa o modo de depuración de desligado\n"
  2791. " --contents Controla a xeración do ficheiro de contido\n"
  2792. " -c=? Le este ficheiro de configuración\n"
  2793. " -o=? Estabelece unha opción de configuración"
  2794. #: ftparchive/apt-ftparchive.cc:812
  2795. msgid "No selections matched"
  2796. msgstr "Non coincide ningunha selección"
  2797. #: ftparchive/apt-ftparchive.cc:892
  2798. #, c-format
  2799. msgid "Some files are missing in the package file group `%s'"
  2800. msgstr "Faltan ficheiros no grupo de ficheiros de paquetes «%s»"
  2801. #: ftparchive/cachedb.cc:68
  2802. #, c-format
  2803. msgid "DB was corrupted, file renamed to %s.old"
  2804. msgstr "A base de datos estaba danada, cambiouse o nome do ficheiro a %s.old"
  2805. #: ftparchive/cachedb.cc:86
  2806. #, c-format
  2807. msgid "DB is old, attempting to upgrade %s"
  2808. msgstr "A base de datos é antiga, tentando anovar %s"
  2809. #: ftparchive/cachedb.cc:97
  2810. msgid ""
  2811. "DB format is invalid. If you upgraded from an older version of apt, please "
  2812. "remove and re-create the database."
  2813. msgstr ""
  2814. "O formato da base de datos non é correcto. Se a anovou desde unha versión "
  2815. "antiga de apt, retirea e volva a crear a base de datos"
  2816. #: ftparchive/cachedb.cc:102
  2817. #, c-format
  2818. msgid "Unable to open DB file %s: %s"
  2819. msgstr "Non é posíbel abrir o ficheiro de base de datos %s: %s"
  2820. #: ftparchive/cachedb.cc:185 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2821. #: apt-inst/extract.cc:216
  2822. #, c-format
  2823. msgid "Failed to stat %s"
  2824. msgstr "Non foi posíbel determinar o estado %s"
  2825. #: ftparchive/cachedb.cc:327
  2826. #, fuzzy
  2827. msgid "Failed to read .dsc"
  2828. msgstr "Non foi posíbel ler a ligazón %s"
  2829. #: ftparchive/cachedb.cc:360
  2830. msgid "Archive has no control record"
  2831. msgstr "O arquivo non ten un rexistro de control"
  2832. #: ftparchive/cachedb.cc:527
  2833. msgid "Unable to get a cursor"
  2834. msgstr "Non é posíbel obter un cursor"
  2835. #: ftparchive/writer.cc:106
  2836. #, c-format
  2837. msgid "W: Unable to read directory %s\n"
  2838. msgstr "A: non é posíbel ler o directorio %s\n"
  2839. #: ftparchive/writer.cc:111
  2840. #, c-format
  2841. msgid "W: Unable to stat %s\n"
  2842. msgstr "A: non é posíbel atopar %s\n"
  2843. #: ftparchive/writer.cc:167
  2844. msgid "E: "
  2845. msgstr "E: "
  2846. #: ftparchive/writer.cc:169
  2847. msgid "W: "
  2848. msgstr "A: "
  2849. #: ftparchive/writer.cc:176
  2850. msgid "E: Errors apply to file "
  2851. msgstr "E: os erros aplícanse ao ficheiro "
  2852. #: ftparchive/writer.cc:194 ftparchive/writer.cc:226
  2853. #, c-format
  2854. msgid "Failed to resolve %s"
  2855. msgstr "Non foi posíbel solucionar %s"
  2856. #: ftparchive/writer.cc:207
  2857. msgid "Tree walking failed"
  2858. msgstr "Fallou o percorrido da árbore"
  2859. #: ftparchive/writer.cc:234
  2860. #, c-format
  2861. msgid "Failed to open %s"
  2862. msgstr "Non foi posíbel abrir %s"
  2863. #: ftparchive/writer.cc:293
  2864. #, c-format
  2865. msgid " DeLink %s [%s]\n"
  2866. msgstr " DesLig %s [%s]\n"
  2867. #: ftparchive/writer.cc:301
  2868. #, c-format
  2869. msgid "Failed to readlink %s"
  2870. msgstr "Non foi posíbel ler a ligazón %s"
  2871. #: ftparchive/writer.cc:305
  2872. #, c-format
  2873. msgid "Failed to unlink %s"
  2874. msgstr "Non foi posíbel desligar %s"
  2875. #: ftparchive/writer.cc:313
  2876. #, c-format
  2877. msgid "*** Failed to link %s to %s"
  2878. msgstr "*** Non foi posíbel ligar %s con %s"
  2879. #: ftparchive/writer.cc:323
  2880. #, c-format
  2881. msgid " DeLink limit of %sB hit.\n"
  2882. msgstr " Acadouse o límite de desligado de %sB.\n"
  2883. #: ftparchive/writer.cc:428
  2884. msgid "Archive had no package field"
  2885. msgstr "O arquivo non tiña un campo Package"
  2886. #: ftparchive/writer.cc:436 ftparchive/writer.cc:700
  2887. #, c-format
  2888. msgid " %s has no override entry\n"
  2889. msgstr " %s non ten unha entrada de «override»\n"
  2890. #: ftparchive/writer.cc:503 ftparchive/writer.cc:857
  2891. #, c-format
  2892. msgid " %s maintainer is %s not %s\n"
  2893. msgstr " O mantedor de %s é %s, non %s\n"
  2894. #: ftparchive/writer.cc:714
  2895. #, c-format
  2896. msgid " %s has no source override entry\n"
  2897. msgstr " %s non ten unha entrada de «override» de código fonte\n"
  2898. #: ftparchive/writer.cc:718
  2899. #, c-format
  2900. msgid " %s has no binary override entry either\n"
  2901. msgstr " %s tampouco ten unha entrada de «override» de binarios\n"
  2902. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  2903. msgid "realloc - Failed to allocate memory"
  2904. msgstr "realloc - Non foi posíbel reservar memoria"
  2905. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2906. #, c-format
  2907. msgid "Unable to open %s"
  2908. msgstr "Non é posíbel puido abrir %s"
  2909. #. skip spaces
  2910. #. find end of word
  2911. #: ftparchive/override.cc:68
  2912. #, fuzzy, c-format
  2913. msgid "Malformed override %s line %llu (%s)"
  2914. msgstr "«Override» %s liña %lu incorrecta (1)"
  2915. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2916. #, c-format
  2917. msgid "Failed to read the override file %s"
  2918. msgstr "Non foi posíbel ler o ficheiro de «override» %s"
  2919. #: ftparchive/override.cc:166
  2920. #, fuzzy, c-format
  2921. msgid "Malformed override %s line %llu #1"
  2922. msgstr "«Override» %s liña %lu incorrecta (1)"
  2923. #: ftparchive/override.cc:178
  2924. #, fuzzy, c-format
  2925. msgid "Malformed override %s line %llu #2"
  2926. msgstr "«Override» %s liña %lu incorrecta (2)"
  2927. #: ftparchive/override.cc:191
  2928. #, fuzzy, c-format
  2929. msgid "Malformed override %s line %llu #3"
  2930. msgstr "«Override» %s liña %lu incorrecta (3)"
  2931. #: ftparchive/multicompress.cc:72
  2932. #, c-format
  2933. msgid "Unknown compression algorithm '%s'"
  2934. msgstr "Algoritmo de compresión «%s» descoñecido"
  2935. #: ftparchive/multicompress.cc:102
  2936. #, c-format
  2937. msgid "Compressed output %s needs a compression set"
  2938. msgstr "A saída comprimida %s precisa dun conxunto de compresión"
  2939. #: ftparchive/multicompress.cc:193
  2940. msgid "Failed to fork"
  2941. msgstr "Non foi posíbel facer a bifurcación"
  2942. #: ftparchive/multicompress.cc:206
  2943. msgid "Compress child"
  2944. msgstr "Fillo de compresión"
  2945. #: ftparchive/multicompress.cc:229
  2946. #, c-format
  2947. msgid "Internal error, failed to create %s"
  2948. msgstr "Produciuse un erro interno, non foi posíbel crear %s"
  2949. #: ftparchive/multicompress.cc:302
  2950. msgid "IO to subprocess/file failed"
  2951. msgstr "Produciuse un fallo na E/S do subproceso/ficheiro"
  2952. #: ftparchive/multicompress.cc:340
  2953. msgid "Failed to read while computing MD5"
  2954. msgstr "Non foi posíbel ler ao calcular o MD5"
  2955. #: ftparchive/multicompress.cc:356
  2956. #, c-format
  2957. msgid "Problem unlinking %s"
  2958. msgstr "Xurdiu un problema ao desligar %s"
  2959. #: ftparchive/multicompress.cc:371 apt-inst/extract.cc:194
  2960. #, c-format
  2961. msgid "Failed to rename %s to %s"
  2962. msgstr "Non foi posíbel cambiar o nome de %s a %s"
  2963. #: cmdline/apt-internal-solver.cc:50
  2964. #, fuzzy
  2965. msgid ""
  2966. "Usage: apt-internal-solver\n"
  2967. "\n"
  2968. "apt-internal-solver is an interface to use the current internal\n"
  2969. "like an external resolver for the APT family for debugging or alike\n"
  2970. "\n"
  2971. "Options:\n"
  2972. " -h This help text.\n"
  2973. " -q Loggable output - no progress indicator\n"
  2974. " -c=? Read this configuration file\n"
  2975. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2976. msgstr ""
  2977. "Uso: apt-extracttemplates fich1 [fich2 ...]\n"
  2978. "\n"
  2979. "apt-extracttemplates é unha ferramenta para extraer información\n"
  2980. "de configuración e patróns dos paquetes debian\n"
  2981. "\n"
  2982. "Opcións:\n"
  2983. " -h Este texto de axuda\n"
  2984. " -t Estabelece o directorio temporal\n"
  2985. " -c=? Le este ficheiro de configuración\n"
  2986. " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
  2987. "tmp\n"
  2988. #: cmdline/apt-sortpkgs.cc:91
  2989. msgid "Unknown package record!"
  2990. msgstr "Rexistro de paquete descoñecido!"
  2991. #: cmdline/apt-sortpkgs.cc:154
  2992. msgid ""
  2993. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2994. "\n"
  2995. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2996. "to indicate what kind of file it is.\n"
  2997. "\n"
  2998. "Options:\n"
  2999. " -h This help text\n"
  3000. " -s Use source file sorting\n"
  3001. " -c=? Read this configuration file\n"
  3002. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3003. msgstr ""
  3004. "Emprego: apt-sortpkgs [opcións] fich1 [fich2 ...]\n"
  3005. "\n"
  3006. "apt-sortpkgs é unha ferramenta simple para ordenar ficheiros de paquetes.\n"
  3007. "A opción -s emprégase para indicar o tipo de ficheiro que é.\n"
  3008. "\n"
  3009. "Opcións:\n"
  3010. " -h Este texto de axuda\n"
  3011. " -s Emprega ordenamento por ficheiros fonte\n"
  3012. " -c=? Le este ficheiro de configuración\n"
  3013. " -o=? Estabelece unha opción de configuración; por exemplo, -o dir::cache=/"
  3014. "tmp\n"
  3015. #: apt-inst/filelist.cc:380
  3016. msgid "DropNode called on still linked node"
  3017. msgstr "Chamouse a DropNode nun nodo aínda ligado"
  3018. #: apt-inst/filelist.cc:412
  3019. msgid "Failed to locate the hash element!"
  3020. msgstr "Non foi posíbel atopar o elemento hash"
  3021. #: apt-inst/filelist.cc:459
  3022. msgid "Failed to allocate diversion"
  3023. msgstr "Non foi posíbel reservar un desvío"
  3024. #: apt-inst/filelist.cc:464
  3025. msgid "Internal error in AddDiversion"
  3026. msgstr "Produciuse un erro interno en AddDiversion"
  3027. #: apt-inst/filelist.cc:477
  3028. #, c-format
  3029. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  3030. msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s"
  3031. #: apt-inst/filelist.cc:506
  3032. #, c-format
  3033. msgid "Double add of diversion %s -> %s"
  3034. msgstr "Desvío %s -> %s engadido dúas veces"
  3035. #: apt-inst/filelist.cc:549
  3036. #, c-format
  3037. msgid "Duplicate conf file %s/%s"
  3038. msgstr "Ficheiro de configuración %s/%s duplicado"
  3039. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  3040. #, c-format
  3041. msgid "The path %s is too long"
  3042. msgstr "A ruta %s é longa de máis"
  3043. #: apt-inst/extract.cc:132
  3044. #, c-format
  3045. msgid "Unpacking %s more than once"
  3046. msgstr "Desempaquetando %s máis dunha vez"
  3047. #: apt-inst/extract.cc:142
  3048. #, c-format
  3049. msgid "The directory %s is diverted"
  3050. msgstr "O directorio %s está desviado"
  3051. #: apt-inst/extract.cc:152
  3052. #, c-format
  3053. msgid "The package is trying to write to the diversion target %s/%s"
  3054. msgstr "O paquete tenta escribir no destino do desvío %s/%s"
  3055. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  3056. msgid "The diversion path is too long"
  3057. msgstr "A ruta do desvío é longa de máis"
  3058. #: apt-inst/extract.cc:249
  3059. #, c-format
  3060. msgid "The directory %s is being replaced by a non-directory"
  3061. msgstr "O directorio %s estase a substituír por algo que non é un directorio"
  3062. #: apt-inst/extract.cc:289
  3063. msgid "Failed to locate node in its hash bucket"
  3064. msgstr "Non foi posíbel atopar o nodo no seu contedor hash"
  3065. #: apt-inst/extract.cc:293
  3066. msgid "The path is too long"
  3067. msgstr "A ruta é longa de máis"
  3068. #: apt-inst/extract.cc:421
  3069. #, c-format
  3070. msgid "Overwrite package match with no version for %s"
  3071. msgstr "Coincidencia na sobrescritura sen versión para %s"
  3072. #: apt-inst/extract.cc:438
  3073. #, c-format
  3074. msgid "File %s/%s overwrites the one in the package %s"
  3075. msgstr "O ficheiro %s/%s sobrescribe o do paquete %s"
  3076. #: apt-inst/extract.cc:498
  3077. #, c-format
  3078. msgid "Unable to stat %s"
  3079. msgstr "Non é posíbel determinar o estado %s"
  3080. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  3081. #, c-format
  3082. msgid "Failed to write file %s"
  3083. msgstr "Non foi posíbel escribir no ficheiro «%s»"
  3084. #: apt-inst/dirstream.cc:104
  3085. #, c-format
  3086. msgid "Failed to close file %s"
  3087. msgstr "Non foi posíbel pechar o ficheiro %s"
  3088. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  3089. #: apt-inst/deb/debfile.cc:63
  3090. #, c-format
  3091. msgid "This is not a valid DEB archive, missing '%s' member"
  3092. msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»"
  3093. #: apt-inst/deb/debfile.cc:132
  3094. #, c-format
  3095. msgid "Internal error, could not locate member %s"
  3096. msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s"
  3097. #: apt-inst/deb/debfile.cc:227
  3098. msgid "Unparsable control file"
  3099. msgstr "Ficheiro de control non analizábel"
  3100. #: apt-inst/contrib/arfile.cc:76
  3101. msgid "Invalid archive signature"
  3102. msgstr "Sinatura de arquivo incorrecta"
  3103. #: apt-inst/contrib/arfile.cc:84
  3104. msgid "Error reading archive member header"
  3105. msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo"
  3106. #: apt-inst/contrib/arfile.cc:96
  3107. #, c-format
  3108. msgid "Invalid archive member header %s"
  3109. msgstr "Cabeceira do membro do arquivo incorrecta %s"
  3110. #: apt-inst/contrib/arfile.cc:108
  3111. msgid "Invalid archive member header"
  3112. msgstr "Cabeceira do membro do arquivo incorrecta"
  3113. #: apt-inst/contrib/arfile.cc:137
  3114. msgid "Archive is too short"
  3115. msgstr "O arquivo é curto de máis"
  3116. #: apt-inst/contrib/arfile.cc:141
  3117. msgid "Failed to read the archive headers"
  3118. msgstr "Non foi posíbel ler as cabeceiras dos arquivos"
  3119. #: apt-inst/contrib/extracttar.cc:110
  3120. #, fuzzy, c-format
  3121. msgid "Cannot find a configured compressor for '%s'"
  3122. msgstr "Non é posíbel atopar un rexistro de autenticación para: %s"
  3123. #: apt-inst/contrib/extracttar.cc:142 apt-inst/contrib/extracttar.cc:172
  3124. msgid "Corrupted archive"
  3125. msgstr "Arquivo danado"
  3126. #: apt-inst/contrib/extracttar.cc:157
  3127. msgid "Tar checksum failed, archive corrupted"
  3128. msgstr "A suma de comprobación do arquivo tar non coincide, está danado"
  3129. #: apt-inst/contrib/extracttar.cc:262
  3130. #, c-format
  3131. msgid "Unknown TAR header type %u, member %s"
  3132. msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s"
  3133. #, fuzzy
  3134. #~ msgid "Must specifc at least one srv record"
  3135. #~ msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  3136. #~ msgid "Failed to create pipes"
  3137. #~ msgstr "Non foi posíbel crear as canles"
  3138. #~ msgid "Failed to exec gzip "
  3139. #~ msgstr "Non foi posíbel executar gzip "
  3140. #~ msgid "%s %s for %s compiled on %s %s\n"
  3141. #~ msgstr "%s %s para %s compilado en %s %s\n"
  3142. #~ msgid "Failed to create FILE*"
  3143. #~ msgstr "Non foi posíbel crear o FILE*"
  3144. #, fuzzy
  3145. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3146. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)"
  3147. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3148. #~ msgstr ""
  3149. #~ "Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)"
  3150. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3151. #~ msgstr ""
  3152. #~ "Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)"
  3153. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3154. #~ msgstr ""
  3155. #~ "Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)"
  3156. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3157. #~ msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)"
  3158. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3159. #~ msgstr ""
  3160. #~ "Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten "
  3161. #~ "valor)"
  3162. #~ msgid "Malformed line %lu in source list %s (URI)"
  3163. #~ msgstr "Liña %lu mal construída na lista de orixes %s (URI)"
  3164. #~ msgid "Malformed line %lu in source list %s (dist)"
  3165. #~ msgstr "Liña %lu mal construída na lista de orixes %s (dist)"
  3166. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3167. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)"
  3168. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3169. #~ msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)"
  3170. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3171. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)"
  3172. #~ msgid "Package %s %s was not found while processing file dependencies"
  3173. #~ msgstr ""
  3174. #~ "Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de "
  3175. #~ "ficheiros"
  3176. #~ msgid "Couldn't stat source package list %s"
  3177. #~ msgstr "Non foi posíbel atopar a lista de paquetes fonte %s"
  3178. #~ msgid "Collecting File Provides"
  3179. #~ msgstr "Recollendo as provisións de ficheiros"
  3180. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3181. #~ msgstr ""
  3182. #~ "Non é posíbel ler a suma de comprobación para «%s» no ficheiro de "
  3183. #~ "publicación"
  3184. #~ msgid "Vendor block %s contains no fingerprint"
  3185. #~ msgstr "O bloque de provedor %s non contén unha pegada dixital"
  3186. #~ msgid "Total dependency version space: "
  3187. #~ msgstr "Espazo total de versións de dependencias: "
  3188. #~ msgid "You don't have enough free space in %s"
  3189. #~ msgstr "Non hai espazo libre abondo en %s"
  3190. #~ msgid "Done"
  3191. #~ msgstr "Feito"
  3192. #~ msgid "No keyring installed in %s."
  3193. #~ msgstr "Non ha ningún chaveiro instalado en %s."
  3194. #, fuzzy
  3195. #~ msgid "Internal error, Upgrade broke stuff"
  3196. #~ msgstr "Produciuse un erro interno, AllUpgrade estragou cousas"
  3197. #~ msgid "%s not a valid DEB package."
  3198. #~ msgstr "%s non é un paquete DEB válido."
  3199. #~ msgid ""
  3200. #~ "Using CD-ROM mount point %s\n"
  3201. #~ "Mounting CD-ROM\n"
  3202. #~ msgstr ""
  3203. #~ "Empregando o punto de montaxe de CD-ROMs %s\n"
  3204. #~ "Montando o CD-ROM\n"
  3205. #~ msgid ""
  3206. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3207. #~ "seems to be corrupt."
  3208. #~ msgstr ""
  3209. #~ "Non foi posíbel actualizar %s con mmap e co ficheiro usado na operación - "
  3210. #~ "a actualización semella estar danada."
  3211. #~ msgid ""
  3212. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3213. #~ "seems to be corrupt."
  3214. #~ msgstr ""
  3215. #~ "Non foi posíbel actualizar %s con mmap e (mais non hai un fallo "
  3216. #~ "específico de mmap) - a actualización semella estar danada."
  3217. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3218. #~ msgstr "Ignorase a versión de destino «%s» non dispoñíbel do paquete «%s»"
  3219. #~ msgid "Downloading %s %s"
  3220. #~ msgstr "Descargando %s %s"
  3221. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3222. #~ msgstr ""
  3223. #~ "Este non é un arquivo DEB correcto, non ten un membro «%s», «%s» ou «%s»"
  3224. #~ msgid "MD5Sum mismatch"
  3225. #~ msgstr "A MD5Sum non coincide"
  3226. #~ msgid ""
  3227. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3228. #~ "need to manually fix this package."
  3229. #~ msgstr ""
  3230. #~ "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar "
  3231. #~ "que ten que arranxar este paquete a man."
  3232. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3233. #~ msgstr ""
  3234. #~ "Non foi posíbel escribir no rexistro, a chamada a openpty() fallou (/dev/"
  3235. #~ "pts non estaba montado?)\n"
  3236. #~ msgid "Skipping nonexistent file %s"
  3237. #~ msgstr "Omitindo o ficheiro inexistente %s"
  3238. #~ msgid "Failed to remove %s"
  3239. #~ msgstr "Non foi posíbel retirar %s"
  3240. #~ msgid "Unable to create %s"
  3241. #~ msgstr "Non é posíbel crear %s"
  3242. #~ msgid "Failed to stat %sinfo"
  3243. #~ msgstr "Non foi posíbel atopar %sinfo"
  3244. #~ msgid "The info and temp directories need to be on the same filesystem"
  3245. #~ msgstr ""
  3246. #~ "Os directorios info e temp teñen que estar no mesmo sistema de ficheiros"
  3247. #~ msgid "Failed to change to the admin dir %sinfo"
  3248. #~ msgstr "Non foi posíbel cambiar ao directorio de administración %sinfo"
  3249. #~ msgid "Internal error getting a package name"
  3250. #~ msgstr "Produciuse un erro interno ao obter un nome de paquete"
  3251. #~ msgid "Reading file listing"
  3252. #~ msgstr "Lendo a lista de ficheiros"
  3253. #~ msgid ""
  3254. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3255. #~ "then make it empty and immediately re-install the same version of the "
  3256. #~ "package!"
  3257. #~ msgstr ""
  3258. #~ "Non foi posíbel abrir o ficheiro de listas «%sinfo/%s». Se non pode "
  3259. #~ "recuperalo, baléireo e reinstale a mesma versión do paquete."
  3260. #~ msgid "Failed reading the list file %sinfo/%s"
  3261. #~ msgstr "Non foi posíbel ler o ficheiro de listas %sinfo/%s"
  3262. #~ msgid "Internal error getting a node"
  3263. #~ msgstr "Produciuse un erro interno ao obter un nodo"
  3264. #~ msgid "Failed to open the diversions file %sdiversions"
  3265. #~ msgstr "Non foi posíbel abrir o ficheiro de desvíos %sdiversions"
  3266. #~ msgid "The diversion file is corrupted"
  3267. #~ msgstr "O ficheiro de desvíos está danado"
  3268. #~ msgid "Invalid line in the diversion file: %s"
  3269. #~ msgstr "Liña incorrecta no ficheiro de desvíos: %s"
  3270. #~ msgid "Internal error adding a diversion"
  3271. #~ msgstr "Produciuse un erro interno ao engadir un desvío"
  3272. #~ msgid "The pkg cache must be initialized first"
  3273. #~ msgstr "Antes ten que inicializarse a caché de paquetes"
  3274. #~ msgid "Failed to find a Package: header, offset %lu"
  3275. #~ msgstr "Non foi posíbel atopar unha cabeceira Package:, desprazamento %lu"
  3276. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3277. #~ msgstr ""
  3278. #~ "Sección ConfFile incorrecta no ficheiro de estado. Desprazamento %lu"
  3279. #~ msgid "Error parsing MD5. Offset %lu"
  3280. #~ msgstr "Produciuse un erro ao analizar o MD5. Desprazamento %lu"
  3281. #~ msgid "Couldn't change to %s"
  3282. #~ msgstr "Non foi posíbel cambiar a %s"
  3283. #~ msgid "Failed to locate a valid control file"
  3284. #~ msgstr "Non foi posíbel atopar un ficheiro de control correcto"
  3285. #~ msgid "Couldn't open pipe for %s"
  3286. #~ msgstr "Non foi posíbel abrir unha canle para %s"
  3287. #~ msgid "Read error from %s process"
  3288. #~ msgstr "Erro de lectura do proceso %s"
  3289. #~ msgid "Got a single header line over %u chars"
  3290. #~ msgstr "Obtivose unha soa liña de cabeceira en %u caracteres"
  3291. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3292. #~ msgstr "Nota: Isto será feito automaticamente por dpkg."
  3293. #~ msgid "Malformed override %s line %lu #1"
  3294. #~ msgstr "«Override» %s liña %lu incorrecta (1)"
  3295. #~ msgid "Malformed override %s line %lu #2"
  3296. #~ msgstr "«Override» %s liña %lu incorrecta (2)"
  3297. #~ msgid "Malformed override %s line %lu #3"
  3298. #~ msgstr "«Override» %s liña %lu incorrecta (3)"
  3299. #~ msgid "decompressor"
  3300. #~ msgstr "descompresor"
  3301. #~ msgid "read, still have %lu to read but none left"
  3302. #~ msgstr "lectura, aínda hai %lu para ler pero non queda ningún"
  3303. #~ msgid "write, still have %lu to write but couldn't"
  3304. #~ msgstr "escritura, aínda hai %lu para escribir pero non se puido"
  3305. #~ msgid ""
  3306. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3307. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3308. #~ msgstr ""
  3309. #~ "Non foi posíbel realizar a configuración inmediata no paquete, aínda sen "
  3310. #~ "desempaquetar, «%s». Vexa man 5 apt.conf baixo APT::Immediate-Configure "
  3311. #~ "para obter máis detalles."
  3312. #~ msgid "Error occurred while processing %s (NewPackage)"
  3313. #~ msgstr "Produciuse un erro ao procesar %s (NewPackage)"
  3314. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3315. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage1)"
  3316. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3317. #~ msgstr "Produciuse un erro ao procesar %s (NewFileDesc1)"
  3318. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3319. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage2)"
  3320. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3321. #~ msgstr "Produciuse un erro ao procesar %s (NewFileVer1)"
  3322. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3323. #~ msgstr "Produciuse un erro ao procesar %s (NewVersion%d)"
  3324. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3325. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage3)"
  3326. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3327. #~ msgstr "Produciuse un erro ao procesar %s (NewFileDesc2)"
  3328. #~ msgid "Error occurred while processing %s (FindPkg)"
  3329. #~ msgstr "Produciuse un erro ao procesar %s (FindPkg)"
  3330. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3331. #~ msgstr "Produciuse un erro ao procesar %s (CollectFileProvides)"
  3332. #, fuzzy
  3333. #~| msgid "Internal error, could not locate member %s"
  3334. #~ msgid "Internal error, could not locate member"
  3335. #~ msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s"
  3336. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3337. #~ msgstr ""
  3338. #~ "Caducou o ficheiro de publicación, ignorando %s (non válido desde %s)"
  3339. #~ msgid " %4i %s\n"
  3340. #~ msgstr "\n"
  3341. #~ msgid "%4i %s\n"
  3342. #~ msgstr "\n"