ast.po 117 KB

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