es.po 137 KB

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