ast.po 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897
  1. # iñigo varela <ivarela@softastur.org>, 2010.
  2. # maacub <maacub@gmail.com>, 2010.
  3. msgid ""
  4. msgstr ""
  5. "Project-Id-Version: apt 0.7.18\n"
  6. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  7. "POT-Creation-Date: 2014-07-10 13:58+0200\n"
  8. "PO-Revision-Date: 2010-10-02 23:35+0100\n"
  9. "Last-Translator: Iñigo Varela <ivarela@softastur.org>\n"
  10. "Language-Team: Asturian (ast)\n"
  11. "Language: ast\n"
  12. "MIME-Version: 1.0\n"
  13. "Content-Type: text/plain; charset=UTF-8\n"
  14. "Content-Transfer-Encoding: 8bit\n"
  15. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  16. "X-Generator: Virtaal 0.5.2\n"
  17. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:491
  18. #, fuzzy, c-format
  19. msgid "Clean of %s is not supported"
  20. msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada"
  21. #. Only warn if there are no sources.list.d.
  22. #. Only warn if there is no sources.list file.
  23. #: apt-pkg/clean.cc:43 apt-pkg/init.cc:103 apt-pkg/init.cc:111
  24. #: apt-pkg/acquire.cc:495 apt-pkg/policy.cc:381 apt-pkg/sourcelist.cc:280
  25. #: apt-pkg/sourcelist.cc:286 apt-pkg/contrib/fileutl.cc:369
  26. #: apt-pkg/contrib/fileutl.cc:482 apt-pkg/contrib/cdromutl.cc:205
  27. #: methods/mirror.cc:95 apt-inst/extract.cc:471
  28. #, c-format
  29. msgid "Unable to read %s"
  30. msgstr "Nun ye a lleer %s"
  31. #: apt-pkg/clean.cc:49 apt-pkg/clean.cc:67 apt-pkg/clean.cc:130
  32. #: apt-pkg/acquire.cc:501 apt-pkg/acquire.cc:526
  33. #: apt-pkg/contrib/cdromutl.cc:201 apt-pkg/contrib/cdromutl.cc:235
  34. #: methods/mirror.cc:101 methods/mirror.cc:130
  35. #, c-format
  36. msgid "Unable to change to %s"
  37. msgstr "Nun se pudo cambiar a %s"
  38. #: apt-pkg/clean.cc:64
  39. #, c-format
  40. msgid "Unable to stat %s."
  41. msgstr "Nun pudo lleese %s."
  42. #: apt-pkg/install-progress.cc:57
  43. #, c-format
  44. msgid "Progress: [%3i%%]"
  45. msgstr ""
  46. #: apt-pkg/install-progress.cc:91 apt-pkg/install-progress.cc:174
  47. msgid "Running dpkg"
  48. msgstr "Executando dpkt"
  49. #: apt-pkg/init.cc:146
  50. #, c-format
  51. msgid "Packaging system '%s' is not supported"
  52. msgstr "El sistema d'empaquetáu '%s' nun ta sofitáu"
  53. #: apt-pkg/init.cc:162
  54. msgid "Unable to determine a suitable packaging system type"
  55. msgstr "Nun pudo determinase una triba de sistema d'empaquetáu afayadiza"
  56. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:775
  57. #, c-format
  58. msgid "Wrote %i records.\n"
  59. msgstr "%i rexistros escritos.\n"
  60. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:777
  61. #, c-format
  62. msgid "Wrote %i records with %i missing files.\n"
  63. msgstr "%i rexistros escritos con %i ficheros de menos.\n"
  64. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:780
  65. #, c-format
  66. msgid "Wrote %i records with %i mismatched files\n"
  67. msgstr "%i rexistros escritos con %i ficheros mal empareyaos\n"
  68. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:783
  69. #, c-format
  70. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  71. msgstr ""
  72. "Escribiéronse %i rexistros con %i ficheros perdíos y %i ficheros que nun "
  73. "concasen\n"
  74. #: apt-pkg/indexcopy.cc:515
  75. #, c-format
  76. msgid "Can't find authentication record for: %s"
  77. msgstr "Nun puede alcontrase'l rexistru d'autenticación pa: %s"
  78. #: apt-pkg/indexcopy.cc:521
  79. #, c-format
  80. msgid "Hash mismatch for: %s"
  81. msgstr "El hash nun concasa pa: %s"
  82. #: apt-pkg/acquire-worker.cc:116
  83. #, c-format
  84. msgid "The method driver %s could not be found."
  85. msgstr "Nun pudo alncontrase'l controlador de métodu %s."
  86. #: apt-pkg/acquire-worker.cc:118
  87. #, fuzzy, c-format
  88. msgid "Is the package %s installed?"
  89. msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n"
  90. #: apt-pkg/acquire-worker.cc:169
  91. #, c-format
  92. msgid "Method %s did not start correctly"
  93. msgstr "El métodu %s nun entamó correchamente"
  94. #: apt-pkg/acquire-worker.cc:460
  95. #, c-format
  96. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  97. msgstr "Por favor, introduz el discu '%s' nel preséu '%s' y calca Intro."
  98. #: apt-pkg/cachefile.cc:94
  99. msgid "The package lists or status file could not be parsed or opened."
  100. msgstr ""
  101. "Nun pudieron analizase o abrise les llistes de paquetes o el ficheru d'estáu."
  102. #: apt-pkg/cachefile.cc:98
  103. msgid "You may want to run apt-get update to correct these problems"
  104. msgstr "Has d'executar apt-get update pa iguar estos problemes"
  105. #: apt-pkg/cachefile.cc:116
  106. msgid "The list of sources could not be read."
  107. msgstr "Nun pudo lleese la llista de fontes."
  108. #: apt-pkg/pkgcache.cc:150
  109. msgid "Empty package cache"
  110. msgstr "Caché de paquetes balera."
  111. #: apt-pkg/pkgcache.cc:156 apt-pkg/pkgcache.cc:167
  112. msgid "The package cache file is corrupted"
  113. msgstr "El ficheru de caché de paquetes ta tollíu"
  114. #: apt-pkg/pkgcache.cc:161
  115. msgid "The package cache file is an incompatible version"
  116. msgstr "El ficheru de caché de paquetes ye una versión incompatible"
  117. #: apt-pkg/pkgcache.cc:164
  118. #, fuzzy
  119. msgid "The package cache file is corrupted, it is too small"
  120. msgstr "El ficheru de caché de paquetes ta tollíu"
  121. #: apt-pkg/pkgcache.cc:171
  122. #, c-format
  123. msgid "This APT does not support the versioning system '%s'"
  124. msgstr "Esti APT nun soporta'l sistema de versiones '%s'"
  125. #: apt-pkg/pkgcache.cc:181
  126. #, fuzzy, c-format
  127. msgid "The package cache was built for different architectures: %s vs %s"
  128. msgstr "La caché de paquetes creóse pa una arquitectura estremada"
  129. #: apt-pkg/pkgcache.cc:324
  130. msgid "Depends"
  131. msgstr "Depende de"
  132. #: apt-pkg/pkgcache.cc:324
  133. msgid "PreDepends"
  134. msgstr "Predepende de"
  135. #: apt-pkg/pkgcache.cc:324
  136. msgid "Suggests"
  137. msgstr "Suxer"
  138. #: apt-pkg/pkgcache.cc:325
  139. msgid "Recommends"
  140. msgstr "Recomienda"
  141. #: apt-pkg/pkgcache.cc:325
  142. msgid "Conflicts"
  143. msgstr "En conflictu con"
  144. #: apt-pkg/pkgcache.cc:325
  145. msgid "Replaces"
  146. msgstr "Sustituye a"
  147. #: apt-pkg/pkgcache.cc:326
  148. msgid "Obsoletes"
  149. msgstr "Fai obsoletu a"
  150. #: apt-pkg/pkgcache.cc:326
  151. msgid "Breaks"
  152. msgstr "Ruempe"
  153. #: apt-pkg/pkgcache.cc:326
  154. msgid "Enhances"
  155. msgstr "Aumenta"
  156. #: apt-pkg/pkgcache.cc:337
  157. msgid "important"
  158. msgstr "importante"
  159. #: apt-pkg/pkgcache.cc:337
  160. msgid "required"
  161. msgstr "requeríu"
  162. #: apt-pkg/pkgcache.cc:337
  163. msgid "standard"
  164. msgstr "estándar"
  165. #: apt-pkg/pkgcache.cc:338
  166. msgid "optional"
  167. msgstr "opcional"
  168. #: apt-pkg/pkgcache.cc:338
  169. msgid "extra"
  170. msgstr "extra"
  171. #: apt-pkg/pkgrecords.cc:38
  172. #, c-format
  173. msgid "Index file type '%s' is not supported"
  174. msgstr "La triba de ficheru d'indiz '%s' nun ta sofitada"
  175. #: apt-pkg/cachefilter.cc:35 apt-private/private-output.cc:786
  176. #, c-format
  177. msgid "Regex compilation error - %s"
  178. msgstr "Error de compilación d'espresión regular - %s"
  179. #: apt-pkg/pkgcachegen.cc:116
  180. msgid "Cache has an incompatible versioning system"
  181. msgstr "La caché tien un sistema de versiones incompatible"
  182. #. TRANSLATOR: The first placeholder is a package name,
  183. #. the other two should be copied verbatim as they include debug info
  184. #: apt-pkg/pkgcachegen.cc:247 apt-pkg/pkgcachegen.cc:257
  185. #: apt-pkg/pkgcachegen.cc:323 apt-pkg/pkgcachegen.cc:389
  186. #: apt-pkg/pkgcachegen.cc:393 apt-pkg/pkgcachegen.cc:410
  187. #: apt-pkg/pkgcachegen.cc:418 apt-pkg/pkgcachegen.cc:422
  188. #: apt-pkg/pkgcachegen.cc:426 apt-pkg/pkgcachegen.cc:447
  189. #: apt-pkg/pkgcachegen.cc:486 apt-pkg/pkgcachegen.cc:532
  190. #: apt-pkg/pkgcachegen.cc:546 apt-pkg/pkgcachegen.cc:577
  191. #: apt-pkg/pkgcachegen.cc:591
  192. #, fuzzy, c-format
  193. msgid "Error occurred while processing %s (%s%d)"
  194. msgstr "Hebo un error al procesar %s (FindPkg)"
  195. #: apt-pkg/pkgcachegen.cc:280
  196. msgid "Wow, you exceeded the number of package names this APT is capable of."
  197. msgstr ""
  198. "Coime, perpasaste'l númberu de nomes de paquete qu'esti APT ye a remanar."
  199. #: apt-pkg/pkgcachegen.cc:283
  200. msgid "Wow, you exceeded the number of versions this APT is capable of."
  201. msgstr "Vaya, perpasaste'l númberu de versiones coles que puede esti APT."
  202. #: apt-pkg/pkgcachegen.cc:286
  203. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  204. msgstr "Coime, perpasaste'l númberu de descripciones qu'esti APT ye a remanar."
  205. #: apt-pkg/pkgcachegen.cc:289
  206. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  207. msgstr "Vaya, perpasaste'l númberu de dependencies coles que puede esti APT."
  208. #: apt-pkg/pkgcachegen.cc:598
  209. #, c-format
  210. msgid "Package %s %s was not found while processing file dependencies"
  211. msgstr "Al procesar dependencies de ficheros nun s'alcontró el paquete %s %s"
  212. #: apt-pkg/pkgcachegen.cc:1233
  213. #, c-format
  214. msgid "Couldn't stat source package list %s"
  215. msgstr "Nun se puede lleer la llista de paquetes d'oríxenes %s"
  216. #: apt-pkg/pkgcachegen.cc:1321 apt-pkg/pkgcachegen.cc:1425
  217. #: apt-pkg/pkgcachegen.cc:1431 apt-pkg/pkgcachegen.cc:1588
  218. msgid "Reading package lists"
  219. msgstr "Lleendo llista de paquetes"
  220. #: apt-pkg/pkgcachegen.cc:1338
  221. msgid "Collecting File Provides"
  222. msgstr "Recoyendo ficheros qu'apurren"
  223. #: apt-pkg/pkgcachegen.cc:1422 apt-pkg/contrib/fileutl.cc:2098
  224. #: cmdline/apt-extracttemplates.cc:262
  225. #, c-format
  226. msgid "Unable to write to %s"
  227. msgstr "Nun se pue escribir en %s"
  228. #: apt-pkg/pkgcachegen.cc:1530 apt-pkg/pkgcachegen.cc:1537
  229. msgid "IO Error saving source cache"
  230. msgstr "Fallu de E/S al grabar caché d'oríxenes"
  231. #: apt-pkg/edsp.cc:52 apt-pkg/edsp.cc:78
  232. msgid "Send scenario to solver"
  233. msgstr ""
  234. #: apt-pkg/edsp.cc:241
  235. msgid "Send request to solver"
  236. msgstr ""
  237. #: apt-pkg/edsp.cc:320
  238. msgid "Prepare for receiving solution"
  239. msgstr ""
  240. #: apt-pkg/edsp.cc:327
  241. msgid "External solver failed without a proper error message"
  242. msgstr ""
  243. #: apt-pkg/edsp.cc:619 apt-pkg/edsp.cc:622 apt-pkg/edsp.cc:627
  244. msgid "Execute external solver"
  245. msgstr ""
  246. #: apt-pkg/acquire-item.cc:160 apt-pkg/contrib/fileutl.cc:2109
  247. #, c-format
  248. msgid "rename failed, %s (%s -> %s)."
  249. msgstr "falló'l cambiu de nome, %s (%s -> %s)."
  250. #: apt-pkg/acquire-item.cc:175
  251. msgid "Hash Sum mismatch"
  252. msgstr "La suma hash nun concasa"
  253. #: apt-pkg/acquire-item.cc:180
  254. msgid "Size mismatch"
  255. msgstr "El tamañu nun concasa"
  256. #: apt-pkg/acquire-item.cc:185
  257. #, fuzzy
  258. msgid "Invalid file format"
  259. msgstr "Operación incorreuta: %s"
  260. #: apt-pkg/acquire-item.cc:1671
  261. #, c-format
  262. msgid ""
  263. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  264. "or malformed file)"
  265. msgstr ""
  266. #: apt-pkg/acquire-item.cc:1689
  267. #, fuzzy, c-format
  268. msgid "Unable to find hash sum for '%s' in Release file"
  269. msgstr "Nun se pudo parchear el ficheru release %s"
  270. #: apt-pkg/acquire-item.cc:1729
  271. msgid "There is no public key available for the following key IDs:\n"
  272. msgstr "Nun hai clave pública denguna disponible pa les IDs de clave darréu:\n"
  273. #: apt-pkg/acquire-item.cc:1767
  274. #, c-format
  275. msgid ""
  276. "Release file for %s is expired (invalid since %s). Updates for this "
  277. "repository will not be applied."
  278. msgstr ""
  279. #: apt-pkg/acquire-item.cc:1789
  280. #, c-format
  281. msgid "Conflicting distribution: %s (expected %s but got %s)"
  282. msgstr "Conflictu de distribución: %s (esperábase %s pero obtúvose %s)"
  283. #: apt-pkg/acquire-item.cc:1819
  284. #, c-format
  285. msgid ""
  286. "An error occurred during the signature verification. The repository is not "
  287. "updated and the previous index files will be used. GPG error: %s: %s\n"
  288. msgstr ""
  289. "Hebo un fallu durante la verificación de la robla. El repositoriu nun ta "
  290. "anováu y va usase un ficheru índiz. Fallu GPG: %s: %s\n"
  291. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  292. #: apt-pkg/acquire-item.cc:1829 apt-pkg/acquire-item.cc:1834
  293. #, c-format
  294. msgid "GPG error: %s: %s"
  295. msgstr "Fallu GPG: %s: %s"
  296. #: apt-pkg/acquire-item.cc:1964
  297. #, c-format
  298. msgid ""
  299. "I wasn't able to locate a file for the %s package. This might mean you need "
  300. "to manually fix this package. (due to missing arch)"
  301. msgstr ""
  302. "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
  303. "necesites iguar manualmente esti paquete (por faltar una arquitectura)"
  304. #: apt-pkg/acquire-item.cc:2030
  305. #, c-format
  306. msgid "Can't find a source to download version '%s' of '%s'"
  307. msgstr ""
  308. #: apt-pkg/acquire-item.cc:2066
  309. #, c-format
  310. msgid ""
  311. "The package index files are corrupted. No Filename: field for package %s."
  312. msgstr ""
  313. "Los ficheros d'indiz de paquetes tan corrompíos. Nun hai campu Filename: pal "
  314. "paquete %s."
  315. #: apt-pkg/vendorlist.cc:85
  316. #, c-format
  317. msgid "Vendor block %s contains no fingerprint"
  318. msgstr "El bloque de fornidor %s nun contién una buelga dixital"
  319. #: apt-pkg/acquire.cc:88 apt-pkg/cdrom.cc:829
  320. #, c-format
  321. msgid "List directory %spartial is missing."
  322. msgstr "Falta'l direutoriu de llistes %spartial."
  323. #: apt-pkg/acquire.cc:92
  324. #, c-format
  325. msgid "Archives directory %spartial is missing."
  326. msgstr "Falta'l direutoriu d'archivos %spartial."
  327. #: apt-pkg/acquire.cc:100
  328. #, c-format
  329. msgid "Unable to lock directory %s"
  330. msgstr "Nun pudo bloquiase'l direutoriu %s"
  331. #. only show the ETA if it makes sense
  332. #. two days
  333. #: apt-pkg/acquire.cc:928
  334. #, c-format
  335. msgid "Retrieving file %li of %li (%s remaining)"
  336. msgstr "Descargando ficheru %li de %li (falten %s)"
  337. #: apt-pkg/acquire.cc:930
  338. #, c-format
  339. msgid "Retrieving file %li of %li"
  340. msgstr "Descargando ficheru %li de %li"
  341. #: apt-pkg/update.cc:77 apt-private/private-download.cc:91
  342. #, c-format
  343. msgid "Failed to fetch %s %s\n"
  344. msgstr "Falló algamar %s %s\n"
  345. #: apt-pkg/update.cc:103 apt-pkg/update.cc:105
  346. #, fuzzy
  347. msgid ""
  348. "Some index files failed to download. They have been ignored, or old ones "
  349. "used instead."
  350. msgstr ""
  351. "Nun pudieron descargase dellos ficheros d'índiz; inoráronse o usáronse los "
  352. "antiguos nel so llugar."
  353. #: apt-pkg/srcrecords.cc:52
  354. msgid "You must put some 'source' URIs in your sources.list"
  355. msgstr "Has de poner delles URIs 'fonte' nel ficheru sources.list"
  356. #: apt-pkg/policy.cc:83
  357. #, c-format
  358. msgid ""
  359. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  360. "available in the sources"
  361. msgstr ""
  362. #: apt-pkg/policy.cc:422
  363. #, c-format
  364. msgid "Invalid record in the preferences file %s, no Package header"
  365. msgstr ""
  366. "Rexistru inválidu nel ficheru de preferencies %s, nun hai cabecera Paquete"
  367. #: apt-pkg/policy.cc:444
  368. #, c-format
  369. msgid "Did not understand pin type %s"
  370. msgstr "Nun s'entiende'l tipu de pin %s"
  371. #: apt-pkg/policy.cc:452
  372. msgid "No priority (or zero) specified for pin"
  373. msgstr "Nun hai prioridá (o ye cero) conseñada pa pin"
  374. #: apt-pkg/packagemanager.cc:304 apt-pkg/packagemanager.cc:911
  375. #, c-format
  376. msgid ""
  377. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  378. "under APT::Immediate-Configure for details. (%d)"
  379. msgstr ""
  380. "Nun pudó facese la configuración inmediatamente en '%s'. Por favor, mira man "
  381. "5 apt.conf embaxo APT::Immediate-Configure for details. (%d)"
  382. #: apt-pkg/packagemanager.cc:504 apt-pkg/packagemanager.cc:534
  383. #, fuzzy, c-format
  384. msgid "Could not configure '%s'. "
  385. msgstr "Nun pudo abrise'l ficheru '%s'"
  386. #: apt-pkg/packagemanager.cc:584
  387. #, c-format
  388. msgid ""
  389. "This installation run will require temporarily removing the essential "
  390. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  391. "you really want to do it, activate the APT::Force-LoopBreak option."
  392. msgstr ""
  393. "Esta execución d'instalación va requerir desaniciar temporalmente'l paquete "
  394. "esencial %s por un cote de Conflictos/Pre-Dependencies. Esto normalmente ye "
  395. "malo, pero si daveres quies facelo, activa la opción APT::Force-LoopBreak."
  396. #: apt-pkg/cdrom.cc:497 apt-pkg/sourcelist.cc:347
  397. #, c-format
  398. msgid "Line %u too long in source list %s."
  399. msgstr "Llinia %u enforma llarga na llista d'oríxenes %s."
  400. #: apt-pkg/cdrom.cc:571
  401. msgid "Unmounting CD-ROM...\n"
  402. msgstr "Desmontando'l CD-ROM...\n"
  403. #: apt-pkg/cdrom.cc:586
  404. #, c-format
  405. msgid "Using CD-ROM mount point %s\n"
  406. msgstr "Usando el puntu de montaxe de CD-ROM %s\n"
  407. #: apt-pkg/cdrom.cc:599
  408. msgid "Waiting for disc...\n"
  409. msgstr "Esperando'l discu...\n"
  410. #: apt-pkg/cdrom.cc:609
  411. msgid "Mounting CD-ROM...\n"
  412. msgstr "Montando'l CD-ROM...\n"
  413. #: apt-pkg/cdrom.cc:620
  414. msgid "Identifying... "
  415. msgstr "Identificando... "
  416. #: apt-pkg/cdrom.cc:662
  417. #, c-format
  418. msgid "Stored label: %s\n"
  419. msgstr "Etiqueta guardada: %s\n"
  420. #: apt-pkg/cdrom.cc:680
  421. msgid "Scanning disc for index files...\n"
  422. msgstr "Buscando nel discu ficheros d'índices...\n"
  423. #: apt-pkg/cdrom.cc:734
  424. #, c-format
  425. msgid ""
  426. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  427. "%zu signatures\n"
  428. msgstr ""
  429. "Atopáu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y "
  430. "%zu firmes\n"
  431. #: apt-pkg/cdrom.cc:744
  432. msgid ""
  433. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  434. "wrong architecture?"
  435. msgstr ""
  436. "Nun s'alcuentra dengún paquete de ficheros, seique nun ye un Discu Debian o "
  437. "hai una arquiteutura inválida?"
  438. #: apt-pkg/cdrom.cc:771
  439. #, c-format
  440. msgid "Found label '%s'\n"
  441. msgstr "Atopóse la etiqueta: '%s'\n"
  442. #: apt-pkg/cdrom.cc:800
  443. msgid "That is not a valid name, try again.\n"
  444. msgstr "Esi nun ye un nome válidu; inténtalo otra vuelta.\n"
  445. #: apt-pkg/cdrom.cc:817
  446. #, c-format
  447. msgid ""
  448. "This disc is called: \n"
  449. "'%s'\n"
  450. msgstr ""
  451. "Esti discu llámase: \n"
  452. "'%s'\n"
  453. #: apt-pkg/cdrom.cc:819
  454. msgid "Copying package lists..."
  455. msgstr "Copiando les llistes de paquetes..."
  456. #: apt-pkg/cdrom.cc:863
  457. msgid "Writing new source list\n"
  458. msgstr "Escribiendo llista nueva d'oríxenes\n"
  459. #: apt-pkg/cdrom.cc:874
  460. msgid "Source list entries for this disc are:\n"
  461. msgstr "Les entraes de la llista d'oríxenes pa esti discu son:\n"
  462. #: apt-pkg/algorithms.cc:265
  463. #, c-format
  464. msgid ""
  465. "The package %s needs to be reinstalled, but I can't find an archive for it."
  466. msgstr ""
  467. "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el."
  468. #: apt-pkg/algorithms.cc:1086
  469. msgid ""
  470. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  471. "held packages."
  472. msgstr ""
  473. "Error, pkgProblemResolver::Resolve xeneró frañadures, esto puede ser pola "
  474. "mor de paquetes reteníos."
  475. #: apt-pkg/algorithms.cc:1088
  476. msgid "Unable to correct problems, you have held broken packages."
  477. msgstr "Nun pueden iguase los problemes; tienes paquetes frañaos reteníos."
  478. #: apt-pkg/depcache.cc:138 apt-pkg/depcache.cc:167
  479. msgid "Building dependency tree"
  480. msgstr "Creando árbol de dependencies"
  481. #: apt-pkg/depcache.cc:139
  482. msgid "Candidate versions"
  483. msgstr "Versiones candidates"
  484. #: apt-pkg/depcache.cc:168
  485. msgid "Dependency generation"
  486. msgstr "Xeneración de dependencies"
  487. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  488. msgid "Reading state information"
  489. msgstr "Lleendo información d'estáu"
  490. #: apt-pkg/depcache.cc:250
  491. #, c-format
  492. msgid "Failed to open StateFile %s"
  493. msgstr "Nun se pudo abrir el ficheru d'estáu %s"
  494. #: apt-pkg/depcache.cc:256
  495. #, c-format
  496. msgid "Failed to write temporary StateFile %s"
  497. msgstr "Falló la escritura del ficheru temporal d'estáu %s"
  498. #: apt-pkg/tagfile.cc:169
  499. #, c-format
  500. msgid "Unable to parse package file %s (1)"
  501. msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)"
  502. #: apt-pkg/tagfile.cc:269
  503. #, c-format
  504. msgid "Unable to parse package file %s (2)"
  505. msgstr "Nun se pudo tratar el ficheru de paquetes %s (2)"
  506. #: apt-pkg/cacheset.cc:497
  507. #, c-format
  508. msgid "Release '%s' for '%s' was not found"
  509. msgstr "Nun s'alcontró la distribución '%s' pa '%s'"
  510. #: apt-pkg/cacheset.cc:500
  511. #, c-format
  512. msgid "Version '%s' for '%s' was not found"
  513. msgstr "Nun s'alcontró la versión '%s' pa '%s'"
  514. #: apt-pkg/cacheset.cc:604 cmdline/apt-cache.cc:1567
  515. #, c-format
  516. msgid "Unable to locate package %s"
  517. msgstr "Nun pue alcontrase'l paquete %s"
  518. #: apt-pkg/cacheset.cc:611
  519. #, c-format
  520. msgid "Couldn't find task '%s'"
  521. msgstr "Nun pudo alcontrase la xera '%s'"
  522. #: apt-pkg/cacheset.cc:617
  523. #, c-format
  524. msgid "Couldn't find any package by regex '%s'"
  525. msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
  526. #: apt-pkg/cacheset.cc:623
  527. #, fuzzy, c-format
  528. msgid "Couldn't find any package by glob '%s'"
  529. msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
  530. #: apt-pkg/cacheset.cc:634
  531. #, c-format
  532. msgid "Can't select versions from package '%s' as it is purely virtual"
  533. msgstr ""
  534. "Nun pueden seleicionase versiones pal paquete'%s' como puramente virtual"
  535. #: apt-pkg/cacheset.cc:641 apt-pkg/cacheset.cc:648
  536. #, c-format
  537. msgid ""
  538. "Can't select installed nor candidate version from package '%s' as it has "
  539. "neither of them"
  540. msgstr ""
  541. "Nun puede seleicionase l'instalador o versión candidata pal paquete '%s' "
  542. "como non tien nengún d'ellos"
  543. #: apt-pkg/cacheset.cc:655
  544. #, c-format
  545. msgid "Can't select newest version from package '%s' as it is purely virtual"
  546. msgstr ""
  547. "Nun puede seleicionase la versión más nueva pal paquete'%s' como puramente "
  548. "virtual"
  549. #: apt-pkg/cacheset.cc:663
  550. #, c-format
  551. msgid "Can't select candidate version from package %s as it has no candidate"
  552. msgstr ""
  553. "Nun puede seleicionase versión candidata pal paquete %s que nun tien "
  554. "candidata"
  555. #: apt-pkg/cacheset.cc:671
  556. #, c-format
  557. msgid "Can't select installed version from package %s as it is not installed"
  558. msgstr ""
  559. "Nun puede seleicionase versión instalada pal paquete %s que nun ta instalada"
  560. #: apt-pkg/indexrecords.cc:83
  561. #, c-format
  562. msgid "Unable to parse Release file %s"
  563. msgstr "Nun se pudo parchear el ficheru release %s"
  564. #: apt-pkg/indexrecords.cc:91
  565. #, c-format
  566. msgid "No sections in Release file %s"
  567. msgstr "Ensin seiciones nel ficheru release %s"
  568. #: apt-pkg/indexrecords.cc:136
  569. #, c-format
  570. msgid "No Hash entry in Release file %s"
  571. msgstr "Ensin entrada Hash nel ficheru release %s"
  572. #: apt-pkg/indexrecords.cc:149
  573. #, c-format
  574. msgid "Invalid 'Valid-Until' entry in Release file %s"
  575. msgstr "Entrada inválida pa 'Valid-Until' nel ficheru release %s"
  576. #: apt-pkg/indexrecords.cc:168
  577. #, c-format
  578. msgid "Invalid 'Date' entry in Release file %s"
  579. msgstr "Entrada inválida pa 'Date' nel ficheru release %s"
  580. #: apt-pkg/sourcelist.cc:127
  581. #, fuzzy, c-format
  582. msgid "Malformed stanza %u in source list %s (URI parse)"
  583. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)"
  584. #: apt-pkg/sourcelist.cc:170
  585. #, c-format
  586. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  587. msgstr "Llinia %lu mal formada na llista d'oríxe %s ([opción] nun parcheable)"
  588. #: apt-pkg/sourcelist.cc:173
  589. #, c-format
  590. msgid "Malformed line %lu in source list %s ([option] too short)"
  591. msgstr ""
  592. "Llinia %lu mal formada na llista d'oríxenes %s ([option] enforma curtia)"
  593. #: apt-pkg/sourcelist.cc:184
  594. #, c-format
  595. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  596. msgstr ""
  597. "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun ye una asignación)"
  598. #: apt-pkg/sourcelist.cc:190
  599. #, c-format
  600. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  601. msgstr "Llinia %lu mal formada na llista d'oríxenes %s ([%s] nun tien clave)"
  602. #: apt-pkg/sourcelist.cc:193
  603. #, c-format
  604. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  605. msgstr ""
  606. "Llinia %lu mal formada na llista d'oríxenes %s ([%s] clave %s nun tien valor)"
  607. #: apt-pkg/sourcelist.cc:206
  608. #, c-format
  609. msgid "Malformed line %lu in source list %s (URI)"
  610. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (URI)"
  611. #: apt-pkg/sourcelist.cc:208
  612. #, c-format
  613. msgid "Malformed line %lu in source list %s (dist)"
  614. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist)"
  615. #: apt-pkg/sourcelist.cc:211
  616. #, c-format
  617. msgid "Malformed line %lu in source list %s (URI parse)"
  618. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís d'URI)"
  619. #: apt-pkg/sourcelist.cc:217
  620. #, c-format
  621. msgid "Malformed line %lu in source list %s (absolute dist)"
  622. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (dist absoluta)"
  623. #: apt-pkg/sourcelist.cc:224
  624. #, c-format
  625. msgid "Malformed line %lu in source list %s (dist parse)"
  626. msgstr "Llinia %lu mal formada na llista d'oríxenes %s (analís de dist)"
  627. #: apt-pkg/sourcelist.cc:335
  628. #, c-format
  629. msgid "Opening %s"
  630. msgstr "Abriendo %s"
  631. #: apt-pkg/sourcelist.cc:371
  632. #, c-format
  633. msgid "Malformed line %u in source list %s (type)"
  634. msgstr "Llinia %u mal formada na llista d'oríxenes %s (triba)"
  635. #: apt-pkg/sourcelist.cc:375
  636. #, c-format
  637. msgid "Type '%s' is not known on line %u in source list %s"
  638. msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s"
  639. #: apt-pkg/sourcelist.cc:416
  640. #, fuzzy, c-format
  641. msgid "Type '%s' is not known on stanza %u in source list %s"
  642. msgstr "Triba '%s' desconocida na llinia %u de la llista d'oríxenes %s"
  643. #: apt-pkg/deb/dpkgpm.cc:95
  644. #, c-format
  645. msgid "Installing %s"
  646. msgstr "Instalando %s"
  647. #: apt-pkg/deb/dpkgpm.cc:96 apt-pkg/deb/dpkgpm.cc:996
  648. #, c-format
  649. msgid "Configuring %s"
  650. msgstr "Configurando %s"
  651. #: apt-pkg/deb/dpkgpm.cc:97 apt-pkg/deb/dpkgpm.cc:1003
  652. #, c-format
  653. msgid "Removing %s"
  654. msgstr "Desinstalando %s"
  655. #: apt-pkg/deb/dpkgpm.cc:98
  656. #, c-format
  657. msgid "Completely removing %s"
  658. msgstr "Desinstalóse dafechu %s"
  659. #: apt-pkg/deb/dpkgpm.cc:99
  660. #, c-format
  661. msgid "Noting disappearance of %s"
  662. msgstr "Anotando desaniciáu de %s"
  663. #: apt-pkg/deb/dpkgpm.cc:100
  664. #, c-format
  665. msgid "Running post-installation trigger %s"
  666. msgstr "Executando activador de post-instalación de %s"
  667. #. FIXME: use a better string after freeze
  668. #: apt-pkg/deb/dpkgpm.cc:827
  669. #, c-format
  670. msgid "Directory '%s' missing"
  671. msgstr "Falta'l direutoriu '%s'."
  672. #: apt-pkg/deb/dpkgpm.cc:842 apt-pkg/deb/dpkgpm.cc:864
  673. #, c-format
  674. msgid "Could not open file '%s'"
  675. msgstr "Nun pudo abrise'l ficheru '%s'"
  676. #: apt-pkg/deb/dpkgpm.cc:989
  677. #, c-format
  678. msgid "Preparing %s"
  679. msgstr "Preparando %s"
  680. #: apt-pkg/deb/dpkgpm.cc:990
  681. #, c-format
  682. msgid "Unpacking %s"
  683. msgstr "Desempaquetando %s"
  684. #: apt-pkg/deb/dpkgpm.cc:995
  685. #, c-format
  686. msgid "Preparing to configure %s"
  687. msgstr "Preparándose pa configurar %s"
  688. #: apt-pkg/deb/dpkgpm.cc:997
  689. #, c-format
  690. msgid "Installed %s"
  691. msgstr "%s instaláu"
  692. #: apt-pkg/deb/dpkgpm.cc:1002
  693. #, c-format
  694. msgid "Preparing for removal of %s"
  695. msgstr "Preparándose pa desinstalar %s"
  696. #: apt-pkg/deb/dpkgpm.cc:1004
  697. #, c-format
  698. msgid "Removed %s"
  699. msgstr "%s desinstaláu"
  700. #: apt-pkg/deb/dpkgpm.cc:1009
  701. #, c-format
  702. msgid "Preparing to completely remove %s"
  703. msgstr "Preparándose pa desinstalar dafechu %s"
  704. #: apt-pkg/deb/dpkgpm.cc:1010
  705. #, c-format
  706. msgid "Completely removed %s"
  707. msgstr "Desinstalóse dafechu %s"
  708. #: apt-pkg/deb/dpkgpm.cc:1064
  709. msgid "ioctl(TIOCGWINSZ) failed"
  710. msgstr ""
  711. #: apt-pkg/deb/dpkgpm.cc:1067 apt-pkg/deb/dpkgpm.cc:1088
  712. #, fuzzy, c-format
  713. msgid "Can not write log (%s)"
  714. msgstr "Nun se pue escribir en %s"
  715. #: apt-pkg/deb/dpkgpm.cc:1067
  716. msgid "Is /dev/pts mounted?"
  717. msgstr ""
  718. #: apt-pkg/deb/dpkgpm.cc:1088
  719. msgid "Is stdout a terminal?"
  720. msgstr ""
  721. #: apt-pkg/deb/dpkgpm.cc:1196 apt-pkg/contrib/fileutl.cc:829
  722. #: apt-pkg/contrib/gpgv.cc:219 cmdline/apt-mark.cc:258 cmdline/apt-mark.cc:339
  723. #, c-format
  724. msgid "Waited for %s but it wasn't there"
  725. msgstr "Esperaba %s pero nun taba ellí"
  726. #: apt-pkg/deb/dpkgpm.cc:1563
  727. msgid "Operation was interrupted before it could finish"
  728. msgstr ""
  729. #: apt-pkg/deb/dpkgpm.cc:1625
  730. msgid "No apport report written because MaxReports is reached already"
  731. msgstr "Ensin informe escritu d'apport porque MaxReports llegó dafechu"
  732. #. check if its not a follow up error
  733. #: apt-pkg/deb/dpkgpm.cc:1630
  734. msgid "dependency problems - leaving unconfigured"
  735. msgstr "problemes de dependencies - déxase ensin configurar"
  736. #: apt-pkg/deb/dpkgpm.cc:1632
  737. msgid ""
  738. "No apport report written because the error message indicates its a followup "
  739. "error from a previous failure."
  740. msgstr ""
  741. "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu que "
  742. "siguió dende un fallu previu"
  743. #: apt-pkg/deb/dpkgpm.cc:1638
  744. msgid ""
  745. "No apport report written because the error message indicates a disk full "
  746. "error"
  747. msgstr ""
  748. "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
  749. "discu llenu"
  750. #: apt-pkg/deb/dpkgpm.cc:1645
  751. msgid ""
  752. "No apport report written because the error message indicates a out of memory "
  753. "error"
  754. msgstr ""
  755. "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
  756. "memoria"
  757. #: apt-pkg/deb/dpkgpm.cc:1652 apt-pkg/deb/dpkgpm.cc:1658
  758. #, fuzzy
  759. msgid ""
  760. "No apport report written because the error message indicates an issue on the "
  761. "local system"
  762. msgstr ""
  763. "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu de "
  764. "discu llenu"
  765. #: apt-pkg/deb/dpkgpm.cc:1679
  766. msgid ""
  767. "No apport report written because the error message indicates a dpkg I/O error"
  768. msgstr ""
  769. "Ensin informe escritu d'apport porque'l mensax de fallu indica un fallu E/S "
  770. "dpkg"
  771. #: apt-pkg/deb/debsystem.cc:91
  772. #, c-format
  773. msgid ""
  774. "Unable to lock the administration directory (%s), is another process using "
  775. "it?"
  776. msgstr ""
  777. "Nun pudó bloquease'l direutoriu d'alministración (%s), ¿hai otru procesu "
  778. "usándolu?"
  779. #: apt-pkg/deb/debsystem.cc:94
  780. #, c-format
  781. msgid "Unable to lock the administration directory (%s), are you root?"
  782. msgstr "Nun pudo bloquiase'l direutoriu d'alministración (%s), ¿yes root?"
  783. #. TRANSLATORS: the %s contains the recovery command, usually
  784. #. dpkg --configure -a
  785. #: apt-pkg/deb/debsystem.cc:110
  786. #, c-format
  787. msgid ""
  788. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  789. msgstr ""
  790. "dpkg interrumpióse, tienes qu'executar manualmente '%s' pa iguar el "
  791. "problema. "
  792. #: apt-pkg/deb/debsystem.cc:128
  793. msgid "Not locked"
  794. msgstr "Non bloquiáu"
  795. #. d means days, h means hours, min means minutes, s means seconds
  796. #: apt-pkg/contrib/strutl.cc:413
  797. #, c-format
  798. msgid "%lid %lih %limin %lis"
  799. msgstr "%lid %lih %limin %lis"
  800. #. h means hours, min means minutes, s means seconds
  801. #: apt-pkg/contrib/strutl.cc:420
  802. #, c-format
  803. msgid "%lih %limin %lis"
  804. msgstr "%lih %limin %lis"
  805. #. min means minutes, s means seconds
  806. #: apt-pkg/contrib/strutl.cc:427
  807. #, c-format
  808. msgid "%limin %lis"
  809. msgstr "%limin %lis"
  810. #. s means seconds
  811. #: apt-pkg/contrib/strutl.cc:432
  812. #, c-format
  813. msgid "%lis"
  814. msgstr "%lis"
  815. #: apt-pkg/contrib/strutl.cc:1267
  816. #, c-format
  817. msgid "Selection %s not found"
  818. msgstr "Escoyeta %s que nun s'atopa"
  819. #: apt-pkg/contrib/fileutl.cc:191
  820. #, c-format
  821. msgid "Not using locking for read only lock file %s"
  822. msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu de sólo llectura %s"
  823. #: apt-pkg/contrib/fileutl.cc:196
  824. #, c-format
  825. msgid "Could not open lock file %s"
  826. msgstr "Nun puede abrise'l ficheru de bloquéu %s"
  827. #: apt-pkg/contrib/fileutl.cc:219
  828. #, c-format
  829. msgid "Not using locking for nfs mounted lock file %s"
  830. msgstr "Nun ta usándose bloquéu pal ficheru de bloquéu %s montáu per nfs"
  831. #: apt-pkg/contrib/fileutl.cc:224
  832. #, c-format
  833. msgid "Could not get lock %s"
  834. msgstr "Nun se pudo torgar %s"
  835. #: apt-pkg/contrib/fileutl.cc:361 apt-pkg/contrib/fileutl.cc:475
  836. #, c-format
  837. msgid "List of files can't be created as '%s' is not a directory"
  838. msgstr ""
  839. #: apt-pkg/contrib/fileutl.cc:395
  840. #, c-format
  841. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  842. msgstr ""
  843. #: apt-pkg/contrib/fileutl.cc:413
  844. #, c-format
  845. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  846. msgstr ""
  847. #: apt-pkg/contrib/fileutl.cc:422
  848. #, c-format
  849. msgid ""
  850. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  851. msgstr ""
  852. #: apt-pkg/contrib/fileutl.cc:841
  853. #, c-format
  854. msgid "Sub-process %s received a segmentation fault."
  855. msgstr "El subprocesu %s recibió un fallu de segmentación."
  856. #: apt-pkg/contrib/fileutl.cc:843
  857. #, c-format
  858. msgid "Sub-process %s received signal %u."
  859. msgstr "El subprocesu %s recibió una señal %u."
  860. #: apt-pkg/contrib/fileutl.cc:847 apt-pkg/contrib/gpgv.cc:239
  861. #, c-format
  862. msgid "Sub-process %s returned an error code (%u)"
  863. msgstr "El subprocesu %s devolvió un códigu d'error (%u)"
  864. #: apt-pkg/contrib/fileutl.cc:849 apt-pkg/contrib/gpgv.cc:232
  865. #, c-format
  866. msgid "Sub-process %s exited unexpectedly"
  867. msgstr "El subprocesu %s terminó de manera inesperada"
  868. #: apt-pkg/contrib/fileutl.cc:910 apt-pkg/contrib/fileutl.cc:1636
  869. #: apt-pkg/contrib/fileutl.cc:1645 apt-pkg/contrib/fileutl.cc:1650
  870. #: apt-pkg/contrib/fileutl.cc:1652 apt-pkg/contrib/fileutl.cc:1677
  871. #: methods/ftp.cc:462 methods/rsh.cc:246
  872. msgid "Write error"
  873. msgstr "Fallu d'escritura"
  874. #: apt-pkg/contrib/fileutl.cc:951
  875. #, c-format
  876. msgid "Problem closing the gzip file %s"
  877. msgstr "Problemes zarrando'l ficheru gzip %s"
  878. #: apt-pkg/contrib/fileutl.cc:1139
  879. #, c-format
  880. msgid "Could not open file %s"
  881. msgstr "Nun se pudo abrir el ficheru %s"
  882. #: apt-pkg/contrib/fileutl.cc:1198 apt-pkg/contrib/fileutl.cc:1245
  883. #, c-format
  884. msgid "Could not open file descriptor %d"
  885. msgstr "Nun pudo abrise un ficheru descriptor %d"
  886. #: apt-pkg/contrib/fileutl.cc:1353 apt-pkg/contrib/fileutl.cc:2125
  887. msgid "Failed to create subprocess IPC"
  888. msgstr "Nun pudo criase'l soprocesu IPC"
  889. #: apt-pkg/contrib/fileutl.cc:1411
  890. msgid "Failed to exec compressor "
  891. msgstr "Nun pudo executase'l compresor "
  892. #: apt-pkg/contrib/fileutl.cc:1514 apt-pkg/contrib/fileutl.cc:1523
  893. #: apt-pkg/contrib/fileutl.cc:1528 apt-pkg/contrib/fileutl.cc:1530
  894. #: methods/ftp.cc:353 methods/rsh.cc:202
  895. msgid "Read error"
  896. msgstr "Fallu de llectura"
  897. #: apt-pkg/contrib/fileutl.cc:1552
  898. #, fuzzy, c-format
  899. msgid "read, still have %llu to read but none left"
  900. msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada"
  901. #: apt-pkg/contrib/fileutl.cc:1665 apt-pkg/contrib/fileutl.cc:1687
  902. #, fuzzy, c-format
  903. msgid "write, still have %llu to write but couldn't"
  904. msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse"
  905. #: apt-pkg/contrib/fileutl.cc:1953
  906. #, c-format
  907. msgid "Problem closing the file %s"
  908. msgstr "Problemes zarrando'l ficheru %s"
  909. #: apt-pkg/contrib/fileutl.cc:1964
  910. #, c-format
  911. msgid "Problem renaming the file %s to %s"
  912. msgstr "Hai problemes al renomar el ficheru %s a %s"
  913. #: apt-pkg/contrib/fileutl.cc:1975
  914. #, c-format
  915. msgid "Problem unlinking the file %s"
  916. msgstr "Hai problemes desvenceyando'l ficheru %s"
  917. #: apt-pkg/contrib/fileutl.cc:1988
  918. msgid "Problem syncing the file"
  919. msgstr "Hai problemes al sincronizar el ficheru"
  920. #: apt-pkg/contrib/fileutl.cc:2093 cmdline/apt-extracttemplates.cc:257
  921. #, fuzzy, c-format
  922. msgid "Unable to mkstemp %s"
  923. msgstr "Nun ye a lleer %s"
  924. #: apt-pkg/contrib/progress.cc:148
  925. #, c-format
  926. msgid "%c%s... Error!"
  927. msgstr "%c%s... ¡Fallu!"
  928. #: apt-pkg/contrib/progress.cc:150
  929. #, c-format
  930. msgid "%c%s... Done"
  931. msgstr "%c%s... Fecho"
  932. #: apt-pkg/contrib/progress.cc:181
  933. msgid "..."
  934. msgstr ""
  935. #. Print the spinner
  936. #: apt-pkg/contrib/progress.cc:197
  937. #, fuzzy, c-format
  938. msgid "%c%s... %u%%"
  939. msgstr "%c%s... Fecho"
  940. #: apt-pkg/contrib/mmap.cc:79
  941. msgid "Can't mmap an empty file"
  942. msgstr "Nun se puede facer mmap d'un ficheru baleru"
  943. #: apt-pkg/contrib/mmap.cc:111
  944. #, c-format
  945. msgid "Couldn't duplicate file descriptor %i"
  946. msgstr "Nun pudo duplicase'l ficheru descriptor %i"
  947. #: apt-pkg/contrib/mmap.cc:119
  948. #, fuzzy, c-format
  949. msgid "Couldn't make mmap of %llu bytes"
  950. msgstr "Nun se pudo facer mmap de %lu bytes"
  951. #: apt-pkg/contrib/mmap.cc:146
  952. msgid "Unable to close mmap"
  953. msgstr "Nun pudo zarrase mmap"
  954. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  955. msgid "Unable to synchronize mmap"
  956. msgstr "Nun se pudo sincronizase mmap "
  957. #: apt-pkg/contrib/mmap.cc:290
  958. #, c-format
  959. msgid "Couldn't make mmap of %lu bytes"
  960. msgstr "Nun se pudo facer mmap de %lu bytes"
  961. #: apt-pkg/contrib/mmap.cc:322
  962. msgid "Failed to truncate file"
  963. msgstr "Falló al francer el ficheru"
  964. #: apt-pkg/contrib/mmap.cc:341
  965. #, c-format
  966. msgid ""
  967. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  968. "Current value: %lu. (man 5 apt.conf)"
  969. msgstr ""
  970. "Dynamic MMap escosó l'espaciu. Por favor aumenta'l tamañu de APT::Cache-"
  971. "Start. El valor actual ye : %lu. (man 5 apt.conf)"
  972. #: apt-pkg/contrib/mmap.cc:446
  973. #, c-format
  974. msgid ""
  975. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  976. "reached."
  977. msgstr ""
  978. "Nun pudó incrementase'l tamañu de MMap col llímite de %lu bytes ya torgáu"
  979. #: apt-pkg/contrib/mmap.cc:449
  980. msgid ""
  981. "Unable to increase size of the MMap as automatic growing is disabled by user."
  982. msgstr ""
  983. "Nun pudó incrementase'l tamañu de MMap ya que crecer automáticamente ta "
  984. "desactivao pol usuariu."
  985. #: apt-pkg/contrib/cdromutl.cc:65
  986. #, c-format
  987. msgid "Unable to stat the mount point %s"
  988. msgstr "Nun puede algamase información del puntu de montaxe %s"
  989. #: apt-pkg/contrib/cdromutl.cc:246
  990. msgid "Failed to stat the cdrom"
  991. msgstr "Nun se pudo montar el CD-ROM"
  992. #: apt-pkg/contrib/configuration.cc:521
  993. #, c-format
  994. msgid "Unrecognized type abbreviation: '%c'"
  995. msgstr "Triba d'abreviatura que nun se reconoz: «%c»"
  996. #: apt-pkg/contrib/configuration.cc:635
  997. #, c-format
  998. msgid "Opening configuration file %s"
  999. msgstr "Abriendo ficheros de configuración %s"
  1000. #: apt-pkg/contrib/configuration.cc:803
  1001. #, c-format
  1002. msgid "Syntax error %s:%u: Block starts with no name."
  1003. msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque."
  1004. #: apt-pkg/contrib/configuration.cc:822
  1005. #, c-format
  1006. msgid "Syntax error %s:%u: Malformed tag"
  1007. msgstr "Fallu de sintaxis %s:%u: Marca mal formada"
  1008. #: apt-pkg/contrib/configuration.cc:839
  1009. #, c-format
  1010. msgid "Syntax error %s:%u: Extra junk after value"
  1011. msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempués del valor"
  1012. #: apt-pkg/contrib/configuration.cc:879
  1013. #, c-format
  1014. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1015. msgstr ""
  1016. "Error de sintaxis %s:%u: Les directives pueden facese sólo nel nivel cimeru"
  1017. #: apt-pkg/contrib/configuration.cc:886
  1018. #, c-format
  1019. msgid "Syntax error %s:%u: Too many nested includes"
  1020. msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones añeraes"
  1021. #: apt-pkg/contrib/configuration.cc:890 apt-pkg/contrib/configuration.cc:895
  1022. #, c-format
  1023. msgid "Syntax error %s:%u: Included from here"
  1024. msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equí"
  1025. #: apt-pkg/contrib/configuration.cc:899
  1026. #, c-format
  1027. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1028. msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada"
  1029. #: apt-pkg/contrib/configuration.cc:902
  1030. #, c-format
  1031. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1032. msgstr ""
  1033. "Fallu de sintaxis %s:%u: Directiva llimpia requier un tres opciones como "
  1034. "argumentos"
  1035. #: apt-pkg/contrib/configuration.cc:952
  1036. #, c-format
  1037. msgid "Syntax error %s:%u: Extra junk at end of file"
  1038. msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru"
  1039. #. TRANSLATOR: %s is the trusted keyring parts directory
  1040. #: apt-pkg/contrib/gpgv.cc:72
  1041. #, c-format
  1042. msgid "No keyring installed in %s."
  1043. msgstr "L'aniellu de claves nun s'instaló en %s."
  1044. #: apt-pkg/contrib/cmndline.cc:121
  1045. #, c-format
  1046. msgid "Command line option '%c' [from %s] is not known."
  1047. msgstr "La opción de llinia d'ordes '%c' [de %s] ye desconocida."
  1048. #: apt-pkg/contrib/cmndline.cc:146 apt-pkg/contrib/cmndline.cc:155
  1049. #: apt-pkg/contrib/cmndline.cc:163
  1050. #, c-format
  1051. msgid "Command line option %s is not understood"
  1052. msgstr "Nun s'entiende la opción %s de la llinia d'ordes"
  1053. #: apt-pkg/contrib/cmndline.cc:168
  1054. #, c-format
  1055. msgid "Command line option %s is not boolean"
  1056. msgstr "La opción %s de la llinia d'ordes nun ye un valor booleanu"
  1057. #: apt-pkg/contrib/cmndline.cc:209 apt-pkg/contrib/cmndline.cc:230
  1058. #, c-format
  1059. msgid "Option %s requires an argument."
  1060. msgstr "La opción %s necesita un argumentu."
  1061. #: apt-pkg/contrib/cmndline.cc:243 apt-pkg/contrib/cmndline.cc:249
  1062. #, c-format
  1063. msgid "Option %s: Configuration item specification must have an =<val>."
  1064. msgstr "Opción %s: L'axuste del elementu de configuración ha tener un =<val>."
  1065. #: apt-pkg/contrib/cmndline.cc:278
  1066. #, c-format
  1067. msgid "Option %s requires an integer argument, not '%s'"
  1068. msgstr "La opción %s pide un argumentu enteru, non '%s'"
  1069. #: apt-pkg/contrib/cmndline.cc:309
  1070. #, c-format
  1071. msgid "Option '%s' is too long"
  1072. msgstr "Opción '%s' enforma llarga"
  1073. #: apt-pkg/contrib/cmndline.cc:341
  1074. #, c-format
  1075. msgid "Sense %s is not understood, try true or false."
  1076. msgstr "El sentíu %s nun s'entiende, prueba con braeru o falsu."
  1077. #: apt-pkg/contrib/cmndline.cc:391
  1078. #, c-format
  1079. msgid "Invalid operation %s"
  1080. msgstr "Operación incorreuta: %s"
  1081. #: cmdline/apt-cache.cc:149
  1082. #, c-format
  1083. msgid "Package %s version %s has an unmet dep:\n"
  1084. msgstr "El paquete %s versión %s nun cumple una dependencia:\n"
  1085. #: cmdline/apt-cache.cc:317
  1086. msgid "Total package names: "
  1087. msgstr "Total de nomes de paquetes: "
  1088. #: cmdline/apt-cache.cc:319
  1089. msgid "Total package structures: "
  1090. msgstr "Total de cadarmes de paquetes: "
  1091. #: cmdline/apt-cache.cc:359
  1092. msgid " Normal packages: "
  1093. msgstr " Paquetes normales: "
  1094. #: cmdline/apt-cache.cc:360
  1095. msgid " Pure virtual packages: "
  1096. msgstr " Paquetes virtuales puros: "
  1097. #: cmdline/apt-cache.cc:361
  1098. msgid " Single virtual packages: "
  1099. msgstr " Paquetes virtuales cenciellos: "
  1100. #: cmdline/apt-cache.cc:362
  1101. msgid " Mixed virtual packages: "
  1102. msgstr " Paquetes virtuales amestaos: "
  1103. #: cmdline/apt-cache.cc:363
  1104. msgid " Missing: "
  1105. msgstr " Falten: "
  1106. #: cmdline/apt-cache.cc:365
  1107. msgid "Total distinct versions: "
  1108. msgstr "Versiones distintes en total: "
  1109. #: cmdline/apt-cache.cc:367
  1110. msgid "Total distinct descriptions: "
  1111. msgstr "Descripciones distintes en total: "
  1112. #: cmdline/apt-cache.cc:369
  1113. msgid "Total dependencies: "
  1114. msgstr "Dependencies totales: "
  1115. #: cmdline/apt-cache.cc:372
  1116. msgid "Total ver/file relations: "
  1117. msgstr "Rellaciones versión/ficheru en total: "
  1118. #: cmdline/apt-cache.cc:374
  1119. msgid "Total Desc/File relations: "
  1120. msgstr "Rellaciones descripción/ficheru en total: "
  1121. #: cmdline/apt-cache.cc:376
  1122. msgid "Total Provides mappings: "
  1123. msgstr "Mapes de provisiones en total: "
  1124. #: cmdline/apt-cache.cc:388
  1125. msgid "Total globbed strings: "
  1126. msgstr "Cadenes globalizaes en total: "
  1127. #: cmdline/apt-cache.cc:402
  1128. msgid "Total dependency version space: "
  1129. msgstr "Espaciu de dependencies de versión en total: "
  1130. #: cmdline/apt-cache.cc:407
  1131. msgid "Total slack space: "
  1132. msgstr "Espaciu ociosu en total: "
  1133. #: cmdline/apt-cache.cc:422
  1134. msgid "Total space accounted for: "
  1135. msgstr "Informe del total d'espaciu: "
  1136. #: cmdline/apt-cache.cc:558 cmdline/apt-cache.cc:1207
  1137. #: apt-private/private-show.cc:58
  1138. #, c-format
  1139. msgid "Package file %s is out of sync."
  1140. msgstr "El ficheru de paquetes %s nun ta sincronizáu."
  1141. #: cmdline/apt-cache.cc:636 cmdline/apt-cache.cc:1493
  1142. #: cmdline/apt-cache.cc:1495 cmdline/apt-cache.cc:1572 cmdline/apt-mark.cc:59
  1143. #: cmdline/apt-mark.cc:106 cmdline/apt-mark.cc:232
  1144. #: apt-private/private-show.cc:171 apt-private/private-show.cc:173
  1145. msgid "No packages found"
  1146. msgstr "Nun s'alcontraron paquetes"
  1147. #: cmdline/apt-cache.cc:1306
  1148. msgid "You must give at least one search pattern"
  1149. msgstr "Has de dar polo menos un patrón de gueta"
  1150. #: cmdline/apt-cache.cc:1472
  1151. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  1152. msgstr ""
  1153. #: cmdline/apt-cache.cc:1597
  1154. msgid "Package files:"
  1155. msgstr "Ficheros de paquete:"
  1156. #: cmdline/apt-cache.cc:1604 cmdline/apt-cache.cc:1695
  1157. msgid "Cache is out of sync, can't x-ref a package file"
  1158. msgstr ""
  1159. "La caché nun ta sincronizada, nun puede facese x-ref a un ficheru de paquete"
  1160. #. Show any packages have explicit pins
  1161. #: cmdline/apt-cache.cc:1618
  1162. msgid "Pinned packages:"
  1163. msgstr "Paquetes na chincheta:"
  1164. #: cmdline/apt-cache.cc:1630 cmdline/apt-cache.cc:1675
  1165. msgid "(not found)"
  1166. msgstr "(nun s'alcontró)"
  1167. #: cmdline/apt-cache.cc:1638
  1168. msgid " Installed: "
  1169. msgstr " Instaláu: "
  1170. #: cmdline/apt-cache.cc:1639
  1171. msgid " Candidate: "
  1172. msgstr " Candidatu: "
  1173. #: cmdline/apt-cache.cc:1657 cmdline/apt-cache.cc:1665
  1174. msgid "(none)"
  1175. msgstr "(dengún)"
  1176. #: cmdline/apt-cache.cc:1672
  1177. msgid " Package pin: "
  1178. msgstr " Chincheta de paquetes: "
  1179. #. Show the priority tables
  1180. #: cmdline/apt-cache.cc:1681
  1181. msgid " Version table:"
  1182. msgstr " Tabla de versiones:"
  1183. #: cmdline/apt-cache.cc:1794 cmdline/apt-cdrom.cc:207 cmdline/apt-config.cc:83
  1184. #: cmdline/apt-get.cc:1616 cmdline/apt-helper.cc:59 cmdline/apt-mark.cc:388
  1185. #: cmdline/apt.cc:42 cmdline/apt-extracttemplates.cc:220
  1186. #: ftparchive/apt-ftparchive.cc:620 cmdline/apt-internal-solver.cc:45
  1187. #: cmdline/apt-sortpkgs.cc:147
  1188. #, c-format
  1189. msgid "%s %s for %s compiled on %s %s\n"
  1190. msgstr "%s %s pa %s compiláu en %s %s\n"
  1191. #: cmdline/apt-cache.cc:1801
  1192. #, fuzzy
  1193. msgid ""
  1194. "Usage: apt-cache [options] command\n"
  1195. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  1196. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  1197. "\n"
  1198. "apt-cache is a low-level tool used to query information\n"
  1199. "from APT's binary cache files\n"
  1200. "\n"
  1201. "Commands:\n"
  1202. " gencaches - Build both the package and source cache\n"
  1203. " showpkg - Show some general information for a single package\n"
  1204. " showsrc - Show source records\n"
  1205. " stats - Show some basic statistics\n"
  1206. " dump - Show the entire file in a terse form\n"
  1207. " dumpavail - Print an available file to stdout\n"
  1208. " unmet - Show unmet dependencies\n"
  1209. " search - Search the package list for a regex pattern\n"
  1210. " show - Show a readable record for the package\n"
  1211. " depends - Show raw dependency information for a package\n"
  1212. " rdepends - Show reverse dependency information for a package\n"
  1213. " pkgnames - List the names of all packages in the system\n"
  1214. " dotty - Generate package graphs for GraphViz\n"
  1215. " xvcg - Generate package graphs for xvcg\n"
  1216. " policy - Show policy settings\n"
  1217. "\n"
  1218. "Options:\n"
  1219. " -h This help text.\n"
  1220. " -p=? The package cache.\n"
  1221. " -s=? The source cache.\n"
  1222. " -q Disable progress indicator.\n"
  1223. " -i Show only important deps for the unmet command.\n"
  1224. " -c=? Read this configuration file\n"
  1225. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1226. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  1227. msgstr ""
  1228. "Usu: apt-cache [opciones] orde\n"
  1229. " apt-cache [opciones] add ficheru1 [ficheru2 ...]\n"
  1230. " apt-cache [opciones] showpkg paq1 [paq2 ...]\n"
  1231. " apt-cache [opciones] showsrc paq1 [paq2 ...]\n"
  1232. "\n"
  1233. "apt-cache ye una ferramienta de baxu nivel usada pa remanar\n"
  1234. "ficheros de caché binarios d'APT y consultar información d'ellos\n"
  1235. "\n"
  1236. "Ordes:\n"
  1237. " add - Amesta un ficheru de paquete a la caché fonte\n"
  1238. " gencaches - Creal dambes cachés, la de paquetes y la de fontes\n"
  1239. " showpkg - Amuesa algo d'información xeneral d'un sólu paquete\n"
  1240. " showsrc - Amuesa los rexistros de fonte\n"
  1241. " stats - Amuesa dalgunes estadístiques básiques\n"
  1242. " dump - Amuesa'l ficheru ensembre en formatu tersu\n"
  1243. " dumpavail - Imprenta un ficheru disponible na salida estándar\n"
  1244. " unmet - Amuesa dependencies nun atopáes\n"
  1245. " search - Restola na llista de paquetes por el patrón d'una espresión "
  1246. "regular\n"
  1247. " show - Amuesa un rexistru lleíble pal paquete\n"
  1248. " showauto - Amouesa una llista de paquetes instalaos automáticamente\n"
  1249. " depends - Amuesa la información de dependencies en bruto d'un paquete\n"
  1250. " rdepends - Amuesa la información de dependencies inverses d'un paquete\n"
  1251. " pkgnames - Llista los nomes de tolos paquetes nel sistema\n"
  1252. " dotty - Xenera gráfiques del paquete pa GraphViz\n"
  1253. " xvcg - Xenera gráfiques del paquete pa xvcg\n"
  1254. " policy - Amuesa los axustes de les normes\n"
  1255. "\n"
  1256. "Opciones:\n"
  1257. " -h Esti testu d'aida.\n"
  1258. " -p=? La cache de paquetes.\n"
  1259. " -s=? La cache de fontes.\n"
  1260. " -q Desactiva l'indicador de progresu.\n"
  1261. " -i Amuesa sólo les dependencies importantes de la orde incumplida.\n"
  1262. " -c=? Lleer esti ficheru de configuración\n"
  1263. " -o=? Conseña una opción de configuración arbitraria, ex -o dir::cache=/"
  1264. "tmp\n"
  1265. "Ver les páxines del manual apt-cache(8) y apt.conf(5) pa más información.\n"
  1266. #: cmdline/apt-cdrom.cc:76
  1267. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  1268. msgstr "Da-y un nome a esti discu, como 'Debian 5.0.3 Discu 1'"
  1269. #: cmdline/apt-cdrom.cc:91
  1270. msgid "Please insert a Disc in the drive and press enter"
  1271. msgstr "Inxerta un discu nel preséu y calca intro"
  1272. #: cmdline/apt-cdrom.cc:139
  1273. #, c-format
  1274. msgid "Failed to mount '%s' to '%s'"
  1275. msgstr "Falló al montar '%s' a '%s'"
  1276. #: cmdline/apt-cdrom.cc:178
  1277. msgid ""
  1278. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  1279. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  1280. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  1281. "mount point."
  1282. msgstr ""
  1283. #: cmdline/apt-cdrom.cc:182
  1284. msgid "Repeat this process for the rest of the CDs in your set."
  1285. msgstr "Repite'l procesu colos demás CDs del conxuntu."
  1286. #: cmdline/apt-config.cc:48
  1287. msgid "Arguments not in pairs"
  1288. msgstr "Argumentos non empareyaos"
  1289. #: cmdline/apt-config.cc:89
  1290. msgid ""
  1291. "Usage: apt-config [options] command\n"
  1292. "\n"
  1293. "apt-config is a simple tool to read the APT config file\n"
  1294. "\n"
  1295. "Commands:\n"
  1296. " shell - Shell mode\n"
  1297. " dump - Show the configuration\n"
  1298. "\n"
  1299. "Options:\n"
  1300. " -h This help text.\n"
  1301. " -c=? Read this configuration file\n"
  1302. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1303. msgstr ""
  1304. "Usu: apt-config [opciones] orde\n"
  1305. "\n"
  1306. "apt-config ye una ferramienta pa lleer el ficheru de configuración d'APT.\n"
  1307. "\n"
  1308. "Ordes:\n"
  1309. " shell - Mou shell\n"
  1310. " dump - Amuesa la configuración\n"
  1311. "\n"
  1312. "Opciones:\n"
  1313. " -h Esti testu d'aida.\n"
  1314. " -c=? Llee esti ficheru de configuración\n"
  1315. " -o=? Conseña una opción de configuración arbitraria, p. ex.\n"
  1316. #: cmdline/apt-get.cc:245
  1317. #, fuzzy, c-format
  1318. msgid "Can not find a package for architecture '%s'"
  1319. msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
  1320. #: cmdline/apt-get.cc:327
  1321. #, fuzzy, c-format
  1322. msgid "Can not find a package '%s' with version '%s'"
  1323. msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
  1324. #: cmdline/apt-get.cc:330
  1325. #, fuzzy, c-format
  1326. msgid "Can not find a package '%s' with release '%s'"
  1327. msgstr "Nun pudo alcontrase dengún paquete por regex '%s'"
  1328. #: cmdline/apt-get.cc:367
  1329. #, c-format
  1330. msgid "Picking '%s' as source package instead of '%s'\n"
  1331. msgstr "Tomando '%s' como paquetes d'oríxenes en llugar de '%s'\n"
  1332. #: cmdline/apt-get.cc:423
  1333. #, fuzzy, c-format
  1334. msgid "Can not find version '%s' of package '%s'"
  1335. msgstr "Inorar versión non disponible de '%s' del paquete '%s'"
  1336. #: cmdline/apt-get.cc:454
  1337. #, c-format
  1338. msgid "Couldn't find package %s"
  1339. msgstr "Nun pudo alcontrase'l paquete %s"
  1340. #: cmdline/apt-get.cc:459 cmdline/apt-mark.cc:81
  1341. #: apt-private/private-install.cc:891
  1342. #, c-format
  1343. msgid "%s set to manually installed.\n"
  1344. msgstr "%s axustáu como instaláu manualmente.\n"
  1345. #: cmdline/apt-get.cc:461 cmdline/apt-mark.cc:83
  1346. #, c-format
  1347. msgid "%s set to automatically installed.\n"
  1348. msgstr "%s axustáu como instaláu automáticamente.\n"
  1349. #: cmdline/apt-get.cc:469 cmdline/apt-mark.cc:127
  1350. msgid ""
  1351. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  1352. "instead."
  1353. msgstr ""
  1354. #: cmdline/apt-get.cc:538 cmdline/apt-get.cc:546
  1355. msgid "Internal error, problem resolver broke stuff"
  1356. msgstr "Error internu, l'iguador de problemes frañó coses"
  1357. #: cmdline/apt-get.cc:574 cmdline/apt-get.cc:611
  1358. msgid "Unable to lock the download directory"
  1359. msgstr "Nun pue bloquiase'l direutoriu de descarga"
  1360. #: cmdline/apt-get.cc:726
  1361. msgid "Must specify at least one package to fetch source for"
  1362. msgstr "Has de conseñar polo menos un paquete p'algamar so fonte"
  1363. #: cmdline/apt-get.cc:766 cmdline/apt-get.cc:1096
  1364. #, c-format
  1365. msgid "Unable to find a source package for %s"
  1366. msgstr "Nun pudo alcontrase un paquete fonte pa %s"
  1367. #: cmdline/apt-get.cc:786
  1368. #, c-format
  1369. msgid ""
  1370. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  1371. "%s\n"
  1372. msgstr ""
  1373. "AVISU: '%s' packaging is maintained in the '%s' version control system at:\n"
  1374. "%s\n"
  1375. #: cmdline/apt-get.cc:791
  1376. #, fuzzy, c-format
  1377. msgid ""
  1378. "Please use:\n"
  1379. "bzr branch %s\n"
  1380. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  1381. msgstr ""
  1382. "Por favor, usa:\n"
  1383. "bzr get %s\n"
  1384. "pa baxar los caberos anovamientos (posiblemente tovía nun sacaos) pal "
  1385. "paquete.\n"
  1386. #: cmdline/apt-get.cc:839
  1387. #, c-format
  1388. msgid "Skipping already downloaded file '%s'\n"
  1389. msgstr "Saltando'l ficheru yá descargáu '%s'\n"
  1390. #: cmdline/apt-get.cc:871 cmdline/apt-get.cc:874
  1391. #: apt-private/private-install.cc:189 apt-private/private-install.cc:192
  1392. #, c-format
  1393. msgid "Couldn't determine free space in %s"
  1394. msgstr "Nun pue determinase l'espaciu llibre de %s"
  1395. #: cmdline/apt-get.cc:884
  1396. #, c-format
  1397. msgid "You don't have enough free space in %s"
  1398. msgstr "Nun hai espaciu llibre bastante en %s"
  1399. #. TRANSLATOR: The required space between number and unit is already included
  1400. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1401. #: cmdline/apt-get.cc:893
  1402. #, c-format
  1403. msgid "Need to get %sB/%sB of source archives.\n"
  1404. msgstr "Hai falta descargar %sB/%sB d'archivos fonte.\n"
  1405. #. TRANSLATOR: The required space between number and unit is already included
  1406. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1407. #: cmdline/apt-get.cc:898
  1408. #, c-format
  1409. msgid "Need to get %sB of source archives.\n"
  1410. msgstr "Hai falta descargar %sB d'archivos fonte.\n"
  1411. #: cmdline/apt-get.cc:904
  1412. #, c-format
  1413. msgid "Fetch source %s\n"
  1414. msgstr "Fonte descargada %s\n"
  1415. #: cmdline/apt-get.cc:922
  1416. msgid "Failed to fetch some archives."
  1417. msgstr "Falló la descarga de dellos archivos."
  1418. #: cmdline/apt-get.cc:927 apt-private/private-install.cc:316
  1419. msgid "Download complete and in download only mode"
  1420. msgstr "Descarga completa y en mou de sólo descarga"
  1421. #: cmdline/apt-get.cc:952
  1422. #, c-format
  1423. msgid "Skipping unpack of already unpacked source in %s\n"
  1424. msgstr "Saltando'l desempaquetáu de la fonte yá desempaquetada en %s\n"
  1425. #: cmdline/apt-get.cc:964
  1426. #, c-format
  1427. msgid "Unpack command '%s' failed.\n"
  1428. msgstr "Falló la orde de desempaquetáu '%s'.\n"
  1429. #: cmdline/apt-get.cc:965
  1430. #, c-format
  1431. msgid "Check if the 'dpkg-dev' package is installed.\n"
  1432. msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instaláu.\n"
  1433. #: cmdline/apt-get.cc:993
  1434. #, c-format
  1435. msgid "Build command '%s' failed.\n"
  1436. msgstr "Falló la orde build '%s'.\n"
  1437. #: cmdline/apt-get.cc:1012
  1438. msgid "Child process failed"
  1439. msgstr "Falló el procesu fíu"
  1440. #: cmdline/apt-get.cc:1031
  1441. msgid "Must specify at least one package to check builddeps for"
  1442. msgstr ""
  1443. "Hai que conseñar polo menos un paquete pa verificar les dependencies de "
  1444. "construcción"
  1445. #: cmdline/apt-get.cc:1056
  1446. #, c-format
  1447. msgid ""
  1448. "No architecture information available for %s. See apt.conf(5) APT::"
  1449. "Architectures for setup"
  1450. msgstr ""
  1451. #: cmdline/apt-get.cc:1073
  1452. #, c-format
  1453. msgid "Note, using directory '%s' to get the build dependencies\n"
  1454. msgstr ""
  1455. #: cmdline/apt-get.cc:1083
  1456. #, fuzzy, c-format
  1457. msgid "Note, using file '%s' to get the build dependencies\n"
  1458. msgstr "Fallu al procesar les dependencies de construcción"
  1459. #: cmdline/apt-get.cc:1108 cmdline/apt-get.cc:1111
  1460. #, c-format
  1461. msgid "Unable to get build-dependency information for %s"
  1462. msgstr "Nun pudo algamase información de dependencies de construcción pa %s"
  1463. #: cmdline/apt-get.cc:1131
  1464. #, c-format
  1465. msgid "%s has no build depends.\n"
  1466. msgstr "%s nun tien dependencies de construcción.\n"
  1467. #: cmdline/apt-get.cc:1301
  1468. #, fuzzy, c-format
  1469. msgid ""
  1470. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  1471. "packages"
  1472. msgstr ""
  1473. "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
  1474. "paquete %s"
  1475. #: cmdline/apt-get.cc:1319
  1476. #, c-format
  1477. msgid ""
  1478. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  1479. "found"
  1480. msgstr ""
  1481. "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
  1482. "paquete %s"
  1483. #: cmdline/apt-get.cc:1342
  1484. #, c-format
  1485. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  1486. msgstr ""
  1487. "Nun se pudo satisfacer la dependencia %s pa %s: El paquete instaláu %s ye "
  1488. "enforma nuevu"
  1489. #: cmdline/apt-get.cc:1381
  1490. #, fuzzy, c-format
  1491. msgid ""
  1492. "%s dependency for %s cannot be satisfied because candidate version of "
  1493. "package %s can't satisfy version requirements"
  1494. msgstr ""
  1495. "La dependencia %s en %s nun puede satisfacese porque denguna versión "
  1496. "disponible del paquete %s satisfaz los requisitos de versión"
  1497. #: cmdline/apt-get.cc:1387
  1498. #, fuzzy, c-format
  1499. msgid ""
  1500. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  1501. "version"
  1502. msgstr ""
  1503. "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el "
  1504. "paquete %s"
  1505. #: cmdline/apt-get.cc:1410
  1506. #, c-format
  1507. msgid "Failed to satisfy %s dependency for %s: %s"
  1508. msgstr "Fallu pa satisfacer la dependencia %s pa %s: %s"
  1509. #: cmdline/apt-get.cc:1425
  1510. #, c-format
  1511. msgid "Build-dependencies for %s could not be satisfied."
  1512. msgstr "Les dependencies de construcción de %s nun pudieron satisfacese."
  1513. #: cmdline/apt-get.cc:1430
  1514. msgid "Failed to process build dependencies"
  1515. msgstr "Fallu al procesar les dependencies de construcción"
  1516. #: cmdline/apt-get.cc:1523 cmdline/apt-get.cc:1535
  1517. #, fuzzy, c-format
  1518. msgid "Changelog for %s (%s)"
  1519. msgstr "Coneutando a %s (%s)"
  1520. #: cmdline/apt-get.cc:1621
  1521. msgid "Supported modules:"
  1522. msgstr "Módulos sofitaos:"
  1523. #: cmdline/apt-get.cc:1662
  1524. #, fuzzy
  1525. msgid ""
  1526. "Usage: apt-get [options] command\n"
  1527. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1528. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1529. "\n"
  1530. "apt-get is a simple command line interface for downloading and\n"
  1531. "installing packages. The most frequently used commands are update\n"
  1532. "and install.\n"
  1533. "\n"
  1534. "Commands:\n"
  1535. " update - Retrieve new lists of packages\n"
  1536. " upgrade - Perform an upgrade\n"
  1537. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  1538. " remove - Remove packages\n"
  1539. " autoremove - Remove automatically all unused packages\n"
  1540. " purge - Remove packages and config files\n"
  1541. " source - Download source archives\n"
  1542. " build-dep - Configure build-dependencies for source packages\n"
  1543. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  1544. " dselect-upgrade - Follow dselect selections\n"
  1545. " clean - Erase downloaded archive files\n"
  1546. " autoclean - Erase old downloaded archive files\n"
  1547. " check - Verify that there are no broken dependencies\n"
  1548. " changelog - Download and display the changelog for the given package\n"
  1549. " download - Download the binary package into the current directory\n"
  1550. "\n"
  1551. "Options:\n"
  1552. " -h This help text.\n"
  1553. " -q Loggable output - no progress indicator\n"
  1554. " -qq No output except for errors\n"
  1555. " -d Download only - do NOT install or unpack archives\n"
  1556. " -s No-act. Perform ordering simulation\n"
  1557. " -y Assume Yes to all queries and do not prompt\n"
  1558. " -f Attempt to correct a system with broken dependencies in place\n"
  1559. " -m Attempt to continue if archives are unlocatable\n"
  1560. " -u Show a list of upgraded packages as well\n"
  1561. " -b Build the source package after fetching it\n"
  1562. " -V Show verbose version numbers\n"
  1563. " -c=? Read this configuration file\n"
  1564. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1565. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  1566. "pages for more information and options.\n"
  1567. " This APT has Super Cow Powers.\n"
  1568. msgstr ""
  1569. "Usu: apt-get [opciones] comandu\n"
  1570. " apt-get [opciones] install|remove pkg1 [pkg2 ...]\n"
  1571. " apt-get [opciones] source pkg1 [pkg2 ...]\n"
  1572. "\n"
  1573. "apt-get ye una interface de llínia de comandos simple pa baxar ya\n"
  1574. "instalar paquetes. L'usu más frecuente de comandos ye p'anovar\n"
  1575. "ya instalar.\n"
  1576. "\n"
  1577. "Comandos:\n"
  1578. " update - Algamar nueva llista de paquetes\n"
  1579. " upgrade - Facer una anovación\n"
  1580. " install - Instalar nuevos paquetes (pkg ye libc6 non libc6.deb)\n"
  1581. " remove - Desaniciar paquetes\n"
  1582. " autoremove - Desaniciar automáticamente tolos paquetes non usaos\n"
  1583. " purge - Quitar y desaniciar paquetes\n"
  1584. " source - Baxar fonte del ficheru\n"
  1585. " build-dep - Configurar dependencies pa los paquetes fonte\n"
  1586. " dist-upgrade - Actualización de la distribución, ver apt-get(8)\n"
  1587. " dselect-upgrade - Siguir seleiciones dselect\n"
  1588. " clean - Esborrar los ficheros de ficheros baxaos\n"
  1589. " autoclean - Esborrar ficheros de ficheros vieyos baxaos\n"
  1590. " check - Verificar que nun hai dependencies frayaes\n"
  1591. " markauto - Marcar paquetes como automáticamente instalaos\n"
  1592. " unmarkauto - Marcar paquetes como manualmente instalaos\n"
  1593. "\n"
  1594. "Opciones:\n"
  1595. " -h Esti testu d'aida.\n"
  1596. " -q Salida Log - ensín indicación de progresu\n"
  1597. " -qq Ensín salida excepto pa fallos\n"
  1598. " -d Baxar sólo - NON instalar o desempaquetar los archivos\n"
  1599. " -s Non aición. Facer una simulación ordenada\n"
  1600. " -y Asumir Yes pa toles entruges y nun visualizar la petición\n"
  1601. " -f Intentar correxir un sistema con dependencies frayaes\n"
  1602. " -m Intentar siguir si los archivos nun tan disponibles\n"
  1603. " -u Amosar una lilsta de paquetes que tan bien\n"
  1604. " -b Facer el paquete fonte dempues d'algamalu\n"
  1605. " -V Amosar númberos de versiones\n"
  1606. " -c=? Lleer esti ficheru de configuración\n"
  1607. " -o=? Afitar una opción de configuración arbitraria, p. ex. -o dir::cache=/"
  1608. "tmp\n"
  1609. "Ver lés páxines de los manuales d' apt-get(8), sources.list(5) y apt."
  1610. "conf(5)\n"
  1611. "pa más información y opciones.\n"
  1612. " Esti APT tien Poderes de Super Vaca.\n"
  1613. #: cmdline/apt-helper.cc:35
  1614. #, fuzzy
  1615. msgid "Must specify at least one pair url/filename"
  1616. msgstr "Has de conseñar polo menos un paquete p'algamar so fonte"
  1617. #: cmdline/apt-helper.cc:53
  1618. msgid "Download Failed"
  1619. msgstr ""
  1620. #: cmdline/apt-helper.cc:66
  1621. msgid ""
  1622. "Usage: apt-helper [options] command\n"
  1623. " apt-helper [options] download-file uri target-path\n"
  1624. "\n"
  1625. "apt-helper is a internal helper for apt\n"
  1626. "\n"
  1627. "Commands:\n"
  1628. " download-file - download the given uri to the target-path\n"
  1629. "\n"
  1630. " This APT helper has Super Meep Powers.\n"
  1631. msgstr ""
  1632. #: cmdline/apt-mark.cc:68
  1633. #, fuzzy, c-format
  1634. msgid "%s can not be marked as it is not installed.\n"
  1635. msgstr "pero nun ta instaláu"
  1636. #: cmdline/apt-mark.cc:74
  1637. #, fuzzy, c-format
  1638. msgid "%s was already set to manually installed.\n"
  1639. msgstr "%s axustáu como instaláu manualmente.\n"
  1640. #: cmdline/apt-mark.cc:76
  1641. #, fuzzy, c-format
  1642. msgid "%s was already set to automatically installed.\n"
  1643. msgstr "%s axustáu como instaláu automáticamente.\n"
  1644. #: cmdline/apt-mark.cc:241
  1645. #, fuzzy, c-format
  1646. msgid "%s was already set on hold.\n"
  1647. msgstr "%s yá ta na versión más nueva.\n"
  1648. #: cmdline/apt-mark.cc:243
  1649. #, fuzzy, c-format
  1650. msgid "%s was already not hold.\n"
  1651. msgstr "%s yá ta na versión más nueva.\n"
  1652. #: cmdline/apt-mark.cc:273 cmdline/apt-mark.cc:322
  1653. #, fuzzy, c-format
  1654. msgid "%s set on hold.\n"
  1655. msgstr "%s axustáu como instaláu manualmente.\n"
  1656. #: cmdline/apt-mark.cc:275 cmdline/apt-mark.cc:327
  1657. #, fuzzy, c-format
  1658. msgid "Canceled hold on %s.\n"
  1659. msgstr "Nun pudo abrise %s"
  1660. #: cmdline/apt-mark.cc:345
  1661. msgid "Executing dpkg failed. Are you root?"
  1662. msgstr ""
  1663. #: cmdline/apt-mark.cc:392
  1664. msgid ""
  1665. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1666. "\n"
  1667. "apt-mark is a simple command line interface for marking packages\n"
  1668. "as manually or automatically installed. It can also list marks.\n"
  1669. "\n"
  1670. "Commands:\n"
  1671. " auto - Mark the given packages as automatically installed\n"
  1672. " manual - Mark the given packages as manually installed\n"
  1673. " hold - Mark a package as held back\n"
  1674. " unhold - Unset a package set as held back\n"
  1675. " showauto - Print the list of automatically installed packages\n"
  1676. " showmanual - Print the list of manually installed packages\n"
  1677. " showhold - Print the list of package on hold\n"
  1678. "\n"
  1679. "Options:\n"
  1680. " -h This help text.\n"
  1681. " -q Loggable output - no progress indicator\n"
  1682. " -qq No output except for errors\n"
  1683. " -s No-act. Just prints what would be done.\n"
  1684. " -f read/write auto/manual marking in the given file\n"
  1685. " -c=? Read this configuration file\n"
  1686. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1687. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  1688. msgstr ""
  1689. #: cmdline/apt.cc:47
  1690. msgid ""
  1691. "Usage: apt [options] command\n"
  1692. "\n"
  1693. "CLI for apt.\n"
  1694. "Basic commands: \n"
  1695. " list - list packages based on package names\n"
  1696. " search - search in package descriptions\n"
  1697. " show - show package details\n"
  1698. "\n"
  1699. " update - update list of available packages\n"
  1700. "\n"
  1701. " install - install packages\n"
  1702. " remove - remove packages\n"
  1703. "\n"
  1704. " upgrade - upgrade the system by installing/upgrading packages\n"
  1705. " full-upgrade - upgrade the system by removing/installing/upgrading "
  1706. "packages\n"
  1707. "\n"
  1708. " edit-sources - edit the source information file\n"
  1709. msgstr ""
  1710. #: methods/cdrom.cc:203
  1711. #, c-format
  1712. msgid "Unable to read the cdrom database %s"
  1713. msgstr "Nun se pudo lleer la base datos %s del CD-ROM"
  1714. #: methods/cdrom.cc:212
  1715. msgid ""
  1716. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1717. "cannot be used to add new CD-ROMs"
  1718. msgstr ""
  1719. "Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun "
  1720. "se puede usar p'amestar CDs nuevos"
  1721. #: methods/cdrom.cc:222
  1722. msgid "Wrong CD-ROM"
  1723. msgstr "CD-ROM malu"
  1724. #: methods/cdrom.cc:249
  1725. #, c-format
  1726. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1727. msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando entá."
  1728. #: methods/cdrom.cc:254
  1729. msgid "Disk not found."
  1730. msgstr "Nun s'atopa'l discu."
  1731. #: methods/cdrom.cc:262 methods/file.cc:83 methods/rsh.cc:278
  1732. msgid "File not found"
  1733. msgstr "Nun s'atopa'l ficheru."
  1734. #: methods/copy.cc:47 methods/gzip.cc:117 methods/rred.cc:598
  1735. #: methods/rred.cc:608
  1736. msgid "Failed to stat"
  1737. msgstr "Falló al lleer"
  1738. #: methods/copy.cc:83 methods/gzip.cc:124 methods/rred.cc:605
  1739. msgid "Failed to set modification time"
  1740. msgstr "Nun se pudo afitar la hora de modificación"
  1741. #: methods/file.cc:48
  1742. msgid "Invalid URI, local URIS must not start with //"
  1743. msgstr "URI malu, los URIS llocales nun pueden entamar por //"
  1744. #. Login must be before getpeername otherwise dante won't work.
  1745. #: methods/ftp.cc:177
  1746. msgid "Logging in"
  1747. msgstr "Entrando"
  1748. #: methods/ftp.cc:183
  1749. msgid "Unable to determine the peer name"
  1750. msgstr "Nun se pudo determinar el nome del par"
  1751. #: methods/ftp.cc:188
  1752. msgid "Unable to determine the local name"
  1753. msgstr "Nun se pudo determinar el nome llocal"
  1754. #: methods/ftp.cc:219 methods/ftp.cc:247
  1755. #, c-format
  1756. msgid "The server refused the connection and said: %s"
  1757. msgstr "El sirvidor refugó la conexón, y dixo: %s"
  1758. #: methods/ftp.cc:225
  1759. #, c-format
  1760. msgid "USER failed, server said: %s"
  1761. msgstr "L'usuariu (USER) falló; el sirvidor dixo: %s"
  1762. #: methods/ftp.cc:232
  1763. #, c-format
  1764. msgid "PASS failed, server said: %s"
  1765. msgstr "La contraseña (PASS) falló; el sirvidor dixo: %s"
  1766. #: methods/ftp.cc:252
  1767. msgid ""
  1768. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1769. "is empty."
  1770. msgstr ""
  1771. "Especificóse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::"
  1772. "ProxyLogin ta baleru."
  1773. #: methods/ftp.cc:280
  1774. #, c-format
  1775. msgid "Login script command '%s' failed, server said: %s"
  1776. msgstr "Falló la orde '%s' del guión d'entrada; el sirvidor dixo: %s"
  1777. #: methods/ftp.cc:306
  1778. #, c-format
  1779. msgid "TYPE failed, server said: %s"
  1780. msgstr "La triba (TYPE) falló; el sirvidor dixo: %s"
  1781. #: methods/ftp.cc:344 methods/ftp.cc:456 methods/rsh.cc:195 methods/rsh.cc:240
  1782. msgid "Connection timeout"
  1783. msgstr "Gandió'l tiempu de conexón"
  1784. #: methods/ftp.cc:350
  1785. msgid "Server closed the connection"
  1786. msgstr "El sirvidor zarró la conexón"
  1787. #: methods/ftp.cc:360 methods/rsh.cc:209
  1788. msgid "A response overflowed the buffer."
  1789. msgstr "Una rempuesta revirtió'l buffer."
  1790. #: methods/ftp.cc:377 methods/ftp.cc:389
  1791. msgid "Protocol corruption"
  1792. msgstr "Corrupción del protocolu"
  1793. #: methods/ftp.cc:701 methods/ftp.cc:707 methods/ftp.cc:742
  1794. msgid "Could not create a socket"
  1795. msgstr "Nun se pudo crear un socket"
  1796. #: methods/ftp.cc:712
  1797. msgid "Could not connect data socket, connection timed out"
  1798. msgstr "Nun se pudo coneutar el zócalu de datos; gandió'l tiempu de conexón"
  1799. #: methods/ftp.cc:716 methods/connect.cc:116
  1800. msgid "Failed"
  1801. msgstr "Falló"
  1802. #: methods/ftp.cc:718
  1803. msgid "Could not connect passive socket."
  1804. msgstr "Nun se pudo coneutar un socket pasivu."
  1805. #: methods/ftp.cc:735
  1806. msgid "getaddrinfo was unable to get a listening socket"
  1807. msgstr "getaddrinfo nun pudo obtener un zócalu oyente"
  1808. #: methods/ftp.cc:749
  1809. msgid "Could not bind a socket"
  1810. msgstr "Nun se pudo enllazar con un socket"
  1811. #: methods/ftp.cc:753
  1812. msgid "Could not listen on the socket"
  1813. msgstr "Nun se pudo escuchar nel socket"
  1814. #: methods/ftp.cc:760
  1815. msgid "Could not determine the socket's name"
  1816. msgstr "Nun se pudo determinar el nome del socket"
  1817. #: methods/ftp.cc:792
  1818. msgid "Unable to send PORT command"
  1819. msgstr "Nun se pudo mandar la orde PORT"
  1820. #: methods/ftp.cc:802
  1821. #, c-format
  1822. msgid "Unknown address family %u (AF_*)"
  1823. msgstr "Direición de familia %u desconocida (AF_*)"
  1824. #: methods/ftp.cc:811
  1825. #, c-format
  1826. msgid "EPRT failed, server said: %s"
  1827. msgstr "EPRT falló; el sirvidor dixo: %s"
  1828. #: methods/ftp.cc:831
  1829. msgid "Data socket connect timed out"
  1830. msgstr "Gandió'l tiempu de conexón col zócalu de datos"
  1831. #: methods/ftp.cc:838
  1832. msgid "Unable to accept connection"
  1833. msgstr "Nun se pudo aceptar la conexón"
  1834. #: methods/ftp.cc:877 methods/server.cc:352 methods/rsh.cc:316
  1835. msgid "Problem hashing file"
  1836. msgstr "Hebo un problema al xenerar el hash del ficheru"
  1837. #: methods/ftp.cc:890
  1838. #, c-format
  1839. msgid "Unable to fetch file, server said '%s'"
  1840. msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'"
  1841. #: methods/ftp.cc:905 methods/rsh.cc:335
  1842. msgid "Data socket timed out"
  1843. msgstr "Gandió'l tiempu del zócalu de datos"
  1844. #: methods/ftp.cc:935
  1845. #, c-format
  1846. msgid "Data transfer failed, server said '%s'"
  1847. msgstr "Falló la tresferencia de datos; el sirvidor dixo '%s'"
  1848. #. Get the files information
  1849. #: methods/ftp.cc:1014
  1850. msgid "Query"
  1851. msgstr "Consulta"
  1852. #: methods/ftp.cc:1128
  1853. msgid "Unable to invoke "
  1854. msgstr "Nun se pudo invocar "
  1855. #: methods/connect.cc:76
  1856. #, c-format
  1857. msgid "Connecting to %s (%s)"
  1858. msgstr "Coneutando a %s (%s)"
  1859. #: methods/connect.cc:87
  1860. #, c-format
  1861. msgid "[IP: %s %s]"
  1862. msgstr "[IP: %s %s]"
  1863. #: methods/connect.cc:94
  1864. #, c-format
  1865. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1866. msgstr "Nun se pudo crear un socket pa %s (f=%u t=%u p=%u)"
  1867. #: methods/connect.cc:100
  1868. #, c-format
  1869. msgid "Cannot initiate the connection to %s:%s (%s)."
  1870. msgstr "Nun se pudo coneutar a %s:%s (%s)."
  1871. #: methods/connect.cc:108
  1872. #, c-format
  1873. msgid "Could not connect to %s:%s (%s), connection timed out"
  1874. msgstr "Nun se pudo coneutar a %s:%s (%s); expiró'l tiempu de conexón"
  1875. #: methods/connect.cc:126
  1876. #, c-format
  1877. msgid "Could not connect to %s:%s (%s)."
  1878. msgstr "Nun se pudo coneutar a %s:%s (%s)."
  1879. #. We say this mainly because the pause here is for the
  1880. #. ssh connection that is still going
  1881. #: methods/connect.cc:154 methods/rsh.cc:439
  1882. #, c-format
  1883. msgid "Connecting to %s"
  1884. msgstr "Coneutando a %s"
  1885. #: methods/connect.cc:180 methods/connect.cc:199
  1886. #, c-format
  1887. msgid "Could not resolve '%s'"
  1888. msgstr "Nun se pudo resolver '%s'"
  1889. #: methods/connect.cc:205
  1890. #, c-format
  1891. msgid "Temporary failure resolving '%s'"
  1892. msgstr "Fallu temporal al resolver '%s'"
  1893. #: methods/connect.cc:209
  1894. #, fuzzy, c-format
  1895. msgid "System error resolving '%s:%s'"
  1896. msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)"
  1897. #: methods/connect.cc:211
  1898. #, c-format
  1899. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1900. msgstr "Daqué raro asocedió resolviendo '%s:%s' (%i - %s)"
  1901. #: methods/connect.cc:258
  1902. #, c-format
  1903. msgid "Unable to connect to %s:%s:"
  1904. msgstr "Nun pudo coneutase a %s:%s:"
  1905. #: methods/gpgv.cc:168
  1906. msgid ""
  1907. "Internal error: Good signature, but could not determine key fingerprint?!"
  1908. msgstr ""
  1909. "Fallu internu: Robla bona, pero nun se pudo determinar la so buelga dixital?!"
  1910. #: methods/gpgv.cc:172
  1911. msgid "At least one invalid signature was encountered."
  1912. msgstr "Atopóse polo menos una robla mala."
  1913. #: methods/gpgv.cc:174
  1914. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1915. msgstr "Nun pudo executase 'gpgv' pa verificar la robla (¿ta instaláu gpgv?)"
  1916. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1917. #: methods/gpgv.cc:180
  1918. #, c-format
  1919. msgid ""
  1920. "Clearsigned file isn't valid, got '%s' (does the network require "
  1921. "authentication?)"
  1922. msgstr ""
  1923. #: methods/gpgv.cc:184
  1924. msgid "Unknown error executing gpgv"
  1925. msgstr "Fallu desconocíu al executar gpgv"
  1926. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  1927. msgid "The following signatures were invalid:\n"
  1928. msgstr "Les siguientes robles nun valieron:\n"
  1929. #: methods/gpgv.cc:231
  1930. msgid ""
  1931. "The following signatures couldn't be verified because the public key is not "
  1932. "available:\n"
  1933. msgstr ""
  1934. "Les robles siguientes nun pudieron verificase porque la to llave pública nun "
  1935. "ta a mano:\n"
  1936. #: methods/gzip.cc:69
  1937. msgid "Empty files can't be valid archives"
  1938. msgstr ""
  1939. #: methods/http.cc:509
  1940. msgid "Error writing to the file"
  1941. msgstr "Fallu al escribir nel ficheru"
  1942. #: methods/http.cc:523
  1943. msgid "Error reading from server. Remote end closed connection"
  1944. msgstr "Fallu al lleer nel sirvidor. El llau remotu zarró la conexón."
  1945. #: methods/http.cc:525
  1946. msgid "Error reading from server"
  1947. msgstr "Fallu al lleer nel sirvidor"
  1948. #: methods/http.cc:561
  1949. msgid "Error writing to file"
  1950. msgstr "Fallu al escribir nel ficheru"
  1951. #: methods/http.cc:621
  1952. msgid "Select failed"
  1953. msgstr "Falló la escoyeta"
  1954. #: methods/http.cc:626
  1955. msgid "Connection timed out"
  1956. msgstr "Gandió'l tiempu de conexón"
  1957. #: methods/http.cc:649
  1958. msgid "Error writing to output file"
  1959. msgstr "Fallu al escribir nel ficheru de salida"
  1960. #: methods/server.cc:51
  1961. msgid "Waiting for headers"
  1962. msgstr "Esperando les testeres"
  1963. #: methods/server.cc:109
  1964. msgid "Bad header line"
  1965. msgstr "Fallu na llinia testera"
  1966. #: methods/server.cc:134 methods/server.cc:141
  1967. msgid "The HTTP server sent an invalid reply header"
  1968. msgstr "El sirvidor HTTP mandó una testera incorreuta de rempuesta"
  1969. #: methods/server.cc:171
  1970. msgid "The HTTP server sent an invalid Content-Length header"
  1971. msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Length"
  1972. #: methods/server.cc:194
  1973. msgid "The HTTP server sent an invalid Content-Range header"
  1974. msgstr "El sirvidor HTTP mandó una testera incorreuta de Content-Range"
  1975. #: methods/server.cc:196
  1976. msgid "This HTTP server has broken range support"
  1977. msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance"
  1978. #: methods/server.cc:220
  1979. msgid "Unknown date format"
  1980. msgstr "Formatu de data desconocíu"
  1981. #: methods/server.cc:496
  1982. msgid "Bad header data"
  1983. msgstr "Datos de testera incorreutos"
  1984. #: methods/server.cc:513 methods/server.cc:600
  1985. msgid "Connection failed"
  1986. msgstr "Fallo la conexón"
  1987. #: methods/server.cc:572
  1988. #, c-format
  1989. msgid ""
  1990. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1991. "5 apt.conf)"
  1992. msgstr ""
  1993. #: methods/server.cc:692
  1994. msgid "Internal error"
  1995. msgstr "Fallu internu"
  1996. #: apt-private/private-upgrade.cc:25
  1997. msgid "Calculating upgrade... "
  1998. msgstr "Calculando l'anovamientu... "
  1999. #: apt-private/private-upgrade.cc:28
  2000. msgid "Done"
  2001. msgstr "Fecho"
  2002. #: apt-private/private-cacheset.cc:35 apt-private/private-search.cc:47
  2003. msgid "Sorting"
  2004. msgstr ""
  2005. #: apt-private/private-list.cc:123
  2006. msgid "Listing"
  2007. msgstr ""
  2008. #: apt-private/private-list.cc:156
  2009. #, c-format
  2010. msgid "There is %i additional version. Please use the '-a' switch to see it"
  2011. msgid_plural ""
  2012. "There are %i additional versions. Please use the '-a' switch to see them."
  2013. msgstr[0] ""
  2014. msgstr[1] ""
  2015. #: apt-private/private-cachefile.cc:93
  2016. msgid "Correcting dependencies..."
  2017. msgstr "Iguando dependencies..."
  2018. #: apt-private/private-cachefile.cc:96
  2019. msgid " failed."
  2020. msgstr " falló."
  2021. #: apt-private/private-cachefile.cc:99
  2022. msgid "Unable to correct dependencies"
  2023. msgstr "Nun pudieron iguase les dependencies"
  2024. #: apt-private/private-cachefile.cc:102
  2025. msgid "Unable to minimize the upgrade set"
  2026. msgstr "Nun pue amenorgase'l conxuntu d'actualización"
  2027. #: apt-private/private-cachefile.cc:104
  2028. msgid " Done"
  2029. msgstr " Fecho"
  2030. #: apt-private/private-cachefile.cc:108
  2031. msgid "You might want to run 'apt-get -f install' to correct these."
  2032. msgstr "Habríes d'executar 'apt-get -f install' para igualo."
  2033. #: apt-private/private-cachefile.cc:111
  2034. msgid "Unmet dependencies. Try using -f."
  2035. msgstr "Dependencies incumplíes. Téntalo usando -f."
  2036. #: apt-private/private-output.cc:103 apt-private/private-show.cc:84
  2037. #: apt-private/private-show.cc:89
  2038. msgid "unknown"
  2039. msgstr ""
  2040. #: apt-private/private-output.cc:234
  2041. #, fuzzy, c-format
  2042. msgid "[installed,upgradable to: %s]"
  2043. msgstr " [Instaláu]"
  2044. #: apt-private/private-output.cc:238
  2045. #, fuzzy
  2046. msgid "[installed,local]"
  2047. msgstr " [Instaláu]"
  2048. #: apt-private/private-output.cc:241
  2049. msgid "[installed,auto-removable]"
  2050. msgstr ""
  2051. #: apt-private/private-output.cc:243
  2052. #, fuzzy
  2053. msgid "[installed,automatic]"
  2054. msgstr " [Instaláu]"
  2055. #: apt-private/private-output.cc:245
  2056. #, fuzzy
  2057. msgid "[installed]"
  2058. msgstr " [Instaláu]"
  2059. #: apt-private/private-output.cc:249
  2060. #, c-format
  2061. msgid "[upgradable from: %s]"
  2062. msgstr ""
  2063. #: apt-private/private-output.cc:253
  2064. msgid "[residual-config]"
  2065. msgstr ""
  2066. #: apt-private/private-output.cc:435
  2067. #, c-format
  2068. msgid "but %s is installed"
  2069. msgstr "pero %s ta instaláu"
  2070. #: apt-private/private-output.cc:437
  2071. #, c-format
  2072. msgid "but %s is to be installed"
  2073. msgstr "pero %s ta pa instalar"
  2074. #: apt-private/private-output.cc:444
  2075. msgid "but it is not installable"
  2076. msgstr "pero nun ye instalable"
  2077. #: apt-private/private-output.cc:446
  2078. msgid "but it is a virtual package"
  2079. msgstr "pero ye un paquete virtual"
  2080. #: apt-private/private-output.cc:449
  2081. msgid "but it is not installed"
  2082. msgstr "pero nun ta instaláu"
  2083. #: apt-private/private-output.cc:449
  2084. msgid "but it is not going to be installed"
  2085. msgstr "pero nun va instalase"
  2086. #: apt-private/private-output.cc:454
  2087. msgid " or"
  2088. msgstr " o"
  2089. #: apt-private/private-output.cc:468 apt-private/private-output.cc:480
  2090. msgid "The following packages have unmet dependencies:"
  2091. msgstr "Los siguientes paquetes nun cumplen dependencies:"
  2092. #: apt-private/private-output.cc:503
  2093. msgid "The following NEW packages will be installed:"
  2094. msgstr "Van instalase los siguientes paquetes NUEVOS:"
  2095. #: apt-private/private-output.cc:529
  2096. msgid "The following packages will be REMOVED:"
  2097. msgstr "Los siguientes paquetes van DESANICIASE:"
  2098. #: apt-private/private-output.cc:551
  2099. msgid "The following packages have been kept back:"
  2100. msgstr "Los siguientes paquetes tan reteníos:"
  2101. #: apt-private/private-output.cc:572
  2102. msgid "The following packages will be upgraded:"
  2103. msgstr "Los siguientes paquetes van actualizase:"
  2104. #: apt-private/private-output.cc:593
  2105. msgid "The following packages will be DOWNGRADED:"
  2106. msgstr "Los siguientes paquetes van DESACTUALIZASE:"
  2107. #: apt-private/private-output.cc:613
  2108. msgid "The following held packages will be changed:"
  2109. msgstr "Van camudase los siguientes paquetes reteníos:"
  2110. #: apt-private/private-output.cc:668
  2111. #, c-format
  2112. msgid "%s (due to %s) "
  2113. msgstr "%s (por %s) "
  2114. #: apt-private/private-output.cc:676
  2115. msgid ""
  2116. "WARNING: The following essential packages will be removed.\n"
  2117. "This should NOT be done unless you know exactly what you are doing!"
  2118. msgstr ""
  2119. "AVISU: Los siguientes paquetes esenciales van desaniciase.\n"
  2120. "¡Esto NUN hai que facelo si nun sabes esautamente lo que faes!"
  2121. #: apt-private/private-output.cc:707
  2122. #, c-format
  2123. msgid "%lu upgraded, %lu newly installed, "
  2124. msgstr "%lu actualizaos, %lu nuevos instalaos, "
  2125. #: apt-private/private-output.cc:711
  2126. #, c-format
  2127. msgid "%lu reinstalled, "
  2128. msgstr "%lu reinstalaos, "
  2129. #: apt-private/private-output.cc:713
  2130. #, c-format
  2131. msgid "%lu downgraded, "
  2132. msgstr "%lu desactualizaos, "
  2133. #: apt-private/private-output.cc:715
  2134. #, c-format
  2135. msgid "%lu to remove and %lu not upgraded.\n"
  2136. msgstr "%lu para desaniciar y %lu nun actualizaos.\n"
  2137. #: apt-private/private-output.cc:719
  2138. #, c-format
  2139. msgid "%lu not fully installed or removed.\n"
  2140. msgstr "%lu nun instalaos dafechu o desaniciaos.\n"
  2141. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  2142. #. e.g. "Do you want to continue? [Y/n] "
  2143. #. The user has to answer with an input matching the
  2144. #. YESEXPR/NOEXPR defined in your l10n.
  2145. #: apt-private/private-output.cc:741
  2146. msgid "[Y/n]"
  2147. msgstr "[S/n]"
  2148. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  2149. #. e.g. "Should this file be removed? [y/N] "
  2150. #. The user has to answer with an input matching the
  2151. #. YESEXPR/NOEXPR defined in your l10n.
  2152. #: apt-private/private-output.cc:747
  2153. msgid "[y/N]"
  2154. msgstr "[s/N]"
  2155. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  2156. #: apt-private/private-output.cc:758
  2157. msgid "Y"
  2158. msgstr "S"
  2159. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  2160. #: apt-private/private-output.cc:764
  2161. msgid "N"
  2162. msgstr ""
  2163. #: apt-private/private-update.cc:31
  2164. msgid "The update command takes no arguments"
  2165. msgstr "La orde update nun lleva argumentos"
  2166. #: apt-private/private-update.cc:90
  2167. #, c-format
  2168. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  2169. msgid_plural ""
  2170. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  2171. msgstr[0] ""
  2172. msgstr[1] ""
  2173. #: apt-private/private-update.cc:94
  2174. msgid "All packages are up to date."
  2175. msgstr ""
  2176. #: apt-private/private-show.cc:156
  2177. #, c-format
  2178. msgid "There is %i additional record. Please use the '-a' switch to see it"
  2179. msgid_plural ""
  2180. "There are %i additional records. Please use the '-a' switch to see them."
  2181. msgstr[0] ""
  2182. msgstr[1] ""
  2183. #: apt-private/private-show.cc:163
  2184. msgid "not a real package (virtual)"
  2185. msgstr ""
  2186. #: apt-private/private-install.cc:84
  2187. msgid "Internal error, InstallPackages was called with broken packages!"
  2188. msgstr "Error internu, ¡InstallPackages llamose con paquetes frañaos!"
  2189. #: apt-private/private-install.cc:93
  2190. msgid "Packages need to be removed but remove is disabled."
  2191. msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgáu."
  2192. #: apt-private/private-install.cc:112
  2193. msgid "Internal error, Ordering didn't finish"
  2194. msgstr "Error internu, ordenar nun finó"
  2195. #: apt-private/private-install.cc:150
  2196. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  2197. msgstr ""
  2198. "Que raro... Los tamaños nun concasen, escribe a apt@packages.debian.org"
  2199. #. TRANSLATOR: The required space between number and unit is already included
  2200. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  2201. #: apt-private/private-install.cc:157
  2202. #, c-format
  2203. msgid "Need to get %sB/%sB of archives.\n"
  2204. msgstr "Hai que descargar %sB/%sB d'archivos.\n"
  2205. #. TRANSLATOR: The required space between number and unit is already included
  2206. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  2207. #: apt-private/private-install.cc:162
  2208. #, c-format
  2209. msgid "Need to get %sB of archives.\n"
  2210. msgstr "Hai que descargar %sB d'archivos.\n"
  2211. #. TRANSLATOR: The required space between number and unit is already included
  2212. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  2213. #: apt-private/private-install.cc:169
  2214. #, c-format
  2215. msgid "After this operation, %sB of additional disk space will be used.\n"
  2216. msgstr "Tres d'esta operación, van usase %sB d'espaciu de discu adicional.\n"
  2217. #. TRANSLATOR: The required space between number and unit is already included
  2218. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  2219. #: apt-private/private-install.cc:174
  2220. #, c-format
  2221. msgid "After this operation, %sB disk space will be freed.\n"
  2222. msgstr "Tres d'esta operación, van lliberase %sB d'espaciu de discu.\n"
  2223. #: apt-private/private-install.cc:202
  2224. #, c-format
  2225. msgid "You don't have enough free space in %s."
  2226. msgstr "Nun tienes espaciu libre bastante en %s."
  2227. #: apt-private/private-install.cc:212 apt-private/private-download.cc:59
  2228. msgid "There are problems and -y was used without --force-yes"
  2229. msgstr "Hai problemes y utilizose -y ensin --force-yes"
  2230. #: apt-private/private-install.cc:218 apt-private/private-install.cc:240
  2231. msgid "Trivial Only specified but this is not a trivial operation."
  2232. msgstr "Conseñose Trivial Only pero ésta nun ye una operación trivial."
  2233. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  2234. #. careful with hard to type or special characters (like non-breaking spaces)
  2235. #: apt-private/private-install.cc:222
  2236. msgid "Yes, do as I say!"
  2237. msgstr "Sí, ¡facer lo que digo!"
  2238. #: apt-private/private-install.cc:224
  2239. #, c-format
  2240. msgid ""
  2241. "You are about to do something potentially harmful.\n"
  2242. "To continue type in the phrase '%s'\n"
  2243. " ?] "
  2244. msgstr ""
  2245. "Tas a piques de facer daqué potencialmente dañible.\n"
  2246. "Pa continuar escribe la frase '%s'\n"
  2247. " ?] "
  2248. #: apt-private/private-install.cc:230 apt-private/private-install.cc:248
  2249. msgid "Abort."
  2250. msgstr "Encaboxar."
  2251. #: apt-private/private-install.cc:245
  2252. msgid "Do you want to continue?"
  2253. msgstr "¿Quies continuar?"
  2254. #: apt-private/private-install.cc:315
  2255. msgid "Some files failed to download"
  2256. msgstr "Dellos ficheros nun pudieron descargase"
  2257. #: apt-private/private-install.cc:322
  2258. msgid ""
  2259. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  2260. "missing?"
  2261. msgstr ""
  2262. "Nun pudieron algamase dellos archivos, ¿seique executando apt-get update o "
  2263. "tentando --fix-missing?"
  2264. #: apt-private/private-install.cc:326
  2265. msgid "--fix-missing and media swapping is not currently supported"
  2266. msgstr "--fix-missing y cambéu de mediu nun ta sofitao actualmente"
  2267. #: apt-private/private-install.cc:331
  2268. msgid "Unable to correct missing packages."
  2269. msgstr "Nun pudieron iguase los paquetes que falten."
  2270. #: apt-private/private-install.cc:332
  2271. msgid "Aborting install."
  2272. msgstr "Encaboxando la instalación."
  2273. #: apt-private/private-install.cc:368
  2274. msgid ""
  2275. "The following package disappeared from your system as\n"
  2276. "all files have been overwritten by other packages:"
  2277. msgid_plural ""
  2278. "The following packages disappeared from your system as\n"
  2279. "all files have been overwritten by other packages:"
  2280. msgstr[0] ""
  2281. "El siguiente paquete desapareció del sistema como\n"
  2282. "tolos ficheros fueron sobroescritos por otros paquetes:"
  2283. msgstr[1] ""
  2284. "Los siguientes paquetes desaparecieron del sistema como\n"
  2285. "tolos ficheros fueron sobroescritos por otros paquetes:"
  2286. #: apt-private/private-install.cc:372
  2287. msgid "Note: This is done automatically and on purpose by dpkg."
  2288. msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg."
  2289. #: apt-private/private-install.cc:393
  2290. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  2291. msgstr "Suponse que nun vamos esborrar coses; nun pue entamase AutoRemover"
  2292. #: apt-private/private-install.cc:501
  2293. msgid ""
  2294. "Hmm, seems like the AutoRemover destroyed something which really\n"
  2295. "shouldn't happen. Please file a bug report against apt."
  2296. msgstr ""
  2297. "Hmm, paez que AutoRemover destruyó daqué, lo que nun tendría\n"
  2298. "por qué pasar. Por favor, unvía un informe de fallu escontra apt."
  2299. #.
  2300. #. if (Packages == 1)
  2301. #. {
  2302. #. c1out << std::endl;
  2303. #. c1out <<
  2304. #. _("Since you only requested a single operation it is extremely likely that\n"
  2305. #. "the package is simply not installable and a bug report against\n"
  2306. #. "that package should be filed.") << std::endl;
  2307. #. }
  2308. #.
  2309. #: apt-private/private-install.cc:504 apt-private/private-install.cc:655
  2310. msgid "The following information may help to resolve the situation:"
  2311. msgstr "La siguiente información pue aidar a resolver la situación:"
  2312. #: apt-private/private-install.cc:508
  2313. msgid "Internal Error, AutoRemover broke stuff"
  2314. msgstr "Error internu, AutoRemover rompió coses"
  2315. #: apt-private/private-install.cc:515
  2316. msgid ""
  2317. "The following package was automatically installed and is no longer required:"
  2318. msgid_plural ""
  2319. "The following packages were automatically installed and are no longer "
  2320. "required:"
  2321. msgstr[0] "El siguiente paquete instalóse mou automáticu y yá nun se necesita:"
  2322. msgstr[1] ""
  2323. "Los siguientes paquetes instaláronse de manera automática y ya nun se "
  2324. "necesiten:"
  2325. #: apt-private/private-install.cc:519
  2326. #, c-format
  2327. msgid "%lu package was automatically installed and is no longer required.\n"
  2328. msgid_plural ""
  2329. "%lu packages were automatically installed and are no longer required.\n"
  2330. msgstr[0] "El paquete %lu instalóse de mou automáticu y yá nun se necesita.\n"
  2331. msgstr[1] ""
  2332. "Los paquetes %lu instaláronse de manera automática y ya nun se necesiten\n"
  2333. #: apt-private/private-install.cc:521
  2334. #, fuzzy
  2335. msgid "Use 'apt-get autoremove' to remove it."
  2336. msgid_plural "Use 'apt-get autoremove' to remove them."
  2337. msgstr[0] "Usa 'apt-get autoremove' pa desinstalalos."
  2338. msgstr[1] "Usa 'apt-get autoremove' pa desinstalalos."
  2339. #: apt-private/private-install.cc:614
  2340. msgid "You might want to run 'apt-get -f install' to correct these:"
  2341. msgstr "Habríes d'executar 'apt-get -f install' para iguar estos:"
  2342. #: apt-private/private-install.cc:616
  2343. msgid ""
  2344. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  2345. "solution)."
  2346. msgstr ""
  2347. "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o "
  2348. "conseña una solución)."
  2349. #: apt-private/private-install.cc:640
  2350. msgid ""
  2351. "Some packages could not be installed. This may mean that you have\n"
  2352. "requested an impossible situation or if you are using the unstable\n"
  2353. "distribution that some required packages have not yet been created\n"
  2354. "or been moved out of Incoming."
  2355. msgstr ""
  2356. "Dellos paquetes nun pudieron instalase. Esto puede significar que\n"
  2357. "conseñaste una situación imposible o, si tas usando la distribución\n"
  2358. "inestable, que dellos paquetes necesarios nun se crearon o que\n"
  2359. "s'allugaron fuera d'Incoming."
  2360. #: apt-private/private-install.cc:661
  2361. msgid "Broken packages"
  2362. msgstr "Paquetes frañaos"
  2363. #: apt-private/private-install.cc:738
  2364. msgid "The following extra packages will be installed:"
  2365. msgstr "Instalaránse los siguientes paquetes extra:"
  2366. #: apt-private/private-install.cc:828
  2367. msgid "Suggested packages:"
  2368. msgstr "Paquetes afalaos:"
  2369. #: apt-private/private-install.cc:829
  2370. msgid "Recommended packages:"
  2371. msgstr "Paquetes encamentaos"
  2372. #: apt-private/private-install.cc:851
  2373. #, c-format
  2374. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  2375. msgstr "Saltando %s, ya ta instalau y la actualización nun ta activada.\n"
  2376. #: apt-private/private-install.cc:855
  2377. #, c-format
  2378. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  2379. msgstr "Saltando %s, nun ta instaláu y namái se requieren anovamientos.\n"
  2380. #: apt-private/private-install.cc:867
  2381. #, c-format
  2382. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  2383. msgstr "La reinstalación de %s nun ye dable, nun pue descargase.\n"
  2384. #: apt-private/private-install.cc:872
  2385. #, c-format
  2386. msgid "%s is already the newest version.\n"
  2387. msgstr "%s yá ta na versión más nueva.\n"
  2388. #: apt-private/private-install.cc:920
  2389. #, c-format
  2390. msgid "Selected version '%s' (%s) for '%s'\n"
  2391. msgstr "Esbillada la versión %s (%s) pa %s\n"
  2392. #: apt-private/private-install.cc:925
  2393. #, fuzzy, c-format
  2394. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  2395. msgstr "Esbillada la versión %s (%s) pa %s\n"
  2396. #. TRANSLATORS: Note, this is not an interactive question
  2397. #: apt-private/private-install.cc:967
  2398. #, fuzzy, c-format
  2399. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  2400. msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
  2401. #: apt-private/private-install.cc:973
  2402. #, fuzzy, c-format
  2403. msgid "Package '%s' is not installed, so not removed\n"
  2404. msgstr "El paquete %s nun ta instalau, nun va desaniciase\n"
  2405. #: apt-private/private-main.cc:32
  2406. msgid ""
  2407. "NOTE: This is only a simulation!\n"
  2408. " apt-get needs root privileges for real execution.\n"
  2409. " Keep also in mind that locking is deactivated,\n"
  2410. " so don't depend on the relevance to the real current situation!"
  2411. msgstr ""
  2412. "NOTA: ¡Esto sólo ye una simulación!\n"
  2413. " apt-get necesita privilexos de root pa la execución real.\n"
  2414. " ¡Ten tamién en cuenta que'l bloquéu ta desactiváu,\n"
  2415. " asina que nun dependen de la pertinencia de la verdadera situación "
  2416. "actual!"
  2417. #: apt-private/private-download.cc:36
  2418. msgid "WARNING: The following packages cannot be authenticated!"
  2419. msgstr "AVISU: ¡Nun pudieron autenticase los siguientes paquetes!"
  2420. #: apt-private/private-download.cc:40
  2421. msgid "Authentication warning overridden.\n"
  2422. msgstr "Avisu d'autenticación saltáu.\n"
  2423. #: apt-private/private-download.cc:45 apt-private/private-download.cc:52
  2424. msgid "Some packages could not be authenticated"
  2425. msgstr "Dellos paquetes nun pudieron autenticase"
  2426. #: apt-private/private-download.cc:50
  2427. msgid "Install these packages without verification?"
  2428. msgstr "¿Instalar esos paquetes ensin verificación?"
  2429. #: apt-private/private-sources.cc:58
  2430. #, fuzzy, c-format
  2431. msgid "Failed to parse %s. Edit again? "
  2432. msgstr "Nun pudo renomase %s como %s"
  2433. #: apt-private/private-sources.cc:70
  2434. #, c-format
  2435. msgid "Your '%s' file changed, please run 'apt-get update'."
  2436. msgstr ""
  2437. #: apt-private/private-search.cc:51
  2438. msgid "Full Text Search"
  2439. msgstr ""
  2440. #: apt-private/acqprogress.cc:66
  2441. msgid "Hit "
  2442. msgstr "Oxe "
  2443. #: apt-private/acqprogress.cc:88
  2444. msgid "Get:"
  2445. msgstr "Des:"
  2446. #: apt-private/acqprogress.cc:119
  2447. msgid "Ign "
  2448. msgstr "Ign "
  2449. #: apt-private/acqprogress.cc:123
  2450. msgid "Err "
  2451. msgstr "Err "
  2452. #: apt-private/acqprogress.cc:147
  2453. #, c-format
  2454. msgid "Fetched %sB in %s (%sB/s)\n"
  2455. msgstr "Descargaos %sB en %s (%sB/s)\n"
  2456. #: apt-private/acqprogress.cc:237
  2457. #, c-format
  2458. msgid " [Working]"
  2459. msgstr " [Tresnando]"
  2460. #: apt-private/acqprogress.cc:298
  2461. #, c-format
  2462. msgid ""
  2463. "Media change: please insert the disc labeled\n"
  2464. " '%s'\n"
  2465. "in the drive '%s' and press enter\n"
  2466. msgstr ""
  2467. "Cambeu de mediu: Por favor meti'l discu etiquetáu\n"
  2468. " '%s'\n"
  2469. "na unidá '%s' y calca Intro\n"
  2470. #. FIXME: fallback to a default mirror here instead
  2471. #. and provide a config option to define that default
  2472. #: methods/mirror.cc:280
  2473. #, c-format
  2474. msgid "No mirror file '%s' found "
  2475. msgstr "Nun s'alcontró ficheru espeyu '%s'"
  2476. #. FIXME: fallback to a default mirror here instead
  2477. #. and provide a config option to define that default
  2478. #: methods/mirror.cc:287
  2479. #, fuzzy, c-format
  2480. msgid "Can not read mirror file '%s'"
  2481. msgstr "Nun s'alcontró ficheru espeyu '%s'"
  2482. #: methods/mirror.cc:315
  2483. #, fuzzy, c-format
  2484. msgid "No entry found in mirror file '%s'"
  2485. msgstr "Nun s'alcontró ficheru espeyu '%s'"
  2486. #: methods/mirror.cc:445
  2487. #, c-format
  2488. msgid "[Mirror: %s]"
  2489. msgstr "[Espeyu: %s]"
  2490. #: methods/rsh.cc:102 ftparchive/multicompress.cc:171
  2491. msgid "Failed to create IPC pipe to subprocess"
  2492. msgstr "Falló criar un tubu IPC al soprocesu"
  2493. #: methods/rsh.cc:343
  2494. msgid "Connection closed prematurely"
  2495. msgstr "Conexón encaboxada prematuramente"
  2496. #: dselect/install:33
  2497. msgid "Bad default setting!"
  2498. msgstr "¡Mal axuste por omisión!"
  2499. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  2500. #: dselect/install:106 dselect/update:45
  2501. msgid "Press enter to continue."
  2502. msgstr "Calca Intro pa continuar."
  2503. #: dselect/install:92
  2504. msgid "Do you want to erase any previously downloaded .deb files?"
  2505. msgstr "¿Quies desaniciar los ficheros .deb descargaos previamente?"
  2506. #: dselect/install:102
  2507. msgid "Some errors occurred while unpacking. Packages that were installed"
  2508. msgstr ""
  2509. "Ocurrieron dellos errores al desempaquetar. Los paquetes que s'instalaron "
  2510. "configurarse'l"
  2511. #: dselect/install:103
  2512. msgid "will be configured. This may result in duplicate errors"
  2513. msgstr "van configurase. Esto pue causar errores duplicaos"
  2514. #: dselect/install:104
  2515. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  2516. msgstr ""
  2517. "o fallos causaos por dependencies que nun tán. Esto ta BIEN, sólo los fallos"
  2518. #: dselect/install:105
  2519. msgid ""
  2520. "above this message are important. Please fix them and run [I]nstall again"
  2521. msgstr ""
  2522. "enriba d'esti mensaxe son importante. Por favor, íguales y executa [I]nstall "
  2523. "otra vuelta"
  2524. #: dselect/update:30
  2525. msgid "Merging available information"
  2526. msgstr "Fusionando información disponible"
  2527. #: cmdline/apt-extracttemplates.cc:227
  2528. msgid ""
  2529. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2530. "\n"
  2531. "apt-extracttemplates is a tool to extract config and template info\n"
  2532. "from debian packages\n"
  2533. "\n"
  2534. "Options:\n"
  2535. " -h This help text\n"
  2536. " -t Set the temp dir\n"
  2537. " -c=? Read this configuration file\n"
  2538. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2539. msgstr ""
  2540. "Usu: apt-extracttemplates ficheru1 [ficheru2 ...]\n"
  2541. "\n"
  2542. "apt-extracttemplates ye un preséu pa sacar información de\n"
  2543. "configuración y plantíes de paquetes de debian.\n"
  2544. "\n"
  2545. "Opciones:\n"
  2546. "-h Esti testu d'aida.\n"
  2547. "-t Define'l direutoriu temporal\n"
  2548. "-c=? Llei esti ficheru de configuración\n"
  2549. "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/"
  2550. "tmp\n"
  2551. #: cmdline/apt-extracttemplates.cc:303
  2552. msgid "Cannot get debconf version. Is debconf installed?"
  2553. msgstr "Nun se pue alcontrar la versión de debconf. ¿Ta instaláu debconf?"
  2554. #: ftparchive/apt-ftparchive.cc:187 ftparchive/apt-ftparchive.cc:371
  2555. msgid "Package extension list is too long"
  2556. msgstr "La llista d'estensión de paquetes ye enforma llarga"
  2557. #: ftparchive/apt-ftparchive.cc:189 ftparchive/apt-ftparchive.cc:206
  2558. #: ftparchive/apt-ftparchive.cc:229 ftparchive/apt-ftparchive.cc:283
  2559. #: ftparchive/apt-ftparchive.cc:297 ftparchive/apt-ftparchive.cc:319
  2560. #, c-format
  2561. msgid "Error processing directory %s"
  2562. msgstr "Error al procesar el direutoriu %s"
  2563. #: ftparchive/apt-ftparchive.cc:281
  2564. msgid "Source extension list is too long"
  2565. msgstr "La llista d'estensión de fontes ye enforma llarga"
  2566. #: ftparchive/apt-ftparchive.cc:401
  2567. msgid "Error writing header to contents file"
  2568. msgstr "Error al escribir la cabecera al ficheru de conteníos"
  2569. #: ftparchive/apt-ftparchive.cc:431
  2570. #, c-format
  2571. msgid "Error processing contents %s"
  2572. msgstr "Error al procesar conteníos %s"
  2573. #: ftparchive/apt-ftparchive.cc:626
  2574. msgid ""
  2575. "Usage: apt-ftparchive [options] command\n"
  2576. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2577. " sources srcpath [overridefile [pathprefix]]\n"
  2578. " contents path\n"
  2579. " release path\n"
  2580. " generate config [groups]\n"
  2581. " clean config\n"
  2582. "\n"
  2583. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2584. "many styles of generation from fully automated to functional replacements\n"
  2585. "for dpkg-scanpackages and dpkg-scansources\n"
  2586. "\n"
  2587. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2588. "Package file contains the contents of all the control fields from\n"
  2589. "each package as well as the MD5 hash and filesize. An override file\n"
  2590. "is supported to force the value of Priority and Section.\n"
  2591. "\n"
  2592. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2593. "The --source-override option can be used to specify a src override file\n"
  2594. "\n"
  2595. "The 'packages' and 'sources' command should be run in the root of the\n"
  2596. "tree. BinaryPath should point to the base of the recursive search and \n"
  2597. "override file should contain the override flags. Pathprefix is\n"
  2598. "appended to the filename fields if present. Example usage from the \n"
  2599. "Debian archive:\n"
  2600. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2601. " dists/potato/main/binary-i386/Packages\n"
  2602. "\n"
  2603. "Options:\n"
  2604. " -h This help text\n"
  2605. " --md5 Control MD5 generation\n"
  2606. " -s=? Source override file\n"
  2607. " -q Quiet\n"
  2608. " -d=? Select the optional caching database\n"
  2609. " --no-delink Enable delinking debug mode\n"
  2610. " --contents Control contents file generation\n"
  2611. " -c=? Read this configuration file\n"
  2612. " -o=? Set an arbitrary configuration option"
  2613. msgstr ""
  2614. "Uso: apt-ftparchive [escoyetes] orde\n"
  2615. "Ordes: packages camin-binariu [ficheru-disvíos [prefixu-camin]]\n"
  2616. " sources camin-fonte [ficheru-disvíos [prefixu-camin]]\n"
  2617. " contents camin\n"
  2618. " release camin\n"
  2619. " generate config [grupos]\n"
  2620. " clean config\n"
  2621. "\n"
  2622. "apt-ftparchive xenera índices p'archivos de Debian. Sofita dellos\n"
  2623. "estilos de xeneración de reemplazos pa dpkg-scanpackages y\n"
  2624. "dpkg-scansources, dende los automatizáos dafechu a los funcionales .\n"
  2625. "\n"
  2626. "apt-ftparchive xenera ficheros Package d'un árbol de .debs. El ficheru\n"
  2627. "Package tien los conteníos de tolos campos de control de cada paquete,\n"
  2628. "neto que la suma MD5 y el tamañu del ficheru. Puede usase un ficheru\n"
  2629. "de disvíos pa forzar el valor de Priority y Section.\n"
  2630. "\n"
  2631. "De mou asemeyáu, apt-ftparchive xenera ficheros Sources pa un árbol\n"
  2632. "de .dscs. Puede utilizase la opción --source-override pa conseñar un\n"
  2633. "ficheru de disvíu de fonte.\n"
  2634. "\n"
  2635. "Les ordes «packages» y «sources» han d'executase na raiz de l'árbol.\n"
  2636. "BinaryPath tien qu'apuntar a la base de la gueta recursiva, y el ficheru\n"
  2637. "de disvíos tien que contener les marques de los disvíos. El prefixu de\n"
  2638. "camín, si esiste, améstase a los campos de nome de ficheru. Darréu,\n"
  2639. "un exemplu d'usu basáu nos archivos de Debian:\n"
  2640. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2641. " dists/potato/main/binary-i386/Packages\n"
  2642. "\n"
  2643. "Escoyetes:\n"
  2644. " -h Esti testu d'aida\n"
  2645. " --md5 Xenerar control MD5 \n"
  2646. " -s=? Ficheru de desvíu de fontes\n"
  2647. " -q Sele\n"
  2648. " -d=? Seleiciona la base de datos de caché opcional \n"
  2649. " --no-delink Activa'l mou de depuración de desenllaces\n"
  2650. " --contents Xenerar ficheru de conteníos de control\n"
  2651. " -c=? Lleer esti ficheru de configuración\n"
  2652. " -o=? Afita una escoyeta de configuración propia"
  2653. #: ftparchive/apt-ftparchive.cc:841
  2654. msgid "No selections matched"
  2655. msgstr "Nun concasó denguna seleición"
  2656. #: ftparchive/apt-ftparchive.cc:919
  2657. #, c-format
  2658. msgid "Some files are missing in the package file group `%s'"
  2659. msgstr "Falten dellos ficheros nel grupu de ficheros de paquete `%s'"
  2660. #: ftparchive/cachedb.cc:67
  2661. #, c-format
  2662. msgid "DB was corrupted, file renamed to %s.old"
  2663. msgstr "La BD corrompiose, ficheru renomáu como %s.old"
  2664. #: ftparchive/cachedb.cc:85
  2665. #, c-format
  2666. msgid "DB is old, attempting to upgrade %s"
  2667. msgstr "La DB ye antigua, tentando actualizar %s"
  2668. #: ftparchive/cachedb.cc:96
  2669. msgid ""
  2670. "DB format is invalid. If you upgraded from an older version of apt, please "
  2671. "remove and re-create the database."
  2672. msgstr ""
  2673. "El formatu de la base de datos nun ye válidu. Si anovaste dende una versión "
  2674. "anterior d'apt, desanicia y recrea la base de datos."
  2675. #: ftparchive/cachedb.cc:101
  2676. #, c-format
  2677. msgid "Unable to open DB file %s: %s"
  2678. msgstr "Nun pudo abrise'l ficheru de BD %s: %s"
  2679. #: ftparchive/cachedb.cc:184 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2680. #: apt-inst/extract.cc:216
  2681. #, c-format
  2682. msgid "Failed to stat %s"
  2683. msgstr "Nun pudo lleese %s"
  2684. #: ftparchive/cachedb.cc:326
  2685. #, fuzzy
  2686. msgid "Failed to read .dsc"
  2687. msgstr "Nun pudo lleese l'enllaz %s"
  2688. #: ftparchive/cachedb.cc:359
  2689. msgid "Archive has no control record"
  2690. msgstr "L'archivu nun tien rexistru de control"
  2691. #: ftparchive/cachedb.cc:522
  2692. msgid "Unable to get a cursor"
  2693. msgstr "Nun pudo algamase un cursor"
  2694. #: ftparchive/writer.cc:104
  2695. #, c-format
  2696. msgid "W: Unable to read directory %s\n"
  2697. msgstr "A: Nun pudo lleese'l direutoriu %s\n"
  2698. #: ftparchive/writer.cc:109
  2699. #, c-format
  2700. msgid "W: Unable to stat %s\n"
  2701. msgstr "A: Nun pudo lleese %s\n"
  2702. #: ftparchive/writer.cc:165
  2703. msgid "E: "
  2704. msgstr "E: "
  2705. #: ftparchive/writer.cc:167
  2706. msgid "W: "
  2707. msgstr "A: "
  2708. #: ftparchive/writer.cc:174
  2709. msgid "E: Errors apply to file "
  2710. msgstr "E: Errores aplicables al ficheru "
  2711. #: ftparchive/writer.cc:192 ftparchive/writer.cc:224
  2712. #, c-format
  2713. msgid "Failed to resolve %s"
  2714. msgstr "Nun pudo resolvese %s"
  2715. #: ftparchive/writer.cc:205
  2716. msgid "Tree walking failed"
  2717. msgstr "Falló'l percorríu pol árbol"
  2718. #: ftparchive/writer.cc:232
  2719. #, c-format
  2720. msgid "Failed to open %s"
  2721. msgstr "Nun pudo abrise %s"
  2722. #: ftparchive/writer.cc:291
  2723. #, c-format
  2724. msgid " DeLink %s [%s]\n"
  2725. msgstr " Desenllazar %s [%s]\n"
  2726. #: ftparchive/writer.cc:299
  2727. #, c-format
  2728. msgid "Failed to readlink %s"
  2729. msgstr "Nun pudo lleese l'enllaz %s"
  2730. #: ftparchive/writer.cc:303
  2731. #, c-format
  2732. msgid "Failed to unlink %s"
  2733. msgstr "Nun pudo desenllazase %s"
  2734. #: ftparchive/writer.cc:311
  2735. #, c-format
  2736. msgid "*** Failed to link %s to %s"
  2737. msgstr "*** Falló enllazar enllazr %s a %s"
  2738. #: ftparchive/writer.cc:321
  2739. #, c-format
  2740. msgid " DeLink limit of %sB hit.\n"
  2741. msgstr " Alcanzose'l llímite of %sB de desenllaz.\n"
  2742. #: ftparchive/writer.cc:427
  2743. msgid "Archive had no package field"
  2744. msgstr "L'archivu nun tien el campu paquetes"
  2745. #: ftparchive/writer.cc:435 ftparchive/writer.cc:704
  2746. #, c-format
  2747. msgid " %s has no override entry\n"
  2748. msgstr " %s nun tien la entrada saltos\n"
  2749. #: ftparchive/writer.cc:500 ftparchive/writer.cc:868
  2750. #, c-format
  2751. msgid " %s maintainer is %s not %s\n"
  2752. msgstr " el curiador de %s ye %s y non %s\n"
  2753. #: ftparchive/writer.cc:718
  2754. #, c-format
  2755. msgid " %s has no source override entry\n"
  2756. msgstr " %s nun tien la entrada saltos de fonte\n"
  2757. #: ftparchive/writer.cc:722
  2758. #, c-format
  2759. msgid " %s has no binary override entry either\n"
  2760. msgstr " %s tampoco nun tiene una entrada binaria de saltos\n"
  2761. #: ftparchive/contents.cc:351 ftparchive/contents.cc:382
  2762. msgid "realloc - Failed to allocate memory"
  2763. msgstr "realloc - Nun pudo allugase memoria"
  2764. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2765. #, c-format
  2766. msgid "Unable to open %s"
  2767. msgstr "Nun pudo abrise %s"
  2768. #. skip spaces
  2769. #. find end of word
  2770. #: ftparchive/override.cc:68
  2771. #, fuzzy, c-format
  2772. msgid "Malformed override %s line %llu (%s)"
  2773. msgstr "Saltu mal formáu %s llinia %lu #1"
  2774. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2775. #, c-format
  2776. msgid "Failed to read the override file %s"
  2777. msgstr "Nun pudo lleese'l ficheru de saltos %s"
  2778. #: ftparchive/override.cc:166
  2779. #, fuzzy, c-format
  2780. msgid "Malformed override %s line %llu #1"
  2781. msgstr "Saltu mal formáu %s llinia %lu #1"
  2782. #: ftparchive/override.cc:178
  2783. #, fuzzy, c-format
  2784. msgid "Malformed override %s line %llu #2"
  2785. msgstr "Saltu mal formáu %s llinia %lu #2"
  2786. #: ftparchive/override.cc:191
  2787. #, fuzzy, c-format
  2788. msgid "Malformed override %s line %llu #3"
  2789. msgstr "Saltu mal formáu %s llinia %lu #3"
  2790. #: ftparchive/multicompress.cc:73
  2791. #, c-format
  2792. msgid "Unknown compression algorithm '%s'"
  2793. msgstr "Algoritmu de compresión desconocíu '%s'"
  2794. #: ftparchive/multicompress.cc:103
  2795. #, c-format
  2796. msgid "Compressed output %s needs a compression set"
  2797. msgstr "La salida comprimida %s necesita un xuegu de compresión"
  2798. #: ftparchive/multicompress.cc:192
  2799. msgid "Failed to create FILE*"
  2800. msgstr "Nun pudo criase FICHERU*"
  2801. #: ftparchive/multicompress.cc:195
  2802. msgid "Failed to fork"
  2803. msgstr "Nun pudo biforcase"
  2804. #: ftparchive/multicompress.cc:209
  2805. msgid "Compress child"
  2806. msgstr "Comprimir fíu"
  2807. #: ftparchive/multicompress.cc:232
  2808. #, c-format
  2809. msgid "Internal error, failed to create %s"
  2810. msgstr "Error internu, nun pudo criase %s"
  2811. #: ftparchive/multicompress.cc:305
  2812. msgid "IO to subprocess/file failed"
  2813. msgstr "Fallu na ES al soprocesu/ficheru"
  2814. #: ftparchive/multicompress.cc:343
  2815. msgid "Failed to read while computing MD5"
  2816. msgstr "Nun pudo lleese al computar MD5"
  2817. #: ftparchive/multicompress.cc:359
  2818. #, c-format
  2819. msgid "Problem unlinking %s"
  2820. msgstr "Problema al desenllazar %s"
  2821. #: ftparchive/multicompress.cc:374 apt-inst/extract.cc:194
  2822. #, c-format
  2823. msgid "Failed to rename %s to %s"
  2824. msgstr "Nun pudo renomase %s como %s"
  2825. #: cmdline/apt-internal-solver.cc:49
  2826. #, fuzzy
  2827. msgid ""
  2828. "Usage: apt-internal-solver\n"
  2829. "\n"
  2830. "apt-internal-solver is an interface to use the current internal\n"
  2831. "like an external resolver for the APT family for debugging or alike\n"
  2832. "\n"
  2833. "Options:\n"
  2834. " -h This help text.\n"
  2835. " -q Loggable output - no progress indicator\n"
  2836. " -c=? Read this configuration file\n"
  2837. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2838. msgstr ""
  2839. "Usu: apt-extracttemplates ficheru1 [ficheru2 ...]\n"
  2840. "\n"
  2841. "apt-extracttemplates ye un preséu pa sacar información de\n"
  2842. "configuración y plantíes de paquetes de debian.\n"
  2843. "\n"
  2844. "Opciones:\n"
  2845. "-h Esti testu d'aida.\n"
  2846. "-t Define'l direutoriu temporal\n"
  2847. "-c=? Llei esti ficheru de configuración\n"
  2848. "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::cache=/"
  2849. "tmp\n"
  2850. #: cmdline/apt-sortpkgs.cc:89
  2851. msgid "Unknown package record!"
  2852. msgstr "¡Rexistru de paquetes desconocíu!"
  2853. #: cmdline/apt-sortpkgs.cc:153
  2854. msgid ""
  2855. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  2856. "\n"
  2857. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  2858. "to indicate what kind of file it is.\n"
  2859. "\n"
  2860. "Options:\n"
  2861. " -h This help text\n"
  2862. " -s Use source file sorting\n"
  2863. " -c=? Read this configuration file\n"
  2864. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2865. msgstr ""
  2866. "Usu: apt-sortpkgs [opciones] ficheru1 [ficheru2 ...]\n"
  2867. "\n"
  2868. "apt-sortpkgs ye un preséu cenciellu pa tresnar ficheros de paquetes.\n"
  2869. "La opción -s úsase pa indicar qué triba de ficheru ye.\n"
  2870. "\n"
  2871. "Opciones:\n"
  2872. "-h Esti testu d'aida.\n"
  2873. "-s Usa ordenamientu de ficheros fonte\n"
  2874. "-c=? Llei esti ficheru de configuración\n"
  2875. "-o=? Afita una opción de configuración arbitraria, p. ej. -o dir::\n"
  2876. "cache=/tmp\n"
  2877. #: apt-inst/filelist.cc:380
  2878. msgid "DropNode called on still linked node"
  2879. msgstr "Llamóse a DropNode nun nodu que ta entá enllazáu"
  2880. #: apt-inst/filelist.cc:412
  2881. msgid "Failed to locate the hash element!"
  2882. msgstr "¡Fallu al atopar l'elementu enllazáu!"
  2883. #: apt-inst/filelist.cc:459
  2884. msgid "Failed to allocate diversion"
  2885. msgstr "Falló al allugar una desvíu"
  2886. #: apt-inst/filelist.cc:464
  2887. msgid "Internal error in AddDiversion"
  2888. msgstr "Fallu internu en AddDiversion"
  2889. #: apt-inst/filelist.cc:477
  2890. #, c-format
  2891. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2892. msgstr "Intentando sobrescribir un desvíu, %s -> %s and %s/%s"
  2893. #: apt-inst/filelist.cc:506
  2894. #, c-format
  2895. msgid "Double add of diversion %s -> %s"
  2896. msgstr "Doble suma de desvíu %s -> %s"
  2897. #: apt-inst/filelist.cc:549
  2898. #, c-format
  2899. msgid "Duplicate conf file %s/%s"
  2900. msgstr "Ficheru de configuración duplicáu %s/%s"
  2901. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  2902. #, c-format
  2903. msgid "The path %s is too long"
  2904. msgstr "La trayeutoria %s ye enforma llarga"
  2905. #: apt-inst/extract.cc:132
  2906. #, c-format
  2907. msgid "Unpacking %s more than once"
  2908. msgstr "Desempaquetando %s más d'una vegada"
  2909. #: apt-inst/extract.cc:142
  2910. #, c-format
  2911. msgid "The directory %s is diverted"
  2912. msgstr "El direutorio %s ta desviáu"
  2913. #: apt-inst/extract.cc:152
  2914. #, c-format
  2915. msgid "The package is trying to write to the diversion target %s/%s"
  2916. msgstr "El paquete ta tentando escribir nel oxetivu desviáu %s/%s"
  2917. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  2918. msgid "The diversion path is too long"
  2919. msgstr "La trayeutoria de desviación ye enforma llarga"
  2920. #: apt-inst/extract.cc:249
  2921. #, c-format
  2922. msgid "The directory %s is being replaced by a non-directory"
  2923. msgstr "El direutoriu %s ta reemplazándose por un non-direutoriu"
  2924. #: apt-inst/extract.cc:289
  2925. msgid "Failed to locate node in its hash bucket"
  2926. msgstr "Fallu al atopar el nodu nel so bote d'enllaz"
  2927. #: apt-inst/extract.cc:293
  2928. msgid "The path is too long"
  2929. msgstr "La trayeutoria ye perllarga"
  2930. #: apt-inst/extract.cc:421
  2931. #, c-format
  2932. msgid "Overwrite package match with no version for %s"
  2933. msgstr "Sobreescribiendo concordancia del paquete ensin versión pa %s"
  2934. #: apt-inst/extract.cc:438
  2935. #, c-format
  2936. msgid "File %s/%s overwrites the one in the package %s"
  2937. msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s"
  2938. #: apt-inst/extract.cc:498
  2939. #, c-format
  2940. msgid "Unable to stat %s"
  2941. msgstr "Nun ye a lleer %s"
  2942. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  2943. #, c-format
  2944. msgid "Failed to write file %s"
  2945. msgstr "Falló la escritura nel ficheru %s"
  2946. #: apt-inst/dirstream.cc:105
  2947. #, c-format
  2948. msgid "Failed to close file %s"
  2949. msgstr "Falló al pesllar el ficheru %s"
  2950. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  2951. #: apt-inst/deb/debfile.cc:63
  2952. #, c-format
  2953. msgid "This is not a valid DEB archive, missing '%s' member"
  2954. msgstr "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s'"
  2955. #: apt-inst/deb/debfile.cc:132
  2956. #, c-format
  2957. msgid "Internal error, could not locate member %s"
  2958. msgstr "Error internu, nun se pue atopar el miembru %s"
  2959. #: apt-inst/deb/debfile.cc:227
  2960. msgid "Unparsable control file"
  2961. msgstr "Ficheru de control inanalizable"
  2962. #: apt-inst/contrib/arfile.cc:76
  2963. msgid "Invalid archive signature"
  2964. msgstr "Robla del ficheru inválida"
  2965. #: apt-inst/contrib/arfile.cc:84
  2966. msgid "Error reading archive member header"
  2967. msgstr "Fallu al lleer la testera de miembru del ficheru"
  2968. #: apt-inst/contrib/arfile.cc:96
  2969. #, c-format
  2970. msgid "Invalid archive member header %s"
  2971. msgstr "Testera de miembru del archivu %s inválida"
  2972. #: apt-inst/contrib/arfile.cc:108
  2973. msgid "Invalid archive member header"
  2974. msgstr "Testera de miembru del ficheru inválida"
  2975. #: apt-inst/contrib/arfile.cc:137
  2976. msgid "Archive is too short"
  2977. msgstr "El ficheru ye perpequeñu"
  2978. #: apt-inst/contrib/arfile.cc:141
  2979. msgid "Failed to read the archive headers"
  2980. msgstr "Falló al lleer les testeres del ficheru"
  2981. #: apt-inst/contrib/extracttar.cc:123
  2982. msgid "Failed to create pipes"
  2983. msgstr "Fallu al crear les tuberíes"
  2984. #: apt-inst/contrib/extracttar.cc:150
  2985. msgid "Failed to exec gzip "
  2986. msgstr "Fallu al executar gzip "
  2987. #: apt-inst/contrib/extracttar.cc:187 apt-inst/contrib/extracttar.cc:217
  2988. msgid "Corrupted archive"
  2989. msgstr "Ficheru tollíu"
  2990. #: apt-inst/contrib/extracttar.cc:202
  2991. msgid "Tar checksum failed, archive corrupted"
  2992. msgstr "Falló la suma de control de tar, ficheru tollíu"
  2993. #: apt-inst/contrib/extracttar.cc:307
  2994. #, c-format
  2995. msgid "Unknown TAR header type %u, member %s"
  2996. msgstr "Testera del TAR triba %u desconocida, miembru %s"
  2997. #, fuzzy
  2998. #~ msgid "Internal error, Upgrade broke stuff"
  2999. #~ msgstr "Error internu, AllUpgrade rompió coses"
  3000. #~ msgid "%s not a valid DEB package."
  3001. #~ msgstr "%s nun ye un paquete DEB válidu."
  3002. #~ msgid ""
  3003. #~ "Using CD-ROM mount point %s\n"
  3004. #~ "Mounting CD-ROM\n"
  3005. #~ msgstr ""
  3006. #~ "Usando el puntu de montaxe de CD-ROM %s\n"
  3007. #~ "Montando el CD-ROM\n"
  3008. #~ msgid ""
  3009. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3010. #~ "seems to be corrupt."
  3011. #~ msgstr ""
  3012. #~ "Nun pudo parchease %s con mmap y col usu de la operación de ficheru - el "
  3013. #~ "parche parez corruptu."
  3014. #~ msgid ""
  3015. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3016. #~ "seems to be corrupt."
  3017. #~ msgstr ""
  3018. #~ "Nun pudo parchease %s con mmap (pero nun ye un fallu especificu de mmap) "
  3019. #~ "- el parche parez corruptu."
  3020. #~ msgid "Note, selecting '%s' for task '%s'\n"
  3021. #~ msgstr "Nota, escoyendo '%s' pa la xera '%s'\n"
  3022. #~ msgid "Note, selecting '%s' for regex '%s'\n"
  3023. #~ msgstr "Nota, escoyendo '%s' pa regex '%s'\n"
  3024. #~ msgid "Package %s is a virtual package provided by:\n"
  3025. #~ msgstr "El paquete %s ye un paquete virtual ufríu por:\n"
  3026. #~ msgid " [Not candidate version]"
  3027. #~ msgstr " [Nun ye versión candidata]"
  3028. #~ msgid "You should explicitly select one to install."
  3029. #~ msgstr "Has d'escoyer esplícitamente unu pa instalar."
  3030. #~ msgid ""
  3031. #~ "Package %s is not available, but is referred to by another package.\n"
  3032. #~ "This may mean that the package is missing, has been obsoleted, or\n"
  3033. #~ "is only available from another source\n"
  3034. #~ msgstr ""
  3035. #~ "El paquete %s nun ta disponible, otru paquete refierse a él.\n"
  3036. #~ "Esto puede significar que falta el paquete, ta arrumbáu, o sólo\n"
  3037. #~ "ta disponible dende otra fonte\n"
  3038. #~ msgid "However the following packages replace it:"
  3039. #~ msgstr "Sicasí, los siguientes paquetes reemplacenlu:"
  3040. #~ msgid "Package '%s' has no installation candidate"
  3041. #~ msgstr "El paquete '%s' nun tien candidatu pa instalación"
  3042. #~ msgid "Virtual packages like '%s' can't be removed\n"
  3043. #~ msgstr "Los paquetes virtuales como '%s' nun pueden desaniciase\n"
  3044. #~ msgid "Note, selecting '%s' instead of '%s'\n"
  3045. #~ msgstr "Nota, escoyendo %s nel llugar de %s\n"
  3046. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3047. #~ msgstr "Inorar release destín non disponible '%s' pal paquete '%s'"
  3048. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3049. #~ msgstr ""
  3050. #~ "Esti nun ye un ficheru DEB válidu, falta'l miembru '%s', '%s' o '%s'"
  3051. #~ msgid "MD5Sum mismatch"
  3052. #~ msgstr "La suma MD5 nun concasa"
  3053. #~ msgid ""
  3054. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3055. #~ "need to manually fix this package."
  3056. #~ msgstr ""
  3057. #~ "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que "
  3058. #~ "necesites iguar manualmente esti paquete"
  3059. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3060. #~ msgstr ""
  3061. #~ "Nun puede escribise nel rexistru, falló openpty() (¿/dev/pts nun ta "
  3062. #~ "montáu?)\n"
  3063. #~ msgid "Skipping nonexistent file %s"
  3064. #~ msgstr "Saltando'l ficheru non esistente %s"
  3065. #~ msgid "Failed to remove %s"
  3066. #~ msgstr "Nun ye a desaniciar %s"
  3067. #~ msgid "Unable to create %s"
  3068. #~ msgstr "Nun ye a crear %s"
  3069. #~ msgid "Failed to stat %sinfo"
  3070. #~ msgstr "Nun ye a lleer %s"
  3071. #~ msgid "The info and temp directories need to be on the same filesystem"
  3072. #~ msgstr ""
  3073. #~ "Los direutorios info y temp tienen de tar nel mesmu sistema de ficheros"
  3074. #~ msgid "Failed to change to the admin dir %sinfo"
  3075. #~ msgstr "Fallu al camudar al direutoriu d'alministración %sinfo"
  3076. #~ msgid "Internal error getting a package name"
  3077. #~ msgstr "Fallu internu al obtener un Nome de Paquete"
  3078. #~ msgid "Reading file listing"
  3079. #~ msgstr "Lleendo llistáu de ficheros"
  3080. #~ msgid ""
  3081. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3082. #~ "then make it empty and immediately re-install the same version of the "
  3083. #~ "package!"
  3084. #~ msgstr ""
  3085. #~ "Nun pude abrir el ficheru de llista '%sinfo/%s'. ¡Si nun yes a "
  3086. #~ "restablecer esti ficheru entós crea ún baleru y darréu reinstala la mesma "
  3087. #~ "versión del paquete!"
  3088. #~ msgid "Failed reading the list file %sinfo/%s"
  3089. #~ msgstr "Fallu al lleer el ficheru de llista %sinfo/%s"
  3090. #~ msgid "Internal error getting a node"
  3091. #~ msgstr "Fallu internu al obtener un nodu"
  3092. #~ msgid "Failed to open the diversions file %sdiversions"
  3093. #~ msgstr "Fallu al abrir el ficheru de desviación %sdiversions"
  3094. #~ msgid "The diversion file is corrupted"
  3095. #~ msgstr "El ficheru de desviación ta tollíu"
  3096. #~ msgid "Invalid line in the diversion file: %s"
  3097. #~ msgstr "Llinia inválida nel ficheru de desviación: %s"
  3098. #~ msgid "Internal error adding a diversion"
  3099. #~ msgstr "Fallu internu al amestar una desviación"
  3100. #~ msgid "The pkg cache must be initialized first"
  3101. #~ msgstr "El caché del paquete tien d'entamase primero"
  3102. #~ msgid "Failed to find a Package: header, offset %lu"
  3103. #~ msgstr "Fallu al atopar un paquete: Testera, desplazamientu %lu"
  3104. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3105. #~ msgstr "Estaya mala del ConfFile nel ficheru d'estñau. Desplazamientu %lu"
  3106. #~ msgid "Error parsing MD5. Offset %lu"
  3107. #~ msgstr "Fallu al lleer Md5. Desplazamientu %lu"
  3108. #~ msgid "Couldn't change to %s"
  3109. #~ msgstr "Nun fui a camudar a %s"
  3110. #~ msgid "Failed to locate a valid control file"
  3111. #~ msgstr "Nun fui a atopar un ficheru de control válidu"
  3112. #~ msgid "Couldn't open pipe for %s"
  3113. #~ msgstr "Nun se pudo abrir una tubería pa %s"
  3114. #~ msgid "Read error from %s process"
  3115. #~ msgstr "Fallu de llectura dende'l procesu %s"
  3116. #~ msgid "Got a single header line over %u chars"
  3117. #~ msgstr "Obtúvose una sola llinia de testera penriba de %u carauteres"
  3118. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3119. #~ msgstr "Nota: Esto faise automáticamente y baxo demanda por dpkg."
  3120. #~ msgid "Malformed override %s line %lu #1"
  3121. #~ msgstr "Saltu mal formáu %s llinia %lu #1"
  3122. #~ msgid "Malformed override %s line %lu #2"
  3123. #~ msgstr "Saltu mal formáu %s llinia %lu #2"
  3124. #~ msgid "Malformed override %s line %lu #3"
  3125. #~ msgstr "Saltu mal formáu %s llinia %lu #3"
  3126. #~ msgid "decompressor"
  3127. #~ msgstr "descompresor"
  3128. #~ msgid "read, still have %lu to read but none left"
  3129. #~ msgstr "lleíos, entá tenía de lleer %lu pero nun queda nada"
  3130. #~ msgid "write, still have %lu to write but couldn't"
  3131. #~ msgstr "escritos, entá tenía d'escribir %lu pero nun pudo facerse"
  3132. #~ msgid ""
  3133. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3134. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3135. #~ msgstr ""
  3136. #~ "Nun pudó facese la configuración inmediatamente nel desempaquetáu '%s'. "
  3137. #~ "Por favor, mira man 5 apt.conf embaxo APT::Immediate-Configure for "
  3138. #~ "details."
  3139. #~ msgid "Error occurred while processing %s (NewPackage)"
  3140. #~ msgstr "Hebo un error al procesar %s (NewPackage)"
  3141. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3142. #~ msgstr "Hebo un error al procesar %s (UsePackage1)"
  3143. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3144. #~ msgstr "Hebo un error al procesar %s (NewFileDesc1)"
  3145. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3146. #~ msgstr "Hebo un error al procesar %s (UsePackage2)"
  3147. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3148. #~ msgstr "Hebo un error al procesar %s (NewFileVer1)"
  3149. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3150. #~ msgstr "Hebo un error al procesar %s (NewVersion%d)"
  3151. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3152. #~ msgstr "Hebo un error al procesar %s (UsePackage3)"
  3153. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3154. #~ msgstr "Hebo un error al procesar %s (NewFileDesc2)"
  3155. #~ msgid "Error occurred while processing %s (FindPkg)"
  3156. #~ msgstr "Hebo un error al procesar %s (FindPkg)"
  3157. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3158. #~ msgstr "Hebo un error al procesar %s (CollectFileProvides)"
  3159. #~ msgid "Internal error, could not locate member"
  3160. #~ msgstr "Fallu internu, nun fui a atopar el miembru"
  3161. #~ msgid "Internal error, group '%s' has no installable pseudo package"
  3162. #~ msgstr "Fallu internu, grupu '%s' nun tien paquete pseudo instalable"
  3163. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3164. #~ msgstr "El ficheru release espiró, inorando %s (nun válidu dende %s)"
  3165. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3166. #~ msgstr ""
  3167. #~ "E: Llista d'argumentos d'Acquire::gpgv::Options demasiao llarga. Colando."
  3168. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3169. #~ msgstr "Hebo un error al procesar %s (NewVersion2)"
  3170. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3171. #~ msgstr "Llinia %u mal formada na llista d'oríxenes %s (id del proveedor)"
  3172. #~ msgid "Couldn't access keyring: '%s'"
  3173. #~ msgstr "Nun se pudo acceder al aniellu de claves '%s'"
  3174. #~ msgid "Could not patch file"
  3175. #~ msgstr "Nun fui quien a parchiar el ficheru"
  3176. #~ msgid " %4i %s\n"
  3177. #~ msgstr " %4i %s\n"
  3178. #~ msgid "No source package '%s' picking '%s' instead\n"
  3179. #~ msgstr "Nenguna fonte de paquetes'% s' esbillada '% s' ehí\n"
  3180. #~ msgid "%4i %s\n"
  3181. #~ msgstr "%4i %s\n"
  3182. #~ msgid "Processing triggers for %s"
  3183. #~ msgstr "Procesando disparadores pa %s"