es.po 108 KB

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