ast.po 117 KB

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