ast.po 110 KB

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