gl.po 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158
  1. # translation of apt_po_gl.po to galician
  2. # Galician translation of apt
  3. # This file is put in the public domain.
  4. #
  5. # Jacobo Tarrío <jtarrio@debian.org>, 2005, 2007, 2008.
  6. # mvillarino <mvillarino@users.sourceforge.net>, 2008.
  7. # Miguel Anxo Bouzada <mbouzada@gmail.com>, 2011.
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: apt 1.0.5\n"
  12. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  13. "POT-Creation-Date: 2015-10-27 10:30+0100\n"
  14. "PO-Revision-Date: 2011-05-12 15:28+0100\n"
  15. "Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
  16. "Language-Team: galician <proxecto@trasno.net>\n"
  17. "Language: gl\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "X-Generator: KBabel 1.11.4\n"
  22. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  23. "X-Poedit-Language: Galician\n"
  24. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  25. #: apt-private/acqprogress.cc
  26. #, c-format
  27. msgid "Hit:%lu %s"
  28. msgstr "Teño:%lu %s"
  29. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  30. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  31. #: apt-private/acqprogress.cc
  32. #, c-format
  33. msgid "Get:%lu %s"
  34. msgstr "Rcb:%lu %s"
  35. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  36. #. which failed to download, but the error is ignored (compare "Err:")
  37. #: apt-private/acqprogress.cc
  38. #, c-format
  39. msgid "Ign:%lu %s"
  40. msgstr ""
  41. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  42. #. which failed to download and the error is critical (compare "Ign:")
  43. #: apt-private/acqprogress.cc
  44. #, c-format
  45. msgid "Err:%lu %s"
  46. msgstr ""
  47. #: apt-private/acqprogress.cc
  48. #, c-format
  49. msgid "Fetched %sB in %s (%sB/s)\n"
  50. msgstr "Obtivéronse %sB en %s (%sB/s)\n"
  51. #: apt-private/acqprogress.cc
  52. msgid " [Working]"
  53. msgstr " [Traballando]"
  54. #: apt-private/acqprogress.cc
  55. #, fuzzy, c-format
  56. msgid ""
  57. "Media change: please insert the disc labeled\n"
  58. " '%s'\n"
  59. "in the drive '%s' and press [Enter]\n"
  60. msgstr ""
  61. "Cambio de soporte: introduza o disco etiquetado\n"
  62. " «%s»\n"
  63. "na unidade «%s» e prema Intro\n"
  64. #: apt-private/private-cachefile.cc
  65. msgid "Correcting dependencies..."
  66. msgstr "Corrixindo as dependencias..."
  67. #: apt-private/private-cachefile.cc
  68. msgid " failed."
  69. msgstr " fallou."
  70. #: apt-private/private-cachefile.cc
  71. msgid "Unable to correct dependencies"
  72. msgstr "Non foi posíbel corrixir as dependencias."
  73. #: apt-private/private-cachefile.cc
  74. msgid "Unable to minimize the upgrade set"
  75. msgstr "Non foi posíbel minimizar o conxunto de anovacións"
  76. #: apt-private/private-cachefile.cc
  77. msgid " Done"
  78. msgstr " Feito"
  79. #: apt-private/private-cachefile.cc
  80. msgid "You might want to run 'apt-get -f install' to correct these."
  81. msgstr "Pode querer executar «apt-get -f install» para corrixilos."
  82. #: apt-private/private-cachefile.cc
  83. msgid "Unmet dependencies. Try using -f."
  84. msgstr "Dependencias incumpridas. Probe a empregar -f."
  85. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  86. msgid "Sorting"
  87. msgstr ""
  88. #: apt-private/private-cacheset.cc
  89. #, c-format
  90. msgid "Note, selecting '%s' for task '%s'\n"
  91. msgstr "Nota, seleccione «%s» para a tarefa «%s»\n"
  92. #: apt-private/private-cacheset.cc
  93. #, fuzzy, c-format
  94. msgid "Note, selecting '%s' for glob '%s'\n"
  95. msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
  96. #: apt-private/private-cacheset.cc
  97. #, c-format
  98. msgid "Note, selecting '%s' for regex '%s'\n"
  99. msgstr "Nota, seleccione «%s» para a expresión regular «%s»\n"
  100. #: apt-private/private-cacheset.cc
  101. #, c-format
  102. msgid "Package %s is a virtual package provided by:\n"
  103. msgstr "O paquete %s é un paquete virtual fornecido por:\n"
  104. #: apt-private/private-cacheset.cc
  105. #, fuzzy
  106. msgid " [Installed]"
  107. msgstr " [Instalado]"
  108. #: apt-private/private-cacheset.cc
  109. msgid " [Not candidate version]"
  110. msgstr " [Non hai unha versión candidata]"
  111. #: apt-private/private-cacheset.cc
  112. msgid "You should explicitly select one to install."
  113. msgstr "Debería escoller un para instalar."
  114. #: apt-private/private-cacheset.cc
  115. #, c-format
  116. msgid ""
  117. "Package %s is not available, but is referred to by another package.\n"
  118. "This may mean that the package is missing, has been obsoleted, or\n"
  119. "is only available from another source\n"
  120. msgstr ""
  121. "O paquete %s non está dispoñíbel, mais outro paquete fai referencia a el.\n"
  122. "Isto pode significar que falta o paquete, está obsoleto ou só está\n"
  123. "dispoñíbel noutra fonte.\n"
  124. #: apt-private/private-cacheset.cc
  125. msgid "However the following packages replace it:"
  126. msgstr "Porén, os seguintes paquetes substitúeno:"
  127. #: apt-private/private-cacheset.cc
  128. #, c-format
  129. msgid "Package '%s' has no installation candidate"
  130. msgstr "O paquete «%s» non ten unha instalación candidata"
  131. #: apt-private/private-cacheset.cc
  132. #, c-format
  133. msgid "Virtual packages like '%s' can't be removed\n"
  134. msgstr "Non se poden retirar os paquetes virtuais como «%s»\n"
  135. #. TRANSLATORS: Note, this is not an interactive question
  136. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  137. #, fuzzy, c-format
  138. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  139. msgstr "O paquete %s non está instalado, así que non foi retirado\n"
  140. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  141. #, fuzzy, c-format
  142. msgid "Package '%s' is not installed, so not removed\n"
  143. msgstr "O paquete %s non está instalado, así que non foi retirado\n"
  144. #: apt-private/private-cacheset.cc
  145. #, c-format
  146. msgid "Note, selecting '%s' instead of '%s'\n"
  147. msgstr "Nota, seleccione «%s» no canto de «%s»\n"
  148. #: apt-private/private-cmndline.cc
  149. msgid "Most used commands:"
  150. msgstr ""
  151. #: apt-private/private-cmndline.cc
  152. #, c-format
  153. msgid "See %s for more information about the available commands."
  154. msgstr ""
  155. #: apt-private/private-cmndline.cc
  156. msgid ""
  157. "Configuration options and syntax is detailed in apt.conf(5).\n"
  158. "Information about how to configure sources can be found in sources.list(5).\n"
  159. "Package and version choices can be expressed via apt_preferences(5).\n"
  160. "Security details are available in apt-secure(8).\n"
  161. msgstr ""
  162. #: apt-private/private-cmndline.cc
  163. msgid "This APT has Super Cow Powers."
  164. msgstr "Este APT ten poderes da Super Vaca."
  165. #: apt-private/private-cmndline.cc
  166. msgid "This APT helper has Super Meep Powers."
  167. msgstr ""
  168. #: apt-private/private-depends.cc apt-private/private-show.cc
  169. #: cmdline/apt-mark.cc
  170. msgid "No packages found"
  171. msgstr "Non se atopou ningún paquete"
  172. #: apt-private/private-download.cc
  173. msgid "WARNING: The following packages cannot be authenticated!"
  174. msgstr "AVISO: Non se poden autenticar os seguintes paquetes!"
  175. #: apt-private/private-download.cc
  176. msgid "Authentication warning overridden.\n"
  177. msgstr "Ignórase o aviso de autenticación.\n"
  178. #: apt-private/private-download.cc
  179. msgid "Some packages could not be authenticated"
  180. msgstr "Non foi posíbel autenticar algúns paquetes"
  181. #: apt-private/private-download.cc
  182. msgid "Install these packages without verification?"
  183. msgstr "Instalar estes paquetes sen verificación?"
  184. #: apt-private/private-download.cc apt-private/private-install.cc
  185. msgid ""
  186. "--force-yes is deprecated, use one of the options starting with --allow "
  187. "instead."
  188. msgstr ""
  189. #: apt-private/private-download.cc
  190. #, fuzzy
  191. msgid ""
  192. "There were unauthenticated packages and -y was used without --allow-"
  193. "unauthenticated"
  194. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  195. #: apt-private/private-download.cc
  196. #, c-format
  197. msgid "Failed to fetch %s %s\n"
  198. msgstr "Non foi posíbel obter %s %s\n"
  199. #: apt-private/private-download.cc
  200. #, c-format
  201. msgid "Couldn't determine free space in %s"
  202. msgstr "Non foi posíbel determinar o espazo libre en %s"
  203. #: apt-private/private-download.cc
  204. #, c-format
  205. msgid "You don't have enough free space in %s."
  206. msgstr "Non hai espazo libre abondo en %s."
  207. #: apt-private/private-download.cc
  208. msgid "Unable to lock the download directory"
  209. msgstr "Non é posíbel bloquear o directorio de descargas"
  210. #: apt-private/private-install.cc
  211. msgid "Internal error, InstallPackages was called with broken packages!"
  212. msgstr ""
  213. "Produciuse un erro interno, chamouse a InstallPackages con paquetes "
  214. "estragados."
  215. #: apt-private/private-install.cc
  216. msgid "Packages need to be removed but remove is disabled."
  217. msgstr "Hai que retirar paquetes mais o retirado está desactivado."
  218. #: apt-private/private-install.cc
  219. #, fuzzy
  220. msgid ""
  221. "Essential packages were removed and -y was used without --allow-remove-"
  222. "essential."
  223. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  224. #: apt-private/private-install.cc
  225. #, fuzzy
  226. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  227. msgstr "Xurdiron problemas e empregouse -y sen --force-yes"
  228. #: apt-private/private-install.cc
  229. msgid ""
  230. "Held packages were changed and -y was used without --allow-change-held-"
  231. "packages."
  232. msgstr ""
  233. #: apt-private/private-install.cc
  234. msgid "Internal error, Ordering didn't finish"
  235. msgstr "Produciuse un erro interno; non rematou a ordenación"
  236. #: apt-private/private-install.cc
  237. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  238. msgstr ""
  239. "Que estraño... Os tamaños non coinciden; envíe un correo-e a apt@packages."
  240. "debian.org"
  241. #. TRANSLATOR: The required space between number and unit is already included
  242. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  243. #: apt-private/private-install.cc
  244. #, c-format
  245. msgid "Need to get %sB/%sB of archives.\n"
  246. msgstr "Ten que recibir %sB/%sB de arquivos.\n"
  247. #. TRANSLATOR: The required space between number and unit is already included
  248. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  249. #: apt-private/private-install.cc
  250. #, c-format
  251. msgid "Need to get %sB of archives.\n"
  252. msgstr "Ten que recibir %sB de arquivos.\n"
  253. #. TRANSLATOR: The required space between number and unit is already included
  254. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  255. #: apt-private/private-install.cc
  256. #, c-format
  257. msgid "After this operation, %sB of additional disk space will be used.\n"
  258. msgstr "Despois desta operación ocuparanse %sB de disco adicionais.\n"
  259. #. TRANSLATOR: The required space between number and unit is already included
  260. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  261. #: apt-private/private-install.cc
  262. #, c-format
  263. msgid "After this operation, %sB disk space will be freed.\n"
  264. msgstr "Despois desta operación liberaranse %sB de espazo de disco.\n"
  265. #: apt-private/private-install.cc
  266. msgid "Trivial Only specified but this is not a trivial operation."
  267. msgstr "Especificouse «Só triviais» mais esta non é unha operación trivial."
  268. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  269. #. careful with hard to type or special characters (like non-breaking spaces)
  270. #: apt-private/private-install.cc
  271. msgid "Yes, do as I say!"
  272. msgstr "Si, fai o que digo!"
  273. #: apt-private/private-install.cc
  274. #, c-format
  275. msgid ""
  276. "You are about to do something potentially harmful.\n"
  277. "To continue type in the phrase '%s'\n"
  278. " ?] "
  279. msgstr ""
  280. "Está a piques de facer algo perigoso.\n"
  281. "Para continuar escriba a frase «%s»\n"
  282. " ?] "
  283. #: apt-private/private-install.cc
  284. msgid "Abort."
  285. msgstr "Interromper."
  286. #: apt-private/private-install.cc
  287. msgid "Do you want to continue?"
  288. msgstr "Quere continuar?"
  289. #: apt-private/private-install.cc
  290. msgid "Some files failed to download"
  291. msgstr "Non foi posíbel descargar algúns ficheiros"
  292. #: apt-private/private-install.cc apt-private/private-source.cc
  293. msgid "Download complete and in download only mode"
  294. msgstr "Completouse a descarga no modo de só descargas"
  295. #: apt-private/private-install.cc
  296. msgid ""
  297. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  298. "missing?"
  299. msgstr ""
  300. "Non foi posíbel obter algúns arquivos; probe con apt-get update ou --fix-"
  301. "missing."
  302. #: apt-private/private-install.cc
  303. msgid "--fix-missing and media swapping is not currently supported"
  304. msgstr ""
  305. "O emprego conxunto de --fix-missing e intercambio de discos non está admitido"
  306. #: apt-private/private-install.cc
  307. msgid "Unable to correct missing packages."
  308. msgstr "Non é posíbel corrixir os paquetes non dispoñíbeis."
  309. #: apt-private/private-install.cc
  310. msgid "Aborting install."
  311. msgstr "Interrompendo a instalación."
  312. #: apt-private/private-install.cc
  313. msgid ""
  314. "The following package disappeared from your system as\n"
  315. "all files have been overwritten by other packages:"
  316. msgid_plural ""
  317. "The following packages disappeared from your system as\n"
  318. "all files have been overwritten by other packages:"
  319. msgstr[0] ""
  320. "O seguinte paquete desapareceu do seu sistema e todos os \n"
  321. "ficheiros serán sobrescritos por outros paquetes:"
  322. msgstr[1] ""
  323. "Os seguintes paquetes desapareceron do seu sistema e todos os \n"
  324. "ficheiros serán sobrescritos por outros paquetes:"
  325. #: apt-private/private-install.cc
  326. msgid "Note: This is done automatically and on purpose by dpkg."
  327. msgstr "Nota: Isto será feito automaticamente por dpkg."
  328. #: apt-private/private-install.cc
  329. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  330. msgstr ""
  331. "Non se agarda que eliminemos cousas, non se pode iniciar o Retirado "
  332. "automático"
  333. #: apt-private/private-install.cc
  334. msgid ""
  335. "Hmm, seems like the AutoRemover destroyed something which really\n"
  336. "shouldn't happen. Please file a bug report against apt."
  337. msgstr ""
  338. "Vaia, semella que o Retirado automático destruíu algo que realmente\n"
  339. "non debería ter feito. Informe deste erro de apt."
  340. #.
  341. #. if (Packages == 1)
  342. #. {
  343. #. c1out << std::endl;
  344. #. c1out <<
  345. #. _("Since you only requested a single operation it is extremely likely that\n"
  346. #. "the package is simply not installable and a bug report against\n"
  347. #. "that package should be filed.") << std::endl;
  348. #. }
  349. #.
  350. #: apt-private/private-install.cc
  351. msgid "The following information may help to resolve the situation:"
  352. msgstr "A seguinte información pode axudar a solucionar a situación:"
  353. #: apt-private/private-install.cc
  354. msgid "Internal Error, AutoRemover broke stuff"
  355. msgstr "Produciuse un erro interno, o Retirado automático estragou cousas"
  356. #: apt-private/private-install.cc
  357. msgid ""
  358. "The following package was automatically installed and is no longer required:"
  359. msgid_plural ""
  360. "The following packages were automatically installed and are no longer "
  361. "required:"
  362. msgstr[0] ""
  363. "O seguinte paquete foi instalado automaticamente e xa non é necesario:"
  364. msgstr[1] ""
  365. "Os seguintes paquetes foron instalados automaticamente e xa non son "
  366. "necesarios:"
  367. #: apt-private/private-install.cc
  368. #, c-format
  369. msgid "%lu package was automatically installed and is no longer required.\n"
  370. msgid_plural ""
  371. "%lu packages were automatically installed and are no longer required.\n"
  372. msgstr[0] "%lu paquete foi instalado automaticamente e xa non é necesario.\n"
  373. msgstr[1] ""
  374. "%lu paquetes foron instalados automaticamente e xa non son necesarios.\n"
  375. #: apt-private/private-install.cc
  376. #, fuzzy, c-format
  377. msgid "Use '%s' to remove it."
  378. msgid_plural "Use '%s' to remove them."
  379. msgstr[0] "Empregue «%s» para eliminalos."
  380. msgstr[1] "Empregue «%s» para eliminalos."
  381. #: apt-private/private-install.cc
  382. msgid "You might want to run 'apt-get -f install' to correct these:"
  383. msgstr "Pode querer executar «apt-get -f install» para corrixir isto:"
  384. #: apt-private/private-install.cc
  385. msgid ""
  386. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  387. "solution)."
  388. msgstr ""
  389. "Dependencias incumpridas. Probe «apt-get -f install» sen paquetes (ou "
  390. "especifique unha solución)."
  391. #: apt-private/private-install.cc
  392. msgid ""
  393. "Some packages could not be installed. This may mean that you have\n"
  394. "requested an impossible situation or if you are using the unstable\n"
  395. "distribution that some required packages have not yet been created\n"
  396. "or been moved out of Incoming."
  397. msgstr ""
  398. "Non foi posíbel instalar algúns paquetes. Isto pode significar que "
  399. "solicitou\n"
  400. "unha situación imposíbel ou, se emprega a distribución inestábel, que\n"
  401. "algúns paquetes solicitados aínda non se creasen ou que se movesen da "
  402. "entrada."
  403. #: apt-private/private-install.cc
  404. msgid "Broken packages"
  405. msgstr "Paquetes estragados"
  406. #: apt-private/private-install.cc
  407. #, fuzzy
  408. msgid "The following additional packages will be installed:"
  409. msgstr "Instalaranse os seguintes paquetes extra:"
  410. #: apt-private/private-install.cc
  411. msgid "Suggested packages:"
  412. msgstr "Paquetes suxeridos:"
  413. #: apt-private/private-install.cc
  414. msgid "Recommended packages:"
  415. msgstr "Paquetes recomendados:"
  416. #: apt-private/private-install.cc
  417. #, c-format
  418. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  419. msgstr "Omítese %s, xa está instalado e non se especificou a anovación.\n"
  420. #: apt-private/private-install.cc
  421. #, c-format
  422. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  423. msgstr "Omitindo %s, non está instalado e só se solicitaron as anovacións.\n"
  424. #: apt-private/private-install.cc
  425. #, c-format
  426. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  427. msgstr "A reinstalación de %s non é posíbel, non se pode descargar.\n"
  428. #. TRANSLATORS: First string is package name, second is version
  429. #: apt-private/private-install.cc
  430. #, fuzzy, c-format
  431. msgid "%s is already the newest version (%s).\n"
  432. msgstr "%s xa é a versión máis recente.\n"
  433. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  434. #, c-format
  435. msgid "%s set to manually installed.\n"
  436. msgstr "%s cambiado a instalado manualmente.\n"
  437. #: apt-private/private-install.cc
  438. #, c-format
  439. msgid "Selected version '%s' (%s) for '%s'\n"
  440. msgstr "Versión seleccionada «%s» (%s) para «%s»\n"
  441. #: apt-private/private-install.cc
  442. #, c-format
  443. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  444. msgstr "Versión seleccionada «%s» (%s) para «%s» xa que «%s»\n"
  445. #: apt-private/private-list.cc
  446. msgid "Listing"
  447. msgstr ""
  448. #: apt-private/private-list.cc
  449. #, c-format
  450. msgid "There is %i additional version. Please use the '-a' switch to see it"
  451. msgid_plural ""
  452. "There are %i additional versions. Please use the '-a' switch to see them."
  453. msgstr[0] ""
  454. msgstr[1] ""
  455. #: apt-private/private-main.cc
  456. msgid ""
  457. "NOTE: This is only a simulation!\n"
  458. " apt-get needs root privileges for real execution.\n"
  459. " Keep also in mind that locking is deactivated,\n"
  460. " so don't depend on the relevance to the real current situation!"
  461. msgstr ""
  462. "NOTA: Isto é só unha simulación!\n"
  463. " apt-get precisa de privilexios de administrador para executarse "
  464. "realmente.\n"
  465. " Lembre tamén que o bloqueo está desactivado,\n"
  466. " polo que non debe depender da relevancia da situación actual real."
  467. #: apt-private/private-output.cc apt-private/private-show.cc
  468. msgid "unknown"
  469. msgstr ""
  470. #: apt-private/private-output.cc
  471. #, fuzzy, c-format
  472. msgid "[installed,upgradable to: %s]"
  473. msgstr " [Instalado]"
  474. #: apt-private/private-output.cc
  475. #, fuzzy
  476. msgid "[installed,local]"
  477. msgstr " [Instalado]"
  478. #: apt-private/private-output.cc
  479. msgid "[installed,auto-removable]"
  480. msgstr ""
  481. #: apt-private/private-output.cc
  482. #, fuzzy
  483. msgid "[installed,automatic]"
  484. msgstr " [Instalado]"
  485. #: apt-private/private-output.cc
  486. #, fuzzy
  487. msgid "[installed]"
  488. msgstr " [Instalado]"
  489. #: apt-private/private-output.cc
  490. #, c-format
  491. msgid "[upgradable from: %s]"
  492. msgstr ""
  493. #: apt-private/private-output.cc
  494. msgid "[residual-config]"
  495. msgstr ""
  496. #: apt-private/private-output.cc
  497. #, c-format
  498. msgid "but %s is installed"
  499. msgstr "mais %s está instalado"
  500. #: apt-private/private-output.cc
  501. #, c-format
  502. msgid "but %s is to be installed"
  503. msgstr "mais vaise instalar %s"
  504. #: apt-private/private-output.cc
  505. msgid "but it is not installable"
  506. msgstr "mais non é instalábel"
  507. #: apt-private/private-output.cc
  508. msgid "but it is a virtual package"
  509. msgstr "mais é un paquete virtual"
  510. #: apt-private/private-output.cc
  511. msgid "but it is not installed"
  512. msgstr "mais non está instalado"
  513. #: apt-private/private-output.cc
  514. msgid "but it is not going to be installed"
  515. msgstr "mais non se vai a instalar"
  516. #: apt-private/private-output.cc
  517. msgid " or"
  518. msgstr " ou"
  519. #: apt-private/private-output.cc
  520. msgid "The following packages have unmet dependencies:"
  521. msgstr "Os seguintes paquetes teñen dependencias sen cumprir:"
  522. #: apt-private/private-output.cc
  523. msgid "The following NEW packages will be installed:"
  524. msgstr "Os seguintes paquetes NOVOS hanse instalar:"
  525. #: apt-private/private-output.cc
  526. msgid "The following packages will be REMOVED:"
  527. msgstr "Vanse RETIRAR os paquetes seguintes:"
  528. #: apt-private/private-output.cc
  529. msgid "The following packages have been kept back:"
  530. msgstr "Consérvanse os seguintes paquetes:"
  531. #: apt-private/private-output.cc
  532. msgid "The following packages will be upgraded:"
  533. msgstr "Vanse anovar os paquetes seguintes:"
  534. #: apt-private/private-output.cc
  535. msgid "The following packages will be DOWNGRADED:"
  536. msgstr "Vanse REVERTER os seguintes paquetes :"
  537. #: apt-private/private-output.cc
  538. msgid "The following held packages will be changed:"
  539. msgstr "Vanse modificar os paquetes retidos seguintes:"
  540. #: apt-private/private-output.cc
  541. #, c-format
  542. msgid "%s (due to %s)"
  543. msgstr "%s (por mor de %s)"
  544. #: apt-private/private-output.cc
  545. msgid ""
  546. "WARNING: The following essential packages will be removed.\n"
  547. "This should NOT be done unless you know exactly what you are doing!"
  548. msgstr ""
  549. "AVISO: Retiraranse os seguintes paquetes esenciais.\n"
  550. "Isto NON se debe facer a menos que saiba exactamente o que está a facer!"
  551. #: apt-private/private-output.cc
  552. #, c-format
  553. msgid "%lu upgraded, %lu newly installed, "
  554. msgstr "%lu anovados, %lu instalados, "
  555. #: apt-private/private-output.cc
  556. #, c-format
  557. msgid "%lu reinstalled, "
  558. msgstr "%lu reinstalados, "
  559. #: apt-private/private-output.cc
  560. #, c-format
  561. msgid "%lu downgraded, "
  562. msgstr "%lu revertidos, "
  563. #: apt-private/private-output.cc
  564. #, c-format
  565. msgid "%lu to remove and %lu not upgraded.\n"
  566. msgstr "Vanse retirar %lu e deixar %lu sen anovar.\n"
  567. #: apt-private/private-output.cc
  568. #, c-format
  569. msgid "%lu not fully installed or removed.\n"
  570. msgstr "%lu non instalados ou retirados de todo.\n"
  571. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  572. #. e.g. "Do you want to continue? [Y/n] "
  573. #. The user has to answer with an input matching the
  574. #. YESEXPR/NOEXPR defined in your l10n.
  575. #: apt-private/private-output.cc
  576. msgid "[Y/n]"
  577. msgstr "[S/n]"
  578. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  579. #. e.g. "Should this file be removed? [y/N] "
  580. #. The user has to answer with an input matching the
  581. #. YESEXPR/NOEXPR defined in your l10n.
  582. #: apt-private/private-output.cc
  583. msgid "[y/N]"
  584. msgstr "[s/N]"
  585. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  586. #: apt-private/private-output.cc
  587. msgid "Y"
  588. msgstr "S"
  589. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  590. #: apt-private/private-output.cc
  591. msgid "N"
  592. msgstr "N"
  593. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  594. #, c-format
  595. msgid "Regex compilation error - %s"
  596. msgstr "Produciuse un erro na compilación da expresión regular - %s"
  597. #: apt-private/private-search.cc
  598. msgid "You must give at least one search pattern"
  599. msgstr "Debe fornecer cando menos un patrón de busca"
  600. #: apt-private/private-search.cc
  601. msgid "Full Text Search"
  602. msgstr ""
  603. #: apt-private/private-show.cc cmdline/apt-cache.cc
  604. #, c-format
  605. msgid "Package file %s is out of sync."
  606. msgstr "O ficheiro de paquete %s está sen sincronizar."
  607. #: apt-private/private-show.cc
  608. #, c-format
  609. msgid "There is %i additional record. Please use the '-a' switch to see it"
  610. msgid_plural ""
  611. "There are %i additional records. Please use the '-a' switch to see them."
  612. msgstr[0] ""
  613. msgstr[1] ""
  614. #: apt-private/private-show.cc
  615. msgid "not a real package (virtual)"
  616. msgstr ""
  617. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  618. #, c-format
  619. msgid "Unable to locate package %s"
  620. msgstr "Non foi posíbel atopar o paquete %s"
  621. #: apt-private/private-show.cc
  622. msgid "Package files:"
  623. msgstr "Ficheiros de paquetes:"
  624. #: apt-private/private-show.cc
  625. msgid "Cache is out of sync, can't x-ref a package file"
  626. msgstr ""
  627. "A caché está sen sincronizar, non se pode facer referencia a un ficheiro de "
  628. "paquetes"
  629. #. Show any packages have explicit pins
  630. #: apt-private/private-show.cc
  631. msgid "Pinned packages:"
  632. msgstr "Paquetes inmobilizados:"
  633. #: apt-private/private-show.cc
  634. msgid "(not found)"
  635. msgstr "(non se atopou)"
  636. #. Print the package name and the version we are forcing to
  637. #: apt-private/private-show.cc
  638. #, c-format
  639. msgid "%s -> %s with priority %d\n"
  640. msgstr ""
  641. #: apt-private/private-show.cc
  642. msgid " Installed: "
  643. msgstr " Instalado: "
  644. #: apt-private/private-show.cc
  645. msgid " Candidate: "
  646. msgstr " Candidato: "
  647. #: apt-private/private-show.cc
  648. msgid "(none)"
  649. msgstr "(ningún)"
  650. #: apt-private/private-show.cc
  651. msgid " Package pin: "
  652. msgstr " Inmobilizado: "
  653. #. Show the priority tables
  654. #: apt-private/private-show.cc
  655. msgid " Version table:"
  656. msgstr " Táboa de versións:"
  657. #: apt-private/private-source.cc
  658. #, fuzzy, c-format
  659. msgid "Can not find a package for architecture '%s'"
  660. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  661. #: apt-private/private-source.cc
  662. #, fuzzy, c-format
  663. msgid "Can not find a package '%s' with version '%s'"
  664. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  665. #: apt-private/private-source.cc
  666. #, fuzzy, c-format
  667. msgid "Can not find a package '%s' with release '%s'"
  668. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  669. #: apt-private/private-source.cc
  670. #, c-format
  671. msgid "Picking '%s' as source package instead of '%s'\n"
  672. msgstr "Tome «%s» como paquete fonte no canto de «%s»\n"
  673. #: apt-private/private-source.cc
  674. #, fuzzy, c-format
  675. msgid "Can not find version '%s' of package '%s'"
  676. msgstr "Ignorar a versión non dispoñíbel «%s» do paquete «%s»"
  677. #: apt-private/private-source.cc
  678. msgid "Must specify at least one package to fetch source for"
  679. msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  680. #: apt-private/private-source.cc
  681. #, c-format
  682. msgid "Unable to find a source package for %s"
  683. msgstr "Non sé posíbel atopar un paquete fonte para %s"
  684. #: apt-private/private-source.cc
  685. #, c-format
  686. msgid ""
  687. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  688. "%s\n"
  689. msgstr ""
  690. "AVISO: o paquete «%s» mantense no sistema de control de versións «%s» en:\n"
  691. "%s\n"
  692. #: apt-private/private-source.cc
  693. #, fuzzy, c-format
  694. msgid ""
  695. "Please use:\n"
  696. "%s\n"
  697. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  698. msgstr ""
  699. "Empregue:\n"
  700. "%s\n"
  701. "para obter as últimas actualizacións (posibelmente non publicadas) do "
  702. "paquete.\n"
  703. #: apt-private/private-source.cc
  704. #, c-format
  705. msgid "Skipping already downloaded file '%s'\n"
  706. msgstr "Omítese o ficheiro xa descargado «%s»\n"
  707. #. TRANSLATOR: The required space between number and unit is already included
  708. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  709. #: apt-private/private-source.cc
  710. #, c-format
  711. msgid "Need to get %sB/%sB of source archives.\n"
  712. msgstr "Ten que recibir %sB/%sB de arquivos de fonte.\n"
  713. #. TRANSLATOR: The required space between number and unit is already included
  714. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  715. #: apt-private/private-source.cc
  716. #, c-format
  717. msgid "Need to get %sB of source archives.\n"
  718. msgstr "Ten que recibir %sB de arquivos de fonte.\n"
  719. #: apt-private/private-source.cc
  720. #, c-format
  721. msgid "Fetch source %s\n"
  722. msgstr "Obter fonte %s\n"
  723. #: apt-private/private-source.cc
  724. msgid "Failed to fetch some archives."
  725. msgstr "Non se puideron obter algúns arquivos."
  726. #: apt-private/private-source.cc
  727. #, c-format
  728. msgid "Skipping unpack of already unpacked source in %s\n"
  729. msgstr "Omítese o desempaquetado do código fonte xa desempaquetado en %s\n"
  730. #: apt-private/private-source.cc
  731. #, c-format
  732. msgid "Unpack command '%s' failed.\n"
  733. msgstr "Fallou a orde de desempaquetado «%s».\n"
  734. #: apt-private/private-source.cc
  735. #, c-format
  736. msgid "Check if the 'dpkg-dev' package is installed.\n"
  737. msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n"
  738. #: apt-private/private-source.cc
  739. #, c-format
  740. msgid "Build command '%s' failed.\n"
  741. msgstr "Fallou a orde de construción de «%s».\n"
  742. #: apt-private/private-source.cc
  743. msgid "Must specify at least one package to check builddeps for"
  744. msgstr ""
  745. "Ten que especificar polo menos un paquete para comprobarlle as dependencias "
  746. "de compilación"
  747. #: apt-private/private-source.cc
  748. #, c-format
  749. msgid ""
  750. "No architecture information available for %s. See apt.conf(5) APT::"
  751. "Architectures for setup"
  752. msgstr ""
  753. #: apt-private/private-source.cc
  754. #, c-format
  755. msgid "Note, using directory '%s' to get the build dependencies\n"
  756. msgstr ""
  757. #: apt-private/private-source.cc
  758. #, fuzzy, c-format
  759. msgid "Note, using file '%s' to get the build dependencies\n"
  760. msgstr "Non se puideron procesar as dependencias de construción"
  761. #: apt-private/private-source.cc
  762. #, c-format
  763. msgid "Unable to get build-dependency information for %s"
  764. msgstr "Non é posíbel obter a información de dependencias de compilación de %s"
  765. #: apt-private/private-source.cc
  766. #, c-format
  767. msgid "%s has no build depends.\n"
  768. msgstr "%s non ten dependencias de compilación.\n"
  769. #: apt-private/private-source.cc
  770. #, fuzzy, c-format
  771. msgid ""
  772. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  773. "packages"
  774. msgstr ""
  775. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  776. "paquete %s"
  777. #: apt-private/private-source.cc
  778. #, c-format
  779. msgid ""
  780. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  781. "found"
  782. msgstr ""
  783. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  784. "paquete %s"
  785. #: apt-private/private-source.cc
  786. #, c-format
  787. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  788. msgstr ""
  789. "Non foi posíbel satisfacer a dependencia «%s» de %s: O paquete instalado %s "
  790. "é novo de máis"
  791. #: apt-private/private-source.cc
  792. #, fuzzy, c-format
  793. msgid ""
  794. "%s dependency for %s cannot be satisfied because candidate version of "
  795. "package %s can't satisfy version requirements"
  796. msgstr ""
  797. "A dependencia «%s» de %s non se pode satisfacer porque ningunha versión "
  798. "dispoñíbel do paquete %s satisfai os requirimentos de versión"
  799. #: apt-private/private-source.cc
  800. #, fuzzy, c-format
  801. msgid ""
  802. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  803. "version"
  804. msgstr ""
  805. "A dependencia «%s» de %s non se pode satisfacer porque non se pode atopar o "
  806. "paquete %s"
  807. #: apt-private/private-source.cc
  808. #, c-format
  809. msgid "Failed to satisfy %s dependency for %s: %s"
  810. msgstr "Non foi posíbel satisfacer a dependencia «%s» de %s: %s"
  811. #: apt-private/private-source.cc
  812. #, c-format
  813. msgid "Build-dependencies for %s could not be satisfied."
  814. msgstr "Non se puideron satisfacer as dependencias de construción de %s."
  815. #: apt-private/private-source.cc
  816. msgid "Failed to process build dependencies"
  817. msgstr "Non se puideron procesar as dependencias de construción"
  818. #: apt-private/private-sources.cc
  819. #, fuzzy, c-format
  820. msgid "Failed to parse %s. Edit again? "
  821. msgstr "Non foi posíbel cambiar o nome de %s a %s"
  822. #: apt-private/private-sources.cc
  823. #, c-format
  824. msgid "Your '%s' file changed, please run 'apt-get update'."
  825. msgstr ""
  826. #: apt-private/private-update.cc
  827. msgid "The update command takes no arguments"
  828. msgstr "A orde «update» non toma argumentos"
  829. #: apt-private/private-update.cc
  830. #, c-format
  831. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  832. msgid_plural ""
  833. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  834. msgstr[0] ""
  835. msgstr[1] ""
  836. #: apt-private/private-update.cc
  837. msgid "All packages are up to date."
  838. msgstr ""
  839. #: cmdline/apt-cache.cc
  840. #, c-format
  841. msgid "Package %s version %s has an unmet dep:\n"
  842. msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n"
  843. #: cmdline/apt-cache.cc
  844. #, fuzzy
  845. msgid "apt-cache stats does not take any arguments"
  846. msgstr "A orde «update» non toma argumentos"
  847. #: cmdline/apt-cache.cc
  848. msgid "Total package names: "
  849. msgstr "Número total de nomes de paquetes : "
  850. #: cmdline/apt-cache.cc
  851. msgid "Total package structures: "
  852. msgstr "Estruturas de paquetes totais: "
  853. #: cmdline/apt-cache.cc
  854. msgid " Normal packages: "
  855. msgstr " Paquetes normais: "
  856. #: cmdline/apt-cache.cc
  857. msgid " Pure virtual packages: "
  858. msgstr " Paquetes virtuais puros: "
  859. #: cmdline/apt-cache.cc
  860. msgid " Single virtual packages: "
  861. msgstr " Paquetes virtuais simples: "
  862. #: cmdline/apt-cache.cc
  863. msgid " Mixed virtual packages: "
  864. msgstr " Paquetes virtuais mixtos: "
  865. #: cmdline/apt-cache.cc
  866. msgid " Missing: "
  867. msgstr " Non atopados: "
  868. #: cmdline/apt-cache.cc
  869. msgid "Total distinct versions: "
  870. msgstr "Número total de versións distintas: "
  871. #: cmdline/apt-cache.cc
  872. msgid "Total distinct descriptions: "
  873. msgstr "Número total de descricións distintas: "
  874. #: cmdline/apt-cache.cc
  875. msgid "Total dependencies: "
  876. msgstr "Número total de dependencias: "
  877. #: cmdline/apt-cache.cc
  878. msgid "Total ver/file relations: "
  879. msgstr "Número total de relacións versión/ficheiro: "
  880. #: cmdline/apt-cache.cc
  881. msgid "Total Desc/File relations: "
  882. msgstr "Número total de relacións descrición/ficheiro: "
  883. #: cmdline/apt-cache.cc
  884. msgid "Total Provides mappings: "
  885. msgstr "Número total de asignacións provistas: "
  886. #: cmdline/apt-cache.cc
  887. msgid "Total globbed strings: "
  888. msgstr "Número total de cadeas: "
  889. #: cmdline/apt-cache.cc
  890. msgid "Total slack space: "
  891. msgstr "Espazo de reserva total: "
  892. #: cmdline/apt-cache.cc
  893. msgid "Total space accounted for: "
  894. msgstr "Espazo total contabilizado: "
  895. #: cmdline/apt-cache.cc
  896. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  897. msgstr ""
  898. #: cmdline/apt-cache.cc
  899. msgid ""
  900. "Usage: apt-cache [options] command\n"
  901. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  902. "\n"
  903. "apt-cache queries and displays available information about installed\n"
  904. "as well as installable packages. It works exclusively on the data\n"
  905. "acquired via the 'update' command of e.g. apt-get to the local cache.\n"
  906. "The displayed information can therefore be outdated if the last update\n"
  907. "is too long ago, but in exchange apt-cache works independently of the\n"
  908. "availability of the configured sources (e.g. offline).\n"
  909. msgstr ""
  910. #: cmdline/apt-cache.cc
  911. msgid "Show source records"
  912. msgstr "Mostra rexistros da fonte"
  913. #: cmdline/apt-cache.cc
  914. msgid "Search the package list for a regex pattern"
  915. msgstr "Busca na lista de paquetes por unha expresión regular"
  916. #: cmdline/apt-cache.cc
  917. msgid "Show raw dependency information for a package"
  918. msgstr "Mostra informacións brutas de dependencia para un paquete"
  919. #: cmdline/apt-cache.cc
  920. msgid "Show reverse dependency information for a package"
  921. msgstr "Mostra informacións de dependencia inversa para un paquete"
  922. #: cmdline/apt-cache.cc
  923. msgid "Show a readable record for the package"
  924. msgstr "Mostra un rexistro lexíbel para o paquete"
  925. #: cmdline/apt-cache.cc
  926. msgid "List the names of all packages in the system"
  927. msgstr "Lista os nomes de todos os paquetes no sistema"
  928. #: cmdline/apt-cache.cc
  929. msgid "Show policy settings"
  930. msgstr "Mostra configuracións da política"
  931. #: cmdline/apt.cc
  932. msgid ""
  933. "Usage: apt [options] command\n"
  934. "\n"
  935. "apt is a commandline package manager and provides commands for\n"
  936. "searching and managing as well as querying information about packages.\n"
  937. "It provides the same functionality as the specialized APT tools,\n"
  938. "like apt-get and apt-cache, but enables options more suitable for\n"
  939. "interactive use by default.\n"
  940. msgstr ""
  941. #. query
  942. #: cmdline/apt.cc
  943. msgid "list packages based on package names"
  944. msgstr ""
  945. #: cmdline/apt.cc
  946. #, fuzzy
  947. msgid "search in package descriptions"
  948. msgstr "Lendo as listas de paquetes"
  949. #: cmdline/apt.cc
  950. msgid "show package details"
  951. msgstr ""
  952. #. package stuff
  953. #: cmdline/apt.cc
  954. #, fuzzy
  955. msgid "install packages"
  956. msgstr "Paquetes inmobilizados:"
  957. #: cmdline/apt.cc
  958. #, fuzzy
  959. msgid "remove packages"
  960. msgstr "Paquetes estragados"
  961. #: cmdline/apt.cc cmdline/apt-get.cc
  962. msgid "Remove automatically all unused packages"
  963. msgstr "Retira automaticamente todos os paquetes sen uso"
  964. #. system wide stuff
  965. #: cmdline/apt.cc
  966. #, fuzzy
  967. msgid "update list of available packages"
  968. msgstr "%s cambiado a instalado manualmente.\n"
  969. #: cmdline/apt.cc
  970. msgid "upgrade the system by installing/upgrading packages"
  971. msgstr ""
  972. #: cmdline/apt.cc
  973. msgid "upgrade the system by removing/installing/upgrading packages"
  974. msgstr ""
  975. #. misc
  976. #: cmdline/apt.cc
  977. #, fuzzy
  978. msgid "edit the source information file"
  979. msgstr "Lendo a información do estado"
  980. #: cmdline/apt-cdrom.cc
  981. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  982. msgstr "Forneza un nome para este disco, como «Debian 5.0.3 Disco 1»"
  983. #: cmdline/apt-cdrom.cc
  984. #, fuzzy
  985. msgid "Please insert a Disc in the drive and press [Enter]"
  986. msgstr "Insira un disco na unidade e prema Intro"
  987. #: cmdline/apt-cdrom.cc
  988. #, c-format
  989. msgid "Failed to mount '%s' to '%s'"
  990. msgstr "Produciuse un fallo ao montar «%s» en «%s»"
  991. #: cmdline/apt-cdrom.cc
  992. msgid ""
  993. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  994. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  995. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  996. "mount point."
  997. msgstr ""
  998. #: cmdline/apt-cdrom.cc
  999. msgid "Repeat this process for the rest of the CDs in your set."
  1000. msgstr "Repita este proceso para o resto de CD do seu conxunto."
  1001. #: cmdline/apt-cdrom.cc
  1002. msgid ""
  1003. "Usage: apt-cdrom [options] command\n"
  1004. "\n"
  1005. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  1006. "media types as package sources to APT. The mount point and device\n"
  1007. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  1008. msgstr ""
  1009. #: cmdline/apt-config.cc
  1010. msgid "Arguments not in pairs"
  1011. msgstr "Os argumentos non van en parellas"
  1012. #: cmdline/apt-config.cc
  1013. msgid ""
  1014. "Usage: apt-config [options] command\n"
  1015. "\n"
  1016. "apt-config is an interface to the configuration settings used by\n"
  1017. "all APT tools to be used mainly in debugging and shell scripting.\n"
  1018. msgstr ""
  1019. #: cmdline/apt-config.cc
  1020. msgid "get configuration values via shell evaluation"
  1021. msgstr ""
  1022. #: cmdline/apt-config.cc
  1023. msgid "show the active configuration setting"
  1024. msgstr ""
  1025. #: cmdline/apt-get.cc
  1026. #, c-format
  1027. msgid "Couldn't find package %s"
  1028. msgstr "Non foi posíbel atopar o paquete %s"
  1029. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  1030. #, c-format
  1031. msgid "%s set to automatically installed.\n"
  1032. msgstr "%s está estabelecido para a súa instalación automática.\n"
  1033. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  1034. msgid ""
  1035. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  1036. "instead."
  1037. msgstr ""
  1038. #: cmdline/apt-get.cc
  1039. msgid "Internal error, problem resolver broke stuff"
  1040. msgstr "Produciuse un erro interno, o solucionador interno estragou cousas"
  1041. #: cmdline/apt-get.cc
  1042. msgid "Supported modules:"
  1043. msgstr "Módulos admitidos:"
  1044. #: cmdline/apt-get.cc
  1045. #, fuzzy
  1046. msgid ""
  1047. "Usage: apt-get [options] command\n"
  1048. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1049. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1050. "\n"
  1051. "apt-get is a command line interface for retrieval of packages\n"
  1052. "and information about them from authenticated sources and\n"
  1053. "for installation, upgrade and removal of packages together\n"
  1054. "with their dependencies.\n"
  1055. msgstr ""
  1056. "Uso: apt-get [opcións] orde\n"
  1057. " apt-get [opcións] install|remove paquete1 [paquete2 ...]\n"
  1058. " apt-get [opcións] source paquete1 [paquete2 ...]\n"
  1059. "\n"
  1060. "apt-get é unha sinxela interface de liña de ordes para a descarga e\n"
  1061. "instalación de paquetes. As ordes empregadas con máis frecuencia\n"
  1062. "son actualizadas e instaladas. \n"
  1063. #: cmdline/apt-get.cc
  1064. msgid "Retrieve new lists of packages"
  1065. msgstr "Recupera unha nova lista de paquetes"
  1066. #: cmdline/apt-get.cc
  1067. msgid "Perform an upgrade"
  1068. msgstr "Executa unha actualización"
  1069. #: cmdline/apt-get.cc
  1070. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  1071. msgstr "Instala novos paquetes (o paquete é libc6 non libc6.deb)"
  1072. #: cmdline/apt-get.cc
  1073. msgid "Remove packages"
  1074. msgstr "Retira paquetes"
  1075. #: cmdline/apt-get.cc
  1076. msgid "Remove packages and config files"
  1077. msgstr "Retira paquetes e ficheiros de configuración"
  1078. #: cmdline/apt-get.cc
  1079. msgid "Distribution upgrade, see apt-get(8)"
  1080. msgstr "Actualiza a distribución, vexa apt-get(8)"
  1081. #: cmdline/apt-get.cc
  1082. msgid "Follow dselect selections"
  1083. msgstr "Segue as seleccións de dselect"
  1084. #: cmdline/apt-get.cc
  1085. msgid "Configure build-dependencies for source packages"
  1086. msgstr "Configura as dependencias para paquetes de fontes"
  1087. #: cmdline/apt-get.cc
  1088. msgid "Erase downloaded archive files"
  1089. msgstr "Borra os arquivos de ficheiros"
  1090. #: cmdline/apt-get.cc
  1091. msgid "Erase old downloaded archive files"
  1092. msgstr "Borra os arquivos de ficheiros antigos"
  1093. #: cmdline/apt-get.cc
  1094. msgid "Verify that there are no broken dependencies"
  1095. msgstr "Comproba que non haxa dependencias sen cumprir"
  1096. #: cmdline/apt-get.cc
  1097. msgid "Download source archives"
  1098. msgstr "Descarga os arquivos de fontes"
  1099. #: cmdline/apt-get.cc
  1100. msgid "Download the binary package into the current directory"
  1101. msgstr "Descarga o paquete binario no directorio actual"
  1102. #: cmdline/apt-get.cc
  1103. msgid "Download and display the changelog for the given package"
  1104. msgstr "Descarga e mostra o rexistro de cambios para o paquete proposto"
  1105. #: cmdline/apt-helper.cc
  1106. msgid "Need one URL as argument"
  1107. msgstr ""
  1108. #: cmdline/apt-helper.cc
  1109. #, fuzzy
  1110. msgid "Must specify at least one pair url/filename"
  1111. msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  1112. #: cmdline/apt-helper.cc
  1113. msgid "Download Failed"
  1114. msgstr ""
  1115. #: cmdline/apt-helper.cc
  1116. #, c-format
  1117. msgid "GetSrvRec failed for %s"
  1118. msgstr ""
  1119. #: cmdline/apt-helper.cc
  1120. msgid ""
  1121. "Usage: apt-helper [options] command\n"
  1122. " apt-helper [options] download-file uri target-path\n"
  1123. "\n"
  1124. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1125. "e.g. the same proxy configuration or acquire system as APT would do.\n"
  1126. msgstr ""
  1127. #: cmdline/apt-helper.cc
  1128. msgid "download the given uri to the target-path"
  1129. msgstr ""
  1130. #: cmdline/apt-helper.cc
  1131. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1132. msgstr ""
  1133. #: cmdline/apt-helper.cc
  1134. msgid "detect proxy using apt.conf"
  1135. msgstr ""
  1136. #: cmdline/apt-mark.cc
  1137. #, fuzzy, c-format
  1138. msgid "%s can not be marked as it is not installed.\n"
  1139. msgstr "mais non está instalado"
  1140. #: cmdline/apt-mark.cc
  1141. #, fuzzy, c-format
  1142. msgid "%s was already set to manually installed.\n"
  1143. msgstr "%s cambiado a instalado manualmente.\n"
  1144. #: cmdline/apt-mark.cc
  1145. #, fuzzy, c-format
  1146. msgid "%s was already set to automatically installed.\n"
  1147. msgstr "%s está estabelecido para a súa instalación automática.\n"
  1148. #: cmdline/apt-mark.cc
  1149. #, fuzzy, c-format
  1150. msgid "%s was already set on hold.\n"
  1151. msgstr "%s xa é a versión máis recente.\n"
  1152. #: cmdline/apt-mark.cc
  1153. #, fuzzy, c-format
  1154. msgid "%s was already not hold.\n"
  1155. msgstr "%s xa é a versión máis recente.\n"
  1156. #: cmdline/apt-mark.cc
  1157. msgid "Executing dpkg failed. Are you root?"
  1158. msgstr ""
  1159. #: cmdline/apt-mark.cc
  1160. #, fuzzy, c-format
  1161. msgid "%s set on hold.\n"
  1162. msgstr "%s cambiado a instalado manualmente.\n"
  1163. #: cmdline/apt-mark.cc
  1164. #, fuzzy, c-format
  1165. msgid "Canceled hold on %s.\n"
  1166. msgstr "Non foi posíbel abrir %s"
  1167. #: cmdline/apt-mark.cc
  1168. #, c-format
  1169. msgid "Selected %s for purge.\n"
  1170. msgstr ""
  1171. #: cmdline/apt-mark.cc
  1172. #, c-format
  1173. msgid "Selected %s for removal.\n"
  1174. msgstr ""
  1175. #: cmdline/apt-mark.cc
  1176. #, c-format
  1177. msgid "Selected %s for installation.\n"
  1178. msgstr ""
  1179. #: cmdline/apt-mark.cc
  1180. msgid ""
  1181. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1182. "\n"
  1183. "apt-mark is a simple command line interface for marking packages\n"
  1184. "as manually or automatically installed. It is also possible to\n"
  1185. "manipulate the dpkg(1) selection states of packages with it.\n"
  1186. "It can also list all packages with or without a certain marking.\n"
  1187. msgstr ""
  1188. #: cmdline/apt-mark.cc
  1189. #, fuzzy
  1190. msgid "Mark the given packages as automatically installed"
  1191. msgstr "%s está estabelecido para a súa instalación automática.\n"
  1192. #: cmdline/apt-mark.cc
  1193. #, fuzzy
  1194. msgid "Mark the given packages as manually installed"
  1195. msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n"
  1196. #: cmdline/apt-mark.cc
  1197. msgid "Mark a package as held back"
  1198. msgstr ""
  1199. #: cmdline/apt-mark.cc
  1200. msgid "Unset a package set as held back"
  1201. msgstr ""
  1202. #: cmdline/apt-mark.cc
  1203. #, fuzzy
  1204. msgid "Print the list of automatically installed packages"
  1205. msgstr "%s está estabelecido para a súa instalación automática.\n"
  1206. #: cmdline/apt-mark.cc
  1207. #, fuzzy
  1208. msgid "Print the list of manually installed packages"
  1209. msgstr "%s cambiado a instalado manualmente.\n"
  1210. #: cmdline/apt-mark.cc
  1211. msgid "Print the list of package on hold"
  1212. msgstr ""
  1213. #: methods/cdrom.cc
  1214. #, c-format
  1215. msgid "Unable to read the cdrom database %s"
  1216. msgstr "Non é posíbel ler a base de datos do CD-ROM %s"
  1217. #: methods/cdrom.cc
  1218. msgid ""
  1219. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1220. "cannot be used to add new CD-ROMs"
  1221. msgstr ""
  1222. "Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non foi posíbel "
  1223. "empregar apt-get update para engadir un CD-ROM"
  1224. #: methods/cdrom.cc
  1225. msgid "Wrong CD-ROM"
  1226. msgstr "CD-ROM incorrecto"
  1227. #: methods/cdrom.cc
  1228. #, c-format
  1229. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1230. msgstr "Non é posíbel desmontar o CD-ROM de %s, pode estarse empregando aínda."
  1231. #: methods/cdrom.cc
  1232. msgid "Disk not found."
  1233. msgstr "Non se atopou o disco"
  1234. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1235. msgid "File not found"
  1236. msgstr "Non se atopou o ficheiro"
  1237. #: methods/connect.cc
  1238. #, c-format
  1239. msgid "Connecting to %s (%s)"
  1240. msgstr "Conectando a %s (%s)"
  1241. #: methods/connect.cc
  1242. #, c-format
  1243. msgid "[IP: %s %s]"
  1244. msgstr "[IP: %s %s]"
  1245. #: methods/connect.cc
  1246. #, c-format
  1247. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1248. msgstr "Non foi posíbel crear un socket para %s (f=%u t=%u p=%u)"
  1249. #: methods/connect.cc
  1250. #, c-format
  1251. msgid "Cannot initiate the connection to %s:%s (%s)."
  1252. msgstr "Non é posíbel iniciar a conexión a %s:%s (%s)."
  1253. #: methods/connect.cc
  1254. #, c-format
  1255. msgid "Could not connect to %s:%s (%s), connection timed out"
  1256. msgstr "Non foi posíbel conectar a %s:%s (%s), a conexión esgotou o tempo"
  1257. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1258. msgid "Failed"
  1259. msgstr "Fallou"
  1260. #: methods/connect.cc
  1261. #, c-format
  1262. msgid "Could not connect to %s:%s (%s)."
  1263. msgstr "Non foi posíbel conectar a %s:%s (%s)."
  1264. #. We say this mainly because the pause here is for the
  1265. #. ssh connection that is still going
  1266. #: methods/connect.cc methods/rsh.cc
  1267. #, c-format
  1268. msgid "Connecting to %s"
  1269. msgstr "Conectando a %s"
  1270. #: methods/connect.cc
  1271. #, c-format
  1272. msgid "Could not resolve '%s'"
  1273. msgstr "Non foi posíbel atopar «%s»"
  1274. #: methods/connect.cc
  1275. #, c-format
  1276. msgid "Temporary failure resolving '%s'"
  1277. msgstr "Produciuse un fallo temporal ao buscar «%s»"
  1278. #: methods/connect.cc
  1279. #, fuzzy, c-format
  1280. msgid "System error resolving '%s:%s'"
  1281. msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)"
  1282. #: methods/connect.cc
  1283. #, c-format
  1284. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1285. msgstr "Aconteceu algo malo, buscando «%s:%s» (%i - %s)"
  1286. #: methods/connect.cc
  1287. #, c-format
  1288. msgid "Unable to connect to %s:%s:"
  1289. msgstr "Non é posíbel conectar %s:%s:"
  1290. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1291. msgid "Failed to stat"
  1292. msgstr "Non foi posíbel determinar o estado"
  1293. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1294. msgid "Failed to set modification time"
  1295. msgstr "Non foi posíbel estabelecer a hora de modificación"
  1296. #: methods/file.cc
  1297. msgid "Invalid URI, local URIS must not start with //"
  1298. msgstr "URI incorrecto, os URI locais non deben comezar por //"
  1299. #. Login must be before getpeername otherwise dante won't work.
  1300. #: methods/ftp.cc
  1301. msgid "Logging in"
  1302. msgstr "Identificándose"
  1303. #: methods/ftp.cc
  1304. msgid "Unable to determine the peer name"
  1305. msgstr "Non é posíbel determinar o nome do outro extremo"
  1306. #: methods/ftp.cc
  1307. msgid "Unable to determine the local name"
  1308. msgstr "Non é posíbel determinar o nome local"
  1309. #: methods/ftp.cc
  1310. #, c-format
  1311. msgid "The server refused the connection and said: %s"
  1312. msgstr "O servidor rexeitou a conexión e dixo: %s"
  1313. #: methods/ftp.cc
  1314. #, c-format
  1315. msgid "USER failed, server said: %s"
  1316. msgstr "Fallou a orde USER, o servidor dixo: %s"
  1317. #: methods/ftp.cc
  1318. #, c-format
  1319. msgid "PASS failed, server said: %s"
  1320. msgstr "Fallou a orde PASS, o servidor dixo: %s"
  1321. #: methods/ftp.cc
  1322. msgid ""
  1323. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1324. "is empty."
  1325. msgstr ""
  1326. "Especificouse un servidor proxy pero non un script de conexión, Acquire::"
  1327. "ftp::ProxyLogin está baleiro."
  1328. #: methods/ftp.cc
  1329. #, c-format
  1330. msgid "Login script command '%s' failed, server said: %s"
  1331. msgstr "Fallou a orde do script de acceso «%s», o servidor dixo: %s"
  1332. #: methods/ftp.cc
  1333. #, c-format
  1334. msgid "TYPE failed, server said: %s"
  1335. msgstr "Fallou a orde TYPE, o servidor dixo: %s"
  1336. #: methods/ftp.cc methods/rsh.cc
  1337. msgid "Connection timeout"
  1338. msgstr "Esgotouse o tempo para a conexión"
  1339. #: methods/ftp.cc
  1340. msgid "Server closed the connection"
  1341. msgstr "O servidor pechou a conexión"
  1342. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1343. msgid "Read error"
  1344. msgstr "Produciuse un erro de lectura"
  1345. #: methods/ftp.cc methods/rsh.cc
  1346. msgid "A response overflowed the buffer."
  1347. msgstr "Unha resposta desbordou o búfer."
  1348. #: methods/ftp.cc
  1349. msgid "Protocol corruption"
  1350. msgstr "Dano no protocolo"
  1351. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1352. msgid "Write error"
  1353. msgstr "Produciuse un erro de escritura"
  1354. #: methods/ftp.cc
  1355. msgid "Could not create a socket"
  1356. msgstr "Non é posíbel crear un socket"
  1357. #: methods/ftp.cc
  1358. msgid "Could not connect data socket, connection timed out"
  1359. msgstr ""
  1360. "Non é posíbel conectar o socket de datos, o tempo esgotouse para a conexión"
  1361. #: methods/ftp.cc
  1362. msgid "Could not connect passive socket."
  1363. msgstr "Non é posíbel conectar o socket pasivo."
  1364. #: methods/ftp.cc
  1365. msgid "getaddrinfo was unable to get a listening socket"
  1366. msgstr "getaddrinfo non puido obter un socket no que atender"
  1367. #: methods/ftp.cc
  1368. msgid "Could not bind a socket"
  1369. msgstr "Non é posíbel ligar un socket"
  1370. #: methods/ftp.cc
  1371. msgid "Could not listen on the socket"
  1372. msgstr "Non é posíbel escoitar no socket"
  1373. #: methods/ftp.cc
  1374. msgid "Could not determine the socket's name"
  1375. msgstr "Non é posíbel determinar o nome do socket"
  1376. #: methods/ftp.cc
  1377. msgid "Unable to send PORT command"
  1378. msgstr "Non é posíbel enviar a orde PORT"
  1379. #: methods/ftp.cc
  1380. #, c-format
  1381. msgid "Unknown address family %u (AF_*)"
  1382. msgstr "Familia de enderezos %u (AF_*) descoñecida"
  1383. #: methods/ftp.cc
  1384. #, c-format
  1385. msgid "EPRT failed, server said: %s"
  1386. msgstr "Produciuse un fallou na orde EPRT, o servidor dixo: %s"
  1387. #: methods/ftp.cc
  1388. msgid "Data socket connect timed out"
  1389. msgstr "A conexión do socket de datos esgotou o tempo"
  1390. #: methods/ftp.cc
  1391. msgid "Unable to accept connection"
  1392. msgstr "Non é posíbel aceptar a conexión"
  1393. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1394. msgid "Problem hashing file"
  1395. msgstr "Xurdiu un problema ao calcular o hash do ficheiro"
  1396. #: methods/ftp.cc
  1397. #, c-format
  1398. msgid "Unable to fetch file, server said '%s'"
  1399. msgstr "Non é posíbel obter o ficheiro, o servidor dixo «%s»"
  1400. #: methods/ftp.cc methods/rsh.cc
  1401. msgid "Data socket timed out"
  1402. msgstr "O socket de datos esgotou o tempo"
  1403. #: methods/ftp.cc
  1404. #, c-format
  1405. msgid "Data transfer failed, server said '%s'"
  1406. msgstr "Produciuse un fallou na transferencia de datos, o servidor dixo «%s»"
  1407. #. Get the files information
  1408. #: methods/ftp.cc
  1409. msgid "Query"
  1410. msgstr "Petición"
  1411. #: methods/ftp.cc
  1412. msgid "Unable to invoke "
  1413. msgstr "Non é posíbel chamar a "
  1414. #: methods/gpgv.cc
  1415. msgid "At least one invalid signature was encountered."
  1416. msgstr "Atopouse polo menos unha sinatura incorrecta."
  1417. #: methods/gpgv.cc
  1418. msgid ""
  1419. "Internal error: Good signature, but could not determine key fingerprint?!"
  1420. msgstr ""
  1421. "Erro interno: Sinatura correcta, pero non foi posíbel determinar a pegada "
  1422. "dixital da chave"
  1423. #: methods/gpgv.cc
  1424. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1425. msgstr ""
  1426. "Non é posíbel executar «apt-key» para verificar a sinatura (Está instalado "
  1427. "gnupg?)"
  1428. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1429. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1430. #, c-format
  1431. msgid ""
  1432. "Clearsigned file isn't valid, got '%s' (does the network require "
  1433. "authentication?)"
  1434. msgstr ""
  1435. #: methods/gpgv.cc
  1436. msgid "Unknown error executing apt-key"
  1437. msgstr "Produciuse un erro descoñecido ao executar apt-key"
  1438. #: methods/gpgv.cc
  1439. msgid "The following signatures were invalid:\n"
  1440. msgstr "As seguintes sinaturas non eran correctas:\n"
  1441. #: methods/gpgv.cc
  1442. msgid ""
  1443. "The following signatures couldn't be verified because the public key is not "
  1444. "available:\n"
  1445. msgstr ""
  1446. "Non se puideron verificar as seguintes sinaturas porque a chave pública non "
  1447. "está dispoñíbel:\n"
  1448. #: methods/gzip.cc
  1449. msgid "Empty files can't be valid archives"
  1450. msgstr "Os ficheiros baleiros non poden ser arquivadores válidos"
  1451. #: methods/http.cc
  1452. msgid "Error writing to the file"
  1453. msgstr "Produciuse un erro ao escribir no ficheiro"
  1454. #: methods/http.cc
  1455. msgid "Error reading from server. Remote end closed connection"
  1456. msgstr ""
  1457. "Produciuse un erro ao ler do servidor. O extremo remoto pechou a conexión"
  1458. #: methods/http.cc
  1459. msgid "Error reading from server"
  1460. msgstr "Produciuse un erro ao ler do servidor"
  1461. #: methods/http.cc
  1462. msgid "Error writing to file"
  1463. msgstr "Produciuse un erro ao escribir nun ficheiro"
  1464. #: methods/http.cc
  1465. msgid "Select failed"
  1466. msgstr "Fallou a chamada a select"
  1467. #: methods/http.cc
  1468. msgid "Connection timed out"
  1469. msgstr "A conexión esgotou o tempo"
  1470. #: methods/http.cc
  1471. msgid "Error writing to output file"
  1472. msgstr "Produciuse un erro ao escribir no ficheiro de saída"
  1473. #. Only warn if there are no sources.list.d.
  1474. #. Only warn if there is no sources.list file.
  1475. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1476. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1477. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1478. #, c-format
  1479. msgid "Unable to read %s"
  1480. msgstr "Non é posíbel ler %s"
  1481. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1482. #: apt-pkg/contrib/cdromutl.cc
  1483. #, c-format
  1484. msgid "Unable to change to %s"
  1485. msgstr "Non é posíbel cambiar a %s"
  1486. #. FIXME: fallback to a default mirror here instead
  1487. #. and provide a config option to define that default
  1488. #: methods/mirror.cc
  1489. #, c-format
  1490. msgid "No mirror file '%s' found "
  1491. msgstr "Non se atopou ningún ficheiro de replica «%s» "
  1492. #. FIXME: fallback to a default mirror here instead
  1493. #. and provide a config option to define that default
  1494. #: methods/mirror.cc
  1495. #, c-format
  1496. msgid "Can not read mirror file '%s'"
  1497. msgstr "Non é posíbel ler o ficheiro de replica «%s»"
  1498. #: methods/mirror.cc
  1499. #, fuzzy, c-format
  1500. msgid "No entry found in mirror file '%s'"
  1501. msgstr "Non é posíbel ler o ficheiro de replica «%s»"
  1502. #: methods/mirror.cc
  1503. #, c-format
  1504. msgid "[Mirror: %s]"
  1505. msgstr "[Replica: %s]"
  1506. #: methods/rsh.cc ftparchive/multicompress.cc
  1507. msgid "Failed to create IPC pipe to subprocess"
  1508. msgstr "Non foi posíbel crear a canle IPC ao subproceso"
  1509. #: methods/rsh.cc
  1510. msgid "Connection closed prematurely"
  1511. msgstr "A conexión pechouse prematuramente"
  1512. #: methods/server.cc
  1513. msgid "Waiting for headers"
  1514. msgstr "Agardando polas cabeceiras"
  1515. #: methods/server.cc
  1516. msgid "Bad header line"
  1517. msgstr "Liña de cabeceira incorrecta"
  1518. #: methods/server.cc
  1519. msgid "The HTTP server sent an invalid reply header"
  1520. msgstr "O servidor HTTP enviou unha cabeceira de resposta incorrecta"
  1521. #: methods/server.cc
  1522. msgid "The HTTP server sent an invalid Content-Length header"
  1523. msgstr ""
  1524. "O servidor HTTP enviou unha cabeceira cunha lonxitude de contido incorrecta"
  1525. #: methods/server.cc
  1526. msgid "The HTTP server sent an invalid Content-Range header"
  1527. msgstr "O servidor HTTP enviou unha cabeceira cun rango de contido incorrecto"
  1528. #: methods/server.cc
  1529. msgid "This HTTP server has broken range support"
  1530. msgstr "Este servidor HTTP ten a compatibilidade de rangos estragada"
  1531. #: methods/server.cc
  1532. msgid "Unknown date format"
  1533. msgstr "Formato de datos descoñecido"
  1534. #: methods/server.cc
  1535. msgid "Bad header data"
  1536. msgstr "Datos da cabeceira incorrectos"
  1537. #: methods/server.cc
  1538. msgid "Connection failed"
  1539. msgstr "Produciuse un fallo na conexión"
  1540. #: methods/server.cc
  1541. #, c-format
  1542. msgid ""
  1543. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1544. "5 apt.conf)"
  1545. msgstr ""
  1546. #: methods/server.cc
  1547. msgid "Internal error"
  1548. msgstr "Produciuse un erro interno"
  1549. #: dselect/install:33
  1550. msgid "Bad default setting!"
  1551. msgstr "Configuración predeterminada incorrecta!"
  1552. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1553. #: dselect/install:106 dselect/update:45
  1554. #, fuzzy
  1555. msgid "Press [Enter] to continue."
  1556. msgstr "Prema Intro para continuar."
  1557. #: dselect/install:92
  1558. msgid "Do you want to erase any previously downloaded .deb files?"
  1559. msgstr "Quere borrar os ficheiros .deb descargados anteriormente?"
  1560. #: dselect/install:102
  1561. msgid "Some errors occurred while unpacking. Packages that were installed"
  1562. msgstr ""
  1563. "Ocorreron algúns erros ao desempaquetar, Os paquetes que se instalaron"
  1564. #: dselect/install:103
  1565. msgid "will be configured. This may result in duplicate errors"
  1566. msgstr "serán configurados, Isto pode dar erros de duplicación"
  1567. #: dselect/install:104
  1568. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1569. msgstr ""
  1570. "ou erros causados por dependencias incumpridas. Isto é normal, só os erros"
  1571. #: dselect/install:105
  1572. msgid ""
  1573. "above this message are important. Please fix them and run [I]nstall again"
  1574. msgstr ""
  1575. "que hai enriba desta mensaxe son importantes. Arránxeos e volva a instalar."
  1576. #: dselect/update:30
  1577. msgid "Merging available information"
  1578. msgstr "Mesturando a información sobre paquetes dispoñíbeis"
  1579. #: cmdline/apt-extracttemplates.cc
  1580. #, fuzzy
  1581. msgid ""
  1582. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1583. "\n"
  1584. "apt-extracttemplates is used to extract config and template files\n"
  1585. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1586. "configuration questions before installation of packages.\n"
  1587. msgstr ""
  1588. "Uso: apt-extracttemplates fich1 [fich2 ...]\n"
  1589. "\n"
  1590. "apt-extracttemplates é unha ferramenta para extraer información\n"
  1591. "de configuración e patróns dos paquetes debian\n"
  1592. "\n"
  1593. "Opcións:\n"
  1594. " -h Este texto de axuda\n"
  1595. " -t Estabelece o directorio temporal\n"
  1596. " -c=? Le este ficheiro de configuración\n"
  1597. " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
  1598. "tmp\n"
  1599. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1600. #, fuzzy, c-format
  1601. msgid "Unable to mkstemp %s"
  1602. msgstr "Non é posíbel determinar o estado %s"
  1603. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1604. #, c-format
  1605. msgid "Unable to write to %s"
  1606. msgstr "Non é posíbel escribir en %s"
  1607. #: cmdline/apt-extracttemplates.cc
  1608. msgid "Cannot get debconf version. Is debconf installed?"
  1609. msgstr "Non é posíbel obter a versión de debconf. Debconf está instalado?"
  1610. #: cmdline/apt-internal-solver.cc
  1611. #, fuzzy
  1612. msgid ""
  1613. "Usage: apt-internal-solver\n"
  1614. "\n"
  1615. "apt-internal-solver is an interface to use the current internal\n"
  1616. "like an external resolver for the APT family for debugging or alike.\n"
  1617. msgstr ""
  1618. "Uso: apt-extracttemplates fich1 [fich2 ...]\n"
  1619. "\n"
  1620. "apt-extracttemplates é unha ferramenta para extraer información\n"
  1621. "de configuración e patróns dos paquetes debian\n"
  1622. "\n"
  1623. "Opcións:\n"
  1624. " -h Este texto de axuda\n"
  1625. " -t Estabelece o directorio temporal\n"
  1626. " -c=? Le este ficheiro de configuración\n"
  1627. " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::cache=/"
  1628. "tmp\n"
  1629. #: cmdline/apt-sortpkgs.cc
  1630. msgid "Unknown package record!"
  1631. msgstr "Rexistro de paquete descoñecido!"
  1632. #: cmdline/apt-sortpkgs.cc
  1633. msgid ""
  1634. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1635. "\n"
  1636. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1637. "It sorts by default by binary package information, but the -s option\n"
  1638. "can be used to switch to source package ordering instead.\n"
  1639. msgstr ""
  1640. #: ftparchive/apt-ftparchive.cc
  1641. msgid "Package extension list is too long"
  1642. msgstr "A lista de extensións de paquetes é longa de máis"
  1643. #: ftparchive/apt-ftparchive.cc
  1644. #, c-format
  1645. msgid "Error processing directory %s"
  1646. msgstr "Produciuse un erro ao procesar o directorio %s"
  1647. #: ftparchive/apt-ftparchive.cc
  1648. msgid "Source extension list is too long"
  1649. msgstr "A lista de extensións de fontes é longa de máis"
  1650. #: ftparchive/apt-ftparchive.cc
  1651. msgid "Error writing header to contents file"
  1652. msgstr "Produciuse un erro ao gravar a cabeceira no ficheiro de contido"
  1653. #: ftparchive/apt-ftparchive.cc
  1654. #, c-format
  1655. msgid "Error processing contents %s"
  1656. msgstr "Produciuse un erro ao procesar o contido %s"
  1657. #: ftparchive/apt-ftparchive.cc
  1658. msgid ""
  1659. "Usage: apt-ftparchive [options] command\n"
  1660. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1661. " sources srcpath [overridefile [pathprefix]]\n"
  1662. " contents path\n"
  1663. " release path\n"
  1664. " generate config [groups]\n"
  1665. " clean config\n"
  1666. "\n"
  1667. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1668. "many styles of generation from fully automated to functional replacements\n"
  1669. "for dpkg-scanpackages and dpkg-scansources\n"
  1670. "\n"
  1671. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1672. "Package file contains the contents of all the control fields from\n"
  1673. "each package as well as the MD5 hash and filesize. An override file\n"
  1674. "is supported to force the value of Priority and Section.\n"
  1675. "\n"
  1676. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1677. "The --source-override option can be used to specify a src override file\n"
  1678. "\n"
  1679. "The 'packages' and 'sources' command should be run in the root of the\n"
  1680. "tree. BinaryPath should point to the base of the recursive search and \n"
  1681. "override file should contain the override flags. Pathprefix is\n"
  1682. "appended to the filename fields if present. Example usage from the \n"
  1683. "Debian archive:\n"
  1684. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1685. " dists/potato/main/binary-i386/Packages\n"
  1686. "\n"
  1687. "Options:\n"
  1688. " -h This help text\n"
  1689. " --md5 Control MD5 generation\n"
  1690. " -s=? Source override file\n"
  1691. " -q Quiet\n"
  1692. " -d=? Select the optional caching database\n"
  1693. " --no-delink Enable delinking debug mode\n"
  1694. " --contents Control contents file generation\n"
  1695. " -c=? Read this configuration file\n"
  1696. " -o=? Set an arbitrary configuration option"
  1697. msgstr ""
  1698. "Emprego: apt-ftparchive [opcións] orde\n"
  1699. "Ordes: packages rutabinaria [fichoverride [prefixoruta]]\n"
  1700. " sources rutafontes [fichoverride [prefixoruta]]\n"
  1701. " contents ruta\n"
  1702. " release ruta\n"
  1703. " generate config [grupos]\n"
  1704. " clean config\n"
  1705. "\n"
  1706. "apt-ftparchive xera ficheiros de índices para arquivos de Debian. Admite\n"
  1707. "varios estilos de xeración, de totalmente automática a substitutos "
  1708. "funcionais\n"
  1709. "de dpkg-scanpackages e dpkg-scansources\n"
  1710. "\n"
  1711. "apt-ftparchive xera ficheiros Packages dunha árbore de .debs. O ficheiro\n"
  1712. "Packages ten o contido de todos os campos de control de cada paquete, así\n"
  1713. "coma a suma MD5 e o tamaño do ficheiro. Admitese un ficheiro de «overrides»\n"
  1714. "para forzar o valor dos campos Priority e Section.\n"
  1715. "\n"
  1716. "De xeito semellante, apt-ftparchive xera ficheiros Sources dunha árbore de\n"
  1717. ".dscs. Pódese empregar a opción --source-override para especificar un "
  1718. "ficheiro\n"
  1719. "de «overrides» para fontes.\n"
  1720. "\n"
  1721. "As ordes «packages» e «sources» deberían executarse na raíz da árbore.\n"
  1722. "«Rutabinaria» debería apuntar á base da busca recursiva e o ficheiro\n"
  1723. "«fichoverride» debería conter os modificadores de «override». «Prefixoruta»\n"
  1724. "engádese aos campos de nomes de ficheiros se está presente. Un exemplo\n"
  1725. "de emprego do arquivo de Debian:\n"
  1726. " apt-ftparchive packages dists/potato/main/binary-i386/ > \n"
  1727. " dists/potato/main/binary-i386/Packages\n"
  1728. "\n"
  1729. "Opcións:\n"
  1730. " -h Este texto de axuda\n"
  1731. " --md5 Controla a xeración de MD5\n"
  1732. " -s=? Ficheiro de «override» de fontes\n"
  1733. " -q Non produce ningunha saída por pantalla\n"
  1734. " -d=? Escolle a base de datos de caché opcional\n"
  1735. " --no-delink Activa o modo de depuración de desligado\n"
  1736. " --contents Controla a xeración do ficheiro de contido\n"
  1737. " -c=? Le este ficheiro de configuración\n"
  1738. " -o=? Estabelece unha opción de configuración"
  1739. #: ftparchive/apt-ftparchive.cc
  1740. msgid "No selections matched"
  1741. msgstr "Non coincide ningunha selección"
  1742. #: ftparchive/apt-ftparchive.cc
  1743. #, c-format
  1744. msgid "Some files are missing in the package file group `%s'"
  1745. msgstr "Faltan ficheiros no grupo de ficheiros de paquetes «%s»"
  1746. #: ftparchive/cachedb.cc
  1747. #, c-format
  1748. msgid "DB was corrupted, file renamed to %s.old"
  1749. msgstr "A base de datos estaba danada, cambiouse o nome do ficheiro a %s.old"
  1750. #: ftparchive/cachedb.cc
  1751. #, c-format
  1752. msgid "DB is old, attempting to upgrade %s"
  1753. msgstr "A base de datos é antiga, tentando anovar %s"
  1754. #: ftparchive/cachedb.cc
  1755. msgid ""
  1756. "DB format is invalid. If you upgraded from an older version of apt, please "
  1757. "remove and re-create the database."
  1758. msgstr ""
  1759. "O formato da base de datos non é correcto. Se a anovou desde unha versión "
  1760. "antiga de apt, retirea e volva a crear a base de datos"
  1761. #: ftparchive/cachedb.cc
  1762. #, c-format
  1763. msgid "Unable to open DB file %s: %s"
  1764. msgstr "Non é posíbel abrir o ficheiro de base de datos %s: %s"
  1765. #: ftparchive/cachedb.cc apt-inst/extract.cc
  1766. #, c-format
  1767. msgid "Failed to stat %s"
  1768. msgstr "Non foi posíbel determinar o estado %s"
  1769. #: ftparchive/cachedb.cc
  1770. #, fuzzy
  1771. msgid "Failed to read .dsc"
  1772. msgstr "Non foi posíbel ler a ligazón %s"
  1773. #: ftparchive/cachedb.cc
  1774. msgid "Archive has no control record"
  1775. msgstr "O arquivo non ten un rexistro de control"
  1776. #: ftparchive/cachedb.cc
  1777. msgid "Unable to get a cursor"
  1778. msgstr "Non é posíbel obter un cursor"
  1779. #: ftparchive/contents.cc
  1780. msgid "realloc - Failed to allocate memory"
  1781. msgstr "realloc - Non foi posíbel reservar memoria"
  1782. #: ftparchive/multicompress.cc
  1783. #, c-format
  1784. msgid "Unknown compression algorithm '%s'"
  1785. msgstr "Algoritmo de compresión «%s» descoñecido"
  1786. #: ftparchive/multicompress.cc
  1787. #, c-format
  1788. msgid "Compressed output %s needs a compression set"
  1789. msgstr "A saída comprimida %s precisa dun conxunto de compresión"
  1790. #: ftparchive/multicompress.cc
  1791. msgid "Failed to fork"
  1792. msgstr "Non foi posíbel facer a bifurcación"
  1793. #: ftparchive/multicompress.cc
  1794. msgid "Compress child"
  1795. msgstr "Fillo de compresión"
  1796. #: ftparchive/multicompress.cc
  1797. #, c-format
  1798. msgid "Internal error, failed to create %s"
  1799. msgstr "Produciuse un erro interno, non foi posíbel crear %s"
  1800. #: ftparchive/multicompress.cc
  1801. msgid "IO to subprocess/file failed"
  1802. msgstr "Produciuse un fallo na E/S do subproceso/ficheiro"
  1803. #: ftparchive/multicompress.cc
  1804. msgid "Failed to read while computing MD5"
  1805. msgstr "Non foi posíbel ler ao calcular o MD5"
  1806. #: ftparchive/multicompress.cc
  1807. #, c-format
  1808. msgid "Problem unlinking %s"
  1809. msgstr "Xurdiu un problema ao desligar %s"
  1810. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1811. #, c-format
  1812. msgid "Failed to rename %s to %s"
  1813. msgstr "Non foi posíbel cambiar o nome de %s a %s"
  1814. #: ftparchive/override.cc
  1815. #, c-format
  1816. msgid "Unable to open %s"
  1817. msgstr "Non é posíbel puido abrir %s"
  1818. #. skip spaces
  1819. #. find end of word
  1820. #: ftparchive/override.cc
  1821. #, fuzzy, c-format
  1822. msgid "Malformed override %s line %llu (%s)"
  1823. msgstr "«Override» %s liña %lu incorrecta (1)"
  1824. #: ftparchive/override.cc
  1825. #, c-format
  1826. msgid "Failed to read the override file %s"
  1827. msgstr "Non foi posíbel ler o ficheiro de «override» %s"
  1828. #: ftparchive/override.cc
  1829. #, fuzzy, c-format
  1830. msgid "Malformed override %s line %llu #1"
  1831. msgstr "«Override» %s liña %lu incorrecta (1)"
  1832. #: ftparchive/override.cc
  1833. #, fuzzy, c-format
  1834. msgid "Malformed override %s line %llu #2"
  1835. msgstr "«Override» %s liña %lu incorrecta (2)"
  1836. #: ftparchive/override.cc
  1837. #, fuzzy, c-format
  1838. msgid "Malformed override %s line %llu #3"
  1839. msgstr "«Override» %s liña %lu incorrecta (3)"
  1840. #: ftparchive/writer.cc
  1841. #, c-format
  1842. msgid "W: Unable to read directory %s\n"
  1843. msgstr "A: non é posíbel ler o directorio %s\n"
  1844. #: ftparchive/writer.cc
  1845. #, c-format
  1846. msgid "W: Unable to stat %s\n"
  1847. msgstr "A: non é posíbel atopar %s\n"
  1848. #: ftparchive/writer.cc
  1849. msgid "E: "
  1850. msgstr "E: "
  1851. #: ftparchive/writer.cc
  1852. msgid "W: "
  1853. msgstr "A: "
  1854. #: ftparchive/writer.cc
  1855. msgid "E: Errors apply to file "
  1856. msgstr "E: os erros aplícanse ao ficheiro "
  1857. #: ftparchive/writer.cc
  1858. #, c-format
  1859. msgid "Failed to resolve %s"
  1860. msgstr "Non foi posíbel solucionar %s"
  1861. #: ftparchive/writer.cc
  1862. msgid "Tree walking failed"
  1863. msgstr "Fallou o percorrido da árbore"
  1864. #: ftparchive/writer.cc
  1865. #, c-format
  1866. msgid "Failed to open %s"
  1867. msgstr "Non foi posíbel abrir %s"
  1868. #: ftparchive/writer.cc
  1869. #, c-format
  1870. msgid " DeLink %s [%s]\n"
  1871. msgstr " DesLig %s [%s]\n"
  1872. #: ftparchive/writer.cc
  1873. #, c-format
  1874. msgid "Failed to readlink %s"
  1875. msgstr "Non foi posíbel ler a ligazón %s"
  1876. #: ftparchive/writer.cc
  1877. #, c-format
  1878. msgid "Failed to unlink %s"
  1879. msgstr "Non foi posíbel desligar %s"
  1880. #: ftparchive/writer.cc
  1881. #, c-format
  1882. msgid "*** Failed to link %s to %s"
  1883. msgstr "*** Non foi posíbel ligar %s con %s"
  1884. #: ftparchive/writer.cc
  1885. #, c-format
  1886. msgid " DeLink limit of %sB hit.\n"
  1887. msgstr " Acadouse o límite de desligado de %sB.\n"
  1888. #: ftparchive/writer.cc
  1889. msgid "Archive had no package field"
  1890. msgstr "O arquivo non tiña un campo Package"
  1891. #: ftparchive/writer.cc
  1892. #, c-format
  1893. msgid " %s has no override entry\n"
  1894. msgstr " %s non ten unha entrada de «override»\n"
  1895. #: ftparchive/writer.cc
  1896. #, c-format
  1897. msgid " %s maintainer is %s not %s\n"
  1898. msgstr " O mantedor de %s é %s, non %s\n"
  1899. #: ftparchive/writer.cc
  1900. #, c-format
  1901. msgid " %s has no source override entry\n"
  1902. msgstr " %s non ten unha entrada de «override» de código fonte\n"
  1903. #: ftparchive/writer.cc
  1904. #, c-format
  1905. msgid " %s has no binary override entry either\n"
  1906. msgstr " %s tampouco ten unha entrada de «override» de binarios\n"
  1907. #: apt-inst/contrib/arfile.cc
  1908. msgid "Invalid archive signature"
  1909. msgstr "Sinatura de arquivo incorrecta"
  1910. #: apt-inst/contrib/arfile.cc
  1911. msgid "Error reading archive member header"
  1912. msgstr "Produciuse un erro ao ler a cabeceira do membro do arquivo"
  1913. #: apt-inst/contrib/arfile.cc
  1914. #, c-format
  1915. msgid "Invalid archive member header %s"
  1916. msgstr "Cabeceira do membro do arquivo incorrecta %s"
  1917. #: apt-inst/contrib/arfile.cc
  1918. msgid "Invalid archive member header"
  1919. msgstr "Cabeceira do membro do arquivo incorrecta"
  1920. #: apt-inst/contrib/arfile.cc
  1921. msgid "Archive is too short"
  1922. msgstr "O arquivo é curto de máis"
  1923. #: apt-inst/contrib/arfile.cc
  1924. msgid "Failed to read the archive headers"
  1925. msgstr "Non foi posíbel ler as cabeceiras dos arquivos"
  1926. #: apt-inst/contrib/extracttar.cc
  1927. #, fuzzy, c-format
  1928. msgid "Cannot find a configured compressor for '%s'"
  1929. msgstr "Non é posíbel atopar un rexistro de autenticación para: %s"
  1930. #: apt-inst/contrib/extracttar.cc
  1931. msgid "Corrupted archive"
  1932. msgstr "Arquivo danado"
  1933. #: apt-inst/contrib/extracttar.cc
  1934. msgid "Tar checksum failed, archive corrupted"
  1935. msgstr "A suma de comprobación do arquivo tar non coincide, está danado"
  1936. #: apt-inst/contrib/extracttar.cc
  1937. #, c-format
  1938. msgid "Unknown TAR header type %u, member %s"
  1939. msgstr "Tipo de cabeceira TAR %u descoñecido, membro %s"
  1940. #: apt-inst/deb/debfile.cc
  1941. #, c-format
  1942. msgid "This is not a valid DEB archive, missing '%s' member"
  1943. msgstr "Este non é un arquivo DEB correcto, falta o membro «%s»"
  1944. #: apt-inst/deb/debfile.cc
  1945. #, c-format
  1946. msgid "Internal error, could not locate member %s"
  1947. msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s"
  1948. #: apt-inst/deb/debfile.cc
  1949. msgid "Unparsable control file"
  1950. msgstr "Ficheiro de control non analizábel"
  1951. #: apt-inst/dirstream.cc
  1952. #, c-format
  1953. msgid "Failed to write file %s"
  1954. msgstr "Non foi posíbel escribir no ficheiro «%s»"
  1955. #: apt-inst/dirstream.cc
  1956. #, c-format
  1957. msgid "Failed to close file %s"
  1958. msgstr "Non foi posíbel pechar o ficheiro %s"
  1959. #: apt-inst/extract.cc
  1960. #, c-format
  1961. msgid "The path %s is too long"
  1962. msgstr "A ruta %s é longa de máis"
  1963. #: apt-inst/extract.cc
  1964. #, c-format
  1965. msgid "Unpacking %s more than once"
  1966. msgstr "Desempaquetando %s máis dunha vez"
  1967. #: apt-inst/extract.cc
  1968. #, c-format
  1969. msgid "The directory %s is diverted"
  1970. msgstr "O directorio %s está desviado"
  1971. #: apt-inst/extract.cc
  1972. #, c-format
  1973. msgid "The package is trying to write to the diversion target %s/%s"
  1974. msgstr "O paquete tenta escribir no destino do desvío %s/%s"
  1975. #: apt-inst/extract.cc
  1976. msgid "The diversion path is too long"
  1977. msgstr "A ruta do desvío é longa de máis"
  1978. #: apt-inst/extract.cc
  1979. #, c-format
  1980. msgid "The directory %s is being replaced by a non-directory"
  1981. msgstr "O directorio %s estase a substituír por algo que non é un directorio"
  1982. #: apt-inst/extract.cc
  1983. msgid "Failed to locate node in its hash bucket"
  1984. msgstr "Non foi posíbel atopar o nodo no seu contedor hash"
  1985. #: apt-inst/extract.cc
  1986. msgid "The path is too long"
  1987. msgstr "A ruta é longa de máis"
  1988. #: apt-inst/extract.cc
  1989. #, c-format
  1990. msgid "Overwrite package match with no version for %s"
  1991. msgstr "Coincidencia na sobrescritura sen versión para %s"
  1992. #: apt-inst/extract.cc
  1993. #, c-format
  1994. msgid "File %s/%s overwrites the one in the package %s"
  1995. msgstr "O ficheiro %s/%s sobrescribe o do paquete %s"
  1996. #: apt-inst/extract.cc
  1997. #, c-format
  1998. msgid "Unable to stat %s"
  1999. msgstr "Non é posíbel determinar o estado %s"
  2000. #: apt-inst/filelist.cc
  2001. msgid "DropNode called on still linked node"
  2002. msgstr "Chamouse a DropNode nun nodo aínda ligado"
  2003. #: apt-inst/filelist.cc
  2004. msgid "Failed to locate the hash element!"
  2005. msgstr "Non foi posíbel atopar o elemento hash"
  2006. #: apt-inst/filelist.cc
  2007. msgid "Failed to allocate diversion"
  2008. msgstr "Non foi posíbel reservar un desvío"
  2009. #: apt-inst/filelist.cc
  2010. msgid "Internal error in AddDiversion"
  2011. msgstr "Produciuse un erro interno en AddDiversion"
  2012. #: apt-inst/filelist.cc
  2013. #, c-format
  2014. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2015. msgstr "Téntase sobrescribir un desvío, %s -> %s e %s/%s"
  2016. #: apt-inst/filelist.cc
  2017. #, c-format
  2018. msgid "Double add of diversion %s -> %s"
  2019. msgstr "Desvío %s -> %s engadido dúas veces"
  2020. #: apt-inst/filelist.cc
  2021. #, c-format
  2022. msgid "Duplicate conf file %s/%s"
  2023. msgstr "Ficheiro de configuración %s/%s duplicado"
  2024. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2025. #, c-format
  2026. msgid "List directory %spartial is missing."
  2027. msgstr "Non se atopa a lista de directorios %sparcial."
  2028. #: apt-pkg/acquire.cc
  2029. #, c-format
  2030. msgid "Archives directory %spartial is missing."
  2031. msgstr "Non se atopa a lista de arquivos %sparcial."
  2032. #: apt-pkg/acquire.cc
  2033. #, c-format
  2034. msgid "Unable to lock directory %s"
  2035. msgstr "Non é posíbel bloquear o directorio %s"
  2036. #: apt-pkg/acquire.cc
  2037. #, c-format
  2038. msgid ""
  2039. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2040. "user '%s'."
  2041. msgstr ""
  2042. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2043. #, fuzzy, c-format
  2044. msgid "Clean of %s is not supported"
  2045. msgstr "O tipo de ficheiros de índices «%s» non está admitido"
  2046. #. only show the ETA if it makes sense
  2047. #. two days
  2048. #: apt-pkg/acquire.cc
  2049. #, c-format
  2050. msgid "Retrieving file %li of %li (%s remaining)"
  2051. msgstr "Obtendo o ficheiro %li de %li (restan %s)"
  2052. #: apt-pkg/acquire.cc
  2053. #, c-format
  2054. msgid "Retrieving file %li of %li"
  2055. msgstr "Obtendo o ficheiro %li de %li"
  2056. #: apt-pkg/acquire-item.cc
  2057. msgid ""
  2058. "Updating such a repository securily is impossible and therefore disabled by "
  2059. "default."
  2060. msgstr ""
  2061. #: apt-pkg/acquire-item.cc
  2062. msgid ""
  2063. "Data from such a repository can not be authenticated and is therefore "
  2064. "potentially dangerous to use."
  2065. msgstr ""
  2066. #: apt-pkg/acquire-item.cc
  2067. msgid ""
  2068. "See apt-secure(8) manpage for repository creation and user configuration "
  2069. "details."
  2070. msgstr ""
  2071. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2072. #, c-format
  2073. msgid "rename failed, %s (%s -> %s)."
  2074. msgstr "non foi posíbel cambiar o nome, %s (%s -> %s)."
  2075. #: apt-pkg/acquire-item.cc
  2076. msgid "Hash Sum mismatch"
  2077. msgstr "A sumas «hash» non coinciden"
  2078. #: apt-pkg/acquire-item.cc
  2079. msgid "Size mismatch"
  2080. msgstr "Os tamaños non coinciden"
  2081. #: apt-pkg/acquire-item.cc
  2082. #, fuzzy
  2083. msgid "Invalid file format"
  2084. msgstr "Operación incorrecta: %s"
  2085. #: apt-pkg/acquire-item.cc
  2086. #, fuzzy
  2087. msgid "Signature error"
  2088. msgstr "Produciuse un erro de escritura"
  2089. #: apt-pkg/acquire-item.cc
  2090. #, fuzzy, c-format
  2091. msgid ""
  2092. "An error occurred during the signature verification. The repository is not "
  2093. "updated and the previous index files will be used. GPG error: %s: %s"
  2094. msgstr ""
  2095. "Produciuse un erro durante a verificación da sinatura. O repositorio non foi "
  2096. "actualizado, empregaranse os ficheiros de índice anteriores. Erro de GPG: "
  2097. "%s: %s\n"
  2098. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2099. #: apt-pkg/acquire-item.cc
  2100. #, c-format
  2101. msgid "GPG error: %s: %s"
  2102. msgstr "Produciuse un erro de GPG: %s %s"
  2103. #: apt-pkg/acquire-item.cc
  2104. #, c-format
  2105. msgid ""
  2106. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2107. "or malformed file)"
  2108. msgstr ""
  2109. "Non é posíbel atopar a entrada agardada «%s» no ficheiro de publicación "
  2110. "(entrada sources.list incorrecta ou ficheiro con formato incorrecto)"
  2111. #: apt-pkg/acquire-item.cc
  2112. msgid "There is no public key available for the following key IDs:\n"
  2113. msgstr "Non hai unha chave pública dispoñíbel para os seguintes ID de chave:\n"
  2114. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2115. #. the time since then the file is invalid - formatted in the same way as in
  2116. #. the download progress display (e.g. 7d 3h 42min 1s)
  2117. #: apt-pkg/acquire-item.cc
  2118. #, c-format
  2119. msgid ""
  2120. "Release file for %s is expired (invalid since %s). Updates for this "
  2121. "repository will not be applied."
  2122. msgstr ""
  2123. #: apt-pkg/acquire-item.cc
  2124. #, c-format
  2125. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2126. msgstr "Conflito na distribución: %s (agardábase %s mais obtívose %s)"
  2127. #. No Release file was present, or verification failed, so fall
  2128. #. back to queueing Packages files without verification
  2129. #. only allow going further if the users explicitely wants it
  2130. #: apt-pkg/acquire-item.cc
  2131. #, fuzzy, c-format
  2132. msgid "The repository '%s' is not signed."
  2133. msgstr "O directorio %s está desviado"
  2134. #. No Release file was present so fall
  2135. #. back to queueing Packages files without verification
  2136. #. only allow going further if the users explicitely wants it
  2137. #: apt-pkg/acquire-item.cc
  2138. #, fuzzy, c-format
  2139. msgid "The repository '%s' does not have a Release file."
  2140. msgstr "O directorio %s está desviado"
  2141. #: apt-pkg/acquire-item.cc
  2142. #, fuzzy, c-format
  2143. msgid "The repository '%s' is no longer signed."
  2144. msgstr "O directorio %s está desviado"
  2145. #: apt-pkg/acquire-item.cc
  2146. msgid ""
  2147. "This is normally not allowed, but the option Acquire::"
  2148. "AllowDowngradeToInsecureRepositories was given to override it."
  2149. msgstr ""
  2150. #: apt-pkg/acquire-item.cc
  2151. #, c-format
  2152. msgid ""
  2153. "I wasn't able to locate a file for the %s package. This might mean you need "
  2154. "to manually fix this package. (due to missing arch)"
  2155. msgstr ""
  2156. "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar que "
  2157. "ten que arranxar este paquete a man. (Falta a arquitectura)"
  2158. #: apt-pkg/acquire-item.cc
  2159. #, c-format
  2160. msgid "Can't find a source to download version '%s' of '%s'"
  2161. msgstr ""
  2162. #: apt-pkg/acquire-item.cc
  2163. #, c-format
  2164. msgid ""
  2165. "The package index files are corrupted. No Filename: field for package %s."
  2166. msgstr ""
  2167. "Os ficheiros de índices de paquetes están danados. Non hai un campo "
  2168. "Filename: para o paquete %s."
  2169. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2170. #: apt-pkg/acquire-item.cc
  2171. #, fuzzy, c-format
  2172. msgid "Changelog unavailable for %s=%s"
  2173. msgstr "Rexistro de cambios de %s (%s)"
  2174. #: apt-pkg/acquire-worker.cc
  2175. #, c-format
  2176. msgid "The method driver %s could not be found."
  2177. msgstr "Non foi posíbel atopar o controlador de métodos %s."
  2178. #: apt-pkg/acquire-worker.cc
  2179. #, fuzzy, c-format
  2180. msgid "Is the package %s installed?"
  2181. msgstr "Comprobe que o paquete «dpkg-dev» estea instalado.\n"
  2182. #: apt-pkg/acquire-worker.cc
  2183. #, c-format
  2184. msgid "Method %s did not start correctly"
  2185. msgstr "O método %s non se iniciou correctamente"
  2186. #: apt-pkg/acquire-worker.cc
  2187. #, fuzzy, c-format
  2188. msgid ""
  2189. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2190. msgstr "Insira o disco etiquetado: «%s» na unidade «%s» e prema Intro."
  2191. #: apt-pkg/algorithms.cc
  2192. #, c-format
  2193. msgid ""
  2194. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2195. msgstr ""
  2196. "O paquete %s ten que ser reinstalado, mais non é posíbel atopar o seu "
  2197. "arquivo."
  2198. #: apt-pkg/algorithms.cc
  2199. msgid ""
  2200. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2201. "held packages."
  2202. msgstr ""
  2203. "Erro, pkgProblemResolver::Resolve xerou interrupcións, isto pode estar "
  2204. "causado por paquetes retidos."
  2205. #: apt-pkg/algorithms.cc
  2206. msgid "Unable to correct problems, you have held broken packages."
  2207. msgstr "Non é posíbel solucionar os problemas, ten retidos paquetes rotos."
  2208. #: apt-pkg/cachefile.cc
  2209. msgid "The package lists or status file could not be parsed or opened."
  2210. msgstr ""
  2211. "Non foi posíbel analizar ou abrir as listas de paquetes ou ficheiro de "
  2212. "estado."
  2213. #: apt-pkg/cachefile.cc
  2214. msgid "You may want to run apt-get update to correct these problems"
  2215. msgstr "Pode querer executar «apt-get update» para corrixir estes problemas"
  2216. #: apt-pkg/cachefile.cc
  2217. msgid "The list of sources could not be read."
  2218. msgstr "Non foi posíbel ler a lista de orixes."
  2219. #: apt-pkg/cacheset.cc
  2220. #, c-format
  2221. msgid "Release '%s' for '%s' was not found"
  2222. msgstr "Non se atopou a publicación «%s» de «%s»"
  2223. #: apt-pkg/cacheset.cc
  2224. #, c-format
  2225. msgid "Version '%s' for '%s' was not found"
  2226. msgstr "Non se atopou a versión «%s» de «%s»"
  2227. #: apt-pkg/cacheset.cc
  2228. #, c-format
  2229. msgid "Couldn't find task '%s'"
  2230. msgstr "Non foi posíbel atopar a tarefa «%s»"
  2231. #: apt-pkg/cacheset.cc
  2232. #, c-format
  2233. msgid "Couldn't find any package by regex '%s'"
  2234. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  2235. #: apt-pkg/cacheset.cc
  2236. #, fuzzy, c-format
  2237. msgid "Couldn't find any package by glob '%s'"
  2238. msgstr "Non foi posíbel atopar ningún paquete pola expresión de rexistro «%s»"
  2239. #: apt-pkg/cacheset.cc
  2240. #, c-format
  2241. msgid "Can't select versions from package '%s' as it is purely virtual"
  2242. msgstr ""
  2243. "Non é posíbel seleccionar distintas versións do paquete «%s» xa que é "
  2244. "puramente virtual"
  2245. #: apt-pkg/cacheset.cc
  2246. #, c-format
  2247. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2248. msgstr ""
  2249. "Non é posíbel seleccionar a versión máis recente do paquete «%s» xa que é "
  2250. "puramente virtual"
  2251. #: apt-pkg/cacheset.cc
  2252. #, c-format
  2253. msgid "Can't select candidate version from package %s as it has no candidate"
  2254. msgstr ""
  2255. "Non é posíbel seleccionar a versión candidata do paquete %s xa que non ten "
  2256. "candidata"
  2257. #: apt-pkg/cacheset.cc
  2258. #, c-format
  2259. msgid "Can't select installed version from package %s as it is not installed"
  2260. msgstr ""
  2261. "Non é posíbel seleccionar a versión instalada do paquete %s xa que non está "
  2262. "instalado"
  2263. #: apt-pkg/cacheset.cc
  2264. #, c-format
  2265. msgid ""
  2266. "Can't select installed nor candidate version from package '%s' as it has "
  2267. "neither of them"
  2268. msgstr ""
  2269. "Non é posíbel seleccionar nin a versión instalada nin a candidata do paquete "
  2270. "«%s» xa que non ten ningunha delas"
  2271. #: apt-pkg/cdrom.cc
  2272. #, c-format
  2273. msgid "Line %u too long in source list %s."
  2274. msgstr "Liña %u longa de máis na lista de orixes %s."
  2275. #: apt-pkg/cdrom.cc
  2276. msgid "Unmounting CD-ROM...\n"
  2277. msgstr "Desmontando o CD-ROM...\n"
  2278. #: apt-pkg/cdrom.cc
  2279. #, c-format
  2280. msgid "Using CD-ROM mount point %s\n"
  2281. msgstr "Empregando o punto de montaxe de CD-ROM %s\n"
  2282. #: apt-pkg/cdrom.cc
  2283. msgid "Waiting for disc...\n"
  2284. msgstr "Agardando polo disco...\n"
  2285. #: apt-pkg/cdrom.cc
  2286. msgid "Mounting CD-ROM...\n"
  2287. msgstr "Montando o CD-ROM...\n"
  2288. #: apt-pkg/cdrom.cc
  2289. msgid "Identifying... "
  2290. msgstr "Identificando... "
  2291. #: apt-pkg/cdrom.cc
  2292. #, c-format
  2293. msgid "Stored label: %s\n"
  2294. msgstr "Etiqueta almacenada: %s\n"
  2295. #: apt-pkg/cdrom.cc
  2296. msgid "Scanning disc for index files...\n"
  2297. msgstr "Buscando os ficheiros de índices no disco...\n"
  2298. #: apt-pkg/cdrom.cc
  2299. #, c-format
  2300. msgid ""
  2301. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2302. "%zu signatures\n"
  2303. msgstr ""
  2304. "Atopáronse %zu índices de paquetes, %zu índices de orixes, %zu índices de "
  2305. "traducións e %zu sinaturas\n"
  2306. #: apt-pkg/cdrom.cc
  2307. msgid ""
  2308. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2309. "wrong architecture?"
  2310. msgstr ""
  2311. "Non é posíbel localizar ningún ficheiro de paquetes. É posíbel que non sexa "
  2312. "un disco de Debian ou que a arquitectura sexa incorrecta."
  2313. #: apt-pkg/cdrom.cc
  2314. #, c-format
  2315. msgid "Found label '%s'\n"
  2316. msgstr "Atopouse a etiqueta «%s»\n"
  2317. #: apt-pkg/cdrom.cc
  2318. msgid "That is not a valid name, try again.\n"
  2319. msgstr "Ese non é un nome correcto, volva tentalo.\n"
  2320. #: apt-pkg/cdrom.cc
  2321. #, c-format
  2322. msgid ""
  2323. "This disc is called: \n"
  2324. "'%s'\n"
  2325. msgstr ""
  2326. "Este disco chámase: \n"
  2327. "«%s»\n"
  2328. #: apt-pkg/cdrom.cc
  2329. msgid "Copying package lists..."
  2330. msgstr "Copiando as listas de paquetes..."
  2331. #: apt-pkg/cdrom.cc
  2332. msgid "Writing new source list\n"
  2333. msgstr "Escribindo a nova lista de orixes\n"
  2334. #: apt-pkg/cdrom.cc
  2335. msgid "Source list entries for this disc are:\n"
  2336. msgstr "As entradas da lista de orixes deste disco son:\n"
  2337. #: apt-pkg/clean.cc
  2338. #, c-format
  2339. msgid "Unable to stat %s."
  2340. msgstr "Non é posíbel analizar %s."
  2341. #: apt-pkg/contrib/cdromutl.cc
  2342. #, c-format
  2343. msgid "Unable to stat the mount point %s"
  2344. msgstr "Non é posíbel analizar o punto de montaxe %s"
  2345. #: apt-pkg/contrib/cdromutl.cc
  2346. msgid "Failed to stat the cdrom"
  2347. msgstr "Non foi posíbel analizar o CD-ROM"
  2348. #: apt-pkg/contrib/cmndline.cc
  2349. #, fuzzy, c-format
  2350. msgid ""
  2351. "Command line option '%c' [from %s] is not understood in combination with the "
  2352. "other options."
  2353. msgstr "Non se coñece a opción de liña de ordes «%c» [de %s]."
  2354. #: apt-pkg/contrib/cmndline.cc
  2355. #, fuzzy, c-format
  2356. msgid ""
  2357. "Command line option %s is not understood in combination with the other "
  2358. "options"
  2359. msgstr "Non se entende a opción de liña de ordes %s"
  2360. #: apt-pkg/contrib/cmndline.cc
  2361. #, c-format
  2362. msgid "Command line option %s is not boolean"
  2363. msgstr "A opción de liña de ordes %s non é booleana"
  2364. #: apt-pkg/contrib/cmndline.cc
  2365. #, c-format
  2366. msgid "Option %s requires an argument."
  2367. msgstr "A opción %s precisa dun argumento."
  2368. #: apt-pkg/contrib/cmndline.cc
  2369. #, c-format
  2370. msgid "Option %s: Configuration item specification must have an =<val>."
  2371. msgstr ""
  2372. "Opción %s: A especificación de elemento de configuración debe ter un =<val>."
  2373. #: apt-pkg/contrib/cmndline.cc
  2374. #, c-format
  2375. msgid "Option %s requires an integer argument, not '%s'"
  2376. msgstr "A opción %s precisa dun argumento enteiro, non «%s»"
  2377. #: apt-pkg/contrib/cmndline.cc
  2378. #, c-format
  2379. msgid "Option '%s' is too long"
  2380. msgstr "A opción «%s» é longa de máis"
  2381. #: apt-pkg/contrib/cmndline.cc
  2382. #, c-format
  2383. msgid "Sense %s is not understood, try true or false."
  2384. msgstr "O senso %s non se entende, probe «true» ou «false»."
  2385. #: apt-pkg/contrib/cmndline.cc
  2386. #, c-format
  2387. msgid "Invalid operation %s"
  2388. msgstr "Operación incorrecta: %s"
  2389. #: apt-pkg/contrib/configuration.cc
  2390. #, c-format
  2391. msgid "Unrecognized type abbreviation: '%c'"
  2392. msgstr "Abreviatura de tipo «%c» descoñecida"
  2393. #: apt-pkg/contrib/configuration.cc
  2394. #, c-format
  2395. msgid "Opening configuration file %s"
  2396. msgstr "Abrindo o ficheiro de configuración %s"
  2397. #: apt-pkg/contrib/configuration.cc
  2398. #, c-format
  2399. msgid "Syntax error %s:%u: Block starts with no name."
  2400. msgstr "Produciuse un erro de sintaxe %s:%u: O bloque comeza sen un nome."
  2401. #: apt-pkg/contrib/configuration.cc
  2402. #, c-format
  2403. msgid "Syntax error %s:%u: Malformed tag"
  2404. msgstr "Produciuse un erro de sintaxe %s:%u: Etiqueta mal formada"
  2405. #: apt-pkg/contrib/configuration.cc
  2406. #, c-format
  2407. msgid "Syntax error %s:%u: Extra junk after value"
  2408. msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra despois do valor"
  2409. #: apt-pkg/contrib/configuration.cc
  2410. #, c-format
  2411. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2412. msgstr ""
  2413. "Produciuse un erro de sintaxe %s:%u: Só se poden facer directivas no nivel "
  2414. "superior"
  2415. #: apt-pkg/contrib/configuration.cc
  2416. #, c-format
  2417. msgid "Syntax error %s:%u: Too many nested includes"
  2418. msgstr "Produciuse un erro de sintaxe %s:%u: Includes aniñados de máis"
  2419. #: apt-pkg/contrib/configuration.cc
  2420. #, c-format
  2421. msgid "Syntax error %s:%u: Included from here"
  2422. msgstr "Produciuse un erro de sintaxe %s:%u: Incluído de aquí"
  2423. #: apt-pkg/contrib/configuration.cc
  2424. #, c-format
  2425. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2426. msgstr "Produciuse un erro de sintaxe %s:%u: Non se admite a directiva «%s»"
  2427. #: apt-pkg/contrib/configuration.cc
  2428. #, c-format
  2429. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2430. msgstr ""
  2431. "Produciuse un erro de sintaxe %s:%u: a directiva «clear» require unha árbore "
  2432. "de opción como argumento"
  2433. #: apt-pkg/contrib/configuration.cc
  2434. #, c-format
  2435. msgid "Syntax error %s:%u: Extra junk at end of file"
  2436. msgstr "Produciuse un erro de sintaxe %s:%u: Lixo extra á fin da liña"
  2437. #: apt-pkg/contrib/fileutl.cc
  2438. #, c-format
  2439. msgid "Not using locking for read only lock file %s"
  2440. msgstr "Non se empregan bloqueos para o ficheiro de bloqueo de só lectura %s"
  2441. #: apt-pkg/contrib/fileutl.cc
  2442. #, c-format
  2443. msgid "Could not open lock file %s"
  2444. msgstr "Non foi posíbel abrir o ficheiro de bloqueo %s"
  2445. #: apt-pkg/contrib/fileutl.cc
  2446. #, c-format
  2447. msgid "Not using locking for nfs mounted lock file %s"
  2448. msgstr "Non se empregan bloqueos para o ficheiro de bloqueo montado por NFS %s"
  2449. #: apt-pkg/contrib/fileutl.cc
  2450. #, c-format
  2451. msgid "Could not get lock %s"
  2452. msgstr "Non foi posíbel obter o bloqueo %s"
  2453. #: apt-pkg/contrib/fileutl.cc
  2454. #, c-format
  2455. msgid "List of files can't be created as '%s' is not a directory"
  2456. msgstr "A lista de ficheiros non pode ser creada como «%s» non é un directorio"
  2457. #: apt-pkg/contrib/fileutl.cc
  2458. #, c-format
  2459. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2460. msgstr "Ignorando «%s» no directorio «%s» xa que non é un ficheiro regular"
  2461. #: apt-pkg/contrib/fileutl.cc
  2462. #, c-format
  2463. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2464. msgstr ""
  2465. "Ignorando o ficheiro «%s» no directorio «%s» xa que non ten extensión de nome"
  2466. #: apt-pkg/contrib/fileutl.cc
  2467. #, c-format
  2468. msgid ""
  2469. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2470. msgstr ""
  2471. "Ignorando o ficheiro «%s» no directorio «%s» xa que ten unha extensión de "
  2472. "nome incorrecta"
  2473. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2474. #, c-format
  2475. msgid "Waited for %s but it wasn't there"
  2476. msgstr "Agardouse por %s pero non estaba alí"
  2477. #: apt-pkg/contrib/fileutl.cc
  2478. #, c-format
  2479. msgid "Sub-process %s received a segmentation fault."
  2480. msgstr "O subproceso %s recibiu un fallo de segmento."
  2481. #: apt-pkg/contrib/fileutl.cc
  2482. #, c-format
  2483. msgid "Sub-process %s received signal %u."
  2484. msgstr "O subproceso %s recibiu o sinal %u."
  2485. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2486. #, c-format
  2487. msgid "Sub-process %s returned an error code (%u)"
  2488. msgstr "O subproceso %s devolveu un código de erro (%u)"
  2489. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2490. #, c-format
  2491. msgid "Sub-process %s exited unexpectedly"
  2492. msgstr "O subproceso %s saíu de xeito inesperado"
  2493. #: apt-pkg/contrib/fileutl.cc
  2494. #, c-format
  2495. msgid "Problem closing the gzip file %s"
  2496. msgstr "Produciuse un problema ao pechar o arquivo gzip %s"
  2497. #: apt-pkg/contrib/fileutl.cc
  2498. #, c-format
  2499. msgid "Could not open file %s"
  2500. msgstr "Non foi posíbel abrir o ficheiro %s"
  2501. #: apt-pkg/contrib/fileutl.cc
  2502. #, c-format
  2503. msgid "Could not open file descriptor %d"
  2504. msgstr "Non foi posíbel abrir o descritor de ficheiro %d"
  2505. #: apt-pkg/contrib/fileutl.cc
  2506. msgid "Failed to create subprocess IPC"
  2507. msgstr "Non foi posíbel crear o IPC do subproceso"
  2508. #: apt-pkg/contrib/fileutl.cc
  2509. msgid "Failed to exec compressor "
  2510. msgstr "Non foi posíbel executar o compresor "
  2511. #: apt-pkg/contrib/fileutl.cc
  2512. #, fuzzy, c-format
  2513. msgid "read, still have %llu to read but none left"
  2514. msgstr "lectura, aínda hai %lu para ler pero non queda ningún"
  2515. #: apt-pkg/contrib/fileutl.cc
  2516. #, fuzzy, c-format
  2517. msgid "write, still have %llu to write but couldn't"
  2518. msgstr "escritura, aínda hai %lu para escribir pero non se puido"
  2519. #: apt-pkg/contrib/fileutl.cc
  2520. #, c-format
  2521. msgid "Problem closing the file %s"
  2522. msgstr "Produciuse un problema ao pechar o ficheiro %s"
  2523. #: apt-pkg/contrib/fileutl.cc
  2524. #, c-format
  2525. msgid "Problem renaming the file %s to %s"
  2526. msgstr "Produciuse un problema ao renomear o ficheiro %s a %s"
  2527. #: apt-pkg/contrib/fileutl.cc
  2528. #, c-format
  2529. msgid "Problem unlinking the file %s"
  2530. msgstr "Produciuse un problema ao desligar o ficheiro %s"
  2531. #: apt-pkg/contrib/fileutl.cc
  2532. msgid "Problem syncing the file"
  2533. msgstr "Produciuse un problema ao sincronizar o ficheiro"
  2534. #: apt-pkg/contrib/mmap.cc
  2535. msgid "Can't mmap an empty file"
  2536. msgstr "Non é posíbel facer mmap sobre un ficheiro baleiro"
  2537. #: apt-pkg/contrib/mmap.cc
  2538. #, c-format
  2539. msgid "Couldn't duplicate file descriptor %i"
  2540. msgstr "Non foi posíbel duplicar o descritor de ficheiro %i"
  2541. #: apt-pkg/contrib/mmap.cc
  2542. #, fuzzy, c-format
  2543. msgid "Couldn't make mmap of %llu bytes"
  2544. msgstr "Non foi posíbel facer mmap de %lu bytes"
  2545. #: apt-pkg/contrib/mmap.cc
  2546. msgid "Unable to close mmap"
  2547. msgstr "Non é posíbel pechar mmap"
  2548. #: apt-pkg/contrib/mmap.cc
  2549. msgid "Unable to synchronize mmap"
  2550. msgstr "Non é posíbel sincronizar mmap"
  2551. #: apt-pkg/contrib/mmap.cc
  2552. #, c-format
  2553. msgid "Couldn't make mmap of %lu bytes"
  2554. msgstr "Non foi posíbel facer mmap de %lu bytes"
  2555. #: apt-pkg/contrib/mmap.cc
  2556. msgid "Failed to truncate file"
  2557. msgstr "Non foi posíbel truncar o ficheiro"
  2558. #: apt-pkg/contrib/mmap.cc
  2559. #, c-format
  2560. msgid ""
  2561. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2562. "Current value: %lu. (man 5 apt.conf)"
  2563. msgstr ""
  2564. "Dynamic MMap executouse fora do lugar. Incremente o tamaño de APT::Cache-"
  2565. "Start. O valor actual é : %lu. (man 5 apt.conf)"
  2566. #: apt-pkg/contrib/mmap.cc
  2567. #, c-format
  2568. msgid ""
  2569. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2570. "reached."
  2571. msgstr ""
  2572. "Non é posíbel aumentar o tamaño de MMap xa que o límite de %lu bytes xa foi "
  2573. "acadado."
  2574. #: apt-pkg/contrib/mmap.cc
  2575. msgid ""
  2576. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2577. msgstr ""
  2578. "Non é posíbel aumentar o tamaño de MMap xa que o crecemento automático foi "
  2579. "desactivado polo usuario."
  2580. #: apt-pkg/contrib/progress.cc
  2581. #, c-format
  2582. msgid "%c%s... Error!"
  2583. msgstr "%c%s... Erro!"
  2584. #: apt-pkg/contrib/progress.cc
  2585. #, c-format
  2586. msgid "%c%s... Done"
  2587. msgstr "%c%s... Feito"
  2588. #: apt-pkg/contrib/progress.cc
  2589. msgid "..."
  2590. msgstr ""
  2591. #. Print the spinner
  2592. #: apt-pkg/contrib/progress.cc
  2593. #, fuzzy, c-format
  2594. msgid "%c%s... %u%%"
  2595. msgstr "%c%s... Feito"
  2596. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2597. #: apt-pkg/contrib/strutl.cc
  2598. #, c-format
  2599. msgid "%lid %lih %limin %lis"
  2600. msgstr "%lid %lih %limin %lis"
  2601. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2602. #: apt-pkg/contrib/strutl.cc
  2603. #, c-format
  2604. msgid "%lih %limin %lis"
  2605. msgstr "%lih %limin %lis"
  2606. #. TRANSLATOR: min means minutes, s means seconds
  2607. #: apt-pkg/contrib/strutl.cc
  2608. #, c-format
  2609. msgid "%limin %lis"
  2610. msgstr "%limin %lis"
  2611. #. TRANSLATOR: s means seconds
  2612. #: apt-pkg/contrib/strutl.cc
  2613. #, c-format
  2614. msgid "%lis"
  2615. msgstr "%lis"
  2616. #: apt-pkg/contrib/strutl.cc
  2617. #, c-format
  2618. msgid "Selection %s not found"
  2619. msgstr "Non se atopou a selección %s"
  2620. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2621. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2622. #. filename and linenumber of the sources.list entry currently parsed
  2623. #: apt-pkg/deb/debmetaindex.cc
  2624. #, c-format
  2625. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2626. msgstr ""
  2627. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2628. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2629. #. two sources.list entries
  2630. #: apt-pkg/deb/debmetaindex.cc
  2631. #, c-format
  2632. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2633. msgstr ""
  2634. #: apt-pkg/deb/debmetaindex.cc
  2635. #, c-format
  2636. msgid "Unable to parse Release file %s"
  2637. msgstr "Non se puido analizar o ficheiro de publicación %s"
  2638. #: apt-pkg/deb/debmetaindex.cc
  2639. #, c-format
  2640. msgid "No sections in Release file %s"
  2641. msgstr "Non hai seccións no ficheiro de publicación %s"
  2642. #: apt-pkg/deb/debmetaindex.cc
  2643. #, c-format
  2644. msgid "No Hash entry in Release file %s"
  2645. msgstr "Non hai entrada de Hash no ficheiro de publicación %s"
  2646. #: apt-pkg/deb/debmetaindex.cc
  2647. #, c-format
  2648. msgid "Invalid 'Date' entry in Release file %s"
  2649. msgstr "A entrada «Date» no ficheiro de publicación %s non é válida"
  2650. #: apt-pkg/deb/debmetaindex.cc
  2651. #, c-format
  2652. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2653. msgstr "A entrada «Valid-Until» no ficheiro de publicación %s non é válida"
  2654. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2655. #: apt-pkg/deb/debmetaindex.cc
  2656. #, c-format
  2657. msgid "Conflicting values set for option %s concerning source %s %s"
  2658. msgstr ""
  2659. #: apt-pkg/deb/debmetaindex.cc
  2660. #, c-format
  2661. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2662. msgstr ""
  2663. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2664. #, c-format
  2665. msgid "Unable to parse package file %s (%d)"
  2666. msgstr "Non é posíbel analizar o ficheiro de paquetes %s (%d)"
  2667. #: apt-pkg/deb/debsystem.cc
  2668. #, c-format
  2669. msgid ""
  2670. "Unable to lock the administration directory (%s), is another process using "
  2671. "it?"
  2672. msgstr ""
  2673. "Non é posíbel bloquear o directorio de administración (%s). Esta usandoo "
  2674. "algún outro proceso?"
  2675. #: apt-pkg/deb/debsystem.cc
  2676. #, c-format
  2677. msgid "Unable to lock the administration directory (%s), are you root?"
  2678. msgstr ""
  2679. "Non é posíbel bloquear o directorio de administración (%s). É o "
  2680. "administrador?"
  2681. #. TRANSLATORS: the %s contains the recovery command, usually
  2682. #. dpkg --configure -a
  2683. #: apt-pkg/deb/debsystem.cc
  2684. #, c-format
  2685. msgid ""
  2686. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2687. msgstr ""
  2688. "dpkg interrompeuse, debe executar manualmente «%s» para corrixir o problema. "
  2689. #: apt-pkg/deb/debsystem.cc
  2690. msgid "Not locked"
  2691. msgstr "Non está bloqueado"
  2692. #: apt-pkg/deb/dpkgpm.cc
  2693. #, c-format
  2694. msgid "Installing %s"
  2695. msgstr "Instalando %s"
  2696. #: apt-pkg/deb/dpkgpm.cc
  2697. #, c-format
  2698. msgid "Configuring %s"
  2699. msgstr "Configurando %s"
  2700. #: apt-pkg/deb/dpkgpm.cc
  2701. #, c-format
  2702. msgid "Removing %s"
  2703. msgstr "Retirando %s"
  2704. #: apt-pkg/deb/dpkgpm.cc
  2705. #, c-format
  2706. msgid "Completely removing %s"
  2707. msgstr "%s completamente retirado"
  2708. #: apt-pkg/deb/dpkgpm.cc
  2709. #, c-format
  2710. msgid "Noting disappearance of %s"
  2711. msgstr "Tomando nota da desaparición de %s"
  2712. #: apt-pkg/deb/dpkgpm.cc
  2713. #, c-format
  2714. msgid "Running post-installation trigger %s"
  2715. msgstr "Executando o disparador de post-instalación %s"
  2716. #. FIXME: use a better string after freeze
  2717. #: apt-pkg/deb/dpkgpm.cc
  2718. #, c-format
  2719. msgid "Directory '%s' missing"
  2720. msgstr "Falta o directorio «%s»"
  2721. #: apt-pkg/deb/dpkgpm.cc
  2722. #, c-format
  2723. msgid "Could not open file '%s'"
  2724. msgstr "Non foi posíbel abrir o ficheiro «%s»"
  2725. #: apt-pkg/deb/dpkgpm.cc
  2726. #, c-format
  2727. msgid "Preparing %s"
  2728. msgstr "Preparando %s"
  2729. #: apt-pkg/deb/dpkgpm.cc
  2730. #, c-format
  2731. msgid "Unpacking %s"
  2732. msgstr "Desempaquetando %s"
  2733. #: apt-pkg/deb/dpkgpm.cc
  2734. #, c-format
  2735. msgid "Preparing to configure %s"
  2736. msgstr "Preparandose para configurar %s"
  2737. #: apt-pkg/deb/dpkgpm.cc
  2738. #, c-format
  2739. msgid "Installed %s"
  2740. msgstr "Instalouse %s"
  2741. #: apt-pkg/deb/dpkgpm.cc
  2742. #, c-format
  2743. msgid "Preparing for removal of %s"
  2744. msgstr "Preparándose para o retirado de %s"
  2745. #: apt-pkg/deb/dpkgpm.cc
  2746. #, c-format
  2747. msgid "Removed %s"
  2748. msgstr "Retirouse %s"
  2749. #: apt-pkg/deb/dpkgpm.cc
  2750. #, c-format
  2751. msgid "Preparing to completely remove %s"
  2752. msgstr "Preparándose para retirar %s completamente"
  2753. #: apt-pkg/deb/dpkgpm.cc
  2754. #, c-format
  2755. msgid "Completely removed %s"
  2756. msgstr "Retirouse %s completamente"
  2757. #: apt-pkg/deb/dpkgpm.cc
  2758. #, fuzzy, c-format
  2759. msgid "Can not write log (%s)"
  2760. msgstr "Non é posíbel escribir en %s"
  2761. #: apt-pkg/deb/dpkgpm.cc
  2762. msgid "Is /dev/pts mounted?"
  2763. msgstr ""
  2764. #: apt-pkg/deb/dpkgpm.cc
  2765. msgid "Operation was interrupted before it could finish"
  2766. msgstr ""
  2767. #: apt-pkg/deb/dpkgpm.cc
  2768. msgid "No apport report written because MaxReports is reached already"
  2769. msgstr ""
  2770. "Non se escribiu ningún informe de Apport porque xa se acadou o nivel "
  2771. "MaxReports"
  2772. #. check if its not a follow up error
  2773. #: apt-pkg/deb/dpkgpm.cc
  2774. msgid "dependency problems - leaving unconfigured"
  2775. msgstr "problemas de dependencias - déixase sen configurar"
  2776. #: apt-pkg/deb/dpkgpm.cc
  2777. msgid ""
  2778. "No apport report written because the error message indicates its a followup "
  2779. "error from a previous failure."
  2780. msgstr ""
  2781. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica que "
  2782. "é un error provinte dun fallo anterior."
  2783. #: apt-pkg/deb/dpkgpm.cc
  2784. msgid ""
  2785. "No apport report written because the error message indicates a disk full "
  2786. "error"
  2787. msgstr ""
  2788. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2789. "erro de disco cheo."
  2790. #: apt-pkg/deb/dpkgpm.cc
  2791. msgid ""
  2792. "No apport report written because the error message indicates a out of memory "
  2793. "error"
  2794. msgstr ""
  2795. "Non se escribiu un informe de contribución porque a mensaxe de erro indica "
  2796. "un erro de falta de memoria"
  2797. #: apt-pkg/deb/dpkgpm.cc
  2798. #, fuzzy
  2799. msgid ""
  2800. "No apport report written because the error message indicates an issue on the "
  2801. "local system"
  2802. msgstr ""
  2803. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2804. "erro de disco cheo."
  2805. #: apt-pkg/deb/dpkgpm.cc
  2806. msgid ""
  2807. "No apport report written because the error message indicates a dpkg I/O error"
  2808. msgstr ""
  2809. "Non se escribiu ningún informe de Apport porque a mensaxe de erro indica un "
  2810. "erro de E/S en dpkg"
  2811. #: apt-pkg/depcache.cc
  2812. msgid "Building dependency tree"
  2813. msgstr "Construindo a árbore de dependencias"
  2814. #: apt-pkg/depcache.cc
  2815. msgid "Candidate versions"
  2816. msgstr "Versións candidatas"
  2817. #: apt-pkg/depcache.cc
  2818. msgid "Dependency generation"
  2819. msgstr "Xeración de dependencias"
  2820. #: apt-pkg/depcache.cc
  2821. msgid "Reading state information"
  2822. msgstr "Lendo a información do estado"
  2823. #: apt-pkg/depcache.cc
  2824. #, c-format
  2825. msgid "Failed to open StateFile %s"
  2826. msgstr "Non foi posíbel abrir o ficheiro de estado %s"
  2827. #: apt-pkg/depcache.cc
  2828. #, c-format
  2829. msgid "Failed to write temporary StateFile %s"
  2830. msgstr "Non foi posíbel gravar o ficheiro de estado temporal %s"
  2831. #: apt-pkg/edsp.cc
  2832. msgid "Send scenario to solver"
  2833. msgstr ""
  2834. #: apt-pkg/edsp.cc
  2835. msgid "Send request to solver"
  2836. msgstr ""
  2837. #: apt-pkg/edsp.cc
  2838. msgid "Prepare for receiving solution"
  2839. msgstr ""
  2840. #: apt-pkg/edsp.cc
  2841. msgid "External solver failed without a proper error message"
  2842. msgstr ""
  2843. #: apt-pkg/edsp.cc
  2844. msgid "Execute external solver"
  2845. msgstr ""
  2846. #: apt-pkg/indexcopy.cc
  2847. #, c-format
  2848. msgid "Wrote %i records.\n"
  2849. msgstr "Escribíronse %i rexistros.\n"
  2850. #: apt-pkg/indexcopy.cc
  2851. #, c-format
  2852. msgid "Wrote %i records with %i missing files.\n"
  2853. msgstr "Escribíronse %i rexistros con %i ficheiros que faltan.\n"
  2854. #: apt-pkg/indexcopy.cc
  2855. #, c-format
  2856. msgid "Wrote %i records with %i mismatched files\n"
  2857. msgstr "Escribíronse %i rexistros con %i ficheiros que non coinciden\n"
  2858. #: apt-pkg/indexcopy.cc
  2859. #, c-format
  2860. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2861. msgstr ""
  2862. "Escribíronse %i rexistros con %i ficheiros que faltan e %i ficheiros que non "
  2863. "coinciden\n"
  2864. #: apt-pkg/indexcopy.cc
  2865. #, c-format
  2866. msgid "Can't find authentication record for: %s"
  2867. msgstr "Non é posíbel atopar un rexistro de autenticación para: %s"
  2868. #: apt-pkg/indexcopy.cc
  2869. #, c-format
  2870. msgid "Hash mismatch for: %s"
  2871. msgstr "Valor de hash non coincidente para: %s"
  2872. #: apt-pkg/init.cc
  2873. #, c-format
  2874. msgid "Packaging system '%s' is not supported"
  2875. msgstr "O sistema de empaquetado «%s» non está admitido"
  2876. #: apt-pkg/init.cc
  2877. msgid "Unable to determine a suitable packaging system type"
  2878. msgstr "Non é posíbel determinar un tipo de sistema de empaquetado axeitado"
  2879. #: apt-pkg/install-progress.cc
  2880. #, c-format
  2881. msgid "Progress: [%3i%%]"
  2882. msgstr ""
  2883. #: apt-pkg/install-progress.cc
  2884. msgid "Running dpkg"
  2885. msgstr "Executando dpkg"
  2886. #: apt-pkg/packagemanager.cc
  2887. #, c-format
  2888. msgid ""
  2889. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2890. "under APT::Immediate-Configure for details. (%d)"
  2891. msgstr ""
  2892. "Non foi posíbel facer a configuración inmediata en «%s». Vexa man 5 apt.conf "
  2893. "baixo APT::Immediate-Configure para obter máis detalles. (%d)"
  2894. #: apt-pkg/packagemanager.cc
  2895. #, fuzzy, c-format
  2896. msgid "Could not configure '%s'. "
  2897. msgstr "Non foi posíbel abrir o ficheiro «%s»"
  2898. #: apt-pkg/packagemanager.cc
  2899. #, c-format
  2900. msgid ""
  2901. "This installation run will require temporarily removing the essential "
  2902. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2903. "you really want to do it, activate the APT::Force-LoopBreak option."
  2904. msgstr ""
  2905. "Esta instalación requirirá que se retire temporalmente o paquete esencial %s "
  2906. "por mor dun bucle de Conflitos e Pre-dependencias. Isto adoita ser malo, "
  2907. "pero se o quere facer, active a opción APT::Force-LoopBreak."
  2908. #: apt-pkg/pkgcache.cc
  2909. msgid "Empty package cache"
  2910. msgstr "Caché de paquetes baleira"
  2911. #: apt-pkg/pkgcache.cc
  2912. msgid "The package cache file is corrupted"
  2913. msgstr "O ficheiro de caché de paquetes está danado"
  2914. #: apt-pkg/pkgcache.cc
  2915. msgid "The package cache file is an incompatible version"
  2916. msgstr "O ficheiro de caché de paquetes é unha versión incompatíbel"
  2917. #: apt-pkg/pkgcache.cc
  2918. #, fuzzy
  2919. msgid "The package cache file is corrupted, it is too small"
  2920. msgstr "O ficheiro de caché de paquetes está danado"
  2921. #: apt-pkg/pkgcache.cc
  2922. #, c-format
  2923. msgid "This APT does not support the versioning system '%s'"
  2924. msgstr "Este APT non admite o sistema de versionado «%s»"
  2925. #: apt-pkg/pkgcache.cc
  2926. #, fuzzy, c-format
  2927. msgid "The package cache was built for different architectures: %s vs %s"
  2928. msgstr "A caché de paquetes construíuse para unha arquitectura diferente"
  2929. #: apt-pkg/pkgcache.cc
  2930. msgid "Depends"
  2931. msgstr "Depende"
  2932. #: apt-pkg/pkgcache.cc
  2933. msgid "PreDepends"
  2934. msgstr "PreDepende"
  2935. #: apt-pkg/pkgcache.cc
  2936. msgid "Suggests"
  2937. msgstr "Suxire"
  2938. #: apt-pkg/pkgcache.cc
  2939. msgid "Recommends"
  2940. msgstr "Recomenda"
  2941. #: apt-pkg/pkgcache.cc
  2942. msgid "Conflicts"
  2943. msgstr "Conflitos"
  2944. #: apt-pkg/pkgcache.cc
  2945. msgid "Replaces"
  2946. msgstr "Substitúe a"
  2947. #: apt-pkg/pkgcache.cc
  2948. msgid "Obsoletes"
  2949. msgstr "Fai obsoleto a"
  2950. #: apt-pkg/pkgcache.cc
  2951. msgid "Breaks"
  2952. msgstr "Estraga"
  2953. #: apt-pkg/pkgcache.cc
  2954. msgid "Enhances"
  2955. msgstr "Mellora"
  2956. #: apt-pkg/pkgcache.cc
  2957. msgid "important"
  2958. msgstr "importante"
  2959. #: apt-pkg/pkgcache.cc
  2960. msgid "required"
  2961. msgstr "requirido"
  2962. #: apt-pkg/pkgcache.cc
  2963. msgid "standard"
  2964. msgstr "estándar"
  2965. #: apt-pkg/pkgcache.cc
  2966. msgid "optional"
  2967. msgstr "opcional"
  2968. #: apt-pkg/pkgcache.cc
  2969. msgid "extra"
  2970. msgstr "extra"
  2971. #: apt-pkg/pkgcachegen.cc
  2972. msgid "Cache has an incompatible versioning system"
  2973. msgstr "A caché ten un sistema de versionado incompatíbel"
  2974. #. TRANSLATOR: The first placeholder is a package name,
  2975. #. the other two should be copied verbatim as they include debug info
  2976. #: apt-pkg/pkgcachegen.cc
  2977. #, fuzzy, c-format
  2978. msgid "Error occurred while processing %s (%s%d)"
  2979. msgstr "Produciuse un erro ao procesar %s (FindPkg)"
  2980. #: apt-pkg/pkgcachegen.cc
  2981. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2982. msgstr ""
  2983. "Vaites!, superou o número de nomes de paquetes que este APT pode manexar."
  2984. #: apt-pkg/pkgcachegen.cc
  2985. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2986. msgstr "Vaites!, superou o número de versións que este APT pode manexar."
  2987. #: apt-pkg/pkgcachegen.cc
  2988. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2989. msgstr "Vaites!, superou o número de descricións que este APT pode manexar."
  2990. #: apt-pkg/pkgcachegen.cc
  2991. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2992. msgstr "Vaites!, superou o número de dependencias que este APT pode manexar."
  2993. #: apt-pkg/pkgcachegen.cc
  2994. msgid "Reading package lists"
  2995. msgstr "Lendo as listas de paquetes"
  2996. #: apt-pkg/pkgcachegen.cc
  2997. msgid "IO Error saving source cache"
  2998. msgstr "Produciuse un erro de E/S ao gravar a caché de fontes"
  2999. #: apt-pkg/pkgrecords.cc
  3000. #, c-format
  3001. msgid "Index file type '%s' is not supported"
  3002. msgstr "O tipo de ficheiros de índices «%s» non está admitido"
  3003. #: apt-pkg/policy.cc
  3004. #, c-format
  3005. msgid ""
  3006. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  3007. "available in the sources"
  3008. msgstr ""
  3009. #: apt-pkg/policy.cc
  3010. #, c-format
  3011. msgid "Invalid record in the preferences file %s, no Package header"
  3012. msgstr ""
  3013. "Rexistro incorrecto no ficheiro de preferencias %s; falta a cabeceira Package"
  3014. #: apt-pkg/policy.cc
  3015. #, c-format
  3016. msgid "Did not understand pin type %s"
  3017. msgstr "Non se entendeu o tipo de inmobilización %s"
  3018. #: apt-pkg/policy.cc
  3019. #, c-format
  3020. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  3021. msgstr ""
  3022. #: apt-pkg/policy.cc
  3023. msgid "No priority (or zero) specified for pin"
  3024. msgstr ""
  3025. "Non se indicou unha prioridade (ou indicouse cero) para a inmobilización"
  3026. #. 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
  3027. #: apt-pkg/sourcelist.cc
  3028. #, fuzzy, c-format
  3029. msgid "Malformed entry %u in %s file %s (%s)"
  3030. msgstr "«Override» %s liña %lu incorrecta (1)"
  3031. #: apt-pkg/sourcelist.cc
  3032. #, c-format
  3033. msgid "Opening %s"
  3034. msgstr "Abrindo %s"
  3035. #: apt-pkg/sourcelist.cc
  3036. #, c-format
  3037. msgid "Malformed line %u in source list %s (type)"
  3038. msgstr "Liña %u mal construída na lista de orixes %s (tipo)"
  3039. #: apt-pkg/sourcelist.cc
  3040. #, c-format
  3041. msgid "Type '%s' is not known on line %u in source list %s"
  3042. msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s"
  3043. #: apt-pkg/sourcelist.cc
  3044. #, fuzzy, c-format
  3045. msgid "Malformed stanza %u in source list %s (type)"
  3046. msgstr "Liña %u mal construída na lista de orixes %s (tipo)"
  3047. #: apt-pkg/sourcelist.cc
  3048. #, fuzzy, c-format
  3049. msgid "Type '%s' is not known on stanza %u in source list %s"
  3050. msgstr "O tipo «%s» non se coñece na liña %u da lista de orixes %s"
  3051. #: apt-pkg/sourcelist.cc
  3052. #, c-format
  3053. msgid "Unsupported file %s given on commandline"
  3054. msgstr ""
  3055. #: apt-pkg/srcrecords.cc
  3056. msgid "You must put some 'source' URIs in your sources.list"
  3057. msgstr "Debe introducir algúns URI «orixe» no seu ficheiro sources.list"
  3058. #: apt-pkg/tagfile.cc
  3059. #, c-format
  3060. msgid "Cannot convert %s to integer"
  3061. msgstr ""
  3062. #: apt-pkg/update.cc
  3063. #, fuzzy, c-format
  3064. msgid "Failed to fetch %s %s"
  3065. msgstr "Non foi posíbel obter %s %s\n"
  3066. #: apt-pkg/update.cc
  3067. #, fuzzy
  3068. msgid ""
  3069. "Some index files failed to download. They have been ignored, or old ones "
  3070. "used instead."
  3071. msgstr ""
  3072. "Algúns ficheiros de índice fallaron durante a descarga. Ignoráronse, ou "
  3073. "foron utilizados algúns antigos no seu lugar"
  3074. #: apt-pkg/upgrade.cc
  3075. msgid "Calculating upgrade"
  3076. msgstr "Calculando a anovación"
  3077. #~ msgid ""
  3078. #~ "Usage: apt-cache [options] command\n"
  3079. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3080. #~ "\n"
  3081. #~ "apt-cache is a low-level tool used to query information\n"
  3082. #~ "from APT's binary cache files\n"
  3083. #~ msgstr ""
  3084. #~ "Uso: apt-cache [opcións] orde\n"
  3085. #~ " apt-cache [opcións] show paquete1 [paquete2 ...]\n"
  3086. #~ "\n"
  3087. #~ "apt-cache é unha ferramenta de baixo nivel usada para consultar\n"
  3088. #~ "informacións dos ficheiros binarios da cache do APT\n"
  3089. #~ msgid ""
  3090. #~ "Options:\n"
  3091. #~ " -h This help text.\n"
  3092. #~ " -p=? The package cache.\n"
  3093. #~ " -s=? The source cache.\n"
  3094. #~ " -q Disable progress indicator.\n"
  3095. #~ " -i Show only important deps for the unmet command.\n"
  3096. #~ " -c=? Read this configuration file\n"
  3097. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3098. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3099. #~ msgstr ""
  3100. #~ "Options:\n"
  3101. #~ " -h Este texto de axuda.\n"
  3102. #~ " -p=? A cache do paquete.\n"
  3103. #~ " -s=? A cache da fonte.\n"
  3104. #~ " -q Desactiva o indicador de progreso.\n"
  3105. #~ " -i Mostra soamente dependencias importantes para a orde unmet.\n"
  3106. #~ " -c=? Ler este ficheiro de configuración\n"
  3107. #~ " -o=? Define unha opción arbitraria de configuración, ex. -o dir::cache=/"
  3108. #~ "tmp\n"
  3109. #~ "Vexa a páxina de manual apt-cache(8) e apt.conf(5) para obter mais "
  3110. #~ "información.\n"
  3111. #~ msgid ""
  3112. #~ "Usage: apt-config [options] command\n"
  3113. #~ "\n"
  3114. #~ "apt-config is a simple tool to read the APT config file\n"
  3115. #~ msgstr ""
  3116. #~ "Uso: apt-config [opcións] orde\n"
  3117. #~ "\n"
  3118. #~ "apt-config é unha ferramenta simple para ler a configuración de APT\n"
  3119. #~ msgid ""
  3120. #~ "Options:\n"
  3121. #~ " -h This help text.\n"
  3122. #~ " -c=? Read this configuration file\n"
  3123. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3124. #~ msgstr ""
  3125. #~ "Opcións:\n"
  3126. #~ " -h Este texto de axuda.\n"
  3127. #~ " -c=? Le este ficheiro de configuración\n"
  3128. #~ " -o=? Estabelece unha opción de configuración, por exemplo: -o dir::"
  3129. #~ "cache=/tmp\n"
  3130. #~ msgid ""
  3131. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3132. #~ "\n"
  3133. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3134. #~ "used\n"
  3135. #~ "to indicate what kind of file it is.\n"
  3136. #~ "\n"
  3137. #~ "Options:\n"
  3138. #~ " -h This help text\n"
  3139. #~ " -s Use source file sorting\n"
  3140. #~ " -c=? Read this configuration file\n"
  3141. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3142. #~ msgstr ""
  3143. #~ "Emprego: apt-sortpkgs [opcións] fich1 [fich2 ...]\n"
  3144. #~ "\n"
  3145. #~ "apt-sortpkgs é unha ferramenta simple para ordenar ficheiros de "
  3146. #~ "paquetes.\n"
  3147. #~ "A opción -s emprégase para indicar o tipo de ficheiro que é.\n"
  3148. #~ "\n"
  3149. #~ "Opcións:\n"
  3150. #~ " -h Este texto de axuda\n"
  3151. #~ " -s Emprega ordenamento por ficheiros fonte\n"
  3152. #~ " -c=? Le este ficheiro de configuración\n"
  3153. #~ " -o=? Estabelece unha opción de configuración; por exemplo, -o dir::"
  3154. #~ "cache=/tmp\n"
  3155. #~ msgid "Child process failed"
  3156. #~ msgstr "O proceso fillo fallou"
  3157. #, fuzzy
  3158. #~ msgid "Must specifc at least one srv record"
  3159. #~ msgstr "Ten que especificar polo menos un paquete para obter o código fonte"
  3160. #~ msgid "Failed to create pipes"
  3161. #~ msgstr "Non foi posíbel crear as canles"
  3162. #~ msgid "Failed to exec gzip "
  3163. #~ msgstr "Non foi posíbel executar gzip "
  3164. #~ msgid "%s %s for %s compiled on %s %s\n"
  3165. #~ msgstr "%s %s para %s compilado en %s %s\n"
  3166. #~ msgid "Failed to create FILE*"
  3167. #~ msgstr "Non foi posíbel crear o FILE*"
  3168. #, fuzzy
  3169. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3170. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)"
  3171. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3172. #~ msgstr ""
  3173. #~ "Liña %lu mal construída na lista de fontes %s ([opción] non analizábel)"
  3174. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3175. #~ msgstr ""
  3176. #~ "Liña %lu mal construída na lista de fontes %s ([opción] demasiado curta)"
  3177. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3178. #~ msgstr ""
  3179. #~ "Liña %lu mal construída na lista de fontes %s ([%s] non é unha asignación)"
  3180. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3181. #~ msgstr "Liña %lu mal construída na lista de fontes %s ([%s] non ten chave)"
  3182. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3183. #~ msgstr ""
  3184. #~ "Liña %lu mal construída na lista de fontes %s ([%s] a chave %s non ten "
  3185. #~ "valor)"
  3186. #~ msgid "Malformed line %lu in source list %s (URI)"
  3187. #~ msgstr "Liña %lu mal construída na lista de orixes %s (URI)"
  3188. #~ msgid "Malformed line %lu in source list %s (dist)"
  3189. #~ msgstr "Liña %lu mal construída na lista de orixes %s (dist)"
  3190. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3191. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de URI)"
  3192. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3193. #~ msgstr "Liña %lu mal construída na lista de orixes %s (dist absoluta)"
  3194. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3195. #~ msgstr "Liña %lu mal construída na lista de orixes %s (análise de dist)"
  3196. #~ msgid "Package %s %s was not found while processing file dependencies"
  3197. #~ msgstr ""
  3198. #~ "Non foi posíbel atopar o paquete %s %s ao procesar as dependencias de "
  3199. #~ "ficheiros"
  3200. #~ msgid "Couldn't stat source package list %s"
  3201. #~ msgstr "Non foi posíbel atopar a lista de paquetes fonte %s"
  3202. #~ msgid "Collecting File Provides"
  3203. #~ msgstr "Recollendo as provisións de ficheiros"
  3204. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3205. #~ msgstr ""
  3206. #~ "Non é posíbel ler a suma de comprobación para «%s» no ficheiro de "
  3207. #~ "publicación"
  3208. #~ msgid "Vendor block %s contains no fingerprint"
  3209. #~ msgstr "O bloque de provedor %s non contén unha pegada dixital"
  3210. #~ msgid "Total dependency version space: "
  3211. #~ msgstr "Espazo total de versións de dependencias: "
  3212. #~ msgid "You don't have enough free space in %s"
  3213. #~ msgstr "Non hai espazo libre abondo en %s"
  3214. #~ msgid "Done"
  3215. #~ msgstr "Feito"
  3216. #~ msgid "No keyring installed in %s."
  3217. #~ msgstr "Non ha ningún chaveiro instalado en %s."
  3218. #, fuzzy
  3219. #~ msgid "Internal error, Upgrade broke stuff"
  3220. #~ msgstr "Produciuse un erro interno, AllUpgrade estragou cousas"
  3221. #~ msgid "%s not a valid DEB package."
  3222. #~ msgstr "%s non é un paquete DEB válido."
  3223. #~ msgid ""
  3224. #~ "Using CD-ROM mount point %s\n"
  3225. #~ "Mounting CD-ROM\n"
  3226. #~ msgstr ""
  3227. #~ "Empregando o punto de montaxe de CD-ROMs %s\n"
  3228. #~ "Montando o CD-ROM\n"
  3229. #~ msgid ""
  3230. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3231. #~ "seems to be corrupt."
  3232. #~ msgstr ""
  3233. #~ "Non foi posíbel actualizar %s con mmap e co ficheiro usado na operación - "
  3234. #~ "a actualización semella estar danada."
  3235. #~ msgid ""
  3236. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3237. #~ "seems to be corrupt."
  3238. #~ msgstr ""
  3239. #~ "Non foi posíbel actualizar %s con mmap e (mais non hai un fallo "
  3240. #~ "específico de mmap) - a actualización semella estar danada."
  3241. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3242. #~ msgstr "Ignorase a versión de destino «%s» non dispoñíbel do paquete «%s»"
  3243. #~ msgid "Downloading %s %s"
  3244. #~ msgstr "Descargando %s %s"
  3245. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3246. #~ msgstr ""
  3247. #~ "Este non é un arquivo DEB correcto, non ten un membro «%s», «%s» ou «%s»"
  3248. #~ msgid "MD5Sum mismatch"
  3249. #~ msgstr "A MD5Sum non coincide"
  3250. #~ msgid ""
  3251. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3252. #~ "need to manually fix this package."
  3253. #~ msgstr ""
  3254. #~ "Non é posíbel atopar un ficheiro para o paquete %s. Isto pode significar "
  3255. #~ "que ten que arranxar este paquete a man."
  3256. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3257. #~ msgstr ""
  3258. #~ "Non foi posíbel escribir no rexistro, a chamada a openpty() fallou (/dev/"
  3259. #~ "pts non estaba montado?)\n"
  3260. #~ msgid "Skipping nonexistent file %s"
  3261. #~ msgstr "Omitindo o ficheiro inexistente %s"
  3262. #~ msgid "Failed to remove %s"
  3263. #~ msgstr "Non foi posíbel retirar %s"
  3264. #~ msgid "Unable to create %s"
  3265. #~ msgstr "Non é posíbel crear %s"
  3266. #~ msgid "Failed to stat %sinfo"
  3267. #~ msgstr "Non foi posíbel atopar %sinfo"
  3268. #~ msgid "The info and temp directories need to be on the same filesystem"
  3269. #~ msgstr ""
  3270. #~ "Os directorios info e temp teñen que estar no mesmo sistema de ficheiros"
  3271. #~ msgid "Failed to change to the admin dir %sinfo"
  3272. #~ msgstr "Non foi posíbel cambiar ao directorio de administración %sinfo"
  3273. #~ msgid "Internal error getting a package name"
  3274. #~ msgstr "Produciuse un erro interno ao obter un nome de paquete"
  3275. #~ msgid "Reading file listing"
  3276. #~ msgstr "Lendo a lista de ficheiros"
  3277. #~ msgid ""
  3278. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3279. #~ "then make it empty and immediately re-install the same version of the "
  3280. #~ "package!"
  3281. #~ msgstr ""
  3282. #~ "Non foi posíbel abrir o ficheiro de listas «%sinfo/%s». Se non pode "
  3283. #~ "recuperalo, baléireo e reinstale a mesma versión do paquete."
  3284. #~ msgid "Failed reading the list file %sinfo/%s"
  3285. #~ msgstr "Non foi posíbel ler o ficheiro de listas %sinfo/%s"
  3286. #~ msgid "Internal error getting a node"
  3287. #~ msgstr "Produciuse un erro interno ao obter un nodo"
  3288. #~ msgid "Failed to open the diversions file %sdiversions"
  3289. #~ msgstr "Non foi posíbel abrir o ficheiro de desvíos %sdiversions"
  3290. #~ msgid "The diversion file is corrupted"
  3291. #~ msgstr "O ficheiro de desvíos está danado"
  3292. #~ msgid "Invalid line in the diversion file: %s"
  3293. #~ msgstr "Liña incorrecta no ficheiro de desvíos: %s"
  3294. #~ msgid "Internal error adding a diversion"
  3295. #~ msgstr "Produciuse un erro interno ao engadir un desvío"
  3296. #~ msgid "The pkg cache must be initialized first"
  3297. #~ msgstr "Antes ten que inicializarse a caché de paquetes"
  3298. #~ msgid "Failed to find a Package: header, offset %lu"
  3299. #~ msgstr "Non foi posíbel atopar unha cabeceira Package:, desprazamento %lu"
  3300. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3301. #~ msgstr ""
  3302. #~ "Sección ConfFile incorrecta no ficheiro de estado. Desprazamento %lu"
  3303. #~ msgid "Error parsing MD5. Offset %lu"
  3304. #~ msgstr "Produciuse un erro ao analizar o MD5. Desprazamento %lu"
  3305. #~ msgid "Couldn't change to %s"
  3306. #~ msgstr "Non foi posíbel cambiar a %s"
  3307. #~ msgid "Failed to locate a valid control file"
  3308. #~ msgstr "Non foi posíbel atopar un ficheiro de control correcto"
  3309. #~ msgid "Couldn't open pipe for %s"
  3310. #~ msgstr "Non foi posíbel abrir unha canle para %s"
  3311. #~ msgid "Read error from %s process"
  3312. #~ msgstr "Erro de lectura do proceso %s"
  3313. #~ msgid "Got a single header line over %u chars"
  3314. #~ msgstr "Obtivose unha soa liña de cabeceira en %u caracteres"
  3315. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3316. #~ msgstr "Nota: Isto será feito automaticamente por dpkg."
  3317. #~ msgid "Malformed override %s line %lu #1"
  3318. #~ msgstr "«Override» %s liña %lu incorrecta (1)"
  3319. #~ msgid "Malformed override %s line %lu #2"
  3320. #~ msgstr "«Override» %s liña %lu incorrecta (2)"
  3321. #~ msgid "Malformed override %s line %lu #3"
  3322. #~ msgstr "«Override» %s liña %lu incorrecta (3)"
  3323. #~ msgid "decompressor"
  3324. #~ msgstr "descompresor"
  3325. #~ msgid "read, still have %lu to read but none left"
  3326. #~ msgstr "lectura, aínda hai %lu para ler pero non queda ningún"
  3327. #~ msgid "write, still have %lu to write but couldn't"
  3328. #~ msgstr "escritura, aínda hai %lu para escribir pero non se puido"
  3329. #~ msgid ""
  3330. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3331. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3332. #~ msgstr ""
  3333. #~ "Non foi posíbel realizar a configuración inmediata no paquete, aínda sen "
  3334. #~ "desempaquetar, «%s». Vexa man 5 apt.conf baixo APT::Immediate-Configure "
  3335. #~ "para obter máis detalles."
  3336. #~ msgid "Error occurred while processing %s (NewPackage)"
  3337. #~ msgstr "Produciuse un erro ao procesar %s (NewPackage)"
  3338. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3339. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage1)"
  3340. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3341. #~ msgstr "Produciuse un erro ao procesar %s (NewFileDesc1)"
  3342. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3343. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage2)"
  3344. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3345. #~ msgstr "Produciuse un erro ao procesar %s (NewFileVer1)"
  3346. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3347. #~ msgstr "Produciuse un erro ao procesar %s (NewVersion%d)"
  3348. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3349. #~ msgstr "Produciuse un erro ao procesar %s (UsePackage3)"
  3350. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3351. #~ msgstr "Produciuse un erro ao procesar %s (NewFileDesc2)"
  3352. #~ msgid "Error occurred while processing %s (FindPkg)"
  3353. #~ msgstr "Produciuse un erro ao procesar %s (FindPkg)"
  3354. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3355. #~ msgstr "Produciuse un erro ao procesar %s (CollectFileProvides)"
  3356. #, fuzzy
  3357. #~| msgid "Internal error, could not locate member %s"
  3358. #~ msgid "Internal error, could not locate member"
  3359. #~ msgstr "Produciuse un erro interno, non foi posíbel atopar o membro %s"
  3360. #~ msgid "Release file expired, ignoring %s (invalid since %s)"
  3361. #~ msgstr ""
  3362. #~ "Caducou o ficheiro de publicación, ignorando %s (non válido desde %s)"
  3363. #~ msgid " %4i %s\n"
  3364. #~ msgstr "\n"
  3365. #~ msgid "%4i %s\n"
  3366. #~ msgstr "\n"