ast.po 110 KB

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