es.po 151 KB

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