es.po 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533
  1. # Advanced Package Transfer - APT message translation catalog
  2. # Copyright (C) 2002-2010 Free Software Foundation, Inc.
  3. #
  4. #
  5. # Current translator:
  6. # - Manuel "Venturi" Porras Peralta <venturi@openmailbox.org>, 2014
  7. #
  8. # Previous Translators and reviewers:
  9. # - Rafael Sepulveda <drs@gnulinux.org.mx>, 2002.
  10. # - Asier Llano Palacios <asierllano@infonegocio.com>
  11. # - Ruben Porras Campo <nahoo@inicia.es> 2004
  12. # - Javier Fernandez-Sanguino <jfs@debian.org> 2003, 2006-2008
  13. #
  14. # Traductores, si no conoce el formato PO, merece la pena leer la
  15. # documentación de gettext, especialmente las secciones dedicadas a este
  16. # formato, por ejemplo ejecutando:
  17. # info -n '(gettext)PO Files'
  18. # info -n '(gettext)Header Entry'
  19. #
  20. # Equipo de traducción al español, por favor lean antes de traducir
  21. # los siguientes documentos:
  22. #
  23. # - El proyecto de traducción de Debian al español
  24. # http://www.debian.org/intl/spanish/
  25. # especialmente las notas y normas de traducción en
  26. # http://www.debian.org/intl/spanish/notas
  27. #
  28. # Si tiene dudas o consultas sobre esta traducción consulte con el último
  29. # traductor (campo Last-Translator) y ponga en copia a la lista de
  30. # traducción de Debian al español (<debian-l10n-spanish@lists.debian.org>)
  31. #
  32. msgid ""
  33. msgstr ""
  34. "Project-Id-Version: apt 0.8.10\n"
  35. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  36. "POT-Creation-Date: 2014-12-23 13:28+0100\n"
  37. "PO-Revision-Date: 2014-11-20 02:25+0100\n"
  38. "Last-Translator: Manuel \"Venturi\" Porras Peralta <venturi@openmailbox."
  39. "org>\n"
  40. "Language-Team: Español; Castellano <debian-l10n-spanish@lists.debian.org>\n"
  41. "Language: es\n"
  42. "MIME-Version: 1.0\n"
  43. "Content-Type: text/plain; charset=UTF-8\n"
  44. "Content-Transfer-Encoding: 8bit\n"
  45. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  46. "X-POFile-SpellExtra: BD getaddrinfo dist show xvcg Filename sources cachés\n"
  47. "X-POFile-SpellExtra: dumpavail apport scanpackages yes pts URIs upgrade\n"
  48. "X-POFile-SpellExtra: Hash TAR mmap fix Immediate li source add Pathprefix\n"
  49. "X-POFile-SpellExtra: ftparchive policy main URIS qq Resolve Incoming\n"
  50. "X-POFile-SpellExtra: NewFileVer depends get libc GPG URI sdiversions\n"
  51. "X-POFile-SpellExtra: Length Limit PASS ConfFile NewVersion showpkg IPC\n"
  52. "X-POFile-SpellExtra: Super unmet APT registrable NewPackage AddDiversion\n"
  53. "X-POFile-SpellExtra: dists release dselect dir Hmmm debconf force dump ej\n"
  54. "X-POFile-SpellExtra: list Section GraphViz Priority FindPkg gencaches\n"
  55. "X-POFile-SpellExtra: Valid remove Ign DEB PORT LoopBreak tmp ftp\n"
  56. "X-POFile-SpellExtra: AutoRemover stats AF Until delink unmarkauto firms\n"
  57. "X-POFile-SpellExtra: ref Dpkg tar autoremove Obj missing update binary\n"
  58. "X-POFile-SpellExtra: sobreescribe proxy org packages debs generate MD\n"
  59. "X-POFile-SpellExtra: search ProxyLogin limin AllUpgrade Md Range dotty Pre\n"
  60. "X-POFile-SpellExtra: NewFileDesc empaquetamiento root realloc gpgv apt\n"
  61. "X-POFile-SpellExtra: pkgnames Release BinaryPath old DeLink showauto\n"
  62. "X-POFile-SpellExtra: pkgProblemResolver parseable nstall\n"
  63. "X-POFile-SpellExtra: desempaquetamiento script DESACTUALIZARÁN\n"
  64. "X-POFile-SpellExtra: InstallPackages PreDepende lu sobreescribir Packages\n"
  65. "X-POFile-SpellExtra: shell desincronizado override MaxReports cdrom dpkg\n"
  66. "X-POFile-SpellExtra: socket info md Force temp dep CollectFileProvides\n"
  67. "X-POFile-SpellExtra: spartial scansources Only dev purge nfs Intro install\n"
  68. "X-POFile-SpellExtra: deb Sobreescribiendo openpty USER UsePackage vd\n"
  69. "X-POFile-SpellExtra: markauto DB DropNode Content rdepends conf zu hash\n"
  70. "X-POFile-SpellExtra: check contents paq Err Sources MMap lih decompresor\n"
  71. "X-POFile-SpellExtra: build config EPRT http Package liseg dscs Remove\n"
  72. "X-POFile-SpellExtra: sortpkgs sB man extracttemplates bzr potato clear\n"
  73. "X-POFile-SpellExtra: autoclean showsrc desactualizados clean gzip TYPE\n"
  74. "X-POFile-SpellExtra: sinfo Acquire\n"
  75. "X-Generator: Gtranslator 2.91.6\n"
  76. #: cmdline/apt-cache.cc:149
  77. #, c-format
  78. msgid "Package %s version %s has an unmet dep:\n"
  79. msgstr "El paquete %s versión %s tiene dependencias incumplidas:\n"
  80. #: cmdline/apt-cache.cc:277
  81. msgid "Total package names: "
  82. msgstr "Nombres de paquetes totales: "
  83. #: cmdline/apt-cache.cc:279
  84. msgid "Total package structures: "
  85. msgstr "Estructuras de paquetes totales: "
  86. #: cmdline/apt-cache.cc:319
  87. msgid " Normal packages: "
  88. msgstr " Paquetes normales: "
  89. #: cmdline/apt-cache.cc:320
  90. msgid " Pure virtual packages: "
  91. msgstr " Paquetes virtuales puros: "
  92. #: cmdline/apt-cache.cc:321
  93. msgid " Single virtual packages: "
  94. msgstr " Paquetes virtuales únicos: "
  95. #: cmdline/apt-cache.cc:322
  96. msgid " Mixed virtual packages: "
  97. msgstr " Paquetes virtuales mixtos: "
  98. #: cmdline/apt-cache.cc:323
  99. msgid " Missing: "
  100. msgstr " Faltan: "
  101. #: cmdline/apt-cache.cc:325
  102. msgid "Total distinct versions: "
  103. msgstr "Versiones diferentes totales: "
  104. #: cmdline/apt-cache.cc:327
  105. msgid "Total distinct descriptions: "
  106. msgstr "Descripciones diferentes totales: "
  107. #: cmdline/apt-cache.cc:329
  108. msgid "Total dependencies: "
  109. msgstr "Dependencias totales: "
  110. #: cmdline/apt-cache.cc:332
  111. msgid "Total ver/file relations: "
  112. msgstr "Relaciones versión/archivo totales: "
  113. #: cmdline/apt-cache.cc:334
  114. msgid "Total Desc/File relations: "
  115. msgstr "Relaciones descripción/archivo totales: "
  116. #: cmdline/apt-cache.cc:336
  117. msgid "Total Provides mappings: "
  118. msgstr "Mapeo Total de Provisiones: "
  119. # globbed -> globalizadas ? (jfs)
  120. #: cmdline/apt-cache.cc:348
  121. msgid "Total globbed strings: "
  122. msgstr "Cadenas globalizadas totales: "
  123. #: cmdline/apt-cache.cc:362
  124. msgid "Total dependency version space: "
  125. msgstr "Espacio de versión de dependencias total: "
  126. #: cmdline/apt-cache.cc:367
  127. msgid "Total slack space: "
  128. msgstr "Espacio desperdiciado total: "
  129. #: cmdline/apt-cache.cc:375
  130. msgid "Total space accounted for: "
  131. msgstr "Espacio registrado total: "
  132. #: cmdline/apt-cache.cc:506 cmdline/apt-cache.cc:1155
  133. #: apt-private/private-show.cc:58
  134. #, c-format
  135. msgid "Package file %s is out of sync."
  136. msgstr "El archivo de paquetes %s está desincronizado."
  137. #: cmdline/apt-cache.cc:584 cmdline/apt-cache.cc:1442
  138. #: cmdline/apt-cache.cc:1444 cmdline/apt-cache.cc:1521 cmdline/apt-mark.cc:59
  139. #: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232
  140. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  141. msgid "No packages found"
  142. msgstr "No se encontró ningún paquete"
  143. #: cmdline/apt-cache.cc:1254 apt-private/private-search.cc:41
  144. msgid "You must give at least one search pattern"
  145. msgstr "Debe proporcionar al menos un patrón de búsqueda"
  146. #: cmdline/apt-cache.cc:1421
  147. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  148. msgstr "Esta orden está desfasada. Utilice «apt-mark showauto» en su lugar."
  149. #: cmdline/apt-cache.cc:1516 apt-pkg/cacheset.cc:596
  150. #, c-format
  151. msgid "Unable to locate package %s"
  152. msgstr "No se ha podido localizar el paquete %s"
  153. #: cmdline/apt-cache.cc:1546
  154. msgid "Package files:"
  155. msgstr "Archivos de paquetes:"
  156. #: cmdline/apt-cache.cc:1553 cmdline/apt-cache.cc:1644
  157. msgid "Cache is out of sync, can't x-ref a package file"
  158. msgstr ""
  159. "Caché fuera de sincronismo, no se puede hacer x-ref a un archivo de paquetes"
  160. #. Show any packages have explicit pins
  161. #: cmdline/apt-cache.cc:1567
  162. msgid "Pinned packages:"
  163. msgstr "Paquetes con pin:"
  164. #: cmdline/apt-cache.cc:1579 cmdline/apt-cache.cc:1624
  165. msgid "(not found)"
  166. msgstr "(no encontrado)"
  167. #: cmdline/apt-cache.cc:1587
  168. msgid " Installed: "
  169. msgstr " Instalados: "
  170. #: cmdline/apt-cache.cc:1588
  171. msgid " Candidate: "
  172. msgstr " Candidato: "
  173. #: cmdline/apt-cache.cc:1606 cmdline/apt-cache.cc:1614
  174. msgid "(none)"
  175. msgstr "(ninguno)"
  176. #: cmdline/apt-cache.cc:1621
  177. msgid " Package pin: "
  178. msgstr " Pin del paquete: "
  179. #. Show the priority tables
  180. #: cmdline/apt-cache.cc:1630
  181. msgid " Version table:"
  182. msgstr " Tabla de versión:"
  183. #: cmdline/apt-cache.cc:1743 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83
  184. #: cmdline/apt-get.cc:1591 cmdline/apt-helper.cc:84 cmdline/apt-mark.cc:388
  185. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:217
  186. #: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45
  187. #: cmdline/apt-sortpkgs.cc:147
  188. #, c-format
  189. msgid "%s %s for %s compiled on %s %s\n"
  190. msgstr "%s %s para %s compilado en %s %s\n"
  191. #: cmdline/apt-cache.cc:1750
  192. msgid ""
  193. "Usage: apt-cache [options] command\n"
  194. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  195. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  196. "\n"
  197. "apt-cache is a low-level tool used to query information\n"
  198. "from APT's binary cache files\n"
  199. "\n"
  200. "Commands:\n"
  201. " gencaches - Build both the package and source cache\n"
  202. " showpkg - Show some general information for a single package\n"
  203. " showsrc - Show source records\n"
  204. " stats - Show some basic statistics\n"
  205. " dump - Show the entire file in a terse form\n"
  206. " dumpavail - Print an available file to stdout\n"
  207. " unmet - Show unmet dependencies\n"
  208. " search - Search the package list for a regex pattern\n"
  209. " show - Show a readable record for the package\n"
  210. " depends - Show raw dependency information for a package\n"
  211. " rdepends - Show reverse dependency information for a package\n"
  212. " pkgnames - List the names of all packages in the system\n"
  213. " dotty - Generate package graphs for GraphViz\n"
  214. " xvcg - Generate package graphs for xvcg\n"
  215. " policy - Show policy settings\n"
  216. "\n"
  217. "Options:\n"
  218. " -h This help text.\n"
  219. " -p=? The package cache.\n"
  220. " -s=? The source cache.\n"
  221. " -q Disable progress indicator.\n"
  222. " -i Show only important deps for the unmet command.\n"
  223. " -c=? Read this configuration file\n"
  224. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  225. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  226. msgstr ""
  227. "Modo de uso: apt-cache [opciones] orden\n"
  228. " apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
  229. " apt-cache [opciones] showsrc paq1 [paq2 ...]\n"
  230. "\n"
  231. "apt-cache es una herramienta de bajo nivel que se utiliza para consultar\n"
  232. "información sobre los archivos binarios de caché de APT\n"
  233. "\n"
  234. "Órdenes:\n"
  235. " gencaches - Crea ambas cachés, la de paquetes y la de fuentes\n"
  236. " showpkg - Muestra información general para un único paquete\n"
  237. " showsrc - Muestra la información de fuentes\n"
  238. " stats - Muestra algunas estadísticas básicas\n"
  239. " dump - Muestra el archivo entero en un formato terso\n"
  240. " dumpavail - Imprime un fichero disponible a la salida estándar\n"
  241. " unmet - Muestra dependencias incumplidas\n"
  242. " search - Busca en la lista de paquetes según un patrón de expresión "
  243. "regular\n"
  244. " show - Muestra un registro legible para el paquete\n"
  245. " depends - Muestra la información de dependencias en bruto para el "
  246. "paquete\n"
  247. " rdepends - Muestra la información de dependencias inversas del paquete\n"
  248. " pkgnames - Lista los nombres de todos los paquetes en el sistema\n"
  249. " dotty - Genera gráficas del paquete para GraphViz\n"
  250. " xvcg - Genera gráficas del paquete para xvcg\n"
  251. " policy - Muestra parámetros de las normas\n"
  252. "\n"
  253. "Opciones:\n"
  254. " -h Este texto de ayuda.\n"
  255. " -p=? La caché de paquetes.\n"
  256. " -s=? La caché de fuentes.\n"
  257. " -q Desactiva el indicador de progreso.\n"
  258. " -i Muestra solo dependencias importantes para la orden incumplida.\n"
  259. " -c=? Lee este archivo de configuración\n"
  260. " -o=? Establece una opción de configuración arbitraria, p.ej. -o dir::"
  261. "cache=/tmp\n"
  262. "Vea las páginas del manual apt-cache(8) y apt.conf(5) para más información.\n"
  263. #: cmdline/apt-cdrom.cc:76
  264. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  265. msgstr ""
  266. "Proporcione un nombre para este disco, como pueda ser «Debian 5.0.3 Disco 1»"
  267. #: cmdline/apt-cdrom.cc:91
  268. msgid "Please insert a Disc in the drive and press enter"
  269. msgstr "Introduzca un disco en la unidad y pulse Intro"
  270. #: cmdline/apt-cdrom.cc:139
  271. #, c-format
  272. msgid "Failed to mount '%s' to '%s'"
  273. msgstr "No se pudo montar «%s» como «%s»"
  274. #: cmdline/apt-cdrom.cc:178
  275. msgid ""
  276. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  277. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  278. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  279. "mount point."
  280. msgstr ""
  281. "No se pudo detectar automáticamente ningún CD-ROM o no está usando el punto "
  282. "de montaje predeterminado.\n"
  283. "Puede intentar la opción --cdrom para establecer el punto de montaje del CD-"
  284. "ROM.\n"
  285. "Vea «man apt-cdrom» para más información sobre la autodetección y el punto "
  286. "de montaje del CD-ROM."
  287. #: cmdline/apt-cdrom.cc:182
  288. msgid "Repeat this process for the rest of the CDs in your set."
  289. msgstr "Repita este proceso para el resto de los CDs del conjunto."
  290. #: cmdline/apt-config.cc:48
  291. msgid "Arguments not in pairs"
  292. msgstr "Argumentos no emparejados"
  293. #: cmdline/apt-config.cc:89
  294. msgid ""
  295. "Usage: apt-config [options] command\n"
  296. "\n"
  297. "apt-config is a simple tool to read the APT config file\n"
  298. "\n"
  299. "Commands:\n"
  300. " shell - Shell mode\n"
  301. " dump - Show the configuration\n"
  302. "\n"
  303. "Options:\n"
  304. " -h This help text.\n"
  305. " -c=? Read this configuration file\n"
  306. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  307. msgstr ""
  308. "Uso: apt-config [opciones] orden\n"
  309. "\n"
  310. "apt-config es una herramienta sencilla para leer el archivo de configuración "
  311. "de APT.\n"
  312. "\n"
  313. "Comandos:\n"
  314. " shell - Modo shell\n"
  315. " dump - Muestra la configuración\n"
  316. "\n"
  317. "Opciones:\n"
  318. " -h Este texto de ayuda.\n"
  319. " -c=? Lee este fichero de configuración\n"
  320. " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
  321. " cache=/tmp\n"
  322. #: cmdline/apt-get.cc:245
  323. #, c-format
  324. msgid "Can not find a package for architecture '%s'"
  325. msgstr "No se pudo encontrar ningún paquete para la arquitectura «%s»"
  326. #: cmdline/apt-get.cc:327
  327. #, c-format
  328. msgid "Can not find a package '%s' with version '%s'"
  329. msgstr "No se pudo encontrar el paquete «%s» en la versión «%s»"
  330. #: cmdline/apt-get.cc:330
  331. #, c-format
  332. msgid "Can not find a package '%s' with release '%s'"
  333. msgstr "No se pudo encontrar el paquete «%s» en la versión de publicación «%s»"
  334. #: cmdline/apt-get.cc:367
  335. #, c-format
  336. msgid "Picking '%s' as source package instead of '%s'\n"
  337. msgstr "Escogiendo «%s» como paquete fuente en lugar de «%s»\n"
  338. #: cmdline/apt-get.cc:423
  339. #, c-format
  340. msgid "Can not find version '%s' of package '%s'"
  341. msgstr "No se pudo encontrar la versión «%s» del paquete «%s»"
  342. #: cmdline/apt-get.cc:454
  343. #, c-format
  344. msgid "Couldn't find package %s"
  345. msgstr "No se pudo encontrar el paquete %s"
  346. #: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81
  347. #: apt-private/private-install.cc:865
  348. #, c-format
  349. msgid "%s set to manually installed.\n"
  350. msgstr "fijado %s como instalado manualmente.\n"
  351. #: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83
  352. #, c-format
  353. msgid "%s set to automatically installed.\n"
  354. msgstr "fijado %s como instalado automáticamente.\n"
  355. #: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127
  356. msgid ""
  357. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  358. "instead."
  359. msgstr ""
  360. "Esta orden está desfasada. Utilice «apt-mark auto» y «apt-mark manual» en su "
  361. "lugar."
  362. #: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546
  363. msgid "Internal error, problem resolver broke stuff"
  364. msgstr ""
  365. "Error interno, el sistema de solución de problemas rompió algunas cosas"
  366. #: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611
  367. msgid "Unable to lock the download directory"
  368. msgstr "No se puede bloquear el directorio de descarga"
  369. #: cmdline/apt-get.cc:726
  370. msgid "Must specify at least one package to fetch source for"
  371. msgstr "Debe especificar al menos un paquete para obtener su código fuente"
  372. #: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1071
  373. #, c-format
  374. msgid "Unable to find a source package for %s"
  375. msgstr "No se pudo encontrar el paquete de fuentes para %s"
  376. #: cmdline/apt-get.cc:786
  377. #, c-format
  378. msgid ""
  379. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  380. "%s\n"
  381. msgstr ""
  382. "NOTA: el empaquetamiento de «%s» se mantiene en el sistema de control de "
  383. "versiones «%s» en:\n"
  384. "%s\n"
  385. #: cmdline/apt-get.cc:791
  386. #, c-format
  387. msgid ""
  388. "Please use:\n"
  389. "bzr branch %s\n"
  390. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  391. msgstr ""
  392. "Utilice:\n"
  393. "bzr branch %s\n"
  394. "para obtener las últimas actualizaciones (posiblemente no publicadas aún) "
  395. "del paquete.\n"
  396. #: cmdline/apt-get.cc:839
  397. #, c-format
  398. msgid "Skipping already downloaded file '%s'\n"
  399. msgstr "Omitiendo el fichero ya descargado «%s»\n"
  400. #: cmdline/apt-get.cc:873 cmdline/apt-get.cc:876
  401. #: apt-private/private-install.cc:187 apt-private/private-install.cc:190
  402. #, c-format
  403. msgid "Couldn't determine free space in %s"
  404. msgstr "No se pudo determinar el espacio libre en %s"
  405. #: cmdline/apt-get.cc:886
  406. #, c-format
  407. msgid "You don't have enough free space in %s"
  408. msgstr "No tiene suficiente espacio libre en %s"
  409. #. TRANSLATOR: The required space between number and unit is already included
  410. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  411. #: cmdline/apt-get.cc:895
  412. #, c-format
  413. msgid "Need to get %sB/%sB of source archives.\n"
  414. msgstr "Se necesita descargar %sB/%sB de archivos fuente.\n"
  415. #. TRANSLATOR: The required space between number and unit is already included
  416. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  417. #: cmdline/apt-get.cc:900
  418. #, c-format
  419. msgid "Need to get %sB of source archives.\n"
  420. msgstr "Se necesita descargar %sB de archivos fuente.\n"
  421. #: cmdline/apt-get.cc:906
  422. #, c-format
  423. msgid "Fetch source %s\n"
  424. msgstr "Fuente obtenida %s\n"
  425. #: cmdline/apt-get.cc:924
  426. msgid "Failed to fetch some archives."
  427. msgstr "No se pudieron obtener algunos archivos."
  428. #: cmdline/apt-get.cc:929 apt-private/private-install.cc:314
  429. msgid "Download complete and in download only mode"
  430. msgstr "Descarga completa y en modo de solo descarga"
  431. #: cmdline/apt-get.cc:954
  432. #, c-format
  433. msgid "Skipping unpack of already unpacked source in %s\n"
  434. msgstr ""
  435. "Omitiendo desempaquetamiento de paquetes fuente ya desempaquetados en %s\n"
  436. #: cmdline/apt-get.cc:967
  437. #, c-format
  438. msgid "Unpack command '%s' failed.\n"
  439. msgstr "Falló la orden de desempaquetamiento «%s».\n"
  440. #: cmdline/apt-get.cc:968
  441. #, c-format
  442. msgid "Check if the 'dpkg-dev' package is installed.\n"
  443. msgstr "Compruebe que el paquete «dpkg-dev» esté instalado.\n"
  444. #: cmdline/apt-get.cc:996
  445. #, c-format
  446. msgid "Build command '%s' failed.\n"
  447. msgstr "Falló la orden de construcción «%s».\n"
  448. #: cmdline/apt-get.cc:1015
  449. msgid "Child process failed"
  450. msgstr "Falló el proceso hijo"
  451. #: cmdline/apt-get.cc:1034
  452. msgid "Must specify at least one package to check builddeps for"
  453. msgstr ""
  454. "Debe especificar al menos un paquete para verificar sus dependencias de "
  455. "construcción"
  456. #: cmdline/apt-get.cc:1059
  457. #, c-format
  458. msgid ""
  459. "No architecture information available for %s. See apt.conf(5) APT::"
  460. "Architectures for setup"
  461. msgstr ""
  462. "No hay información disponible de arquitectura para %s. Vea apt.conf(5) APT::"
  463. "Arquitecturas para la configuración"
  464. #: cmdline/apt-get.cc:1083 cmdline/apt-get.cc:1086
  465. #, c-format
  466. msgid "Unable to get build-dependency information for %s"
  467. msgstr "No se pudo obtener información de dependencias de construcción para %s"
  468. #: cmdline/apt-get.cc:1106
  469. #, c-format
  470. msgid "%s has no build depends.\n"
  471. msgstr "%s no tiene dependencias de construcción.\n"
  472. #: cmdline/apt-get.cc:1276
  473. #, c-format
  474. msgid ""
  475. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  476. "packages"
  477. msgstr ""
  478. "La dependencia %s para %s no puede satisfacerse porque no se permite %s en "
  479. "los paquetes «%s»"
  480. #: cmdline/apt-get.cc:1294
  481. #, c-format
  482. msgid ""
  483. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  484. "found"
  485. msgstr ""
  486. "La dependencia %s para %s no puede satisfacerse porque no se puede encontrar "
  487. "el paquete %s"
  488. #: cmdline/apt-get.cc:1317
  489. #, c-format
  490. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  491. msgstr ""
  492. "No se pudo satisfacer la dependencia %s para %s: El paquete instalado %s es "
  493. "demasiado nuevo"
  494. #: cmdline/apt-get.cc:1356
  495. #, c-format
  496. msgid ""
  497. "%s dependency for %s cannot be satisfied because candidate version of "
  498. "package %s can't satisfy version requirements"
  499. msgstr ""
  500. "La dependencia %s para %s no puede satisfacerse porque la versión presentada "
  501. "del paquete %s no puede satisfacer los requisitos de versión"
  502. #: cmdline/apt-get.cc:1362
  503. #, c-format
  504. msgid ""
  505. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  506. "version"
  507. msgstr ""
  508. "La dependencia %s para %s no puede satisfacerse porque el paquete %s no "
  509. "tiene ninguna versión presentada"
  510. #: cmdline/apt-get.cc:1385
  511. #, c-format
  512. msgid "Failed to satisfy %s dependency for %s: %s"
  513. msgstr "No se pudo satisfacer la dependencia %s para %s: %s"
  514. #: cmdline/apt-get.cc:1400
  515. #, c-format
  516. msgid "Build-dependencies for %s could not be satisfied."
  517. msgstr "No se pudieron satisfacer las dependencias de construcción de %s."
  518. #: cmdline/apt-get.cc:1405
  519. msgid "Failed to process build dependencies"
  520. msgstr "No se pudieron procesar las dependencias de construcción"
  521. #: cmdline/apt-get.cc:1498 cmdline/apt-get.cc:1510
  522. #, c-format
  523. msgid "Changelog for %s (%s)"
  524. msgstr "Informe de cambios para %s (%s)"
  525. #: cmdline/apt-get.cc:1596
  526. msgid "Supported modules:"
  527. msgstr "Módulos admitidos:"
  528. #: cmdline/apt-get.cc:1637
  529. msgid ""
  530. "Usage: apt-get [options] command\n"
  531. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  532. " apt-get [options] source pkg1 [pkg2 ...]\n"
  533. "\n"
  534. "apt-get is a simple command line interface for downloading and\n"
  535. "installing packages. The most frequently used commands are update\n"
  536. "and install.\n"
  537. "\n"
  538. "Commands:\n"
  539. " update - Retrieve new lists of packages\n"
  540. " upgrade - Perform an upgrade\n"
  541. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  542. " remove - Remove packages\n"
  543. " autoremove - Remove automatically all unused packages\n"
  544. " purge - Remove packages and config files\n"
  545. " source - Download source archives\n"
  546. " build-dep - Configure build-dependencies for source packages\n"
  547. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  548. " dselect-upgrade - Follow dselect selections\n"
  549. " clean - Erase downloaded archive files\n"
  550. " autoclean - Erase old downloaded archive files\n"
  551. " check - Verify that there are no broken dependencies\n"
  552. " changelog - Download and display the changelog for the given package\n"
  553. " download - Download the binary package into the current directory\n"
  554. "\n"
  555. "Options:\n"
  556. " -h This help text.\n"
  557. " -q Loggable output - no progress indicator\n"
  558. " -qq No output except for errors\n"
  559. " -d Download only - do NOT install or unpack archives\n"
  560. " -s No-act. Perform ordering simulation\n"
  561. " -y Assume Yes to all queries and do not prompt\n"
  562. " -f Attempt to correct a system with broken dependencies in place\n"
  563. " -m Attempt to continue if archives are unlocatable\n"
  564. " -u Show a list of upgraded packages as well\n"
  565. " -b Build the source package after fetching it\n"
  566. " -V Show verbose version numbers\n"
  567. " -c=? Read this configuration file\n"
  568. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  569. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  570. "pages for more information and options.\n"
  571. " This APT has Super Cow Powers.\n"
  572. msgstr ""
  573. "Uso: apt-get [opciones] orden\n"
  574. " apt-get [opciones] install|remove paq1 [paq2 ...]\n"
  575. " apt-get [opciones] source paq1 [paq2 ...]\n"
  576. "\n"
  577. "apt-get es una sencilla interfaz de línea de órdenes para descargar e\n"
  578. "instalar paquetes. Las órdenes más utilizadas son update e install.\n"
  579. "\n"
  580. "Órdenes:\n"
  581. " update - Descarga nuevas listas de paquetes\n"
  582. " upgrade - Realiza una actualización\n"
  583. " install - Instala nuevos paquetes (paquete es libc6 y no libc6.deb)\n"
  584. " remove - Elimina paquetes\n"
  585. " purge - Elimina y purga paquetes\n"
  586. " autoremove - Elimina automáticamente todos los paquetes sin utilizar\n"
  587. " source - Descarga archivos fuente\n"
  588. " build-dep - Configura las dependencias de construcción para paquetes "
  589. "fuente\n"
  590. " dist-upgrade - Actualiza la distribución, vea apt-get(8)\n"
  591. " dselect-upgrade - Sigue las selecciones de dselect\n"
  592. " clean - Elimina los archivos descargados\n"
  593. " autoclean - Elimina los archivos descargados antiguos\n"
  594. " check - Verifica que no haya dependencias incumplidas\n"
  595. " changelog - Descarga y muestra el informe de cambios para el paquete "
  596. "proporcionado\n"
  597. " download - Descarga el paquete binario al directorio actual\n"
  598. "\n"
  599. "Opciones:\n"
  600. " -h Este texto de ayuda.\n"
  601. " -q Salida registrable - sin indicador de progreso\n"
  602. " -qq Sin salida, excepto si hay errores\n"
  603. " -d Sólo descarga - NO instala o desempaqueta los archivos\n"
  604. " -s No actúa. Realiza una simulación\n"
  605. " -y Asume Sí para todas las consultas y no pregunta\n"
  606. " -f Intenta corregir el sistema si tiene dependencias incumplidas en ese "
  607. "momento\n"
  608. " -m Intenta continuar si los archivos no son localizables\n"
  609. " -u Muestra también una lista de paquetes actualizados\n"
  610. " -b Construye el paquete fuente después de obtenerlo\n"
  611. " -V Muesta números de versión detallados\n"
  612. " -c=? Lee este archivo de configuración\n"
  613. " -o=? Establece una opción de configuración arbitraria, p. ej. \n"
  614. " -o dir::cache=/tmp\n"
  615. "Consulte las páginas del manual de apt-get(8), sources.list(5) y apt."
  616. "conf(5)\n"
  617. "para más información y opciones.\n"
  618. " Este APT tiene poderes de Super Vaca.\n"
  619. #: cmdline/apt-helper.cc:36
  620. msgid "Need one URL as argument"
  621. msgstr "Se necesita una URL como argumento"
  622. #: cmdline/apt-helper.cc:49
  623. msgid "Must specify at least one pair url/filename"
  624. msgstr "Debe especificar al menos una pareja url/nombre-fichero"
  625. #: cmdline/apt-helper.cc:73 cmdline/apt-helper.cc:77
  626. msgid "Download Failed"
  627. msgstr "Falló la descarga"
  628. #: cmdline/apt-helper.cc:91
  629. msgid ""
  630. "Usage: apt-helper [options] command\n"
  631. " apt-helper [options] download-file uri target-path\n"
  632. "\n"
  633. "apt-helper is a internal helper for apt\n"
  634. "\n"
  635. "Commands:\n"
  636. " download-file - download the given uri to the target-path\n"
  637. " auto-detect-proxy - detect proxy using apt.conf\n"
  638. "\n"
  639. " This APT helper has Super Meep Powers.\n"
  640. msgstr ""
  641. "Uso: apt-helper [opciones] orden\n"
  642. " apt-helper [opciones] fichero-descarga uri ruta-destino\n"
  643. "\n"
  644. "apt-helper es un ayudante interno de apt\n"
  645. "\n"
  646. "Órdenes:\n"
  647. " download-file - descarga la uri proporcionada a la ruta de destino\n"
  648. " auto-detect-proxy - detecta el proxy usando apt.conf\n"
  649. "\n"
  650. " Este Ayudante de APT tiene poderes de Super Llanto.\n"
  651. #: cmdline/apt-mark.cc:68
  652. #, c-format
  653. msgid "%s can not be marked as it is not installed.\n"
  654. msgstr "%s no se puede marcar como no instalado.\n"
  655. #: cmdline/apt-mark.cc:74
  656. #, c-format
  657. msgid "%s was already set to manually installed.\n"
  658. msgstr "%s ya estaba fijado como instalado manualmente.\n"
  659. #: cmdline/apt-mark.cc:76
  660. #, c-format
  661. msgid "%s was already set to automatically installed.\n"
  662. msgstr "%s ya estaba fijado como instalado automáticamente.\n"
  663. #: cmdline/apt-mark.cc:241
  664. #, c-format
  665. msgid "%s was already set on hold.\n"
  666. msgstr "%s ya estaba fijado como retenido.\n"
  667. #: cmdline/apt-mark.cc:243
  668. #, c-format
  669. msgid "%s was already not hold.\n"
  670. msgstr "%s ya no estaba retenido.\n"
  671. #: cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339
  672. #: apt-pkg/contrib/fileutl.cc:812 apt-pkg/contrib/gpgv.cc:219
  673. #: apt-pkg/deb/dpkgpm.cc:1317
  674. #, c-format
  675. msgid "Waited for %s but it wasn't there"
  676. msgstr "Se esperaba %s pero no estaba presente"
  677. #: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322
  678. #, c-format
  679. msgid "%s set on hold.\n"
  680. msgstr "%s fijado como retenido.\n"
  681. #: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327
  682. #, c-format
  683. msgid "Canceled hold on %s.\n"
  684. msgstr "Se ha cancelado la retención de %s.\n"
  685. #: cmdline/apt-mark.cc:345
  686. msgid "Executing dpkg failed. Are you root?"
  687. msgstr "Fallo al ejecutar dpkg. ¿Está como superusuario?"
  688. #: cmdline/apt-mark.cc:392
  689. msgid ""
  690. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  691. "\n"
  692. "apt-mark is a simple command line interface for marking packages\n"
  693. "as manually or automatically installed. It can also list marks.\n"
  694. "\n"
  695. "Commands:\n"
  696. " auto - Mark the given packages as automatically installed\n"
  697. " manual - Mark the given packages as manually installed\n"
  698. " hold - Mark a package as held back\n"
  699. " unhold - Unset a package set as held back\n"
  700. " showauto - Print the list of automatically installed packages\n"
  701. " showmanual - Print the list of manually installed packages\n"
  702. " showhold - Print the list of package on hold\n"
  703. "\n"
  704. "Options:\n"
  705. " -h This help text.\n"
  706. " -q Loggable output - no progress indicator\n"
  707. " -qq No output except for errors\n"
  708. " -s No-act. Just prints what would be done.\n"
  709. " -f read/write auto/manual marking in the given file\n"
  710. " -c=? Read this configuration file\n"
  711. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  712. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  713. msgstr ""
  714. "Uso: apt-mark [opciones] {auto|manual} paq1 [paq2 ...]\n"
  715. "\n"
  716. "apt-mark es una sencilla interfaz de línea de órdenes para marcar paquetes\n"
  717. "como instalados manualmente o automáticamente. También puede listar las "
  718. "marcas.\n"
  719. "\n"
  720. "Órdenes:\n"
  721. " auto - Marca los paquetes proporcionados como instalados automáticamente\n"
  722. " manual - Marca los paquetes proporcionados como instalados manualmente\n"
  723. " hold - Marca el paquete como retenido\n"
  724. " unhold - Desmarca un paquete marcado como retenido\n"
  725. " showauto - Muestra la lista de paquetes instalados automáticamente\n"
  726. " showmanual - Muestra la lista de paquetes instalados manualmente\n"
  727. " showhold - Muestra la lista de paquetes retenidos\n"
  728. "\n"
  729. "Opciones:\n"
  730. " -h Este texto de ayuda.\n"
  731. " -q Salida registrable - sin indicador de progreso\n"
  732. " -qq Sin salida, expceto si hay errores\n"
  733. " -s No actúa. Realiza una simulación.\n"
  734. " -f Lee y escribe la marca auto/manual en el fichero proporcionado\n"
  735. " -c=? Lee este fichero de configuración\n"
  736. " -o=? Establece una opción de configuración arbitraria, p. ej.\n"
  737. " -o dir::cache=/tmp\n"
  738. "Ver las páginas de manual de apt-mark(8) y apt.conf(5) para más información."
  739. #: cmdline/apt.cc:47
  740. msgid ""
  741. "Usage: apt [options] command\n"
  742. "\n"
  743. "CLI for apt.\n"
  744. "Basic commands: \n"
  745. " list - list packages based on package names\n"
  746. " search - search in package descriptions\n"
  747. " show - show package details\n"
  748. "\n"
  749. " update - update list of available packages\n"
  750. "\n"
  751. " install - install packages\n"
  752. " remove - remove packages\n"
  753. "\n"
  754. " upgrade - upgrade the system by installing/upgrading packages\n"
  755. " full-upgrade - upgrade the system by removing/installing/upgrading "
  756. "packages\n"
  757. "\n"
  758. " edit-sources - edit the source information file\n"
  759. msgstr ""
  760. "Uso: apt [opciones] orden\n"
  761. "\n"
  762. "Interfaz de línea de órdenes (CLI) para apt.\n"
  763. "Órdenes básicas: \n"
  764. " list - lista los paquetes según los nombres\n"
  765. " search - busca en las descripciones de los paquetes\n"
  766. " show - muestra detalles del paquete\n"
  767. "\n"
  768. " update - actualiza la lista de paquetes disponibles\n"
  769. "\n"
  770. " install - instala paquetes\n"
  771. " remove - elimina paquetes\n"
  772. "\n"
  773. " upgrade - actualiza el sistema instalando/actualizando paquetes\n"
  774. " full-upgrade - actualiza el sistema eliminando/instalando/actualizando "
  775. "paquetes\n"
  776. "\n"
  777. " edit-sources - edita el fichero de información de fuentes\n"
  778. #: methods/cdrom.cc:203
  779. #, c-format
  780. msgid "Unable to read the cdrom database %s"
  781. msgstr "No se pudo leer la base de datos %s del cdrom"
  782. #: methods/cdrom.cc:212
  783. msgid ""
  784. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  785. "cannot be used to add new CD-ROMs"
  786. msgstr ""
  787. "Utilice «apt-cdrom» para hacer que APT reconozca este CD. No puede utilizar "
  788. "«apt-get update» para añadir nuevos CDs"
  789. #: methods/cdrom.cc:222
  790. msgid "Wrong CD-ROM"
  791. msgstr "CD equivocado"
  792. #: methods/cdrom.cc:249
  793. #, c-format
  794. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  795. msgstr "No se puede desmontar el CD-ROM de %s, tal vez aún se está utilizando."
  796. #: methods/cdrom.cc:254
  797. msgid "Disk not found."
  798. msgstr "Disco no encontrado."
  799. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:281
  800. msgid "File not found"
  801. msgstr "Fichero no encontrado"
  802. #: methods/copy.cc:61 methods/gzip.cc:117 methods/rred.cc:598
  803. #: methods/rred.cc:608
  804. msgid "Failed to stat"
  805. msgstr "Fallo al leer"
  806. #: methods/copy.cc:105 methods/gzip.cc:124 methods/rred.cc:605
  807. msgid "Failed to set modification time"
  808. msgstr "Fallo al establecer el tiempo de modificación"
  809. #: methods/file.cc:48
  810. msgid "Invalid URI, local URIS must not start with //"
  811. msgstr "URI inválido, los URIS locales no deben empezar por //"
  812. #. Login must be before getpeername otherwise dante won't work.
  813. #: methods/ftp.cc:177
  814. msgid "Logging in"
  815. msgstr "Ingresando"
  816. #: methods/ftp.cc:183
  817. msgid "Unable to determine the peer name"
  818. msgstr "No se pudo determinar el nombre del par"
  819. #: methods/ftp.cc:188
  820. msgid "Unable to determine the local name"
  821. msgstr "No se pudo determinar el nombre local"
  822. #: methods/ftp.cc:219 methods/ftp.cc:247
  823. #, c-format
  824. msgid "The server refused the connection and said: %s"
  825. msgstr "El servidor rechazó la conexión y devolvió: %s"
  826. #: methods/ftp.cc:225
  827. #, c-format
  828. msgid "USER failed, server said: %s"
  829. msgstr "Usuario (USER) falló, el servidor devolvió: %s"
  830. #: methods/ftp.cc:232
  831. #, c-format
  832. msgid "PASS failed, server said: %s"
  833. msgstr "Clave (PASS) falló, el servidor devolvió: %s"
  834. #: methods/ftp.cc:252
  835. msgid ""
  836. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  837. "is empty."
  838. msgstr ""
  839. "Se especificó un servidor proxy pero no un script de entrada, «Acquire::ftp::"
  840. "ProxyLogin» está vacío."
  841. #: methods/ftp.cc:280
  842. #, c-format
  843. msgid "Login script command '%s' failed, server said: %s"
  844. msgstr "Falló la orden «%s» del script de entrada, el servidor devolvió: %s"
  845. #: methods/ftp.cc:306
  846. #, c-format
  847. msgid "TYPE failed, server said: %s"
  848. msgstr "Tipo (TYPE) falló, el servidor devolvió: %s"
  849. #: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:243
  850. msgid "Connection timeout"
  851. msgstr "Caducó la conexión"
  852. #: methods/ftp.cc:350
  853. msgid "Server closed the connection"
  854. msgstr "El servidor cerró la conexión"
  855. #: methods/ftp.cc:353 methods/rsh.cc:202 apt-pkg/contrib/fileutl.cc:1476
  856. #: apt-pkg/contrib/fileutl.cc:1485 apt-pkg/contrib/fileutl.cc:1490
  857. #: apt-pkg/contrib/fileutl.cc:1492
  858. msgid "Read error"
  859. msgstr "Error de lectura"
  860. #: methods/ftp.cc:360 methods/rsh.cc:209
  861. msgid "A response overflowed the buffer."
  862. msgstr "La respuesta desbordó la memoria intermedia (buffer)."
  863. #: methods/ftp.cc:377 methods/ftp.cc:389
  864. msgid "Protocol corruption"
  865. msgstr "Fallo del protocolo"
  866. #: methods/ftp.cc:462 methods/rsh.cc:249 apt-pkg/contrib/fileutl.cc:872
  867. #: apt-pkg/contrib/fileutl.cc:1598 apt-pkg/contrib/fileutl.cc:1607
  868. #: apt-pkg/contrib/fileutl.cc:1612 apt-pkg/contrib/fileutl.cc:1614
  869. #: apt-pkg/contrib/fileutl.cc:1639
  870. msgid "Write error"
  871. msgstr "Error de escritura"
  872. #: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742
  873. msgid "Could not create a socket"
  874. msgstr "No se pudo crear el socket"
  875. #: methods/ftp.cc:712
  876. msgid "Could not connect data socket, connection timed out"
  877. msgstr "No se pudo conectar el socket de datos, caducó el tiempo de conexión"
  878. #: methods/ftp.cc:716 methods/connect.cc:116
  879. msgid "Failed"
  880. msgstr "Falló"
  881. #: methods/ftp.cc:718
  882. msgid "Could not connect passive socket."
  883. msgstr "No se pudo conectar el socket pasivo."
  884. #: methods/ftp.cc:735
  885. msgid "getaddrinfo was unable to get a listening socket"
  886. msgstr "«getaddrinfo» no pudo obtener un socket pasivo"
  887. #: methods/ftp.cc:749
  888. msgid "Could not bind a socket"
  889. msgstr "No se pudo asociar el socket"
  890. #: methods/ftp.cc:753
  891. msgid "Could not listen on the socket"
  892. msgstr "No se pudo escuchar en el socket"
  893. #: methods/ftp.cc:760
  894. msgid "Could not determine the socket's name"
  895. msgstr "No se pudo determinar el nombre del socket"
  896. #: methods/ftp.cc:792
  897. msgid "Unable to send PORT command"
  898. msgstr "No se pudo mandar la orden PORT"
  899. #: methods/ftp.cc:802
  900. #, c-format
  901. msgid "Unknown address family %u (AF_*)"
  902. msgstr "Familia de direcciones %u desconocida (AF_*)"
  903. #: methods/ftp.cc:811
  904. #, c-format
  905. msgid "EPRT failed, server said: %s"
  906. msgstr "EPRT falló, el servidor devolvió: %s"
  907. #: methods/ftp.cc:831
  908. msgid "Data socket connect timed out"
  909. msgstr "Caducó conexión al socket de datos"
  910. #: methods/ftp.cc:838
  911. msgid "Unable to accept connection"
  912. msgstr "No se pudo aceptar la conexión"
  913. #: methods/ftp.cc:877 methods/server.cc:357 methods/rsh.cc:319
  914. msgid "Problem hashing file"
  915. msgstr "Problema al cifrar el fichero"
  916. #: methods/ftp.cc:890
  917. #, c-format
  918. msgid "Unable to fetch file, server said '%s'"
  919. msgstr "No se pudo obtener el fichero, el servidor devolvió «%s»"
  920. #: methods/ftp.cc:905 methods/rsh.cc:338
  921. msgid "Data socket timed out"
  922. msgstr "Caducó el socket de datos"
  923. #: methods/ftp.cc:935
  924. #, c-format
  925. msgid "Data transfer failed, server said '%s'"
  926. msgstr "Falló transferencia de datos, el servidor devolvió «%s»"
  927. #. Get the files information
  928. #: methods/ftp.cc:1014
  929. msgid "Query"
  930. msgstr "Consulta"
  931. #: methods/ftp.cc:1128
  932. msgid "Unable to invoke "
  933. msgstr "No se pudo invocar "
  934. #: methods/connect.cc:76
  935. #, c-format
  936. msgid "Connecting to %s (%s)"
  937. msgstr "Conectando a %s (%s)"
  938. #: methods/connect.cc:87
  939. #, c-format
  940. msgid "[IP: %s %s]"
  941. msgstr "[IP: %s %s]"
  942. #: methods/connect.cc:94
  943. #, c-format
  944. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  945. msgstr "No se pudo crear un socket para %s (f=%u t=%u p=%u)"
  946. #: methods/connect.cc:100
  947. #, c-format
  948. msgid "Cannot initiate the connection to %s:%s (%s)."
  949. msgstr "No se puede iniciar la conexión a %s:%s (%s)."
  950. #: methods/connect.cc:108
  951. #, c-format
  952. msgid "Could not connect to %s:%s (%s), connection timed out"
  953. msgstr "No se pudo conectar a %s:%s (%s), caducó el tiempo para conexión"
  954. #: methods/connect.cc:126
  955. #, c-format
  956. msgid "Could not connect to %s:%s (%s)."
  957. msgstr "No se pudo conectar a %s:%s (%s)."
  958. #. We say this mainly because the pause here is for the
  959. #. ssh connection that is still going
  960. #: methods/connect.cc:154 methods/rsh.cc:442
  961. #, c-format
  962. msgid "Connecting to %s"
  963. msgstr "Conectando a %s"
  964. #: methods/connect.cc:180 methods/connect.cc:199
  965. #, c-format
  966. msgid "Could not resolve '%s'"
  967. msgstr "No se pudo resolver «%s»"
  968. #: methods/connect.cc:205
  969. #, c-format
  970. msgid "Temporary failure resolving '%s'"
  971. msgstr "Fallo temporal al resolver «%s»"
  972. #: methods/connect.cc:209
  973. #, c-format
  974. msgid "System error resolving '%s:%s'"
  975. msgstr "Error de sistema al resolver «%s:%s»"
  976. #: methods/connect.cc:211
  977. #, c-format
  978. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  979. msgstr "Algo raro pasó al resolver «%s:%s» (%i - %s)"
  980. #: methods/connect.cc:258
  981. #, c-format
  982. msgid "Unable to connect to %s:%s:"
  983. msgstr "No se pudo conectar a %s:%s:"
  984. #: methods/gpgv.cc:168
  985. msgid ""
  986. "Internal error: Good signature, but could not determine key fingerprint?!"
  987. msgstr ""
  988. "Error interno: Firma correcta, ¡¿pero no se pudo determinar su huella "
  989. "digital?!"
  990. #: methods/gpgv.cc:172
  991. msgid "At least one invalid signature was encountered."
  992. msgstr "Se encontró al menos una firma inválida."
  993. #: methods/gpgv.cc:174
  994. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  995. msgstr ""
  996. "No se pudo ejecutar «gpgv» para verificar la firma (¿está instalado gpgv?)"
  997. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  998. #: methods/gpgv.cc:180
  999. #, c-format
  1000. msgid ""
  1001. "Clearsigned file isn't valid, got '%s' (does the network require "
  1002. "authentication?)"
  1003. msgstr ""
  1004. "El fichero firmado en claro no es válido, «%s» obtenido (¿la red requiere "
  1005. "autenticación?)"
  1006. #: methods/gpgv.cc:184
  1007. msgid "Unknown error executing gpgv"
  1008. msgstr "Error desconocido ejecutando «gpgv»"
  1009. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  1010. msgid "The following signatures were invalid:\n"
  1011. msgstr "Las siguientes firmas no fueron válidas:\n"
  1012. #: methods/gpgv.cc:231
  1013. msgid ""
  1014. "The following signatures couldn't be verified because the public key is not "
  1015. "available:\n"
  1016. msgstr ""
  1017. "Las firmas siguientes no se pudieron verificar porque su clave pública no "
  1018. "está disponible:\n"
  1019. #: methods/gzip.cc:69
  1020. msgid "Empty files can't be valid archives"
  1021. msgstr "Los ficheros vacíos no pueden ser archivos válidos"
  1022. #: methods/http.cc:513
  1023. msgid "Error writing to the file"
  1024. msgstr "Error escribiendo al archivo"
  1025. #: methods/http.cc:527
  1026. msgid "Error reading from server. Remote end closed connection"
  1027. msgstr "Error leyendo del servidor, el lado remoto cerró la conexión."
  1028. #: methods/http.cc:529
  1029. msgid "Error reading from server"
  1030. msgstr "Error leyendo del servidor"
  1031. #: methods/http.cc:565
  1032. msgid "Error writing to file"
  1033. msgstr "Error escribiendo a archivo"
  1034. #: methods/http.cc:625
  1035. msgid "Select failed"
  1036. msgstr "Falló la selección"
  1037. #: methods/http.cc:630
  1038. msgid "Connection timed out"
  1039. msgstr "Caducó la conexión"
  1040. #: methods/http.cc:653
  1041. msgid "Error writing to output file"
  1042. msgstr "Error escribiendo al fichero de salida"
  1043. #: methods/server.cc:52
  1044. msgid "Waiting for headers"
  1045. msgstr "Esperando las cabeceras"
  1046. #: methods/server.cc:111
  1047. msgid "Bad header line"
  1048. msgstr "Línea de cabecera incorrecta"
  1049. #: methods/server.cc:136 methods/server.cc:143
  1050. msgid "The HTTP server sent an invalid reply header"
  1051. msgstr "El servidor de http envió una cabecera de respuesta inválida"
  1052. #: methods/server.cc:173
  1053. msgid "The HTTP server sent an invalid Content-Length header"
  1054. msgstr "El servidor de http envió una cabecera de «Content-Length» inválida"
  1055. #: methods/server.cc:193
  1056. msgid "The HTTP server sent an invalid Content-Range header"
  1057. msgstr "El servidor de http envió una cabecera de «Content-Range» inválida"
  1058. #: methods/server.cc:195
  1059. msgid "This HTTP server has broken range support"
  1060. msgstr "Este servidor de http admite alcance roto"
  1061. #: methods/server.cc:219
  1062. msgid "Unknown date format"
  1063. msgstr "Formato de fecha desconocido"
  1064. #: methods/server.cc:494
  1065. msgid "Bad header data"
  1066. msgstr "Datos de cabecera incorrectos"
  1067. #: methods/server.cc:511 methods/server.cc:567
  1068. msgid "Connection failed"
  1069. msgstr "Falló la conexión"
  1070. #: methods/server.cc:659
  1071. msgid "Internal error"
  1072. msgstr "Error interno"
  1073. #: apt-private/private-list.cc:129
  1074. msgid "Listing"
  1075. msgstr "Listando"
  1076. #: apt-private/private-list.cc:159
  1077. #, c-format
  1078. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1079. msgid_plural ""
  1080. "There are %i additional versions. Please use the '-a' switch to see them."
  1081. msgstr[0] "Hay %i versión adicional. Utilice la opción «-a» para verla"
  1082. msgstr[1] "Hay %i versiones adicionales. Utilice la opción «-a» para verlas"
  1083. #: apt-private/private-cachefile.cc:93
  1084. msgid "Correcting dependencies..."
  1085. msgstr "Corrigiendo dependencias..."
  1086. #: apt-private/private-cachefile.cc:96
  1087. msgid " failed."
  1088. msgstr " falló."
  1089. #: apt-private/private-cachefile.cc:99
  1090. msgid "Unable to correct dependencies"
  1091. msgstr "No se pueden corregir las dependencias"
  1092. #: apt-private/private-cachefile.cc:102
  1093. msgid "Unable to minimize the upgrade set"
  1094. msgstr "No se puede minimizar el conjunto de actualización"
  1095. #: apt-private/private-cachefile.cc:104
  1096. msgid " Done"
  1097. msgstr " Listo"
  1098. #: apt-private/private-cachefile.cc:108
  1099. msgid "You might want to run 'apt-get -f install' to correct these."
  1100. msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo."
  1101. #: apt-private/private-cachefile.cc:111
  1102. msgid "Unmet dependencies. Try using -f."
  1103. msgstr "Dependencias incumplidas. Pruebe de nuevo utilizando -f."
  1104. #: apt-private/private-output.cc:103 apt-private/private-show.cc:84
  1105. #: apt-private/private-show.cc:89
  1106. msgid "unknown"
  1107. msgstr "desconocido"
  1108. #: apt-private/private-output.cc:265
  1109. #, c-format
  1110. msgid "[installed,upgradable to: %s]"
  1111. msgstr "[instalado, actualizable a: %s]"
  1112. #: apt-private/private-output.cc:268
  1113. msgid "[installed,local]"
  1114. msgstr "[instalado, local]"
  1115. #: apt-private/private-output.cc:270
  1116. msgid "[installed,auto-removable]"
  1117. msgstr "[instalado, autodesinstalable]"
  1118. #: apt-private/private-output.cc:272
  1119. msgid "[installed,automatic]"
  1120. msgstr "[instalado, automático]"
  1121. #: apt-private/private-output.cc:274
  1122. msgid "[installed]"
  1123. msgstr "[instalado]"
  1124. #: apt-private/private-output.cc:277
  1125. #, c-format
  1126. msgid "[upgradable from: %s]"
  1127. msgstr "[actualizable desde: %s]"
  1128. #: apt-private/private-output.cc:281
  1129. msgid "[residual-config]"
  1130. msgstr "[configuración-residual]"
  1131. #: apt-private/private-output.cc:455
  1132. #, c-format
  1133. msgid "but %s is installed"
  1134. msgstr "pero %s está instalado"
  1135. #: apt-private/private-output.cc:457
  1136. #, c-format
  1137. msgid "but %s is to be installed"
  1138. msgstr "pero %s va a ser instalado"
  1139. #: apt-private/private-output.cc:464
  1140. msgid "but it is not installable"
  1141. msgstr "pero no es instalable"
  1142. #: apt-private/private-output.cc:466
  1143. msgid "but it is a virtual package"
  1144. msgstr "pero es un paquete virtual"
  1145. #: apt-private/private-output.cc:469
  1146. msgid "but it is not installed"
  1147. msgstr "pero no está instalado"
  1148. #: apt-private/private-output.cc:469
  1149. msgid "but it is not going to be installed"
  1150. msgstr "pero no va a instalarse"
  1151. #: apt-private/private-output.cc:474
  1152. msgid " or"
  1153. msgstr " o"
  1154. #: apt-private/private-output.cc:488 apt-private/private-output.cc:500
  1155. msgid "The following packages have unmet dependencies:"
  1156. msgstr "Los siguientes paquetes tienen dependencias incumplidas:"
  1157. #: apt-private/private-output.cc:523
  1158. msgid "The following NEW packages will be installed:"
  1159. msgstr "Se instalarán los siguientes paquetes NUEVOS:"
  1160. #: apt-private/private-output.cc:549
  1161. msgid "The following packages will be REMOVED:"
  1162. msgstr "Los siguientes paquetes se ELIMINARÁN:"
  1163. #: apt-private/private-output.cc:571
  1164. msgid "The following packages have been kept back:"
  1165. msgstr "Los siguientes paquetes se han retenido:"
  1166. #: apt-private/private-output.cc:592
  1167. msgid "The following packages will be upgraded:"
  1168. msgstr "Se actualizarán los siguientes paquetes:"
  1169. #: apt-private/private-output.cc:613
  1170. msgid "The following packages will be DOWNGRADED:"
  1171. msgstr "Se DESACTUALIZARÁN los siguientes paquetes:"
  1172. #: apt-private/private-output.cc:633
  1173. msgid "The following held packages will be changed:"
  1174. msgstr "Se cambiarán los siguientes paquetes retenidos:"
  1175. #: apt-private/private-output.cc:688
  1176. #, c-format
  1177. msgid "%s (due to %s) "
  1178. msgstr "%s (por %s) "
  1179. #: apt-private/private-output.cc:696
  1180. msgid ""
  1181. "WARNING: The following essential packages will be removed.\n"
  1182. "This should NOT be done unless you know exactly what you are doing!"
  1183. msgstr ""
  1184. "ATENCIÓN: Se van a eliminar los siguientes paquetes esenciales.\n"
  1185. "¡NO debe hacerse a menos que sepa exactamente lo que está haciendo!"
  1186. #: apt-private/private-output.cc:727
  1187. #, c-format
  1188. msgid "%lu upgraded, %lu newly installed, "
  1189. msgstr "%lu actualizados, %lu nuevos se instalarán, "
  1190. #: apt-private/private-output.cc:731
  1191. #, c-format
  1192. msgid "%lu reinstalled, "
  1193. msgstr "%lu reinstalados, "
  1194. #: apt-private/private-output.cc:733
  1195. #, c-format
  1196. msgid "%lu downgraded, "
  1197. msgstr "%lu desactualizados, "
  1198. #: apt-private/private-output.cc:735
  1199. #, c-format
  1200. msgid "%lu to remove and %lu not upgraded.\n"
  1201. msgstr "%lu para eliminar y %lu no actualizados.\n"
  1202. #: apt-private/private-output.cc:739
  1203. #, c-format
  1204. msgid "%lu not fully installed or removed.\n"
  1205. msgstr "%lu no instalados del todo o eliminados.\n"
  1206. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1207. #. e.g. "Do you want to continue? [Y/n] "
  1208. #. The user has to answer with an input matching the
  1209. #. YESEXPR/NOEXPR defined in your l10n.
  1210. #: apt-private/private-output.cc:761
  1211. msgid "[Y/n]"
  1212. msgstr "[S/n]"
  1213. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1214. #. e.g. "Should this file be removed? [y/N] "
  1215. #. The user has to answer with an input matching the
  1216. #. YESEXPR/NOEXPR defined in your l10n.
  1217. #: apt-private/private-output.cc:767
  1218. msgid "[y/N]"
  1219. msgstr "[s/N]"
  1220. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1221. #: apt-private/private-output.cc:778
  1222. msgid "Y"
  1223. msgstr "S"
  1224. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1225. #: apt-private/private-output.cc:784
  1226. msgid "N"
  1227. msgstr "N"
  1228. #: apt-private/private-output.cc:806 apt-pkg/cachefilter.cc:35
  1229. #, c-format
  1230. msgid "Regex compilation error - %s"
  1231. msgstr "Error de compilación de expresiones regulares - %s"
  1232. #: apt-private/private-update.cc:31
  1233. msgid "The update command takes no arguments"
  1234. msgstr "La orden de actualización no necesita argumentos"
  1235. #: apt-private/private-update.cc:97
  1236. #, c-format
  1237. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1238. msgid_plural ""
  1239. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1240. msgstr[0] ""
  1241. "Se puede actualizar %i paquete. Ejecute «apt list --upgradable» para verlo.\n"
  1242. msgstr[1] ""
  1243. "Se pueden actualizar %i paquetes. Ejecute «apt list --upgradable» para "
  1244. "verlos.\n"
  1245. #: apt-private/private-update.cc:101
  1246. msgid "All packages are up to date."
  1247. msgstr "Todos los paquetes están actualizados."
  1248. #: apt-private/private-cacheset.cc:37 apt-private/private-search.cc:65
  1249. msgid "Sorting"
  1250. msgstr "Ordenando"
  1251. #: apt-private/private-show.cc:156
  1252. #, c-format
  1253. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1254. msgid_plural ""
  1255. "There are %i additional records. Please use the '-a' switch to see them."
  1256. msgstr[0] "Hay %i registro adicional. Utilice la opción «-a» para verlo."
  1257. msgstr[1] "Hay %i registros adicionales. Utilice la opción «-a» para verlos."
  1258. #: apt-private/private-show.cc:163
  1259. msgid "not a real package (virtual)"
  1260. msgstr "no es un paquete real (virtual)"
  1261. #: apt-private/private-main.cc:32
  1262. msgid ""
  1263. "NOTE: This is only a simulation!\n"
  1264. " apt-get needs root privileges for real execution.\n"
  1265. " Keep also in mind that locking is deactivated,\n"
  1266. " so don't depend on the relevance to the real current situation!"
  1267. msgstr ""
  1268. "NOTA: ¡Esto es sólo una simulación!\n"
  1269. " apt-get necesita privilegios de administrador para la ejecución real.\n"
  1270. " Tenga también en cuenta que se han desactivado los bloqueos,\n"
  1271. " ¡no dependa la situación real actual de la relevancia de esto!"
  1272. #: apt-private/private-install.cc:82
  1273. msgid "Internal error, InstallPackages was called with broken packages!"
  1274. msgstr "Error interno, ¡se llamó a «InstallPackages» con paquetes rotos!"
  1275. #: apt-private/private-install.cc:91
  1276. msgid "Packages need to be removed but remove is disabled."
  1277. msgstr ""
  1278. "Se necesita eliminar paquetes, pero está desactivada la posibilidad de "
  1279. "eliminar."
  1280. #: apt-private/private-install.cc:110
  1281. msgid "Internal error, Ordering didn't finish"
  1282. msgstr "Error interno, no terminó la ordenación"
  1283. #: apt-private/private-install.cc:148
  1284. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1285. msgstr "Los tamaños no concuerdan, mande un correo a apt@packages.debian.org"
  1286. #. TRANSLATOR: The required space between number and unit is already included
  1287. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1288. #: apt-private/private-install.cc:155
  1289. #, c-format
  1290. msgid "Need to get %sB/%sB of archives.\n"
  1291. msgstr "Se necesita descargar %sB/%sB de archivos.\n"
  1292. #. TRANSLATOR: The required space between number and unit is already included
  1293. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1294. #: apt-private/private-install.cc:160
  1295. #, c-format
  1296. msgid "Need to get %sB of archives.\n"
  1297. msgstr "Se necesita descargar %sB de archivos.\n"
  1298. #. TRANSLATOR: The required space between number and unit is already included
  1299. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1300. #: apt-private/private-install.cc:167
  1301. #, c-format
  1302. msgid "After this operation, %sB of additional disk space will be used.\n"
  1303. msgstr ""
  1304. "Se utilizarán %sB de espacio de disco adicional después de esta operación.\n"
  1305. #. TRANSLATOR: The required space between number and unit is already included
  1306. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1307. #: apt-private/private-install.cc:172
  1308. #, c-format
  1309. msgid "After this operation, %sB disk space will be freed.\n"
  1310. msgstr "Se liberarán %sB después de esta operación.\n"
  1311. #: apt-private/private-install.cc:200
  1312. #, c-format
  1313. msgid "You don't have enough free space in %s."
  1314. msgstr "No tiene suficiente espacio libre en %s."
  1315. #: apt-private/private-install.cc:210 apt-private/private-download.cc:59
  1316. msgid "There are problems and -y was used without --force-yes"
  1317. msgstr "Hay problemas y se utilizó -y sin --force-yes"
  1318. #: apt-private/private-install.cc:216 apt-private/private-install.cc:238
  1319. msgid "Trivial Only specified but this is not a trivial operation."
  1320. msgstr "Se especificó «Trivial Only» pero esta no es una operación trivial."
  1321. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1322. #. careful with hard to type or special characters (like non-breaking spaces)
  1323. #: apt-private/private-install.cc:220
  1324. msgid "Yes, do as I say!"
  1325. msgstr "Sí, ¡haga lo que le digo!"
  1326. #: apt-private/private-install.cc:222
  1327. #, c-format
  1328. msgid ""
  1329. "You are about to do something potentially harmful.\n"
  1330. "To continue type in the phrase '%s'\n"
  1331. " ?] "
  1332. msgstr ""
  1333. "Está a punto de hacer algo potencialmente dañino\n"
  1334. "Para continuar escriba la frase «%s»\n"
  1335. " ?] "
  1336. #: apt-private/private-install.cc:228 apt-private/private-install.cc:246
  1337. msgid "Abort."
  1338. msgstr "Anulado."
  1339. #: apt-private/private-install.cc:243
  1340. msgid "Do you want to continue?"
  1341. msgstr "¿Desea continuar?"
  1342. #: apt-private/private-install.cc:313
  1343. msgid "Some files failed to download"
  1344. msgstr "No se pudieron descargar algunos archivos"
  1345. #: apt-private/private-install.cc:320
  1346. msgid ""
  1347. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1348. "missing?"
  1349. msgstr ""
  1350. "No se pudieron obtener algunos archivos, ¿quizás deba ejecutar «apt-get "
  1351. "update» o deba intentarlo de nuevo con --fix-missing?"
  1352. #: apt-private/private-install.cc:324
  1353. msgid "--fix-missing and media swapping is not currently supported"
  1354. msgstr "Actualmente no se admite --fix-missing ni intercambio de medio"
  1355. #: apt-private/private-install.cc:329
  1356. msgid "Unable to correct missing packages."
  1357. msgstr "No se pudieron corregir los paquetes que faltan."
  1358. #: apt-private/private-install.cc:330
  1359. msgid "Aborting install."
  1360. msgstr "Anulando la instalación."
  1361. #: apt-private/private-install.cc:366
  1362. msgid ""
  1363. "The following package disappeared from your system as\n"
  1364. "all files have been overwritten by other packages:"
  1365. msgid_plural ""
  1366. "The following packages disappeared from your system as\n"
  1367. "all files have been overwritten by other packages:"
  1368. msgstr[0] ""
  1369. "El paquete mostrado a continuación ha desaparecido de su sistema\n"
  1370. "dado que otros paquetes han sobreescrito todos sus paquetes:"
  1371. msgstr[1] ""
  1372. "Los paquetes mostrados a continuación han desaparecido de su sistema\n"
  1373. "dado que otros paquetes han sobreescrito todos sus paquetes:"
  1374. #: apt-private/private-install.cc:370
  1375. msgid "Note: This is done automatically and on purpose by dpkg."
  1376. msgstr "Nota: Dpkg realiza esto de forma automática y a propósito."
  1377. #: apt-private/private-install.cc:391
  1378. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1379. msgstr ""
  1380. "Se supone que no se van a eliminar cosas, no se puede iniciar «AutoRemover»"
  1381. #: apt-private/private-install.cc:499
  1382. msgid ""
  1383. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1384. "shouldn't happen. Please file a bug report against apt."
  1385. msgstr ""
  1386. "Parece que «AutoRemover» destruyó algo y eso no debería haber pasado.\n"
  1387. "Envíe un informe de errores al programa apt."
  1388. #.
  1389. #. if (Packages == 1)
  1390. #. {
  1391. #. c1out << std::endl;
  1392. #. c1out <<
  1393. #. _("Since you only requested a single operation it is extremely likely that\n"
  1394. #. "the package is simply not installable and a bug report against\n"
  1395. #. "that package should be filed.") << std::endl;
  1396. #. }
  1397. #.
  1398. #: apt-private/private-install.cc:502 apt-private/private-install.cc:653
  1399. msgid "The following information may help to resolve the situation:"
  1400. msgstr "La siguiente información puede ayudar a resolver la situación:"
  1401. #: apt-private/private-install.cc:506
  1402. msgid "Internal Error, AutoRemover broke stuff"
  1403. msgstr "Error interno, «AutoRemover» rompió cosas"
  1404. #: apt-private/private-install.cc:513
  1405. msgid ""
  1406. "The following package was automatically installed and is no longer required:"
  1407. msgid_plural ""
  1408. "The following packages were automatically installed and are no longer "
  1409. "required:"
  1410. msgstr[0] ""
  1411. "El paquete indicado a continuación se instaló de forma automática y ya no es "
  1412. "necesario."
  1413. msgstr[1] ""
  1414. "Los paquetes indicados a continuación se instalaron de forma automática y ya "
  1415. "no son necesarios."
  1416. #: apt-private/private-install.cc:517
  1417. #, c-format
  1418. msgid "%lu package was automatically installed and is no longer required.\n"
  1419. msgid_plural ""
  1420. "%lu packages were automatically installed and are no longer required.\n"
  1421. msgstr[0] "Se instaló %lu paquete de forma automática y ya no es necesario.\n"
  1422. msgstr[1] ""
  1423. "Se instalaron %lu paquetes de forma automática y ya no son necesarios.\n"
  1424. #: apt-private/private-install.cc:519
  1425. msgid "Use 'apt-get autoremove' to remove it."
  1426. msgid_plural "Use 'apt-get autoremove' to remove them."
  1427. msgstr[0] "Utilice «apt-get autoremove» para eliminarlo."
  1428. msgstr[1] "Utilice «apt-get autoremove» para eliminarlos."
  1429. #: apt-private/private-install.cc:612
  1430. msgid "You might want to run 'apt-get -f install' to correct these:"
  1431. msgstr "Tal vez quiera ejecutar «apt-get -f install» para corregirlo:"
  1432. #: apt-private/private-install.cc:614
  1433. msgid ""
  1434. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1435. "solution)."
  1436. msgstr ""
  1437. "Dependencias incumplidas. Intente «apt-get -f install» sin paquetes (o "
  1438. "especifique una solución)."
  1439. #: apt-private/private-install.cc:638
  1440. msgid ""
  1441. "Some packages could not be installed. This may mean that you have\n"
  1442. "requested an impossible situation or if you are using the unstable\n"
  1443. "distribution that some required packages have not yet been created\n"
  1444. "or been moved out of Incoming."
  1445. msgstr ""
  1446. "No se pudieron instalar algunos paquetes. Esto puede significar que\n"
  1447. "usted pidió una situación imposible o, si está usando la distribución\n"
  1448. "inestable, que algunos paquetes necesarios aún no se han creado o se\n"
  1449. "han sacado de «Incoming»."
  1450. #: apt-private/private-install.cc:659
  1451. msgid "Broken packages"
  1452. msgstr "Paquetes rotos"
  1453. #: apt-private/private-install.cc:712
  1454. msgid "The following extra packages will be installed:"
  1455. msgstr "Se instalarán los siguientes paquetes extras:"
  1456. #: apt-private/private-install.cc:802
  1457. msgid "Suggested packages:"
  1458. msgstr "Paquetes sugeridos:"
  1459. #: apt-private/private-install.cc:803
  1460. msgid "Recommended packages:"
  1461. msgstr "Paquetes recomendados:"
  1462. #: apt-private/private-install.cc:825
  1463. #, c-format
  1464. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1465. msgstr "Omitiendo %s, ya está instalado y no está activada la actualización.\n"
  1466. #: apt-private/private-install.cc:829
  1467. #, c-format
  1468. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1469. msgstr ""
  1470. "Omitiendo %s, no está instalado y solo se están solicitando "
  1471. "actualizaciones.\n"
  1472. #: apt-private/private-install.cc:841
  1473. #, c-format
  1474. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1475. msgstr "No es posible reinstalar el paquete %s, no se pudo descargar.\n"
  1476. #: apt-private/private-install.cc:846
  1477. #, c-format
  1478. msgid "%s is already the newest version.\n"
  1479. msgstr "%s ya está en su versión más reciente.\n"
  1480. #: apt-private/private-install.cc:894
  1481. #, c-format
  1482. msgid "Selected version '%s' (%s) for '%s'\n"
  1483. msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
  1484. #: apt-private/private-install.cc:899
  1485. #, c-format
  1486. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1487. msgstr "Versión seleccionada «%s» (%s) para «%s» debido a «%s»\n"
  1488. #. TRANSLATORS: Note, this is not an interactive question
  1489. #: apt-private/private-install.cc:941
  1490. #, c-format
  1491. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1492. msgstr ""
  1493. "El paquete «%s» no está instalado, no se eliminará. ¿Quiso decir «%s»?\n"
  1494. #: apt-private/private-install.cc:947
  1495. #, c-format
  1496. msgid "Package '%s' is not installed, so not removed\n"
  1497. msgstr "El paquete «%s» no está instalado, no se eliminará\n"
  1498. #: apt-private/private-download.cc:36
  1499. msgid "WARNING: The following packages cannot be authenticated!"
  1500. msgstr "ATENCIÓN: ¡No se han podido autenticar los siguientes paquetes!"
  1501. #: apt-private/private-download.cc:40
  1502. msgid "Authentication warning overridden.\n"
  1503. msgstr "Aviso de autenticación ignorado.\n"
  1504. #: apt-private/private-download.cc:45 apt-private/private-download.cc:52
  1505. msgid "Some packages could not be authenticated"
  1506. msgstr "Algunos paquetes no se pueden autenticar"
  1507. #: apt-private/private-download.cc:50
  1508. msgid "Install these packages without verification?"
  1509. msgstr "¿Instalar estos paquetes sin verificación?"
  1510. #: apt-private/private-download.cc:91 apt-pkg/update.cc:77
  1511. #, c-format
  1512. msgid "Failed to fetch %s %s\n"
  1513. msgstr "Fallo al obtener %s %s\n"
  1514. #: apt-private/private-sources.cc:58
  1515. #, c-format
  1516. msgid "Failed to parse %s. Edit again? "
  1517. msgstr "Fallo al tratar %s. ¿Editar de nuevo?"
  1518. #: apt-private/private-sources.cc:70
  1519. #, c-format
  1520. msgid "Your '%s' file changed, please run 'apt-get update'."
  1521. msgstr "El fichero «%s» cambió, ejecute «apt-get update»."
  1522. #: apt-private/private-search.cc:69
  1523. msgid "Full Text Search"
  1524. msgstr "Buscar en todo el texto"
  1525. #: apt-private/private-upgrade.cc:25
  1526. msgid "Calculating upgrade... "
  1527. msgstr "Calculando la actualización... "
  1528. #: apt-private/private-upgrade.cc:28
  1529. msgid "Done"
  1530. msgstr "Listo"
  1531. #: apt-private/acqprogress.cc:66
  1532. msgid "Hit "
  1533. msgstr "Obj "
  1534. #: apt-private/acqprogress.cc:90
  1535. msgid "Get:"
  1536. msgstr "Des:"
  1537. #: apt-private/acqprogress.cc:121
  1538. msgid "Ign "
  1539. msgstr "Ign "
  1540. #: apt-private/acqprogress.cc:125
  1541. msgid "Err "
  1542. msgstr "Err "
  1543. #: apt-private/acqprogress.cc:146
  1544. #, c-format
  1545. msgid "Fetched %sB in %s (%sB/s)\n"
  1546. msgstr "Descargados %sB en %s (%sB/s)\n"
  1547. #: apt-private/acqprogress.cc:236
  1548. #, c-format
  1549. msgid " [Working]"
  1550. msgstr " [Trabajando]"
  1551. #: apt-private/acqprogress.cc:297
  1552. #, c-format
  1553. msgid ""
  1554. "Media change: please insert the disc labeled\n"
  1555. " '%s'\n"
  1556. "in the drive '%s' and press enter\n"
  1557. msgstr ""
  1558. "Cambio de medio: Inserte el disco etiquetado como\n"
  1559. " «%s»\n"
  1560. "en la unidad «%s» y pulse Intro\n"
  1561. #. Only warn if there are no sources.list.d.
  1562. #. Only warn if there is no sources.list file.
  1563. #: methods/mirror.cc:95 apt-inst/extract.cc:471 apt-pkg/init.cc:103
  1564. #: apt-pkg/init.cc:111 apt-pkg/sourcelist.cc:280 apt-pkg/sourcelist.cc:286
  1565. #: apt-pkg/clean.cc:43 apt-pkg/acquire.cc:494 apt-pkg/policy.cc:381
  1566. #: apt-pkg/contrib/fileutl.cc:368 apt-pkg/contrib/fileutl.cc:481
  1567. #: apt-pkg/contrib/cdromutl.cc:205
  1568. #, c-format
  1569. msgid "Unable to read %s"
  1570. msgstr "No se pudo leer %s"
  1571. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49
  1572. #: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:500
  1573. #: apt-pkg/acquire.cc:525 apt-pkg/contrib/cdromutl.cc:201
  1574. #: apt-pkg/contrib/cdromutl.cc:235
  1575. #, c-format
  1576. msgid "Unable to change to %s"
  1577. msgstr "No se pudo cambiar a %s"
  1578. #. FIXME: fallback to a default mirror here instead
  1579. #. and provide a config option to define that default
  1580. #: methods/mirror.cc:280
  1581. #, c-format
  1582. msgid "No mirror file '%s' found "
  1583. msgstr "No se encontró el archivo de réplica «%s»"
  1584. #. FIXME: fallback to a default mirror here instead
  1585. #. and provide a config option to define that default
  1586. #: methods/mirror.cc:287
  1587. #, c-format
  1588. msgid "Can not read mirror file '%s'"
  1589. msgstr "No se puede leer el archivo de réplica «%s»"
  1590. #: methods/mirror.cc:315
  1591. #, c-format
  1592. msgid "No entry found in mirror file '%s'"
  1593. msgstr "No se encontró ninguna entrada en el archivo de réplica «%s»"
  1594. #: methods/mirror.cc:445
  1595. #, c-format
  1596. msgid "[Mirror: %s]"
  1597. msgstr "[Réplica: %s]"
  1598. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  1599. msgid "Failed to create IPC pipe to subprocess"
  1600. msgstr "Fallo al crear una tubería IPC para el subproceso"
  1601. #: methods/rsh.cc:346
  1602. msgid "Connection closed prematurely"
  1603. msgstr "La conexión se cerró prematuramente"
  1604. #: dselect/install:33
  1605. msgid "Bad default setting!"
  1606. msgstr "¡Parámetro predeterminado incorrecto!"
  1607. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1608. #: dselect/install:106 dselect/update:45
  1609. msgid "Press enter to continue."
  1610. msgstr "Pulse Intro para continuar."
  1611. #: dselect/install:92
  1612. msgid "Do you want to erase any previously downloaded .deb files?"
  1613. msgstr "¿Desea borrar los archivos .deb descargados con anterioridad?"
  1614. #: dselect/install:102
  1615. msgid "Some errors occurred while unpacking. Packages that were installed"
  1616. msgstr ""
  1617. "Se produjeron algunos problemas mientras se desempaquetaba. Los paquetes que "
  1618. "se instalaron"
  1619. #: dselect/install:103
  1620. msgid "will be configured. This may result in duplicate errors"
  1621. msgstr "van a configurarse. Esto puede dar lugar a errores duplicados"
  1622. #: dselect/install:104
  1623. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1624. msgstr ""
  1625. "o errores causados por dependencias no presentes. Esto está BIEN, sólo los "
  1626. "errores"
  1627. #: dselect/install:105
  1628. msgid ""
  1629. "above this message are important. Please fix them and run [I]nstall again"
  1630. msgstr ""
  1631. "encima de este mensaje son importantes. Corríjalas y ejecute «[I]nstall» "
  1632. "otra vez"
  1633. #: dselect/update:30
  1634. msgid "Merging available information"
  1635. msgstr "Fusionando información disponible"
  1636. #: apt-inst/filelist.cc:380
  1637. msgid "DropNode called on still linked node"
  1638. msgstr "DropNode llamado en un nodo todavía conectado"
  1639. #: apt-inst/filelist.cc:412
  1640. msgid "Failed to locate the hash element!"
  1641. msgstr "¡Fallo al localizar el elemento enlazado!"
  1642. #: apt-inst/filelist.cc:459
  1643. msgid "Failed to allocate diversion"
  1644. msgstr "Fallo al asignar una desviación"
  1645. #: apt-inst/filelist.cc:464
  1646. msgid "Internal error in AddDiversion"
  1647. msgstr "Error interno en AddDiversion"
  1648. #: apt-inst/filelist.cc:477
  1649. #, c-format
  1650. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1651. msgstr "Intentando sobreescribir una desviación, %s -> %s y %s/%s"
  1652. #: apt-inst/filelist.cc:506
  1653. #, c-format
  1654. msgid "Double add of diversion %s -> %s"
  1655. msgstr "Doble suma de desviación %s -> %s"
  1656. #: apt-inst/filelist.cc:549
  1657. #, c-format
  1658. msgid "Duplicate conf file %s/%s"
  1659. msgstr "Fichero de configuración duplicado %s/%s"
  1660. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  1661. #, c-format
  1662. msgid "The path %s is too long"
  1663. msgstr "La trayectoria %s es demasiado larga"
  1664. #: apt-inst/extract.cc:132
  1665. #, c-format
  1666. msgid "Unpacking %s more than once"
  1667. msgstr "Desempaquetando %s más de una vez"
  1668. #: apt-inst/extract.cc:142
  1669. #, c-format
  1670. msgid "The directory %s is diverted"
  1671. msgstr "El directorio %s está desviado"
  1672. #: apt-inst/extract.cc:152
  1673. #, c-format
  1674. msgid "The package is trying to write to the diversion target %s/%s"
  1675. msgstr "El paquete está tratando de escribir al objetivo desviado %s/%s"
  1676. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  1677. msgid "The diversion path is too long"
  1678. msgstr "La ruta de la desviación es demasiado larga"
  1679. #: apt-inst/extract.cc:186 apt-inst/extract.cc:199 apt-inst/extract.cc:216
  1680. #: ftparchive/cachedb.cc:182
  1681. #, c-format
  1682. msgid "Failed to stat %s"
  1683. msgstr "Fallo al leer %s"
  1684. #: apt-inst/extract.cc:194 ftparchive/multicompress.cc:374
  1685. #, c-format
  1686. msgid "Failed to rename %s to %s"
  1687. msgstr "Fallo al renombrar %s a %s"
  1688. #: apt-inst/extract.cc:249
  1689. #, c-format
  1690. msgid "The directory %s is being replaced by a non-directory"
  1691. msgstr "Se está reemplazando el directorio %s por un no-directorio"
  1692. #: apt-inst/extract.cc:289
  1693. msgid "Failed to locate node in its hash bucket"
  1694. msgstr "Fallo al localizar el nodo en su posición en el hash"
  1695. #: apt-inst/extract.cc:293
  1696. msgid "The path is too long"
  1697. msgstr "La ruta es demasiado larga"
  1698. #: apt-inst/extract.cc:421
  1699. #, c-format
  1700. msgid "Overwrite package match with no version for %s"
  1701. msgstr "Sobreescribiendo concordancia del paquete sin versión para %s"
  1702. #: apt-inst/extract.cc:438
  1703. #, c-format
  1704. msgid "File %s/%s overwrites the one in the package %s"
  1705. msgstr "El archivo %s/%s sobreescribe al que está en el paquete %s"
  1706. #: apt-inst/extract.cc:498
  1707. #, c-format
  1708. msgid "Unable to stat %s"
  1709. msgstr "No se pudo leer %s"
  1710. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  1711. #, c-format
  1712. msgid "Failed to write file %s"
  1713. msgstr "Fallo al escribir el archivo %s"
  1714. #: apt-inst/dirstream.cc:105
  1715. #, c-format
  1716. msgid "Failed to close file %s"
  1717. msgstr "Fallo al cerrar el archivo %s"
  1718. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  1719. #: apt-inst/deb/debfile.cc:63
  1720. #, c-format
  1721. msgid "This is not a valid DEB archive, missing '%s' member"
  1722. msgstr "Este no es un archivo DEB válido, falta el miembro «%s»"
  1723. #: apt-inst/deb/debfile.cc:132
  1724. #, c-format
  1725. msgid "Internal error, could not locate member %s"
  1726. msgstr "Error interno, no se pudo localizar el miembro %s"
  1727. #: apt-inst/deb/debfile.cc:227
  1728. msgid "Unparsable control file"
  1729. msgstr "Archivo de control inanalizable"
  1730. #: apt-inst/contrib/arfile.cc:76
  1731. msgid "Invalid archive signature"
  1732. msgstr "Firma del archivo inválida"
  1733. #: apt-inst/contrib/arfile.cc:84
  1734. msgid "Error reading archive member header"
  1735. msgstr "Error leyendo la cabecera de miembro del archivo"
  1736. #: apt-inst/contrib/arfile.cc:96
  1737. #, c-format
  1738. msgid "Invalid archive member header %s"
  1739. msgstr "Cabecera de miembro del archivo inválida %s"
  1740. #: apt-inst/contrib/arfile.cc:108
  1741. msgid "Invalid archive member header"
  1742. msgstr "Cabecera de miembro del archivo inválida"
  1743. #: apt-inst/contrib/arfile.cc:137
  1744. msgid "Archive is too short"
  1745. msgstr "El archivo es muy pequeño"
  1746. #: apt-inst/contrib/arfile.cc:141
  1747. msgid "Failed to read the archive headers"
  1748. msgstr "Fallo al leer las cabeceras del archivo"
  1749. #: apt-inst/contrib/extracttar.cc:124
  1750. msgid "Failed to create pipes"
  1751. msgstr "Fallo al crear las tuberías"
  1752. #: apt-inst/contrib/extracttar.cc:151
  1753. msgid "Failed to exec gzip "
  1754. msgstr "Fallo al ejecutar gzip"
  1755. #: apt-inst/contrib/extracttar.cc:188 apt-inst/contrib/extracttar.cc:218
  1756. msgid "Corrupted archive"
  1757. msgstr "Archivo dañado"
  1758. #: apt-inst/contrib/extracttar.cc:203
  1759. msgid "Tar checksum failed, archive corrupted"
  1760. msgstr ""
  1761. "Se produjo un fallo al calcular la suma de control de tar, archivo dañado"
  1762. #: apt-inst/contrib/extracttar.cc:308
  1763. #, c-format
  1764. msgid "Unknown TAR header type %u, member %s"
  1765. msgstr "Cabecera del TAR tipo %u desconocida, miembro %s"
  1766. #: apt-pkg/install-progress.cc:57
  1767. #, c-format
  1768. msgid "Progress: [%3i%%]"
  1769. msgstr "Progreso: [%3i%%]"
  1770. #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174
  1771. msgid "Running dpkg"
  1772. msgstr "Ejecutando dpkg"
  1773. #: apt-pkg/init.cc:146
  1774. #, c-format
  1775. msgid "Packaging system '%s' is not supported"
  1776. msgstr "No se admite el sistema de paquetes «%s»"
  1777. #: apt-pkg/init.cc:162
  1778. msgid "Unable to determine a suitable packaging system type"
  1779. msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado"
  1780. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:773
  1781. #, c-format
  1782. msgid "Wrote %i records.\n"
  1783. msgstr "%i registros escritos.\n"
  1784. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:775
  1785. #, c-format
  1786. msgid "Wrote %i records with %i missing files.\n"
  1787. msgstr "%i registros escritos con %i ficheros de menos.\n"
  1788. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:778
  1789. #, c-format
  1790. msgid "Wrote %i records with %i mismatched files\n"
  1791. msgstr "%i registros escritos con %i ficheros mal emparejados\n"
  1792. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:781
  1793. #, c-format
  1794. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1795. msgstr ""
  1796. "%i registros escritos con %i fichero de menos y %i ficheros mal emparejados\n"
  1797. #: apt-pkg/indexcopy.cc:515
  1798. #, c-format
  1799. msgid "Can't find authentication record for: %s"
  1800. msgstr "No se pudo encontrar un registro de autenticación para: %s"
  1801. #: apt-pkg/indexcopy.cc:521
  1802. #, c-format
  1803. msgid "Hash mismatch for: %s"
  1804. msgstr "La suma hash difiere para: %s"
  1805. #: apt-pkg/acquire-worker.cc:116
  1806. #, c-format
  1807. msgid "The method driver %s could not be found."
  1808. msgstr "No se pudo encontrar el método %s."
  1809. #: apt-pkg/acquire-worker.cc:118
  1810. #, c-format
  1811. msgid "Is the package %s installed?"
  1812. msgstr "¿Está instalado el paquete %s?"
  1813. #: apt-pkg/acquire-worker.cc:169
  1814. #, c-format
  1815. msgid "Method %s did not start correctly"
  1816. msgstr "El método %s no se inició correctamente"
  1817. #: apt-pkg/acquire-worker.cc:455
  1818. #, c-format
  1819. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  1820. msgstr "Inserte el disco con etiqueta «%s» en la unidad «%s» y pulse Intro."
  1821. #: apt-pkg/cachefile.cc:94
  1822. msgid "The package lists or status file could not be parsed or opened."
  1823. msgstr ""
  1824. "No se pudieron analizar o abrir las listas de paquetes o el archivo de "
  1825. "estado."
  1826. #: apt-pkg/cachefile.cc:98
  1827. msgid "You may want to run apt-get update to correct these problems"
  1828. msgstr "Tal vez deba ejecutar «apt-get update» para corregir estos problemas"
  1829. #: apt-pkg/cachefile.cc:116
  1830. msgid "The list of sources could not be read."
  1831. msgstr "No se pudieron leer las listas de fuentes."
  1832. #: apt-pkg/pkgcache.cc:155
  1833. msgid "Empty package cache"
  1834. msgstr "Caché de paquetes vacía."
  1835. #: apt-pkg/pkgcache.cc:161
  1836. msgid "The package cache file is corrupted"
  1837. msgstr "El fichero de caché de paquetes está dañado"
  1838. #: apt-pkg/pkgcache.cc:166
  1839. msgid "The package cache file is an incompatible version"
  1840. msgstr "El fichero de caché de paquetes es una versión incompatible"
  1841. #: apt-pkg/pkgcache.cc:169
  1842. msgid "The package cache file is corrupted, it is too small"
  1843. msgstr "El fichero de caché de paquetes está dañado, es demasiado pequeño"
  1844. #: apt-pkg/pkgcache.cc:174
  1845. #, c-format
  1846. msgid "This APT does not support the versioning system '%s'"
  1847. msgstr "Esta versión de APT no admite el sistema de versiones «%s»"
  1848. #: apt-pkg/pkgcache.cc:179
  1849. msgid "The package cache was built for a different architecture"
  1850. msgstr "La caché de paquetes se había creado para una arquitectura diferente"
  1851. #: apt-pkg/pkgcache.cc:321
  1852. msgid "Depends"
  1853. msgstr "Depende"
  1854. #: apt-pkg/pkgcache.cc:321
  1855. msgid "PreDepends"
  1856. msgstr "PreDepende"
  1857. #: apt-pkg/pkgcache.cc:321
  1858. msgid "Suggests"
  1859. msgstr "Sugiere"
  1860. #: apt-pkg/pkgcache.cc:322
  1861. msgid "Recommends"
  1862. msgstr "Recomienda"
  1863. #: apt-pkg/pkgcache.cc:322
  1864. msgid "Conflicts"
  1865. msgstr "Entra en conflicto"
  1866. #: apt-pkg/pkgcache.cc:322
  1867. msgid "Replaces"
  1868. msgstr "Reemplaza"
  1869. #: apt-pkg/pkgcache.cc:323
  1870. msgid "Obsoletes"
  1871. msgstr "Hace obsoleto"
  1872. #: apt-pkg/pkgcache.cc:323
  1873. msgid "Breaks"
  1874. msgstr "Rompe"
  1875. #: apt-pkg/pkgcache.cc:323
  1876. msgid "Enhances"
  1877. msgstr "Mejora"
  1878. #: apt-pkg/pkgcache.cc:334
  1879. msgid "important"
  1880. msgstr "importante"
  1881. #: apt-pkg/pkgcache.cc:334
  1882. msgid "required"
  1883. msgstr "requiere"
  1884. #: apt-pkg/pkgcache.cc:334
  1885. msgid "standard"
  1886. msgstr "estándar"
  1887. #: apt-pkg/pkgcache.cc:335
  1888. msgid "optional"
  1889. msgstr "opcional"
  1890. #: apt-pkg/pkgcache.cc:335
  1891. msgid "extra"
  1892. msgstr "extra"
  1893. #: apt-pkg/pkgrecords.cc:38
  1894. #, c-format
  1895. msgid "Index file type '%s' is not supported"
  1896. msgstr "El tipo de fichero de índice «%s» no se admite"
  1897. #: apt-pkg/sourcelist.cc:127
  1898. #, c-format
  1899. msgid "Malformed stanza %u in source list %s (URI parse)"
  1900. msgstr "Línea %u mal formada en la lista de fuentes %s (análisis de URI)"
  1901. #: apt-pkg/sourcelist.cc:170
  1902. #, c-format
  1903. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  1904. msgstr ""
  1905. "Línea %lu mal formada en la lista de fuentes %s ([opción] no analizable)"
  1906. #: apt-pkg/sourcelist.cc:173
  1907. #, c-format
  1908. msgid "Malformed line %lu in source list %s ([option] too short)"
  1909. msgstr ""
  1910. "Línea %lu mal formada en la lista de fuentes %s ([opción] demasiado corta)"
  1911. #: apt-pkg/sourcelist.cc:184
  1912. #, c-format
  1913. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  1914. msgstr ""
  1915. "Línea %lu mal formada en la lista de fuentes %s ([%s] no es una asignación)"
  1916. #: apt-pkg/sourcelist.cc:190
  1917. #, c-format
  1918. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  1919. msgstr ""
  1920. "Línea %lu mal formada en la lista de fuentes %s (no hay clave para [%s])"
  1921. #: apt-pkg/sourcelist.cc:193
  1922. #, c-format
  1923. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  1924. msgstr ""
  1925. "Línea %lu mal formada en la lista de fuentes %s ([%s] la clave %s no tiene "
  1926. "asociado un valor)"
  1927. #: apt-pkg/sourcelist.cc:206
  1928. #, c-format
  1929. msgid "Malformed line %lu in source list %s (URI)"
  1930. msgstr "Línea %lu mal formada en la lista de fuentes %s (URI)"
  1931. #: apt-pkg/sourcelist.cc:208
  1932. #, c-format
  1933. msgid "Malformed line %lu in source list %s (dist)"
  1934. msgstr "Línea %lu mal formada en la lista de fuentes %s (dist)"
  1935. #: apt-pkg/sourcelist.cc:211
  1936. #, c-format
  1937. msgid "Malformed line %lu in source list %s (URI parse)"
  1938. msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de URI)"
  1939. #: apt-pkg/sourcelist.cc:217
  1940. #, c-format
  1941. msgid "Malformed line %lu in source list %s (absolute dist)"
  1942. msgstr "Línea %lu mal formada en la lista de fuentes %s (dist absoluta)"
  1943. #: apt-pkg/sourcelist.cc:224
  1944. #, c-format
  1945. msgid "Malformed line %lu in source list %s (dist parse)"
  1946. msgstr "Línea %lu mal formada en la lista de fuentes %s (análisis de dist)"
  1947. #: apt-pkg/sourcelist.cc:335
  1948. #, c-format
  1949. msgid "Opening %s"
  1950. msgstr "Abriendo %s"
  1951. #: apt-pkg/sourcelist.cc:347 apt-pkg/cdrom.cc:497
  1952. #, c-format
  1953. msgid "Line %u too long in source list %s."
  1954. msgstr "Línea %u demasiado larga en la lista de fuentes %s."
  1955. #: apt-pkg/sourcelist.cc:371
  1956. #, c-format
  1957. msgid "Malformed line %u in source list %s (type)"
  1958. msgstr "Línea %u mal formada en la lista de fuentes %s (tipo)"
  1959. #: apt-pkg/sourcelist.cc:375
  1960. #, c-format
  1961. msgid "Type '%s' is not known on line %u in source list %s"
  1962. msgstr "Tipo «%s» desconocido en la línea %u de la lista de fuentes %s"
  1963. #: apt-pkg/sourcelist.cc:416
  1964. #, c-format
  1965. msgid "Type '%s' is not known on stanza %u in source list %s"
  1966. msgstr "Tipo «%s» desconocido en el bloque %u de la lista de fuentes %s"
  1967. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:490
  1968. #, c-format
  1969. msgid "Clean of %s is not supported"
  1970. msgstr "No se admite la limpieza de «%s»"
  1971. #: apt-pkg/clean.cc:64
  1972. #, c-format
  1973. msgid "Unable to stat %s."
  1974. msgstr "No se pudo leer %s."
  1975. #: apt-pkg/pkgcachegen.cc:93
  1976. msgid "Cache has an incompatible versioning system"
  1977. msgstr "La caché tiene una versión incompatible de sistema de versiones"
  1978. #. TRANSLATOR: The first placeholder is a package name,
  1979. #. the other two should be copied verbatim as they include debug info
  1980. #: apt-pkg/pkgcachegen.cc:224 apt-pkg/pkgcachegen.cc:234
  1981. #: apt-pkg/pkgcachegen.cc:300 apt-pkg/pkgcachegen.cc:327
  1982. #: apt-pkg/pkgcachegen.cc:340 apt-pkg/pkgcachegen.cc:382
  1983. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:403
  1984. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:415
  1985. #: apt-pkg/pkgcachegen.cc:419 apt-pkg/pkgcachegen.cc:440
  1986. #: apt-pkg/pkgcachegen.cc:479 apt-pkg/pkgcachegen.cc:517
  1987. #: apt-pkg/pkgcachegen.cc:524 apt-pkg/pkgcachegen.cc:555
  1988. #: apt-pkg/pkgcachegen.cc:569
  1989. #, c-format
  1990. msgid "Error occurred while processing %s (%s%d)"
  1991. msgstr "Se produjo un error mientras se procesaba %s (%s%d)"
  1992. #: apt-pkg/pkgcachegen.cc:257
  1993. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1994. msgstr "Excedió la cantidad de nombres de paquetes que admite este APT."
  1995. #: apt-pkg/pkgcachegen.cc:260
  1996. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1997. msgstr "Excedió la cantidad de versiones que admite este APT."
  1998. #: apt-pkg/pkgcachegen.cc:263
  1999. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2000. msgstr "Excedió la cantidad de descripciones que admite este APT."
  2001. #: apt-pkg/pkgcachegen.cc:266
  2002. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2003. msgstr "Excedió la cantidad de dependencias que admite este APT."
  2004. #: apt-pkg/pkgcachegen.cc:576
  2005. #, c-format
  2006. msgid "Package %s %s was not found while processing file dependencies"
  2007. msgstr ""
  2008. "No se encontró el paquete %s %s mientras se procesaban las dependencias"
  2009. #: apt-pkg/pkgcachegen.cc:1211
  2010. #, c-format
  2011. msgid "Couldn't stat source package list %s"
  2012. msgstr "No se pudo leer la lista de paquetes fuente %s"
  2013. #: apt-pkg/pkgcachegen.cc:1299 apt-pkg/pkgcachegen.cc:1403
  2014. #: apt-pkg/pkgcachegen.cc:1409 apt-pkg/pkgcachegen.cc:1566
  2015. msgid "Reading package lists"
  2016. msgstr "Leyendo lista de paquetes"
  2017. #: apt-pkg/pkgcachegen.cc:1316
  2018. msgid "Collecting File Provides"
  2019. msgstr "Recogiendo archivos que proveen"
  2020. #: apt-pkg/pkgcachegen.cc:1400 cmdline/apt-extracttemplates.cc:259
  2021. #, c-format
  2022. msgid "Unable to write to %s"
  2023. msgstr "No se pudo escribir en %s"
  2024. #: apt-pkg/pkgcachegen.cc:1508 apt-pkg/pkgcachegen.cc:1515
  2025. msgid "IO Error saving source cache"
  2026. msgstr "Error de E/S al guardar la caché fuente"
  2027. #: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78
  2028. msgid "Send scenario to solver"
  2029. msgstr "Enviar situación al solucionador"
  2030. #: apt-pkg/edsp.cc:241
  2031. msgid "Send request to solver"
  2032. msgstr "Enviar petición al solucionador"
  2033. #: apt-pkg/edsp.cc:320
  2034. msgid "Prepare for receiving solution"
  2035. msgstr "Preparar para recibir una solución"
  2036. #: apt-pkg/edsp.cc:327
  2037. msgid "External solver failed without a proper error message"
  2038. msgstr "Falló solucionador externo sin un mensaje de error apropiado"
  2039. #: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627
  2040. msgid "Execute external solver"
  2041. msgstr "Ejecutar solucionador externo"
  2042. #: apt-pkg/acquire-item.cc:148 apt-pkg/contrib/fileutl.cc:2047
  2043. #, c-format
  2044. msgid "rename failed, %s (%s -> %s)."
  2045. msgstr "falló el cambio de nombre, %s (%s -> %s)."
  2046. #: apt-pkg/acquire-item.cc:163
  2047. msgid "Hash Sum mismatch"
  2048. msgstr "La suma hash difiere"
  2049. #: apt-pkg/acquire-item.cc:168
  2050. msgid "Size mismatch"
  2051. msgstr "El tamaño difiere"
  2052. #: apt-pkg/acquire-item.cc:173
  2053. msgid "Invalid file format"
  2054. msgstr "Formato inválido de fichero"
  2055. #: apt-pkg/acquire-item.cc:1640
  2056. #, c-format
  2057. msgid ""
  2058. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2059. "or malformed file)"
  2060. msgstr ""
  2061. "No se pudo encontrar la entrada esperada «%s» en el archivo "
  2062. "«Release» (entrada incorrecta en «sources.list» o fichero mal formado)"
  2063. #: apt-pkg/acquire-item.cc:1656
  2064. #, c-format
  2065. msgid "Unable to find hash sum for '%s' in Release file"
  2066. msgstr "No se pudo leer el archivo «Release» %s"
  2067. #: apt-pkg/acquire-item.cc:1698
  2068. msgid "There is no public key available for the following key IDs:\n"
  2069. msgstr ""
  2070. "No existe ninguna clave pública disponible para los siguientes "
  2071. "identificadores de clave:\n"
  2072. #: apt-pkg/acquire-item.cc:1736
  2073. #, c-format
  2074. msgid ""
  2075. "Release file for %s is expired (invalid since %s). Updates for this "
  2076. "repository will not be applied."
  2077. msgstr ""
  2078. "El archivo «Release» para %s está caducado (inválido desde %s). No se "
  2079. "aplicará ninguna actualización de este repositorio."
  2080. #: apt-pkg/acquire-item.cc:1758
  2081. #, c-format
  2082. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2083. msgstr "Distribución conflictiva: %s (se esperaba %s, pero se obtuvo %s)"
  2084. #: apt-pkg/acquire-item.cc:1788
  2085. #, c-format
  2086. msgid ""
  2087. "An error occurred during the signature verification. The repository is not "
  2088. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2089. msgstr ""
  2090. "Se produjo un error durante la verificación de las firmas. El repositorio no "
  2091. "está actualizado y se utilizarán los ficheros de índice antiguos. El error "
  2092. "GPG es: %s: %s\n"
  2093. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2094. #: apt-pkg/acquire-item.cc:1798 apt-pkg/acquire-item.cc:1803
  2095. #, c-format
  2096. msgid "GPG error: %s: %s"
  2097. msgstr "Error de GPG: %s: %s"
  2098. #: apt-pkg/acquire-item.cc:1926
  2099. #, c-format
  2100. msgid ""
  2101. "I wasn't able to locate a file for the %s package. This might mean you need "
  2102. "to manually fix this package. (due to missing arch)"
  2103. msgstr ""
  2104. "No se pudo localizar un archivo para el paquete %s. Esto puede significar "
  2105. "que necesita arreglar manualmente este paquete (debido a que falta una "
  2106. "arquitectura)"
  2107. #: apt-pkg/acquire-item.cc:1992
  2108. #, c-format
  2109. msgid "Can't find a source to download version '%s' of '%s'"
  2110. msgstr ""
  2111. "No se puede encontrar una fuente para descargar la versión «%s» de «%s»"
  2112. #: apt-pkg/acquire-item.cc:2050
  2113. #, c-format
  2114. msgid ""
  2115. "The package index files are corrupted. No Filename: field for package %s."
  2116. msgstr ""
  2117. "Los archivos de índice de paquetes están dañados. No existe un campo "
  2118. "«Filename:» para el paquete %s."
  2119. #: apt-pkg/vendorlist.cc:85
  2120. #, c-format
  2121. msgid "Vendor block %s contains no fingerprint"
  2122. msgstr "Bloque de fabricante %s sin huella digital"
  2123. #: apt-pkg/acquire.cc:87 apt-pkg/cdrom.cc:829
  2124. #, c-format
  2125. msgid "List directory %spartial is missing."
  2126. msgstr "Falta el directorio de listas %spartial."
  2127. #: apt-pkg/acquire.cc:91
  2128. #, c-format
  2129. msgid "Archives directory %spartial is missing."
  2130. msgstr "Falta el directorio de archivos %spartial."
  2131. #: apt-pkg/acquire.cc:99
  2132. #, c-format
  2133. msgid "Unable to lock directory %s"
  2134. msgstr "No se pudo bloquear el directorio %s"
  2135. #. only show the ETA if it makes sense
  2136. #. two days
  2137. #: apt-pkg/acquire.cc:902
  2138. #, c-format
  2139. msgid "Retrieving file %li of %li (%s remaining)"
  2140. msgstr "Descargando fichero %li de %li (falta %s)"
  2141. #: apt-pkg/acquire.cc:904
  2142. #, c-format
  2143. msgid "Retrieving file %li of %li"
  2144. msgstr "Descargando fichero %li de %li"
  2145. #: apt-pkg/srcrecords.cc:53
  2146. msgid "You must put some 'source' URIs in your sources.list"
  2147. msgstr "Debe poner algunos URIs fuente («source») en su sources.list"
  2148. #: apt-pkg/policy.cc:83
  2149. #, c-format
  2150. msgid ""
  2151. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2152. "available in the sources"
  2153. msgstr ""
  2154. "El valor «%s» no es válido para APT::Default-Release ya que dicha "
  2155. "distribución no está disponible en las fuentes"
  2156. #: apt-pkg/policy.cc:422
  2157. #, c-format
  2158. msgid "Invalid record in the preferences file %s, no Package header"
  2159. msgstr ""
  2160. "Registro inválido en el archivo de preferencias %s, no tiene cabecera "
  2161. "«Package»"
  2162. #: apt-pkg/policy.cc:444
  2163. #, c-format
  2164. msgid "Did not understand pin type %s"
  2165. msgstr "No se entendió el pin tipo %s"
  2166. #: apt-pkg/policy.cc:452
  2167. msgid "No priority (or zero) specified for pin"
  2168. msgstr "No hay prioridad especificada para pin (o es cero)"
  2169. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:957
  2170. #, c-format
  2171. msgid ""
  2172. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2173. "under APT::Immediate-Configure for details. (%d)"
  2174. msgstr ""
  2175. "No se pudo realizar la configuración inmediata de «%s». Consulte la página "
  2176. "de manual con «man 5 apt.conf» bajo «APT::Immediate-Configure» para más "
  2177. "información. (%d)"
  2178. #: apt-pkg/packagemanager.cc:550 apt-pkg/packagemanager.cc:580
  2179. #, c-format
  2180. msgid "Could not configure '%s'. "
  2181. msgstr "No se pudo configurar «%s»"
  2182. #: apt-pkg/packagemanager.cc:630
  2183. #, c-format
  2184. msgid ""
  2185. "This installation run will require temporarily removing the essential "
  2186. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2187. "you really want to do it, activate the APT::Force-LoopBreak option."
  2188. msgstr ""
  2189. "Esta ejecución de la instalación requiere eliminar temporalmente el paquete "
  2190. "esencial %s debido a un bucle de Conflictos/Pre-Dependencias. Normalmente "
  2191. "esto es malo, pero si quiere hacerlo de todas formas, active la opción |APT::"
  2192. "Force-LoopBreak»."
  2193. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  2194. msgid ""
  2195. "Some index files failed to download. They have been ignored, or old ones "
  2196. "used instead."
  2197. msgstr ""
  2198. "No se han podido descargar algunos archivos de índice, se han omitido, o se "
  2199. "han utilizado unos antiguos en su lugar."
  2200. #: apt-pkg/cdrom.cc:571
  2201. msgid "Unmounting CD-ROM...\n"
  2202. msgstr "Desmontando el CD-ROM...\n"
  2203. #: apt-pkg/cdrom.cc:586
  2204. #, c-format
  2205. msgid "Using CD-ROM mount point %s\n"
  2206. msgstr "Usando el punto de montaje %s del CD-ROM\n"
  2207. #: apt-pkg/cdrom.cc:599
  2208. msgid "Waiting for disc...\n"
  2209. msgstr "Esperando el disco...\n"
  2210. #: apt-pkg/cdrom.cc:609
  2211. msgid "Mounting CD-ROM...\n"
  2212. msgstr "Montando el CD-ROM...\n"
  2213. #: apt-pkg/cdrom.cc:620
  2214. msgid "Identifying... "
  2215. msgstr "Identificando... "
  2216. #: apt-pkg/cdrom.cc:662
  2217. #, c-format
  2218. msgid "Stored label: %s\n"
  2219. msgstr "Etiqueta guardada: %s \n"
  2220. #: apt-pkg/cdrom.cc:680
  2221. msgid "Scanning disc for index files...\n"
  2222. msgstr "Buscando en el disco ficheros de índices...\n"
  2223. #: apt-pkg/cdrom.cc:734
  2224. #, c-format
  2225. msgid ""
  2226. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2227. "%zu signatures\n"
  2228. msgstr ""
  2229. "Se encontraron %zu índices de paquetes, %zu índices de fuentes, %zu índices "
  2230. "de traducción y %zu firmas\n"
  2231. #: apt-pkg/cdrom.cc:744
  2232. msgid ""
  2233. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2234. "wrong architecture?"
  2235. msgstr ""
  2236. "No se pudo localizar ningún archivo de paquete, ¿quizás este no sea un disco "
  2237. "de Debian o sea de otra arquitectura?"
  2238. #: apt-pkg/cdrom.cc:771
  2239. #, c-format
  2240. msgid "Found label '%s'\n"
  2241. msgstr "Se encontró la etiqueta: «%s»\n"
  2242. #: apt-pkg/cdrom.cc:800
  2243. msgid "That is not a valid name, try again.\n"
  2244. msgstr "Ese no es un nombre válido, inténtelo de nuevo.\n"
  2245. #: apt-pkg/cdrom.cc:817
  2246. #, c-format
  2247. msgid ""
  2248. "This disc is called: \n"
  2249. "'%s'\n"
  2250. msgstr ""
  2251. "Este disco se llama: \n"
  2252. "«%s»\n"
  2253. #: apt-pkg/cdrom.cc:819
  2254. msgid "Copying package lists..."
  2255. msgstr "Copiando las listas de paquetes..."
  2256. #: apt-pkg/cdrom.cc:863
  2257. msgid "Writing new source list\n"
  2258. msgstr "Escribiendo nueva lista de fuentes\n"
  2259. #: apt-pkg/cdrom.cc:874
  2260. msgid "Source list entries for this disc are:\n"
  2261. msgstr "Las entradas de la lista de fuentes para este disco son:\n"
  2262. #: apt-pkg/algorithms.cc:265
  2263. #, c-format
  2264. msgid ""
  2265. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2266. msgstr ""
  2267. "El paquete %s necesita ser reinstalado, pero no se encuentra el archivo para "
  2268. "ello."
  2269. #: apt-pkg/algorithms.cc:1086
  2270. msgid ""
  2271. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2272. "held packages."
  2273. msgstr ""
  2274. "Error, pkgProblemResolver::Resolve generó cortes, esto puede deberse a "
  2275. "paquetes retenidos."
  2276. #: apt-pkg/algorithms.cc:1088
  2277. msgid "Unable to correct problems, you have held broken packages."
  2278. msgstr ""
  2279. "No se pudieron corregir los problemas, usted ha retenido paquetes rotos."
  2280. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  2281. msgid "Building dependency tree"
  2282. msgstr "Creando árbol de dependencias"
  2283. #: apt-pkg/depcache.cc:139
  2284. msgid "Candidate versions"
  2285. msgstr "Versiones candidatas"
  2286. #: apt-pkg/depcache.cc:168
  2287. msgid "Dependency generation"
  2288. msgstr "Generación de dependencias"
  2289. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  2290. msgid "Reading state information"
  2291. msgstr "Leyendo la información de estado"
  2292. #: apt-pkg/depcache.cc:250
  2293. #, c-format
  2294. msgid "Failed to open StateFile %s"
  2295. msgstr "No se pudo abrir el fichero de estado %s"
  2296. #: apt-pkg/depcache.cc:256
  2297. #, c-format
  2298. msgid "Failed to write temporary StateFile %s"
  2299. msgstr "Falló la escritura del fichero de estado temporal %s"
  2300. #: apt-pkg/tagfile.cc:140
  2301. #, c-format
  2302. msgid "Unable to parse package file %s (1)"
  2303. msgstr "No se pudo tratar el archivo de paquetes %s (1)"
  2304. #: apt-pkg/tagfile.cc:237
  2305. #, c-format
  2306. msgid "Unable to parse package file %s (2)"
  2307. msgstr "No se pudo tratar el archivo de paquetes %s (2)"
  2308. #: apt-pkg/cacheset.cc:489
  2309. #, c-format
  2310. msgid "Release '%s' for '%s' was not found"
  2311. msgstr "No se encontró la distribución «%s» para «%s»"
  2312. #: apt-pkg/cacheset.cc:492
  2313. #, c-format
  2314. msgid "Version '%s' for '%s' was not found"
  2315. msgstr "No se encontró la versión «%s» para «%s»"
  2316. #: apt-pkg/cacheset.cc:603
  2317. #, c-format
  2318. msgid "Couldn't find task '%s'"
  2319. msgstr "No se pudo encontrar la tarea «%s»"
  2320. #: apt-pkg/cacheset.cc:609
  2321. #, c-format
  2322. msgid "Couldn't find any package by regex '%s'"
  2323. msgstr "No se pudo encontrar ningún paquete con la expresión regular «%s»"
  2324. #: apt-pkg/cacheset.cc:615
  2325. #, c-format
  2326. msgid "Couldn't find any package by glob '%s'"
  2327. msgstr "No se pudo encontrar ningún paquete usando «*» con «%s»"
  2328. #: apt-pkg/cacheset.cc:626
  2329. #, c-format
  2330. msgid "Can't select versions from package '%s' as it is purely virtual"
  2331. msgstr ""
  2332. "No se pueden seleccionar distintas versiones del paquete «%s» porque es "
  2333. "puramente virtual"
  2334. #: apt-pkg/cacheset.cc:633 apt-pkg/cacheset.cc:640
  2335. #, c-format
  2336. msgid ""
  2337. "Can't select installed nor candidate version from package '%s' as it has "
  2338. "neither of them"
  2339. msgstr ""
  2340. "No se puede seleccionar una versión instalada o candidata para el paquete "
  2341. "«%s» dado que éste no tiene ninguna de éstas"
  2342. #: apt-pkg/cacheset.cc:647
  2343. #, c-format
  2344. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2345. msgstr ""
  2346. "No se puede seleccionar la última versión del paquete «%s» dado que es "
  2347. "puramente virtual"
  2348. #: apt-pkg/cacheset.cc:655
  2349. #, c-format
  2350. msgid "Can't select candidate version from package %s as it has no candidate"
  2351. msgstr ""
  2352. "No se puede seleccionar la versión candidata del paquete %s dado que no "
  2353. "tiene candidatos"
  2354. #: apt-pkg/cacheset.cc:663
  2355. #, c-format
  2356. msgid "Can't select installed version from package %s as it is not installed"
  2357. msgstr ""
  2358. "No se puede seleccionar la versión instalada del paquete «%s» puesto que no "
  2359. "está instalado"
  2360. #: apt-pkg/indexrecords.cc:78
  2361. #, c-format
  2362. msgid "Unable to parse Release file %s"
  2363. msgstr "No se pudo leer el archivo «Release» %s"
  2364. #: apt-pkg/indexrecords.cc:86
  2365. #, c-format
  2366. msgid "No sections in Release file %s"
  2367. msgstr "No se encontraron secciones en el archivo «Release» %s"
  2368. #: apt-pkg/indexrecords.cc:117
  2369. #, c-format
  2370. msgid "No Hash entry in Release file %s"
  2371. msgstr "No existe una entrada «Hash» en el archivo «Release» %s"
  2372. #: apt-pkg/indexrecords.cc:130
  2373. #, c-format
  2374. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2375. msgstr "Entrada «Valid-Until» inválida en el archivo «Release» %s"
  2376. #: apt-pkg/indexrecords.cc:149
  2377. #, c-format
  2378. msgid "Invalid 'Date' entry in Release file %s"
  2379. msgstr "Entrada «Date» inválida en el archivo «Release» %s"
  2380. #. d means days, h means hours, min means minutes, s means seconds
  2381. #: apt-pkg/contrib/strutl.cc:418
  2382. #, c-format
  2383. msgid "%lid %lih %limin %lis"
  2384. msgstr "%lid %lih %limin %lis"
  2385. #. h means hours, min means minutes, s means seconds
  2386. #: apt-pkg/contrib/strutl.cc:425
  2387. #, c-format
  2388. msgid "%lih %limin %lis"
  2389. msgstr "%lih %limin %lis"
  2390. #. min means minutes, s means seconds
  2391. #: apt-pkg/contrib/strutl.cc:432
  2392. #, c-format
  2393. msgid "%limin %lis"
  2394. msgstr "%limin %lis"
  2395. #. s means seconds
  2396. #: apt-pkg/contrib/strutl.cc:437
  2397. #, c-format
  2398. msgid "%lis"
  2399. msgstr "%lis"
  2400. #: apt-pkg/contrib/strutl.cc:1258
  2401. #, c-format
  2402. msgid "Selection %s not found"
  2403. msgstr "Selección %s no encontrada"
  2404. #: apt-pkg/contrib/fileutl.cc:190
  2405. #, c-format
  2406. msgid "Not using locking for read only lock file %s"
  2407. msgstr "No se utilizan bloqueos para el fichero de bloqueo de sólo lectura %s"
  2408. #: apt-pkg/contrib/fileutl.cc:195
  2409. #, c-format
  2410. msgid "Could not open lock file %s"
  2411. msgstr "No se pudo abrir el fichero de bloqueo «%s»"
  2412. #: apt-pkg/contrib/fileutl.cc:218
  2413. #, c-format
  2414. msgid "Not using locking for nfs mounted lock file %s"
  2415. msgstr "No se utilizan bloqueos para el fichero de bloqueo de montaje nfs %s"
  2416. #: apt-pkg/contrib/fileutl.cc:223
  2417. #, c-format
  2418. msgid "Could not get lock %s"
  2419. msgstr "No se pudo bloquear %s"
  2420. #: apt-pkg/contrib/fileutl.cc:360 apt-pkg/contrib/fileutl.cc:474
  2421. #, c-format
  2422. msgid "List of files can't be created as '%s' is not a directory"
  2423. msgstr ""
  2424. "La lista de los ficheros no se pudo crear, ya que «%s» no es un directorio"
  2425. #: apt-pkg/contrib/fileutl.cc:394
  2426. #, c-format
  2427. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2428. msgstr "Omitiendo «%s» del directorio «%s», ya que no es un fichero regular"
  2429. #: apt-pkg/contrib/fileutl.cc:412
  2430. #, c-format
  2431. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2432. msgstr ""
  2433. "Omitiendo fichero «%s» del directorio «%s», ya que no tiene extensión de "
  2434. "nombre de fichero"
  2435. #: apt-pkg/contrib/fileutl.cc:421
  2436. #, c-format
  2437. msgid ""
  2438. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2439. msgstr ""
  2440. "Omitiendo el fichero «%s» del directorio «%s», ya que tiene una extensión de "
  2441. "nombre de fichero no válida"
  2442. #: apt-pkg/contrib/fileutl.cc:824
  2443. #, c-format
  2444. msgid "Sub-process %s received a segmentation fault."
  2445. msgstr "El subproceso %s recibió un fallo de segmentación."
  2446. #: apt-pkg/contrib/fileutl.cc:826
  2447. #, c-format
  2448. msgid "Sub-process %s received signal %u."
  2449. msgstr "El subproceso %s recibió la señal %u."
  2450. #: apt-pkg/contrib/fileutl.cc:830 apt-pkg/contrib/gpgv.cc:239
  2451. #, c-format
  2452. msgid "Sub-process %s returned an error code (%u)"
  2453. msgstr "El subproceso %s devolvió un código de error (%u)"
  2454. #: apt-pkg/contrib/fileutl.cc:832 apt-pkg/contrib/gpgv.cc:232
  2455. #, c-format
  2456. msgid "Sub-process %s exited unexpectedly"
  2457. msgstr "El subproceso %s terminó de forma inesperada"
  2458. #: apt-pkg/contrib/fileutl.cc:913
  2459. #, c-format
  2460. msgid "Problem closing the gzip file %s"
  2461. msgstr "Se produjo un problema al cerrar el fichero gzip %s"
  2462. #: apt-pkg/contrib/fileutl.cc:1101
  2463. #, c-format
  2464. msgid "Could not open file %s"
  2465. msgstr "No pude abrir el fichero %s"
  2466. #: apt-pkg/contrib/fileutl.cc:1160 apt-pkg/contrib/fileutl.cc:1207
  2467. #, c-format
  2468. msgid "Could not open file descriptor %d"
  2469. msgstr "No se pudo abrir el descriptor de fichero %d"
  2470. #: apt-pkg/contrib/fileutl.cc:1315
  2471. msgid "Failed to create subprocess IPC"
  2472. msgstr "No se pudo crear el subproceso IPC"
  2473. #: apt-pkg/contrib/fileutl.cc:1373
  2474. msgid "Failed to exec compressor "
  2475. msgstr "No se pudo ejecutar el compresor "
  2476. #: apt-pkg/contrib/fileutl.cc:1514
  2477. #, c-format
  2478. msgid "read, still have %llu to read but none left"
  2479. msgstr "leídos, todavía quedaban por leer %llu pero no queda ninguna"
  2480. #: apt-pkg/contrib/fileutl.cc:1627 apt-pkg/contrib/fileutl.cc:1649
  2481. #, c-format
  2482. msgid "write, still have %llu to write but couldn't"
  2483. msgstr "escritos, todavía quedaban por escribir %llu pero no se pudo hacer"
  2484. #: apt-pkg/contrib/fileutl.cc:1915
  2485. #, c-format
  2486. msgid "Problem closing the file %s"
  2487. msgstr "Se produjo un problema al cerrar el fichero %s"
  2488. #: apt-pkg/contrib/fileutl.cc:1927
  2489. #, c-format
  2490. msgid "Problem renaming the file %s to %s"
  2491. msgstr "Se produjo un problema al renombrar el fichero %s a %s"
  2492. #: apt-pkg/contrib/fileutl.cc:1938
  2493. #, c-format
  2494. msgid "Problem unlinking the file %s"
  2495. msgstr "Se produjo un problema al desligar el fichero %s"
  2496. #: apt-pkg/contrib/fileutl.cc:1951
  2497. msgid "Problem syncing the file"
  2498. msgstr "Se produjo un problema al sincronizar el fichero"
  2499. #: apt-pkg/contrib/progress.cc:148
  2500. #, c-format
  2501. msgid "%c%s... Error!"
  2502. msgstr "%c%s... ¡Error!"
  2503. #: apt-pkg/contrib/progress.cc:150
  2504. #, c-format
  2505. msgid "%c%s... Done"
  2506. msgstr "%c%s... Hecho"
  2507. #: apt-pkg/contrib/progress.cc:181
  2508. msgid "..."
  2509. msgstr "..."
  2510. #. Print the spinner
  2511. #: apt-pkg/contrib/progress.cc:197
  2512. #, c-format
  2513. msgid "%c%s... %u%%"
  2514. msgstr "%c%s... %u%%"
  2515. #: apt-pkg/contrib/mmap.cc:79
  2516. msgid "Can't mmap an empty file"
  2517. msgstr "No puedo hacer mmap de un fichero vacío"
  2518. #: apt-pkg/contrib/mmap.cc:111
  2519. #, c-format
  2520. msgid "Couldn't duplicate file descriptor %i"
  2521. msgstr "No pude duplicar el descriptor de fichero %i"
  2522. #: apt-pkg/contrib/mmap.cc:119
  2523. #, c-format
  2524. msgid "Couldn't make mmap of %llu bytes"
  2525. msgstr "No se puede hacer mmap de %llu bytes"
  2526. #: apt-pkg/contrib/mmap.cc:146
  2527. msgid "Unable to close mmap"
  2528. msgstr "No se pudo cerrar «mmap»"
  2529. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2530. msgid "Unable to synchronize mmap"
  2531. msgstr "No pude sincronizar «mmap»"
  2532. #: apt-pkg/contrib/mmap.cc:290
  2533. #, c-format
  2534. msgid "Couldn't make mmap of %lu bytes"
  2535. msgstr "No pude hacer mmap de %lu bytes"
  2536. #: apt-pkg/contrib/mmap.cc:322
  2537. msgid "Failed to truncate file"
  2538. msgstr "Falló al truncar el archivo"
  2539. #: apt-pkg/contrib/mmap.cc:341
  2540. #, c-format
  2541. msgid ""
  2542. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2543. "Current value: %lu. (man 5 apt.conf)"
  2544. msgstr ""
  2545. "La asignación dinámica MMap no tiene más espacio. Por favor, incrementa el "
  2546. "valor de «APT::Cache-Start». El valor actual es: %lu (man 5 apt.conf)"
  2547. #: apt-pkg/contrib/mmap.cc:446
  2548. #, c-format
  2549. msgid ""
  2550. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2551. "reached."
  2552. msgstr ""
  2553. "No se pudo incrementar el tamaño del MMap dado que se ha alcanzado ya el "
  2554. "límite de %lu bytes."
  2555. #: apt-pkg/contrib/mmap.cc:449
  2556. msgid ""
  2557. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2558. msgstr ""
  2559. "No se pudo incrementar el tamaño de MMap dado que el usuario ha "
  2560. "deshabilitado el crecimiento automático."
  2561. #: apt-pkg/contrib/cdromutl.cc:65
  2562. #, c-format
  2563. msgid "Unable to stat the mount point %s"
  2564. msgstr "No se puede obtener información del punto de montaje %s"
  2565. #: apt-pkg/contrib/cdromutl.cc:246
  2566. msgid "Failed to stat the cdrom"
  2567. msgstr "No pude montar el cdrom"
  2568. #: apt-pkg/contrib/configuration.cc:519
  2569. #, c-format
  2570. msgid "Unrecognized type abbreviation: '%c'"
  2571. msgstr "Tipo de abreviación no reconocida: «%c»"
  2572. #: apt-pkg/contrib/configuration.cc:633
  2573. #, c-format
  2574. msgid "Opening configuration file %s"
  2575. msgstr "Abriendo fichero de configuración %s"
  2576. #: apt-pkg/contrib/configuration.cc:801
  2577. #, c-format
  2578. msgid "Syntax error %s:%u: Block starts with no name."
  2579. msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque."
  2580. #: apt-pkg/contrib/configuration.cc:820
  2581. #, c-format
  2582. msgid "Syntax error %s:%u: Malformed tag"
  2583. msgstr "Error de sintaxis %s:%u: Marca mal formada"
  2584. #: apt-pkg/contrib/configuration.cc:837
  2585. #, c-format
  2586. msgid "Syntax error %s:%u: Extra junk after value"
  2587. msgstr "Error de sintaxis %s:%u: Basura extra después del valor"
  2588. #: apt-pkg/contrib/configuration.cc:877
  2589. #, c-format
  2590. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2591. msgstr ""
  2592. "Error de sintaxis %s:%u: Las directivas sólo se pueden poner en el primer "
  2593. "nivel"
  2594. #: apt-pkg/contrib/configuration.cc:884
  2595. #, c-format
  2596. msgid "Syntax error %s:%u: Too many nested includes"
  2597. msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas"
  2598. #: apt-pkg/contrib/configuration.cc:888 apt-pkg/contrib/configuration.cc:893
  2599. #, c-format
  2600. msgid "Syntax error %s:%u: Included from here"
  2601. msgstr "Error de sintaxis %s:%u: Incluido desde aquí"
  2602. #: apt-pkg/contrib/configuration.cc:897
  2603. #, c-format
  2604. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2605. msgstr "Error de sintaxis %s:%u: Directiva «%s» no soportada"
  2606. #: apt-pkg/contrib/configuration.cc:900
  2607. #, c-format
  2608. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2609. msgstr ""
  2610. "Error de sintaxis %s:%u: la directiva «clear» tiene que incluir un árbol de "
  2611. "opciones como argumento"
  2612. #: apt-pkg/contrib/configuration.cc:950
  2613. #, c-format
  2614. msgid "Syntax error %s:%u: Extra junk at end of file"
  2615. msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo"
  2616. #. TRANSLATOR: %s is the trusted keyring parts directory
  2617. #: apt-pkg/contrib/gpgv.cc:72
  2618. #, c-format
  2619. msgid "No keyring installed in %s."
  2620. msgstr "No se instaló ningún anillo de claves %s."
  2621. #: apt-pkg/contrib/cmndline.cc:124
  2622. #, c-format
  2623. msgid "Command line option '%c' [from %s] is not known."
  2624. msgstr "No se conoce la opción de línea de órdenes «%c» [de %s]."
  2625. #: apt-pkg/contrib/cmndline.cc:149 apt-pkg/contrib/cmndline.cc:158
  2626. #: apt-pkg/contrib/cmndline.cc:166
  2627. #, c-format
  2628. msgid "Command line option %s is not understood"
  2629. msgstr "No se entiende la opción de línea de órdenes %s"
  2630. #: apt-pkg/contrib/cmndline.cc:171
  2631. #, c-format
  2632. msgid "Command line option %s is not boolean"
  2633. msgstr "La opción de línea de órdenes %s no es un booleano"
  2634. #: apt-pkg/contrib/cmndline.cc:212 apt-pkg/contrib/cmndline.cc:233
  2635. #, c-format
  2636. msgid "Option %s requires an argument."
  2637. msgstr "La opción %s necesita un argumento."
  2638. #: apt-pkg/contrib/cmndline.cc:246 apt-pkg/contrib/cmndline.cc:252
  2639. #, c-format
  2640. msgid "Option %s: Configuration item specification must have an =<val>."
  2641. msgstr ""
  2642. "Opción %s: La especificación del elemento de configuración debe tener un "
  2643. "=<val>."
  2644. #: apt-pkg/contrib/cmndline.cc:281
  2645. #, c-format
  2646. msgid "Option %s requires an integer argument, not '%s'"
  2647. msgstr "La opción %s exige un argumento entero, no «%s»"
  2648. #: apt-pkg/contrib/cmndline.cc:312
  2649. #, c-format
  2650. msgid "Option '%s' is too long"
  2651. msgstr "Opción «%s» demasiado larga"
  2652. #: apt-pkg/contrib/cmndline.cc:344
  2653. #, c-format
  2654. msgid "Sense %s is not understood, try true or false."
  2655. msgstr "El sentido %s no se entiende, pruebe verdadero o falso."
  2656. #: apt-pkg/contrib/cmndline.cc:394
  2657. #, c-format
  2658. msgid "Invalid operation %s"
  2659. msgstr "Operación inválida: %s"
  2660. #: apt-pkg/deb/dpkgpm.cc:112
  2661. #, c-format
  2662. msgid "Installing %s"
  2663. msgstr "Instalando %s"
  2664. #: apt-pkg/deb/dpkgpm.cc:113 apt-pkg/deb/dpkgpm.cc:1016
  2665. #, c-format
  2666. msgid "Configuring %s"
  2667. msgstr "Configurando %s"
  2668. #: apt-pkg/deb/dpkgpm.cc:114 apt-pkg/deb/dpkgpm.cc:1023
  2669. #, c-format
  2670. msgid "Removing %s"
  2671. msgstr "Eliminando %s"
  2672. #: apt-pkg/deb/dpkgpm.cc:115
  2673. #, c-format
  2674. msgid "Completely removing %s"
  2675. msgstr "Borrando completamente %s"
  2676. #: apt-pkg/deb/dpkgpm.cc:116
  2677. #, c-format
  2678. msgid "Noting disappearance of %s"
  2679. msgstr "Se detectó la desaparición de %s"
  2680. #: apt-pkg/deb/dpkgpm.cc:117
  2681. #, c-format
  2682. msgid "Running post-installation trigger %s"
  2683. msgstr "Ejecutando disparador post-instalación %s"
  2684. #. FIXME: use a better string after freeze
  2685. #: apt-pkg/deb/dpkgpm.cc:847
  2686. #, c-format
  2687. msgid "Directory '%s' missing"
  2688. msgstr "Falta el directorio «%s»."
  2689. #: apt-pkg/deb/dpkgpm.cc:862 apt-pkg/deb/dpkgpm.cc:884
  2690. #, c-format
  2691. msgid "Could not open file '%s'"
  2692. msgstr "No se pudo abrir el fichero «%s»"
  2693. #: apt-pkg/deb/dpkgpm.cc:1009
  2694. #, c-format
  2695. msgid "Preparing %s"
  2696. msgstr "Preparando %s"
  2697. #: apt-pkg/deb/dpkgpm.cc:1010
  2698. #, c-format
  2699. msgid "Unpacking %s"
  2700. msgstr "Desempaquetando %s"
  2701. #: apt-pkg/deb/dpkgpm.cc:1015
  2702. #, c-format
  2703. msgid "Preparing to configure %s"
  2704. msgstr "Preparándose para configurar %s"
  2705. #: apt-pkg/deb/dpkgpm.cc:1017
  2706. #, c-format
  2707. msgid "Installed %s"
  2708. msgstr "%s instalado"
  2709. #: apt-pkg/deb/dpkgpm.cc:1022
  2710. #, c-format
  2711. msgid "Preparing for removal of %s"
  2712. msgstr "Preparándose para eliminar %s"
  2713. #: apt-pkg/deb/dpkgpm.cc:1024
  2714. #, c-format
  2715. msgid "Removed %s"
  2716. msgstr "%s eliminado"
  2717. #: apt-pkg/deb/dpkgpm.cc:1029
  2718. #, c-format
  2719. msgid "Preparing to completely remove %s"
  2720. msgstr "Preparándose para eliminar completamente %s"
  2721. #: apt-pkg/deb/dpkgpm.cc:1030
  2722. #, c-format
  2723. msgid "Completely removed %s"
  2724. msgstr "%s se borró completamente"
  2725. #: apt-pkg/deb/dpkgpm.cc:1091 apt-pkg/deb/dpkgpm.cc:1179
  2726. #, c-format
  2727. msgid "Can not write log (%s)"
  2728. msgstr "No se pudo escribir el informe (%s)"
  2729. #: apt-pkg/deb/dpkgpm.cc:1091 apt-pkg/deb/dpkgpm.cc:1179
  2730. msgid "Is /dev/pts mounted?"
  2731. msgstr "¿Está montado «/dev/pts»?"
  2732. #: apt-pkg/deb/dpkgpm.cc:1670
  2733. msgid "Operation was interrupted before it could finish"
  2734. msgstr "Se interrumpió la operación antes de que pudiera terminar"
  2735. #: apt-pkg/deb/dpkgpm.cc:1732
  2736. msgid "No apport report written because MaxReports is reached already"
  2737. msgstr ""
  2738. "No se escribió ningún informe «apport» porque ya se ha alcanzado el valor de "
  2739. "«MaxReports»"
  2740. #. check if its not a follow up error
  2741. #: apt-pkg/deb/dpkgpm.cc:1737
  2742. msgid "dependency problems - leaving unconfigured"
  2743. msgstr "problemas de dependencias - dejando sin configurar"
  2744. #: apt-pkg/deb/dpkgpm.cc:1739
  2745. msgid ""
  2746. "No apport report written because the error message indicates its a followup "
  2747. "error from a previous failure."
  2748. msgstr ""
  2749. "No se escribió un informe «apport» porque el mensaje de error indica que es "
  2750. "un mensaje de error asociado a un fallo previo."
  2751. #: apt-pkg/deb/dpkgpm.cc:1745
  2752. msgid ""
  2753. "No apport report written because the error message indicates a disk full "
  2754. "error"
  2755. msgstr ""
  2756. "No se escribió un informe «apport» porque el mensaje de error indica que el "
  2757. "error es de disco lleno"
  2758. #: apt-pkg/deb/dpkgpm.cc:1752
  2759. msgid ""
  2760. "No apport report written because the error message indicates a out of memory "
  2761. "error"
  2762. msgstr ""
  2763. "No se escribió un informe «apport» porque el mensaje de error indica un "
  2764. "error de memoria excedida"
  2765. #: apt-pkg/deb/dpkgpm.cc:1759 apt-pkg/deb/dpkgpm.cc:1765
  2766. msgid ""
  2767. "No apport report written because the error message indicates an issue on the "
  2768. "local system"
  2769. msgstr ""
  2770. "No se escribió un informe «apport» porque el mensaje de error indica un "
  2771. "problema en el sistema local"
  2772. #: apt-pkg/deb/dpkgpm.cc:1787
  2773. msgid ""
  2774. "No apport report written because the error message indicates a dpkg I/O error"
  2775. msgstr ""
  2776. "No se escribió un informe «apport» porque el mensaje de error indica un "
  2777. "error de E/S de dpkg"
  2778. #: apt-pkg/deb/debsystem.cc:91
  2779. #, c-format
  2780. msgid ""
  2781. "Unable to lock the administration directory (%s), is another process using "
  2782. "it?"
  2783. msgstr ""
  2784. "No se pudo bloquear el directorio de administración (%s), ¿quizás haya algún "
  2785. "otro proceso utilizándolo?"
  2786. #: apt-pkg/deb/debsystem.cc:94
  2787. #, c-format
  2788. msgid "Unable to lock the administration directory (%s), are you root?"
  2789. msgstr ""
  2790. "No se pudo bloquear el directorio de administración (%s), ¿está como "
  2791. "superusuario?"
  2792. #. TRANSLATORS: the %s contains the recovery command, usually
  2793. #. dpkg --configure -a
  2794. #: apt-pkg/deb/debsystem.cc:110
  2795. #, c-format
  2796. msgid ""
  2797. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2798. msgstr ""
  2799. "se interrumpió la ejecución de dpkg, debe ejecutar manualmente «%s» para "
  2800. "corregir el problema"
  2801. #: apt-pkg/deb/debsystem.cc:128
  2802. msgid "Not locked"
  2803. msgstr "No bloqueado"
  2804. #: cmdline/apt-extracttemplates.cc:224
  2805. msgid ""
  2806. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2807. "\n"
  2808. "apt-extracttemplates is a tool to extract config and template info\n"
  2809. "from debian packages\n"
  2810. "\n"
  2811. "Options:\n"
  2812. " -h This help text\n"
  2813. " -t Set the temp dir\n"
  2814. " -c=? Read this configuration file\n"
  2815. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2816. msgstr ""
  2817. "Uso: apt-extracttemplates archivo1 [archivo2 ...]\n"
  2818. "\n"
  2819. "apt-extracttemplates es una herramienta para extraer información de\n"
  2820. "configuración y plantillas de paquetes de debian.\n"
  2821. "\n"
  2822. "Opciones:\n"
  2823. " -h Este texto de ayuda.\n"
  2824. " -t Define el directorio temporal\n"
  2825. " -c=? Lee este archivo de configuración\n"
  2826. " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::"
  2827. "cache=/tmp\n"
  2828. #: cmdline/apt-extracttemplates.cc:254
  2829. #, c-format
  2830. msgid "Unable to mkstemp %s"
  2831. msgstr "No pude leer %s"
  2832. #: cmdline/apt-extracttemplates.cc:300
  2833. msgid "Cannot get debconf version. Is debconf installed?"
  2834. msgstr "No se puede encontrar la versión de debconf. ¿Está debconf instalado?"
  2835. #: ftparchive/apt-ftparchive.cc:187 ftparchive/apt-ftparchive.cc:371
  2836. msgid "Package extension list is too long"
  2837. msgstr "La lista de extensión de paquetes es demasiado larga"
  2838. #: ftparchive/apt-ftparchive.cc:189 ftparchive/apt-ftparchive.cc:206
  2839. #: ftparchive/apt-ftparchive.cc:229 ftparchive/apt-ftparchive.cc:283
  2840. #: ftparchive/apt-ftparchive.cc:297 ftparchive/apt-ftparchive.cc:319
  2841. #, c-format
  2842. msgid "Error processing directory %s"
  2843. msgstr "Error procesando el directorio %s"
  2844. #: ftparchive/apt-ftparchive.cc:281
  2845. msgid "Source extension list is too long"
  2846. msgstr "La lista de extensión de fuentes es demasiado larga"
  2847. #: ftparchive/apt-ftparchive.cc:401
  2848. msgid "Error writing header to contents file"
  2849. msgstr "Error escribiendo cabeceras de archivos de contenido"
  2850. #: ftparchive/apt-ftparchive.cc:431
  2851. #, c-format
  2852. msgid "Error processing contents %s"
  2853. msgstr "Error procesando contenidos %s"
  2854. #: ftparchive/apt-ftparchive.cc:626
  2855. msgid ""
  2856. "Usage: apt-ftparchive [options] command\n"
  2857. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2858. " sources srcpath [overridefile [pathprefix]]\n"
  2859. " contents path\n"
  2860. " release path\n"
  2861. " generate config [groups]\n"
  2862. " clean config\n"
  2863. "\n"
  2864. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2865. "many styles of generation from fully automated to functional replacements\n"
  2866. "for dpkg-scanpackages and dpkg-scansources\n"
  2867. "\n"
  2868. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2869. "Package file contains the contents of all the control fields from\n"
  2870. "each package as well as the MD5 hash and filesize. An override file\n"
  2871. "is supported to force the value of Priority and Section.\n"
  2872. "\n"
  2873. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2874. "The --source-override option can be used to specify a src override file\n"
  2875. "\n"
  2876. "The 'packages' and 'sources' command should be run in the root of the\n"
  2877. "tree. BinaryPath should point to the base of the recursive search and \n"
  2878. "override file should contain the override flags. Pathprefix is\n"
  2879. "appended to the filename fields if present. Example usage from the \n"
  2880. "Debian archive:\n"
  2881. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2882. " dists/potato/main/binary-i386/Packages\n"
  2883. "\n"
  2884. "Options:\n"
  2885. " -h This help text\n"
  2886. " --md5 Control MD5 generation\n"
  2887. " -s=? Source override file\n"
  2888. " -q Quiet\n"
  2889. " -d=? Select the optional caching database\n"
  2890. " --no-delink Enable delinking debug mode\n"
  2891. " --contents Control contents file generation\n"
  2892. " -c=? Read this configuration file\n"
  2893. " -o=? Set an arbitrary configuration option"
  2894. msgstr ""
  2895. "Uso: apt-ftparchive [opciones] orden\n"
  2896. "Comandos: packages ruta-binaria [archivo-predominio\n"
  2897. " [prefijo-ruta]]\n"
  2898. " sources ruta-fuente [archivo-predominio \n"
  2899. " [prefijo-ruta]]\n"
  2900. " contents ruta\n"
  2901. " release ruta\n"
  2902. " generate config [grupos]\n"
  2903. " clean config\n"
  2904. "\n"
  2905. "apt-ftparchive genera índices para archivos de Debian. Soporta\n"
  2906. "varios estilos de generación de reemplazos desde los completamente\n"
  2907. "automatizados a los funcionales para dpkg-scanpackages y dpkg-scansources.\n"
  2908. "\n"
  2909. "apt-ftparchive genera ficheros Package de un árbol de .debs. El fichero\n"
  2910. "Package contiene los contenidos de todos los campos de control de cada\n"
  2911. "paquete al igual que la suma MD5 y el tamaño del archivo. Se puede usar\n"
  2912. "un archivo de predominio para forzar el valor de Priority y\n"
  2913. "Section.\n"
  2914. "\n"
  2915. "Igualmente, apt-ftparchive genera ficheros Sources para un árbol de\n"
  2916. ".dscs. Se puede utilizar la opción --source-override para especificar un\n"
  2917. "fichero de predominio de fuente.\n"
  2918. "\n"
  2919. "Las órdenes «packages» y «sources» deben ejecutarse en la raíz del\n"
  2920. "árbol. BinaryPath debe apuntar a la base de la búsqueda\n"
  2921. "recursiva, y el archivo de predominio debe de contener banderas de\n"
  2922. "predominio. Se añade Pathprefix a los campos de nombre de fichero\n"
  2923. "si existen. A continuación se muestra un ejemplo de uso basado en los \n"
  2924. "archivos de Debian:\n"
  2925. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\\\n"
  2926. " dists/potato/main/binary-i386/Packages\n"
  2927. "\n"
  2928. "Opciones:\n"
  2929. " -h Este texto de ayuda\n"
  2930. " --md5 Generación de control MD5 \n"
  2931. " -s=? Archivo fuente de predominio\n"
  2932. " -q Silencioso\n"
  2933. " -d=? Selecciona la base de datos de caché opcional \n"
  2934. " --no-delink Habilita modo de depuración delink\n"
  2935. " --contents Generación del contenido del archivo «Control»\n"
  2936. " -c=? Lee este archivo de configuración\n"
  2937. " -o=? Establece una opción de configuración arbitraria"
  2938. #: ftparchive/apt-ftparchive.cc:822
  2939. msgid "No selections matched"
  2940. msgstr "Ninguna selección coincide"
  2941. #: ftparchive/apt-ftparchive.cc:907
  2942. #, c-format
  2943. msgid "Some files are missing in the package file group `%s'"
  2944. msgstr "Faltan algunos archivos en el grupo de archivo de paquetes «%s»"
  2945. #: ftparchive/cachedb.cc:65
  2946. #, c-format
  2947. msgid "DB was corrupted, file renamed to %s.old"
  2948. msgstr "BD dañada, se renombró el archivo a %s.old"
  2949. #: ftparchive/cachedb.cc:83
  2950. #, c-format
  2951. msgid "DB is old, attempting to upgrade %s"
  2952. msgstr "DB anticuada, intentando actualizar %s"
  2953. #: ftparchive/cachedb.cc:94
  2954. msgid ""
  2955. "DB format is invalid. If you upgraded from an older version of apt, please "
  2956. "remove and re-create the database."
  2957. msgstr ""
  2958. "El formato de la base de datos no es válido. Debe eliminar y recrear la base "
  2959. "de datos si vd. se actualizó de una versión anterior de apt."
  2960. #: ftparchive/cachedb.cc:99
  2961. #, c-format
  2962. msgid "Unable to open DB file %s: %s"
  2963. msgstr "No se pudo abrir el archivo DB %s: %s"
  2964. #: ftparchive/cachedb.cc:332
  2965. msgid "Failed to read .dsc"
  2966. msgstr "No se pudo leer el enlace %s"
  2967. #: ftparchive/cachedb.cc:365
  2968. msgid "Archive has no control record"
  2969. msgstr "No hay registro de control del archivo"
  2970. #: ftparchive/cachedb.cc:594
  2971. msgid "Unable to get a cursor"
  2972. msgstr "No se pudo obtener un cursor"
  2973. #: ftparchive/writer.cc:91
  2974. #, c-format
  2975. msgid "W: Unable to read directory %s\n"
  2976. msgstr "A: No se pudo leer directorio %s\n"
  2977. #: ftparchive/writer.cc:96
  2978. #, c-format
  2979. msgid "W: Unable to stat %s\n"
  2980. msgstr "A: No se pudo leer %s\n"
  2981. #: ftparchive/writer.cc:152
  2982. msgid "E: "
  2983. msgstr "E: "
  2984. #: ftparchive/writer.cc:154
  2985. msgid "W: "
  2986. msgstr "A: "
  2987. #: ftparchive/writer.cc:161
  2988. msgid "E: Errors apply to file "
  2989. msgstr "E: Errores aplicables al archivo "
  2990. #: ftparchive/writer.cc:179 ftparchive/writer.cc:211
  2991. #, c-format
  2992. msgid "Failed to resolve %s"
  2993. msgstr "No se pudo resolver %s"
  2994. #: ftparchive/writer.cc:192
  2995. msgid "Tree walking failed"
  2996. msgstr "Falló el recorrido por el árbol."
  2997. #: ftparchive/writer.cc:219
  2998. #, c-format
  2999. msgid "Failed to open %s"
  3000. msgstr "No se pudo abrir %s"
  3001. #: ftparchive/writer.cc:278
  3002. #, c-format
  3003. msgid " DeLink %s [%s]\n"
  3004. msgstr " DeLink %s [%s]\n"
  3005. #: ftparchive/writer.cc:286
  3006. #, c-format
  3007. msgid "Failed to readlink %s"
  3008. msgstr "No se pudo leer el enlace %s"
  3009. #: ftparchive/writer.cc:290
  3010. #, c-format
  3011. msgid "Failed to unlink %s"
  3012. msgstr "No se pudo desligar %s"
  3013. #: ftparchive/writer.cc:298
  3014. #, c-format
  3015. msgid "*** Failed to link %s to %s"
  3016. msgstr "*** No pude enlazar %s con %s"
  3017. #: ftparchive/writer.cc:308
  3018. #, c-format
  3019. msgid " DeLink limit of %sB hit.\n"
  3020. msgstr " DeLink se ha llegado al límite de %sB.\n"
  3021. #: ftparchive/writer.cc:417
  3022. msgid "Archive had no package field"
  3023. msgstr "Archivo no tiene campo de paquetes"
  3024. #: ftparchive/writer.cc:425 ftparchive/writer.cc:692
  3025. #, c-format
  3026. msgid " %s has no override entry\n"
  3027. msgstr " %s no tiene entrada de predominio\n"
  3028. #: ftparchive/writer.cc:493 ftparchive/writer.cc:848
  3029. #, c-format
  3030. msgid " %s maintainer is %s not %s\n"
  3031. msgstr " el encargado de %s es %s y no %s\n"
  3032. #: ftparchive/writer.cc:706
  3033. #, c-format
  3034. msgid " %s has no source override entry\n"
  3035. msgstr " %s no tiene una entrada fuente predominante\n"
  3036. #: ftparchive/writer.cc:710
  3037. #, c-format
  3038. msgid " %s has no binary override entry either\n"
  3039. msgstr " %s tampoco tiene una entrada binaria predominante\n"
  3040. #: ftparchive/contents.cc:351 ftparchive/contents.cc:382
  3041. msgid "realloc - Failed to allocate memory"
  3042. msgstr "realloc - No pudo reservar memoria"
  3043. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  3044. #, c-format
  3045. msgid "Unable to open %s"
  3046. msgstr "No se pudo abrir %s"
  3047. #. skip spaces
  3048. #. find end of word
  3049. #: ftparchive/override.cc:68
  3050. #, c-format
  3051. msgid "Malformed override %s line %llu (%s)"
  3052. msgstr "Predominio mal formado %s línea %llu (%s)"
  3053. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  3054. #, c-format
  3055. msgid "Failed to read the override file %s"
  3056. msgstr "No se pudo leer el fichero de predominio %s"
  3057. #: ftparchive/override.cc:166
  3058. #, c-format
  3059. msgid "Malformed override %s line %llu #1"
  3060. msgstr "Predominio mal formado %s línea %llu #1"
  3061. #: ftparchive/override.cc:178
  3062. #, c-format
  3063. msgid "Malformed override %s line %llu #2"
  3064. msgstr "Predominio mal formado %s línea %llu #2"
  3065. #: ftparchive/override.cc:191
  3066. #, c-format
  3067. msgid "Malformed override %s line %llu #3"
  3068. msgstr "Predominio mal formado %s línea %llu #3"
  3069. #: ftparchive/multicompress.cc:73
  3070. #, c-format
  3071. msgid "Unknown compression algorithm '%s'"
  3072. msgstr "Algoritmo desconocido de compresión «%s»"
  3073. #: ftparchive/multicompress.cc:103
  3074. #, c-format
  3075. msgid "Compressed output %s needs a compression set"
  3076. msgstr "Salida comprimida %s necesita una herramienta de compresión"
  3077. #: ftparchive/multicompress.cc:192
  3078. msgid "Failed to create FILE*"
  3079. msgstr "No se pudo crear FICHERO*"
  3080. #: ftparchive/multicompress.cc:195
  3081. msgid "Failed to fork"
  3082. msgstr "No se pudo bifurcar"
  3083. #: ftparchive/multicompress.cc:209
  3084. msgid "Compress child"
  3085. msgstr "Hijo compresión"
  3086. #: ftparchive/multicompress.cc:232
  3087. #, c-format
  3088. msgid "Internal error, failed to create %s"
  3089. msgstr "Error interno, no se pudo crear %s"
  3090. #: ftparchive/multicompress.cc:305
  3091. msgid "IO to subprocess/file failed"
  3092. msgstr "Falló la ES a subproceso/archivo"
  3093. #: ftparchive/multicompress.cc:343
  3094. msgid "Failed to read while computing MD5"
  3095. msgstr "No se pudo leer mientras se computaba MD5"
  3096. #: ftparchive/multicompress.cc:359
  3097. #, c-format
  3098. msgid "Problem unlinking %s"
  3099. msgstr "Se produjo un problema al desligar %s"
  3100. #: cmdline/apt-internal-solver.cc:49
  3101. msgid ""
  3102. "Usage: apt-internal-solver\n"
  3103. "\n"
  3104. "apt-internal-solver is an interface to use the current internal\n"
  3105. "like an external resolver for the APT family for debugging or alike\n"
  3106. "\n"
  3107. "Options:\n"
  3108. " -h This help text.\n"
  3109. " -q Loggable output - no progress indicator\n"
  3110. " -c=? Read this configuration file\n"
  3111. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3112. msgstr ""
  3113. "Uso: apt-extracttemplates archivo1 [archivo2 ...]\n"
  3114. "\n"
  3115. "apt-extracttemplates es una herramienta para extraer información de\n"
  3116. "configuración y plantillas de paquetes de debian.\n"
  3117. "\n"
  3118. "Opciones:\n"
  3119. " -h Este texto de ayuda.\n"
  3120. " -t Define el directorio temporal\n"
  3121. " -c=? Lee este archivo de configuración\n"
  3122. " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::"
  3123. "cache=/tmp\n"
  3124. #: cmdline/apt-sortpkgs.cc:89
  3125. msgid "Unknown package record!"
  3126. msgstr "¡Registro de paquete desconocido!"
  3127. #: cmdline/apt-sortpkgs.cc:153
  3128. msgid ""
  3129. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3130. "\n"
  3131. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  3132. "to indicate what kind of file it is.\n"
  3133. "\n"
  3134. "Options:\n"
  3135. " -h This help text\n"
  3136. " -s Use source file sorting\n"
  3137. " -c=? Read this configuration file\n"
  3138. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3139. msgstr ""
  3140. "Uso: apt-sortpkgs [opciones] archivo1 [archivo2 ...]\n"
  3141. "\n"
  3142. "apt-sortpkgs es una herramienta sencilla para ordenar archivos de paquetes.\n"
  3143. "La opción -s se utiliza para indicar qué tipo de archivo es.\n"
  3144. "\n"
  3145. "Opciones:\n"
  3146. " -h Este texto de ayuda.\n"
  3147. " -s Utiliza ordenamiento de archivos fuente\n"
  3148. " -c=? Lee este archivo de configuración\n"
  3149. " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
  3150. "cache=/tmp\n"
  3151. #~ msgid "Is stdout a terminal?"
  3152. #~ msgstr "¿Es «stdout» una terminal?"
  3153. #, fuzzy
  3154. #~ msgid "Internal error, Upgrade broke stuff"
  3155. #~ msgstr "Error Interno, AllUpgrade rompió cosas"
  3156. #~ msgid "%s not a valid DEB package."
  3157. #~ msgstr "%s no es un paquete DEB válido."
  3158. #~ msgid ""
  3159. #~ "Using CD-ROM mount point %s\n"
  3160. #~ "Mounting CD-ROM\n"
  3161. #~ msgstr ""
  3162. #~ "Usando el punto de montaje del CD-ROM %s\n"
  3163. #~ "Montando el CD-ROM\n"
  3164. #~ msgid ""
  3165. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3166. #~ "seems to be corrupt."
  3167. #~ msgstr ""
  3168. #~ "No se pudo parchear %s con mmap y con el modo de uso de la operación de "
  3169. #~ "ficheros - el paquete parece dañado."
  3170. #~ msgid ""
  3171. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3172. #~ "seems to be corrupt."
  3173. #~ msgstr ""
  3174. #~ "No se pudo parchear %s con mmap (pero no hay un fallo mmap específico) - "
  3175. #~ "el parche parece dañado."
  3176. #~ msgid "Note, selecting '%s' for task '%s'\n"
  3177. #~ msgstr "Nota, seleccionando «%s» para la tarea «%s»\n"
  3178. #~ msgid "Note, selecting '%s' for regex '%s'\n"
  3179. #~ msgstr "Nota, seleccionando «%s» para la expresión regular «%s»\n"
  3180. #~ msgid "Package %s is a virtual package provided by:\n"
  3181. #~ msgstr "El paquete %s es un paquete virtual provisto por:\n"
  3182. #~ msgid " [Not candidate version]"
  3183. #~ msgstr " [No es la versión candidata]"
  3184. #~ msgid "You should explicitly select one to install."
  3185. #~ msgstr "Necesita seleccionar explícitamente uno para instalar."
  3186. #~ msgid ""
  3187. #~ "Package %s is not available, but is referred to by another package.\n"
  3188. #~ "This may mean that the package is missing, has been obsoleted, or\n"
  3189. #~ "is only available from another source\n"
  3190. #~ msgstr ""
  3191. #~ "El paquete %s no está disponible, pero algún otro paquete hace "
  3192. #~ "referencia\n"
  3193. #~ "a él. Esto puede significar que el paquete falta, está obsoleto o sólo "
  3194. #~ "se\n"
  3195. #~ "encuentra disponible desde alguna otra fuente\n"
  3196. #~ msgid "However the following packages replace it:"
  3197. #~ msgstr "Sin embargo, los siguientes paquetes lo reemplazan:"
  3198. #~ msgid "Package '%s' has no installation candidate"
  3199. #~ msgstr "El paquete «%s» no tiene un candidato para la instalación"
  3200. #~ msgid "Virtual packages like '%s' can't be removed\n"
  3201. #~ msgstr "No pueden eliminarse los paquetes virtuales como «%s»\n"
  3202. #~ msgid "Note, selecting '%s' instead of '%s'\n"
  3203. #~ msgstr "Nota, seleccionando «%s» en lugar de «%s»\n"
  3204. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3205. #~ msgstr ""
  3206. #~ "Ignorar la distribución objetivo no disponible «%s» del paquete «%s»"
  3207. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3208. #~ msgstr ""
  3209. #~ "Este no es un archivo DEB válido, falta el miembro «%s», «%s» o «%s»"
  3210. #~ msgid "MD5Sum mismatch"
  3211. #~ msgstr "La suma MD5 difiere"
  3212. #~ msgid ""
  3213. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3214. #~ "need to manually fix this package."
  3215. #~ msgstr ""
  3216. #~ "No se pudo localizar un archivo para el paquete %s. Esto puede significar "
  3217. #~ "que necesita arreglar manualmente este paquete."
  3218. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3219. #~ msgstr ""
  3220. #~ "No pudo escribirse el registro, falló la llamada a openpty() (¿está "
  3221. #~ "montado «/dev/pts?)\n"
  3222. #~ msgid "Skipping nonexistent file %s"
  3223. #~ msgstr "Omitiendo el fichero inexistente %s"
  3224. #~ msgid "Failed to remove %s"
  3225. #~ msgstr "No pude borrar %s"
  3226. #~ msgid "Unable to create %s"
  3227. #~ msgstr "No pude crear %s"
  3228. #~ msgid "Failed to stat %sinfo"
  3229. #~ msgstr "No pude leer %sinfo"
  3230. #~ msgid "The info and temp directories need to be on the same filesystem"
  3231. #~ msgstr ""
  3232. #~ "Los directorios info y temp deben de estar en el mismo sistema de archivos"
  3233. #~ msgid "Failed to change to the admin dir %sinfo"
  3234. #~ msgstr "No pude cambiarme al directorio de administración %sinfo"
  3235. #~ msgid "Internal error getting a package name"
  3236. #~ msgstr "Error interno obteniendo un Nombre de Paquete"
  3237. #~ msgid "Reading file listing"
  3238. #~ msgstr "Leyendo Listado de Archivos"
  3239. #~ msgid ""
  3240. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3241. #~ "then make it empty and immediately re-install the same version of the "
  3242. #~ "package!"
  3243. #~ msgstr ""
  3244. #~ "No pude abrir el archivo de lista «%sinfo/%s». ¡Si no puede restablecer "
  3245. #~ "este archivo entonces cree uno vacío e inmediatamente reinstale la misma "
  3246. #~ "versión del paquete!"
  3247. #~ msgid "Failed reading the list file %sinfo/%s"
  3248. #~ msgstr "No pude leer el archivo de lista %sinfo/%s"
  3249. #~ msgid "Internal error getting a node"
  3250. #~ msgstr "Error interno obteniendo un nodo"
  3251. #~ msgid "Failed to open the diversions file %sdiversions"
  3252. #~ msgstr "No pude abrir el archivo de desviación %sdiversions"
  3253. #~ msgid "The diversion file is corrupted"
  3254. #~ msgstr "El archive de desviaciones está dañado"
  3255. #~ msgid "Invalid line in the diversion file: %s"
  3256. #~ msgstr "Linea inválida en el archivo de desviación: %s"
  3257. #~ msgid "Internal error adding a diversion"
  3258. #~ msgstr "Error interno agregando una desviación"
  3259. #~ msgid "The pkg cache must be initialized first"
  3260. #~ msgstr "El caché del paquete debe de inicializarse primero"
  3261. #~ msgid "Failed to find a Package: header, offset %lu"
  3262. #~ msgstr "No pude encontrar un paquete: Cabecera, desplazo %lu"
  3263. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3264. #~ msgstr "Mala sección del ConfFile en el archivo de estado. Desplazo %lu"
  3265. #~ msgid "Error parsing MD5. Offset %lu"
  3266. #~ msgstr "Error leyendo Md5. Desplazo %lu"
  3267. #~ msgid "Couldn't change to %s"
  3268. #~ msgstr "No pude cambiar a %s"
  3269. #~ msgid "Failed to locate a valid control file"
  3270. #~ msgstr "No pude localizar un archivo de control válido"
  3271. #~ msgid "Couldn't open pipe for %s"
  3272. #~ msgstr "No pude abrir una tubería para %s"
  3273. #~ msgid "Read error from %s process"
  3274. #~ msgstr "Error de lectura de %s procesos"
  3275. #~ msgid "Got a single header line over %u chars"
  3276. #~ msgstr "Obtuve una sola línea de cabecera arriba de %u caracteres"
  3277. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3278. #~ msgstr "Nota: Dpkg realiza esto de forma automática y a propósito."
  3279. #~ msgid "Malformed override %s line %lu #1"
  3280. #~ msgstr "Predominio mal formado %s línea %lu #1"
  3281. #~ msgid "Malformed override %s line %lu #2"
  3282. #~ msgstr "Predominio mal formado %s línea %lu #2"
  3283. #~ msgid "Malformed override %s line %lu #3"
  3284. #~ msgstr "Predominio mal formado %s línea %lu #3"
  3285. #~ msgid "decompressor"
  3286. #~ msgstr "decompresor"
  3287. #~ msgid "read, still have %lu to read but none left"
  3288. #~ msgstr "leídos, todavía debía leer %lu pero no queda nada"
  3289. #~ msgid "write, still have %lu to write but couldn't"
  3290. #~ msgstr "escritos, todavía tenía que escribir %lu pero no pude hacerlo"
  3291. #~ msgid ""
  3292. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3293. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3294. #~ msgstr ""
  3295. #~ "No se pudo realizar la configuración inmediata sobre el paquete ya "
  3296. #~ "desempaquetado «%s». Consulte la página de manual con «man 5 apt.conf» "
  3297. #~ "bajo «APT::Immediate-Configure» para más información."
  3298. #~ msgid "Error occurred while processing %s (NewPackage)"
  3299. #~ msgstr "Se produjo un error mientras se procesaba %s (NewPackage)"
  3300. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3301. #~ msgstr "Se produjo un error mientras se procesaba %s (UsePackage1)"
  3302. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3303. #~ msgstr "Se produjo un error mientras se procesaba %s (NewFileDesc1)"
  3304. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3305. #~ msgstr "Se produjo un error mientras se procesaba %s (UsePackage2)"
  3306. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3307. #~ msgstr "Se produjo un error mientras se procesaba %s (NewFileVer1)"
  3308. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3309. #~ msgstr "Se produjo un error mientras se procesaba %s (NewVersion%d)"
  3310. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3311. #~ msgstr "Se produjo un error mientras se procesaba %s (UsePackage3)"
  3312. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3313. #~ msgstr "Se produjo un error mientras se procesaba %s (NewFileDesc2)"
  3314. #~ msgid "Error occurred while processing %s (FindPkg)"
  3315. #~ msgstr "Se produjo un error mientras se procesaba %s (FindPkg)"
  3316. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3317. #~ msgstr "Se produjo un error mientras se procesaba %s (CollectFileProvides)"
  3318. #~ msgid "Internal error, could not locate member"
  3319. #~ msgstr "Error interno, no pude localizar el miembro"
  3320. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3321. #~ msgstr ""
  3322. #~ "Error interno, el grupo «%s» no tiene ningún pseudo-paquete instalable"
  3323. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3324. #~ msgstr ""
  3325. #~ "El archivo «Release» ha expirado, ignorando %s (inválido desde hace %s)"
  3326. #~ msgid "You must give exactly one pattern"
  3327. #~ msgstr "Debe dar exactamente un patrón"
  3328. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3329. #~ msgstr ""
  3330. #~ "E: Lista de argumentos de Acquire::gpgv::Options demasiado larga. "
  3331. #~ "Terminando."
  3332. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3333. #~ msgstr "Se produjo un error mientras se procesaba %s (NewVersion2)"
  3334. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3335. #~ msgstr "Línea %u mal formada en la lista de fuentes %s (id del fabricante)"
  3336. #~ msgid "Couldn't access keyring: '%s'"
  3337. #~ msgstr "No se pudo acceder al anillo de claves: «%s»"
  3338. #~ msgid "Could not patch file"
  3339. #~ msgstr "No pude parchear el fichero"
  3340. #~ msgid " %4i %s\n"
  3341. #~ msgstr " %4i %s\n"
  3342. #~ msgid "%4i %s\n"
  3343. #~ msgstr "%4i %s\n"
  3344. #~ msgid "Processing triggers for %s"
  3345. #~ msgstr "Procesando disparadores para %s"
  3346. #~ msgid "Dynamic MMap ran out of room"
  3347. #~ msgstr "La función «Dynamic MMap» se quedó sin espacio"
  3348. #~ msgid ""
  3349. #~ "Since you only requested a single operation it is extremely likely that\n"
  3350. #~ "the package is simply not installable and a bug report against\n"
  3351. #~ "that package should be filed."
  3352. #~ msgstr ""
  3353. #~ "Como sólo solicito una única operación, es extremadamente posible que el\n"
  3354. #~ "paquete simplemente no sea instalable y debería de rellenar un informe "
  3355. #~ "de\n"
  3356. #~ "error contra ese paquete."
  3357. #~ msgid "Line %d too long (max %lu)"
  3358. #~ msgstr "Línea %d demasiado larga (máx %lu)"
  3359. #~ msgid "Line %d too long (max %d)"
  3360. #~ msgstr "Línea %d demasiado larga (máx %d)"
  3361. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  3362. #~ msgstr "Se produjo un error mientras se procesaba %s (NewFileDesc1)"
  3363. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  3364. #~ msgstr "Se produjo un error mientras se procesaba %s (NewFileDesc2)"
  3365. #~ msgid "Stored label: %s \n"
  3366. #~ msgstr "Etiqueta guardada: %s \n"
  3367. #~ msgid ""
  3368. #~ "Found %i package indexes, %i source indexes, %i translation indexes and "
  3369. #~ "%i signatures\n"
  3370. #~ msgstr ""
  3371. #~ "Se encontraron %i índices de paquetes, %i índices de fuentes, %i índices "
  3372. #~ "de traducción y %i firmas\n"
  3373. #~ msgid "openpty failed\n"
  3374. #~ msgstr "Falló openpty\n"
  3375. #~ msgid "File date has changed %s"
  3376. #~ msgstr "Cambió la fecha del archivo %s"
  3377. #~ msgid "Reading file list"
  3378. #~ msgstr "Leyendo Lista de Archivos"
  3379. #~ msgid "Could not execute "
  3380. #~ msgstr "No se pudo ejecutar "
  3381. #~ msgid "Preparing for remove with config %s"
  3382. #~ msgstr "Preparándose para eliminar con su configuración %s"
  3383. #~ msgid "Removed with config %s"
  3384. #~ msgstr "Eliminado con su configuración %s"
  3385. #~ msgid "Unknown vendor ID '%s' in line %u of source list %s"
  3386. #~ msgstr ""
  3387. #~ "ID del fabricante «%s» desconocido en la línea %u de la lista de\n"
  3388. #~ "fuentes %s"
  3389. #~ msgid ""
  3390. #~ "Some broken packages were found while trying to process build-"
  3391. #~ "dependencies.\n"
  3392. #~ "You might want to run 'apt-get -f install' to correct these."
  3393. #~ msgstr ""
  3394. #~ "Se encontraron algunos paquetes rotos mientras se intentaba procesar\n"
  3395. #~ "las dependencies de construcción. Tal vez quiera ejecutar \n"
  3396. #~ "'apt-get -f install' para corregirlos."
  3397. #~ msgid ""
  3398. #~ "Usage: apt-cache [options] command\n"
  3399. #~ " apt-cache [options] add file1 [file1 ...]\n"
  3400. #~ " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  3401. #~ " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  3402. #~ "\n"
  3403. #~ "apt-cache is a low-level tool used to manipulate APT's binary\n"
  3404. #~ "cache files, and query information from them\n"
  3405. #~ "\n"
  3406. #~ "Commands:\n"
  3407. #~ " add - Add an package file to the source cache\n"
  3408. #~ " gencaches - Build both the package and source cache\n"
  3409. #~ " showpkg - Show some general information for a single package\n"
  3410. #~ " showsrc - Show source records\n"
  3411. #~ " stats - Show some basic statistics\n"
  3412. #~ " dump - Show the entire file in a terse form\n"
  3413. #~ " dumpavail - Print an available file to stdout\n"
  3414. #~ " unmet - Show unmet dependencies\n"
  3415. #~ " search - Search the package list for a regex pattern\n"
  3416. #~ " show - Show a readable record for the package\n"
  3417. #~ " depends - Show raw dependency information for a package\n"
  3418. #~ " pkgnames - List the names of all packages\n"
  3419. #~ " dotty - Generate package graphs for GraphVis\n"
  3420. #~ " policy - Show policy settings\n"
  3421. #~ "\n"
  3422. #~ "Options:\n"
  3423. #~ " -h This help text.\n"
  3424. #~ " -p=? The package cache.\n"
  3425. #~ " -s=? The source cache.\n"
  3426. #~ " -q Disable progress indicator.\n"
  3427. #~ " -i Show only important deps for the unmet command.\n"
  3428. #~ " -c=? Read this configuration file\n"
  3429. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3430. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3431. #~ msgstr ""
  3432. #~ "Uso: apt-cache [opciones] orden\n"
  3433. #~ " apt-cache [opciones] add archivo1 [archivo1 ...]\n"
  3434. #~ " apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
  3435. #~ "\n"
  3436. #~ "apt-cache es una herramienta usada para manipular los archivos binarios\n"
  3437. #~ "de caché de APT, y consultar información de éstos.\n"
  3438. #~ "\n"
  3439. #~ "Comandos:\n"
  3440. #~ " add - Añade un archivo de paquete a la caché fuente\n"
  3441. #~ " gencaches - Crea el caché de ambos, del paquete y del fuente\n"
  3442. #~ " showpkg - Muestra alguna información general para un solo paquete\n"
  3443. #~ " showsrc - Muestra la información de las fuentes\n"
  3444. #~ " stats - Muestra algunas estadísticas básicas\n"
  3445. #~ " dump - Muestra el archivo entero en formato detallado\n"
  3446. #~ " dumpavail - Imprime un archivo de paquetes disponibles a salida\n"
  3447. #~ "estándar\n"
  3448. #~ " unmet - Muestra dependencias incumplidas\n"
  3449. #~ " search - Busca en la lista de paquetes por un patrón de expresión\n"
  3450. #~ "regular\n"
  3451. #~ " show - Muestra un registro del paquete\n"
  3452. #~ " depends - Muestra información de dependencias en bruto para el\n"
  3453. #~ "paquete\n"
  3454. #~ " pkgnames - Lista los nombres de todos los paquetes\n"
  3455. #~ " dotty - Genera gráficas del paquete para GraphVis\n"
  3456. #~ " policy - Muestra los parámetros de las normas\n"
  3457. #~ "\n"
  3458. #~ "Opciones:\n"
  3459. #~ " -h Este texto de ayuda.\n"
  3460. #~ " -p=? El caché del paquete.\n"
  3461. #~ " -s=? El caché de la fuente.\n"
  3462. #~ " -q Deshabilita el indicador de progreso.\n"
  3463. #~ " -i Muestra sólo dependencias importantes para el comando de\n"
  3464. #~ "incumplido.\n"
  3465. #~ " -c=? Lee este archivo de configuración\n"
  3466. #~ " -o=? Establece una opción de configuración arbitraria, p. ej. -o dir::\n"
  3467. #~ "cache=/tmp\n"
  3468. #~ "Consulte las páginas del manual apt-cache(8) y apt.conf(5) para más\n"
  3469. #~ "información.\n"
  3470. #~ msgid ""
  3471. #~ "%s dependency on %s cannot be satisfied because the package %s cannot be "
  3472. #~ "found"
  3473. #~ msgstr ""
  3474. #~ "La dependencia %s en %s no puede satisfacerse porque el paquete %s\n"
  3475. #~ "no se puede encontrar"
  3476. #~ msgid "The package cache was build for a different architecture"
  3477. #~ msgstr "La caché de archivos fue creado para una arquitectura diferente"
  3478. #~ msgid "Sorry, you don't have enough free space in %s to hold all the .debs."
  3479. #~ msgstr ""
  3480. #~ "Lo siento, no tiene suficiente espacio libre en %s para colocar todos "
  3481. #~ "los .debs."
  3482. #~ msgid "Sorry, but the following packages have unmet dependencies:"
  3483. #~ msgstr ""
  3484. #~ "Disculpe, pero los siguientes paquetes tienen dependencias incumplidas:"
  3485. #~ msgid "Need to get %sB/%sB of archives. "
  3486. #~ msgstr "Se necesitan descargar %sB/%sB de ficheros. "
  3487. #~ msgid "Need to get %sB of archives. "
  3488. #~ msgstr "Necesito descargar %sB de ficheros. "
  3489. #~ msgid "After unpacking %sB will be used.\n"
  3490. #~ msgstr "Se usarán %sB después de desempaquetar.\n"
  3491. #~ msgid "After unpacking %sB will be freed.\n"
  3492. #~ msgstr "Se liberarán %sB después de desempaquetar.\n"
  3493. #~ msgid ""
  3494. #~ "Sorry, re-installation of %s is not possible, it cannot be downloaded.\n"
  3495. #~ msgstr ""
  3496. #~ "Lo siento, no es posible la reinstalación del paquete %s, no puede ser "
  3497. #~ "descargado.\n"
  3498. #~ msgid "Sorry, %s is already the newest version.\n"
  3499. #~ msgstr "Lo siento, %s ya está en su versión más reciente.\n"
  3500. #~ msgid "Sorry, broken packages"
  3501. #~ msgstr "Lo siento, paquetes rotos"
  3502. #~ msgid "Sorry, you don't have enough free space in %s"
  3503. #~ msgstr "Lo siento, no tiene suficiente espacio libre en %s"
  3504. #~ msgid "Sorry, you must put some 'source' URIs in your sources.list"
  3505. #~ msgstr "Lo siento, debe poner algunos URIs 'fuente' en su sources.list"
  3506. #~ msgid "<- '"
  3507. #~ msgstr "<- '"
  3508. #~ msgid "'"
  3509. #~ msgstr "'"
  3510. #~ msgid "-> '"
  3511. #~ msgstr "-> '"
  3512. #~ msgid "Followed conf file from "
  3513. #~ msgstr "Archivo de configuración seguido por"
  3514. #~ msgid " to "
  3515. #~ msgstr " a "
  3516. #~ msgid "Extract "
  3517. #~ msgstr "Extraer"
  3518. #~ msgid "Aborted, backing out"
  3519. #~ msgstr "Abortado, retractándome"
  3520. #~ msgid "De-replaced "
  3521. #~ msgstr "De-reemplazado"
  3522. #~ msgid " from "
  3523. #~ msgstr " de "
  3524. #~ msgid "Backing out "
  3525. #~ msgstr "Retractando "
  3526. #~ msgid " [new node]"
  3527. #~ msgstr " [nodo nuevo] "
  3528. #~ msgid "Replaced file "
  3529. #~ msgstr "Fichero reemplazado"
  3530. #~ msgid "Unimplemented"
  3531. #~ msgstr "No está implementado"
  3532. #~ msgid "Generating cache"
  3533. #~ msgstr "Generando el caché"
  3534. #~ msgid "Problem with SelectFile"
  3535. #~ msgstr "Se produjo un problema con «SelectFile»"
  3536. #~ msgid "Problem with MergeList"
  3537. #~ msgstr "Se produjo un problema con «MergeList»"
  3538. #~ msgid "Regex compilation error"
  3539. #~ msgstr "Error de compilación de Regex"
  3540. #~ msgid "Write to stdout failed"
  3541. #~ msgstr "No pude escribir a la salida estándar"
  3542. #~ msgid "Generate must be enabled for this function"
  3543. #~ msgstr "Generate debe de estar habilitado para esta función"
  3544. #~ msgid "Failed to stat %s%s"
  3545. #~ msgstr "No pude leer %s%s"
  3546. #~ msgid "Failed to rename %s.new to %s"
  3547. #~ msgstr "No se pudo renombrar %s.new a %s"
  3548. #~ msgid "I found (binary):"
  3549. #~ msgstr "Encontré (binario):"
  3550. #~ msgid "I found (source):"
  3551. #~ msgstr "Encontré (fuente):"
  3552. #~ msgid "Found "
  3553. #~ msgstr "Encontré "
  3554. #~ msgid " source indexes."
  3555. #~ msgstr " índice de fuentes."
  3556. #~ msgid " '"
  3557. #~ msgstr " »"
  3558. #~ msgid ""
  3559. #~ "Usage: apt-cdrom [options] command\n"
  3560. #~ "\n"
  3561. #~ "apt-cdrom is a tool to add CDROM's to APT's source list. The\n"
  3562. #~ "CDROM mount point and device information is taken from apt.conf\n"
  3563. #~ "and /etc/fstab.\n"
  3564. #~ "\n"
  3565. #~ "Commands:\n"
  3566. #~ " add - Add a CDROM\n"
  3567. #~ " ident - Report the identity of a CDROM\n"
  3568. #~ "\n"
  3569. #~ "Options:\n"
  3570. #~ " -h This help text\n"
  3571. #~ " -d CD-ROM mount point\n"
  3572. #~ " -r Rename a recognized CD-ROM\n"
  3573. #~ " -m No mounting\n"
  3574. #~ " -f Fast mode, don't check package files\n"
  3575. #~ " -a Thorough scan mode\n"
  3576. #~ " -c=? Read this configuration file\n"
  3577. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3578. #~ "See fstab(5)\n"
  3579. #~ msgstr ""
  3580. #~ "Uso: apt-cdrom [opciones] orden\n"
  3581. #~ "\n"
  3582. #~ "apt-cdrom es una herramienta para agregar CDROM para las fuentes de\n"
  3583. #~ "APT. El punto de montaje del CDROM y la información del dispositivo\n"
  3584. #~ "se extrae de apt.conf y /etc/fstab.\n"
  3585. #~ "\n"
  3586. #~ "Comandos:\n"
  3587. #~ " add - Agrega un CDROM\n"
  3588. #~ " ident - Reporta la identificación del CDROM\n"
  3589. #~ "\n"
  3590. #~ "Opciones:\n"
  3591. #~ " -h Este texto de ayuda\n"
  3592. #~ " -d Punto de montaje del CD-ROM\n"
  3593. #~ " -r Renombra un CD-ROM reconocido\n"
  3594. #~ " -m No monta\n"
  3595. #~ " -f Modo rápido, no comprueba archivos de paquetes\n"
  3596. #~ " -a A través de modo de búsqueda\n"
  3597. #~ " -c=? Lee esto archivo de configuración\n"
  3598. #~ " -o=? Establece una opción de configuración arbitraria, ej -o dir::\n"
  3599. #~ "cache=/tmp\n"
  3600. #~ "Ver fstab(5)\n"
  3601. #~ msgid "Internal error, non-zero counts"
  3602. #~ msgstr "Error interno, cuenta diferentes de cero"
  3603. #~ msgid "Couldn't wait for subprocess"
  3604. #~ msgstr "No pude esperar al subproceso"
  3605. #~ msgid "....\"Have you mooed today?\"..."
  3606. #~ msgstr "....\"¿Has mugido hoy?\"..."
  3607. #~ msgid " New "
  3608. #~ msgstr " Nuevo "
  3609. #~ msgid "B "
  3610. #~ msgstr "B "
  3611. #~ msgid " files "
  3612. #~ msgstr " archivos "
  3613. #~ msgid " pkgs in "
  3614. #~ msgstr " paquetes en "
  3615. #~ msgid ""
  3616. #~ "Usage: apt-ftparchive [options] command\n"
  3617. #~ "Commands: packges binarypath [overridefile [pathprefix]]\n"
  3618. #~ " sources srcpath [overridefile [pathprefix]]\n"
  3619. #~ " contents path\n"
  3620. #~ " generate config [groups]\n"
  3621. #~ " clean config\n"
  3622. #~ msgstr ""
  3623. #~ "Uso: apt-ftparchive [opciones] orden\n"
  3624. #~ "Comandos: packges trayectoria-binaria [archivo-sobrepaso\n"
  3625. #~ " [prefijo-trayectoria]]\n"
  3626. #~ " sources trayectoria-fuente [archivo-sobrepaso \n"
  3627. #~ " [prefijo-trayectoria]]\n"
  3628. #~ " contents trayectoria\n"
  3629. #~ " generate config [grupos]\n"
  3630. #~ " clean config\n"
  3631. #~ msgid ""
  3632. #~ "Options:\n"
  3633. #~ " -h This help text\n"
  3634. #~ " --md5 Control MD5 generation\n"
  3635. #~ " -s=? Source override file\n"
  3636. #~ " -q Quiet\n"
  3637. #~ " -d=? Select the optional caching database\n"
  3638. #~ " --no-delink Enable delinking debug mode\n"
  3639. #~ " --contents Control contents file generation\n"
  3640. #~ " -c=? Read this configuration file\n"
  3641. #~ " -o=? Set an arbitrary configuration option\n"
  3642. #~ msgstr ""
  3643. #~ "Opciones:\n"
  3644. #~ " -h Este texto de ayuda\n"
  3645. #~ " --md5 Generación de control MD5 \n"
  3646. #~ " -s=? Archivo fuente de predominio\n"
  3647. #~ " -q Callado\n"
  3648. #~ " -d=? Selecciona la base de datos opcional de cache\n"
  3649. #~ " --no-delink Habilita modo de depuración delink\n"
  3650. #~ " --contents Generación del contenido del archivo 'Control'\n"
  3651. #~ " -c=? Lee este archivo de configuración\n"
  3652. #~ " -o=? Establece una opción de configuración arbitraria\n"
  3653. #~ msgid "Done Packages, Starting contents."
  3654. #~ msgstr "Paquetes terminados, empezando contenidos."
  3655. #~ msgid "Hit contents update byte limit"
  3656. #~ msgstr "Se encontró el límite de bytes de actualización de contenidos"
  3657. #~ msgid "Done. "
  3658. #~ msgstr "Listo."
  3659. #~ msgid "B in "
  3660. #~ msgstr "B en "
  3661. #~ msgid " archives. Took "
  3662. #~ msgstr " archivos. Tomo "
  3663. #~ msgid "B hit."
  3664. #~ msgstr "B Eco."
  3665. #~ msgid " not "
  3666. #~ msgstr " no "
  3667. #~ msgid "DSC file '%s' is too large!"
  3668. #~ msgstr "¡El archivo DSC «%s» es demasiado grande!"
  3669. #~ msgid "Could not find a record in the DSC '%s'"
  3670. #~ msgstr "No se pudo encontrar un registro en el archive DSC «%s»"
  3671. #~ msgid "Error parsing file record"
  3672. #~ msgstr "Error leyendo archivo de registros"
  3673. #~ msgid "Failed too stat %s"
  3674. #~ msgstr "No pude leer %s"
  3675. #~ msgid "Errors apply to file '%s'"
  3676. #~ msgstr "Los errores aplican al fichero «%s»"
  3677. #~ msgid "Unkonwn address family %u (AF_*)"
  3678. #~ msgstr "Dirección de familia %u desconocida (AF_*)"
  3679. #~ msgid "Failed to mount the cdrom."
  3680. #~ msgstr "No pude montar el cdrom"
  3681. #~ msgid ""
  3682. #~ "apt-ftparchive generates index files for Debian archives. It supports\n"
  3683. #~ "many styles of generation from fully automated to functional "
  3684. #~ "replacements\n"
  3685. #~ "for dpkg-scanpackages and dpkg-scansources\n"
  3686. #~ "\n"
  3687. #~ "apt-ftparchive generates Package files from a tree of .debs. The\n"
  3688. #~ "Package file contains the contents of all the control fields from\n"
  3689. #~ "each package as well as the MD5 hash and filesize. An override file\n"
  3690. #~ "is supported to force the value of Priority and Section.\n"
  3691. #~ "\n"
  3692. #~ "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  3693. #~ "The --source-override option can be used to specify a src override file\n"
  3694. #~ "\n"
  3695. #~ "The 'packages' and 'sources' command should be run in the root of the\n"
  3696. #~ "tree. BinaryPath should point to the base of the recursive search and \n"
  3697. #~ "override file should contian the override flags. Pathprefix is\n"
  3698. #~ "appended to the filename fields if present. Example usage from the \n"
  3699. #~ "debian archive:\n"
  3700. #~ " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  3701. #~ " dists/potato/main/binary-i386/Packages\n"
  3702. #~ msgstr ""
  3703. #~ "apt-ftparchive genera archivos de índice para archivos de Debian.\n"
  3704. #~ "Soporta varios estilos de generación de reemplazos completamente\n"
  3705. #~ "automatizados a funcionales para dpkg-scanpackages y dpkg-scansources\n"
  3706. #~ "\n"
  3707. #~ "apt-ftparchive genera archivos Package de un árbol de .debs. El Archivo\n"
  3708. #~ "Package contiene los contenidos de todos los campos de control de cada\n"
  3709. #~ "paquete al igual que el enlace MD5 y el tamaño del archivo. Se\n"
  3710. #~ "soporta el uso de un archivo de predominio para forzar el valor de\n"
  3711. #~ "Priority y Section.\n"
  3712. #~ "\n"
  3713. #~ "Igualmente, apt-ftparchive genera archivos de Fuentes para el árbol de\n"
  3714. #~ ".dscs. Puede usarse la opción --source-override para especificar un\n"
  3715. #~ "fichero de predominio fuente.\n"
  3716. #~ "\n"
  3717. #~ "Las órdenes 'packages' y 'sources' se deben de ejecutar en la raíz del\n"
  3718. #~ "árbol. BinaryPath debe de apuntar a la base del archivo de búsqueda\n"
  3719. #~ "recursiva, y el archivo de predominio debe contener banderas de\n"
  3720. #~ "predominio. Pathprefix se agregado a los campos del nombre del archivo\n"
  3721. #~ "si están presentes. Ejemplo de uso tomado de los archivos de Debian:\n"
  3722. #~ " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\\\n"
  3723. #~ " dists/potato/main/binary-i386/Packages\n"
  3724. #~ msgid "W: Unable to read directory "
  3725. #~ msgstr "A: No se pudo leer directorio "
  3726. #~ msgid "W: Unable to stat "
  3727. #~ msgstr "A: No se pudo leer "
  3728. #~ msgid "E: Errors apply to file '"
  3729. #~ msgstr "E: Errores aplicables al archivo «"
  3730. #~ msgid " DeLink limit of "
  3731. #~ msgstr " DeLink límite de"
  3732. #~ msgid " has no override entry"
  3733. #~ msgstr " no tiene entrada de predominio"
  3734. #~ msgid " maintainer is "
  3735. #~ msgstr " el encargado es "