ast.po 119 KB

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