es.po 124 KB

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