es.po 104 KB

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