es.po 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356
  1. # dpkg/scripts po translation to Spanish
  2. # Copyright (C) 2010 -2012 Software in the Public Interest
  3. # This file is distributed under the same license as the dpkg package.
  4. #
  5. # Changes:
  6. # - Initial translation
  7. # Omar Campagne Polaino <ocampagne@gmail.com>, 2010, 2011, 2012.
  8. #
  9. # - Updates
  10. # Javier Fernández-Sanguino <jfs@debian.org> 2014
  11. #
  12. # Traductores, si no conocen el formato PO, merece la pena leer la
  13. # documentación de gettext, especialmente las secciones dedicadas a este
  14. # formato, por ejemplo ejecutando:
  15. # info -n '(gettext)PO Files'
  16. # info -n '(gettext)Header Entry'
  17. #
  18. # Equipo de traducción al español, por favor lean antes de traducir
  19. # los siguientes documentos:
  20. #
  21. # - El proyecto de traducción de Debian al español
  22. # https://www.debian.org/intl/spanish/
  23. # especialmente las notas y normas de traducción en
  24. # https://www.debian.org/intl/spanish/notas
  25. #
  26. # - La guía de traducción de po's de debconf:
  27. # /usr/share/doc/po-debconf/README-trans
  28. # o https://www.debian.org/intl/l10n/po-debconf/README-trans
  29. #
  30. msgid ""
  31. msgstr ""
  32. "Project-Id-Version: dpkg-dev 1.16.8\n"
  33. "Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
  34. "POT-Creation-Date: 2015-12-25 13:28+0100\n"
  35. "PO-Revision-Date: 2014-12-02 20:24+0100\n"
  36. "Last-Translator: Omar Campagne <ocampagne@gmail.com>\n"
  37. "Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
  38. "Language: es\n"
  39. "MIME-Version: 1.0\n"
  40. "Content-Type: text/plain; charset=UTF-8\n"
  41. "Content-Transfer-Encoding: 8bit\n"
  42. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  43. "X-Generator: Virtaal 0.7.1\n"
  44. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  45. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  46. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genchanges.pl
  47. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  48. #: scripts/dpkg-mergechangelogs.pl scripts/dpkg-name.pl
  49. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-scanpackages.pl
  50. #: scripts/dpkg-scansources.pl scripts/dpkg-shlibdeps.pl scripts/dpkg-source.pl
  51. #: scripts/dpkg-vendor.pl scripts/changelog/debian.pl
  52. #, perl-format
  53. msgid "Debian %s version %s.\n"
  54. msgstr "Debian %s versión %s.\n"
  55. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  56. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  57. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  58. #: scripts/dpkg-gensymbols.pl scripts/dpkg-parsechangelog.pl
  59. #: scripts/dpkg-shlibdeps.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  60. #: scripts/changelog/debian.pl
  61. msgid ""
  62. "\n"
  63. "This is free software; see the GNU General Public License version 2 or\n"
  64. "later for copying conditions. There is NO warranty.\n"
  65. msgstr ""
  66. "\n"
  67. "Esto es software libre; vea la versión 2 o posterior de la Licencia Pública\n"
  68. "General GNU para condiciones de copia. NO hay ninguna garantía.\n"
  69. #: scripts/dpkg-architecture.pl scripts/dpkg-vendor.pl
  70. #, perl-format
  71. msgid "Usage: %s [<option>...] [<command>]"
  72. msgstr "Uso: %s [<opción>...] [<orden>]"
  73. #: scripts/dpkg-architecture.pl
  74. msgid ""
  75. "Commands:\n"
  76. " -l, --list list variables (default).\n"
  77. " -L, --list-known list valid architectures (matching some "
  78. "criteria).\n"
  79. " -e, --equal <arch> compare with host Debian architecture.\n"
  80. " -i, --is <arch-wildcard> match against host Debian architecture.\n"
  81. " -q, --query <variable> prints only the value of <variable>.\n"
  82. " -s, --print-set print command to set environment variables.\n"
  83. " -u, --print-unset print command to unset environment variables.\n"
  84. " -c, --command <command> set environment and run the command in it.\n"
  85. " -?, --help show this help message.\n"
  86. " --version show the version."
  87. msgstr ""
  88. "Órdenes:\n"
  89. " -l, --list Muestra las variables (por omisión).\n"
  90. " -L, --list-known Muestra las arquitecturas válidas (que cumplen un "
  91. "criterio).\n"
  92. " -e, --equal <arq> Compara con la arquitectura de Debian actual.\n"
  93. " -i, --is <arq-comodín> Comprueba si la arquitectura de Debian actual "
  94. "coincide con <arq-comodín>.\n"
  95. " -q, --query <variable> Sólo muestra el valor de <variable>.\n"
  96. " -s, --print-set Muestra la orden para definir variables de "
  97. "entorno.\n"
  98. " -u, --print-unset Muestra la orden para desactivar variables de "
  99. "entorno.\n"
  100. " -c, --command <orden> Define el entorno y ejecuta la orden en él.\n"
  101. " -?, --help Muestra este mensaje de ayuda.\n"
  102. " --version Muestra la versión."
  103. #: scripts/dpkg-architecture.pl
  104. msgid ""
  105. "Options:\n"
  106. " -a, --host-arch <arch> set host Debian architecture.\n"
  107. " -t, --host-type <type> set host GNU system type.\n"
  108. " -A, --target-arch <arch> set target Debian architecture.\n"
  109. " -T, --target-type <type> set target GNU system type.\n"
  110. " -W, --match-wildcard <arch-wildcard>\n"
  111. " restrict architecture list matching <arch-"
  112. "wildcard>.\n"
  113. " -B, --match-bits <arch-bits>\n"
  114. " restrict architecture list matching <arch-"
  115. "bits>.\n"
  116. " -E, --match-endian <arch-endian>\n"
  117. " restrict architecture list matching <arch-"
  118. "endian>.\n"
  119. " -f, --force force flag (override variables set in "
  120. "environment)."
  121. msgstr ""
  122. "Opciones:\n"
  123. " -a, --host-arch <arq> fija la arquitectura del sistema Debian.\n"
  124. " -t, --host-type <tipo> fija el tipo de sistema GNU GNU del equipo.\n"
  125. " -A, --target-arch <aq> fija la arquitectura de Debian objetivo.\n"
  126. " -T, --target-type <tipo> sfija el tipo de sistema GNU objetivo.\n"
  127. " -W, --match-wildcard <arq-comodín>\n"
  128. " restringe la arquitectura a la lista que "
  129. "coincide con <arq-comodín>.\n"
  130. " -B, --match-bits <arq-bits>\n"
  131. " restringe la arquitectura a la lista que "
  132. "coincide con <arch-bits>.\n"
  133. " -E, --match-endian <arq-endian>\n"
  134. " restringe la arquitectura a la lista que "
  135. "coincide con <arch-endian>.\n"
  136. " -f, --force bandera de forzaje (toma precedencia sobre las "
  137. "variables\n"
  138. " definidas en el entorno)."
  139. #: scripts/dpkg-architecture.pl
  140. #, perl-format
  141. msgid "unknown Debian architecture %s, you must specify GNU system type, too"
  142. msgstr ""
  143. "la arquitectura de Debian %s es desconocida, también debe especificar el "
  144. "tipo de sistema GNU"
  145. #: scripts/dpkg-architecture.pl
  146. #, perl-format
  147. msgid "unknown GNU system type %s, you must specify Debian architecture, too"
  148. msgstr ""
  149. "el tipo de sistema GNU %s es desconocido, también debe especificar la "
  150. "arquitectura de Debian"
  151. #: scripts/dpkg-architecture.pl
  152. #, perl-format
  153. msgid "unknown default GNU system type for Debian architecture %s"
  154. msgstr ""
  155. "el tipo de sistema GNU para la arquitectura de Debian %s es desconocido"
  156. #: scripts/dpkg-architecture.pl
  157. #, perl-format
  158. msgid ""
  159. "default GNU system type %s for Debian arch %s does not match specified GNU "
  160. "system type %s"
  161. msgstr ""
  162. "El tipo de sistema GNU predefinido «%s» para la arquitectura de Debian «%s» "
  163. "no coincide con el tipo de sistema GNU definido «%s»"
  164. #: scripts/dpkg-architecture.pl
  165. #, perl-format
  166. msgid "%s is not a supported variable name"
  167. msgstr "%s no es un nombre de variable aceptado"
  168. #: scripts/dpkg-architecture.pl scripts/dpkg-buildflags.pl
  169. #: scripts/dpkg-distaddfile.pl scripts/dpkg-genchanges.pl
  170. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl scripts/dpkg-name.pl
  171. #: scripts/dpkg-parsechangelog.pl scripts/dpkg-shlibdeps.pl
  172. #: scripts/dpkg-vendor.pl
  173. #, perl-format
  174. msgid "unknown option '%s'"
  175. msgstr "la opción «%s» es desconocida"
  176. #: scripts/dpkg-architecture.pl
  177. #, fuzzy, perl-format
  178. #| msgid ""
  179. #| "specified GNU system type %s does not match gcc system type %s, try "
  180. #| "setting a correct CC environment variable"
  181. msgid ""
  182. "specified GNU system type %s does not match CC system type %s, try setting a "
  183. "correct CC environment variable"
  184. msgstr ""
  185. "El tipo de sistema GNU especificado «%s» no coincide con el tipo de sistema "
  186. "gcc «%s», intente definir una variable de entorno CC adecuada."
  187. #: scripts/dpkg-buildflags.pl
  188. #, perl-format
  189. msgid "Usage: %s [<command>]"
  190. msgstr "Uso: %s [<orden>]"
  191. #: scripts/dpkg-buildflags.pl
  192. msgid ""
  193. "Commands:\n"
  194. " --get <flag> output the requested flag to stdout.\n"
  195. " --origin <flag> output the origin of the flag to stdout:\n"
  196. " value is one of vendor, system, user, env.\n"
  197. " --query-features <area>\n"
  198. " output the status of features for the given area.\n"
  199. " --list output a list of the flags supported by the current "
  200. "vendor.\n"
  201. " --export=(sh|make|cmdline|configure)\n"
  202. " output something convenient to import the compilation\n"
  203. " flags in a shell script, in make, or in a command "
  204. "line.\n"
  205. " --dump output all compilation flags with their values\n"
  206. " --status print a synopsis with all parameters affecting the\n"
  207. " behaviour of dpkg-buildflags and the resulting flags\n"
  208. " and their origin.\n"
  209. " --help show this help message.\n"
  210. " --version show the version.\n"
  211. msgstr ""
  212. "Órdenes:\n"
  213. " --get <opción> Muestra la opción solicitada por la salida estándar.\n"
  214. " --origin <opción> Muestra el origen de la opción por la salida\n"
  215. " estándar:\n"
  216. " El valor puede ser vendor, system, user, env.\n"
  217. " --query-features <area>\n"
  218. " Muestra el estado de las funcionalidades del área "
  219. "dada.\n"
  220. " --list Muestra una lista de las opciones permitidas por el\n"
  221. " proveedor actual.\n"
  222. " --export=(sh|make|cmdline|configure)\n"
  223. " Muestra algo adecuado para importar las opciones de\n"
  224. " compilación a un programa de shell, a un programa de "
  225. "«make»,\n"
  226. " o a una línea de órdenes.\n"
  227. " --dump Muestra todas las opciones de compilación y sus "
  228. "valores\n"
  229. " --status Muestra un resumen de todos los parámetros que "
  230. "modifican\n"
  231. " el comportamiento de dpkg-buildflags, las opciones\n"
  232. " resultantes y su origen.\n"
  233. " --help Muestra este mensaje de ayuda.\n"
  234. " --version Muestra la versión.\n"
  235. #: scripts/dpkg-buildflags.pl scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  236. #, perl-format
  237. msgid "two commands specified: --%s and --%s"
  238. msgstr "se han definido dos órdenes: «--%s» y «--%s»"
  239. #: scripts/dpkg-buildflags.pl scripts/dpkg-vendor.pl
  240. #, perl-format
  241. msgid "%s needs a parameter"
  242. msgstr "%s requiere un parámetro"
  243. #: scripts/dpkg-buildpackage.pl scripts/dpkg-genchanges.pl
  244. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  245. #: scripts/dpkg-parsechangelog.pl
  246. #, perl-format
  247. msgid "Usage: %s [<option>...]"
  248. msgstr "Uso: %s [<opción>...]"
  249. #: scripts/dpkg-buildpackage.pl
  250. #, fuzzy
  251. #| msgid ""
  252. #| "Options:\n"
  253. #| " -F (default) normal full build (binaries and sources).\n"
  254. #| " -g source and arch-indep build.\n"
  255. #| " -G source and arch-specific build.\n"
  256. #| " -b binary-only, no source files.\n"
  257. #| " -B binary-only, only arch-specific files.\n"
  258. #| " -A binary-only, only arch-indep files.\n"
  259. #| " -S source-only, no binary files.\n"
  260. #| " -nc do not clean source tree (implies -b).\n"
  261. #| " -tc clean source tree when finished.\n"
  262. #| " -D (default) check build dependencies and conflicts.\n"
  263. #| " -d do not check build dependencies and conflicts.\n"
  264. #| " -P<profiles> assume given build profiles as active (comma-separated "
  265. #| "list).\n"
  266. #| " -R<rules> rules file to execute (default is debian/rules).\n"
  267. #| " -T<target> call debian/rules <target> with the proper environment.\n"
  268. #| " --as-root ensure -T calls the target with root rights.\n"
  269. #| " -j[<number>] specify jobs to run simultaneously (passed to <rules>).\n"
  270. #| " -r<gain-root-command>\n"
  271. #| " command to gain root privileges (default is fakeroot).\n"
  272. #| " --check-command=<check-command>\n"
  273. #| " command to check the .changes file (no default).\n"
  274. #| " --check-option=<opt>\n"
  275. #| " pass <opt> to <check-command>.\n"
  276. #| " --hook-<hook-name>=<hook-command>\n"
  277. #| " set <hook-command> as the hook <hook-name>, known "
  278. #| "hooks:\n"
  279. #| " init preclean source build binary changes postclean\n"
  280. #| " check sign done\n"
  281. #| " -p<sign-command>\n"
  282. #| " command to sign .dsc and/or .changes files\n"
  283. #| " (default is gpg2 or gpg).\n"
  284. #| " -k<keyid> the key to use for signing.\n"
  285. #| " -ap add pause before starting signature process.\n"
  286. #| " -us unsigned source package.\n"
  287. #| " -uc unsigned .changes file.\n"
  288. #| " --force-sign\n"
  289. #| " force signing the resulting files.\n"
  290. #| " --admindir=<directory>\n"
  291. #| " change the administrative directory.\n"
  292. #| " -?, --help show this help message.\n"
  293. #| " --version show the version."
  294. msgid ""
  295. "Options:\n"
  296. " -F normal full build (binaries and sources, default).\n"
  297. " -g source and arch-indep build.\n"
  298. " -G source and arch-specific build.\n"
  299. " -b binary-only, no source files.\n"
  300. " -B binary-only, only arch-specific files.\n"
  301. " -A binary-only, only arch-indep files.\n"
  302. " -S source-only, no binary files.\n"
  303. " -nc do not clean source tree (implies -b).\n"
  304. " -tc clean source tree when finished.\n"
  305. " -D check build dependencies and conflicts (default).\n"
  306. " -d do not check build dependencies and conflicts.\n"
  307. " -P<profiles> assume given build profiles as active (comma-separated "
  308. "list).\n"
  309. " -R<rules> rules file to execute (default is debian/rules).\n"
  310. " -T<target> call debian/rules <target> with the proper environment.\n"
  311. " --as-root ensure -T calls the target with root rights.\n"
  312. " -j[<number>] jobs to run simultaneously (passed to <rules>), forced "
  313. "mode.\n"
  314. " -J[<number>] jobs to run simultaneously (passed to <rules>), opt-in "
  315. "mode.\n"
  316. " -r<gain-root-command>\n"
  317. " command to gain root privileges (default is fakeroot).\n"
  318. " --check-command=<check-command>\n"
  319. " command to check the .changes file (no default).\n"
  320. " --check-option=<opt>\n"
  321. " pass <opt> to <check-command>.\n"
  322. " --hook-<hook-name>=<hook-command>\n"
  323. " set <hook-command> as the hook <hook-name>, known hooks:\n"
  324. " init preclean source build binary changes postclean\n"
  325. " check sign done\n"
  326. " -p<sign-command>\n"
  327. " command to sign .dsc and/or .changes files\n"
  328. " (default is gpg2 or gpg).\n"
  329. " -k<keyid> the key to use for signing.\n"
  330. " -ap add pause before starting signature process.\n"
  331. " -us unsigned source package.\n"
  332. " -uc unsigned .changes file.\n"
  333. " --force-sign\n"
  334. " force signing the resulting files.\n"
  335. " --admindir=<directory>\n"
  336. " change the administrative directory.\n"
  337. " -?, --help show this help message.\n"
  338. " --version show the version."
  339. msgstr ""
  340. "Opciones:\n"
  341. " -F (Predeterminado) construcción completa habitual (binario y fuentes).\n"
  342. " -g Construir fuentes y paquetes independientes de "
  343. "arquitectura.\n"
  344. " -G Construir fuentes y paquetes dependientes de arquitectura.\n"
  345. " -b Sólo binario, no construye las fuentes.\n"
  346. " -B Sólo binario, sin ficheros independientes de arquitectura.\n"
  347. " -A Sólo binario, sin ficheros independientes de arquitectura.\n"
  348. " -S Sólo fuentes, sin ficheros binarios.\n"
  349. " -nc No limpia el árbol de fuentes (implica -b).\n"
  350. " -tc Limpia el árbol de fuentes al finalizar.\n"
  351. " -D (Predeterminado) comprueba dependencias de construcción y conflictos.\n"
  352. " -d No comprueba dependencias de construcción ni conflictos.\n"
  353. " -P<perfiles> Asume que los perfiles de construcción indicados están "
  354. "activos\n"
  355. " (lista separada por comas).\n"
  356. " -R<rules> Fichero rules que ejecutar (por omisión, «debian/rules»).\n"
  357. " -T<tarea> Invoca debian/rules <tarea> con el entorno adecuado.\n"
  358. " --as-root Comprueba que «-T» invoque la tarea con permisos de "
  359. "«root».\n"
  360. " -j[<número>] Define las tareas que ejecutar de forma simultánea\n"
  361. " (se introduce a <rules>).\n"
  362. " -r<orden-para-obtener-root>\n"
  363. " Orden para obtener permisos de «root» (por omisión, "
  364. "fakeroot).\n"
  365. " --check-command=<orden-comprobación>\n"
  366. " Orden para comprobar el archivo .changes (no hay valor por "
  367. "omisión).\n"
  368. " --check-option=<opción>\n"
  369. " Pasar la opción <opción> a <orden-comprobación>.\n"
  370. " --hook-<nombre-gancho>=<orden-gancho>\n"
  371. " Fija <orden-gancho> como el gancho para <nombre-gancho>. "
  372. "Los\n"
  373. " ganchos conocidos son:\n"
  374. " init preclean source build binary changes postclean\n"
  375. " check sign done\n"
  376. " -p<orden-firmado>\n"
  377. " Orden para firmar ficheros «.dsc» y/o «.changes»\n"
  378. " (por omisión es gpg2 o gpg).\n"
  379. " -k<id-clave> Clave que utilizar para el firmado.\n"
  380. " -ap Añade una pausa antes del proceso de firmado.\n"
  381. " -us No firma el paquete fuente.\n"
  382. " -uc No firma el fichero «.changes».\n"
  383. " --force-sign\n"
  384. " Fuerza el firmado de los archivos generados.\n"
  385. " --admindir=<directorio>\n"
  386. " Cambia el directorio administrativo.\n"
  387. " -?, --help Muestra este mensaje de ayuda.\n"
  388. " --version Muestra la versión."
  389. #: scripts/dpkg-buildpackage.pl
  390. msgid ""
  391. "Options passed to dpkg-architecture:\n"
  392. " -a, --host-arch <arch> set the host Debian architecture.\n"
  393. " -t, --host-type <type> set the host GNU system type.\n"
  394. " --target-arch <arch> set the target Debian architecture.\n"
  395. " --target-type <type> set the target GNU system type."
  396. msgstr ""
  397. "Ociones que se pasan a dpkg-architecture:\n"
  398. " -a, --host-arch <arq> fija la arquitectura Debian del equipo.\n"
  399. " -t, --host-type <tipo> fija el tipo de sistema GNU del equipo.\n"
  400. " --target-arch <arq> fija la arquitectura de Debian objetivo.\n"
  401. " --target-type <tipo> fija el tipo de sistema GNU objetivo."
  402. #: scripts/dpkg-buildpackage.pl
  403. #, fuzzy
  404. #| msgid ""
  405. #| "Options passed to dpkg-genchanges:\n"
  406. #| " -si (default) source includes orig, if new upstream.\n"
  407. #| " -sa source includes orig, always.\n"
  408. #| " -sd source is diff and .dsc only.\n"
  409. #| " -v<version> changes since version <version>.\n"
  410. #| " -m<maint> maintainer for package is <maint>.\n"
  411. #| " -e<maint> maintainer for release is <maint>.\n"
  412. #| " -C<descfile> changes are described in <descfile>.\n"
  413. #| " --changes-option=<opt>\n"
  414. #| " pass option <opt> to dpkg-genchanges."
  415. msgid ""
  416. "Options passed to dpkg-genchanges:\n"
  417. " -si source includes orig, if new upstream (default).\n"
  418. " -sa source includes orig, always.\n"
  419. " -sd source is diff and .dsc only.\n"
  420. " -v<version> changes since version <version>.\n"
  421. " -m<maint> maintainer for package is <maint>.\n"
  422. " -e<maint> maintainer for release is <maint>.\n"
  423. " -C<descfile> changes are described in <descfile>.\n"
  424. " --changes-option=<opt>\n"
  425. " pass option <opt> to dpkg-genchanges."
  426. msgstr ""
  427. "Opciones que se introducen a dpkg-genchanges:\n"
  428. " -si (por omisión) La fuente incluye «orig» si hay una nueva versión "
  429. "original.\n"
  430. " -sa La fuente que se envía incluye «orig», siempre.\n"
  431. " -sd La fuente que se envía solo son ficheros diff y «."
  432. "dsc».\n"
  433. " -v<versión> Cambios desde la versión <versión>.\n"
  434. " -m<responsable> El responsable del paquete es <responsable>.\n"
  435. " -e<responsable> El responsable del envío es <responsable>.\n"
  436. " -C<fichero-desc> Los cambios se describen en el fichero <fichero-desc>.\n"
  437. " --changes-option=<opción>\n"
  438. " Pasa la <opción> a dpkg-genchanges."
  439. #: scripts/dpkg-buildpackage.pl
  440. msgid ""
  441. "Options passed to dpkg-source:\n"
  442. " -sn force Debian native source format.\n"
  443. " -s[sAkurKUR] see dpkg-source for explanation.\n"
  444. " -z<level> compression level to use for source.\n"
  445. " -Z<compressor> compression to use for source (gz|xz|bzip2|lzma).\n"
  446. " -i[<regex>] ignore diffs of files matching regex.\n"
  447. " -I[<pattern>] filter out files when building tarballs.\n"
  448. " --source-option=<opt>\n"
  449. " pass option <opt> to dpkg-source.\n"
  450. msgstr ""
  451. "Opciones que se introducen a dpkg-source:\n"
  452. " -sn Fuerza el formato nativo de Debian.\n"
  453. " -s[sAkurKUR] Para más información consulte dpkg-source.\n"
  454. " -z<nivel> Nivel de compresión de las fuentes.\n"
  455. " -Z<compresor> Compresor que utilizar para las fuentes (gz|xz|bzip2|"
  456. "lzma).\n"
  457. " -i[<regex>] Ignorar diff de ficheros que coinciden con la\n"
  458. " expresión regular.\n"
  459. " -I[<patrón>] Omite ficheros al generar los archivos tar.\n"
  460. " --source-option=<opción>\n"
  461. " Introduce <opción> a dpkg-source.\n"
  462. #: scripts/dpkg-buildpackage.pl scripts/dpkg-genchanges.pl
  463. #, perl-format
  464. msgid "cannot combine %s and %s"
  465. msgstr "no se puede combinar «%s» con «%s»"
  466. #: scripts/dpkg-buildpackage.pl
  467. #, perl-format
  468. msgid "unknown hook name %s"
  469. msgstr "nombre de gancho «%s» desconocido"
  470. #: scripts/dpkg-buildpackage.pl
  471. #, perl-format
  472. msgid "missing hook %s command"
  473. msgstr "falta la orden «hook» %s"
  474. #: scripts/dpkg-buildpackage.pl
  475. #, perl-format
  476. msgid "-s%s is deprecated; always using gpg style interface"
  477. msgstr "-s%s está obsoleto; utilice siempre el estilo de interfaz gpg"
  478. #: scripts/dpkg-buildpackage.pl scripts/dpkg-source.pl
  479. msgid "-E and -W are deprecated, they are without effect"
  480. msgstr "«-E» y «-W» están obsoletas y no tienen efecto"
  481. #: scripts/dpkg-buildpackage.pl
  482. #, perl-format
  483. msgid "unknown option or argument %s"
  484. msgstr "el argumento u opción «%s» es desconocido"
  485. #: scripts/dpkg-buildpackage.pl
  486. msgid "using a gain-root-command while being root"
  487. msgstr ""
  488. "está usando una orden para convertirse en administrador («gain-root-"
  489. "command»), a pesar de que ya es el administrador"
  490. #: scripts/dpkg-buildpackage.pl
  491. msgid ""
  492. "fakeroot not found, either install the fakeroot\n"
  493. "package, specify a command with the -r option, or run this as root"
  494. msgstr ""
  495. "no se ha encontrado fakeroot; puede instalar el paquete fakeroot,\n"
  496. "definir una orden con la opción «-r», o ejecutar esto como administrador"
  497. #: scripts/dpkg-buildpackage.pl
  498. #, perl-format
  499. msgid "gain-root-commmand '%s' not found"
  500. msgstr "no se ha encontrado la orden «%s» para convertirse en administrador"
  501. #: scripts/dpkg-buildpackage.pl
  502. #, perl-format
  503. msgid "check-commmand '%s' not found"
  504. msgstr "no se ha encontrado la orden «%s» para hacer la comprobación"
  505. #: scripts/dpkg-buildpackage.pl
  506. #, perl-format
  507. msgid "sign-commmand '%s' not found"
  508. msgstr "no se ha encontrado la orden «%s» para firmar"
  509. #: scripts/dpkg-buildpackage.pl
  510. msgid "source package"
  511. msgstr "paquete fuente"
  512. #: scripts/dpkg-buildpackage.pl
  513. msgid "source version"
  514. msgstr "versión de las fuentes"
  515. #: scripts/dpkg-buildpackage.pl
  516. msgid "source distribution"
  517. msgstr "distribución de las fuentes"
  518. #: scripts/dpkg-buildpackage.pl
  519. msgid "source changed by"
  520. msgstr "fuentes modificadas por"
  521. #: scripts/dpkg-buildpackage.pl
  522. msgid "host architecture"
  523. msgstr "arquitectura del sistema"
  524. #: scripts/dpkg-buildpackage.pl
  525. msgid "debian/rules is not executable; fixing that"
  526. msgstr "«debian/rules» no es un fichero ejecutable, reparando"
  527. #: scripts/dpkg-buildpackage.pl
  528. msgid "build dependencies/conflicts unsatisfied; aborting"
  529. msgstr ""
  530. "Las dependencias y conflictos de construcción no están satisfechas, "
  531. "interrumpiendo"
  532. #: scripts/dpkg-buildpackage.pl
  533. msgid "(Use -d flag to override.)"
  534. msgstr "(Use la opción «-d» para anularlo.)"
  535. #: scripts/dpkg-buildpackage.pl
  536. msgid ""
  537. "building a source package without cleaning up as you asked; it might contain "
  538. "undesired files"
  539. msgstr ""
  540. "construyendo un paquete fuente sin limpiar, como ha definido; puede contener "
  541. "ficheros no deseados"
  542. #: scripts/dpkg-buildpackage.pl
  543. #, perl-format
  544. msgid ""
  545. "%s must be updated to support the 'build-arch' and 'build-indep' targets (at "
  546. "least '%s' seems to be missing)"
  547. msgstr ""
  548. "se debe actualizar %s para la compatibilidad con las tareas «build-arch» y "
  549. "«build-indep» (en apariencia, falta «%s»)"
  550. #: scripts/dpkg-buildpackage.pl
  551. msgid "parse changes file"
  552. msgstr "tratar el fichero de cambios «changes»"
  553. #: scripts/dpkg-buildpackage.pl
  554. msgid "dpkg-genchanges"
  555. msgstr "dpkg-genchanges"
  556. #: scripts/dpkg-buildpackage.pl
  557. #, fuzzy
  558. #| msgid "Press the return key to start signing process\n"
  559. msgid "Press <enter> to start the signing process.\n"
  560. msgstr "Pulse la tecla Intro para iniciar el proceso de firmado\n"
  561. #: scripts/dpkg-buildpackage.pl
  562. msgid "failed to sign .dsc and .changes file"
  563. msgstr "fallo al firmar los ficheros «.dsc» y «.changes»"
  564. #: scripts/dpkg-buildpackage.pl
  565. msgid "failed to sign .changes file"
  566. msgstr "fallo al firmar el fichero «.changes»"
  567. #: scripts/dpkg-buildpackage.pl
  568. msgid "not signing UNRELEASED build; use --force-sign to override"
  569. msgstr ""
  570. "no se firmará una construcción de tipo «UNRELEASED», utilice --force-sign "
  571. "para hacerlo"
  572. #: scripts/dpkg-buildpackage.pl
  573. #, perl-format
  574. msgid "unable to determine %s"
  575. msgstr "no se pudo determinar «%s»"
  576. #: scripts/dpkg-buildpackage.pl
  577. #, perl-format
  578. msgid "unknown %% substitution in hook: %%%s"
  579. msgstr "variable de sustitución %% desconocida en gancho: %%%s"
  580. #: scripts/dpkg-buildpackage.pl scripts/dpkg-checkbuilddeps.pl
  581. #: scripts/dpkg-name.pl scripts/Dpkg/Arch.pm scripts/Dpkg/IPC.pm
  582. #: scripts/Dpkg/Shlibs.pm
  583. #, perl-format
  584. msgid "cannot open %s"
  585. msgstr "no se puede abrir «%s»"
  586. #: scripts/dpkg-buildpackage.pl scripts/dpkg-distaddfile.pl
  587. #: scripts/dpkg-gencontrol.pl scripts/Dpkg/Interface/Storable.pm
  588. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  589. #, perl-format
  590. msgid "cannot close %s"
  591. msgstr "no se puede cerrar «%s»"
  592. #: scripts/dpkg-buildpackage.pl
  593. msgid "source-only upload: Debian-native package"
  594. msgstr "subida sólo de fuentes: paquete nativos de Debian"
  595. #: scripts/dpkg-buildpackage.pl
  596. msgid "source-only, diff-only upload (original source NOT included)"
  597. msgstr ""
  598. "sólo fuentes, subida sólo de las diferencias, (NO se incluyen las fuentes "
  599. "originales)"
  600. #: scripts/dpkg-buildpackage.pl
  601. msgid "source-only upload (original source is included)"
  602. msgstr "subida sólo de fuentes (se incluyen las fuentes originales)"
  603. #: scripts/dpkg-buildpackage.pl
  604. msgid "binary-only upload (no source included)"
  605. msgstr "subida sólo de binarios (no se incluye ninguna fuente)"
  606. #: scripts/dpkg-buildpackage.pl
  607. msgid "full upload; Debian-native package (full source is included)"
  608. msgstr ""
  609. "subida completa; paquete nativo de Debian (se incluye la fuente completa)"
  610. #: scripts/dpkg-buildpackage.pl
  611. msgid "binary and diff upload (original source NOT included)"
  612. msgstr "subida de binarios y diferencias (NO se incluye la fuente original)"
  613. #: scripts/dpkg-buildpackage.pl
  614. msgid "full upload (original source is included)"
  615. msgstr "subida completa (se incluye la fuente original)"
  616. #: scripts/dpkg-checkbuilddeps.pl
  617. #, perl-format
  618. msgid "Usage: %s [<option>...] [<control-file>]"
  619. msgstr "Uso: %s [<opción>...] [<fichero-control>]"
  620. #: scripts/dpkg-checkbuilddeps.pl
  621. #, fuzzy
  622. #| msgid ""
  623. #| "Options:\n"
  624. #| " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  625. #| " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  626. #| " -d build-deps use given string as build dependencies instead of\n"
  627. #| " retrieving them from control file\n"
  628. #| " -c build-conf use given string for build conflicts instead of\n"
  629. #| " retrieving them from control file\n"
  630. #| " -a arch assume given host architecture\n"
  631. #| " -P profiles assume given build profiles (comma-separated list)\n"
  632. #| " --admindir=<directory>\n"
  633. #| " change the administrative directory.\n"
  634. #| " -?, --help show this help message.\n"
  635. #| " --version show the version."
  636. msgid ""
  637. "Options:\n"
  638. " -A ignore Build-Depends-Arch and Build-Conflicts-Arch.\n"
  639. " -B ignore Build-Depends-Indep and Build-Conflicts-Indep.\n"
  640. " -I ignore built-in build dependencies and conflicts.\n"
  641. " -d build-deps use given string as build dependencies instead of\n"
  642. " retrieving them from control file\n"
  643. " -c build-conf use given string for build conflicts instead of\n"
  644. " retrieving them from control file\n"
  645. " -a arch assume given host architecture\n"
  646. " -P profiles assume given build profiles (comma-separated list)\n"
  647. " --admindir=<directory>\n"
  648. " change the administrative directory.\n"
  649. " -?, --help show this help message.\n"
  650. " --version show the version."
  651. msgstr ""
  652. "Opciones:\n"
  653. " -A Ignora Build-Depends-Arch y Build-Conflicts-Arch\n"
  654. " -B Ignora Build-Depends-Indep y Build-Conflicts-Indep\n"
  655. " -d dependencias-de-construcción\n"
  656. " Utiliza la cadena dada como dependencias de construcción "
  657. "en\n"
  658. " lugar de obtenerlos del fichero de control\n"
  659. " -c conflictos-de-construcción\n"
  660. " Utiliza la cadena dada como conflictos de construcción en\n"
  661. " lugar de obtenerlos del fichero de control\n"
  662. " -a arq Supone la arquitectura dada para el sistema actual\n"
  663. " -P perfiles Supone los perfiles de construcción indicados (lista\n"
  664. " separada por comas)\n"
  665. " --admindir=<directorio>\n"
  666. " Cambia el directorio administrativo\n"
  667. " -?, --help Muestra este mensaje de ayuda\n"
  668. " --version Muestra la versión"
  669. #: scripts/dpkg-checkbuilddeps.pl
  670. msgid ""
  671. "<control-file> is the control file to process (default: debian/control)."
  672. msgstr ""
  673. "<fichero-control> es el fichero de control a procesar («debian/control» por "
  674. "omisión)."
  675. #: scripts/dpkg-checkbuilddeps.pl scripts/dpkg-shlibdeps.pl
  676. #: scripts/dpkg-source.pl
  677. #, perl-format
  678. msgid "error occurred while parsing %s"
  679. msgstr "se ha detectado un fallo al analizar «%s»"
  680. #: scripts/dpkg-checkbuilddeps.pl
  681. #, fuzzy, perl-format
  682. #| msgid "%s: Unmet build dependencies: "
  683. msgid "Unmet build dependencies: %s"
  684. msgstr "%s: Dependencias de construcción no satisfechas: "
  685. #: scripts/dpkg-checkbuilddeps.pl
  686. #, fuzzy, perl-format
  687. #| msgid "%s: Build conflicts: "
  688. msgid "Build conflicts: %s"
  689. msgstr "%s: Conflictos de construcción: "
  690. #: scripts/dpkg-distaddfile.pl
  691. #, perl-format
  692. msgid ""
  693. "Usage: %s [<option>...] <filename> <section> <priority>\n"
  694. "\n"
  695. "Options:\n"
  696. " -f<files-list-file> write files here instead of debian/files.\n"
  697. " -?, --help show this help message.\n"
  698. " --version show the version.\n"
  699. msgstr ""
  700. "Uso: %s [<opción>...] <nombre-fichero> <sección> <prioridad>\n"
  701. "\n"
  702. "Opciones:\n"
  703. " -f<lista-ficheros> Escribe los ficheros aquí en vez de\n"
  704. " «debian/files».\n"
  705. " -?, --help Muestra este mensaje de ayuda.\n"
  706. " --version Muestra la versión.\n"
  707. #: scripts/dpkg-distaddfile.pl
  708. msgid "need exactly a filename, section and priority"
  709. msgstr "Se necesita exactamente un nombre de fichero, sección y prioridad"
  710. #: scripts/dpkg-distaddfile.pl
  711. msgid "filename, section and priority may contain no whitespace"
  712. msgstr ""
  713. "El nombre de fichero, sección y prioridad no pueden contener espacios en "
  714. "blanco"
  715. #: scripts/dpkg-distaddfile.pl scripts/dpkg-gencontrol.pl
  716. #: scripts/dpkg-mergechangelogs.pl scripts/Dpkg/Compression/FileHandle.pm
  717. #: scripts/Dpkg/IPC.pm scripts/Dpkg/Interface/Storable.pm
  718. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Package.pm
  719. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  720. #: scripts/Dpkg/Source/Quilt.pm
  721. #, perl-format
  722. msgid "cannot write %s"
  723. msgstr "no se pudo escribir «%s»"
  724. #: scripts/dpkg-distaddfile.pl scripts/dpkg-gencontrol.pl
  725. msgid "install new files list file"
  726. msgstr "instalar el nuevo fichero «files» de la lista de ficheros"
  727. #: scripts/dpkg-genchanges.pl
  728. #, fuzzy
  729. #| msgid ""
  730. #| "Options:\n"
  731. #| " -b binary-only build - no source files.\n"
  732. #| " -B arch-specific - no source or arch-indep "
  733. #| "files.\n"
  734. #| " -A only arch-indep - no source or arch-specific "
  735. #| "files.\n"
  736. #| " -S source-only upload.\n"
  737. #| " -c<control-file> get control info from this file.\n"
  738. #| " -l<changelog-file> get per-version info from this file.\n"
  739. #| " -f<files-list-file> get .deb files list from this file.\n"
  740. #| " -v<since-version> include all changes later than version.\n"
  741. #| " -C<changes-description> use change description from this file.\n"
  742. #| " -m<maintainer> override control's maintainer value.\n"
  743. #| " -e<maintainer> override changelog's maintainer value.\n"
  744. #| " -u<upload-files-dir> directory with files (default is '..').\n"
  745. #| " -si (default) src includes orig if new upstream.\n"
  746. #| " -sa source includes orig src.\n"
  747. #| " -sd source is diff and .dsc only.\n"
  748. #| " -q quiet - no informational messages on stderr.\n"
  749. #| " -F<changelog-format> force changelog format.\n"
  750. #| " -V<name>=<value> set a substitution variable.\n"
  751. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  752. #| " -D<field>=<value> override or add a field and value.\n"
  753. #| " -U<field> remove a field.\n"
  754. #| " -?, --help show this help message.\n"
  755. #| " --version show the version.\n"
  756. msgid ""
  757. "Options:\n"
  758. " -g source and arch-indep build.\n"
  759. " -G source and arch-specific build.\n"
  760. " -b binary-only, no source files.\n"
  761. " -B binary-only, only arch-specific files.\n"
  762. " -A binary-only, only arch-indep files.\n"
  763. " -S source-only, no binary files.\n"
  764. " -c<control-file> get control info from this file.\n"
  765. " -l<changelog-file> get per-version info from this file.\n"
  766. " -f<files-list-file> get .deb files list from this file.\n"
  767. " -v<since-version> include all changes later than version.\n"
  768. " -C<changes-description> use change description from this file.\n"
  769. " -m<maintainer> override control's maintainer value.\n"
  770. " -e<maintainer> override changelog's maintainer value.\n"
  771. " -u<upload-files-dir> directory with files (default is '..').\n"
  772. " -si source includes orig, if new upstream (default).\n"
  773. " -sa source includes orig, always.\n"
  774. " -sd source is diff and .dsc only.\n"
  775. " -q quiet - no informational messages on stderr.\n"
  776. " -F<changelog-format> force changelog format.\n"
  777. " -V<name>=<value> set a substitution variable.\n"
  778. " -T<substvars-file> read variables here, not debian/substvars.\n"
  779. " -D<field>=<value> override or add a field and value.\n"
  780. " -U<field> remove a field.\n"
  781. " -?, --help show this help message.\n"
  782. " --version show the version.\n"
  783. msgstr ""
  784. "Opciones:\n"
  785. " -b Construcción solo binaria, sin ficheros fuente.\n"
  786. " -B Construcción de arquitectura específica, sin\n"
  787. " ficheros fuente ni independientes de "
  788. "arquitectura.\n"
  789. " -A Solo independiente de arquitectura, sin ficheros\n"
  790. " fuente o de arquitectura específica.\n"
  791. " -S Envío solo de fuentes.\n"
  792. " -c<fichero-control> Obtiene información de control de este fichero.\n"
  793. " -l<fichero-changelog> Obtiene información de la versión de este "
  794. "fichero.\n"
  795. " -f<fichero-lista-ficheros> Obtiene la lista de ficheros del paquete «."
  796. "deb»\n"
  797. " de este fichero.\n"
  798. " -v<desde-versión> Incluye todos los cambios posteriores a la\n"
  799. " versión.\n"
  800. " -C<descripción-cambios> Utiliza la descripción del cambio de este "
  801. "fichero.\n"
  802. " -m<desarrollador> Sustituye el valor del desarrollador de control.\n"
  803. " -e<desarrollador> Sustituye el valor del desarrollador del fichero\n"
  804. " «changelog».\n"
  805. " -u<directorio-ficheros-que-enviar> El directorio con los ficheros,\n"
  806. " (por omisión, «..»).\n"
  807. " -si (predefinido) La fuente incluye el fichero «orig» si hay una\n"
  808. " nueva versión de la fuente original.\n"
  809. " -sa La fuente incluye el fichero «orig» de fuentes.\n"
  810. " -sd La fuente es solo los fichero «diff» y «.dsc».\n"
  811. " -q Silencioso, sin mensajes informativos por la\n"
  812. " salida estándar de error.\n"
  813. " -F<formato-changelog> Fuerza el formato de «changelog»..\n"
  814. " -V<nombre>=<valor> Define una variable de sustitución.\n"
  815. " -T<fichero-substvars> Lee las variables de aquí, y no de\n"
  816. " «debian/substvars».\n"
  817. " -D<campo>=<valor> Sustituye o añade un campo y un valor.\n"
  818. " -U<campo> Elimina un campo.\n"
  819. " -?, --help Muestra este mensaje de ayuda.\n"
  820. " --version Muestra la versión.\n"
  821. #: scripts/dpkg-genchanges.pl
  822. #, perl-format
  823. msgid "the current version (%s) is earlier than the previous one (%s)"
  824. msgstr "la versión actual (%s) es más antigua que la anterior (%s)"
  825. #: scripts/dpkg-genchanges.pl
  826. msgid "missing Section for source files"
  827. msgstr "falta el campo «Section» para los ficheros de fuentes"
  828. #: scripts/dpkg-genchanges.pl
  829. msgid "missing Priority for source files"
  830. msgstr "falta el campo «Priority» para los ficheros de fuentes"
  831. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/Vendor.pm
  832. #, perl-format
  833. msgid "%s is empty"
  834. msgstr "%s está vacío"
  835. #: scripts/dpkg-genchanges.pl
  836. msgid "not including original source code in upload"
  837. msgstr "no se está incluyendo el código fuente original en la subida"
  838. #: scripts/dpkg-genchanges.pl
  839. msgid "ignoring -sd option for native Debian package"
  840. msgstr "ignorando la opción «-sd» para paquetes nativos de Debian"
  841. #: scripts/dpkg-genchanges.pl
  842. msgid "including full source code in upload"
  843. msgstr "incluyendo el código fuente completo en la subida"
  844. #: scripts/dpkg-genchanges.pl
  845. #, fuzzy
  846. #| msgid "%s: arch-specific upload - not including arch-independent packages"
  847. msgid ""
  848. "binary-only arch-specific upload (source code and arch-indep packages not "
  849. "included)"
  850. msgstr ""
  851. "%s: subida de datos específicos a la arquitectura - no se incluyen paquetes "
  852. "independientes de la arquitectura"
  853. #: scripts/dpkg-genchanges.pl
  854. #, fuzzy
  855. #| msgid "%s: arch-indep upload - not including arch-specific packages"
  856. msgid ""
  857. "binary-only arch-indep upload (source code and arch-specific packages not "
  858. "included)"
  859. msgstr ""
  860. "%s: subida de datos independientes de la arquitectura - no se incluyen "
  861. "paquetes específicos a la arquitectura"
  862. #: scripts/dpkg-genchanges.pl
  863. #, fuzzy
  864. #| msgid "binary only upload (no source included)"
  865. msgid "binary-only upload (no source code included)"
  866. msgstr "subida sólo de binarios (no se incluye ninguna fuente)"
  867. #: scripts/dpkg-genchanges.pl
  868. msgid "binary build with no binary artifacts found; cannot distribute"
  869. msgstr ""
  870. "construcción binaria sin que se hayan encontrado artefactos binarios; no se "
  871. "puede distribuir"
  872. #: scripts/dpkg-genchanges.pl
  873. #, perl-format
  874. msgid "package %s in control file but not in files list"
  875. msgstr ""
  876. "el paquete %s está presente en el fichero «control» pero no en la lista de "
  877. "ficheros"
  878. #: scripts/dpkg-genchanges.pl scripts/dpkg-source.pl scripts/Dpkg/BuildFlags.pm
  879. #: scripts/Dpkg/Compression/FileHandle.pm scripts/Dpkg/Interface/Storable.pm
  880. #: scripts/Dpkg/Shlibs/Objdump.pm scripts/Dpkg/Source/Package/V2.pm
  881. #: scripts/Dpkg/Source/Quilt.pm
  882. #, perl-format
  883. msgid "cannot read %s"
  884. msgstr "no se puede leer %s"
  885. #: scripts/dpkg-genchanges.pl
  886. #, perl-format
  887. msgid "package %s listed in files list but not in control info"
  888. msgstr ""
  889. "el paquete %s está presente en la lista de ficheros pero no en la "
  890. "información de control"
  891. #: scripts/dpkg-genchanges.pl
  892. #, perl-format
  893. msgid "missing Section for binary package %s; using '-'"
  894. msgstr "falta el campo «Section» para el paquete binario %s, usando '-'"
  895. #: scripts/dpkg-genchanges.pl
  896. #, perl-format
  897. msgid "package %s has section %s in control file but %s in files list"
  898. msgstr ""
  899. "el paquete %s tiene una sección %s en el fichero de control pero %s en la "
  900. "lista de ficheros"
  901. #: scripts/dpkg-genchanges.pl
  902. #, perl-format
  903. msgid "missing Priority for binary package %s; using '-'"
  904. msgstr "falta el campo «Priority» para el paquete binario %s; usando «-»"
  905. #: scripts/dpkg-genchanges.pl
  906. #, perl-format
  907. msgid "package %s has priority %s in control file but %s in files list"
  908. msgstr ""
  909. "el paquete %s tiene un prioridad %s en el fichero de control pero %s en la "
  910. "lista de ficheros"
  911. #: scripts/dpkg-genchanges.pl
  912. msgid "write original source message"
  913. msgstr "escribir el mensaje de la fuente original"
  914. #: scripts/dpkg-genchanges.pl scripts/Dpkg/Source/Package.pm
  915. #, perl-format
  916. msgid "missing information for critical output field %s"
  917. msgstr "falta información en el campo de salida crítico «%s»"
  918. #: scripts/dpkg-genchanges.pl scripts/dpkg-gencontrol.pl
  919. #: scripts/Dpkg/Source/Package.pm
  920. #, perl-format
  921. msgid "missing information for output field %s"
  922. msgstr "falta información en el campo de salida «%s»"
  923. #: scripts/dpkg-gencontrol.pl
  924. #, fuzzy
  925. #| msgid ""
  926. #| "Options:\n"
  927. #| " -p<package> print control file for package.\n"
  928. #| " -c<control-file> get control info from this file.\n"
  929. #| " -l<changelog-file> get per-version info from this file.\n"
  930. #| " -F<changelog-format> force changelog format.\n"
  931. #| " -v<force-version> set version of binary package.\n"
  932. #| " -f<files-list-file> write files here instead of debian/files.\n"
  933. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  934. #| " -n<filename> assume the package filename will be "
  935. #| "<filename>.\n"
  936. #| " -O write to stdout, not .../DEBIAN/control.\n"
  937. #| " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  938. #| " -D<field>=<value> override or add a field and value.\n"
  939. #| " -U<field> remove a field.\n"
  940. #| " -V<name>=<value> set a substitution variable.\n"
  941. #| " -T<substvars-file> read variables here, not debian/substvars.\n"
  942. #| " -?, --help show this help message.\n"
  943. #| " --version show the version.\n"
  944. msgid ""
  945. "Options:\n"
  946. " -p<package> print control file for package.\n"
  947. " -c<control-file> get control info from this file.\n"
  948. " -l<changelog-file> get per-version info from this file.\n"
  949. " -F<changelog-format> force changelog format.\n"
  950. " -v<force-version> set version of binary package.\n"
  951. " -f<files-list-file> write files here instead of debian/files.\n"
  952. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  953. " -n<filename> assume the package filename will be <filename>.\n"
  954. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  955. "control.\n"
  956. " -is, -ip, -isp, -ips deprecated, ignored for compatibility.\n"
  957. " -D<field>=<value> override or add a field and value.\n"
  958. " -U<field> remove a field.\n"
  959. " -V<name>=<value> set a substitution variable.\n"
  960. " -T<substvars-file> read variables here, not debian/substvars.\n"
  961. " -?, --help show this help message.\n"
  962. " --version show the version.\n"
  963. msgstr ""
  964. "Opciones\n"
  965. " -p<paquete> Muestra el fichero de control del paquete.\n"
  966. " -c<fichero-control> Obtiene información de control desde este "
  967. "fichero.\n"
  968. " -l<fichero-changelog> Obtiene información de un versión desde este\n"
  969. " fichero.\n"
  970. " -F<formato-changelog> Fuerza el formato de fichero «changelog».\n"
  971. " -v<force-versión> Define la versión del paquete binario.\n"
  972. " -f<lista-ficheros> Escribe aquí los fichero en lugar de\n"
  973. " «debian/files».\n"
  974. " -P<directorio-construcción-paquete> Directorio temporal de construcción\n"
  975. " en lugar de «debian/tmp».\n"
  976. " -n<nombre-fichero> Supone que el nombre de fichero de paquete es\n"
  977. " <nombre-fichero>.\n"
  978. " -O Escribe por la salida estándar, no\n"
  979. " «.../DEBIAN/control».\n"
  980. " -is, -ip, -isp, -ips Obsoleto, se ignora por compatibilidad.\n"
  981. " -D<campo>=<valor> Sustituye o añade un campo y un valor.\n"
  982. " -U<campo> Elimina un campo.\n"
  983. " -V<nombre>=<valor> Define una variable de sustitución.\n"
  984. " -T<fichero-substvars> Lee las variables aquí y no desde\n"
  985. " «debian/substvars».\n"
  986. " -?, --help Muestra este mensaje de ayuda.\n"
  987. " --version Muestra la versión.\n"
  988. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  989. #, perl-format
  990. msgid "illegal package name '%s': %s"
  991. msgstr "nombre de paquete ilegal «%s»: %s"
  992. #: scripts/dpkg-gencontrol.pl
  993. #, fuzzy, perl-format
  994. #| msgid "-E and -W are deprecated, they are without effect"
  995. msgid "-i%s is deprecated; it is without effect"
  996. msgstr "«-E» y «-W» están obsoletas y no tienen efecto"
  997. #: scripts/dpkg-gencontrol.pl
  998. #, perl-format
  999. msgid "package %s not in control info"
  1000. msgstr "el paquete %s no está en la información de control"
  1001. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  1002. msgid "no package stanza found in control info"
  1003. msgstr ""
  1004. "no se ha encontrado la declaración del paquete en la información de control"
  1005. #: scripts/dpkg-gencontrol.pl scripts/dpkg-gensymbols.pl
  1006. #, perl-format
  1007. msgid "must specify package since control info has many (%s)"
  1008. msgstr ""
  1009. "debe definir un paquete ya que la información de control tiene varios (%s)"
  1010. #: scripts/dpkg-gencontrol.pl
  1011. #, perl-format
  1012. msgid "package %s: "
  1013. msgstr "paquete %s:"
  1014. #: scripts/dpkg-gencontrol.pl
  1015. #, perl-format
  1016. msgid "'%s' is not a legal architecture string."
  1017. msgid_plural "'%s' are not legal architecture strings."
  1018. msgstr[0] "«%s» no es una cadena de arquitectura legal."
  1019. msgstr[1] "«%s» no son cadenas de arquitectura legales."
  1020. #: scripts/dpkg-gencontrol.pl
  1021. #, perl-format
  1022. msgid ""
  1023. "current host architecture '%s' does not appear in package's architecture "
  1024. "list (%s)"
  1025. msgstr ""
  1026. "la arquitectura del sistema actual «%s» no está presente en la lista de "
  1027. "arquitecturas de paquete (%s)"
  1028. #: scripts/dpkg-gencontrol.pl
  1029. #, perl-format
  1030. msgid "%s field of package %s: "
  1031. msgstr "campo «%s» del paquete %s:"
  1032. #: scripts/dpkg-gencontrol.pl
  1033. #, perl-format
  1034. msgid "error occurred while parsing %s field: %s"
  1035. msgstr "se ha detectado un error al analizar el campo «%s»: %s"
  1036. #: scripts/dpkg-gencontrol.pl
  1037. #, perl-format
  1038. msgid ""
  1039. "the %s field contains an arch-specific dependency but the package is "
  1040. "architecture all"
  1041. msgstr ""
  1042. "el campo «%s» contiene una dependencia específica a la arquitectura, pero el "
  1043. "paquete tiene la arquitectura «all»"
  1044. #: scripts/dpkg-gencontrol.pl
  1045. #, perl-format
  1046. msgid "%s package with udeb specific field %s"
  1047. msgstr "paquete %s con campo específico de udeb «%s»"
  1048. #: scripts/dpkg-gencontrol.pl scripts/Dpkg/Source/Package.pm
  1049. #: scripts/Dpkg/Source/Patch.pm
  1050. #, perl-format
  1051. msgid "cannot stat %s"
  1052. msgstr "no se puede obtener el estado (stat) de «%s»"
  1053. #: scripts/dpkg-gencontrol.pl
  1054. #, perl-format
  1055. msgid "cannot open new output control file '%s'"
  1056. msgstr "no se ha podido abrir el fichero de control de salida nuevo «%s»"
  1057. #: scripts/dpkg-gencontrol.pl
  1058. #, perl-format
  1059. msgid "cannot install output control file '%s'"
  1060. msgstr "no se ha podido instalar el fichero de control de salida «%s»"
  1061. #: scripts/dpkg-gensymbols.pl
  1062. #, fuzzy
  1063. #| msgid ""
  1064. #| "Options:\n"
  1065. #| " -p<package> generate symbols file for package.\n"
  1066. #| " -P<package-build-dir> temporary build dir instead of debian/tmp.\n"
  1067. #| " -e<library> explicitly list libraries to scan.\n"
  1068. #| " -v<version> version of the packages (defaults to\n"
  1069. #| " version extracted from debian/changelog).\n"
  1070. #| " -c<level> compare generated symbols file with the "
  1071. #| "reference\n"
  1072. #| " template in the debian directory and fail if\n"
  1073. #| " difference is too important; level goes from 0 "
  1074. #| "for\n"
  1075. #| " no check, to 4 for all checks (default level "
  1076. #| "is 1).\n"
  1077. #| " -q keep quiet and never emit any warnings or\n"
  1078. #| " generate a diff between generated symbols\n"
  1079. #| " file and the reference template.\n"
  1080. #| " -I<file> force usage of <file> as reference symbols\n"
  1081. #| " file instead of the default file.\n"
  1082. #| " -O<file> write to <file>, not .../DEBIAN/symbols.\n"
  1083. #| " -O write to stdout, not .../DEBIAN/symbols.\n"
  1084. #| " -t write in template mode (tags are not\n"
  1085. #| " processed and included in output).\n"
  1086. #| " -V verbose output; write deprecated symbols and "
  1087. #| "pattern\n"
  1088. #| " matching symbols as comments (in template mode "
  1089. #| "only).\n"
  1090. #| " -a<arch> assume <arch> as host architecture when "
  1091. #| "processing\n"
  1092. #| " symbol files.\n"
  1093. #| " -d display debug information during work.\n"
  1094. #| " -?, --help show this help message.\n"
  1095. #| " --version show the version.\n"
  1096. msgid ""
  1097. "Options:\n"
  1098. " -p<package> generate symbols file for package.\n"
  1099. " -P<package-build-dir> temporary build directory instead of debian/tmp.\n"
  1100. " -e<library> explicitly list libraries to scan.\n"
  1101. " -v<version> version of the packages (defaults to\n"
  1102. " version extracted from debian/changelog).\n"
  1103. " -c<level> compare generated symbols file with the "
  1104. "reference\n"
  1105. " template in the debian directory and fail if\n"
  1106. " difference is too important; level goes from 0 "
  1107. "for\n"
  1108. " no check, to 4 for all checks (default level is "
  1109. "1).\n"
  1110. " -q keep quiet and never emit any warnings or\n"
  1111. " generate a diff between generated symbols\n"
  1112. " file and the reference template.\n"
  1113. " -I<file> force usage of <file> as reference symbols\n"
  1114. " file instead of the default file.\n"
  1115. " -O[<file>] write to stdout (or <file>), not .../DEBIAN/"
  1116. "symbols.\n"
  1117. " -t write in template mode (tags are not\n"
  1118. " processed and included in output).\n"
  1119. " -V verbose output; write deprecated symbols and "
  1120. "pattern\n"
  1121. " matching symbols as comments (in template mode "
  1122. "only).\n"
  1123. " -a<arch> assume <arch> as host architecture when "
  1124. "processing\n"
  1125. " symbol files.\n"
  1126. " -d display debug information during work.\n"
  1127. " -?, --help show this help message.\n"
  1128. " --version show the version.\n"
  1129. msgstr ""
  1130. "Opciones:\n"
  1131. " -p<paquete> Genera el fichero de símbolos.\n"
  1132. " -P<directorio-construcción-paquete> Directorio temporal de construcción\n"
  1133. " que utilizar en lugar de «debian/tmp».\n"
  1134. " -e<biblioteca> Enumera de forma explícita las bibliotecas que\n"
  1135. " analizar.\n"
  1136. " -v<versión> Versión de los paquetes (por omisión, la\n"
  1137. " que se extrae de «debian/changelog»).\n"
  1138. " -c<nivel> Compara el fichero de símbolos generado con la\n"
  1139. " plantilla de referencia en el directorio "
  1140. "«debian»\n"
  1141. " y falla si la diferencia es demasiado\n"
  1142. " grande; el nivel va desde cero para no "
  1143. "comprobar,\n"
  1144. " y 4 para realizar todas las comprobaciones\n"
  1145. " (por omisión, el nivel es 1).\n"
  1146. " -q Modo silencioso, no muestra avisos ni genera un\n"
  1147. " «diff» entre el fichero de símbolos generado\n"
  1148. " y la plantilla de referencia.\n"
  1149. " -I<fichero> Fuerza el uso de <fichero> como el fichero\n"
  1150. " de símbolos de referencia en lugar del fichero\n"
  1151. " predefinido.\n"
  1152. " -O<fichero> Escribe en el <fichero>, no «.../DEBIAN/"
  1153. "symbols».\n"
  1154. " -O Escribe por la salida estándar, no\n"
  1155. " «.../DEBIAN/symbols».\n"
  1156. " -t Escribe en modo plantilla (no se procesan\n"
  1157. " ni se incluye en la salida).\n"
  1158. " -V Modo informativo; escribe símbolos obsoletos\n"
  1159. " y símbolos de que encajan con el patrón\n"
  1160. " como comentarios (solo en el modo plantilla).\n"
  1161. " -a<arquitectura> Supone la <arquitectura> como la arquitectura\n"
  1162. " al procesar ficheros de símbolos.\n"
  1163. " -d Muestra información de depuración de fallos\n"
  1164. " durante el funcionamiento.\n"
  1165. " -?, --help Muestra este mensaje de ayuda.\n"
  1166. " --version Muestra la versión.\n"
  1167. #: scripts/dpkg-gensymbols.pl
  1168. #, perl-format
  1169. msgid "pattern '%s' did not match any file"
  1170. msgstr "El patrón «%s» con coincide con ningún fichero"
  1171. #: scripts/dpkg-gensymbols.pl
  1172. #, fuzzy, perl-format
  1173. #| msgid "Can't read directory %s: %s"
  1174. msgid "can't read directory %s: %s"
  1175. msgstr "No se puede leer el directorio «%s»: %s"
  1176. #: scripts/dpkg-gensymbols.pl
  1177. #, fuzzy, perl-format
  1178. #| msgid "Objdump couldn't parse %s\n"
  1179. msgid "Dpkg::Shlibs::Objdump couldn't parse %s\n"
  1180. msgstr "Objdump no pudo analizar «%s»\n"
  1181. #: scripts/dpkg-gensymbols.pl
  1182. msgid "<standard output>"
  1183. msgstr "<salida estándar>"
  1184. #: scripts/dpkg-gensymbols.pl
  1185. #, perl-format
  1186. msgid "new libraries appeared in the symbols file: %s"
  1187. msgstr "se han detectado nuevas bibliotecas en el fichero «symbols»: «%s»"
  1188. #: scripts/dpkg-gensymbols.pl
  1189. #, perl-format
  1190. msgid "some libraries disappeared in the symbols file: %s"
  1191. msgstr "han desaparecido algunas bibliotecas en el fichero «symbols»: «%s»"
  1192. #: scripts/dpkg-gensymbols.pl
  1193. #, perl-format
  1194. msgid "some new symbols appeared in the symbols file: %s"
  1195. msgstr "han aparecido algunos símbolos nuevos en el fichero «symbols»: «%s»"
  1196. #: scripts/dpkg-gensymbols.pl
  1197. msgid "see diff output below"
  1198. msgstr "vea la salida del «diff» a continuación"
  1199. #: scripts/dpkg-gensymbols.pl
  1200. #, perl-format
  1201. msgid "some symbols or patterns disappeared in the symbols file: %s"
  1202. msgstr ""
  1203. "han desaparecido algunos símbolos o patrones en el fichero «symbols»: «%s»"
  1204. #: scripts/dpkg-gensymbols.pl
  1205. msgid "the generated symbols file is empty"
  1206. msgstr "El fichero de símbolos generado está vacío"
  1207. #: scripts/dpkg-gensymbols.pl
  1208. #, perl-format
  1209. msgid "%s doesn't match completely %s"
  1210. msgstr "«%s» no encaja totalmente con «%s»"
  1211. #: scripts/dpkg-gensymbols.pl
  1212. #, perl-format
  1213. msgid "no debian/symbols file used as basis for generating %s"
  1214. msgstr ""
  1215. "no se ha usado ningún fichero «debian/symbols» como base para generar «%s»"
  1216. #: scripts/dpkg-mergechangelogs.pl
  1217. msgid ""
  1218. "This is free software; see the GNU General Public License version 2 or\n"
  1219. "later for copying conditions. There is NO warranty.\n"
  1220. msgstr ""
  1221. "Esto es software libre; vea la versión 2 o posterior de la Licencia Pública\n"
  1222. "General GNU para condiciones de copia. NO hay ninguna garantía.\n"
  1223. #: scripts/dpkg-mergechangelogs.pl
  1224. #, perl-format
  1225. msgid ""
  1226. "Usage: %s [<option>...] <old> <new-a> <new-b> [<out>]\n"
  1227. "\n"
  1228. "Options:\n"
  1229. " -m, --merge-prereleases merge pre-releases together, ignores everything\n"
  1230. " after the last '~' in the version.\n"
  1231. " -?, --help show this help message.\n"
  1232. " --version show the version.\n"
  1233. msgstr ""
  1234. "Uso: %s [<opción>...] <antiguo> <nuevo-a> <nuevo-b> [<salida>]\n"
  1235. "\n"
  1236. "Opciones:\n"
  1237. " -m, --merge-prereleases Fusiona pre-publicaciones e ignora todo\n"
  1238. " después del último «~» en la versión.\n"
  1239. " -?, --help Muestra este mensaje de ayuda.\n"
  1240. " --version Muestra la versión.\n"
  1241. #: scripts/dpkg-mergechangelogs.pl
  1242. #, fuzzy
  1243. #| msgid "-x needs at least one argument, the .dsc"
  1244. msgid "needs at least three arguments"
  1245. msgstr "«-x» requiere al menos un argumento, el fichero «.dsc»"
  1246. #: scripts/dpkg-mergechangelogs.pl
  1247. msgid "file arguments need to exist"
  1248. msgstr "debe indicar los argumentos de fichero"
  1249. #: scripts/dpkg-name.pl
  1250. #, perl-format
  1251. msgid "Usage: %s [<option>...] <file>...\n"
  1252. msgstr "Uso: %s [<opción>...] <fichero>...\n"
  1253. #: scripts/dpkg-name.pl
  1254. #, fuzzy
  1255. #| msgid ""
  1256. #| "\n"
  1257. #| "Options:\n"
  1258. #| " -a, --no-architecture no architecture part in filename.\n"
  1259. #| " -o, --overwrite overwrite if file exists.\n"
  1260. #| " -k, --symlink don't create a new file, but a symlink.\n"
  1261. #| " -s, --subdir [dir] move file into subdir (use with care).\n"
  1262. #| " -c, --create-dir create target dir if not there (use with "
  1263. #| "care).\n"
  1264. #| " -?, --help show this help message.\n"
  1265. #| " -v, --version show the version.\n"
  1266. #| "\n"
  1267. #| "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1268. #| "according to the 'underscores convention'.\n"
  1269. msgid ""
  1270. "\n"
  1271. "Options:\n"
  1272. " -a, --no-architecture no architecture part in filename.\n"
  1273. " -o, --overwrite overwrite if file exists.\n"
  1274. " -k, --symlink don't create a new file, but a symlink.\n"
  1275. " -s, --subdir [dir] move file into subdirectory (use with care).\n"
  1276. " -c, --create-dir create target directory if not there (use with "
  1277. "care).\n"
  1278. " -?, --help show this help message.\n"
  1279. " -v, --version show the version.\n"
  1280. "\n"
  1281. "file.deb changes to <package>_<version>_<architecture>.<package_type>\n"
  1282. "according to the 'underscores convention'.\n"
  1283. msgstr ""
  1284. "\n"
  1285. "Opciones:\n"
  1286. " -a, --no-architecture Sin información de arquitectura en el nombre\n"
  1287. " del fichero.\n"
  1288. " -o, --overwrite Sobreescribe el fichero, de existir.\n"
  1289. " -k, --symlink Crea un enlace simbólico en lugar de un fichero.\n"
  1290. " -s, --subdir [dir] Mueve el fichero al subdirectorio (usar con\n"
  1291. " precaución).\n"
  1292. " -c, --create-dir Crea el directorio destino si no existe\n"
  1293. " (usar con precaución).\n"
  1294. " -?, --help Muestra este mensaje de ayuda.\n"
  1295. " -v, --version Muestra la versión.\n"
  1296. "\n"
  1297. "El fichero «file.deb» pasa a ser\n"
  1298. "<paquete>_<versión>_<arquitectura>.<tipo-paquete>\n"
  1299. "de acuerdo a la convención para el uso de guiones bajos.\n"
  1300. #: scripts/dpkg-name.pl
  1301. #, perl-format
  1302. msgid "cannot find '%s'"
  1303. msgstr "no se puede encontrar «%s»"
  1304. #: scripts/dpkg-name.pl
  1305. #, perl-format
  1306. msgid "binary control file %s"
  1307. msgstr "fichero binario de control «%s»"
  1308. #: scripts/dpkg-name.pl
  1309. #, perl-format
  1310. msgid "assuming architecture '%s' for '%s'"
  1311. msgstr "suponiendo la arquitectura «%s» para «%s»"
  1312. #: scripts/dpkg-name.pl
  1313. #, perl-format
  1314. msgid "bad package control information for '%s'"
  1315. msgstr "la información de control del paquete «%s» es inválida"
  1316. #: scripts/dpkg-name.pl
  1317. #, perl-format
  1318. msgid "assuming section '%s' for '%s'"
  1319. msgstr "suponiendo la sección «%s» para «%s»"
  1320. #: scripts/dpkg-name.pl
  1321. #, fuzzy, perl-format
  1322. #| msgid "no Package field found in '%s', skipping it"
  1323. msgid "no Package field found in '%s', skipping package"
  1324. msgstr "no se ha encontrado ningún campo «Package» en «%s», omitiendo"
  1325. #: scripts/dpkg-name.pl
  1326. #, perl-format
  1327. msgid "created directory '%s'"
  1328. msgstr "se ha creado el directorio «%s»"
  1329. #: scripts/dpkg-name.pl
  1330. #, perl-format
  1331. msgid "cannot create directory '%s'"
  1332. msgstr "no se puede crear el directorio «%s»"
  1333. #: scripts/dpkg-name.pl
  1334. #, perl-format
  1335. msgid "no such directory '%s', try --create-dir (-c) option"
  1336. msgstr "el directorio «%s» no existe, pruebe la opción «--create-dir» (-c)"
  1337. #: scripts/dpkg-name.pl
  1338. #, perl-format
  1339. msgid "skipping '%s'"
  1340. msgstr "omitiendo «%s»"
  1341. #: scripts/dpkg-name.pl
  1342. #, perl-format
  1343. msgid "cannot move '%s' to existing file"
  1344. msgstr "no se puede mover «%s» a un fichero existente"
  1345. #: scripts/dpkg-name.pl
  1346. #, perl-format
  1347. msgid "moved '%s' to '%s'"
  1348. msgstr "se ha movido «%s» a «%s»"
  1349. #: scripts/dpkg-name.pl
  1350. msgid "mkdir can be used to create directory"
  1351. msgstr "se puede usar mkdir para crear un directorio"
  1352. #: scripts/dpkg-name.pl
  1353. msgid "need at least a filename"
  1354. msgstr "se requiere al menos un nombre de fichero"
  1355. #: scripts/dpkg-parsechangelog.pl
  1356. #, fuzzy
  1357. #| msgid ""
  1358. #| "Options:\n"
  1359. #| " -l<changelog-file> get per-version info from this file.\n"
  1360. #| " -F<changelog-format> force changelog format.\n"
  1361. #| " -L<libdir> look for changelog parsers in <libdir>.\n"
  1362. #| " -?, --help show this help message.\n"
  1363. #| " --version show the version."
  1364. msgid ""
  1365. "Options:\n"
  1366. " -l <changelog-file> get per-version info from this file.\n"
  1367. " -F <changelog-format> force changelog format.\n"
  1368. " -L <libdir> look for changelog parsers in <libdir>.\n"
  1369. " -S, --show-field <field> show the values for <field>.\n"
  1370. " -?, --help show this help message.\n"
  1371. " --version show the version."
  1372. msgstr ""
  1373. "Opciones:\n"
  1374. " -l<fichero-changelog> Obtiene información de la versión de este "
  1375. "fichero.\n"
  1376. " -F<formato-changelog> Fuerza el formato de fichero «changelog».\n"
  1377. " -L<directorio-biblioteca> Busca analizadores de «changelog» en <libdir>.\n"
  1378. " -?, --help Muestra este mensaje de ayuda.\n"
  1379. " --version Muestra la versión."
  1380. #: scripts/dpkg-parsechangelog.pl
  1381. #, fuzzy
  1382. #| msgid ""
  1383. #| "Parser options:\n"
  1384. #| " --format <output-format> see man page for list of available\n"
  1385. #| " output formats, defaults to 'dpkg'\n"
  1386. #| " for compatibility with dpkg-dev\n"
  1387. #| " --since <version>, include all changes later than version\n"
  1388. #| " -s<version>, -v<version>\n"
  1389. #| " --until <version>, include all changes earlier than version\n"
  1390. #| " -u<version>\n"
  1391. #| " --from <version>, include all changes equal or later\n"
  1392. #| " -f<version> than version\n"
  1393. #| " --to <version>, -t<version> include all changes up to or equal\n"
  1394. #| " than version\n"
  1395. #| " --count <number>, include <number> entries from the top\n"
  1396. #| " -c<number>, -n<number> (or the tail if <number> is lower than "
  1397. #| "0)\n"
  1398. #| " --offset <number>, change the starting point for --count,\n"
  1399. #| " -o<number> counted from the top (or the tail if\n"
  1400. #| " <number> is lower than 0)\n"
  1401. #| " --all include all changes\n"
  1402. msgid ""
  1403. "Parser options:\n"
  1404. " --format <output-format>\n"
  1405. " set output format (defaults to 'dpkg').\n"
  1406. " --all include all changes.\n"
  1407. " -s, --since <version> include all changes later than <version>.\n"
  1408. " -v <version> ditto.\n"
  1409. " -u, --until <version> include all changes earlier than <version>.\n"
  1410. " -f, --from <version> include all changes equal or later than "
  1411. "<version>.\n"
  1412. " -t, --to <version> include all changes up to or equal than "
  1413. "<version>.\n"
  1414. " -c, --count <number> include <number> entries from the top (or tail\n"
  1415. " if <number> is lower than 0).\n"
  1416. " -n <number> ditto.\n"
  1417. " -o, --offset <number> change starting point for --count, counted from\n"
  1418. " the top (or tail if <number> is lower than 0).\n"
  1419. msgstr ""
  1420. "Opciones de análisis:\n"
  1421. " --format <formato-de-salida> Para una lista de los formatos de salida\n"
  1422. " disponibles, consulte la página de manual.\n"
  1423. " El formato predeterminado es «dpkg», para\n"
  1424. " la compatibilidad con dpkg-dev\n"
  1425. " --since <versión>, Incluye los cambios a partir de la versión\n"
  1426. " -s<versión>, -v<versión>\n"
  1427. " --until <versión>, Incluye los cambios anteriores a la versión\n"
  1428. " -u<versión>\n"
  1429. " --from <versión>, Incluye los cambios de la misma versión o\n"
  1430. " -f<versión> posterior\n"
  1431. " --to <versión>, -t<versión> Incluye los cambios de la misma versión o\n"
  1432. " anterior\n"
  1433. " --count <número>, Incluye el <número> de entradas desde el\n"
  1434. " principio -c<número>, -n<número> (o "
  1435. "el final si <número> es menor que cero)\n"
  1436. " --offset <número>, Modifica el punto de partida de «--count»,\n"
  1437. " -o<número> a partir del principio (o el final si el\n"
  1438. " <número> es menor que cero)\n"
  1439. " --all Incluye todos los cambios\n"
  1440. #: scripts/dpkg-parsechangelog.pl
  1441. msgid "missing library directory"
  1442. msgstr ""
  1443. #: scripts/dpkg-parsechangelog.pl
  1444. #, fuzzy
  1445. #| msgid "changelog format %s is unknown"
  1446. msgid "bad changelog format name"
  1447. msgstr "el formato %s del registro de cambios es desconocido"
  1448. #: scripts/dpkg-parsechangelog.pl
  1449. msgid "missing changelog filename"
  1450. msgstr ""
  1451. #: scripts/dpkg-parsechangelog.pl
  1452. msgid "takes no non-option arguments"
  1453. msgstr "no acepta argumentos que no sean una opción"
  1454. #: scripts/dpkg-scanpackages.pl
  1455. #, fuzzy, perl-format
  1456. #| msgid ""
  1457. #| "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1458. #| "Packages\n"
  1459. #| "\n"
  1460. #| "Options:\n"
  1461. #| " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1462. #| " -a, --arch <arch> architecture to scan for.\n"
  1463. #| " -m, --multiversion allow multiple versions of a single package.\n"
  1464. #| " -e, --extra-override <file>\n"
  1465. #| " use extra override file.\n"
  1466. #| " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1467. #| "method\n"
  1468. #| " -?, --help show this help message.\n"
  1469. #| " --version show the version.\n"
  1470. msgid ""
  1471. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1472. "Packages\n"
  1473. "\n"
  1474. "Options:\n"
  1475. " -t, --type <type> scan for <type> packages (default is 'deb').\n"
  1476. " -a, --arch <arch> architecture to scan for.\n"
  1477. " -h, --hash <hash-list> only generate hashes for the specified list.\n"
  1478. " -m, --multiversion allow multiple versions of a single package.\n"
  1479. " -e, --extra-override <file>\n"
  1480. " use extra override file.\n"
  1481. " -M, --medium <medium> add X-Medium field for dselect multicd access "
  1482. "method\n"
  1483. " -?, --help show this help message.\n"
  1484. " --version show the version.\n"
  1485. msgstr ""
  1486. "Uso: %s [<opción> ...] <ruta-binario> [<fichero-override> [<prefijo-ruta>]] "
  1487. "> Paquetes\n"
  1488. "\n"
  1489. "Opciones:\n"
  1490. " -t, --type <tipo> Busca el <tipo> de paquete («deb» por omisión).\n"
  1491. " -a, --arch <arquitec> Arquitectura para la que analizar.\n"
  1492. " -m, --multiversion Permite varias versiones del mismo paquete.\n"
  1493. " -e, --extra-override <fichero>\n"
  1494. " Usa un fichero «override» adicional.\n"
  1495. " -M, --medium <medio> Añade el campo «X-Medium» para el método\n"
  1496. " multicd de dselect.\n"
  1497. " -?, --help Muestra este mensaje de ayuda.\n"
  1498. " --version Muestra la versión.\n"
  1499. #: scripts/dpkg-scanpackages.pl
  1500. #, perl-format
  1501. msgid " %s (package says %s, not %s)"
  1502. msgstr " %s (el paquete devuelve %s, no %s)"
  1503. #: scripts/dpkg-scanpackages.pl
  1504. #, fuzzy, perl-format
  1505. #| msgid "Unconditional maintainer override for %s"
  1506. msgid "unconditional maintainer override for %s"
  1507. msgstr "Sustitución («override») incondicional del encargado para %s"
  1508. #: scripts/dpkg-scanpackages.pl scripts/dpkg-shlibdeps.pl
  1509. #: scripts/Dpkg/Changelog/Parse.pm scripts/Dpkg/IPC.pm
  1510. #: scripts/Dpkg/Shlibs/Objdump.pm
  1511. #, perl-format
  1512. msgid "cannot fork for %s"
  1513. msgstr "no se puede crear un proceso hijo para %s"
  1514. #: scripts/dpkg-scanpackages.pl
  1515. #, perl-format
  1516. msgid "couldn't parse control information from %s"
  1517. msgstr "No se ha podido analizar la información de control de «%s»"
  1518. #: scripts/dpkg-scanpackages.pl
  1519. #, perl-format
  1520. msgid "'dpkg-deb -I %s control' exited with %d, skipping package"
  1521. msgstr "«dpkg-deb -I %s control» finalizó con %d, omitiendo paquete"
  1522. #: scripts/dpkg-scanpackages.pl
  1523. #, fuzzy, perl-format
  1524. #| msgid "No Package field in control file of %s"
  1525. msgid "no Package field in control file of %s"
  1526. msgstr "No existe el campo «Package» en el fichero de control de %s"
  1527. #: scripts/dpkg-scanpackages.pl
  1528. #, fuzzy, perl-format
  1529. #| msgid "Package %s (filename %s) is repeat but newer version;"
  1530. msgid ""
  1531. "package %s (filename %s) is repeat but newer version; used that one and "
  1532. "ignored data from %s!"
  1533. msgstr ""
  1534. "El paquete %s (nombre de fichero %s) está repetido con una versión más "
  1535. "reciente;"
  1536. #: scripts/dpkg-scanpackages.pl
  1537. #, fuzzy, perl-format
  1538. #| msgid "ignored that one and using data from %s!"
  1539. msgid ""
  1540. "package %s (filename %s) is repeat; ignored that one and using data from %s!"
  1541. msgstr "¡se ha ignorado ese y se usarán los datos de %s!"
  1542. #: scripts/dpkg-scanpackages.pl
  1543. #, fuzzy, perl-format
  1544. #| msgid "Package %s (filename %s) has Filename field!"
  1545. msgid "package %s (filename %s) has Filename field!"
  1546. msgstr "¡El paquete %s (fichero «%s») tiene el campo «Filename»!"
  1547. #: scripts/dpkg-scanpackages.pl scripts/dpkg-scansources.pl
  1548. msgid "one to three arguments expected"
  1549. msgstr "Se esperan de uno a tres argumentos"
  1550. #: scripts/dpkg-scanpackages.pl
  1551. #, perl-format
  1552. msgid "unsupported checksum '%s'"
  1553. msgstr "suma de control no soportada `%s'"
  1554. #: scripts/dpkg-scanpackages.pl
  1555. #, fuzzy, perl-format
  1556. #| msgid "Binary dir %s not found"
  1557. msgid "binary directory %s not found"
  1558. msgstr "No se ha encontrado el directorio binario «%s» "
  1559. #: scripts/dpkg-scanpackages.pl
  1560. #, fuzzy, perl-format
  1561. #| msgid "Override file %s not found"
  1562. msgid "override file %s not found"
  1563. msgstr "No se ha encontrado el fichero de sustituciones («override») «%s»"
  1564. #: scripts/dpkg-scanpackages.pl
  1565. #, fuzzy
  1566. #| msgid "Failed when writing stdout"
  1567. msgid "failed when writing stdout"
  1568. msgstr "Se ha detectado un fallo al escribir por la salida estándar"
  1569. #: scripts/dpkg-scanpackages.pl
  1570. #, fuzzy
  1571. #| msgid "Couldn't close stdout"
  1572. msgid "couldn't close stdout"
  1573. msgstr "No se ha podido cerrar la salida estándar"
  1574. #: scripts/dpkg-scanpackages.pl
  1575. msgid "Packages in override file with incorrect old maintainer value:"
  1576. msgstr ""
  1577. "Paquetes en el fichero de sustituciones «override» con un valor incorrecto "
  1578. "de encargado antiguo:"
  1579. #: scripts/dpkg-scanpackages.pl
  1580. msgid "Packages specifying same maintainer as override file:"
  1581. msgstr "Paquetes que definen el mismo encargado que el fichero «override»:"
  1582. #: scripts/dpkg-scanpackages.pl
  1583. msgid "Packages in archive but missing from override file:"
  1584. msgstr "Paquetes en el archivo pero no presentes en el fichero «override»:"
  1585. #: scripts/dpkg-scanpackages.pl
  1586. msgid "Packages in override file but not in archive:"
  1587. msgstr "Paquetes en el fichero «override» pero no en el archivo:"
  1588. #: scripts/dpkg-scanpackages.pl
  1589. #, perl-format
  1590. msgid "Wrote %s entries to output Packages file."
  1591. msgstr "Se han escrito «%s» entradas en el fichero «Packages» de salida."
  1592. #: scripts/dpkg-scansources.pl
  1593. #, perl-format
  1594. msgid ""
  1595. "Usage: %s [<option>...] <binary-path> [<override-file> [<path-prefix>]] > "
  1596. "Sources\n"
  1597. "\n"
  1598. "Options:\n"
  1599. " -n, --no-sort don't sort by package before outputting.\n"
  1600. " -e, --extra-override <file>\n"
  1601. " use extra override file.\n"
  1602. " -s, --source-override <file>\n"
  1603. " use file for additional source overrides, "
  1604. "default\n"
  1605. " is regular override file with .src appended.\n"
  1606. " --debug turn debugging on.\n"
  1607. " -?, --help show this help message.\n"
  1608. " --version show the version.\n"
  1609. "\n"
  1610. "See the man page for the full documentation.\n"
  1611. msgstr ""
  1612. "Uso: %s [<opción>...] <ruta-binario> [<fichero-override> [<prefijo-ruta>]] > "
  1613. "Sources\n"
  1614. "\n"
  1615. "Opciones:\n"
  1616. " -n, --no-sort No ordena por paquete antes de enviar la\n"
  1617. " información de salida.\n"
  1618. " -e, --extra-override <fichero>\n"
  1619. " Usa un fichero «override» adicional.\n"
  1620. " -s, --source-override <fichero>\n"
  1621. " Usa el fichero para sustituciones («override»)\n"
  1622. " adicionales, el comportamiento predefinido\n"
  1623. " es un fichero «override» normal con la\n"
  1624. " extensión «.src».\n"
  1625. " --debug Activa el modo de depuración.\n"
  1626. " -? --help Muestra este mensaje de ayuda.\n"
  1627. " --version Muestra la versión.\n"
  1628. "\n"
  1629. "Consulte la página de manual para una documentación completa.\n"
  1630. #: scripts/dpkg-scansources.pl
  1631. #, perl-format
  1632. msgid "invalid override entry at line %d (%d fields)"
  1633. msgstr ""
  1634. "entrada de sustitución («override») inválida en la línea %d (%d campos)"
  1635. #: scripts/dpkg-scansources.pl
  1636. #, perl-format
  1637. msgid "ignoring duplicate override entry for %s at line %d"
  1638. msgstr ""
  1639. "ignorando una entrada duplicada de sustitución («override») para %s en la "
  1640. "línea %d"
  1641. #: scripts/dpkg-scansources.pl
  1642. #, perl-format
  1643. msgid "ignoring override entry for %s, invalid priority %s"
  1644. msgstr ""
  1645. "ignorando la entrada de sustitución («override») para %s, prioridad inválida "
  1646. "%s"
  1647. #: scripts/dpkg-scansources.pl
  1648. #, perl-format
  1649. msgid "invalid source override entry at line %d (%d fields)"
  1650. msgstr ""
  1651. "entrada de sustitución («override») de fuente inválida en la línea %d (%d "
  1652. "campos)"
  1653. #: scripts/dpkg-scansources.pl
  1654. #, perl-format
  1655. msgid "ignoring duplicate source override entry for %s at line %d"
  1656. msgstr ""
  1657. "ignorando una entrada duplicada de sustitución («override») de fuentes para "
  1658. "%s en la línea %d"
  1659. #: scripts/dpkg-scansources.pl
  1660. #, perl-format
  1661. msgid "no binary packages specified in %s"
  1662. msgstr "no se han definido paquetes binarios en %s"
  1663. #: scripts/dpkg-shlibdeps.pl
  1664. #, perl-format
  1665. msgid "administrative directory '%s' does not exist"
  1666. msgstr "el directorio administrativo «%s» no existe"
  1667. #: scripts/dpkg-shlibdeps.pl
  1668. #, perl-format
  1669. msgid "unrecognized dependency field '%s'"
  1670. msgstr "El campo de dependencias «%s» es desconocido"
  1671. #: scripts/dpkg-shlibdeps.pl
  1672. msgid "need at least one executable"
  1673. msgstr "se requiere al menos un ejecutable"
  1674. #: scripts/dpkg-shlibdeps.pl
  1675. #, perl-format
  1676. msgid "couldn't find library %s needed by %s (ELF format: '%s'; RPATH: '%s')"
  1677. msgstr ""
  1678. "no se ha encontrado la biblioteca %s requerida por %s (formato ELF: '%s'; "
  1679. "RPATH: '%s')"
  1680. #: scripts/dpkg-shlibdeps.pl
  1681. #, perl-format
  1682. msgid "%s has an unexpected SONAME (%s)"
  1683. msgstr "%s tiene un SONAME inesperado (%s)"
  1684. #: scripts/dpkg-shlibdeps.pl
  1685. #, fuzzy, perl-format
  1686. #| msgid "no dependency information found for %s (used by %s)"
  1687. msgid ""
  1688. "no dependency information found for %s (used by %s)\n"
  1689. "Hint: check if the library actually comes from a package."
  1690. msgstr ""
  1691. "No se ha encontrado información de dependencia para %s (utilizado por %s)"
  1692. #: scripts/dpkg-shlibdeps.pl
  1693. msgid ""
  1694. "binaries to analyze should already be installed in their package's directory"
  1695. msgstr ""
  1696. "Los binarios que analizar ya deberían estar instalados en el directorio de "
  1697. "su paquete"
  1698. #: scripts/dpkg-shlibdeps.pl
  1699. #, perl-format
  1700. msgid "symbol %s used by %s found in none of the libraries"
  1701. msgstr ""
  1702. "No se ha encontrado en ninguna biblioteca el símbolo «%s», usado por %s"
  1703. #: scripts/dpkg-shlibdeps.pl
  1704. #, perl-format
  1705. msgid ""
  1706. "%s contains an unresolvable reference to symbol %s: it's probably a plugin"
  1707. msgstr ""
  1708. "%s contiene una referencia irresoluble al símbolo %s: posiblemente sea una "
  1709. "extensión"
  1710. #: scripts/dpkg-shlibdeps.pl
  1711. #, perl-format
  1712. msgid "%d similar warning has been skipped (use -v to see it)"
  1713. msgid_plural ""
  1714. "%d other similar warnings have been skipped (use -v to see them all)"
  1715. msgstr[0] "Se ha omitido %d aviso similar (use «-v» para verlo)"
  1716. msgstr[1] ""
  1717. "Se han omitido otros %d avisos similares (use «-v» para verlos todos)"
  1718. #: scripts/dpkg-shlibdeps.pl
  1719. #, perl-format
  1720. msgid ""
  1721. "%s should not be linked against %s (it uses none of the library's symbols)"
  1722. msgstr ""
  1723. "%s no debería estar enlazado con %s (no usa ninguno de los símbolos de "
  1724. "biblioteca)"
  1725. #: scripts/dpkg-shlibdeps.pl
  1726. #, perl-format
  1727. msgid ""
  1728. "package could avoid a useless dependency if %s was not linked against %s (it "
  1729. "uses none of the library's symbols)"
  1730. msgid_plural ""
  1731. "package could avoid a useless dependency if %s were not linked against %s "
  1732. "(they use none of the library's symbols)"
  1733. msgstr[0] ""
  1734. "el paquete puede evitar una dependencia superflua si %s no se enlaza con %s "
  1735. "(no utiliza ningún símbolo de la biblioteca)"
  1736. msgstr[1] ""
  1737. "el paquete puede evitar una dependencia superflua si %s no se enlaza con %s "
  1738. "(no utilizan ningún símbolo de la biblioteca)"
  1739. #: scripts/dpkg-shlibdeps.pl
  1740. #, fuzzy
  1741. #| msgid ""
  1742. #| "Note: libraries are not searched in other binary packages that do not "
  1743. #| "have any shlibs or symbols file.\n"
  1744. #| "To help dpkg-shlibdeps find private libraries, you might need to set "
  1745. #| "LD_LIBRARY_PATH."
  1746. msgid ""
  1747. "Note: libraries are not searched in other binary packages that do not have "
  1748. "any shlibs or symbols file.\n"
  1749. "To help dpkg-shlibdeps find private libraries, you might need to use -l."
  1750. msgstr ""
  1751. "Nota: no se buscan bibliotecas en otros paquetes binarios que no tienen\n"
  1752. "ningún fichero de símbolos («symbols») o de bibliotecas compartidas\n"
  1753. "(«shlibs»).\n"
  1754. "Puede que tenga que definir «LD_LIBRARY_PATH» para ayudar a que dpkg-"
  1755. "shlibdeps encuentre bibliotecas privadas."
  1756. #: scripts/dpkg-shlibdeps.pl
  1757. msgid "cannot continue due to the error above"
  1758. msgid_plural "cannot continue due to the errors listed above"
  1759. msgstr[0] "No se puede continuar debido al fallo mostrado"
  1760. msgstr[1] "No se puede continuar debido a los fallos anteriores"
  1761. #: scripts/dpkg-shlibdeps.pl
  1762. #, perl-format
  1763. msgid "invalid dependency got generated: %s"
  1764. msgstr "se ha generado una dependencia inválida: %s"
  1765. #: scripts/dpkg-shlibdeps.pl
  1766. #, perl-format
  1767. msgid "install new varlist file '%s'"
  1768. msgstr "instalar el nuevo fichero de lista de variables «%s»"
  1769. #: scripts/dpkg-shlibdeps.pl
  1770. #, perl-format
  1771. msgid "Usage: %s [<option>...] <executable>|-e<executable> [<option>...]"
  1772. msgstr "Uso: %s [<opción>...] <ejecutable>|-e<ejecutable> [<opción>...]"
  1773. #: scripts/dpkg-shlibdeps.pl
  1774. msgid ""
  1775. "Positional options (order is significant):\n"
  1776. " <executable> include dependencies for <executable>,\n"
  1777. " -e<executable> (use -e if <executable> starts with '-')\n"
  1778. " -d<dependency-field> next executable(s) set shlibs:<dependency-field>."
  1779. msgstr ""
  1780. "Opciones posicionales (el orden importa):\n"
  1781. " <ejecutable> Incluye las dependencias para <ejecutable>,\n"
  1782. " -e<ejecutable> (Utilice -e si el <ejecutable> empieza con «-»)\n"
  1783. " -d<campo-de-dependencia> La o las siguientes órdenes definen\n"
  1784. " shlibs:<campo-de-dependencia>."
  1785. #: scripts/dpkg-shlibdeps.pl
  1786. #, fuzzy
  1787. #| msgid ""
  1788. #| "Options:\n"
  1789. #| " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1790. #| " -O print variable settings to stdout.\n"
  1791. #| " -L<local-shlibs-file> shlibs override file, not debian/shlibs."
  1792. #| "local.\n"
  1793. #| " -T<substvars-file> update variables here, not debian/substvars.\n"
  1794. #| " -t<type> set package type (default is deb).\n"
  1795. #| " -x<package> exclude package from the generated "
  1796. #| "dependencies.\n"
  1797. #| " -S<package-build-dir> search needed libraries in the given\n"
  1798. #| " package build directory first.\n"
  1799. #| " -v enable verbose mode (can be used multiple "
  1800. #| "times).\n"
  1801. #| " --ignore-missing-info don't fail if dependency information can't be "
  1802. #| "found.\n"
  1803. #| " --warnings=<value> define set of active warnings (see manual "
  1804. #| "page).\n"
  1805. #| " --admindir=<directory> change the administrative directory.\n"
  1806. #| " -?, --help show this help message.\n"
  1807. #| " --version show the version."
  1808. msgid ""
  1809. "Options:\n"
  1810. " -l<library-dir> add directory to private shared library search "
  1811. "list.\n"
  1812. " -p<varname-prefix> set <varname-prefix>:* instead of shlibs:*.\n"
  1813. " -O[<file>] write variable settings to stdout (or <file>).\n"
  1814. " -L<local-shlibs-file> shlibs override file, not debian/shlibs.local.\n"
  1815. " -T<substvars-file> update variables here, not debian/substvars.\n"
  1816. " -t<type> set package type (default is deb).\n"
  1817. " -x<package> exclude package from the generated dependencies.\n"
  1818. " -S<package-build-dir> search needed libraries in the given\n"
  1819. " package build directory first.\n"
  1820. " -v enable verbose mode (can be used multiple "
  1821. "times).\n"
  1822. " --ignore-missing-info don't fail if dependency information can't be "
  1823. "found.\n"
  1824. " --warnings=<value> define set of active warnings (see manual page).\n"
  1825. " --admindir=<directory> change the administrative directory.\n"
  1826. " -?, --help show this help message.\n"
  1827. " --version show the version."
  1828. msgstr ""
  1829. "Opciones:\n"
  1830. " -p<prefijo-nombre-variable> Define el <prefijo-nombre-variable> en lugar\n"
  1831. " de shlibs:*.\n"
  1832. " -O Muestra la configuración de variables por la\n"
  1833. " salida estándar.\n"
  1834. " -L<fichero-local-shlibs> Fichero de sustitución de bibliotecas\n"
  1835. " compartidas, en lugar de «debian/shlibs.local».\n"
  1836. " -T<fichero-substvars> Actualiza aquí las variables, y no en\n"
  1837. " «debian/substvars».\n"
  1838. " -t<tipo> Define el tipo de paquete (por omisión, deb).\n"
  1839. " -x<paquete> Excluye al paquete de las dependencias "
  1840. "generadas.\n"
  1841. " -S<directorio-construcción-paquete> Busca las bibliotecas requeridas\n"
  1842. " primero en el directorio de construcción de\n"
  1843. " paquete.\n"
  1844. " -v Activa el modo informativo (se puede utilizar\n"
  1845. " varias veces).\n"
  1846. " --ignore-missing-info No falla si no encuentra la información de\n"
  1847. " las dependencias.\n"
  1848. " --warnings=<valor> Define el conjunto de avisos activos (consulte\n"
  1849. " la página de manual).\n"
  1850. " --admindir=<directorio> Cambia el directorio administrativo.\n"
  1851. " -?, --help Muestra este mensaje de ayuda.\n"
  1852. " --version Muestra la versión."
  1853. #: scripts/dpkg-shlibdeps.pl
  1854. #, perl-format
  1855. msgid ""
  1856. "Dependency fields recognized are:\n"
  1857. " %s\n"
  1858. msgstr ""
  1859. "Los campos de dependencia reconocidos son:\n"
  1860. " %s\n"
  1861. #: scripts/dpkg-shlibdeps.pl
  1862. #, fuzzy, perl-format
  1863. #| msgid "Can't extract name and version from library name `%s'"
  1864. msgid "can't extract name and version from library name '%s'"
  1865. msgstr ""
  1866. "No se puede extraer el nombre y la versión del nombre de la biblioteca «%s»"
  1867. #: scripts/dpkg-shlibdeps.pl
  1868. #, perl-format
  1869. msgid "unable to open shared libs info file '%s'"
  1870. msgstr ""
  1871. "No se ha podido abrir el fichero de información de bibliotecas compartidas "
  1872. "«%s»"
  1873. #: scripts/dpkg-shlibdeps.pl
  1874. #, perl-format
  1875. msgid "shared libs info file '%s' line %d: bad line '%s'"
  1876. msgstr ""
  1877. "fichero de información de bibliotecas compartidas «%s», línea %d: línea "
  1878. "incorrecta «%s»"
  1879. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/Checksums.pm
  1880. #, perl-format
  1881. msgid "cannot open file %s"
  1882. msgstr "no se ha podido abrir el fichero «%s»"
  1883. #: scripts/dpkg-shlibdeps.pl
  1884. #, perl-format
  1885. msgid ""
  1886. "$ORIGIN is used in RPATH of %s and the corresponding directory could not be "
  1887. "identified due to lack of DEBIAN sub-directory in the root of package's "
  1888. "build tree"
  1889. msgstr ""
  1890. "«$ORIGIN» se usa en la «RPATH» de %s, y no se pudo identificar el directorio "
  1891. "correspondiente debido a la falta de un subdirectorio «DEBIAN» en la raíz de "
  1892. "del árbol de construcción del paquete"
  1893. #: scripts/dpkg-shlibdeps.pl scripts/Dpkg/IPC.pm scripts/Dpkg/Shlibs/Cppfilt.pm
  1894. #, perl-format
  1895. msgid "unable to execute %s"
  1896. msgstr "no se pudo ejecutar %s"
  1897. #: scripts/dpkg-shlibdeps.pl
  1898. msgid "diversions involved - output may be incorrect"
  1899. msgstr "redirecciones implicadas - puede que la salida sea incorrecta"
  1900. #: scripts/dpkg-shlibdeps.pl
  1901. msgid "write diversion info to stderr"
  1902. msgstr "escribir la información de redirección por la salida de error estándar"
  1903. #: scripts/dpkg-shlibdeps.pl
  1904. #, perl-format
  1905. msgid "unknown output from dpkg --search: '%s'"
  1906. msgstr "la salida de «dpkg --search» es desconocida: «%s»"
  1907. #: scripts/dpkg-source.pl
  1908. #, fuzzy, perl-format
  1909. #| msgid "%s needs a directory"
  1910. msgid "--%s needs a directory"
  1911. msgstr "%s requiere un directorio"
  1912. #: scripts/dpkg-source.pl
  1913. #, perl-format
  1914. msgid "cannot stat directory %s"
  1915. msgstr "no se pudo obtener el estado («stat») del directorio «%s»"
  1916. #: scripts/dpkg-source.pl
  1917. #, perl-format
  1918. msgid "directory argument %s is not a directory"
  1919. msgstr "el argumento de directorio «%s» no es un directorio"
  1920. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V2.pm
  1921. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  1922. #, perl-format
  1923. msgid "unable to chdir to '%s'"
  1924. msgstr "no se puede ejecutar chdir a «%s»"
  1925. #: scripts/dpkg-source.pl
  1926. #, perl-format
  1927. msgid "using options from %s: %s"
  1928. msgstr "usando opciones de %s: %s"
  1929. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1930. #, perl-format
  1931. msgid "%s is not a supported compression"
  1932. msgstr "%s no es una compresión compatible"
  1933. #: scripts/dpkg-source.pl scripts/Dpkg/Compression.pm
  1934. #: scripts/Dpkg/Compression/Process.pm
  1935. #, perl-format
  1936. msgid "%s is not a compression level"
  1937. msgstr "%s no es un nivel de compresión"
  1938. #: scripts/dpkg-source.pl scripts/dpkg-vendor.pl
  1939. msgid "need an action option"
  1940. msgstr "es necesaria una opción de acción"
  1941. #: scripts/dpkg-source.pl
  1942. #, perl-format
  1943. msgid "%s doesn't contain any information about the source package"
  1944. msgstr "%s no contiene información sobre el paquete fuente"
  1945. #: scripts/dpkg-source.pl
  1946. #, perl-format
  1947. msgid ""
  1948. "binary package stanza %s is using an obsolete Build-Profiles field syntax"
  1949. msgstr ""
  1950. "la definición de paquete binario %s está utilizando una síntaxis del campo "
  1951. "«Build-Profiles» obsoleta"
  1952. #: scripts/dpkg-source.pl
  1953. #, perl-format
  1954. msgid "'%s' is not a legal architecture string"
  1955. msgstr "«%s» no es una cadena de arquitectura legal"
  1956. #: scripts/dpkg-source.pl
  1957. #, perl-format
  1958. msgid "architecture %s only allowed on its own (list for package %s is '%s')"
  1959. msgstr ""
  1960. "sólo se permite la arquitectura %s cuando ninguna otra aparece (la lista del "
  1961. "paquete %s es «%s»)"
  1962. #: scripts/dpkg-source.pl
  1963. #, perl-format
  1964. msgid "%s doesn't list any binary package"
  1965. msgstr "%s no menciona ningún paquete binario"
  1966. #: scripts/dpkg-source.pl
  1967. msgid "building source for a binary-only release"
  1968. msgstr "generando fuentes para una publicación solo binaria"
  1969. #: scripts/dpkg-source.pl
  1970. #, perl-format
  1971. msgid "no source format specified in %s, see dpkg-source(1)"
  1972. msgstr ""
  1973. "no se ha definido un formato de fuentes en «%s», consulte dpkg-source(1)"
  1974. #: scripts/dpkg-source.pl
  1975. #, perl-format
  1976. msgid "can't build with source format '%s': %s"
  1977. msgstr "no se puede construir con el formato de fuente «%s»: %s"
  1978. #: scripts/dpkg-source.pl
  1979. #, perl-format
  1980. msgid "using source format '%s'"
  1981. msgstr "usando el formato de fuente «%s»"
  1982. #: scripts/dpkg-source.pl scripts/Dpkg/Source/Package/V1.pm
  1983. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  1984. #: scripts/Dpkg/Source/Package/V3/Native.pm
  1985. #, perl-format
  1986. msgid "building %s in %s"
  1987. msgstr "construyendo %s en %s"
  1988. #: scripts/dpkg-source.pl
  1989. #, fuzzy, perl-format
  1990. #| msgid "-x needs at least one argument, the .dsc"
  1991. msgid "--%s needs at least one argument, the .dsc"
  1992. msgstr "«-x» requiere al menos un argumento, el fichero «.dsc»"
  1993. #: scripts/dpkg-source.pl
  1994. #, fuzzy, perl-format
  1995. #| msgid "-x takes no more than two arguments"
  1996. msgid "--%s takes no more than two arguments"
  1997. msgstr "«-x» no acepta más de dos argumentos"
  1998. #: scripts/dpkg-source.pl
  1999. #, fuzzy, perl-format
  2000. #| msgid "-x needs the .dsc file as first argument, not a directory"
  2001. msgid "--%s needs the .dsc file as first argument, not a directory"
  2002. msgstr ""
  2003. "«-x» requiere el fichero «.dsc» como el primer argumento, no un directorio"
  2004. #: scripts/dpkg-source.pl
  2005. #, perl-format
  2006. msgid "unpack target exists: %s"
  2007. msgstr "el destino de los datos desempaquetados ya existe: %s"
  2008. #: scripts/dpkg-source.pl
  2009. #, perl-format
  2010. msgid "%s doesn't contain a valid OpenPGP signature"
  2011. msgstr "%s no contiene una firma OpenPGP válida"
  2012. #: scripts/dpkg-source.pl
  2013. #, perl-format
  2014. msgid "extracting unsigned source package (%s)"
  2015. msgstr "extrayendo el paquete fuente sin firmar (%s)"
  2016. #: scripts/dpkg-source.pl
  2017. #, perl-format
  2018. msgid "extracting %s in %s"
  2019. msgstr "extrayendo %s en %s"
  2020. #: scripts/dpkg-source.pl
  2021. #, perl-format
  2022. msgid "%s field contains value %s, but no tests control file %s"
  2023. msgstr ""
  2024. "el campo %s contiene el valor %s, pero no existe un archivo de control de "
  2025. "pruebas %s"
  2026. #: scripts/dpkg-source.pl
  2027. #, perl-format
  2028. msgid "Usage: %s [<option>...] <command>"
  2029. msgstr "Uso: %s [<opción>...] <orden>"
  2030. #: scripts/dpkg-source.pl
  2031. #, fuzzy
  2032. #| msgid ""
  2033. #| "Commands:\n"
  2034. #| " -x <filename>.dsc [<output-dir>]\n"
  2035. #| " extract source package.\n"
  2036. #| " -b <dir> build source package.\n"
  2037. #| " --print-format <dir> print the source format that would be\n"
  2038. #| " used to build the source package.\n"
  2039. #| " --commit [<dir> [<patch-name>]]\n"
  2040. #| " store upstream changes in a new patch."
  2041. msgid ""
  2042. "Commands:\n"
  2043. " -x, --extract <filename>.dsc [<output-dir>]\n"
  2044. " extract source package.\n"
  2045. " -b, --build <dir> build source package.\n"
  2046. " --print-format <dir> print the format to be used for the source "
  2047. "package.\n"
  2048. " --commit [<dir> [<patch-name>]]\n"
  2049. " store upstream changes in a new patch."
  2050. msgstr ""
  2051. "Commands:\n"
  2052. " -x <fichero>.dsc [<directorio-de-salida>]\n"
  2053. " Extrae el paquete fuente.\n"
  2054. " -b <directorio> Genere el paquete fuente.\n"
  2055. " --print-format <directorio>\n"
  2056. " Muestra el formato de fuentes que se va a\n"
  2057. " utilizar para construir el paquete fuente.\n"
  2058. " --commit [<directorio> [<nombre-de-parche>]]\n"
  2059. " Guarda los cambios en las fuentes originales en "
  2060. "un parche nuevo."
  2061. #: scripts/dpkg-source.pl
  2062. #, fuzzy, perl-format
  2063. #| msgid ""
  2064. #| "Build options:\n"
  2065. #| " -c<control-file> get control info from this file.\n"
  2066. #| " -l<changelog-file> get per-version info from this file.\n"
  2067. #| " -F<changelog-format> force changelog format.\n"
  2068. #| " -V<name>=<value> set a substitution variable.\n"
  2069. #| " -T<substvars-file> read variables here.\n"
  2070. #| " -D<field>=<value> override or add a .dsc field and value.\n"
  2071. #| " -U<field> remove a field.\n"
  2072. #| " -q quiet mode.\n"
  2073. #| " -i[<regexp>] filter out files to ignore diffs of\n"
  2074. #| " (defaults to: '%s').\n"
  2075. #| " -I[<pattern>] filter out files when building tarballs\n"
  2076. #| " (defaults to: %s).\n"
  2077. #| " -Z<compression> select compression to use (defaults to '%s',\n"
  2078. #| " supported are: %s).\n"
  2079. #| " -z<level> compression level to use (defaults to '%d',\n"
  2080. #| " supported are: '1'-'9', 'best', 'fast')"
  2081. msgid ""
  2082. "Build options:\n"
  2083. " -c<control-file> get control info from this file.\n"
  2084. " -l<changelog-file> get per-version info from this file.\n"
  2085. " -F<changelog-format> force changelog format.\n"
  2086. " --format=<source-format> set the format to be used for the source "
  2087. "package.\n"
  2088. " -V<name>=<value> set a substitution variable.\n"
  2089. " -T<substvars-file> read variables here.\n"
  2090. " -D<field>=<value> override or add a .dsc field and value.\n"
  2091. " -U<field> remove a field.\n"
  2092. " -q quiet mode.\n"
  2093. " -i[<regex>] filter out files to ignore diffs of\n"
  2094. " (defaults to: '%s').\n"
  2095. " -I[<pattern>] filter out files when building tarballs\n"
  2096. " (defaults to: %s).\n"
  2097. " -Z<compression> select compression to use (defaults to '%s',\n"
  2098. " supported are: %s).\n"
  2099. " -z<level> compression level to use (defaults to '%d',\n"
  2100. " supported are: '1'-'9', 'best', 'fast')"
  2101. msgstr ""
  2102. "Opciones de construcción:\n"
  2103. " -c<fichero-control> Obtiene la información de control de este\n"
  2104. " fichero.\n"
  2105. " -l<fichero-changelog> Obtiene la información de la versión de este\n"
  2106. " fichero.\n"
  2107. " -F<formato-registro> Fuerza el formato del registro de cambios.\n"
  2108. " -V<nombre>=<valor> Define una variable de sustitución.\n"
  2109. " -T<fichero-de-sustitución-de-variables>\n"
  2110. " Lee las variables de este fichero.\n"
  2111. " -D<campo>=<valor> Sustituye o añade un campo «.dsc» y el valor.\n"
  2112. " -U<campo> Elimina un campo.\n"
  2113. " -q Modo silencioso.\n"
  2114. " -i[<expresión-regular>] Filtra ficheros a ignorar en los «diff»\n"
  2115. " (por omisión: «%s»).\n"
  2116. " -I[<patrón>] Omite ficheros al construir archivos tar\n"
  2117. " (por omisión: %s).\n"
  2118. " -Z<compresión> Selecciona la compresión a usar (por omisión "
  2119. "'%s',\n"
  2120. " aceptados: %s).\n"
  2121. " -z<nivel> Nivel de compresión a usar (por omisión, '%d',\n"
  2122. " aceptados: '1'-'9', 'best', 'fast')"
  2123. #: scripts/dpkg-source.pl
  2124. #, fuzzy
  2125. #| msgid ""
  2126. #| "Extract options:\n"
  2127. #| " --no-copy don't copy .orig tarballs\n"
  2128. #| " --no-check don't check signature and checksums before "
  2129. #| "unpacking\n"
  2130. #| " --require-valid-signature abort if the package doesn't have a valid "
  2131. #| "signature"
  2132. msgid ""
  2133. "Extract options:\n"
  2134. " --no-copy don't copy .orig tarballs\n"
  2135. " --no-check don't check signature and checksums before "
  2136. "unpacking\n"
  2137. " --require-valid-signature abort if the package doesn't have a valid "
  2138. "signature\n"
  2139. " --ignore-bad-version allow bad source package versions."
  2140. msgstr ""
  2141. "Opciones de extracción:\n"
  2142. " --no-copy No copia archivos tar «.orig».\n"
  2143. " --no-check No comprueba la firma y las sumas de control\n"
  2144. " antes de desempaquetar.\n"
  2145. " --require-valid-signature Cancela si el paquete no tiene una firma válida."
  2146. #: scripts/dpkg-source.pl
  2147. msgid ""
  2148. "General options:\n"
  2149. " -?, --help show this help message.\n"
  2150. " --version show the version."
  2151. msgstr ""
  2152. "Opciones generales:\n"
  2153. " -?, --help Muestra este mensaje de ayuda.\n"
  2154. " --version Muestra la versión."
  2155. #: scripts/dpkg-source.pl
  2156. msgid ""
  2157. "More options are available but they depend on the source package format.\n"
  2158. "See dpkg-source(1) for more info."
  2159. msgstr ""
  2160. "Dispone de más opciones, pero dependen del formato de paquete fuente.\n"
  2161. "Para más información consulte dpkg-source(1)."
  2162. #: scripts/dpkg-vendor.pl
  2163. msgid ""
  2164. "Commands:\n"
  2165. " --is <vendor> returns true if current vendor is <vendor>.\n"
  2166. " --derives-from <vendor> returns true if current vendor derives from "
  2167. "<vendor>.\n"
  2168. " --query <field> print the content of the vendor-specific field.\n"
  2169. " --help show this help message.\n"
  2170. " --version show the version."
  2171. msgstr ""
  2172. "Órdenes:\n"
  2173. " --is <fabricante> Devuelve cierto si el fabricante actual es "
  2174. "<fabricante>.\n"
  2175. " --derives-from <fabricante> Devuelve cierto si el fabricante actual es una "
  2176. "derivación\n"
  2177. " de <fabricante>.\n"
  2178. " --query <campo> Imprime el contenido de un campo específico de "
  2179. "fabricante.\n"
  2180. " --help Muestra este mensaje de ayuda.\n"
  2181. " --version Muestra la versión."
  2182. #: scripts/dpkg-vendor.pl
  2183. msgid ""
  2184. "Options:\n"
  2185. " --vendor <vendor> assume <vendor> is the current vendor."
  2186. msgstr ""
  2187. "Opciones:\n"
  2188. " --vendor <fabricante> asume que <fabricante> es el fabricante actual."
  2189. #: scripts/dpkg-vendor.pl
  2190. #, fuzzy, perl-format
  2191. #| msgid "%s does not exist"
  2192. msgid "vendor %s doesn't exist in %s"
  2193. msgstr "%s no existe"
  2194. #: scripts/changelog/debian.pl
  2195. #, fuzzy, perl-format
  2196. #| msgid "Usage: %s [<option>...] [<control-file>]"
  2197. msgid "Usage: %s [<option>...] [<changelog-file>]"
  2198. msgstr "Uso: %s [<opción>...] [<fichero-control>]"
  2199. #: scripts/changelog/debian.pl
  2200. #, fuzzy
  2201. #| msgid ""
  2202. #| "Parser options:\n"
  2203. #| " --format <output-format> see man page for list of available\n"
  2204. #| " output formats, defaults to 'dpkg'\n"
  2205. #| " for compatibility with dpkg-dev\n"
  2206. #| " --since <version>, include all changes later than version\n"
  2207. #| " -s<version>, -v<version>\n"
  2208. #| " --until <version>, include all changes earlier than version\n"
  2209. #| " -u<version>\n"
  2210. #| " --from <version>, include all changes equal or later\n"
  2211. #| " -f<version> than version\n"
  2212. #| " --to <version>, -t<version> include all changes up to or equal\n"
  2213. #| " than version\n"
  2214. #| " --count <number>, include <number> entries from the top\n"
  2215. #| " -c<number>, -n<number> (or the tail if <number> is lower than "
  2216. #| "0)\n"
  2217. #| " --offset <number>, change the starting point for --count,\n"
  2218. #| " -o<number> counted from the top (or the tail if\n"
  2219. #| " <number> is lower than 0)\n"
  2220. #| " --all include all changes\n"
  2221. msgid ""
  2222. "Options:\n"
  2223. " --file <file> changelog <file> to parse (defaults to '-').\n"
  2224. " -l, --label <file> changelog <file> name to use in error messages.\n"
  2225. " --format <output-format>\n"
  2226. " set the output format (defaults to 'dpkg').\n"
  2227. " --all include all changes.\n"
  2228. " -s, --since <version> include all changes later than <version>.\n"
  2229. " -v <version> ditto.\n"
  2230. " -u, --until <version> include all changes earlier than <version>.\n"
  2231. " -f, --from <version> include all changes equal or later than "
  2232. "<version>.\n"
  2233. " -t, --to <version> include all changes up to or equal than "
  2234. "<version>.\n"
  2235. " -c, --count <number> include <number> entries from the top (or tail if\n"
  2236. " <number> is lower than 0).\n"
  2237. " -n <number> ditto.\n"
  2238. " -o, --offset <number> change starting point for --count, counted from\n"
  2239. " the top (or tail if <number> is lower than 0).\n"
  2240. " -?, --help print usage information.\n"
  2241. " -V, --version print version information.\n"
  2242. msgstr ""
  2243. "Opciones de análisis:\n"
  2244. " --format <formato-de-salida> Para una lista de los formatos de salida\n"
  2245. " disponibles, consulte la página de manual.\n"
  2246. " El formato predeterminado es «dpkg», para\n"
  2247. " la compatibilidad con dpkg-dev\n"
  2248. " --since <versión>, Incluye los cambios a partir de la versión\n"
  2249. " -s<versión>, -v<versión>\n"
  2250. " --until <versión>, Incluye los cambios anteriores a la versión\n"
  2251. " -u<versión>\n"
  2252. " --from <versión>, Incluye los cambios de la misma versión o\n"
  2253. " -f<versión> posterior\n"
  2254. " --to <versión>, -t<versión> Incluye los cambios de la misma versión o\n"
  2255. " anterior\n"
  2256. " --count <número>, Incluye el <número> de entradas desde el\n"
  2257. " principio -c<número>, -n<número> (o "
  2258. "el final si <número> es menor que cero)\n"
  2259. " --offset <número>, Modifica el punto de partida de «--count»,\n"
  2260. " -o<número> a partir del principio (o el final si el\n"
  2261. " <número> es menor que cero)\n"
  2262. " --all Incluye todos los cambios\n"
  2263. #: scripts/changelog/debian.pl
  2264. #, perl-format
  2265. msgid "output format %s not supported"
  2266. msgstr "el formato de salida «%s» no es compatible"
  2267. #: scripts/changelog/debian.pl
  2268. #, perl-format
  2269. msgid "more than one file specified (%s and %s)"
  2270. msgstr "se ha definido más de un fichero (%s y %s)"
  2271. #: scripts/changelog/debian.pl scripts/Dpkg/Changelog/Parse.pm
  2272. #, perl-format
  2273. msgid "fatal error occurred while parsing %s"
  2274. msgstr "se ha detectado un error fatal al analizar %s"
  2275. #: scripts/Dpkg/Arch.pm
  2276. #, fuzzy
  2277. #| msgid ""
  2278. #| "Couldn't determine gcc system type, falling back to default (native "
  2279. #| "compilation)"
  2280. msgid ""
  2281. "cannot determine CC system type, falling back to default (native compilation)"
  2282. msgstr ""
  2283. "No se ha podido determinar el tipo de sistema de gcc, usando el predefinido, "
  2284. "(compilación nativa)."
  2285. #: scripts/Dpkg/Arch.pm
  2286. #, fuzzy, perl-format
  2287. #| msgid ""
  2288. #| "Unknown gcc system type %s, falling back to default (native compilation)"
  2289. msgid "unknown CC system type %s, falling back to default (native compilation)"
  2290. msgstr ""
  2291. "El tipo de sistema gcc %s es desconocido, usando el predefinido (compilación "
  2292. "nativa)"
  2293. #: scripts/Dpkg/BuildFlags.pm
  2294. #, perl-format
  2295. msgid "line %d of %s mentions unknown flag %s"
  2296. msgstr "la línea %d en %s menciona una opción desconocida %s"
  2297. #: scripts/Dpkg/BuildFlags.pm
  2298. #, perl-format
  2299. msgid "line %d of %s is invalid, it has been ignored"
  2300. msgstr "la línea %d de %s es inválida, se ha ignorado"
  2301. #: scripts/Dpkg/BuildOptions.pm
  2302. #, perl-format
  2303. msgid "invalid flag in %s: %s"
  2304. msgstr "se ha detectado una opción inválida en %s: %s"
  2305. #: scripts/Dpkg/Changelog.pm scripts/Dpkg/ErrorHandling.pm
  2306. msgid "warning"
  2307. msgstr "aviso"
  2308. #: scripts/Dpkg/Changelog.pm
  2309. #, perl-format
  2310. msgid ""
  2311. "%s(l%s): %s\n"
  2312. "LINE: %s"
  2313. msgstr ""
  2314. "%s(l%s): %s\n"
  2315. "LÍNEA: %s"
  2316. #: scripts/Dpkg/Changelog.pm
  2317. #, perl-format
  2318. msgid "%s(l%s): %s"
  2319. msgstr "%s(l%s): %s"
  2320. #: scripts/Dpkg/Changelog.pm
  2321. msgid "'offset' without 'count' has no effect"
  2322. msgstr "«offset» sin «count» no tiene efecto"
  2323. #: scripts/Dpkg/Changelog.pm
  2324. msgid "you can't combine 'count' or 'offset' with any other range option"
  2325. msgstr ""
  2326. "no se puede combinar «count» u «offset» con cualquier otra opción de rango"
  2327. #: scripts/Dpkg/Changelog.pm
  2328. msgid "you can only specify one of 'from' and 'since', using 'since'"
  2329. msgstr "sólo puede definir o bien «from» o «since», usando «since»"
  2330. #: scripts/Dpkg/Changelog.pm
  2331. msgid "you can only specify one of 'to' and 'until', using 'until'"
  2332. msgstr "sólo puede definir o bien «to» o «until», usando «until»"
  2333. #: scripts/Dpkg/Changelog.pm
  2334. #, perl-format
  2335. msgid "'%s' option specifies non-existing version"
  2336. msgstr "la opción «%s» define un versión que no existe"
  2337. #: scripts/Dpkg/Changelog.pm
  2338. msgid "use newest entry that is earlier than the one specified"
  2339. msgstr "use la entrada más reciente que sea antigua que la que se ha definido"
  2340. #: scripts/Dpkg/Changelog.pm
  2341. msgid "none found, starting from the oldest entry"
  2342. msgstr "no se ha encontrado nada, iniciando desde la entrada más antigua"
  2343. #: scripts/Dpkg/Changelog.pm
  2344. msgid "use oldest entry that is later than the one specified"
  2345. msgstr "usar la entrada más antigua que es posterior a la que se ha definido"
  2346. #: scripts/Dpkg/Changelog.pm
  2347. #, perl-format
  2348. msgid "no such entry found, ignoring '%s' parameter"
  2349. msgstr "no se ha encontrado esa entrada, ignorando el parámetro «%s»"
  2350. #: scripts/Dpkg/Changelog.pm
  2351. msgid "'since' option specifies most recent version, ignoring"
  2352. msgstr "la opción «since» define la versión más reciente, omitiendo"
  2353. #: scripts/Dpkg/Changelog.pm
  2354. msgid "'until' option specifies oldest version, ignoring"
  2355. msgstr "la opción «until» define la versión más antigua, omitiendo"
  2356. #: scripts/Dpkg/Changelog/Debian.pm
  2357. msgid "first heading"
  2358. msgstr "primera cabecera"
  2359. #: scripts/Dpkg/Changelog/Debian.pm
  2360. #, fuzzy
  2361. #| msgid "next heading or eof"
  2362. msgid "next heading or end of file"
  2363. msgstr "siguiente cabecera o fin de línea"
  2364. #: scripts/Dpkg/Changelog/Debian.pm
  2365. msgid "start of change data"
  2366. msgstr "principio de los datos de cambios"
  2367. #: scripts/Dpkg/Changelog/Debian.pm
  2368. msgid "more change data or trailer"
  2369. msgstr "más cambios de datos o línea de separación («trailer»)"
  2370. #: scripts/Dpkg/Changelog/Debian.pm
  2371. #, perl-format
  2372. msgid "found start of entry where expected %s"
  2373. msgstr "se ha encontrado el principio de una entrada donde se esperaba %s"
  2374. #: scripts/Dpkg/Changelog/Debian.pm
  2375. msgid "badly formatted heading line"
  2376. msgstr "la línea de cabecera tiene un formato inválido"
  2377. #: scripts/Dpkg/Changelog/Debian.pm
  2378. #, perl-format
  2379. msgid "found trailer where expected %s"
  2380. msgstr "se encontró una línea de separación («trailer») donde se esperaba %s"
  2381. #: scripts/Dpkg/Changelog/Debian.pm scripts/Dpkg/Changelog/Entry/Debian.pm
  2382. msgid "badly formatted trailer line"
  2383. msgstr ""
  2384. "se ha detectado una línea de separación («trailer») con formato inválido"
  2385. #: scripts/Dpkg/Changelog/Debian.pm
  2386. #, perl-format
  2387. msgid "found change data where expected %s"
  2388. msgstr "se han encontrado datos de cambios donde se esperaba %s"
  2389. #: scripts/Dpkg/Changelog/Debian.pm
  2390. #, perl-format
  2391. msgid "found blank line where expected %s"
  2392. msgstr "se ha encontrado una línea en blanco donde se esperaba %s"
  2393. #: scripts/Dpkg/Changelog/Debian.pm
  2394. msgid "unrecognized line"
  2395. msgstr "línea no reconocida"
  2396. #: scripts/Dpkg/Changelog/Debian.pm
  2397. #, fuzzy, perl-format
  2398. #| msgid "found eof where expected %s"
  2399. msgid "found end of file where expected %s"
  2400. msgstr "se ha encontrado un fin de línea donde se esperaba %s"
  2401. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2402. #, perl-format
  2403. msgid "bad key-value after ';': '%s'"
  2404. msgstr "el valor de la clave después de «;» es inválida: «%s»"
  2405. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2406. #, perl-format
  2407. msgid "repeated key-value %s"
  2408. msgstr "el valor de clave %s está repetida"
  2409. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2410. #, perl-format
  2411. msgid "badly formatted urgency value: %s"
  2412. msgstr ""
  2413. "se ha detectado un valor de urgencia («urgency value») con un formato no "
  2414. "válido: %s"
  2415. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2416. #, perl-format
  2417. msgid "bad binary-only value: %s"
  2418. msgstr "valor solo binario incorrecto: %s"
  2419. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2420. #, perl-format
  2421. msgid "unknown key-value %s"
  2422. msgstr "el valor de clave %s es desconocida"
  2423. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2424. #, perl-format
  2425. msgid "version '%s' is invalid: %s"
  2426. msgstr "la versión «%s» es inválida: %s"
  2427. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2428. msgid "the header doesn't match the expected regex"
  2429. msgstr "la cabecera no coincide con la expresión regular esperada"
  2430. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2431. #, perl-format
  2432. msgid "ignoring invalid week day '%s'"
  2433. msgstr ""
  2434. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2435. #, perl-format
  2436. msgid "uses full instead of abbreviated month name '%s'"
  2437. msgstr ""
  2438. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2439. #, fuzzy, perl-format
  2440. #| msgid "invalid flag in %s: %s"
  2441. msgid "invalid abbreviated month name '%s'"
  2442. msgstr "se ha detectado una opción inválida en %s: %s"
  2443. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2444. #, fuzzy, perl-format
  2445. #| msgid "cannot exec format parser: %s"
  2446. msgid "cannot parse non-comformant date '%s'"
  2447. msgstr "no se puede ejecutar el analizador de formato: %s"
  2448. #: scripts/Dpkg/Changelog/Entry/Debian.pm
  2449. msgid "the trailer doesn't match the expected regex"
  2450. msgstr ""
  2451. "la línea de separación («trailer») no encaja con la expresión regular "
  2452. "esperada"
  2453. #: scripts/Dpkg/Changelog/Parse.pm
  2454. #, fuzzy, perl-format
  2455. #| msgid "unknown option or argument %s"
  2456. msgid "unknown output format %s"
  2457. msgstr "el argumento u opción «%s» es desconocido"
  2458. #: scripts/Dpkg/Changelog/Parse.pm
  2459. #, fuzzy, perl-format
  2460. #| msgid "cannot create directory %s"
  2461. msgid "cannot create pipe for %s"
  2462. msgstr "no se puede crear el directorio «%s»"
  2463. #: scripts/Dpkg/Changelog/Parse.pm
  2464. #, perl-format
  2465. msgid "tail of %s"
  2466. msgstr "final de «%s»"
  2467. #: scripts/Dpkg/Changelog/Parse.pm
  2468. #, perl-format
  2469. msgid "format parser %s not executable"
  2470. msgstr "el formato de analizador %s no es ejecutable"
  2471. #: scripts/Dpkg/Changelog/Parse.pm
  2472. #, perl-format
  2473. msgid "changelog format %s is unknown"
  2474. msgstr "el formato %s del registro de cambios es desconocido"
  2475. #: scripts/Dpkg/Changelog/Parse.pm
  2476. #, fuzzy, perl-format
  2477. #| msgid "cannot exec format parser: %s"
  2478. msgid "cannot execute format parser: %s"
  2479. msgstr "no se puede ejecutar el analizador de formato: %s"
  2480. #: scripts/Dpkg/Changelog/Parse.pm
  2481. msgid "output of changelog parser"
  2482. msgstr "salida del analizador de registro de cambios"
  2483. #: scripts/Dpkg/Changelog/Parse.pm
  2484. #, perl-format
  2485. msgid "changelog parser %s"
  2486. msgstr "analizador del registro de cambios %s"
  2487. #: scripts/Dpkg/Checksums.pm
  2488. #, perl-format
  2489. msgid "cannot fstat file %s"
  2490. msgstr "no se puede obtener el estado (fstat) del fichero «%s»"
  2491. #: scripts/Dpkg/Checksums.pm
  2492. #, fuzzy, perl-format
  2493. #| msgid "File %s has size %u instead of expected %u"
  2494. msgid "file %s has size %u instead of expected %u"
  2495. msgstr "El fichero «%s» tiene un tamaño de %u en lugar del esperado, %u"
  2496. #: scripts/Dpkg/Checksums.pm
  2497. #, fuzzy, perl-format
  2498. #| msgid "File %s has checksum %s instead of expected %s (algorithm %s)"
  2499. msgid "file %s has checksum %s instead of expected %s (algorithm %s)"
  2500. msgstr ""
  2501. "El fichero «%s» tiene una suma de control %s en lugar del esperado, "
  2502. "%s(algoritmo %s)"
  2503. #: scripts/Dpkg/Checksums.pm
  2504. #, perl-format
  2505. msgid "invalid line in %s checksums string: %s"
  2506. msgstr "línea inválida en la cadena de suma de control %s: %s"
  2507. #: scripts/Dpkg/Checksums.pm
  2508. #, fuzzy, perl-format
  2509. #| msgid "Conflicting checksums `%s' and `%s' for file `%s'"
  2510. msgid "conflicting checksums '%s' and '%s' for file '%s'"
  2511. msgstr ""
  2512. "Se han detectado sumas de control conflictivas, «%s» y «%s», del fichero «%s»"
  2513. #: scripts/Dpkg/Checksums.pm
  2514. #, fuzzy, perl-format
  2515. #| msgid "Conflicting file sizes `%u' and `%u' for file `%s'"
  2516. msgid "conflicting file sizes '%u' and '%u' for file '%s'"
  2517. msgstr ""
  2518. "Se han detectado tamaños de fichero conflictivos, %u y %u, del fichero «%s»"
  2519. #: scripts/Dpkg/Compression/Process.pm
  2520. #, perl-format
  2521. msgid "%s is not a supported compression method"
  2522. msgstr "%s no es un método de compresión aceptado"
  2523. #: scripts/Dpkg/Compression/Process.pm
  2524. msgid "Dpkg::Compression::Process can only start one subprocess at a time"
  2525. msgstr ""
  2526. "«Dpkg::Compression::Process» sólo puede iniciar un proceso secundario a la "
  2527. "vez"
  2528. #: scripts/Dpkg/Conf.pm
  2529. #, perl-format
  2530. msgid "short option not allowed in %s, line %d"
  2531. msgstr "no se permite una opción corta en %s, línea %d"
  2532. #: scripts/Dpkg/Conf.pm
  2533. #, perl-format
  2534. msgid "invalid syntax for option in %s, line %d"
  2535. msgstr "sintaxis inválida para la opción en %s, línea %d"
  2536. #: scripts/Dpkg/Control.pm
  2537. msgid "general section of control info file"
  2538. msgstr "sección general del fichero de información de control"
  2539. #: scripts/Dpkg/Control.pm
  2540. msgid "package's section of control info file"
  2541. msgstr "sección del paquete del fichero de información de control"
  2542. #: scripts/Dpkg/Control.pm
  2543. msgid "parsed version of changelog"
  2544. msgstr "versión analizada del registro de cambios"
  2545. #: scripts/Dpkg/Control.pm
  2546. #, perl-format
  2547. msgid "entry in repository's %s file"
  2548. msgstr "entrada en el fichero %s de repositorio"
  2549. #: scripts/Dpkg/Control.pm
  2550. #, perl-format
  2551. msgid "%s file"
  2552. msgstr "fichero «%s»"
  2553. #: scripts/Dpkg/Control.pm
  2554. msgid "control info of a .deb package"
  2555. msgstr "información de control de un paquete «.deb»"
  2556. #: scripts/Dpkg/Control.pm
  2557. msgid "vendor file"
  2558. msgstr "fichero del proveedor"
  2559. #: scripts/Dpkg/Control.pm
  2560. msgid "entry in dpkg's status file"
  2561. msgstr "entrada en el fichero de estado «status» de dpkg "
  2562. #: scripts/Dpkg/Control/FieldsCore.pm
  2563. #, perl-format
  2564. msgid "unknown information field '%s' in input data in %s"
  2565. msgstr ""
  2566. "el campo de información «%s» en los datos de entrada en %s es desconocido"
  2567. #: scripts/Dpkg/Control/FieldsCore.pm
  2568. msgid "control information"
  2569. msgstr "información de control"
  2570. #: scripts/Dpkg/Control/HashCore.pm
  2571. #, perl-format
  2572. msgid "syntax error in %s at line %d: %s"
  2573. msgstr "se ha encontrado un error de sintaxis en %s en la línea %d: %s"
  2574. #: scripts/Dpkg/Control/HashCore.pm
  2575. msgid "field cannot start with a hyphen"
  2576. msgstr "el campo no puede compenzar con un guión"
  2577. #: scripts/Dpkg/Control/HashCore.pm
  2578. #, perl-format
  2579. msgid "duplicate field %s found"
  2580. msgstr "se ha encontrado un campo duplicado «%s»"
  2581. #: scripts/Dpkg/Control/HashCore.pm
  2582. msgid "continued value line not in field"
  2583. msgstr "la continuación de la línea del valor no está el campo"
  2584. #: scripts/Dpkg/Control/HashCore.pm
  2585. #, fuzzy
  2586. #| msgid "PGP signature not allowed here"
  2587. msgid "OpenPGP signature not allowed here"
  2588. msgstr "no se permite la firma PGP aquí"
  2589. #: scripts/Dpkg/Control/HashCore.pm
  2590. #, fuzzy
  2591. #| msgid "expected PGP signature, found EOF after blank line"
  2592. msgid "expected OpenPGP signature, found end of file after blank line"
  2593. msgstr ""
  2594. "se esperaba la firma PGP, pero se ha encontrado un fin de línea después de "
  2595. "una línea vacía"
  2596. #: scripts/Dpkg/Control/HashCore.pm
  2597. #, fuzzy, perl-format
  2598. #| msgid "expected PGP signature, found something else `%s'"
  2599. msgid "expected OpenPGP signature, found something else '%s'"
  2600. msgstr "se esperaba una firma PGP, pero se ha encontrado algo distinto «%s»"
  2601. #: scripts/Dpkg/Control/HashCore.pm
  2602. #, fuzzy
  2603. #| msgid "unfinished PGP signature"
  2604. msgid "unfinished OpenPGP signature"
  2605. msgstr "firma PGP inacabada"
  2606. #: scripts/Dpkg/Control/HashCore.pm
  2607. msgid "line with unknown format (not field-colon-value)"
  2608. msgstr ""
  2609. "se ha detectado una línea con formato desconocido (no es un valor de campo "
  2610. "separado por dos puntos)"
  2611. #: scripts/Dpkg/Control/HashCore.pm
  2612. msgid "write error on control data"
  2613. msgstr "se ha detectado un error de escritura en los datos de control"
  2614. #: scripts/Dpkg/Control/Info.pm
  2615. #, fuzzy
  2616. #| msgid "first block lacks a source field"
  2617. msgid "first block lacks a Source field"
  2618. msgstr "falta un campo de fuente en el primer bloque"
  2619. #: scripts/Dpkg/Control/Info.pm
  2620. #, perl-format
  2621. msgid "block lacks the '%s' field"
  2622. msgstr "el bloqueo no incluye el campo «%s»"
  2623. #: scripts/Dpkg/Deps.pm
  2624. #, perl-format
  2625. msgid "can't parse dependency %s"
  2626. msgstr "no se puede analizar la dependencia %s"
  2627. #: scripts/Dpkg/Deps.pm
  2628. msgid "an union dependency can only contain simple dependencies"
  2629. msgstr ""
  2630. "una dependencia de unión (OR - «|») sólo puede contener dependencias simples"
  2631. #: scripts/Dpkg/Dist/Files.pm
  2632. #, fuzzy, perl-format
  2633. #| msgid "badly formed line in files list file, line %d"
  2634. msgid "badly formed package name in files list file, line %d"
  2635. msgstr "línea inválida en el fichero de lista de ficheros, línea %d"
  2636. #: scripts/Dpkg/Dist/Files.pm
  2637. #, perl-format
  2638. msgid "badly formed line in files list file, line %d"
  2639. msgstr "línea inválida en el fichero de lista de ficheros, línea %d"
  2640. #: scripts/Dpkg/Dist/Files.pm
  2641. #, perl-format
  2642. msgid "duplicate files list entry for file %s (line %d)"
  2643. msgstr ""
  2644. "entrada duplicada en la lista de ficheros para el fichero %s (línea %d)"
  2645. #: scripts/Dpkg/Dist/Files.pm
  2646. #, fuzzy, perl-format
  2647. #| msgid "invalid flag in %s: %s"
  2648. msgid "invalid filename %s"
  2649. msgstr "se ha detectado una opción inválida en %s: %s"
  2650. #: scripts/Dpkg/ErrorHandling.pm
  2651. msgid "info"
  2652. msgstr "información"
  2653. #: scripts/Dpkg/ErrorHandling.pm
  2654. msgid "error"
  2655. msgstr "fallo"
  2656. #: scripts/Dpkg/ErrorHandling.pm
  2657. #, perl-format
  2658. msgid "%s gave error exit status %s"
  2659. msgstr "%s devolvió un estado de salida de error %s"
  2660. #: scripts/Dpkg/ErrorHandling.pm
  2661. #, perl-format
  2662. msgid "%s died from signal %s"
  2663. msgstr "%s murió con la señal %s"
  2664. #: scripts/Dpkg/ErrorHandling.pm
  2665. #, perl-format
  2666. msgid "%s failed with unknown exit code %d"
  2667. msgstr "%s falló con el código de salida desconocido %d"
  2668. #: scripts/Dpkg/ErrorHandling.pm
  2669. msgid "Use --help for program usage information."
  2670. msgstr "Use --help para obtener información del uso de este programa."
  2671. #: scripts/Dpkg/File.pm
  2672. msgid "File::FcntlLock not available; using flock which is not NFS-safe"
  2673. msgstr ""
  2674. "No está disponible File::FcntlLock, se utilizará flock que no es seguro en "
  2675. "entornos NFS"
  2676. #: scripts/Dpkg/File.pm
  2677. #, fuzzy, perl-format
  2678. #| msgid "failed to verify signature on %s"
  2679. msgid "failed to get a write lock on %s"
  2680. msgstr "se ha detectado un fallo al verificar la firma de %s"
  2681. #: scripts/Dpkg/IPC.pm
  2682. #, perl-format
  2683. msgid "pipe for %s"
  2684. msgstr "tubería para %s"
  2685. #: scripts/Dpkg/IPC.pm
  2686. #, perl-format
  2687. msgid "chdir to %s"
  2688. msgstr "chdir a «%s»"
  2689. #: scripts/Dpkg/IPC.pm
  2690. msgid "reopen stdin"
  2691. msgstr "reabrir la entrada estándar"
  2692. #: scripts/Dpkg/IPC.pm
  2693. msgid "reopen stdout"
  2694. msgstr "reabrir la salida estándar"
  2695. #: scripts/Dpkg/IPC.pm
  2696. msgid "child process"
  2697. msgstr "proceso secundario o hijo"
  2698. #: scripts/Dpkg/IPC.pm
  2699. #, perl-format
  2700. msgid "wait for %s"
  2701. msgstr "esperar a %s"
  2702. #: scripts/Dpkg/IPC.pm
  2703. #, perl-format
  2704. msgid "%s didn't complete in %d second"
  2705. msgid_plural "%s didn't complete in %d seconds"
  2706. msgstr[0] "%s no se completó en %d segundo"
  2707. msgstr[1] "%s no se completó en %d segundos"
  2708. #: scripts/Dpkg/Interface/Storable.pm
  2709. msgid "<standard input>"
  2710. msgstr "<entrada estándar>"
  2711. #: scripts/Dpkg/Package.pm
  2712. msgid "may not be empty string"
  2713. msgstr "puede que no sea una cadena vacía"
  2714. #: scripts/Dpkg/Package.pm
  2715. #, perl-format
  2716. msgid "character '%s' not allowed"
  2717. msgstr "no se permite el carácter «%s»"
  2718. #: scripts/Dpkg/Package.pm
  2719. msgid "must start with an alphanumeric character"
  2720. msgstr "debe empezar con un carácter alfanumérico"
  2721. #: scripts/Dpkg/Shlibs/Objdump.pm
  2722. #, fuzzy, perl-format
  2723. #| msgid "Couldn't parse dynamic relocation record: %s"
  2724. msgid "couldn't parse dynamic relocation record: %s"
  2725. msgstr "No se pudo analizar el registro de reubicación dinámico: %s"
  2726. #: scripts/Dpkg/Shlibs/Objdump.pm
  2727. #, fuzzy, perl-format
  2728. #| msgid "Couldn't parse dynamic symbol definition: %s"
  2729. msgid "couldn't parse dynamic symbol definition: %s"
  2730. msgstr "No se pudo analizar la definición de símbolo dinámico: %s"
  2731. #: scripts/Dpkg/Shlibs/Symbol.pm
  2732. #, perl-format
  2733. msgid "symbol name unspecified: %s"
  2734. msgstr "el nombre del símbolo no está definido: %s"
  2735. #: scripts/Dpkg/Shlibs/Symbol.pm
  2736. #, perl-format
  2737. msgid "you can't use symver tag to catch unversioned symbols: %s"
  2738. msgstr ""
  2739. "no puede usar una etiqueta «symver» para encontrar símbolos sin sin "
  2740. "versionar: %s"
  2741. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2742. #, perl-format
  2743. msgid "symbol information must be preceded by a header (file %s, line %s)"
  2744. msgstr ""
  2745. "la información del símbolo se debe preceder con una cabecera (fichero «%s», "
  2746. "línea «%s»)"
  2747. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2748. #, fuzzy, perl-format
  2749. #| msgid "Failed to parse line in %s: %s"
  2750. msgid "failed to parse line in %s: %s"
  2751. msgstr "Se ha detectado un fallo al analizar la línea en «%s»: %s"
  2752. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2753. #, fuzzy, perl-format
  2754. #| msgid "Failed to parse a line in %s: %s"
  2755. msgid "failed to parse a line in %s: %s"
  2756. msgstr "Se ha detectado un fallo al analizar una línea en «%s»: %s"
  2757. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2758. #, perl-format
  2759. msgid "tried to merge the same object (%s) twice in a symfile"
  2760. msgstr ""
  2761. "se ha intentado fusionar el mismo objeto (%s) dos veces en un fichero "
  2762. "simbólico"
  2763. #: scripts/Dpkg/Shlibs/SymbolFile.pm
  2764. msgid "cannot merge symbols from objects without SONAME"
  2765. msgstr "no se puede fusionar símbolos de objetos sin «SONAME»"
  2766. #: scripts/Dpkg/Source/Archive.pm
  2767. msgid "write on tar input"
  2768. msgstr "escribe en la entrada tar"
  2769. #: scripts/Dpkg/Source/Archive.pm
  2770. msgid "close on tar input"
  2771. msgstr "cierra con la entrada tar"
  2772. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Patch.pm
  2773. #, perl-format
  2774. msgid "cannot create directory %s"
  2775. msgstr "no se puede crear el directorio «%s»"
  2776. #: scripts/Dpkg/Source/Archive.pm scripts/Dpkg/Source/Package.pm
  2777. #: scripts/Dpkg/Source/Package/V2.pm
  2778. #, perl-format
  2779. msgid "cannot opendir %s"
  2780. msgstr "no se puede abrir el directorio «%s»"
  2781. #: scripts/Dpkg/Source/Archive.pm
  2782. #, fuzzy, perl-format
  2783. #| msgid "Unable to rename %s to %s"
  2784. msgid "unable to rename %s to %s"
  2785. msgstr "No se pudo renombrar «%s» a «%s»"
  2786. #: scripts/Dpkg/Source/Functions.pm
  2787. #, perl-format
  2788. msgid "cannot stat directory %s (before removal)"
  2789. msgstr ""
  2790. "no se puede mostrar el estado (stat) del directorio «%s» (antes de la "
  2791. "eliminación)"
  2792. #: scripts/Dpkg/Source/Functions.pm
  2793. #, fuzzy, perl-format
  2794. #| msgid "unable to check for removal of dir `%s'"
  2795. msgid "unable to check for removal of directory '%s'"
  2796. msgstr "no se pudo comprobar la eliminación del directorio «%s»"
  2797. #: scripts/Dpkg/Source/Functions.pm
  2798. #, perl-format
  2799. msgid "rm -rf failed to remove '%s'"
  2800. msgstr "«rm -rf» no pudo eliminar «%s»"
  2801. #: scripts/Dpkg/Source/Functions.pm scripts/Dpkg/Source/Patch.pm
  2802. #, perl-format
  2803. msgid "cannot change timestamp for %s"
  2804. msgstr "no se puede cambiar la marca de tiempo de «%s»"
  2805. #: scripts/Dpkg/Source/Functions.pm
  2806. #, perl-format
  2807. msgid "cannot read timestamp from %s"
  2808. msgstr "no se puede leer la marca de tiempo desde «%s»"
  2809. #: scripts/Dpkg/Source/Package.pm
  2810. #, perl-format
  2811. msgid "%s is not the name of a file"
  2812. msgstr "«%s» no es el nombre de un fichero"
  2813. #: scripts/Dpkg/Source/Package.pm
  2814. #, perl-format
  2815. msgid "missing critical source control field %s"
  2816. msgstr "falta el campo crítico de control de las fuentes «%s»"
  2817. #: scripts/Dpkg/Source/Package.pm
  2818. #, perl-format
  2819. msgid "source package format '%s' is not supported: %s"
  2820. msgstr "no se permite el formato de paquete fuente «%s»: %s"
  2821. #: scripts/Dpkg/Source/Package.pm
  2822. msgid "format variant must be in lowercase"
  2823. msgstr "la variante de formato debe estar en minúsculas"
  2824. #: scripts/Dpkg/Source/Package.pm
  2825. #, perl-format
  2826. msgid "invalid Format field '%s'"
  2827. msgstr "se ha detectado un campo «Format» inválido «%s»"
  2828. #: scripts/Dpkg/Source/Package.pm
  2829. #, fuzzy, perl-format
  2830. #| msgid "source and version are required to compute the source basename"
  2831. msgid "%s and %s fields are required to compute the source basename"
  2832. msgstr ""
  2833. "se requieren la fuente y la versión para completar el nombre base de la "
  2834. "fuente"
  2835. #: scripts/Dpkg/Source/Package.pm
  2836. #, perl-format
  2837. msgid "failed to verify signature on %s"
  2838. msgstr "se ha detectado un fallo al verificar la firma de %s"
  2839. #: scripts/Dpkg/Source/Package.pm
  2840. #, perl-format
  2841. msgid "could not verify signature on %s since gpg isn't installed"
  2842. msgstr "no se pudo verificar la firma de %s ya que gpg no está instalado"
  2843. #: scripts/Dpkg/Source/Package.pm
  2844. #, perl-format
  2845. msgid "%s is not a valid option for %s"
  2846. msgstr "«%s» no es una opción válida para %s"
  2847. #: scripts/Dpkg/Source/Package.pm
  2848. #, perl-format
  2849. msgid "%s does not exist"
  2850. msgstr "%s no existe"
  2851. #: scripts/Dpkg/Source/Package.pm
  2852. #, perl-format
  2853. msgid "cannot make %s executable"
  2854. msgstr "no se puede dar permisos de ejecución a «%s»"
  2855. #: scripts/Dpkg/Source/Package.pm
  2856. #, perl-format
  2857. msgid "%s is not a plain file"
  2858. msgstr "«%s» no es un fichero simple"
  2859. #: scripts/Dpkg/Source/Package.pm
  2860. #, perl-format
  2861. msgid "'%s' is not supported by the source format '%s'"
  2862. msgstr "no se permite «%s» con el formato de fuente «%s»"
  2863. #: scripts/Dpkg/Source/Package/V1.pm
  2864. #, perl-format
  2865. msgid "-s%s option overrides earlier -s%s option"
  2866. msgstr "la opción «-s%s» invalida la opción «-s%s» anterior"
  2867. #: scripts/Dpkg/Source/Package/V1.pm
  2868. #, perl-format
  2869. msgid "source handling style -s%s not allowed with -x"
  2870. msgstr "el tipo de manipulación de fuentes «-s%s» no se permite con «-x»"
  2871. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2872. msgid "multiple tarfiles in v1.0 source package"
  2873. msgstr "varios archivos tar en un paquete fuente versión 1.0"
  2874. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2875. #, perl-format
  2876. msgid "unrecognized file for a %s source package: %s"
  2877. msgstr "fichero no reconocido de un paquete fuente %s: %s"
  2878. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  2879. msgid "no tarfile in Files field"
  2880. msgstr "no existe ningún fichero tar en el campo «Files»"
  2881. #: scripts/Dpkg/Source/Package/V1.pm
  2882. msgid "native package with .orig.tar"
  2883. msgstr "paquete nativo con «.orig.tar»"
  2884. #: scripts/Dpkg/Source/Package/V1.pm
  2885. #, perl-format
  2886. msgid "unable to rename '%s' to '%s'"
  2887. msgstr "no se pudo renombrar «%s» a «%s»"
  2888. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2889. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  2890. #: scripts/Dpkg/Source/Package/V3/Native.pm
  2891. #, perl-format
  2892. msgid "unpacking %s"
  2893. msgstr "desempaquetando %s"
  2894. #: scripts/Dpkg/Source/Package/V1.pm
  2895. msgid "unable to keep orig directory (already exists)"
  2896. msgstr "no se pudo conservar el directorio «orig» (ya existe)"
  2897. #: scripts/Dpkg/Source/Package/V1.pm
  2898. #, perl-format
  2899. msgid "failed to rename newly-extracted %s to %s"
  2900. msgstr ""
  2901. "se ha detectado un fallo al renombrar el recién extraído «%s» como «%s»"
  2902. #: scripts/Dpkg/Source/Package/V1.pm
  2903. #, perl-format
  2904. msgid "failed to rename saved %s to %s"
  2905. msgstr "se ha detectado un fallo al renombrar «%s», guardado, a «%s»"
  2906. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  2907. #: scripts/Dpkg/Source/Quilt.pm
  2908. #, perl-format
  2909. msgid "applying %s"
  2910. msgstr "aplicando «%s»"
  2911. #: scripts/Dpkg/Source/Package/V1.pm
  2912. #, perl-format
  2913. msgid "upstream files that have been modified: %s"
  2914. msgstr "ficheros de la fuente original que se han modificado: %s"
  2915. #: scripts/Dpkg/Source/Package/V1.pm
  2916. msgid "only supports gzip compression"
  2917. msgstr "sólo acepta la compresión gzip"
  2918. #: scripts/Dpkg/Source/Package/V1.pm
  2919. msgid ""
  2920. "-b takes at most a directory and an orig source argument (with v1.0 source "
  2921. "package)"
  2922. msgstr ""
  2923. "«-b» acepta como máximo un directorio y un argumento de fuentes «orig» (con "
  2924. "la versión 1.0 de formato de paquete fuente)"
  2925. #: scripts/Dpkg/Source/Package/V1.pm
  2926. #, perl-format
  2927. msgid "source handling style -s%s not allowed with -b"
  2928. msgstr "el tipo de manipulación de fuentes «-s%s» no se permite con «-b»"
  2929. #: scripts/Dpkg/Source/Package/V1.pm
  2930. #, perl-format
  2931. msgid "packed orig '%s' exists but is not a plain file"
  2932. msgstr "ya existe un «orig» «%s» desempaquetado, pero no es un fichero simple"
  2933. #: scripts/Dpkg/Source/Package/V1.pm
  2934. #, perl-format
  2935. msgid "cannot stat orig argument %s"
  2936. msgstr ""
  2937. "no se puede definir el estado («stat») del fichero argumento «orig» de %s"
  2938. #: scripts/Dpkg/Source/Package/V1.pm
  2939. #, perl-format
  2940. msgid ""
  2941. "orig argument is unpacked but source handling style -s%s calls for packed (."
  2942. "orig.tar.<ext>)"
  2943. msgstr ""
  2944. "el argumento «orig» está desempaquetado, pero el tipo de manipulación de "
  2945. "fuentes «-s%s» invoca uno empaquetado («.orig.tar.<ext>»)"
  2946. #: scripts/Dpkg/Source/Package/V1.pm
  2947. #, perl-format
  2948. msgid ""
  2949. "orig argument is packed but source handling style -s%s calls for unpacked (."
  2950. "orig/)"
  2951. msgstr ""
  2952. "el argumento «orig» esta empaquetado, pero el tipo de manipulación de "
  2953. "fuentes «-s%s» invoca uno desempaquetado («.orig/»)"
  2954. #: scripts/Dpkg/Source/Package/V1.pm
  2955. #, perl-format
  2956. msgid "orig argument %s is not a plain file or directory"
  2957. msgstr "el argumento «orig» %s no es un fichero simple o directorio"
  2958. #: scripts/Dpkg/Source/Package/V1.pm
  2959. #, perl-format
  2960. msgid ""
  2961. "orig argument is empty (means no orig, no diff) but source handling style -s"
  2962. "%s wants something"
  2963. msgstr ""
  2964. "el argumento «orig» está vacío (esto es, sin «orig» ni diff) pero el tipo de "
  2965. "manipulación de fuentes «-s%s» requiere algo"
  2966. #: scripts/Dpkg/Source/Package/V1.pm
  2967. #, perl-format
  2968. msgid "unpacked orig '%s' exists but is not a directory"
  2969. msgstr "el «orig» desempaquetado «%s» existe, pero no es un directorio"
  2970. #: scripts/Dpkg/Source/Package/V1.pm
  2971. #, perl-format
  2972. msgid "unable to stat putative unpacked orig '%s'"
  2973. msgstr "no se pudo obtener el estado («stat») del fichero «orig» putativo «%s»"
  2974. #: scripts/Dpkg/Source/Package/V1.pm
  2975. #, perl-format
  2976. msgid "source directory '%s' is not <sourcepackage>-<upstreamversion> '%s'"
  2977. msgstr ""
  2978. "el directorio de fuentes «%s» no es <paquete-fuente>-<versión-desarrollador-"
  2979. "original> «%s»"
  2980. #: scripts/Dpkg/Source/Package/V1.pm
  2981. #, perl-format
  2982. msgid ".orig directory name %s is not <package>-<upstreamversion> (wanted %s)"
  2983. msgstr ""
  2984. "el nombre del directorio «.orig» %s no es <paquete>-<versión-desarrollador-"
  2985. "original> (se ha requerido %s)"
  2986. #: scripts/Dpkg/Source/Package/V1.pm
  2987. #, perl-format
  2988. msgid ""
  2989. ".orig.tar name %s is not <package>_<upstreamversion>.orig.tar (wanted %s)"
  2990. msgstr ""
  2991. "el nombre de «.orig.tar» %s no es <paquete>_<versión-desarollador-original>."
  2992. "orig.tar (se ha requerido %s)"
  2993. #: scripts/Dpkg/Source/Package/V1.pm
  2994. #, perl-format
  2995. msgid ""
  2996. "tarfile '%s' already exists, not overwriting, giving up; use -sU or -sR to "
  2997. "override"
  2998. msgstr ""
  2999. "el archivo tar «%s» ya existe, no se va a sobreescribir, cancelando; use «-"
  3000. "sU» «-sR» para invalidar este comportamiento"
  3001. #: scripts/Dpkg/Source/Package/V1.pm
  3002. #, perl-format
  3003. msgid "unable to check for existence of '%s'"
  3004. msgstr "no se pudo comprobar la existencia de «%s»"
  3005. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V3/Native.pm
  3006. #, perl-format
  3007. msgid "unable to rename '%s' (newly created) to '%s'"
  3008. msgstr "no se pudo renombrar «%s» (recién creado) como «%s»"
  3009. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  3010. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3011. #: scripts/Dpkg/Source/Package/V3/Quilt.pm scripts/Dpkg/Source/Quilt.pm
  3012. #, perl-format
  3013. msgid "unable to change permission of '%s'"
  3014. msgstr "no se han podido cambiar los permisos de «%s»"
  3015. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  3016. #, perl-format
  3017. msgid "building %s using existing %s"
  3018. msgstr "construyendo «%s» usando «%s», que está presente en el sistema"
  3019. #: scripts/Dpkg/Source/Package/V1.pm
  3020. #, fuzzy, perl-format
  3021. #| msgid ""
  3022. #| "orig dir `%s' already exists, not overwriting, giving up; use -sA, -sK or "
  3023. #| "-sP to override"
  3024. msgid ""
  3025. "orig directory '%s' already exists, not overwriting, giving up; use -sA, -sK "
  3026. "or -sP to override"
  3027. msgstr ""
  3028. "el directorio «orig» «%s» ya existe, no se va a sobreescribir, cancelando; "
  3029. "use «-sA», «-sK» o «-sP» para invalidar este comportamiento"
  3030. #: scripts/Dpkg/Source/Package/V1.pm
  3031. #, fuzzy, perl-format
  3032. #| msgid "unable to check for existence of orig dir `%s'"
  3033. msgid "unable to check for existence of orig directory '%s'"
  3034. msgstr "no se pudo comprobar la existencia del directorio «orig» «%s»"
  3035. #: scripts/Dpkg/Source/Package/V1.pm
  3036. #, perl-format
  3037. msgid "the diff modifies the following upstream files: %s"
  3038. msgstr ""
  3039. "el diff modifica los siguientes ficheros del desarrollador original: %s"
  3040. #: scripts/Dpkg/Source/Package/V1.pm
  3041. msgid ""
  3042. "use the '3.0 (quilt)' format to have separate and documented changes to "
  3043. "upstream files, see dpkg-source(1)"
  3044. msgstr ""
  3045. "use el formato «3.0 (quilt)» para que los cambios a los ficheros originales "
  3046. "ocurran por separado y de forma documentada, consulte dpkg-source(1)"
  3047. #: scripts/Dpkg/Source/Package/V1.pm
  3048. msgid "aborting due to --abort-on-upstream-changes"
  3049. msgstr ""
  3050. "cancelando debido a «--abort-on-upstream-changes» (cambios en la fuente "
  3051. "original)"
  3052. #: scripts/Dpkg/Source/Package/V1.pm scripts/Dpkg/Source/Package/V2.pm
  3053. msgid "unrepresentable changes to source"
  3054. msgstr "no se pueden representar los cambios hechos a las fuentes"
  3055. #: scripts/Dpkg/Source/Package/V2.pm
  3056. #, perl-format
  3057. msgid "duplicate files in %s source package: %s"
  3058. msgstr "se han detectado ficheros duplicados en el paquete fuente %s: %s"
  3059. #: scripts/Dpkg/Source/Package/V2.pm
  3060. msgid "missing orig.tar or debian.tar file in v2.0 source package"
  3061. msgstr ""
  3062. "falta un fichero «orig.tar» o «debian.tar» en el paquete fuente versión 2.0"
  3063. #: scripts/Dpkg/Source/Package/V2.pm
  3064. #, fuzzy, perl-format
  3065. #| msgid "missing orig.tar or debian.tar file in v2.0 source package"
  3066. msgid "mismatched orig.tar %s for signature %s in source package"
  3067. msgstr ""
  3068. "falta un fichero «orig.tar» o «debian.tar» en el paquete fuente versión 2.0"
  3069. #: scripts/Dpkg/Source/Package/V2.pm
  3070. #, fuzzy, perl-format
  3071. #| msgid "missing orig.tar or debian.tar file in v2.0 source package"
  3072. msgid "missing addon orig.tar for signature %s in source package"
  3073. msgstr ""
  3074. "falta un fichero «orig.tar» o «debian.tar» en el paquete fuente versión 2.0"
  3075. #: scripts/Dpkg/Source/Package/V2.pm
  3076. #, fuzzy, perl-format
  3077. #| msgid "missing orig.tar or debian.tar file in v2.0 source package"
  3078. msgid "mismatched addon orig.tar %s for signature %s in source package"
  3079. msgstr ""
  3080. "falta un fichero «orig.tar» o «debian.tar» en el paquete fuente versión 2.0"
  3081. #: scripts/Dpkg/Source/Package/V2.pm
  3082. #, perl-format
  3083. msgid "required removal of '%s' installed by original tarball"
  3084. msgstr ""
  3085. "se requiere la eliminación de «%s», instalado por el archivo tar original"
  3086. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Quilt.pm
  3087. #, perl-format
  3088. msgid "unapplying %s"
  3089. msgstr "revirtiendo «%s»"
  3090. #: scripts/Dpkg/Source/Package/V2.pm
  3091. #, perl-format
  3092. msgid "no upstream tarball found at %s"
  3093. msgstr "no se ha encontrado ningún archivo tar de la fuente original en %s"
  3094. #: scripts/Dpkg/Source/Package/V2.pm
  3095. msgid "patches are not applied, applying them now"
  3096. msgstr "no se han aplicado los parches, aplicándolos en este momento"
  3097. #: scripts/Dpkg/Source/Package/V2.pm
  3098. #, perl-format
  3099. msgid "several orig.tar files found (%s and %s) but only one is allowed"
  3100. msgstr ""
  3101. "se han encontrado varios fichero «orig.tar» (%s y %s), pero sólo se acepta "
  3102. "uno"
  3103. #: scripts/Dpkg/Source/Package/V2.pm
  3104. msgid "copy of the debian directory"
  3105. msgstr "copia del directorio «debian»"
  3106. #: scripts/Dpkg/Source/Package/V2.pm
  3107. msgid "local changes detected, the modified files are:"
  3108. msgstr "se han detecta cambios locales, los ficheros modificados son:"
  3109. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Bzr.pm
  3110. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3111. #, perl-format
  3112. msgid "-b takes only one parameter with format '%s'"
  3113. msgstr "-b sólo toma un parámetro con formato «%s»"
  3114. #: scripts/Dpkg/Source/Package/V2.pm
  3115. #, perl-format
  3116. msgid "unwanted binary file: %s"
  3117. msgstr "fichero binario no deseado: %s"
  3118. #: scripts/Dpkg/Source/Package/V2.pm
  3119. #, perl-format
  3120. msgid ""
  3121. "detected %d unwanted binary file (add it in debian/source/include-binaries "
  3122. "to allow its inclusion)."
  3123. msgid_plural ""
  3124. "detected %d unwanted binary files (add them in debian/source/include-"
  3125. "binaries to allow their inclusion)."
  3126. msgstr[0] ""
  3127. "se ha detectado %d fichero binario (añada este en «debian/source/include-"
  3128. "binaries» para permitir su inclusión)."
  3129. msgstr[1] ""
  3130. "se han detectado %d ficheros binarios (añada estos en «debian/source/include-"
  3131. "binaries» para permitir su inclusión)."
  3132. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  3133. #, perl-format
  3134. msgid "cannot represent change to %s: %s"
  3135. msgstr "no se puede representar el cambio de %s: %s"
  3136. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Patch.pm
  3137. msgid "binary file contents changed"
  3138. msgstr "el contenido del fichero binario ha cambiado"
  3139. #: scripts/Dpkg/Source/Package/V2.pm
  3140. #, perl-format
  3141. msgid ""
  3142. "add %s in debian/source/include-binaries if you want to store the modified "
  3143. "binary in the debian tarball"
  3144. msgstr ""
  3145. "añada «%s» en «debian/source/include-binaries» si desea guardar el binario "
  3146. "modificado en el archivo tar de Debian"
  3147. #: scripts/Dpkg/Source/Package/V2.pm
  3148. #, perl-format
  3149. msgid "you can integrate the local changes with %s"
  3150. msgstr "puede integrar los cambios locales con %s"
  3151. #: scripts/Dpkg/Source/Package/V2.pm
  3152. #, perl-format
  3153. msgid "aborting due to unexpected upstream changes, see %s"
  3154. msgstr "cancelando debido a cambios en la fuente original, consulte %s"
  3155. #: scripts/Dpkg/Source/Package/V2.pm
  3156. #, perl-format
  3157. msgid "local changes have been recorded in a new patch: %s"
  3158. msgstr "los cambios locales se han guardado en un parche nuevo: %s"
  3159. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  3160. #, perl-format
  3161. msgid "cannot remove %s"
  3162. msgstr "no se ha podido eliminar «%s»"
  3163. #: scripts/Dpkg/Source/Package/V2.pm scripts/Dpkg/Source/Package/V3/Quilt.pm
  3164. #: scripts/Dpkg/Source/Quilt.pm
  3165. #, perl-format
  3166. msgid "failed to copy %s to %s"
  3167. msgstr "se ha detectado un fallo al copiar %s a %s"
  3168. #: scripts/Dpkg/Source/Package/V2.pm
  3169. #, perl-format
  3170. msgid "cannot register changes in %s, this patch already exists"
  3171. msgstr "no se pueden registrar los cambios en %s, el parche ya existe"
  3172. #: scripts/Dpkg/Source/Package/V2.pm
  3173. #, perl-format
  3174. msgid "patch file '%s' doesn't exist"
  3175. msgstr "el fichero de parche «%s» no existe"
  3176. #: scripts/Dpkg/Source/Package/V2.pm
  3177. msgid "there are no local changes to record"
  3178. msgstr "no hay cambios locales que guardar"
  3179. #: scripts/Dpkg/Source/Package/V2.pm
  3180. msgid "Enter the desired patch name: "
  3181. msgstr "Introduzca el nombre del parche:"
  3182. #: scripts/Dpkg/Source/Package/V2.pm
  3183. #, fuzzy
  3184. #| msgid "cannot find '%s'"
  3185. msgid "cannot find an editor"
  3186. msgstr "no se puede encontrar «%s»"
  3187. #: scripts/Dpkg/Source/Package/V2.pm
  3188. #, perl-format
  3189. msgid "adding %s to %s"
  3190. msgstr "añadiendo «%s» a «%s»"
  3191. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3192. msgid "cannot unpack bzr-format source package because bzr is not in the PATH"
  3193. msgstr ""
  3194. "no se puede desempaquetar el formato de paquete fuente bzr porque bzr no se "
  3195. "encuentra en la variable «PATH»"
  3196. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3197. #, perl-format
  3198. msgid ""
  3199. "source directory is not the top directory of a bzr repository (%s/.bzr not "
  3200. "present), but Format bzr was specified"
  3201. msgstr ""
  3202. "El directorio de fuentes no es el directorio superior de un repositorio bzr "
  3203. "(%s/.bzr no está presente), pero se ha definido «Format bzr»"
  3204. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3205. #, perl-format
  3206. msgid "%s is a symlink"
  3207. msgstr "«%s» es un enlace simbólico"
  3208. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3209. #, perl-format
  3210. msgid "%s is a symlink to outside %s"
  3211. msgstr "«%s» es un enlace simbólico al exterior de «%s»"
  3212. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3213. msgid "doesn't contain a bzr repository"
  3214. msgstr "no contiene un repositorio bzr"
  3215. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3216. msgid "bzr status exited nonzero"
  3217. msgstr "bzr cerró con un estado distinto de cero"
  3218. #: scripts/Dpkg/Source/Package/V3/Bzr.pm scripts/Dpkg/Source/Package/V3/Git.pm
  3219. #, perl-format
  3220. msgid "uncommitted, not-ignored changes in working directory: %s"
  3221. msgstr ""
  3222. "se han detectado cambios no ignorados sin enviar («uncommited») en el "
  3223. "directorio actual: %s"
  3224. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3225. msgid "format v3.0 uses only one source file"
  3226. msgstr "el formato v3.0 sólo usa un fichero de fuente"
  3227. #: scripts/Dpkg/Source/Package/V3/Bzr.pm
  3228. #, perl-format
  3229. msgid "expected %s, got %s"
  3230. msgstr "se esperaba «%s», se obtuvo «%s»"
  3231. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3232. msgid "Format '3.0 (custom)' is only used to create source packages"
  3233. msgstr "El formato «3.0 (custom)» se usa sólo para crear paquetes fuente"
  3234. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3235. msgid "no files indicated on command line"
  3236. msgstr "no se han indicado ficheros en la línea de órdenes"
  3237. #: scripts/Dpkg/Source/Package/V3/Custom.pm
  3238. msgid "--target-format option is missing"
  3239. msgstr "Se ha detectado la falta de la opción «--target-format»"
  3240. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3241. msgid "cannot unpack git-format source package because git is not in the PATH"
  3242. msgstr ""
  3243. "no se puede desempaquetar el formato de paquete git porque git no está "
  3244. "presente en «PATH»"
  3245. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3246. #, perl-format
  3247. msgid ""
  3248. "source directory is not the top directory of a git repository (%s/.git not "
  3249. "present), but Format git was specified"
  3250. msgstr ""
  3251. "El directorio de fuentes no es el directorio superior de un repositorio git "
  3252. "(%s/.git no está presente), pero se ha definido git para «Format»"
  3253. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3254. #, perl-format
  3255. msgid "git repository %s uses submodules; this is not yet supported"
  3256. msgstr "el repositorio de git %s usa submódulos; no es compatible actualmente"
  3257. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3258. msgid "doesn't contain a git repository"
  3259. msgstr "no contiene un repositorio git"
  3260. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3261. msgid "git ls-files exited nonzero"
  3262. msgstr "«git ls-files» cerró con un valor distinto de cero"
  3263. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3264. #, perl-format
  3265. msgid "creating shallow clone with depth %s"
  3266. msgstr "creando un clon superficial («shallow») con profundidad %s"
  3267. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3268. #, perl-format
  3269. msgid "bundling: %s"
  3270. msgstr "archivando: %s"
  3271. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3272. msgid "format v3.0 (git) uses only one .git file"
  3273. msgstr "el formato v3.0 (git) sólo usa un fichero «.git»"
  3274. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3275. msgid "format v3.0 (git) uses only one .gitshallow file"
  3276. msgstr "el formato v3.0 (git) sólo usa un fichero «.gitshallow»"
  3277. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3278. #, perl-format
  3279. msgid "format v3.0 (git) unknown file: %s"
  3280. msgstr "fichero desconocido con formato v3.0 (git): %s"
  3281. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3282. #, perl-format
  3283. msgid "format v3.0 (git) expected %s"
  3284. msgstr "se esperaba el formato v3.0 (git) %s"
  3285. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3286. #, perl-format
  3287. msgid "cloning %s"
  3288. msgstr "clonando «%s»"
  3289. #: scripts/Dpkg/Source/Package/V3/Git.pm
  3290. msgid "setting up shallow clone"
  3291. msgstr "configurando un clon superficial («shallow»)"
  3292. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3293. #, perl-format
  3294. msgid "unrecognized file for a native source package: %s"
  3295. msgstr "fichero no reconocido para un paquete fuente nativo: %s"
  3296. #: scripts/Dpkg/Source/Package/V3/Native.pm
  3297. msgid "native package version may not have a revision"
  3298. msgstr "la versión de un paquete nativo puede no tener una revisión"
  3299. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3300. #, fuzzy
  3301. #| msgid "doesn't contain a bzr repository"
  3302. msgid "non-native package version does not contain a revision"
  3303. msgstr "no contiene un repositorio bzr"
  3304. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3305. #, perl-format
  3306. msgid "can't create symlink %s"
  3307. msgstr "no se puede crear el enlace simbólico «%s»"
  3308. #: scripts/Dpkg/Source/Package/V3/Quilt.pm
  3309. #, perl-format
  3310. msgid "unsupported version of the quilt metadata: %s"
  3311. msgstr "la versión de los metadatos de quilt es incompatible: %s"
  3312. #: scripts/Dpkg/Source/Patch.pm
  3313. #, perl-format
  3314. msgid "file %s has no final newline (either original or modified version)"
  3315. msgstr ""
  3316. "el fichero «%s» no tiene una nueva línea al final (tanto en la versión "
  3317. "original como en la modificada)"
  3318. #: scripts/Dpkg/Source/Patch.pm
  3319. #, perl-format
  3320. msgid "unknown line from diff -u on %s: '%s'"
  3321. msgstr "línea desconocida de «diff -u» en %s: «%s»"
  3322. #: scripts/Dpkg/Source/Patch.pm
  3323. msgid "failed to write"
  3324. msgstr "se ha detectado un fallo al escribir"
  3325. #: scripts/Dpkg/Source/Patch.pm
  3326. #, perl-format
  3327. msgid "diff on %s"
  3328. msgstr "diff de «%s»"
  3329. #: scripts/Dpkg/Source/Patch.pm
  3330. #, perl-format
  3331. msgid "cannot stat file %s"
  3332. msgstr "no se puede obtener el estado (stat) del fichero «%s»"
  3333. #: scripts/Dpkg/Source/Patch.pm
  3334. #, perl-format
  3335. msgid "cannot read link %s"
  3336. msgstr "no se puede leer el enlace «%s»"
  3337. #: scripts/Dpkg/Source/Patch.pm
  3338. msgid "device or socket is not allowed"
  3339. msgstr "el dispositivo o socket de Unix no está permitido"
  3340. #: scripts/Dpkg/Source/Patch.pm
  3341. msgid "unknown file type"
  3342. msgstr "el tipo de fichero es desconocido"
  3343. #: scripts/Dpkg/Source/Patch.pm
  3344. #, fuzzy, perl-format
  3345. #| msgid "ignoring deletion of file %s"
  3346. msgid "ignoring deletion of file %s, use --include-removal to override"
  3347. msgstr "ignorando la eliminación del fichero «%s»"
  3348. #: scripts/Dpkg/Source/Patch.pm
  3349. #, perl-format
  3350. msgid "ignoring deletion of directory %s"
  3351. msgstr "ignorando la eliminación del directorio «%s»"
  3352. #: scripts/Dpkg/Source/Patch.pm
  3353. #, perl-format
  3354. msgid "ignoring deletion of symlink %s"
  3355. msgstr "ignorando la eliminación del enlace simbólico «%s»"
  3356. #: scripts/Dpkg/Source/Patch.pm
  3357. #, perl-format
  3358. msgid "newly created empty file '%s' will not be represented in diff"
  3359. msgstr "el fichero vacío recién creado «%s» no se representará en el diff"
  3360. #: scripts/Dpkg/Source/Patch.pm
  3361. #, perl-format
  3362. msgid "executable mode %04o of '%s' will not be represented in diff"
  3363. msgstr "el modo de ejecución «%04o» de «%s» no se representará en el diff"
  3364. #: scripts/Dpkg/Source/Patch.pm
  3365. #, perl-format
  3366. msgid "special mode %04o of '%s' will not be represented in diff"
  3367. msgstr "el modo especial «%04o» de «%s» no se representará en el diff"
  3368. #: scripts/Dpkg/Source/Patch.pm
  3369. #, perl-format
  3370. msgid "cannot represent change to %s:"
  3371. msgstr "no se puede representar el cambio hecho a %s:"
  3372. #: scripts/Dpkg/Source/Patch.pm
  3373. #, perl-format
  3374. msgid " new version is %s"
  3375. msgstr " la versión nueva es %s"
  3376. #: scripts/Dpkg/Source/Patch.pm
  3377. #, perl-format
  3378. msgid " old version is %s"
  3379. msgstr " la versión antigua es %s"
  3380. #: scripts/Dpkg/Source/Patch.pm
  3381. #, fuzzy, perl-format
  3382. #| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3383. msgid "diff %s patches file with C-style encoded filename"
  3384. msgstr "el diff «%s» parchea el fichero cuyo nombre termina con «.dpkg-orig»"
  3385. #: scripts/Dpkg/Source/Patch.pm
  3386. #, perl-format
  3387. msgid "expected ^--- in line %d of diff '%s'"
  3388. msgstr "se esperaba «^---» en la línea %d del fichero de diferencias «%s»"
  3389. #: scripts/Dpkg/Source/Patch.pm
  3390. #, fuzzy, perl-format
  3391. #| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3392. msgid "diff '%s' patches file with name ending in .dpkg-orig"
  3393. msgstr "el diff «%s» parchea el fichero cuyo nombre termina con «.dpkg-orig»"
  3394. #: scripts/Dpkg/Source/Patch.pm
  3395. #, perl-format
  3396. msgid "diff '%s' finishes in middle of ---/+++ (line %d)"
  3397. msgstr "el diff «%s» termina en la mitad de «---/+++» (línea %d)"
  3398. #: scripts/Dpkg/Source/Patch.pm
  3399. #, perl-format
  3400. msgid "line after --- isn't as expected in diff '%s' (line %d)"
  3401. msgstr ""
  3402. "la línea después de «---» no es como se esperaba en el diff «%s» (línea %d)"
  3403. #: scripts/Dpkg/Source/Patch.pm
  3404. #, perl-format
  3405. msgid "none of the filenames in ---/+++ are valid in diff '%s' (line %d)"
  3406. msgstr ""
  3407. "ninguno de los ficheros en «---/+++» son válidos en el diff «%s» (línea %d)"
  3408. #: scripts/Dpkg/Source/Patch.pm scripts/Dpkg/Source/Quilt.pm
  3409. #, perl-format
  3410. msgid "%s contains an insecure path: %s"
  3411. msgstr "%s contiene una ruta no segura: «%s»"
  3412. #: scripts/Dpkg/Source/Patch.pm
  3413. #, perl-format
  3414. msgid "diff %s modifies file %s through a symlink: %s"
  3415. msgstr ""
  3416. "el diff «%s» modifica el fichero «%s» a través de un enlace simbólico: %s"
  3417. #: scripts/Dpkg/Source/Patch.pm
  3418. #, perl-format
  3419. msgid "original and modified files are /dev/null in diff '%s' (line %d)"
  3420. msgstr ""
  3421. "los ficheros originales y modificados son están en «/dev/null» en el diff "
  3422. "«%s» (línea %d)"
  3423. #: scripts/Dpkg/Source/Patch.pm
  3424. #, perl-format
  3425. msgid "file removal without proper filename in diff '%s' (line %d)"
  3426. msgstr ""
  3427. "se ha detectado la eliminación de un fichero sin un nombre adecuado en el "
  3428. "diff «%s» (línea %d)"
  3429. #: scripts/Dpkg/Source/Patch.pm
  3430. #, perl-format
  3431. msgid "diff %s removes a non-existing file %s (line %d)"
  3432. msgstr "el diff «%s» elimina el fichero no existente «%s» (línea %d)"
  3433. #: scripts/Dpkg/Source/Patch.pm
  3434. #, perl-format
  3435. msgid "diff '%s' patches something which is not a plain file"
  3436. msgstr "el diff «%s» parchea algo que no es un fichero simple"
  3437. #: scripts/Dpkg/Source/Patch.pm
  3438. #, perl-format
  3439. msgid "diff '%s' patches file %s twice"
  3440. msgstr "el diff «%s» parchea el fichero «%s» dos veces"
  3441. #: scripts/Dpkg/Source/Patch.pm
  3442. #, perl-format
  3443. msgid "unexpected end of diff '%s'"
  3444. msgstr "se ha detectado un fin del fichero de diferencias «%s» inesperado"
  3445. #: scripts/Dpkg/Source/Patch.pm
  3446. #, perl-format
  3447. msgid "expected [ +-] at start of line %d of diff '%s'"
  3448. msgstr "se esperaba [ +-] al principio de la línea %d del diff «%s»"
  3449. #: scripts/Dpkg/Source/Patch.pm
  3450. #, perl-format
  3451. msgid "expected ^@@ at line %d of diff '%s'"
  3452. msgstr "se esperaba ^@@ en la línea %d del diff «%s»"
  3453. #: scripts/Dpkg/Source/Patch.pm
  3454. #, perl-format
  3455. msgid "diff '%s' doesn't contain any patch"
  3456. msgstr "el diff «%s» no contiene ningún parche"
  3457. #: scripts/Dpkg/Source/Patch.pm
  3458. #, perl-format
  3459. msgid "remove patch backup file %s"
  3460. msgstr "eliminar el fichero de respaldo «%s» del parche"
  3461. #: scripts/Dpkg/Source/Patch.pm
  3462. msgid "nonexistent"
  3463. msgstr "inexistente"
  3464. #: scripts/Dpkg/Source/Patch.pm
  3465. msgid "plain file"
  3466. msgstr "fichero simple"
  3467. #: scripts/Dpkg/Source/Patch.pm
  3468. msgid "directory"
  3469. msgstr "directorio"
  3470. #: scripts/Dpkg/Source/Patch.pm
  3471. #, perl-format
  3472. msgid "symlink to %s"
  3473. msgstr "enlace simbólico a «%s»"
  3474. #: scripts/Dpkg/Source/Patch.pm
  3475. msgid "block device"
  3476. msgstr "dispositivo de bloque"
  3477. #: scripts/Dpkg/Source/Patch.pm
  3478. msgid "character device"
  3479. msgstr "fichero de dispositivo («character device»)"
  3480. #: scripts/Dpkg/Source/Patch.pm
  3481. msgid "named pipe"
  3482. msgstr "tubería nombrada"
  3483. #: scripts/Dpkg/Source/Patch.pm
  3484. msgid "named socket"
  3485. msgstr "socket de Unix nombrado"
  3486. #: scripts/Dpkg/Source/Quilt.pm
  3487. #, perl-format
  3488. msgid "cannot mkdir %s"
  3489. msgstr "no se puede crear el directorio «%s»"
  3490. #: scripts/Dpkg/Source/Quilt.pm
  3491. msgid "the patch has fuzz which is not allowed, or is malformed"
  3492. msgstr ""
  3493. "el paquete tiene marcas borrosas lo cual no está permitido, o está corrompido"
  3494. #: scripts/Dpkg/Source/Quilt.pm
  3495. #, perl-format
  3496. msgid "if patch '%s' is correctly applied by quilt, use '%s' to update it"
  3497. msgstr ""
  3498. "si quilt aplica el parche «%s» adecuadamente, utilice «%s» para actualizarlo"
  3499. #: scripts/Dpkg/Source/Quilt.pm
  3500. #, perl-format
  3501. msgid "%s should be a directory or non-existing"
  3502. msgstr "%s debería ser un directorio, o no existir"
  3503. #: scripts/Dpkg/Source/Quilt.pm
  3504. #, perl-format
  3505. msgid "%s should be a file or non-existing"
  3506. msgstr "%s debería ser un fichero, o no existir"
  3507. #: scripts/Dpkg/Source/Quilt.pm
  3508. #, perl-format
  3509. msgid ""
  3510. "the series file (%s) contains unsupported options ('%s', line %s); dpkg-"
  3511. "source might fail when applying patches"
  3512. msgstr ""
  3513. "El fichero «series» (%s) contiene opciones incompatibles («%s», línea %s); "
  3514. "puede que dpkg-source falle al aplicar parches"
  3515. #: scripts/Dpkg/Source/Quilt.pm
  3516. #, perl-format
  3517. msgid "restoring quilt backup files for %s"
  3518. msgstr "restaurando los ficheros de respaldo de quilt para %s"
  3519. #: scripts/Dpkg/Substvars.pm
  3520. #, perl-format
  3521. msgid "bad line in substvars file %s at line %d"
  3522. msgstr ""
  3523. "línea incorrecta en el fichero de sustitución de variables «%s» en la línea "
  3524. "%d"
  3525. #: scripts/Dpkg/Substvars.pm
  3526. #, perl-format
  3527. msgid "too many substitutions - recursive ? - in '%s'"
  3528. msgstr "demasiadas sustituciones (¿recursivo?) en «%s»"
  3529. #: scripts/Dpkg/Substvars.pm
  3530. #, perl-format
  3531. msgid "deprecated substitution variable ${%s}"
  3532. msgstr "la variable de sustitución ${%s} es obsoleta"
  3533. #: scripts/Dpkg/Substvars.pm
  3534. #, perl-format
  3535. msgid "unknown substitution variable ${%s}"
  3536. msgstr "la variable de sustitución ${%s} es desconocida"
  3537. #: scripts/Dpkg/Substvars.pm
  3538. #, perl-format
  3539. msgid "unused substitution variable ${%s}"
  3540. msgstr "la variable de sustitución ${%s} no está en uso"
  3541. #: scripts/Dpkg/Vars.pm
  3542. #, perl-format
  3543. msgid "source package name '%s' is illegal: %s"
  3544. msgstr "el nombre de paquete fuente «%s» no es válido: %s"
  3545. #: scripts/Dpkg/Vars.pm
  3546. #, perl-format
  3547. msgid "source package has two conflicting values - %s and %s"
  3548. msgstr "el paquete fuente tiene dos valores en conflicto: «%s» y «%s»"
  3549. #: scripts/Dpkg/Vendor/Debian.pm
  3550. #, perl-format
  3551. msgid "unknown %s feature in %s variable: %s"
  3552. msgstr "funcionalidad %s desconocida en variable %s: %s"
  3553. #: scripts/Dpkg/Vendor/Debian.pm
  3554. #, perl-format
  3555. msgid "incorrect value in %s option of %s variable: %s"
  3556. msgstr "valor incorrecto en la opción %s de la variable %s: %s"
  3557. #: scripts/Dpkg/Vendor/Debian.pm
  3558. #, perl-format
  3559. msgid "unknown host architecture '%s'"
  3560. msgstr "arquitectura del sistema desconocida «%s»"
  3561. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3562. msgid ""
  3563. "Version number suggests Ubuntu changes, but Maintainer: does not have Ubuntu "
  3564. "address"
  3565. msgstr ""
  3566. "El número de versión sugiere cambios para Ubuntu, pero «Maintainer:» no "
  3567. "tiene una dirección de correo de Ubuntu"
  3568. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3569. msgid ""
  3570. "Version number suggests Ubuntu changes, but there is no XSBC-Original-"
  3571. "Maintainer field"
  3572. msgstr ""
  3573. "El número de versión sugiere cambios para Ubuntu, pero no hay ningún campo "
  3574. "«XSBC-Original-Maintainer»"
  3575. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3576. msgid "'hardening' flag found but 'hardening-wrapper' not installed"
  3577. msgstr ""
  3578. "se ha encontrado la opción «hardening», pero hardening-wrapper no está "
  3579. "instalado"
  3580. #: scripts/Dpkg/Vendor/Ubuntu.pm
  3581. #, perl-format
  3582. msgid "overriding %s in environment: %s"
  3583. msgstr "sustituyendo «%s» en el entorno: «%s»"
  3584. #: scripts/Dpkg/Version.pm
  3585. #, perl-format
  3586. msgid "%s is not a valid version"
  3587. msgstr "%s no es una versión válida"
  3588. #: scripts/Dpkg/Version.pm
  3589. msgid "version number cannot be empty"
  3590. msgstr "el número de versión no puede estar vacío"
  3591. #: scripts/Dpkg/Version.pm
  3592. msgid "version number does not start with digit"
  3593. msgstr "el número de versión no comienza con un dígito"
  3594. #: scripts/Dpkg/Version.pm
  3595. #, perl-format
  3596. msgid "version number contains illegal character '%s'"
  3597. msgstr "el número de versión contiene el carácter ilegal «%s»"
  3598. #: scripts/Dpkg/Version.pm
  3599. #, perl-format
  3600. msgid "epoch part of the version number is not a number: '%s'"
  3601. msgstr "la sección «epoch» del número de versión no es un número: «%s»"
  3602. #, fuzzy
  3603. #~| msgid "Couldn't open %s for reading"
  3604. #~ msgid "couldn't open %s for reading"
  3605. #~ msgstr "No se ha podido abrir «%s» para su lectura"
  3606. #, fuzzy
  3607. #~| msgid "error closing %s ($? %d, $! '%s')"
  3608. #~ msgid "error closing %s (%s)"
  3609. #~ msgstr "se ha detectado un fallo al cerrar «%s» ($? %d, $! `%s')"
  3610. #~ msgid "couldn't parse date %s"
  3611. #~ msgstr "no se ha podido analizar la fecha %s"
  3612. #~ msgid "%s: unrepresentable changes to source"
  3613. #~ msgstr "%s: cambios irrepresentables en las fuentes"
  3614. #~ msgid "open new substvars file '%s'"
  3615. #~ msgstr "abrir el nuevo fichero de sustitución de variables «%s»"
  3616. #~ msgid "open old varlist file '%s' for reading"
  3617. #~ msgstr "abrir el antiguo fichero de lista de variables %s para su lectura"
  3618. #~ msgid "copy old entry to new varlist file '%s'"
  3619. #~ msgstr ""
  3620. #~ "copiar la entrada antigua al nuevo fichero de lista de variables «%s»"
  3621. #~ msgid ""
  3622. #~ "this is currently a non-fatal warning with -S, but will probably become "
  3623. #~ "fatal in the future"
  3624. #~ msgstr ""
  3625. #~ "actualmente, es un aviso no crítico con «-S», pero puede que lo sea en el "
  3626. #~ "futuro"
  3627. #~ msgid "read changesdescription"
  3628. #~ msgstr "leer la descripción de cambios («changesdescription»)"
  3629. #~ msgid "chdir for du to `%s'"
  3630. #~ msgstr "chdir para du a «%s»"
  3631. #~ msgid "du in `%s'"
  3632. #~ msgstr "du en «%s»"
  3633. #~ msgid "du gave unexpected output `%s'"
  3634. #~ msgstr "du devolvió una salida no esperada «%s»"
  3635. #~ msgid "used that one and ignored data from %s!"
  3636. #~ msgstr "¡se usará ese y se ignorarán los datos de %s!"
  3637. #, fuzzy
  3638. #~| msgid "Package %s (filename %s) is repeat;"
  3639. #~ msgid "package %s (filename %s) is repeat;"
  3640. #~ msgstr "El paquete %s (nombre de fichero %s) está repetido "
  3641. #~ msgid ""
  3642. #~ "Usage: %s [<option>...] [<changelogfile>]\n"
  3643. #~ "\n"
  3644. #~ "Options:\n"
  3645. #~ " -?, --help print usage information\n"
  3646. #~ " --version, -V print version information\n"
  3647. #~ " --label, -l <file> name of the changelog file to\n"
  3648. #~ " use in error messages\n"
  3649. #~ " --file <file> changelog file to parse, defaults\n"
  3650. #~ " to '-' (standard input)\n"
  3651. #~ " --format <outputformat> see man page for list of available\n"
  3652. #~ " output formats, defaults to 'dpkg'\n"
  3653. #~ " for compatibility with dpkg-dev\n"
  3654. #~ " --since, -s, -v <version> include all changes later than version\n"
  3655. #~ " --until, -u <version> include all changes earlier than version\n"
  3656. #~ " --from, -f <version> include all changes equal or later\n"
  3657. #~ " than version\n"
  3658. #~ " --to, -t <version> include all changes up to or equal\n"
  3659. #~ " than version\n"
  3660. #~ " --count, -c, -n <number> include <number> entries from the top\n"
  3661. #~ " (or the tail if <number> is lower than "
  3662. #~ "0)\n"
  3663. #~ " --offset, -o <number> change the starting point for --count,\n"
  3664. #~ " counted from the top (or the tail if\n"
  3665. #~ " <number> is lower than 0)\n"
  3666. #~ " --all include all changes\n"
  3667. #~ msgstr ""
  3668. #~ "Uso: %s [<opción>...] [<fichero-changelog>]\n"
  3669. #~ "\n"
  3670. #~ "Opciones:\n"
  3671. #~ " -?, --help Muestra información de uso\n"
  3672. #~ " --version, -V Muestra información de la versión\n"
  3673. #~ " --label, -l <fichero> Nombre del fichero «changelog» que "
  3674. #~ "utilizar\n"
  3675. #~ " para los mensajes de error\n"
  3676. #~ " --file <fichero> Fichero «changelog» que analizar, por\n"
  3677. #~ " omisión, «-» (entrada estándar)\n"
  3678. #~ " --format <formato-salida> Consulte la página de manual para los\n"
  3679. #~ " formatos de salida disponibles. Por "
  3680. #~ "omisión,\n"
  3681. #~ " «dpkg», para la compatibilidad con dpkg-"
  3682. #~ "dev\n"
  3683. #~ " --since, -s, -v <versión> Incluye todos los cambios posteriores a "
  3684. #~ "la\n"
  3685. #~ " versión\n"
  3686. #~ " --until, -u <versión> Incluye todos los cambios anteriores a "
  3687. #~ "la\n"
  3688. #~ " versión\n"
  3689. #~ " --from, -f <versión> Incluye todos los cambios de la misma\n"
  3690. #~ " versión o posterior\n"
  3691. #~ " --to, -t <versión> Incluye todos los cambios de la misma\n"
  3692. #~ " versión o anterior\n"
  3693. #~ " --count, -c, -n <número> Incluye el <número> de entradas desde el\n"
  3694. #~ " principio (o el final si el <número> es\n"
  3695. #~ " inferior a cero)\n"
  3696. #~ " --offset, -o <número> Modifica el punto inicial para «--"
  3697. #~ "count»,\n"
  3698. #~ " calculado desde el principio (o el final "
  3699. #~ "si\n"
  3700. #~ " el <número> es inferior a cero)\n"
  3701. #~ " --all Incluye todos los cambios\n"
  3702. #~ msgid "checksum program gave bogus output `%s'"
  3703. #~ msgstr "el programa de suma de control devolvió una salida inválida «%s»"
  3704. #~ msgid ""
  3705. #~ "Options passed to dpkg-architecture:\n"
  3706. #~ " -a<arch> Debian architecture we build for.\n"
  3707. #~ " -t<system> set GNU system type."
  3708. #~ msgstr ""
  3709. #~ "Opciones que se introducen a dpkg-architecture:\n"
  3710. #~ " -a<arquitectura> Arquitectura de Debian para la que se construye.\n"
  3711. #~ " -t<sistema> Define el tipo de sistema GNU."
  3712. #, fuzzy
  3713. #~| msgid ""
  3714. #~| "Options:\n"
  3715. #~| " -a<debian-arch> set current Debian architecture.\n"
  3716. #~| " -t<gnu-system> set current GNU system type.\n"
  3717. #~| " -L list valid architectures.\n"
  3718. #~| " -f force flag (override variables set in environment)."
  3719. #~ msgid ""
  3720. #~ "Options:\n"
  3721. #~ " -a<debian-arch> set current Debian architecture.\n"
  3722. #~ " -t<gnu-system> set current GNU system type.\n"
  3723. #~ " -f force flag (override variables set in environment)."
  3724. #~ msgstr ""
  3725. #~ "Opciones:\n"
  3726. #~ " -a<debian-arch> Define la arquitectura de Debian actual.\n"
  3727. #~ " -t<gnu-system> Define el tipo de sistema GNU actual.\n"
  3728. #~ " -L Muestra las arquitecturas válidas.\n"
  3729. #~ " -f Fuerza una opción (variables de sustitución "
  3730. #~ "definidos en el entorno)."
  3731. #~ msgid ""
  3732. #~ "need a command (-x, -b, --before-build, --after-build, --print-format, --"
  3733. #~ "commit)"
  3734. #~ msgstr ""
  3735. #~ "se requiere una orden (-x, -b, --before-build, --after-build, --print-"
  3736. #~ "format, --commit)"
  3737. #~ msgid "only one of -x, -b or --print-format allowed, and only once"
  3738. #~ msgstr ""
  3739. #~ "sólo se permite uno de entre «-x», «-b» o «--print-format» a la vez, y "
  3740. #~ "sólo puede aparecer una vez"
  3741. #~ msgid "binary-only upload - not including any source code"
  3742. #~ msgstr "subida sólo de binarios - no se incluye ningún código fuente"
  3743. #~ msgid "fuzz is not allowed when applying patches"
  3744. #~ msgstr "no se permite el ajuste («fuzz») al aplicar parches"
  3745. #, fuzzy
  3746. #~| msgid "diff `%s' patches file with name ending .dpkg-orig"
  3747. #~ msgid "diff %s patches file with unknown escape sequence \\%s"
  3748. #~ msgstr ""
  3749. #~ "el diff «%s» parchea el fichero cuyo nombre termina con «.dpkg-orig»"
  3750. #~ msgid "open new files list file"
  3751. #~ msgstr "abrir el nuevo fichero «files» de lista de ficheros"
  3752. #~ msgid "copy old entry to new files list file"
  3753. #~ msgstr ""
  3754. #~ "copiar la entrada antigua al nuevo fichero «files» de la lista de ficheros"
  3755. #~ msgid "read old files list file"
  3756. #~ msgstr "leer el antiguo fichero «files» de la lista de ficheros"
  3757. #~ msgid "write new entry to new files list file"
  3758. #~ msgstr ""
  3759. #~ "escribir la entrada nueva al nuevo fichero «files» de la lista de ficheros"
  3760. #~ msgid "close new files list file"
  3761. #~ msgstr "cerrar el nuevo fichero «files» de la lista de ficheros"
  3762. #~ msgid "cannot read files list file"
  3763. #~ msgstr "no se puede leer el fichero con la lista de ficheros"
  3764. #~ msgid "duplicate files list entry for package %s (line %d)"
  3765. #~ msgstr ""
  3766. #~ "entrada duplicada en la lista de ficheros para el paquete %s (línea %d)"
  3767. #~ msgid "close old files list file"
  3768. #~ msgstr "cerrar el antiguo fichero de la lista de ficheros"
  3769. #~ msgid "internal error"
  3770. #~ msgstr "fallo interno"
  3771. #~ msgid "fatal error occurred while parsing input"
  3772. #~ msgstr "se ha detectado un error fatal al analizar la entrada"