eu.po 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092
  1. # translation of apt_po_eu.po to Euskara
  2. # This file is put in the public domain.
  3. #
  4. # Hizkuntza Politikarako Sailburuordetza <hizkpol@ej-gv.es>, 2005.
  5. # Piarres Beobide <pi@beobide.net>, 2005, 2006, 2007, 2008, 2009.
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 1.0.5\n"
  9. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  10. "POT-Creation-Date: 2016-05-11 10:50+0200\n"
  11. "PO-Revision-Date: 2009-05-17 00:41+0200\n"
  12. "Last-Translator: Piarres Beobide <pi@beobide.net>\n"
  13. "Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
  14. "Language: eu\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: KBabel 1.11.4\n"
  19. "Plural-Forms: nplurals=2; plural=(n != 1)\n"
  20. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  21. #: apt-private/acqprogress.cc
  22. #, c-format
  23. msgid "Hit:%lu %s"
  24. msgstr "Atzituta:%lu %s"
  25. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  26. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  27. #: apt-private/acqprogress.cc
  28. #, c-format
  29. msgid "Get:%lu %s"
  30. msgstr "Hartu:%lu %s"
  31. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  32. #. which failed to download, but the error is ignored (compare "Err:")
  33. #: apt-private/acqprogress.cc
  34. #, c-format
  35. msgid "Ign:%lu %s"
  36. msgstr "Ez ikusi:%lu %s"
  37. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  38. #. which failed to download and the error is critical (compare "Ign:")
  39. #: apt-private/acqprogress.cc
  40. #, c-format
  41. msgid "Err:%lu %s"
  42. msgstr ""
  43. #: apt-private/acqprogress.cc
  44. #, c-format
  45. msgid "Fetched %sB in %s (%sB/s)\n"
  46. msgstr "Lortuta: %sB (%s) (%sB/s)\n"
  47. #: apt-private/acqprogress.cc
  48. msgid " [Working]"
  49. msgstr " [Lanean]"
  50. #: apt-private/acqprogress.cc
  51. #, fuzzy, c-format
  52. msgid ""
  53. "Media change: please insert the disc labeled\n"
  54. " '%s'\n"
  55. "in the drive '%s' and press [Enter]\n"
  56. msgstr ""
  57. "Medio Aldaketa: Mesedez sar\n"
  58. " '%s'\n"
  59. "izeneko diska '%s' gailuan eta enter sakatu\n"
  60. #: apt-private/private-cachefile.cc
  61. msgid "Correcting dependencies..."
  62. msgstr "Mendekotasunak zuzentzen..."
  63. #: apt-private/private-cachefile.cc
  64. msgid " failed."
  65. msgstr " : huts egin du."
  66. #: apt-private/private-cachefile.cc
  67. msgid "Unable to correct dependencies"
  68. msgstr "Ezin dira mendekotasunak zuzendu"
  69. #: apt-private/private-cachefile.cc
  70. msgid "Unable to minimize the upgrade set"
  71. msgstr "Ezin da bertsio berritzeko multzoa minimizatu"
  72. #: apt-private/private-cachefile.cc
  73. msgid " Done"
  74. msgstr " Eginda"
  75. #: apt-private/private-cachefile.cc
  76. msgid "You might want to run 'apt-get -f install' to correct these."
  77. msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu zuzentzeko."
  78. #: apt-private/private-cachefile.cc
  79. msgid "Unmet dependencies. Try using -f."
  80. msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz."
  81. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  82. msgid "Sorting"
  83. msgstr ""
  84. #: apt-private/private-cacheset.cc
  85. #, fuzzy, c-format
  86. msgid "Note, selecting '%s' for task '%s'\n"
  87. msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
  88. #: apt-private/private-cacheset.cc
  89. #, fuzzy, c-format
  90. msgid "Note, selecting '%s' for glob '%s'\n"
  91. msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
  92. #: apt-private/private-cacheset.cc
  93. #, fuzzy, c-format
  94. msgid "Note, selecting '%s' for regex '%s'\n"
  95. msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n"
  96. #: apt-private/private-cacheset.cc
  97. #, c-format
  98. msgid "Package %s is a virtual package provided by:\n"
  99. msgstr "%s pakete birtual bat da, honek hornitua:\n"
  100. #: apt-private/private-cacheset.cc
  101. #, fuzzy
  102. msgid " [Installed]"
  103. msgstr " [Instalatuta]"
  104. #: apt-private/private-cacheset.cc
  105. #, fuzzy
  106. msgid " [Not candidate version]"
  107. msgstr "Hautagaien bertsioak"
  108. #: apt-private/private-cacheset.cc
  109. msgid "You should explicitly select one to install."
  110. msgstr "Zehazki bat hautatu behar duzu instalatzeko."
  111. #: apt-private/private-cacheset.cc
  112. #, c-format
  113. msgid ""
  114. "Package %s is not available, but is referred to by another package.\n"
  115. "This may mean that the package is missing, has been obsoleted, or\n"
  116. "is only available from another source\n"
  117. msgstr ""
  118. "%s paketea ez dago erabilgarri, baina beste pakete batek erreferentzia \n"
  119. "egiten dio. Beharbada paketea faltako da, edo zaharkituta egongo da, edo \n"
  120. "beste iturburu batean bakarrik egongo da erabilgarri\n"
  121. #: apt-private/private-cacheset.cc
  122. msgid "However the following packages replace it:"
  123. msgstr "Baina ondorengo paketeek ordezten dute:"
  124. #: apt-private/private-cacheset.cc
  125. #, fuzzy, c-format
  126. msgid "Package '%s' has no installation candidate"
  127. msgstr "%s paketeak ez du instalatzeko hautagairik"
  128. #: apt-private/private-cacheset.cc
  129. #, c-format
  130. msgid "Virtual packages like '%s' can't be removed\n"
  131. msgstr ""
  132. #. TRANSLATORS: Note, this is not an interactive question
  133. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  134. #, fuzzy, c-format
  135. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  136. msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
  137. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  138. #, fuzzy, c-format
  139. msgid "Package '%s' is not installed, so not removed\n"
  140. msgstr "%s paketea ez dago instalatuta, eta, beraz, ez da kenduko\n"
  141. #: apt-private/private-cacheset.cc
  142. #, fuzzy, c-format
  143. msgid "Note, selecting '%s' instead of '%s'\n"
  144. msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
  145. #: apt-private/private-cmndline.cc
  146. msgid "Most used commands:"
  147. msgstr ""
  148. #: apt-private/private-cmndline.cc
  149. #, c-format
  150. msgid "See %s for more information about the available commands."
  151. msgstr ""
  152. #: apt-private/private-cmndline.cc
  153. msgid ""
  154. "Configuration options and syntax is detailed in apt.conf(5).\n"
  155. "Information about how to configure sources can be found in sources.list(5).\n"
  156. "Package and version choices can be expressed via apt_preferences(5).\n"
  157. "Security details are available in apt-secure(8).\n"
  158. msgstr ""
  159. #: apt-private/private-cmndline.cc
  160. msgid "This APT has Super Cow Powers."
  161. msgstr "APT honek Super Behiaren Ahalmenak ditu."
  162. #: apt-private/private-cmndline.cc
  163. msgid "This APT helper has Super Meep Powers."
  164. msgstr ""
  165. #: apt-private/private-depends.cc apt-private/private-show.cc
  166. #: cmdline/apt-mark.cc
  167. msgid "No packages found"
  168. msgstr "Ez da paketerik aurkitu"
  169. #: apt-private/private-download.cc
  170. msgid "WARNING: The following packages cannot be authenticated!"
  171. msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!"
  172. #: apt-private/private-download.cc
  173. msgid "Authentication warning overridden.\n"
  174. msgstr "Egiaztapen abisua gainidazten.\n"
  175. #: apt-private/private-download.cc
  176. msgid "Some packages could not be authenticated"
  177. msgstr "Zenbait pakete ezin dira egiaztatu"
  178. #: apt-private/private-download.cc
  179. msgid "Install these packages without verification?"
  180. msgstr "Paketeak egiaztapen gabe instalatu?"
  181. #: apt-private/private-download.cc apt-private/private-install.cc
  182. msgid ""
  183. "--force-yes is deprecated, use one of the options starting with --allow "
  184. "instead."
  185. msgstr ""
  186. #: apt-private/private-download.cc
  187. #, fuzzy
  188. msgid ""
  189. "There were unauthenticated packages and -y was used without --allow-"
  190. "unauthenticated"
  191. msgstr "Arazoak daude, eta -y erabili da --force-yes gabe"
  192. #: apt-private/private-download.cc apt-pkg/update.cc
  193. #, c-format
  194. msgid "Failed to fetch %s %s"
  195. msgstr "Ezin da lortu %s %s"
  196. #: apt-private/private-download.cc
  197. #, c-format
  198. msgid "Couldn't determine free space in %s"
  199. msgstr "Ezin da %s(e)n duzun leku librea atzeman."
  200. #: apt-private/private-download.cc
  201. #, c-format
  202. msgid "You don't have enough free space in %s."
  203. msgstr "Ez daukazu nahikoa leku libre %s(e)n."
  204. #: apt-private/private-download.cc
  205. msgid "Unable to lock the download directory"
  206. msgstr "Ezin da deskarga direktorioa blokeatu"
  207. #: apt-private/private-install.cc
  208. msgid ""
  209. "Some packages could not be installed. This may mean that you have\n"
  210. "requested an impossible situation or if you are using the unstable\n"
  211. "distribution that some required packages have not yet been created\n"
  212. "or been moved out of Incoming."
  213. msgstr ""
  214. "Pakete batzuk ezin izan dira instalatu. Beharbada ezinezko egoera \n"
  215. "bat eskatu duzu, edo, banaketa ezegonkorra erabiltzen ari bazara,\n"
  216. "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n"
  217. "Sarrerakoetan (Incoming) egoten jarraituko dute."
  218. #.
  219. #. if (Packages == 1)
  220. #. {
  221. #. c1out << std::endl;
  222. #. c1out <<
  223. #. _("Since you only requested a single operation it is extremely likely that\n"
  224. #. "the package is simply not installable and a bug report against\n"
  225. #. "that package should be filed.") << std::endl;
  226. #. }
  227. #.
  228. #: apt-private/private-install.cc
  229. msgid "The following information may help to resolve the situation:"
  230. msgstr "Informazio honek arazoa konpontzen lagun dezake:"
  231. #: apt-private/private-install.cc
  232. msgid "Broken packages"
  233. msgstr "Hautsitako paketeak"
  234. #: apt-private/private-install.cc
  235. msgid "Internal error, InstallPackages was called with broken packages!"
  236. msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!"
  237. #: apt-private/private-install.cc
  238. msgid "Packages need to be removed but remove is disabled."
  239. msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago."
  240. #: apt-private/private-install.cc
  241. #, fuzzy
  242. msgid ""
  243. "Essential packages were removed and -y was used without --allow-remove-"
  244. "essential."
  245. msgstr "Arazoak daude, eta -y erabili da --force-yes gabe"
  246. #: apt-private/private-install.cc
  247. #, fuzzy
  248. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  249. msgstr "Arazoak daude, eta -y erabili da --force-yes gabe"
  250. #: apt-private/private-install.cc
  251. msgid ""
  252. "Held packages were changed and -y was used without --allow-change-held-"
  253. "packages."
  254. msgstr ""
  255. #: apt-private/private-install.cc
  256. msgid "Internal error, Ordering didn't finish"
  257. msgstr "Barne errorea, ez da ordenatzeaz amaitu"
  258. #: apt-private/private-install.cc
  259. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  260. msgstr ""
  261. "Hau bitxia... Tamainak ez dira berdina, idatzi apt@packages.debian.org-ra "
  262. "berri emanez (ingelesez)"
  263. #. TRANSLATOR: The required space between number and unit is already included
  264. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  265. #: apt-private/private-install.cc
  266. #, c-format
  267. msgid "Need to get %sB/%sB of archives.\n"
  268. msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n"
  269. #. TRANSLATOR: The required space between number and unit is already included
  270. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  271. #: apt-private/private-install.cc
  272. #, c-format
  273. msgid "Need to get %sB of archives.\n"
  274. msgstr "Artxiboetako %sB eskuratu behar dira.\n"
  275. #. TRANSLATOR: The required space between number and unit is already included
  276. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  277. #: apt-private/private-install.cc
  278. #, c-format
  279. msgid "After this operation, %sB of additional disk space will be used.\n"
  280. msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n"
  281. #. TRANSLATOR: The required space between number and unit is already included
  282. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  283. #: apt-private/private-install.cc
  284. #, c-format
  285. msgid "After this operation, %sB disk space will be freed.\n"
  286. msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n"
  287. #: apt-private/private-install.cc
  288. msgid "Trivial Only specified but this is not a trivial operation."
  289. msgstr "'Trivial Only' zehaztu da, baina hau ez da eragiketa tribial bat."
  290. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  291. #. careful with hard to type or special characters (like non-breaking spaces)
  292. #: apt-private/private-install.cc
  293. msgid "Yes, do as I say!"
  294. msgstr "Bai, egin esandakoa!"
  295. #: apt-private/private-install.cc
  296. #, c-format
  297. msgid ""
  298. "You are about to do something potentially harmful.\n"
  299. "To continue type in the phrase '%s'\n"
  300. " ?] "
  301. msgstr ""
  302. "Egin nahi duzunak kalte larriak eragin ditzake\n"
  303. "Jarraitzeko, idatzi '%s' esaldia\n"
  304. " ?] "
  305. #: apt-private/private-install.cc
  306. msgid "Abort."
  307. msgstr "Abortatu."
  308. #: apt-private/private-install.cc
  309. msgid "Do you want to continue?"
  310. msgstr "Aurrera jarraitu nahi al duzu?"
  311. #: apt-private/private-install.cc
  312. msgid "Some files failed to download"
  313. msgstr "Fitxategi batzuk ezin izan dira deskargatu"
  314. #: apt-private/private-install.cc apt-private/private-source.cc
  315. msgid "Download complete and in download only mode"
  316. msgstr "Deskarga amaituta eta deskarga soileko moduan"
  317. #: apt-private/private-install.cc
  318. msgid ""
  319. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  320. "missing?"
  321. msgstr ""
  322. "Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo "
  323. "--fix-missing aukerarekin saiatu?"
  324. #: apt-private/private-install.cc
  325. msgid "--fix-missing and media swapping is not currently supported"
  326. msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz"
  327. #: apt-private/private-install.cc
  328. msgid "Unable to correct missing packages."
  329. msgstr "Falta diren paketeak ezin dira zuzendu."
  330. #: apt-private/private-install.cc
  331. msgid "Aborting install."
  332. msgstr "Abortatu instalazioa."
  333. #: apt-private/private-install.cc
  334. msgid ""
  335. "The following package disappeared from your system as\n"
  336. "all files have been overwritten by other packages:"
  337. msgid_plural ""
  338. "The following packages disappeared from your system as\n"
  339. "all files have been overwritten by other packages:"
  340. msgstr[0] ""
  341. msgstr[1] ""
  342. #: apt-private/private-install.cc
  343. msgid "Note: This is done automatically and on purpose by dpkg."
  344. msgstr ""
  345. #: apt-private/private-install.cc
  346. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  347. msgstr "Suposatu ez dugun zerbait ezabatuko da, ezin da AutoRemover abiarazi"
  348. #: apt-private/private-install.cc
  349. msgid ""
  350. "Hmm, seems like the AutoRemover destroyed something which really\n"
  351. "shouldn't happen. Please file a bug report against apt."
  352. msgstr ""
  353. "Hmm, dirudienez AutoRemover-ek gertatu behar ez zen apurtu du\n"
  354. "Mesedez programa errore txosten bat bete mesedez."
  355. #: apt-private/private-install.cc
  356. msgid "Internal Error, AutoRemover broke stuff"
  357. msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du"
  358. #: apt-private/private-install.cc
  359. #, fuzzy
  360. msgid ""
  361. "The following package was automatically installed and is no longer required:"
  362. msgid_plural ""
  363. "The following packages were automatically installed and are no longer "
  364. "required:"
  365. msgstr[0] ""
  366. "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
  367. "behar."
  368. msgstr[1] ""
  369. "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
  370. "behar."
  371. #: apt-private/private-install.cc
  372. #, fuzzy, c-format
  373. msgid "%lu package was automatically installed and is no longer required.\n"
  374. msgid_plural ""
  375. "%lu packages were automatically installed and are no longer required.\n"
  376. msgstr[0] ""
  377. "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
  378. "behar."
  379. msgstr[1] ""
  380. "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago "
  381. "behar."
  382. #: apt-private/private-install.cc
  383. #, fuzzy, c-format
  384. msgid "Use '%s' to remove it."
  385. msgid_plural "Use '%s' to remove them."
  386. msgstr[0] "'%s' erabili ezabatzeko."
  387. msgstr[1] "'%s' erabili ezabatzeko."
  388. #: apt-private/private-install.cc
  389. msgid "You might want to run 'apt-get -f install' to correct these:"
  390. msgstr "Beharbada 'apt-get -f install' exekutatu nahiko duzu hauek zuzentzeko:"
  391. #: apt-private/private-install.cc
  392. msgid ""
  393. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  394. "solution)."
  395. msgstr ""
  396. "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo "
  397. "zehaztu konponbide bat)."
  398. #: apt-private/private-install.cc
  399. #, fuzzy
  400. msgid "The following additional packages will be installed:"
  401. msgstr "Ondorengo pakete gehigarriak instalatuko dira:"
  402. #: apt-private/private-install.cc
  403. msgid "Suggested packages:"
  404. msgstr "Iradokitako paketeak:"
  405. #: apt-private/private-install.cc
  406. msgid "Recommended packages:"
  407. msgstr "Gomendatutako paketeak:"
  408. #: apt-private/private-install.cc
  409. #, c-format
  410. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  411. msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n"
  412. #: apt-private/private-install.cc
  413. #, fuzzy, c-format
  414. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  415. msgstr "%s saltatzen. Instalatuta dago, eta ez dago bertsio-berritzerik.\n"
  416. #: apt-private/private-install.cc
  417. #, c-format
  418. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  419. msgstr "%s berriro instalatzea ez da posible; ezin da deskargatu.\n"
  420. #. TRANSLATORS: First string is package name, second is version
  421. #: apt-private/private-install.cc
  422. #, fuzzy, c-format
  423. msgid "%s is already the newest version (%s).\n"
  424. msgstr "%s bertsiorik berriena da jada.\n"
  425. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  426. #, c-format
  427. msgid "%s set to manually installed.\n"
  428. msgstr "%s eskuz instalatua bezala ezarri.\n"
  429. #: apt-private/private-install.cc
  430. #, fuzzy, c-format
  431. msgid "Selected version '%s' (%s) for '%s'\n"
  432. msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
  433. #: apt-private/private-install.cc
  434. #, fuzzy, c-format
  435. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  436. msgstr "Hautatutako bertsioa: %s (%s) -- %s\n"
  437. #: apt-private/private-list.cc
  438. msgid "Listing"
  439. msgstr ""
  440. #: apt-private/private-list.cc
  441. #, c-format
  442. msgid "There is %i additional version. Please use the '-a' switch to see it"
  443. msgid_plural ""
  444. "There are %i additional versions. Please use the '-a' switch to see them."
  445. msgstr[0] ""
  446. msgstr[1] ""
  447. #: apt-private/private-main.cc
  448. msgid ""
  449. "NOTE: This is only a simulation!\n"
  450. " apt-get needs root privileges for real execution.\n"
  451. " Keep also in mind that locking is deactivated,\n"
  452. " so don't depend on the relevance to the real current situation!"
  453. msgstr ""
  454. #: apt-private/private-output.cc apt-private/private-show.cc
  455. msgid "unknown"
  456. msgstr ""
  457. #: apt-private/private-output.cc
  458. #, fuzzy, c-format
  459. msgid "[installed,upgradable to: %s]"
  460. msgstr " [Instalatuta]"
  461. #: apt-private/private-output.cc
  462. #, fuzzy
  463. msgid "[installed,local]"
  464. msgstr " [Instalatuta]"
  465. #: apt-private/private-output.cc
  466. msgid "[installed,auto-removable]"
  467. msgstr ""
  468. #: apt-private/private-output.cc
  469. #, fuzzy
  470. msgid "[installed,automatic]"
  471. msgstr " [Instalatuta]"
  472. #: apt-private/private-output.cc
  473. #, fuzzy
  474. msgid "[installed]"
  475. msgstr " [Instalatuta]"
  476. #: apt-private/private-output.cc
  477. #, c-format
  478. msgid "[upgradable from: %s]"
  479. msgstr ""
  480. #: apt-private/private-output.cc
  481. msgid "[residual-config]"
  482. msgstr ""
  483. #: apt-private/private-output.cc
  484. #, c-format
  485. msgid "but %s is installed"
  486. msgstr "baina %s instalatuta dago"
  487. #: apt-private/private-output.cc
  488. #, c-format
  489. msgid "but %s is to be installed"
  490. msgstr "baina %s instalatzeko dago"
  491. #: apt-private/private-output.cc
  492. msgid "but it is not installable"
  493. msgstr "baina ez da instalagarria"
  494. #: apt-private/private-output.cc
  495. msgid "but it is a virtual package"
  496. msgstr "baina pakete birtuala da"
  497. #: apt-private/private-output.cc
  498. msgid "but it is not installed"
  499. msgstr "baina ez dago instalatuta"
  500. #: apt-private/private-output.cc
  501. msgid "but it is not going to be installed"
  502. msgstr "baina ez da instalatuko"
  503. #: apt-private/private-output.cc
  504. msgid " or"
  505. msgstr " edo"
  506. #: apt-private/private-output.cc
  507. msgid "The following packages have unmet dependencies:"
  508. msgstr "Ondorengo paketeetan bete gabeko mendekotasunak daude:"
  509. #: apt-private/private-output.cc
  510. msgid "The following NEW packages will be installed:"
  511. msgstr "Ondorengo pakete BERRIAK instalatuko dira:"
  512. #: apt-private/private-output.cc
  513. msgid "The following packages will be REMOVED:"
  514. msgstr "Ondorengo paketeak KENDUKO dira:"
  515. #: apt-private/private-output.cc
  516. msgid "The following packages have been kept back:"
  517. msgstr "Ondorengo paketeak mantendu egin dira:"
  518. #: apt-private/private-output.cc
  519. msgid "The following packages will be upgraded:"
  520. msgstr "Ondorengo paketeak bertsio-berrituko dira:"
  521. #: apt-private/private-output.cc
  522. msgid "The following packages will be DOWNGRADED:"
  523. msgstr "Ondorengo paketeak AURREKO BERTSIORA itzuliko dira:"
  524. #: apt-private/private-output.cc
  525. msgid "The following held packages will be changed:"
  526. msgstr "Ondorengo pakete atxikiak aldatu egingo dira:"
  527. #: apt-private/private-output.cc
  528. #, c-format
  529. msgid "%s (due to %s)"
  530. msgstr "%s (arrazoia: %s)"
  531. #: apt-private/private-output.cc
  532. msgid ""
  533. "WARNING: The following essential packages will be removed.\n"
  534. "This should NOT be done unless you know exactly what you are doing!"
  535. msgstr ""
  536. "KONTUZ: Ondorengo funtsezko paketeak kendu egingo dira\n"
  537. "EZ ezazu horrelakorik egin, ez badakizu ondo zertan ari zaren!"
  538. #: apt-private/private-output.cc
  539. #, c-format
  540. msgid "%lu upgraded, %lu newly installed, "
  541. msgstr "%lu bertsio berritua(k), %lu berriki instalatuta, "
  542. #: apt-private/private-output.cc
  543. #, c-format
  544. msgid "%lu reinstalled, "
  545. msgstr "%lu berrinstalatuta, "
  546. #: apt-private/private-output.cc
  547. #, c-format
  548. msgid "%lu downgraded, "
  549. msgstr "%lu aurreko bertsiora itzulita, "
  550. #: apt-private/private-output.cc
  551. #, c-format
  552. msgid "%lu to remove and %lu not upgraded.\n"
  553. msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n"
  554. #: apt-private/private-output.cc
  555. #, c-format
  556. msgid "%lu not fully installed or removed.\n"
  557. msgstr "%lu ez erabat instalatuta edo kenduta.\n"
  558. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  559. #. e.g. "Do you want to continue? [Y/n] "
  560. #. The user has to answer with an input matching the
  561. #. YESEXPR/NOEXPR defined in your l10n.
  562. #: apt-private/private-output.cc
  563. msgid "[Y/n]"
  564. msgstr "[B/e]"
  565. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  566. #. e.g. "Should this file be removed? [y/N] "
  567. #. The user has to answer with an input matching the
  568. #. YESEXPR/NOEXPR defined in your l10n.
  569. #: apt-private/private-output.cc
  570. msgid "[y/N]"
  571. msgstr "[b/E]"
  572. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  573. #: apt-private/private-output.cc
  574. msgid "Y"
  575. msgstr ""
  576. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  577. #: apt-private/private-output.cc
  578. msgid "N"
  579. msgstr ""
  580. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  581. #, c-format
  582. msgid "Regex compilation error - %s"
  583. msgstr "Adierazpen erregularren konpilazio errorea - %s"
  584. #: apt-private/private-search.cc
  585. #, fuzzy
  586. msgid "You must give at least one search pattern"
  587. msgstr "Zehazki eredu bat eman behar duzu."
  588. #: apt-private/private-search.cc
  589. msgid "Full Text Search"
  590. msgstr ""
  591. #: apt-private/private-show.cc cmdline/apt-cache.cc
  592. #, c-format
  593. msgid "Package file %s is out of sync."
  594. msgstr "%s pakete fitxategia ez dago sinkronizatuta."
  595. #: apt-private/private-show.cc
  596. #, c-format
  597. msgid "There is %i additional record. Please use the '-a' switch to see it"
  598. msgid_plural ""
  599. "There are %i additional records. Please use the '-a' switch to see them."
  600. msgstr[0] ""
  601. msgstr[1] ""
  602. #: apt-private/private-show.cc
  603. msgid "not a real package (virtual)"
  604. msgstr ""
  605. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  606. #, c-format
  607. msgid "Unable to locate package %s"
  608. msgstr "Ezin da %s paketea lokalizatu"
  609. #: apt-private/private-show.cc
  610. msgid "Package files:"
  611. msgstr "Pakete Fitxategiak:"
  612. #: apt-private/private-show.cc
  613. msgid "Cache is out of sync, can't x-ref a package file"
  614. msgstr ""
  615. "Katxea ez dago sinkronizatuta, ezin zaio erreferentziarik (x-ref) egin "
  616. "pakete fitxategi bati"
  617. #. Show any packages have explicit pins
  618. #: apt-private/private-show.cc
  619. msgid "Pinned packages:"
  620. msgstr "Pin duten Paketeak:"
  621. #. Print the package name and the version we are forcing to
  622. #: apt-private/private-show.cc
  623. #, c-format
  624. msgid "%s -> %s with priority %d\n"
  625. msgstr ""
  626. #: apt-private/private-show.cc
  627. msgid " Installed: "
  628. msgstr " Instalatuta: "
  629. #: apt-private/private-show.cc
  630. msgid " Candidate: "
  631. msgstr " Hautagaia: "
  632. #: apt-private/private-show.cc
  633. msgid "(none)"
  634. msgstr "(bat ere ez)"
  635. #. Show the priority tables
  636. #: apt-private/private-show.cc
  637. msgid " Version table:"
  638. msgstr " Bertsio taula:"
  639. #: apt-private/private-source.cc
  640. #, fuzzy, c-format
  641. msgid "Can not find a package for architecture '%s'"
  642. msgstr "Ezin izan da %s paketea aurkitu"
  643. #: apt-private/private-source.cc
  644. #, fuzzy, c-format
  645. msgid "Can not find a package '%s' with version '%s'"
  646. msgstr "Ezin izan da %s paketea aurkitu"
  647. #: apt-private/private-source.cc
  648. #, fuzzy, c-format
  649. msgid "Can not find a package '%s' with release '%s'"
  650. msgstr "Ezin izan da %s paketea aurkitu"
  651. #: apt-private/private-source.cc
  652. #, fuzzy, c-format
  653. msgid "Picking '%s' as source package instead of '%s'\n"
  654. msgstr "Ezin da atzitu %s iturburu paketeen zerrenda"
  655. #: apt-private/private-source.cc
  656. #, c-format
  657. msgid "Can not find version '%s' of package '%s'"
  658. msgstr ""
  659. #: apt-private/private-source.cc
  660. msgid "Must specify at least one package to fetch source for"
  661. msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko"
  662. #: apt-private/private-source.cc
  663. #, c-format
  664. msgid "Unable to find a source package for %s"
  665. msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat"
  666. #: apt-private/private-source.cc
  667. #, c-format
  668. msgid ""
  669. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  670. "%s\n"
  671. msgstr ""
  672. #: apt-private/private-source.cc
  673. #, c-format
  674. msgid ""
  675. "Please use:\n"
  676. "%s\n"
  677. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  678. msgstr ""
  679. #: apt-private/private-source.cc
  680. #, c-format
  681. msgid "Skipping already downloaded file '%s'\n"
  682. msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n"
  683. #. TRANSLATOR: The required space between number and unit is already included
  684. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  685. #: apt-private/private-source.cc
  686. #, c-format
  687. msgid "Need to get %sB/%sB of source archives.\n"
  688. msgstr "Iturburu artxiboetako %sB/%sB eskuratu behar dira.\n"
  689. #. TRANSLATOR: The required space between number and unit is already included
  690. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  691. #: apt-private/private-source.cc
  692. #, c-format
  693. msgid "Need to get %sB of source archives.\n"
  694. msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n"
  695. #: apt-private/private-source.cc
  696. #, c-format
  697. msgid "Fetch source %s\n"
  698. msgstr "Eskuratu %s iturburua\n"
  699. #: apt-private/private-source.cc
  700. msgid "Failed to fetch some archives."
  701. msgstr "Huts egin du zenbat artxibo lortzean."
  702. #: apt-private/private-source.cc
  703. #, c-format
  704. msgid "Skipping unpack of already unpacked source in %s\n"
  705. msgstr ""
  706. "%s(e)n dagoeneko deskonprimitutako iturburua deskonprimitzea saltatzen\n"
  707. #: apt-private/private-source.cc
  708. #, c-format
  709. msgid "Unpack command '%s' failed.\n"
  710. msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n"
  711. #: apt-private/private-source.cc
  712. #, c-format
  713. msgid "Check if the 'dpkg-dev' package is installed.\n"
  714. msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n"
  715. #: apt-private/private-source.cc
  716. #, c-format
  717. msgid "Build command '%s' failed.\n"
  718. msgstr "Eraikitzeko '%s' komandoak huts egin du.\n"
  719. #: apt-private/private-source.cc
  720. #, c-format
  721. msgid "Unable to get build-dependency information for %s"
  722. msgstr "Ezin izan da %s(r)en eraikitze mendekotasunen informazioa eskuratu"
  723. #: apt-private/private-source.cc
  724. #, c-format
  725. msgid "%s has no build depends.\n"
  726. msgstr "%s: ez du eraikitze mendekotasunik.\n"
  727. #: apt-private/private-source.cc
  728. msgid "Must specify at least one package to check builddeps for"
  729. msgstr ""
  730. "Gutxienez pakete bat zehaztu behar duzu eraikitze mendekotasunak egiaztatzeko"
  731. #: apt-private/private-source.cc
  732. #, c-format
  733. msgid ""
  734. "No architecture information available for %s. See apt.conf(5) APT::"
  735. "Architectures for setup"
  736. msgstr ""
  737. #: apt-private/private-source.cc
  738. #, c-format
  739. msgid "Note, using directory '%s' to get the build dependencies\n"
  740. msgstr ""
  741. #: apt-private/private-source.cc
  742. #, fuzzy, c-format
  743. msgid "Note, using file '%s' to get the build dependencies\n"
  744. msgstr "Huts egin du eraikitze mendekotasunak prozesatzean"
  745. #: apt-private/private-source.cc
  746. msgid "Failed to process build dependencies"
  747. msgstr "Huts egin du eraikitze mendekotasunak prozesatzean"
  748. #: apt-private/private-sources.cc
  749. #, fuzzy, c-format
  750. msgid "Failed to parse %s. Edit again? "
  751. msgstr "Huts egin du %s izenaren ordez %s ipintzean"
  752. #: apt-private/private-sources.cc
  753. #, c-format
  754. msgid "Your '%s' file changed, please run 'apt-get update'."
  755. msgstr ""
  756. #: apt-private/private-unmet.cc
  757. #, c-format
  758. msgid "Package %s version %s has an unmet dep:\n"
  759. msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n"
  760. #: apt-private/private-update.cc
  761. msgid "The update command takes no arguments"
  762. msgstr "Eguneratzeko komandoak ez du argumenturik hartzen"
  763. #: apt-private/private-update.cc
  764. #, c-format
  765. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  766. msgid_plural ""
  767. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  768. msgstr[0] ""
  769. msgstr[1] ""
  770. #: apt-private/private-update.cc
  771. msgid "All packages are up to date."
  772. msgstr ""
  773. #: cmdline/apt-cache.cc
  774. #, fuzzy
  775. msgid "apt-cache stats does not take any arguments"
  776. msgstr "Eguneratzeko komandoak ez du argumenturik hartzen"
  777. #: cmdline/apt-cache.cc
  778. msgid "Total package names: "
  779. msgstr "Pakete Izenak Guztira : "
  780. #: cmdline/apt-cache.cc
  781. #, fuzzy
  782. msgid "Total package structures: "
  783. msgstr "Pakete Izenak Guztira : "
  784. #: cmdline/apt-cache.cc
  785. msgid " Normal packages: "
  786. msgstr " Pakete normalak:"
  787. #: cmdline/apt-cache.cc
  788. msgid " Pure virtual packages: "
  789. msgstr " Pakete birtual puruak:"
  790. #: cmdline/apt-cache.cc
  791. msgid " Single virtual packages: "
  792. msgstr " Bakanako pakete birtualak: "
  793. #: cmdline/apt-cache.cc
  794. msgid " Mixed virtual packages: "
  795. msgstr " Nahastutako pakete birtualak: "
  796. #: cmdline/apt-cache.cc
  797. msgid " Missing: "
  798. msgstr " Falta direnak: "
  799. #: cmdline/apt-cache.cc
  800. msgid "Total distinct versions: "
  801. msgstr "Bertsio Ezberdinak Guztira: "
  802. #: cmdline/apt-cache.cc
  803. msgid "Total distinct descriptions: "
  804. msgstr "Azalpen Ezberdinak Guztira: "
  805. #: cmdline/apt-cache.cc
  806. msgid "Total dependencies: "
  807. msgstr "Dependentziak Guztira: "
  808. #: cmdline/apt-cache.cc
  809. msgid "Total ver/file relations: "
  810. msgstr "Guztira Bertsio/fitxategi erlazioak: "
  811. #: cmdline/apt-cache.cc
  812. msgid "Total Desc/File relations: "
  813. msgstr "Fitx/Azalpen erlazioak guztira: "
  814. #: cmdline/apt-cache.cc
  815. msgid "Total Provides mappings: "
  816. msgstr "Guztira Saltzaile Mapatzea: "
  817. #: cmdline/apt-cache.cc
  818. msgid "Total globbed strings: "
  819. msgstr "Guztira bateratutako kateak: "
  820. #: cmdline/apt-cache.cc
  821. msgid "Total slack space: "
  822. msgstr "Guztira galdutako tokia:"
  823. #: cmdline/apt-cache.cc
  824. msgid "Total space accounted for: "
  825. msgstr "Guztira erregistratutako lekua: "
  826. #: cmdline/apt-cache.cc
  827. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  828. msgstr ""
  829. #: cmdline/apt-cache.cc
  830. msgid ""
  831. "Usage: apt-cache [options] command\n"
  832. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  833. "\n"
  834. "apt-cache queries and displays available information about installed\n"
  835. "and installable packages. It works exclusively on the data acquired\n"
  836. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  837. "displayed information may therefore be outdated if the last update was\n"
  838. "too long ago, but in exchange apt-cache works independently of the\n"
  839. "availability of the configured sources (e.g. offline).\n"
  840. msgstr ""
  841. #: cmdline/apt-cache.cc
  842. msgid "Show source records"
  843. msgstr "Iturburu erregistroak erakusten ditu"
  844. #: cmdline/apt-cache.cc
  845. msgid "Search the package list for a regex pattern"
  846. msgstr "Adierazpen erregularrak bilatzen ditu pakete zerrendan"
  847. #: cmdline/apt-cache.cc
  848. msgid "Show raw dependency information for a package"
  849. msgstr "Pakete baten mendekotasunak erakusten ditu"
  850. #: cmdline/apt-cache.cc
  851. msgid "Show reverse dependency information for a package"
  852. msgstr ""
  853. #: cmdline/apt-cache.cc
  854. msgid "Show a readable record for the package"
  855. msgstr "Paketearen erregistro irakurgarri bat erakusten du"
  856. #: cmdline/apt-cache.cc
  857. msgid "List the names of all packages in the system"
  858. msgstr "Pakete guztien izenak zerrendatzen ditu"
  859. #: cmdline/apt-cache.cc
  860. msgid "Show policy settings"
  861. msgstr "Gidalerroen ezarpenak erakusten ditu"
  862. #: cmdline/apt-cdrom.cc
  863. #, fuzzy
  864. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  865. msgstr ""
  866. "Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan"
  867. #: cmdline/apt-cdrom.cc
  868. #, fuzzy
  869. msgid "Please insert a Disc in the drive and press [Enter]"
  870. msgstr "Mesedez sar diska bat gailuan eta enter sakatu"
  871. #: cmdline/apt-cdrom.cc
  872. #, fuzzy, c-format
  873. msgid "Failed to mount '%s' to '%s'"
  874. msgstr "Huts egin du %s izenaren ordez %s ipintzean"
  875. #: cmdline/apt-cdrom.cc
  876. msgid ""
  877. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  878. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  879. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  880. "mount point."
  881. msgstr ""
  882. #: cmdline/apt-cdrom.cc
  883. msgid "Repeat this process for the rest of the CDs in your set."
  884. msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu."
  885. #: cmdline/apt-cdrom.cc
  886. msgid ""
  887. "Usage: apt-cdrom [options] command\n"
  888. "\n"
  889. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  890. "media types as package sources to APT. The mount point and device\n"
  891. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  892. msgstr ""
  893. #: cmdline/apt-config.cc
  894. msgid "Arguments not in pairs"
  895. msgstr "Parekatu gabeko argumentuak"
  896. #: cmdline/apt-config.cc
  897. #, fuzzy
  898. msgid ""
  899. "Usage: apt-config [options] command\n"
  900. "\n"
  901. "apt-config is an interface to the configuration settings used by\n"
  902. "all APT tools, mainly intended for debugging and shell scripting.\n"
  903. msgstr ""
  904. "Erabilera: apt-config [aukerak] komandoa\n"
  905. "\n"
  906. "apt-config APT konfigurazio fitxategia irakurtzeko tresna soil bat da\n"
  907. #: cmdline/apt-config.cc
  908. msgid "get configuration values via shell evaluation"
  909. msgstr ""
  910. #: cmdline/apt-config.cc
  911. msgid "show the active configuration setting"
  912. msgstr ""
  913. #: cmdline/apt-get.cc
  914. #, c-format
  915. msgid "Couldn't find package %s"
  916. msgstr "Ezin izan da %s paketea aurkitu"
  917. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  918. #, fuzzy, c-format
  919. msgid "%s set to automatically installed.\n"
  920. msgstr "%s eskuz instalatua bezala ezarri.\n"
  921. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  922. msgid ""
  923. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  924. "instead."
  925. msgstr ""
  926. #: cmdline/apt-get.cc
  927. msgid "Internal error, problem resolver broke stuff"
  928. msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du"
  929. #: cmdline/apt-get.cc
  930. msgid "Supported modules:"
  931. msgstr "Onartutako Moduluak:"
  932. #: cmdline/apt-get.cc
  933. #, fuzzy
  934. msgid ""
  935. "Usage: apt-get [options] command\n"
  936. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  937. " apt-get [options] source pkg1 [pkg2 ...]\n"
  938. "\n"
  939. "apt-get is a command line interface for retrieval of packages\n"
  940. "and information about them from authenticated sources and\n"
  941. "for installation, upgrade and removal of packages together\n"
  942. "with their dependencies.\n"
  943. msgstr ""
  944. "Erabilera: apt-get [aukerak] komandoa\n"
  945. " apt-get [aukerak] install|remove pkg1 [pkg2 ...]\n"
  946. " apt-get [aukerak] source pkg1 [pkg2 ...]\n"
  947. "\n"
  948. "apt-get paketeak deskargatu eta instalatzeko komando lerroko interfaze soil\n"
  949. "bat da. Gehien erabiltzen diren komandoak eguneratzekoa eta instalatzekoa \n"
  950. "dira: update eta install.\n"
  951. #: cmdline/apt-get.cc
  952. msgid "Retrieve new lists of packages"
  953. msgstr "Eskuratu pakete zerrenda berriak"
  954. #: cmdline/apt-get.cc
  955. msgid "Perform an upgrade"
  956. msgstr "Egin bertsio berritzea"
  957. #: cmdline/apt-get.cc
  958. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  959. msgstr "Instalatu pakete berriak (paketea libc6 da, eta ez libc6.deb)"
  960. #: cmdline/apt-get.cc
  961. msgid "Remove packages"
  962. msgstr "Kendu paketeak"
  963. #: cmdline/apt-get.cc
  964. msgid "Remove packages and config files"
  965. msgstr "Paketeak kendu eta garbitu"
  966. #: cmdline/apt-get.cc cmdline/apt.cc
  967. msgid "Remove automatically all unused packages"
  968. msgstr "Automatikoki kendu erabiltzen ez diren paketeak"
  969. #: cmdline/apt-get.cc
  970. msgid "Distribution upgrade, see apt-get(8)"
  971. msgstr "Banaketaren bertsio berritzea: ikus apt-get(8)"
  972. #: cmdline/apt-get.cc
  973. msgid "Follow dselect selections"
  974. msgstr "Jarraitu dselect hautapenak"
  975. #: cmdline/apt-get.cc
  976. msgid "Configure build-dependencies for source packages"
  977. msgstr "Konfiguratu iturburu paketeen eraikitze dependentziak"
  978. #: cmdline/apt-get.cc
  979. msgid "Erase downloaded archive files"
  980. msgstr "Ezabatu deskargatutako artxibo fitxategiak"
  981. #: cmdline/apt-get.cc
  982. msgid "Erase old downloaded archive files"
  983. msgstr "Ezabatu deskargatutako artxibo fitxategi zaharrak"
  984. #: cmdline/apt-get.cc
  985. msgid "Verify that there are no broken dependencies"
  986. msgstr "Egiaztatu ez dagoela hautsitako mendekotasunik"
  987. #: cmdline/apt-get.cc
  988. msgid "Download source archives"
  989. msgstr "Deskargatu iturburu artxiboak"
  990. #: cmdline/apt-get.cc
  991. msgid "Download the binary package into the current directory"
  992. msgstr ""
  993. #: cmdline/apt-get.cc
  994. msgid "Download and display the changelog for the given package"
  995. msgstr ""
  996. #: cmdline/apt-helper.cc
  997. msgid "Need one URL as argument"
  998. msgstr ""
  999. #: cmdline/apt-helper.cc
  1000. #, fuzzy
  1001. msgid "Must specify at least one pair url/filename"
  1002. msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko"
  1003. #: cmdline/apt-helper.cc
  1004. msgid "Download Failed"
  1005. msgstr ""
  1006. #: cmdline/apt-helper.cc
  1007. #, c-format
  1008. msgid "GetSrvRec failed for %s"
  1009. msgstr ""
  1010. #: cmdline/apt-helper.cc
  1011. msgid ""
  1012. "Usage: apt-helper [options] command\n"
  1013. " apt-helper [options] cat-file file ...\n"
  1014. " apt-helper [options] download-file uri target-path\n"
  1015. "\n"
  1016. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1017. "e.g. the same proxy configuration or acquire system as APT would.\n"
  1018. msgstr ""
  1019. #: cmdline/apt-helper.cc
  1020. msgid "download the given uri to the target-path"
  1021. msgstr ""
  1022. #: cmdline/apt-helper.cc
  1023. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1024. msgstr ""
  1025. #: cmdline/apt-helper.cc
  1026. msgid "concatenate files, with automatic decompression"
  1027. msgstr ""
  1028. #: cmdline/apt-helper.cc
  1029. msgid "detect proxy using apt.conf"
  1030. msgstr ""
  1031. #: cmdline/apt-mark.cc
  1032. #, fuzzy, c-format
  1033. msgid "%s can not be marked as it is not installed.\n"
  1034. msgstr "baina ez dago instalatuta"
  1035. #: cmdline/apt-mark.cc
  1036. #, fuzzy, c-format
  1037. msgid "%s was already set to manually installed.\n"
  1038. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1039. #: cmdline/apt-mark.cc
  1040. #, fuzzy, c-format
  1041. msgid "%s was already set to automatically installed.\n"
  1042. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1043. #: cmdline/apt-mark.cc
  1044. #, fuzzy, c-format
  1045. msgid "%s was already set on hold.\n"
  1046. msgstr "%s bertsiorik berriena da jada.\n"
  1047. #: cmdline/apt-mark.cc
  1048. #, fuzzy, c-format
  1049. msgid "%s was already not hold.\n"
  1050. msgstr "%s bertsiorik berriena da jada.\n"
  1051. #: cmdline/apt-mark.cc
  1052. msgid "Executing dpkg failed. Are you root?"
  1053. msgstr ""
  1054. #: cmdline/apt-mark.cc
  1055. #, fuzzy, c-format
  1056. msgid "%s set on hold.\n"
  1057. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1058. #: cmdline/apt-mark.cc
  1059. #, fuzzy, c-format
  1060. msgid "Canceled hold on %s.\n"
  1061. msgstr "Huts egin du %s irekitzean"
  1062. #: cmdline/apt-mark.cc
  1063. #, c-format
  1064. msgid "Selected %s for purge.\n"
  1065. msgstr ""
  1066. #: cmdline/apt-mark.cc
  1067. #, c-format
  1068. msgid "Selected %s for removal.\n"
  1069. msgstr ""
  1070. #: cmdline/apt-mark.cc
  1071. #, c-format
  1072. msgid "Selected %s for installation.\n"
  1073. msgstr ""
  1074. #: cmdline/apt-mark.cc
  1075. msgid ""
  1076. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1077. "\n"
  1078. "apt-mark is a simple command line interface for marking packages\n"
  1079. "as manually or automatically installed. It can also be used to\n"
  1080. "manipulate the dpkg(1) selection states of packages, and to list\n"
  1081. "all packages with or without a certain marking.\n"
  1082. msgstr ""
  1083. #: cmdline/apt-mark.cc
  1084. #, fuzzy
  1085. msgid "Mark the given packages as automatically installed"
  1086. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1087. #: cmdline/apt-mark.cc
  1088. #, fuzzy
  1089. msgid "Mark the given packages as manually installed"
  1090. msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n"
  1091. #: cmdline/apt-mark.cc
  1092. msgid "Mark a package as held back"
  1093. msgstr ""
  1094. #: cmdline/apt-mark.cc
  1095. msgid "Unset a package set as held back"
  1096. msgstr ""
  1097. #: cmdline/apt-mark.cc
  1098. #, fuzzy
  1099. msgid "Print the list of automatically installed packages"
  1100. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1101. #: cmdline/apt-mark.cc
  1102. #, fuzzy
  1103. msgid "Print the list of manually installed packages"
  1104. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1105. #: cmdline/apt-mark.cc
  1106. msgid "Print the list of package on hold"
  1107. msgstr ""
  1108. #: cmdline/apt.cc
  1109. msgid ""
  1110. "Usage: apt [options] command\n"
  1111. "\n"
  1112. "apt is a commandline package manager and provides commands for\n"
  1113. "searching and managing as well as querying information about packages.\n"
  1114. "It provides the same functionality as the specialized APT tools,\n"
  1115. "like apt-get and apt-cache, but enables options more suitable for\n"
  1116. "interactive use by default.\n"
  1117. msgstr ""
  1118. #. query
  1119. #: cmdline/apt.cc
  1120. msgid "list packages based on package names"
  1121. msgstr ""
  1122. #: cmdline/apt.cc
  1123. #, fuzzy
  1124. msgid "search in package descriptions"
  1125. msgstr "Pakete Zerrenda irakurtzen"
  1126. #: cmdline/apt.cc
  1127. msgid "show package details"
  1128. msgstr ""
  1129. #. package stuff
  1130. #: cmdline/apt.cc
  1131. #, fuzzy
  1132. msgid "install packages"
  1133. msgstr "Pin duten Paketeak:"
  1134. #: cmdline/apt.cc
  1135. #, fuzzy
  1136. msgid "remove packages"
  1137. msgstr "Hautsitako paketeak"
  1138. #. system wide stuff
  1139. #: cmdline/apt.cc
  1140. #, fuzzy
  1141. msgid "update list of available packages"
  1142. msgstr "%s eskuz instalatua bezala ezarri.\n"
  1143. #: cmdline/apt.cc
  1144. msgid "upgrade the system by installing/upgrading packages"
  1145. msgstr ""
  1146. #: cmdline/apt.cc
  1147. msgid "upgrade the system by removing/installing/upgrading packages"
  1148. msgstr ""
  1149. #. misc
  1150. #: cmdline/apt.cc
  1151. #, fuzzy
  1152. msgid "edit the source information file"
  1153. msgstr "Egoera argibideak irakurtzen"
  1154. #: methods/cdrom.cc
  1155. #, c-format
  1156. msgid "Unable to read the cdrom database %s"
  1157. msgstr "Ezin da cdrom-eko %s datu-basea irakurri"
  1158. #: methods/cdrom.cc
  1159. msgid ""
  1160. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1161. "cannot be used to add new CD-ROMs"
  1162. msgstr ""
  1163. "Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n"
  1164. "apt-get update ezin da erabili CD berriak gehitzeko"
  1165. #: methods/cdrom.cc
  1166. msgid "Wrong CD-ROM"
  1167. msgstr "CD okerra"
  1168. #: methods/cdrom.cc
  1169. #, c-format
  1170. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1171. msgstr ""
  1172. "Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da."
  1173. #: methods/cdrom.cc
  1174. msgid "Disk not found."
  1175. msgstr "Ez da diska aurkitu"
  1176. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1177. msgid "File not found"
  1178. msgstr "Ez da fitxategia aurkitu"
  1179. #: methods/connect.cc
  1180. #, c-format
  1181. msgid "Connecting to %s (%s)"
  1182. msgstr "Konektatzen -> %s.(%s)"
  1183. #: methods/connect.cc
  1184. #, c-format
  1185. msgid "[IP: %s %s]"
  1186. msgstr "[IP: %s %s]"
  1187. #: methods/connect.cc
  1188. #, c-format
  1189. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1190. msgstr "Ezin izan da socket-ik sortu honentzat: %s (f=%u t=%u p=%u)"
  1191. #: methods/connect.cc
  1192. #, c-format
  1193. msgid "Cannot initiate the connection to %s:%s (%s)."
  1194. msgstr "Ezin izan da konexioa hasi -> %s:%s (%s)."
  1195. #: methods/connect.cc
  1196. #, c-format
  1197. msgid "Could not connect to %s:%s (%s), connection timed out"
  1198. msgstr ""
  1199. "Ezin izan da konektatu -> %s:%s (%s). Konexioak denbora muga gainditu du"
  1200. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1201. msgid "Failed"
  1202. msgstr "Huts egin du"
  1203. #: methods/connect.cc
  1204. #, c-format
  1205. msgid "Could not connect to %s:%s (%s)."
  1206. msgstr "Ezin izan da konektatu -> %s:%s (%s)"
  1207. #. We say this mainly because the pause here is for the
  1208. #. ssh connection that is still going
  1209. #: methods/connect.cc methods/rsh.cc
  1210. #, c-format
  1211. msgid "Connecting to %s"
  1212. msgstr "Konektatzen -> %s..."
  1213. #: methods/connect.cc
  1214. #, c-format
  1215. msgid "Could not resolve '%s'"
  1216. msgstr "Ezin izan da '%s' ebatzi"
  1217. #: methods/connect.cc
  1218. #, c-format
  1219. msgid "Temporary failure resolving '%s'"
  1220. msgstr "Aldi baterako akatsa '%s' ebaztean"
  1221. #: methods/connect.cc
  1222. #, fuzzy, c-format
  1223. msgid "System error resolving '%s:%s'"
  1224. msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean"
  1225. #: methods/connect.cc
  1226. #, fuzzy, c-format
  1227. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1228. msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean"
  1229. #: methods/connect.cc
  1230. #, fuzzy, c-format
  1231. msgid "Unable to connect to %s:%s:"
  1232. msgstr "Ezin da konektatu -> %s %s:"
  1233. #: methods/copy.cc methods/store.cc
  1234. msgid "Failed to stat"
  1235. msgstr "Huts egin du atzitzean"
  1236. #: methods/copy.cc methods/rred.cc methods/store.cc
  1237. msgid "Failed to set modification time"
  1238. msgstr "Huts egin du aldaketa ordua ezartzean"
  1239. #: methods/file.cc
  1240. msgid "Invalid URI, local URIS must not start with //"
  1241. msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran"
  1242. #. Login must be before getpeername otherwise dante won't work.
  1243. #: methods/ftp.cc
  1244. msgid "Logging in"
  1245. msgstr "Sartzen"
  1246. #: methods/ftp.cc
  1247. msgid "Unable to determine the peer name"
  1248. msgstr "Ezin izan da peer edo parekoaren izena zehaztu"
  1249. #: methods/ftp.cc
  1250. msgid "Unable to determine the local name"
  1251. msgstr "Ezin izan da izen lokala zehaztu"
  1252. #: methods/ftp.cc
  1253. #, c-format
  1254. msgid "The server refused the connection and said: %s"
  1255. msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s"
  1256. #: methods/ftp.cc
  1257. #, c-format
  1258. msgid "USER failed, server said: %s"
  1259. msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s"
  1260. #: methods/ftp.cc
  1261. #, c-format
  1262. msgid "PASS failed, server said: %s"
  1263. msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s"
  1264. #: methods/ftp.cc
  1265. msgid ""
  1266. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1267. "is empty."
  1268. msgstr ""
  1269. "Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::"
  1270. "ProxyLogin hutsik dago."
  1271. #: methods/ftp.cc
  1272. #, c-format
  1273. msgid "Login script command '%s' failed, server said: %s"
  1274. msgstr ""
  1275. "Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan "
  1276. "du: %s"
  1277. #: methods/ftp.cc
  1278. #, c-format
  1279. msgid "TYPE failed, server said: %s"
  1280. msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s"
  1281. #: methods/ftp.cc methods/rsh.cc
  1282. msgid "Connection timeout"
  1283. msgstr "Konexioa denboraz kanpo"
  1284. #: methods/ftp.cc
  1285. msgid "Server closed the connection"
  1286. msgstr "Zerbitzariak konexioa itxi du"
  1287. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1288. msgid "Read error"
  1289. msgstr "Irakurketa errorea"
  1290. #: methods/ftp.cc methods/rsh.cc
  1291. msgid "A response overflowed the buffer."
  1292. msgstr "Erantzun batek bufferrari gainez eragin dio."
  1293. #: methods/ftp.cc
  1294. msgid "Protocol corruption"
  1295. msgstr "Protokolo hondatzea"
  1296. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1297. msgid "Write error"
  1298. msgstr "Idazketa errorea"
  1299. #: methods/ftp.cc
  1300. msgid "Could not create a socket"
  1301. msgstr "Ezin izan da socket-a sortu"
  1302. #: methods/ftp.cc
  1303. msgid "Could not connect data socket, connection timed out"
  1304. msgstr ""
  1305. "Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du"
  1306. #: methods/ftp.cc
  1307. msgid "Could not connect passive socket."
  1308. msgstr "Ezin izan da socket pasibora konektatu."
  1309. #: methods/ftp.cc
  1310. msgid "getaddrinfo was unable to get a listening socket"
  1311. msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu"
  1312. #: methods/ftp.cc
  1313. msgid "Could not bind a socket"
  1314. msgstr "Ezin izan da socket bat lotu"
  1315. #: methods/ftp.cc
  1316. msgid "Could not listen on the socket"
  1317. msgstr "Ezin izan da socket-ean entzun"
  1318. #: methods/ftp.cc
  1319. msgid "Could not determine the socket's name"
  1320. msgstr "Ezin izan da socket-aren izena zehaztu"
  1321. #: methods/ftp.cc
  1322. msgid "Unable to send PORT command"
  1323. msgstr "Ezin da PORT komandoa bidali"
  1324. #: methods/ftp.cc
  1325. #, c-format
  1326. msgid "Unknown address family %u (AF_*)"
  1327. msgstr "Helbide familia ezezagunaa: %u (AF_*)"
  1328. #: methods/ftp.cc
  1329. #, c-format
  1330. msgid "EPRT failed, server said: %s"
  1331. msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s"
  1332. #: methods/ftp.cc
  1333. msgid "Data socket connect timed out"
  1334. msgstr "Datu-socket konexioak denbora muga gainditu du"
  1335. #: methods/ftp.cc
  1336. msgid "Unable to accept connection"
  1337. msgstr "Ezin da konexioa onartu"
  1338. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1339. msgid "Problem hashing file"
  1340. msgstr "Arazoa fitxategiaren hash egitean"
  1341. #: methods/ftp.cc
  1342. #, c-format
  1343. msgid "Unable to fetch file, server said '%s'"
  1344. msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'"
  1345. #: methods/ftp.cc methods/rsh.cc
  1346. msgid "Data socket timed out"
  1347. msgstr "Datu-socketak denbora muga gainditu du"
  1348. #: methods/ftp.cc
  1349. #, c-format
  1350. msgid "Data transfer failed, server said '%s'"
  1351. msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'"
  1352. #. Get the files information
  1353. #: methods/ftp.cc
  1354. msgid "Query"
  1355. msgstr "Kontsulta"
  1356. #: methods/ftp.cc
  1357. msgid "Unable to invoke "
  1358. msgstr "Ezin da deitu "
  1359. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1360. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1361. #, c-format
  1362. msgid ""
  1363. "Clearsigned file isn't valid, got '%s' (does the network require "
  1364. "authentication?)"
  1365. msgstr ""
  1366. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1367. #: methods/gpgv.cc
  1368. #, c-format
  1369. msgid ""
  1370. "Signed file isn't valid, got '%s' (does the network require authentication?)"
  1371. msgstr ""
  1372. #: methods/gpgv.cc
  1373. msgid "At least one invalid signature was encountered."
  1374. msgstr "Beintza sinadura baliogabe bat aurkitu da."
  1375. #: methods/gpgv.cc
  1376. msgid ""
  1377. "Internal error: Good signature, but could not determine key fingerprint?!"
  1378. msgstr "Barne errorea: Sinadura zuzena, baina ezin da egiaztapen marka zehaztu"
  1379. #: methods/gpgv.cc
  1380. #, fuzzy
  1381. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1382. msgstr ""
  1383. "Ezin da %s abiarazi sinadura egiaztatzeko (gnupg instalaturik al dago?)"
  1384. #: methods/gpgv.cc
  1385. msgid "Unknown error executing apt-key"
  1386. msgstr "Errore ezezaguna apt-key exekutatzean"
  1387. #. TRANSLATORS: The second %s is the reason and is untranslated for repository owners.
  1388. #: methods/gpgv.cc
  1389. #, c-format
  1390. msgid "Signature by key %s uses weak digest algorithm (%s)"
  1391. msgstr ""
  1392. #: methods/gpgv.cc
  1393. msgid "The following signatures were invalid:\n"
  1394. msgstr "Ondorengo sinadurak baliogabeak dira:\n"
  1395. #: methods/gpgv.cc
  1396. msgid ""
  1397. "The following signatures couldn't be verified because the public key is not "
  1398. "available:\n"
  1399. msgstr ""
  1400. "Ondorengo sinadurak ezin dira egiaztatu gako publikoa ez bait dago "
  1401. "eskuragarri:\n"
  1402. #: methods/http.cc
  1403. msgid "Error writing to the file"
  1404. msgstr "Errorea fitxategian idaztean"
  1405. #: methods/http.cc
  1406. msgid "Error reading from server. Remote end closed connection"
  1407. msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera"
  1408. #: methods/http.cc
  1409. msgid "Error reading from server"
  1410. msgstr "Errorea zerbitzaritik irakurtzean"
  1411. #: methods/http.cc
  1412. msgid "Error writing to file"
  1413. msgstr "Errorea fitxategian idaztean"
  1414. #: methods/http.cc
  1415. msgid "Select failed"
  1416. msgstr "Hautapenak huts egin du"
  1417. #: methods/http.cc
  1418. msgid "Connection timed out"
  1419. msgstr "Konexioaren denbora muga gainditu da"
  1420. #: methods/http.cc
  1421. msgid "Error writing to output file"
  1422. msgstr "Errorea irteerako fitxategian idaztean"
  1423. #. Only warn if there are no sources.list.d.
  1424. #. Only warn if there is no sources.list file.
  1425. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1426. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1427. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1428. #, c-format
  1429. msgid "Unable to read %s"
  1430. msgstr "Ezin da %s irakurri"
  1431. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1432. #: apt-pkg/contrib/cdromutl.cc
  1433. #, c-format
  1434. msgid "Unable to change to %s"
  1435. msgstr "Ezin da %s(e)ra aldatu"
  1436. #. FIXME: fallback to a default mirror here instead
  1437. #. and provide a config option to define that default
  1438. #: methods/mirror.cc
  1439. #, c-format
  1440. msgid "No mirror file '%s' found "
  1441. msgstr ""
  1442. #. FIXME: fallback to a default mirror here instead
  1443. #. and provide a config option to define that default
  1444. #: methods/mirror.cc
  1445. #, fuzzy, c-format
  1446. msgid "Can not read mirror file '%s'"
  1447. msgstr "%s fitxategia ezin izan da ireki"
  1448. #: methods/mirror.cc
  1449. #, fuzzy, c-format
  1450. msgid "No entry found in mirror file '%s'"
  1451. msgstr "%s fitxategia ezin izan da ireki"
  1452. #: methods/mirror.cc
  1453. #, c-format
  1454. msgid "[Mirror: %s]"
  1455. msgstr ""
  1456. #: methods/rred.cc ftparchive/cachedb.cc apt-inst/extract.cc
  1457. #: apt-pkg/acquire-item.cc
  1458. #, c-format
  1459. msgid "Failed to stat %s"
  1460. msgstr "Huts egin du %s(e)tik datuak lortzean"
  1461. #: methods/rsh.cc ftparchive/multicompress.cc
  1462. msgid "Failed to create IPC pipe to subprocess"
  1463. msgstr "Huts egin du azpiprozesuarentzako IPC kanalizazio bat sortzean"
  1464. #: methods/rsh.cc
  1465. msgid "Connection closed prematurely"
  1466. msgstr "Konexioa behar baino lehenago itxi da"
  1467. #: methods/server.cc
  1468. msgid "Waiting for headers"
  1469. msgstr "Goiburuen zain"
  1470. #: methods/server.cc
  1471. msgid "Bad header line"
  1472. msgstr "Okerreko goiburu-lerroa"
  1473. #: methods/server.cc
  1474. msgid "The HTTP server sent an invalid reply header"
  1475. msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du."
  1476. #: methods/server.cc
  1477. msgid "The HTTP server sent an invalid Content-Length header"
  1478. msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du"
  1479. #: methods/server.cc
  1480. msgid "The HTTP server sent an invalid Content-Range header"
  1481. msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du"
  1482. #: methods/server.cc
  1483. msgid "This HTTP server has broken range support"
  1484. msgstr "http zerbitzariak barruti onarpena apurturik du"
  1485. #: methods/server.cc
  1486. msgid "Unknown date format"
  1487. msgstr "Datu formatu ezezaguna"
  1488. #: methods/server.cc
  1489. msgid "Bad header data"
  1490. msgstr "Goiburu data gaizki dago"
  1491. #: methods/server.cc
  1492. msgid "Connection failed"
  1493. msgstr "Konexioak huts egin du"
  1494. #: methods/server.cc
  1495. #, c-format
  1496. msgid ""
  1497. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1498. "5 apt.conf)"
  1499. msgstr ""
  1500. #: methods/server.cc
  1501. msgid "Internal error"
  1502. msgstr "Barne errorea"
  1503. #: methods/store.cc
  1504. msgid "Empty files can't be valid archives"
  1505. msgstr ""
  1506. #: dselect/install:33
  1507. msgid "Bad default setting!"
  1508. msgstr "Okerreko ezarpen lehenetsia!"
  1509. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1510. #: dselect/install:106 dselect/update:45
  1511. #, fuzzy
  1512. msgid "Press [Enter] to continue."
  1513. msgstr "Jarraitzeko, sakatu Sartu."
  1514. #: dselect/install:92
  1515. msgid "Do you want to erase any previously downloaded .deb files?"
  1516. msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?"
  1517. #: dselect/install:102
  1518. #, fuzzy
  1519. msgid "Some errors occurred while unpacking. Packages that were installed"
  1520. msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut"
  1521. #: dselect/install:103
  1522. #, fuzzy
  1523. msgid "will be configured. This may result in duplicate errors"
  1524. msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake"
  1525. #: dselect/install:104
  1526. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1527. msgstr "edo falta diren mendekotasunen erroreak. Hori ondo dago; mezu honen"
  1528. #: dselect/install:105
  1529. msgid ""
  1530. "above this message are important. Please fix them and run [I]nstall again"
  1531. msgstr ""
  1532. "aurreko erroreak dira garrantzitsuak. Konpondu eta exekutatu [I]nstall "
  1533. "berriro"
  1534. #: dselect/update:30
  1535. msgid "Merging available information"
  1536. msgstr "Eskuragarrien datuak biltzen"
  1537. #: cmdline/apt-extracttemplates.cc
  1538. #, fuzzy
  1539. msgid ""
  1540. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1541. "\n"
  1542. "apt-extracttemplates is used to extract config and template files\n"
  1543. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1544. "configuration questions before installation of packages.\n"
  1545. msgstr ""
  1546. "Erabilera: apt-extracttemplates fitxategia1 [fitxategia2 ...]\n"
  1547. "\n"
  1548. "apt-extracttemplates debian-eko paketeen konfigurazioaren eta txantiloien\n"
  1549. "informazioa ateratzeko tresna bat da\n"
  1550. "\n"
  1551. "Aukerak:\n"
  1552. " -h Laguntza testu hau\n"
  1553. " -t Ezarri aldi baterako direktorioa\n"
  1554. " -c=? Irakurri konfigurazio fitxategi hau\n"
  1555. " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n"
  1556. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1557. #, fuzzy, c-format
  1558. msgid "Unable to mkstemp %s"
  1559. msgstr "Ezin da daturik lortu %s(e)tik"
  1560. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1561. #, c-format
  1562. msgid "Unable to write to %s"
  1563. msgstr "%s : ezin da idatzi"
  1564. #: cmdline/apt-extracttemplates.cc
  1565. msgid "Cannot get debconf version. Is debconf installed?"
  1566. msgstr "Ezin da debconf bertsioa eskuratu. Debconf instalatuta dago?"
  1567. #: cmdline/apt-internal-solver.cc
  1568. #, fuzzy
  1569. msgid ""
  1570. "Usage: apt-internal-solver\n"
  1571. "\n"
  1572. "apt-internal-solver is an interface to use the current internal\n"
  1573. "resolver for the APT family like an external one, for debugging or\n"
  1574. "the like.\n"
  1575. msgstr ""
  1576. "Erabilera: apt-extracttemplates fitxategia1 [fitxategia2 ...]\n"
  1577. "\n"
  1578. "apt-extracttemplates debian-eko paketeen konfigurazioaren eta txantiloien\n"
  1579. "informazioa ateratzeko tresna bat da\n"
  1580. "\n"
  1581. "Aukerak:\n"
  1582. " -h Laguntza testu hau\n"
  1583. " -t Ezarri aldi baterako direktorioa\n"
  1584. " -c=? Irakurri konfigurazio fitxategi hau\n"
  1585. " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n"
  1586. #: cmdline/apt-sortpkgs.cc
  1587. msgid "Unknown package record!"
  1588. msgstr "Pakete erregistro ezezaguna!"
  1589. #: cmdline/apt-sortpkgs.cc
  1590. msgid ""
  1591. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1592. "\n"
  1593. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1594. "By default it sorts by binary package information, but the -s option\n"
  1595. "can be used to switch to source package ordering instead.\n"
  1596. msgstr ""
  1597. #: ftparchive/apt-ftparchive.cc
  1598. msgid "Package extension list is too long"
  1599. msgstr "Pakete luzapenen zerrenda luzeegia da"
  1600. #: ftparchive/apt-ftparchive.cc
  1601. #, c-format
  1602. msgid "Error processing directory %s"
  1603. msgstr "Errorea direktorioa prozesatzean %s"
  1604. #: ftparchive/apt-ftparchive.cc
  1605. msgid "Source extension list is too long"
  1606. msgstr "Iturburu luzapenen zerrenda luzeegia da"
  1607. #: ftparchive/apt-ftparchive.cc
  1608. msgid "Error writing header to contents file"
  1609. msgstr "Errorea eduki fitxategiaren goiburua idaztean"
  1610. #: ftparchive/apt-ftparchive.cc
  1611. #, c-format
  1612. msgid "Error processing contents %s"
  1613. msgstr "Errorea edukiak prozesatzean %s"
  1614. #: ftparchive/apt-ftparchive.cc
  1615. msgid ""
  1616. "Usage: apt-ftparchive [options] command\n"
  1617. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1618. " sources srcpath [overridefile [pathprefix]]\n"
  1619. " contents path\n"
  1620. " release path\n"
  1621. " generate config [groups]\n"
  1622. " clean config\n"
  1623. "\n"
  1624. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1625. "many styles of generation from fully automated to functional replacements\n"
  1626. "for dpkg-scanpackages and dpkg-scansources\n"
  1627. "\n"
  1628. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1629. "Package file contains the contents of all the control fields from\n"
  1630. "each package as well as the MD5 hash and filesize. An override file\n"
  1631. "is supported to force the value of Priority and Section.\n"
  1632. "\n"
  1633. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1634. "The --source-override option can be used to specify a src override file\n"
  1635. "\n"
  1636. "The 'packages' and 'sources' command should be run in the root of the\n"
  1637. "tree. BinaryPath should point to the base of the recursive search and \n"
  1638. "override file should contain the override flags. Pathprefix is\n"
  1639. "appended to the filename fields if present. Example usage from the \n"
  1640. "Debian archive:\n"
  1641. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1642. " dists/potato/main/binary-i386/Packages\n"
  1643. "\n"
  1644. "Options:\n"
  1645. " -h This help text\n"
  1646. " --md5 Control MD5 generation\n"
  1647. " -s=? Source override file\n"
  1648. " -q Quiet\n"
  1649. " -d=? Select the optional caching database\n"
  1650. " --no-delink Enable delinking debug mode\n"
  1651. " --contents Control contents file generation\n"
  1652. " -c=? Read this configuration file\n"
  1653. " -o=? Set an arbitrary configuration option"
  1654. msgstr ""
  1655. "Erabilera: apt-ftparchive [aukerak] komandoa\n"
  1656. "Komandoak: packages binarypath [overridefile [pathprefix]]\n"
  1657. " sources srcpath [overridefile [pathprefix]]\n"
  1658. " contents path\n"
  1659. " release path\n"
  1660. " generate config [groups]\n"
  1661. " clean config\n"
  1662. "\n"
  1663. "apt-ftparchive Debian artxiboen indizeak sortzeko erabiltzen da. Sortzeko \n"
  1664. "estilo asko onartzen ditu, erabat automatizatuak nahiz ordezte funtzionalak\n"
  1665. "'dpkg-scanpackages' eta 'dpkg-scansources'erako\n"
  1666. "Package izeneko fitxategiak sortzen ditu .deb fitxategien zuhaitz batetik.\n"
  1667. "Package fitxategiak pakete bakoitzaren kontrol eremu guztiak izaten ditu,\n"
  1668. "MD5 hash balioa eta fitxategi tamaina barne. Override fitxategia erabiltzen\n"
  1669. "da lehentasunaren eta sekzioaren balioak behartzeko.\n"
  1670. "\n"
  1671. "Era berean, iturburu fitxategiak ere sortzen ditu .dsc fitxategien\n"
  1672. "zuhaitzetik. --source-override aukera erabil daiteke src override \n"
  1673. "fitxategi bat zehazteko.\n"
  1674. "'packages' eta 'sources' komandoa zuhaitzaren erroan exekutatu behar dira.\n"
  1675. "BinaryPath-ek bilaketa errekurtsiboaren oinarria seinalatu behar du, eta\n"
  1676. "override fitxategiak override banderak izan behar ditu. Pathprefix \n"
  1677. "fitxategi izenen eremuei eransten zaie (halakorik badago). Hona hemen\n"
  1678. "Debian artxiboko erabilera argibide bat:\n"
  1679. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1680. " dists/potato/main/binary-i386/Packages\n"
  1681. "\n"
  1682. "Aukerak:\n"
  1683. " -h Laguntza testu hau\n"
  1684. " --md5 Kontrolatu MD5 sortzea\n"
  1685. " -s=? Iturburuaren override fitxategia\n"
  1686. " -q Isilik\n"
  1687. " -d=? Hautatu aukerako katxearen datu-basea\n"
  1688. " --no-delink Gaitu delink arazketa modua\n"
  1689. " --contents Kontrolatu eduki fitxategia sortzea\n"
  1690. " -c=? Irakurri konfigurazio fitxategi hau\n"
  1691. " -o=? Ezarri konfigurazio aukera arbitrario bat"
  1692. #: ftparchive/apt-ftparchive.cc
  1693. msgid "No selections matched"
  1694. msgstr "Ez dago bat datorren hautapenik"
  1695. #: ftparchive/apt-ftparchive.cc
  1696. #, c-format
  1697. msgid "Some files are missing in the package file group `%s'"
  1698. msgstr "Fitxategi batzuk falta dira `%s' pakete fitxategien taldean"
  1699. #: ftparchive/cachedb.cc
  1700. #, c-format
  1701. msgid "DB was corrupted, file renamed to %s.old"
  1702. msgstr "Datu-basea hondatuta dago; fitxategiari %s.old izena jarri zaio"
  1703. #: ftparchive/cachedb.cc
  1704. #, c-format
  1705. msgid "DB is old, attempting to upgrade %s"
  1706. msgstr "Datu-basea zaharra da; %s bertsio-berritzen saiatzen ari da"
  1707. #: ftparchive/cachedb.cc
  1708. #, fuzzy
  1709. msgid ""
  1710. "DB format is invalid. If you upgraded from an older version of apt, please "
  1711. "remove and re-create the database."
  1712. msgstr ""
  1713. "DB formatu baliogabe da. Apt bertsio zaharrago batetik eguneratu baduzu, "
  1714. "mesedez datubasea ezabatu eta birsortu."
  1715. #: ftparchive/cachedb.cc
  1716. #, c-format
  1717. msgid "Unable to open DB file %s: %s"
  1718. msgstr "Ezin da ireki %s datu-base fitxategia: %s"
  1719. #: ftparchive/cachedb.cc
  1720. #, fuzzy
  1721. msgid "Failed to read .dsc"
  1722. msgstr "Huts egin du %s esteka irakurtzean"
  1723. #: ftparchive/cachedb.cc
  1724. msgid "Archive has no control record"
  1725. msgstr "Artxiboak ez du kontrol erregistrorik"
  1726. #: ftparchive/cachedb.cc
  1727. msgid "Unable to get a cursor"
  1728. msgstr "Ezin da kurtsorerik eskuratu"
  1729. #: ftparchive/contents.cc
  1730. msgid "realloc - Failed to allocate memory"
  1731. msgstr "realloc - Huts egin du memoria esleitzean"
  1732. #: ftparchive/multicompress.cc
  1733. #, c-format
  1734. msgid "Unknown compression algorithm '%s'"
  1735. msgstr "'%s' Konpresio Algoritmo Ezezaguna"
  1736. #: ftparchive/multicompress.cc
  1737. #, c-format
  1738. msgid "Compressed output %s needs a compression set"
  1739. msgstr "%s irteera konprimituak konpresio-tresna bat behar du"
  1740. #: ftparchive/multicompress.cc
  1741. msgid "Failed to fork"
  1742. msgstr "Huts egin du sardetzean"
  1743. #: ftparchive/multicompress.cc
  1744. msgid "Compress child"
  1745. msgstr "Konprimatu Umeak"
  1746. #: ftparchive/multicompress.cc
  1747. #, c-format
  1748. msgid "Internal error, failed to create %s"
  1749. msgstr "Barne Errorea, Huts %s sortzerakoan"
  1750. #: ftparchive/multicompress.cc
  1751. msgid "IO to subprocess/file failed"
  1752. msgstr "Huts egin du azpiprozesu/fitxategiko S/Iak"
  1753. #: ftparchive/multicompress.cc
  1754. msgid "Failed to read while computing MD5"
  1755. msgstr "Huts egin du MD5 konputatzean"
  1756. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1757. #, c-format
  1758. msgid "Failed to rename %s to %s"
  1759. msgstr "Huts egin du %s izenaren ordez %s ipintzean"
  1760. #: ftparchive/override.cc
  1761. #, c-format
  1762. msgid "Unable to open %s"
  1763. msgstr "Ezin da %s ireki"
  1764. #. skip spaces
  1765. #. find end of word
  1766. #: ftparchive/override.cc
  1767. #, fuzzy, c-format
  1768. msgid "Malformed override %s line %llu (%s)"
  1769. msgstr "Gaizki osatutako override %s, lerroa: %lu #1"
  1770. #: ftparchive/override.cc
  1771. #, c-format
  1772. msgid "Failed to read the override file %s"
  1773. msgstr "Huts egin du %s override fitxategia irakurtzean"
  1774. #: ftparchive/override.cc
  1775. #, fuzzy, c-format
  1776. msgid "Malformed override %s line %llu #1"
  1777. msgstr "Gaizki osatutako override %s, lerroa: %lu #1"
  1778. #: ftparchive/override.cc
  1779. #, fuzzy, c-format
  1780. msgid "Malformed override %s line %llu #2"
  1781. msgstr "Gaizki osatutako override %s, lerroa: %lu #2"
  1782. #: ftparchive/override.cc
  1783. #, fuzzy, c-format
  1784. msgid "Malformed override %s line %llu #3"
  1785. msgstr "Gaizki osatutako override %s, lerroa: %lu #3"
  1786. #: ftparchive/writer.cc
  1787. #, c-format
  1788. msgid "W: Unable to read directory %s\n"
  1789. msgstr "A: Ezin da %s direktorioa irakurri\n"
  1790. #: ftparchive/writer.cc
  1791. #, c-format
  1792. msgid "W: Unable to stat %s\n"
  1793. msgstr "A: Ezin da %s atzitu\n"
  1794. #: ftparchive/writer.cc
  1795. msgid "E: "
  1796. msgstr "E: "
  1797. #: ftparchive/writer.cc
  1798. msgid "W: "
  1799. msgstr "A: "
  1800. #: ftparchive/writer.cc
  1801. msgid "E: Errors apply to file "
  1802. msgstr "E: Erroreak fitxategiari dagozkio "
  1803. #: ftparchive/writer.cc
  1804. #, c-format
  1805. msgid "Failed to resolve %s"
  1806. msgstr "Huts egin du %s ebaztean"
  1807. #: ftparchive/writer.cc
  1808. msgid "Tree walking failed"
  1809. msgstr "Huts egin dute zuhaitz-urratsek"
  1810. #: ftparchive/writer.cc
  1811. #, c-format
  1812. msgid "Failed to open %s"
  1813. msgstr "Huts egin du %s irekitzean"
  1814. #: ftparchive/writer.cc
  1815. #, c-format
  1816. msgid " DeLink %s [%s]\n"
  1817. msgstr " DeLink %s [%s]\n"
  1818. #: ftparchive/writer.cc apt-pkg/acquire-item.cc
  1819. #, c-format
  1820. msgid "Failed to readlink %s"
  1821. msgstr "Huts egin du %s esteka irakurtzean"
  1822. #: ftparchive/writer.cc
  1823. #, c-format
  1824. msgid "*** Failed to link %s to %s"
  1825. msgstr "*** Ezin izan da %s %s(r)ekin estekatu"
  1826. #: ftparchive/writer.cc
  1827. #, c-format
  1828. msgid " DeLink limit of %sB hit.\n"
  1829. msgstr " DeLink-en mugara (%sB) heldu da.\n"
  1830. #: ftparchive/writer.cc
  1831. msgid "Archive had no package field"
  1832. msgstr "Artxiboak ez du pakete eremurik"
  1833. #: ftparchive/writer.cc
  1834. #, c-format
  1835. msgid " %s has no override entry\n"
  1836. msgstr " %s: ez du override sarrerarik\n"
  1837. #: ftparchive/writer.cc
  1838. #, c-format
  1839. msgid " %s maintainer is %s not %s\n"
  1840. msgstr " %s mantentzailea %s da, eta ez %s\n"
  1841. #: ftparchive/writer.cc
  1842. #, c-format
  1843. msgid " %s has no source override entry\n"
  1844. msgstr " %s: ez du jatorri gainidazketa sarrerarik\n"
  1845. #: ftparchive/writer.cc
  1846. #, c-format
  1847. msgid " %s has no binary override entry either\n"
  1848. msgstr " %s: ez du bitar gainidazketa sarrerarik\n"
  1849. #: apt-inst/contrib/arfile.cc
  1850. msgid "Invalid archive signature"
  1851. msgstr "Artxibo sinadura baliogabea"
  1852. #: apt-inst/contrib/arfile.cc
  1853. msgid "Error reading archive member header"
  1854. msgstr "Errorea artxiboko kidearen goiburua irakurtzean"
  1855. #: apt-inst/contrib/arfile.cc
  1856. #, fuzzy, c-format
  1857. msgid "Invalid archive member header %s"
  1858. msgstr "Artxiboko kidearen goiburua baliogabea da"
  1859. #: apt-inst/contrib/arfile.cc
  1860. msgid "Invalid archive member header"
  1861. msgstr "Artxiboko kidearen goiburua baliogabea da"
  1862. #: apt-inst/contrib/arfile.cc
  1863. msgid "Archive is too short"
  1864. msgstr "Artxiboa laburregia da"
  1865. #: apt-inst/contrib/arfile.cc
  1866. msgid "Failed to read the archive headers"
  1867. msgstr "Huts egin artxibo goiburuak irakurtzean"
  1868. #: apt-inst/contrib/extracttar.cc
  1869. #, fuzzy, c-format
  1870. msgid "Cannot find a configured compressor for '%s'"
  1871. msgstr "Ezin izan da %s paketea aurkitu"
  1872. #: apt-inst/contrib/extracttar.cc
  1873. msgid "Corrupted archive"
  1874. msgstr "Hondatutako artxiboa"
  1875. #: apt-inst/contrib/extracttar.cc
  1876. msgid "Tar checksum failed, archive corrupted"
  1877. msgstr "Tar egiaztapenak huts egin, hondatutakofitxategia"
  1878. #: apt-inst/contrib/extracttar.cc
  1879. #, c-format
  1880. msgid "Unknown TAR header type %u, member %s"
  1881. msgstr "%u TAR goiburu mota ezezaguna, %s kidea"
  1882. #: apt-inst/deb/debfile.cc
  1883. #, c-format
  1884. msgid "This is not a valid DEB archive, missing '%s' member"
  1885. msgstr "Ez da baliozko DEB artxiboa; '%s' kidea falta da"
  1886. #: apt-inst/deb/debfile.cc
  1887. #, c-format
  1888. msgid "Internal error, could not locate member %s"
  1889. msgstr "Barne Errorea, ezin da %s atala kokatu"
  1890. #: apt-inst/deb/debfile.cc
  1891. msgid "Unparsable control file"
  1892. msgstr "Kontrol fitxategi ezin analizagarria"
  1893. #: apt-inst/dirstream.cc
  1894. #, c-format
  1895. msgid "Failed to write file %s"
  1896. msgstr "Ezin izan da %s fitxategian idatzi"
  1897. #: apt-inst/dirstream.cc
  1898. #, c-format
  1899. msgid "Failed to close file %s"
  1900. msgstr "Ezin izan da %s fitxategia itxi"
  1901. #: apt-inst/extract.cc
  1902. #, c-format
  1903. msgid "The path %s is too long"
  1904. msgstr "%s bidea luzeegia da"
  1905. #: apt-inst/extract.cc
  1906. #, c-format
  1907. msgid "Unpacking %s more than once"
  1908. msgstr "%s behin baino gehiagotan deskonprimitzen"
  1909. #: apt-inst/extract.cc
  1910. #, c-format
  1911. msgid "The directory %s is diverted"
  1912. msgstr "%s direktorioa desbideratuta dago"
  1913. #: apt-inst/extract.cc
  1914. #, c-format
  1915. msgid "The package is trying to write to the diversion target %s/%s"
  1916. msgstr "Paketea desbideratze helburuan %s/%s idazten saiatzen ari da"
  1917. #: apt-inst/extract.cc
  1918. msgid "The diversion path is too long"
  1919. msgstr "Desbideratzearen bidea luzeegia da"
  1920. #: apt-inst/extract.cc
  1921. #, c-format
  1922. msgid "The directory %s is being replaced by a non-directory"
  1923. msgstr "%s direktorioa ez-direktorio batekin ordezten ari da"
  1924. #: apt-inst/extract.cc
  1925. msgid "Failed to locate node in its hash bucket"
  1926. msgstr "Huts egin du nodoa bere hash-ontzian lokalizatzean"
  1927. #: apt-inst/extract.cc
  1928. msgid "The path is too long"
  1929. msgstr "Bidea luzeegia da"
  1930. #: apt-inst/extract.cc
  1931. #, c-format
  1932. msgid "Overwrite package match with no version for %s"
  1933. msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe"
  1934. #: apt-inst/extract.cc
  1935. #, c-format
  1936. msgid "File %s/%s overwrites the one in the package %s"
  1937. msgstr "%s/%s fitxategiak %s paketekoa gainidazten du"
  1938. #: apt-inst/extract.cc
  1939. #, c-format
  1940. msgid "Unable to stat %s"
  1941. msgstr "Ezin da daturik lortu %s(e)tik"
  1942. #: apt-inst/filelist.cc
  1943. msgid "DropNode called on still linked node"
  1944. msgstr "DropNode-ri dei egin zaio oraindik estekatutako nodoan"
  1945. #: apt-inst/filelist.cc
  1946. msgid "Failed to locate the hash element!"
  1947. msgstr "Huts egin du hash-elementua lokalizatzean!"
  1948. #: apt-inst/filelist.cc
  1949. msgid "Failed to allocate diversion"
  1950. msgstr "Huts egin du desbideratzea lokalizatzean"
  1951. #: apt-inst/filelist.cc
  1952. msgid "Internal error in AddDiversion"
  1953. msgstr "AddDiversion-n barne errorea"
  1954. #: apt-inst/filelist.cc
  1955. #, c-format
  1956. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1957. msgstr "Desbideratze bat gainidazten saiatzen: %s -> %s eta %s/%s"
  1958. #: apt-inst/filelist.cc
  1959. #, c-format
  1960. msgid "Double add of diversion %s -> %s"
  1961. msgstr "Desbideratzearen gehitze bikoitza: %s -> %s"
  1962. #: apt-inst/filelist.cc
  1963. #, c-format
  1964. msgid "Duplicate conf file %s/%s"
  1965. msgstr "Konfigurazio fitxategi bikoiztua: %s/%s"
  1966. #: apt-pkg/acquire-item.cc
  1967. msgid ""
  1968. "Updating from such a repository can't be done securely, and is therefore "
  1969. "disabled by default."
  1970. msgstr ""
  1971. #: apt-pkg/acquire-item.cc
  1972. msgid ""
  1973. "Data from such a repository can't be authenticated and is therefore "
  1974. "potentially dangerous to use."
  1975. msgstr ""
  1976. #: apt-pkg/acquire-item.cc
  1977. msgid ""
  1978. "See apt-secure(8) manpage for repository creation and user configuration "
  1979. "details."
  1980. msgstr ""
  1981. #: apt-pkg/acquire-item.cc
  1982. msgid "Hash Sum mismatch"
  1983. msgstr "Egiaztapena ez dator bat"
  1984. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  1985. #, c-format
  1986. msgid "rename failed, %s (%s -> %s)."
  1987. msgstr "huts egin du izen-aldaketak, %s (%s -> %s)."
  1988. #: apt-pkg/acquire-item.cc
  1989. msgid "Size mismatch"
  1990. msgstr "Tamaina ez dator bat"
  1991. #: apt-pkg/acquire-item.cc
  1992. #, fuzzy
  1993. msgid "Invalid file format"
  1994. msgstr "Eragiketa baliogabea: %s"
  1995. #: apt-pkg/acquire-item.cc
  1996. #, fuzzy
  1997. msgid "Signature error"
  1998. msgstr "Idazketa errorea"
  1999. #: apt-pkg/acquire-item.cc
  2000. #, c-format
  2001. msgid ""
  2002. "An error occurred during the signature verification. The repository is not "
  2003. "updated and the previous index files will be used. GPG error: %s: %s"
  2004. msgstr ""
  2005. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2006. #: apt-pkg/acquire-item.cc
  2007. #, c-format
  2008. msgid "GPG error: %s: %s"
  2009. msgstr ""
  2010. #: apt-pkg/acquire-item.cc
  2011. #, c-format
  2012. msgid ""
  2013. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  2014. "architecture '%s'"
  2015. msgstr ""
  2016. #: apt-pkg/acquire-item.cc
  2017. #, c-format
  2018. msgid ""
  2019. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2020. "or malformed file)"
  2021. msgstr ""
  2022. #: apt-pkg/acquire-item.cc
  2023. #, c-format
  2024. msgid ""
  2025. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  2026. "weak security information for it"
  2027. msgstr ""
  2028. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2029. #. the time since then the file is invalid - formatted in the same way as in
  2030. #. the download progress display (e.g. 7d 3h 42min 1s)
  2031. #: apt-pkg/acquire-item.cc
  2032. #, c-format
  2033. msgid ""
  2034. "Release file for %s is expired (invalid since %s). Updates for this "
  2035. "repository will not be applied."
  2036. msgstr ""
  2037. #: apt-pkg/acquire-item.cc
  2038. #, c-format
  2039. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2040. msgstr ""
  2041. #. No Release file was present, or verification failed, so fall
  2042. #. back to queueing Packages files without verification
  2043. #. only allow going further if the user explicitly wants it
  2044. #: apt-pkg/acquire-item.cc
  2045. #, fuzzy, c-format
  2046. msgid "The repository '%s' is not signed."
  2047. msgstr "%s direktorioa desbideratuta dago"
  2048. #. No Release file was present so fall
  2049. #. back to queueing Packages files without verification
  2050. #. only allow going further if the user explicitly wants it
  2051. #: apt-pkg/acquire-item.cc
  2052. #, fuzzy, c-format
  2053. msgid "The repository '%s' does not have a Release file."
  2054. msgstr "%s direktorioa desbideratuta dago"
  2055. #: apt-pkg/acquire-item.cc
  2056. #, fuzzy, c-format
  2057. msgid "The repository '%s' is no longer signed."
  2058. msgstr "%s direktorioa desbideratuta dago"
  2059. #: apt-pkg/acquire-item.cc
  2060. msgid ""
  2061. "This is normally not allowed, but the option Acquire::"
  2062. "AllowDowngradeToInsecureRepositories was given to override it."
  2063. msgstr ""
  2064. #: apt-pkg/acquire-item.cc
  2065. #, c-format
  2066. msgid ""
  2067. "I wasn't able to locate a file for the %s package. This might mean you need "
  2068. "to manually fix this package. (due to missing arch)"
  2069. msgstr ""
  2070. "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu "
  2071. "beharko duzu paketea. (arkitektura falta delako)"
  2072. #: apt-pkg/acquire-item.cc
  2073. #, c-format
  2074. msgid "Can't find a source to download version '%s' of '%s'"
  2075. msgstr ""
  2076. #: apt-pkg/acquire-item.cc
  2077. #, c-format
  2078. msgid ""
  2079. "The package index files are corrupted. No Filename: field for package %s."
  2080. msgstr ""
  2081. "Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s "
  2082. "paketearentzat."
  2083. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2084. #: apt-pkg/acquire-item.cc
  2085. #, fuzzy, c-format
  2086. msgid "Changelog unavailable for %s=%s"
  2087. msgstr "Konektatzen -> %s.(%s)"
  2088. #: apt-pkg/acquire-worker.cc
  2089. #, c-format
  2090. msgid "The method driver %s could not be found."
  2091. msgstr "Ezin izan da %s metodo kontrolatzailea aurkitu."
  2092. #: apt-pkg/acquire-worker.cc
  2093. #, fuzzy, c-format
  2094. msgid "Is the package %s installed?"
  2095. msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n"
  2096. #: apt-pkg/acquire-worker.cc
  2097. #, c-format
  2098. msgid "Method %s did not start correctly"
  2099. msgstr "%s metodoa ez da behar bezala abiarazi"
  2100. #: apt-pkg/acquire-worker.cc
  2101. #, fuzzy, c-format
  2102. msgid ""
  2103. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2104. msgstr "Mesedez sa ''%s' izeneko diska '%s' gailuan eta enter sakatu"
  2105. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2106. #, fuzzy, c-format
  2107. msgid "List directory %spartial is missing."
  2108. msgstr "%spartial zerrenda-direktorioa falta da."
  2109. #: apt-pkg/acquire.cc
  2110. #, fuzzy, c-format
  2111. msgid "Archives directory %spartial is missing."
  2112. msgstr "%spartial artxibo direktorioa falta da."
  2113. #: apt-pkg/acquire.cc
  2114. #, fuzzy, c-format
  2115. msgid "Unable to lock directory %s"
  2116. msgstr "Ezin da zerrenda direktorioa blokeatu"
  2117. #: apt-pkg/acquire.cc
  2118. #, c-format
  2119. msgid "No sandbox user '%s' on the system, can not drop privileges"
  2120. msgstr ""
  2121. #: apt-pkg/acquire.cc
  2122. #, c-format
  2123. msgid ""
  2124. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2125. "user '%s'."
  2126. msgstr ""
  2127. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2128. #, fuzzy, c-format
  2129. msgid "Clean of %s is not supported"
  2130. msgstr "'%s' motako indize fitxategirik ez da onartzen"
  2131. #. only show the ETA if it makes sense
  2132. #. two days
  2133. #: apt-pkg/acquire.cc
  2134. #, c-format
  2135. msgid "Retrieving file %li of %li (%s remaining)"
  2136. msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)"
  2137. #: apt-pkg/acquire.cc
  2138. #, c-format
  2139. msgid "Retrieving file %li of %li"
  2140. msgstr "%li fitxategia jasotzen %li-tik"
  2141. #: apt-pkg/algorithms.cc
  2142. #, c-format
  2143. msgid ""
  2144. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2145. msgstr ""
  2146. "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu."
  2147. #: apt-pkg/algorithms.cc
  2148. msgid ""
  2149. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2150. "held packages."
  2151. msgstr ""
  2152. "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada "
  2153. "atxikitako paketeek eraginda."
  2154. #: apt-pkg/algorithms.cc
  2155. msgid "Unable to correct problems, you have held broken packages."
  2156. msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu."
  2157. #: apt-pkg/cachefile.cc
  2158. msgid "The package lists or status file could not be parsed or opened."
  2159. msgstr "Pakete zerrenda edo egoera fitxategia ezin dira analizatu edo ireki."
  2160. #: apt-pkg/cachefile.cc
  2161. msgid "You may want to run apt-get update to correct these problems"
  2162. msgstr "Beharbada 'apt-get update' exekutatu nahiko duzu arazoak konpontzeko"
  2163. #: apt-pkg/cachefile.cc
  2164. msgid "The list of sources could not be read."
  2165. msgstr "Ezin izan da Iturburu zerrenda irakurri."
  2166. #: apt-pkg/cacheset.cc
  2167. #, c-format
  2168. msgid "Release '%s' for '%s' was not found"
  2169. msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu"
  2170. #: apt-pkg/cacheset.cc
  2171. #, c-format
  2172. msgid "Version '%s' for '%s' was not found"
  2173. msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu"
  2174. #: apt-pkg/cacheset.cc
  2175. #, fuzzy, c-format
  2176. msgid "Couldn't find task '%s'"
  2177. msgstr "Ezin izan da %s zeregina aurkitu"
  2178. #: apt-pkg/cacheset.cc
  2179. #, fuzzy, c-format
  2180. msgid "Couldn't find any package by regex '%s'"
  2181. msgstr "Ezin izan da %s paketea aurkitu"
  2182. #: apt-pkg/cacheset.cc
  2183. #, fuzzy, c-format
  2184. msgid "Couldn't find any package by glob '%s'"
  2185. msgstr "Ezin izan da %s paketea aurkitu"
  2186. #: apt-pkg/cacheset.cc
  2187. #, c-format
  2188. msgid "Can't select versions from package '%s' as it is purely virtual"
  2189. msgstr ""
  2190. #: apt-pkg/cacheset.cc
  2191. #, c-format
  2192. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2193. msgstr ""
  2194. #: apt-pkg/cacheset.cc
  2195. #, c-format
  2196. msgid "Can't select candidate version from package %s as it has no candidate"
  2197. msgstr ""
  2198. #: apt-pkg/cacheset.cc
  2199. #, c-format
  2200. msgid "Can't select installed version from package %s as it is not installed"
  2201. msgstr ""
  2202. #: apt-pkg/cacheset.cc
  2203. #, c-format
  2204. msgid ""
  2205. "Can't select installed nor candidate version from package '%s' as it has "
  2206. "neither of them"
  2207. msgstr ""
  2208. #: apt-pkg/cdrom.cc
  2209. #, c-format
  2210. msgid "Line %u too long in source list %s."
  2211. msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da."
  2212. #: apt-pkg/cdrom.cc
  2213. msgid "Unmounting CD-ROM...\n"
  2214. msgstr "CD-ROM Desmuntatzen...\n"
  2215. #: apt-pkg/cdrom.cc
  2216. #, c-format
  2217. msgid "Using CD-ROM mount point %s\n"
  2218. msgstr "%s CD-ROM muntatze puntua erabiltzen\n"
  2219. #: apt-pkg/cdrom.cc
  2220. msgid "Waiting for disc...\n"
  2221. msgstr "Diska itxaroten...\n"
  2222. #: apt-pkg/cdrom.cc
  2223. msgid "Mounting CD-ROM...\n"
  2224. msgstr "CD-ROM-a muntatzen...\n"
  2225. #: apt-pkg/cdrom.cc
  2226. msgid "Identifying... "
  2227. msgstr "Egiaztatzen... "
  2228. #: apt-pkg/cdrom.cc
  2229. #, c-format
  2230. msgid "Stored label: %s\n"
  2231. msgstr "Gordetako Etiketa: %s \n"
  2232. #: apt-pkg/cdrom.cc
  2233. msgid "Scanning disc for index files...\n"
  2234. msgstr "Indize fitxategien bila diska arakatzen...\n"
  2235. #: apt-pkg/cdrom.cc
  2236. #, c-format
  2237. msgid ""
  2238. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2239. "%zu signatures\n"
  2240. msgstr ""
  2241. "%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura "
  2242. "aurkitu dira\n"
  2243. #: apt-pkg/cdrom.cc
  2244. msgid ""
  2245. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2246. "wrong architecture?"
  2247. msgstr ""
  2248. #: apt-pkg/cdrom.cc
  2249. #, c-format
  2250. msgid "Found label '%s'\n"
  2251. msgstr "Aurkitutako Etiketa: '%s' \n"
  2252. #: apt-pkg/cdrom.cc
  2253. msgid "That is not a valid name, try again.\n"
  2254. msgstr "Hau ez baliozko izen bat, froga berriro.\n"
  2255. #: apt-pkg/cdrom.cc
  2256. #, c-format
  2257. msgid ""
  2258. "This disc is called: \n"
  2259. "'%s'\n"
  2260. msgstr ""
  2261. "Diskaren izen:\n"
  2262. "'%s'\n"
  2263. #: apt-pkg/cdrom.cc
  2264. msgid "Copying package lists..."
  2265. msgstr "Pakete zerrendak kopiatzen..."
  2266. #: apt-pkg/cdrom.cc
  2267. msgid "Writing new source list\n"
  2268. msgstr "Jatorri zerrenda berria idazten\n"
  2269. #: apt-pkg/cdrom.cc
  2270. msgid "Source list entries for this disc are:\n"
  2271. msgstr "Diskoarentzako jatorri sarrerak:\n"
  2272. #: apt-pkg/clean.cc
  2273. #, c-format
  2274. msgid "Unable to stat %s."
  2275. msgstr "Ezin da %s atzitu."
  2276. #: apt-pkg/contrib/cdromutl.cc
  2277. #, c-format
  2278. msgid "Unable to stat the mount point %s"
  2279. msgstr "Ezin da atzitu %s muntatze puntua"
  2280. #: apt-pkg/contrib/cdromutl.cc
  2281. msgid "Failed to stat the cdrom"
  2282. msgstr "Huts egin du CDROMa atzitzean"
  2283. #: apt-pkg/contrib/cmndline.cc
  2284. #, fuzzy, c-format
  2285. msgid ""
  2286. "Command line option '%c' [from %s] is not understood in combination with the "
  2287. "other options."
  2288. msgstr "Ez da ezagutzen komando lerroko '%c' aukera [%s]."
  2289. #: apt-pkg/contrib/cmndline.cc
  2290. #, fuzzy, c-format
  2291. msgid ""
  2292. "Command line option %s is not understood in combination with the other "
  2293. "options"
  2294. msgstr "Ez da ulertzen komando lerroko %s aukera"
  2295. #: apt-pkg/contrib/cmndline.cc
  2296. #, c-format
  2297. msgid "Command line option %s is not boolean"
  2298. msgstr "Komando lerroko %s aukera ez da boolearra."
  2299. #: apt-pkg/contrib/cmndline.cc
  2300. #, c-format
  2301. msgid "Option %s requires an argument."
  2302. msgstr "%s aukerak argumentu bat behar du."
  2303. #: apt-pkg/contrib/cmndline.cc
  2304. #, c-format
  2305. msgid "Option %s: Configuration item specification must have an =<val>."
  2306. msgstr ""
  2307. "%s aukera: konfigurazio elementuaren zehaztapenak =<val> eduki behar du."
  2308. #: apt-pkg/contrib/cmndline.cc
  2309. #, c-format
  2310. msgid "Option %s requires an integer argument, not '%s'"
  2311. msgstr "%s aukerak osoko argumentu bat behar du, eta ez '%s'"
  2312. #: apt-pkg/contrib/cmndline.cc
  2313. #, c-format
  2314. msgid "Option '%s' is too long"
  2315. msgstr "'%s' aukera luzeegia da"
  2316. #: apt-pkg/contrib/cmndline.cc
  2317. #, c-format
  2318. msgid "Sense %s is not understood, try true or false."
  2319. msgstr "%s zentzua ez da ulertzen; probatu egiazkoa edo faltsua."
  2320. #: apt-pkg/contrib/cmndline.cc
  2321. #, c-format
  2322. msgid "Invalid operation %s"
  2323. msgstr "Eragiketa baliogabea: %s"
  2324. #: apt-pkg/contrib/configuration.cc
  2325. #, c-format
  2326. msgid "Unrecognized type abbreviation: '%c'"
  2327. msgstr "Mota ezezaguneko laburtzapena: '%c'"
  2328. #: apt-pkg/contrib/configuration.cc
  2329. #, c-format
  2330. msgid "Opening configuration file %s"
  2331. msgstr "%s konfigurazio fitxategia irekitzen"
  2332. #: apt-pkg/contrib/configuration.cc
  2333. #, c-format
  2334. msgid "Syntax error %s:%u: Block starts with no name."
  2335. msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik."
  2336. #: apt-pkg/contrib/configuration.cc
  2337. #, c-format
  2338. msgid "Syntax error %s:%u: Malformed tag"
  2339. msgstr "Sintaxi errorea %s:%u: Gaizki eratutako"
  2340. #: apt-pkg/contrib/configuration.cc
  2341. #, c-format
  2342. msgid "Syntax error %s:%u: Extra junk after value"
  2343. msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren"
  2344. #: apt-pkg/contrib/configuration.cc
  2345. #, c-format
  2346. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2347. msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke"
  2348. #: apt-pkg/contrib/configuration.cc
  2349. #, c-format
  2350. msgid "Syntax error %s:%u: Too many nested includes"
  2351. msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi"
  2352. #: apt-pkg/contrib/configuration.cc
  2353. #, c-format
  2354. msgid "Syntax error %s:%u: Included from here"
  2355. msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta"
  2356. #: apt-pkg/contrib/configuration.cc
  2357. #, c-format
  2358. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2359. msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba"
  2360. #: apt-pkg/contrib/configuration.cc
  2361. #, fuzzy, c-format
  2362. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2363. msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke"
  2364. #: apt-pkg/contrib/configuration.cc
  2365. #, c-format
  2366. msgid "Syntax error %s:%u: Extra junk at end of file"
  2367. msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran"
  2368. #: apt-pkg/contrib/fileutl.cc
  2369. #, fuzzy, c-format
  2370. msgid "Problem unlinking the file %s"
  2371. msgstr "Arazoa fitxategia desestekatzean"
  2372. #: apt-pkg/contrib/fileutl.cc
  2373. #, c-format
  2374. msgid "Not using locking for read only lock file %s"
  2375. msgstr ""
  2376. "Ez da blokeorik erabiltzen ari irakurtzeko soilik den %s blokeo "
  2377. "fitxategiarentzat"
  2378. #: apt-pkg/contrib/fileutl.cc
  2379. #, c-format
  2380. msgid "Could not open lock file %s"
  2381. msgstr "Ezin izan da %s blokeo fitxategia ireki"
  2382. #: apt-pkg/contrib/fileutl.cc
  2383. #, c-format
  2384. msgid "Not using locking for nfs mounted lock file %s"
  2385. msgstr ""
  2386. "Ez da blokeorik erabiltzen ari nfs %s muntatutako blokeo fitxategiarentzat"
  2387. #: apt-pkg/contrib/fileutl.cc
  2388. #, c-format
  2389. msgid "Could not get lock %s"
  2390. msgstr "Ezin izan da %s blokeoa hartu"
  2391. #: apt-pkg/contrib/fileutl.cc
  2392. #, c-format
  2393. msgid "List of files can't be created as '%s' is not a directory"
  2394. msgstr ""
  2395. #: apt-pkg/contrib/fileutl.cc
  2396. #, c-format
  2397. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2398. msgstr ""
  2399. #: apt-pkg/contrib/fileutl.cc
  2400. #, c-format
  2401. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2402. msgstr ""
  2403. #: apt-pkg/contrib/fileutl.cc
  2404. #, c-format
  2405. msgid ""
  2406. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2407. msgstr ""
  2408. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2409. #, c-format
  2410. msgid "Waited for %s but it wasn't there"
  2411. msgstr "%s espero zen baina ez zegoen han"
  2412. #: apt-pkg/contrib/fileutl.cc
  2413. #, c-format
  2414. msgid "Sub-process %s received a segmentation fault."
  2415. msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du."
  2416. #: apt-pkg/contrib/fileutl.cc
  2417. #, fuzzy, c-format
  2418. msgid "Sub-process %s received signal %u."
  2419. msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du."
  2420. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2421. #, c-format
  2422. msgid "Sub-process %s returned an error code (%u)"
  2423. msgstr "%s azpiprozesuak errore kode bat itzuli du (%u)"
  2424. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2425. #, c-format
  2426. msgid "Sub-process %s exited unexpectedly"
  2427. msgstr "%s azpiprozesua ustekabean amaitu da"
  2428. #: apt-pkg/contrib/fileutl.cc
  2429. #, fuzzy, c-format
  2430. msgid "Problem closing the gzip file %s"
  2431. msgstr "Arazoa fitxategia ixtean"
  2432. #: apt-pkg/contrib/fileutl.cc
  2433. msgid "Unexpected end of file"
  2434. msgstr ""
  2435. #: apt-pkg/contrib/fileutl.cc
  2436. msgid "Failed to create subprocess IPC"
  2437. msgstr "Huts egin du IPC azpiprozesua sortzean"
  2438. #: apt-pkg/contrib/fileutl.cc
  2439. msgid "Failed to exec compressor "
  2440. msgstr "Huts egin du konpresorea exekutatzean "
  2441. #: apt-pkg/contrib/fileutl.cc
  2442. #, c-format
  2443. msgid "Could not open file %s"
  2444. msgstr "%s fitxategia ezin izan da ireki"
  2445. #: apt-pkg/contrib/fileutl.cc
  2446. #, fuzzy, c-format
  2447. msgid "Could not open file descriptor %d"
  2448. msgstr "Ezin izan da %s(r)en kanalizazioa ireki"
  2449. #: apt-pkg/contrib/fileutl.cc
  2450. #, fuzzy, c-format
  2451. msgid "read, still have %llu to read but none left"
  2452. msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen"
  2453. #: apt-pkg/contrib/fileutl.cc
  2454. #, fuzzy, c-format
  2455. msgid "write, still have %llu to write but couldn't"
  2456. msgstr "idatzita; oraindik %lu idazteke, baina ezin da"
  2457. #: apt-pkg/contrib/fileutl.cc
  2458. #, fuzzy, c-format
  2459. msgid "Problem closing the file %s"
  2460. msgstr "Arazoa fitxategia ixtean"
  2461. #: apt-pkg/contrib/fileutl.cc
  2462. #, fuzzy, c-format
  2463. msgid "Problem renaming the file %s to %s"
  2464. msgstr "Arazoa fitxategia sinkronizatzean"
  2465. #: apt-pkg/contrib/fileutl.cc
  2466. msgid "Problem syncing the file"
  2467. msgstr "Arazoa fitxategia sinkronizatzean"
  2468. #: apt-pkg/contrib/mmap.cc
  2469. msgid "Can't mmap an empty file"
  2470. msgstr "Ezin da fitxategi huts baten mmap egin"
  2471. #: apt-pkg/contrib/mmap.cc
  2472. #, fuzzy, c-format
  2473. msgid "Couldn't make mmap of %llu bytes"
  2474. msgstr "Ezin izan da %lu byteren mmap egin"
  2475. #: apt-pkg/contrib/mmap.cc
  2476. #, fuzzy, c-format
  2477. msgid "Couldn't duplicate file descriptor %i"
  2478. msgstr "Ezin izan da %s(r)en kanalizazioa ireki"
  2479. #: apt-pkg/contrib/mmap.cc
  2480. #, fuzzy
  2481. msgid "Unable to close mmap"
  2482. msgstr "Ezin da %s ireki"
  2483. #: apt-pkg/contrib/mmap.cc
  2484. #, fuzzy
  2485. msgid "Unable to synchronize mmap"
  2486. msgstr "Ezin da deitu "
  2487. #: apt-pkg/contrib/mmap.cc
  2488. #, c-format
  2489. msgid "Couldn't make mmap of %lu bytes"
  2490. msgstr "Ezin izan da %lu byteren mmap egin"
  2491. #: apt-pkg/contrib/mmap.cc
  2492. msgid "Failed to truncate file"
  2493. msgstr "Huts fitxategia mozterakoan"
  2494. #: apt-pkg/contrib/mmap.cc
  2495. #, c-format
  2496. msgid ""
  2497. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2498. "Current value: %lu. (man 5 apt.conf)"
  2499. msgstr ""
  2500. "MMAP dinamikoa memoriaz kanpo. Mesedez handitu APT::Cache-Start muga. Uneko "
  2501. "balioa: %lu. (man 5 apt.conf)"
  2502. #: apt-pkg/contrib/mmap.cc
  2503. #, c-format
  2504. msgid ""
  2505. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2506. "reached."
  2507. msgstr ""
  2508. #: apt-pkg/contrib/mmap.cc
  2509. msgid ""
  2510. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2511. msgstr ""
  2512. #: apt-pkg/contrib/progress.cc
  2513. #, c-format
  2514. msgid "%c%s... Error!"
  2515. msgstr "%c%s... Errorea!"
  2516. #: apt-pkg/contrib/progress.cc
  2517. #, c-format
  2518. msgid "%c%s... Done"
  2519. msgstr "%c%s... Eginda"
  2520. #: apt-pkg/contrib/progress.cc
  2521. msgid "..."
  2522. msgstr ""
  2523. #. Print the spinner
  2524. #: apt-pkg/contrib/progress.cc
  2525. #, fuzzy, c-format
  2526. msgid "%c%s... %u%%"
  2527. msgstr "%c%s... Eginda"
  2528. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2529. #: apt-pkg/contrib/strutl.cc
  2530. #, c-format
  2531. msgid "%lid %lih %limin %lis"
  2532. msgstr ""
  2533. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2534. #: apt-pkg/contrib/strutl.cc
  2535. #, c-format
  2536. msgid "%lih %limin %lis"
  2537. msgstr ""
  2538. #. TRANSLATOR: min means minutes, s means seconds
  2539. #: apt-pkg/contrib/strutl.cc
  2540. #, c-format
  2541. msgid "%limin %lis"
  2542. msgstr ""
  2543. #. TRANSLATOR: s means seconds
  2544. #: apt-pkg/contrib/strutl.cc
  2545. #, c-format
  2546. msgid "%lis"
  2547. msgstr ""
  2548. #: apt-pkg/contrib/strutl.cc
  2549. #, c-format
  2550. msgid "Selection %s not found"
  2551. msgstr "%s hautapena ez da aurkitu"
  2552. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2553. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2554. #. filename and linenumber of the sources.list entry currently parsed
  2555. #: apt-pkg/deb/debmetaindex.cc
  2556. #, c-format
  2557. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2558. msgstr ""
  2559. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2560. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2561. #. two sources.list entries
  2562. #: apt-pkg/deb/debmetaindex.cc
  2563. #, c-format
  2564. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2565. msgstr ""
  2566. #: apt-pkg/deb/debmetaindex.cc
  2567. #, fuzzy, c-format
  2568. msgid "Unable to parse Release file %s"
  2569. msgstr "Ezin da %s pakete fitxategia analizatu (1)"
  2570. #: apt-pkg/deb/debmetaindex.cc
  2571. #, fuzzy, c-format
  2572. msgid "No sections in Release file %s"
  2573. msgstr "Oharra, %s hautatzen %s(r)en ordez\n"
  2574. #: apt-pkg/deb/debmetaindex.cc
  2575. #, c-format
  2576. msgid "No Hash entry in Release file %s"
  2577. msgstr ""
  2578. #: apt-pkg/deb/debmetaindex.cc
  2579. #, c-format
  2580. msgid ""
  2581. "No Hash entry in Release file %s which is considered strong enough for "
  2582. "security purposes"
  2583. msgstr ""
  2584. #: apt-pkg/deb/debmetaindex.cc
  2585. #, fuzzy, c-format
  2586. msgid "Invalid '%s' entry in Release file %s"
  2587. msgstr "Lerro baliogabea desbideratze fitxategian: %s"
  2588. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2589. #: apt-pkg/deb/debmetaindex.cc
  2590. #, c-format
  2591. msgid "Conflicting values set for option %s regarding source %s %s"
  2592. msgstr ""
  2593. #: apt-pkg/deb/debmetaindex.cc
  2594. #, c-format
  2595. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  2596. msgstr ""
  2597. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2598. #, c-format
  2599. msgid "Unable to parse package file %s (%d)"
  2600. msgstr "Ezin da %s pakete fitxategia analizatu (%d)"
  2601. #: apt-pkg/deb/debsystem.cc
  2602. #, c-format
  2603. msgid ""
  2604. "Unable to lock the administration directory (%s), is another process using "
  2605. "it?"
  2606. msgstr ""
  2607. #: apt-pkg/deb/debsystem.cc
  2608. #, fuzzy, c-format
  2609. msgid "Unable to lock the administration directory (%s), are you root?"
  2610. msgstr "Ezin da zerrenda direktorioa blokeatu"
  2611. #. TRANSLATORS: the %s contains the recovery command, usually
  2612. #. dpkg --configure -a
  2613. #: apt-pkg/deb/debsystem.cc
  2614. #, c-format
  2615. msgid ""
  2616. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2617. msgstr ""
  2618. #: apt-pkg/deb/debsystem.cc
  2619. msgid "Not locked"
  2620. msgstr ""
  2621. #: apt-pkg/deb/dpkgpm.cc
  2622. #, c-format
  2623. msgid "Installing %s"
  2624. msgstr "%s Instalatzen"
  2625. #: apt-pkg/deb/dpkgpm.cc
  2626. #, c-format
  2627. msgid "Configuring %s"
  2628. msgstr "%s konfiguratzen"
  2629. #: apt-pkg/deb/dpkgpm.cc
  2630. #, c-format
  2631. msgid "Removing %s"
  2632. msgstr "%s kentzen"
  2633. #: apt-pkg/deb/dpkgpm.cc
  2634. #, fuzzy, c-format
  2635. msgid "Completely removing %s"
  2636. msgstr "%s guztiz ezabatu da"
  2637. #: apt-pkg/deb/dpkgpm.cc
  2638. #, c-format
  2639. msgid "Noting disappearance of %s"
  2640. msgstr ""
  2641. #: apt-pkg/deb/dpkgpm.cc
  2642. #, c-format
  2643. msgid "Running post-installation trigger %s"
  2644. msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen"
  2645. #. FIXME: use a better string after freeze
  2646. #: apt-pkg/deb/dpkgpm.cc
  2647. #, c-format
  2648. msgid "Directory '%s' missing"
  2649. msgstr "'%s' direktorioa falta da"
  2650. #: apt-pkg/deb/dpkgpm.cc
  2651. #, fuzzy, c-format
  2652. msgid "Could not open file '%s'"
  2653. msgstr "%s fitxategia ezin izan da ireki"
  2654. #: apt-pkg/deb/dpkgpm.cc
  2655. #, c-format
  2656. msgid "Preparing %s"
  2657. msgstr "%s prestatzen"
  2658. #: apt-pkg/deb/dpkgpm.cc
  2659. #, c-format
  2660. msgid "Unpacking %s"
  2661. msgstr "%s irekitzen"
  2662. #: apt-pkg/deb/dpkgpm.cc
  2663. #, c-format
  2664. msgid "Preparing to configure %s"
  2665. msgstr "%s konfiguratzeko prestatzen"
  2666. #: apt-pkg/deb/dpkgpm.cc
  2667. #, c-format
  2668. msgid "Installed %s"
  2669. msgstr "%s Instalatuta"
  2670. #: apt-pkg/deb/dpkgpm.cc
  2671. #, c-format
  2672. msgid "Preparing for removal of %s"
  2673. msgstr "%s kentzeko prestatzen"
  2674. #: apt-pkg/deb/dpkgpm.cc
  2675. #, c-format
  2676. msgid "Removed %s"
  2677. msgstr "%s kendurik"
  2678. #: apt-pkg/deb/dpkgpm.cc
  2679. #, c-format
  2680. msgid "Preparing to completely remove %s"
  2681. msgstr "%s guztiz ezabatzeko prestatzen"
  2682. #: apt-pkg/deb/dpkgpm.cc
  2683. #, c-format
  2684. msgid "Completely removed %s"
  2685. msgstr "%s guztiz ezabatu da"
  2686. #: apt-pkg/deb/dpkgpm.cc
  2687. #, fuzzy, c-format
  2688. msgid "Can not write log (%s)"
  2689. msgstr "%s : ezin da idatzi"
  2690. #: apt-pkg/deb/dpkgpm.cc
  2691. msgid "Is /dev/pts mounted?"
  2692. msgstr ""
  2693. #: apt-pkg/deb/dpkgpm.cc
  2694. msgid "Operation was interrupted before it could finish"
  2695. msgstr ""
  2696. #: apt-pkg/deb/dpkgpm.cc
  2697. msgid "No apport report written because MaxReports is reached already"
  2698. msgstr ""
  2699. #. check if its not a follow up error
  2700. #: apt-pkg/deb/dpkgpm.cc
  2701. msgid "dependency problems - leaving unconfigured"
  2702. msgstr ""
  2703. #: apt-pkg/deb/dpkgpm.cc
  2704. msgid ""
  2705. "No apport report written because the error message indicates its a followup "
  2706. "error from a previous failure."
  2707. msgstr ""
  2708. #: apt-pkg/deb/dpkgpm.cc
  2709. msgid ""
  2710. "No apport report written because the error message indicates a disk full "
  2711. "error"
  2712. msgstr ""
  2713. #: apt-pkg/deb/dpkgpm.cc
  2714. msgid ""
  2715. "No apport report written because the error message indicates a out of memory "
  2716. "error"
  2717. msgstr ""
  2718. #: apt-pkg/deb/dpkgpm.cc
  2719. msgid ""
  2720. "No apport report written because the error message indicates an issue on the "
  2721. "local system"
  2722. msgstr ""
  2723. #: apt-pkg/deb/dpkgpm.cc
  2724. msgid ""
  2725. "No apport report written because the error message indicates a dpkg I/O error"
  2726. msgstr ""
  2727. #: apt-pkg/depcache.cc
  2728. msgid "Building dependency tree"
  2729. msgstr "Dependentzia zuhaitza eraikitzen"
  2730. #: apt-pkg/depcache.cc
  2731. msgid "Candidate versions"
  2732. msgstr "Hautagaien bertsioak"
  2733. #: apt-pkg/depcache.cc
  2734. msgid "Dependency generation"
  2735. msgstr "Dependentzi Sormena"
  2736. #: apt-pkg/depcache.cc
  2737. msgid "Reading state information"
  2738. msgstr "Egoera argibideak irakurtzen"
  2739. #: apt-pkg/depcache.cc
  2740. #, c-format
  2741. msgid "Failed to open StateFile %s"
  2742. msgstr "Huts egin du %s EgoeraFitxategia irekitzean"
  2743. #: apt-pkg/depcache.cc
  2744. #, c-format
  2745. msgid "Failed to write temporary StateFile %s"
  2746. msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi"
  2747. #: apt-pkg/edsp.cc
  2748. msgid "Send scenario to solver"
  2749. msgstr ""
  2750. #: apt-pkg/edsp.cc
  2751. msgid "Send request to solver"
  2752. msgstr ""
  2753. #: apt-pkg/edsp.cc
  2754. msgid "Prepare for receiving solution"
  2755. msgstr ""
  2756. #: apt-pkg/edsp.cc
  2757. msgid "External solver failed without a proper error message"
  2758. msgstr ""
  2759. #: apt-pkg/edsp.cc
  2760. msgid "Execute external solver"
  2761. msgstr ""
  2762. #: apt-pkg/indexcopy.cc
  2763. #, c-format
  2764. msgid "Wrote %i records.\n"
  2765. msgstr "%i erregistro grabaturik.\n"
  2766. #: apt-pkg/indexcopy.cc
  2767. #, c-format
  2768. msgid "Wrote %i records with %i missing files.\n"
  2769. msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n"
  2770. #: apt-pkg/indexcopy.cc
  2771. #, c-format
  2772. msgid "Wrote %i records with %i mismatched files\n"
  2773. msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n"
  2774. #: apt-pkg/indexcopy.cc
  2775. #, c-format
  2776. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2777. msgstr ""
  2778. "%i erregistro, %i galdutako fitxategi eta %i okerreko fitxategi grabaturik\n"
  2779. #: apt-pkg/indexcopy.cc
  2780. #, c-format
  2781. msgid "Can't find authentication record for: %s"
  2782. msgstr ""
  2783. #: apt-pkg/indexcopy.cc
  2784. #, fuzzy, c-format
  2785. msgid "Hash mismatch for: %s"
  2786. msgstr "Egiaztapena ez dator bat"
  2787. #: apt-pkg/init.cc
  2788. #, c-format
  2789. msgid "Packaging system '%s' is not supported"
  2790. msgstr "'%s' pakete sistema ez da onartzen"
  2791. #: apt-pkg/init.cc
  2792. msgid "Unable to determine a suitable packaging system type"
  2793. msgstr "Ezin da pakete sistemaren mota egokirik zehaztu"
  2794. #: apt-pkg/install-progress.cc
  2795. #, c-format
  2796. msgid "Progress: [%3i%%]"
  2797. msgstr ""
  2798. #: apt-pkg/install-progress.cc
  2799. msgid "Running dpkg"
  2800. msgstr ""
  2801. #: apt-pkg/packagemanager.cc
  2802. #, c-format
  2803. msgid ""
  2804. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2805. "under APT::Immediate-Configure for details. (%d)"
  2806. msgstr ""
  2807. #: apt-pkg/packagemanager.cc
  2808. #, fuzzy, c-format
  2809. msgid "Could not configure '%s'. "
  2810. msgstr "%s fitxategia ezin izan da ireki"
  2811. #: apt-pkg/packagemanager.cc
  2812. #, c-format
  2813. msgid ""
  2814. "This installation run will require temporarily removing the essential "
  2815. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2816. "you really want to do it, activate the APT::Force-LoopBreak option."
  2817. msgstr ""
  2818. "Instalazio hau exekutatzeko, funtsezko %s paketea aldi baterako kendu behar "
  2819. "da, Gatazka/Aurre-mendekotasun begizta baten ondorioz. Normalean arriskutsua "
  2820. "izaten da, baina hala ere egin nahi baduzu, aktibatu APT::Force-LoopBreak "
  2821. "aukera."
  2822. #: apt-pkg/pkgcache.cc
  2823. msgid "Empty package cache"
  2824. msgstr "Paketeen katxea hutsik"
  2825. #: apt-pkg/pkgcache.cc
  2826. msgid "The package cache file is corrupted"
  2827. msgstr "Paketeen katxe fitxategia hondatuta dago"
  2828. #: apt-pkg/pkgcache.cc
  2829. msgid "The package cache file is an incompatible version"
  2830. msgstr "Paketeen katxe fixategiaren bertsioa ez da bateragarria"
  2831. #: apt-pkg/pkgcache.cc
  2832. #, c-format
  2833. msgid "This APT does not support the versioning system '%s'"
  2834. msgstr "APT honek ez du '%s' bertsio sistema onartzen"
  2835. #: apt-pkg/pkgcache.cc
  2836. #, fuzzy, c-format
  2837. msgid "The package cache was built for different architectures: %s vs %s"
  2838. msgstr "Paketeen katxea beste arkitektura batentzat sortuta dago"
  2839. #: apt-pkg/pkgcache.cc
  2840. #, fuzzy
  2841. msgid "The package cache file is corrupted, it has the wrong hash"
  2842. msgstr "Paketeen katxe fitxategia hondatuta dago"
  2843. #: apt-pkg/pkgcache.cc
  2844. msgid "Depends"
  2845. msgstr "Mendekotasuna:"
  2846. #: apt-pkg/pkgcache.cc
  2847. msgid "PreDepends"
  2848. msgstr "Aurremendekotasuna:"
  2849. #: apt-pkg/pkgcache.cc
  2850. msgid "Suggests"
  2851. msgstr "Iradokizuna:"
  2852. #: apt-pkg/pkgcache.cc
  2853. msgid "Recommends"
  2854. msgstr "Gomendioa:"
  2855. #: apt-pkg/pkgcache.cc
  2856. msgid "Conflicts"
  2857. msgstr "Gatazka:"
  2858. #: apt-pkg/pkgcache.cc
  2859. msgid "Replaces"
  2860. msgstr "Ordeztea:"
  2861. #: apt-pkg/pkgcache.cc
  2862. msgid "Obsoletes"
  2863. msgstr "Zaharkitzea:"
  2864. #: apt-pkg/pkgcache.cc
  2865. msgid "Breaks"
  2866. msgstr "Apurturik"
  2867. #: apt-pkg/pkgcache.cc
  2868. msgid "Enhances"
  2869. msgstr ""
  2870. #: apt-pkg/pkgcache.cc
  2871. msgid "required"
  2872. msgstr "beharrezkoa"
  2873. #: apt-pkg/pkgcache.cc
  2874. msgid "important"
  2875. msgstr "garrantzitsua"
  2876. #: apt-pkg/pkgcache.cc
  2877. msgid "standard"
  2878. msgstr "estandarra"
  2879. #: apt-pkg/pkgcache.cc
  2880. msgid "optional"
  2881. msgstr "aukerakoa"
  2882. #: apt-pkg/pkgcache.cc
  2883. msgid "extra"
  2884. msgstr "estra"
  2885. #: apt-pkg/pkgcachegen.cc
  2886. msgid "Cache has an incompatible versioning system"
  2887. msgstr "Katxearen bertsio sistema ez da bateragarria"
  2888. #. TRANSLATOR: The first placeholder is a package name,
  2889. #. the other two should be copied verbatim as they include debug info
  2890. #: apt-pkg/pkgcachegen.cc
  2891. #, fuzzy, c-format
  2892. msgid "Error occurred while processing %s (%s%d)"
  2893. msgstr "Errorea gertatu da %s prozesatzean (FindPkg)"
  2894. #: apt-pkg/pkgcachegen.cc
  2895. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2896. msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu."
  2897. #: apt-pkg/pkgcachegen.cc
  2898. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2899. msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu."
  2900. #: apt-pkg/pkgcachegen.cc
  2901. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2902. msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu."
  2903. #: apt-pkg/pkgcachegen.cc
  2904. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2905. msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu."
  2906. #: apt-pkg/pkgcachegen.cc
  2907. msgid "Reading package lists"
  2908. msgstr "Pakete Zerrenda irakurtzen"
  2909. #: apt-pkg/pkgcachegen.cc
  2910. msgid "IO Error saving source cache"
  2911. msgstr "S/I errorea iturburu katxea gordetzean"
  2912. #: apt-pkg/pkgrecords.cc
  2913. #, c-format
  2914. msgid "Index file type '%s' is not supported"
  2915. msgstr "'%s' motako indize fitxategirik ez da onartzen"
  2916. #: apt-pkg/policy.cc
  2917. #, c-format
  2918. msgid ""
  2919. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2920. "available in the sources"
  2921. msgstr ""
  2922. #: apt-pkg/policy.cc
  2923. #, fuzzy, c-format
  2924. msgid "Invalid record in the preferences file %s, no Package header"
  2925. msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez"
  2926. #: apt-pkg/policy.cc
  2927. #, c-format
  2928. msgid "Did not understand pin type %s"
  2929. msgstr "Ez da ulertu %s orratz-mota (pin)"
  2930. #: apt-pkg/policy.cc
  2931. #, c-format
  2932. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2933. msgstr ""
  2934. #: apt-pkg/policy.cc
  2935. msgid "No priority (or zero) specified for pin"
  2936. msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)"
  2937. #. 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
  2938. #: apt-pkg/sourcelist.cc
  2939. #, fuzzy, c-format
  2940. msgid "Malformed entry %u in %s file %s (%s)"
  2941. msgstr "Gaizki osatutako override %s, lerroa: %lu #1"
  2942. #: apt-pkg/sourcelist.cc
  2943. #, c-format
  2944. msgid "Opening %s"
  2945. msgstr "%s irekitzen"
  2946. #: apt-pkg/sourcelist.cc
  2947. #, c-format
  2948. msgid "Malformed line %u in source list %s (type)"
  2949. msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)"
  2950. #: apt-pkg/sourcelist.cc
  2951. #, c-format
  2952. msgid "Type '%s' is not known on line %u in source list %s"
  2953. msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan"
  2954. #: apt-pkg/sourcelist.cc
  2955. #, fuzzy, c-format
  2956. msgid "Malformed stanza %u in source list %s (type)"
  2957. msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)"
  2958. #: apt-pkg/sourcelist.cc
  2959. #, fuzzy, c-format
  2960. msgid "Type '%s' is not known on stanza %u in source list %s"
  2961. msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan"
  2962. #: apt-pkg/sourcelist.cc
  2963. #, c-format
  2964. msgid "Unsupported file %s given on commandline"
  2965. msgstr ""
  2966. #: apt-pkg/srcrecords.cc
  2967. msgid "You must put some 'source' URIs in your sources.list"
  2968. msgstr "'Iturburu' URI batzuk jarri behar dituzu sources.list-en"
  2969. #: apt-pkg/tagfile.cc
  2970. #, c-format
  2971. msgid "Cannot convert %s to integer: out of range"
  2972. msgstr ""
  2973. #: apt-pkg/update.cc
  2974. #, fuzzy
  2975. msgid ""
  2976. "Some index files failed to download. They have been ignored, or old ones "
  2977. "used instead."
  2978. msgstr ""
  2979. "Indize fitxategi batzuk ezin izan dira deskargatu; ez ikusi egin zaie, edo "
  2980. "zaharrak erabili dira haien ordez."
  2981. #: apt-pkg/upgrade.cc
  2982. msgid "Calculating upgrade"
  2983. msgstr "Berriketak kalkulatzen"
  2984. #~ msgid "(not found)"
  2985. #~ msgstr "(ez da aurkitu)"
  2986. #~ msgid " Package pin: "
  2987. #~ msgstr " Paketearen pin-a:"
  2988. #~ msgid "There is no public key available for the following key IDs:\n"
  2989. #~ msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n"
  2990. #, fuzzy
  2991. #~ msgid "The repository is insufficiently signed by key %s (%s)"
  2992. #~ msgstr "%s direktorioa desbideratuta dago"
  2993. #, fuzzy
  2994. #~ msgid ""
  2995. #~ "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  2996. #~ "packages"
  2997. #~ msgstr ""
  2998. #~ "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako "
  2999. #~ "aurkitu"
  3000. #~ msgid ""
  3001. #~ "%s dependency for %s cannot be satisfied because the package %s cannot be "
  3002. #~ "found"
  3003. #~ msgstr ""
  3004. #~ "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako "
  3005. #~ "aurkitu"
  3006. #~ msgid ""
  3007. #~ "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  3008. #~ msgstr ""
  3009. #~ "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: instalatutako %3$s "
  3010. #~ "paketea berriegia da"
  3011. #, fuzzy
  3012. #~ msgid ""
  3013. #~ "%s dependency for %s cannot be satisfied because candidate version of "
  3014. #~ "package %s can't satisfy version requirements"
  3015. #~ msgstr ""
  3016. #~ "%2$s(r)en %1$s mendekotasuna ezin da bete, ez baitago bertsio-eskakizunak "
  3017. #~ "betetzen dituen %3$s paketearen bertsio erabilgarririk"
  3018. #, fuzzy
  3019. #~ msgid ""
  3020. #~ "%s dependency for %s cannot be satisfied because package %s has no "
  3021. #~ "candidate version"
  3022. #~ msgstr ""
  3023. #~ "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako "
  3024. #~ "aurkitu"
  3025. #~ msgid "Failed to satisfy %s dependency for %s: %s"
  3026. #~ msgstr "Huts egin du %2$s(r)en %1$s mendekotasuna betetzean: %3$s"
  3027. #~ msgid "Build-dependencies for %s could not be satisfied."
  3028. #~ msgstr "%s(r)en eraikitze mendekotasunak ezin izan dira bete."
  3029. #~ msgid "Problem unlinking %s"
  3030. #~ msgstr "Arazoa %s desestekatzean"
  3031. #~ msgid "Failed to unlink %s"
  3032. #~ msgstr "Huts egin du %s desestekatzean"
  3033. #~ msgid ""
  3034. #~ "Usage: apt-cache [options] command\n"
  3035. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3036. #~ "\n"
  3037. #~ "apt-cache is a low-level tool used to query information\n"
  3038. #~ "from APT's binary cache files\n"
  3039. #~ msgstr ""
  3040. #~ "Erabilera: apt-cache [aukerak] komandoa\n"
  3041. #~ " apt-cache [aukerak] show pak1 [pak2 ...]\n"
  3042. #~ "\n"
  3043. #~ "APTren katxe fitxategi bitarrak manipulatzeko eta kontsultatzeko "
  3044. #~ "erabiltzen\n"
  3045. #~ "den behe-mailako tresna bat da, apt-cache.\n"
  3046. #~ msgid ""
  3047. #~ "Options:\n"
  3048. #~ " -h This help text.\n"
  3049. #~ " -p=? The package cache.\n"
  3050. #~ " -s=? The source cache.\n"
  3051. #~ " -q Disable progress indicator.\n"
  3052. #~ " -i Show only important deps for the unmet command.\n"
  3053. #~ " -c=? Read this configuration file\n"
  3054. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3055. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3056. #~ msgstr ""
  3057. #~ "Aukerak:\n"
  3058. #~ " -h Laguntza testu hau.\n"
  3059. #~ " -p=? Paketearen katxea.\n"
  3060. #~ " -s=? Iturburuaren katxea.\n"
  3061. #~ " -q Desgaitu progresio adierazlea.\n"
  3062. #~ " -i Mendekotasun nagusiak soilik erakutsi.\n"
  3063. #~ " -c=? Irakurri konfigurazio fitxategi hau\n"
  3064. #~ " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/"
  3065. #~ "tmp\n"
  3066. #~ "Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n"
  3067. #~ msgid ""
  3068. #~ "Options:\n"
  3069. #~ " -h This help text.\n"
  3070. #~ " -c=? Read this configuration file\n"
  3071. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3072. #~ msgstr ""
  3073. #~ "Aukerak:\n"
  3074. #~ " -h Laguntza testu hau.\n"
  3075. #~ " -c=? Irakurri konfigurazio fitxategi hau\n"
  3076. #~ " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/"
  3077. #~ "tmp\n"
  3078. #~ msgid ""
  3079. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3080. #~ "\n"
  3081. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3082. #~ "used\n"
  3083. #~ "to indicate what kind of file it is.\n"
  3084. #~ "\n"
  3085. #~ "Options:\n"
  3086. #~ " -h This help text\n"
  3087. #~ " -s Use source file sorting\n"
  3088. #~ " -c=? Read this configuration file\n"
  3089. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3090. #~ msgstr ""
  3091. #~ "Erabilera: apt-sortpkgs [aukerak] fitxategia1 [fitxategia2...]\n"
  3092. #~ "\n"
  3093. #~ "apt-sortpkgs pakete fitxategiak ordenatzeko tresna soil bat da. Zein\n"
  3094. #~ "motatako fitxategia den adierazteko -s aukera erabiltzen da.\n"
  3095. #~ "\n"
  3096. #~ "Aukerak:\n"
  3097. #~ " -h Laguntza testu hau\n"
  3098. #~ " -s Erabili iturburu fitxategien ordenatzea\n"
  3099. #~ " -c=? Irakurri konfigurazio fitxategi hau\n"
  3100. #~ " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib: -o dir::cache=/"
  3101. #~ "tmp\n"
  3102. #~ msgid "Child process failed"
  3103. #~ msgstr "Prozesu umeak huts egin du"
  3104. #, fuzzy
  3105. #~ msgid "Must specifc at least one srv record"
  3106. #~ msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko"
  3107. #~ msgid "Failed to create pipes"
  3108. #~ msgstr "Huts egin du kanalizazioak sortzean"
  3109. #~ msgid "Failed to exec gzip "
  3110. #~ msgstr "Huts egin du gzip exekutatzean "
  3111. #~ msgid "%s %s for %s compiled on %s %s\n"
  3112. #~ msgstr "%s %s %s-rentzat %s %s-ean konpilatua\n"
  3113. #~ msgid "Failed to create FILE*"
  3114. #~ msgstr "Huts egin du FILE* sortzean"
  3115. #, fuzzy
  3116. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3117. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)"
  3118. #, fuzzy
  3119. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3120. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)"
  3121. #, fuzzy
  3122. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3123. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)"
  3124. #, fuzzy
  3125. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3126. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)"
  3127. #, fuzzy
  3128. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3129. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)"
  3130. #, fuzzy
  3131. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3132. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)"
  3133. #~ msgid "Malformed line %lu in source list %s (URI)"
  3134. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI)"
  3135. #~ msgid "Malformed line %lu in source list %s (dist)"
  3136. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist)"
  3137. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3138. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (URI analisia)"
  3139. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3140. #~ msgstr ""
  3141. #~ "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)"
  3142. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3143. #~ msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)"
  3144. #~ msgid "Package %s %s was not found while processing file dependencies"
  3145. #~ msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean"
  3146. #~ msgid "Couldn't stat source package list %s"
  3147. #~ msgstr "Ezin da atzitu %s iturburu paketeen zerrenda"
  3148. #~ msgid "Collecting File Provides"
  3149. #~ msgstr "Fitxategiaren erreferentziak biltzen"
  3150. #, fuzzy
  3151. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3152. #~ msgstr "Ezin da %s pakete fitxategia analizatu (1)"
  3153. #~ msgid "Vendor block %s contains no fingerprint"
  3154. #~ msgstr "%s saltzaile blokeak ez du egiaztapen markarik"
  3155. #~ msgid "Total dependency version space: "
  3156. #~ msgstr "Guztira bertsio dependentzia lekua: "
  3157. #~ msgid "You don't have enough free space in %s"
  3158. #~ msgstr "Ez daukazu nahikoa leku libre %s(e)n."
  3159. #~ msgid "Done"
  3160. #~ msgstr "Eginda"
  3161. #, fuzzy
  3162. #~ msgid "No keyring installed in %s."
  3163. #~ msgstr "Abortatu instalazioa."
  3164. #, fuzzy
  3165. #~ msgid "Internal error, Upgrade broke stuff"
  3166. #~ msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du"
  3167. #~ msgid "%s not a valid DEB package."
  3168. #~ msgstr "%s ez da baliozko DEB pakete bat."
  3169. #~ msgid ""
  3170. #~ "Using CD-ROM mount point %s\n"
  3171. #~ "Mounting CD-ROM\n"
  3172. #~ msgstr ""
  3173. #~ "%s CD-ROM muntatze puntua erabiltzen\n"
  3174. #~ "CD-ROM-a muntatzen\n"
  3175. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3176. #~ msgstr ""
  3177. #~ "Hau ez da baliozko DEB fitxategi bat, ez du '%s', '%s' edo '%s' atalik "
  3178. #~ msgid "MD5Sum mismatch"
  3179. #~ msgstr "MD5Sum ez dator bat"
  3180. #~ msgid ""
  3181. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3182. #~ "need to manually fix this package."
  3183. #~ msgstr ""
  3184. #~ "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz "
  3185. #~ "konpondu beharko duzu paketea."
  3186. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3187. #~ msgstr ""
  3188. #~ "Ezin da erregistroa idatzi, openpty() -ek huts egin du (/dev/pts ez dago "
  3189. #~ "muntaturik?)\n"
  3190. #, fuzzy
  3191. #~ msgid "Skipping nonexistent file %s"
  3192. #~ msgstr "%s konfigurazio fitxategia irekitzen"
  3193. #~ msgid "Failed to remove %s"
  3194. #~ msgstr "Huts egin du %s kentzean"
  3195. #~ msgid "Unable to create %s"
  3196. #~ msgstr "Ezin da %s sortu"
  3197. #~ msgid "Failed to stat %sinfo"
  3198. #~ msgstr "Huts egin du %sinfo-tik datuak lortzean"
  3199. #~ msgid "The info and temp directories need to be on the same filesystem"
  3200. #~ msgstr "info eta temp direktorioek fitxategi sistema berean egon behar dute"
  3201. #~ msgid "Failed to change to the admin dir %sinfo"
  3202. #~ msgstr "Huts egin du %sinfo administrazio direktoriora aldatzean"
  3203. #~ msgid "Internal error getting a package name"
  3204. #~ msgstr "Barne errorea pakete Izen bat eskuratzerakoan"
  3205. #~ msgid "Reading file listing"
  3206. #~ msgstr "Fitxategi zerrendaketa irakurtzen"
  3207. #~ msgid ""
  3208. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3209. #~ "then make it empty and immediately re-install the same version of the "
  3210. #~ "package!"
  3211. #~ msgstr ""
  3212. #~ "Huts egin du '%sinfo/%s' zerrenda-fitxategia irekitzean. Fitxategi hori "
  3213. #~ "ezin baduzu leheneratu, hustu ezazu, eta berrinstalatu berehala "
  3214. #~ "paketearen bertsio bera!"
  3215. #~ msgid "Failed reading the list file %sinfo/%s"
  3216. #~ msgstr "Huts egin du %sinfo/%s zerrenda fitxategia irakurtzean"
  3217. #~ msgid "Internal error getting a node"
  3218. #~ msgstr "Barne errorea nodo bat eskuratzerakoan"
  3219. #~ msgid "Failed to open the diversions file %sdiversions"
  3220. #~ msgstr "Huts egin du desbideratzeen %sdiversions fitxategia irekitzean"
  3221. #~ msgid "The diversion file is corrupted"
  3222. #~ msgstr "Desbideratze fitxategia hondatuta dago"
  3223. #~ msgid "Invalid line in the diversion file: %s"
  3224. #~ msgstr "Lerro baliogabea desbideratze fitxategian: %s"
  3225. #~ msgid "Internal error adding a diversion"
  3226. #~ msgstr "Barne errorea desbideratze bat gehitzean"
  3227. #~ msgid "The pkg cache must be initialized first"
  3228. #~ msgstr "Paketearen katxea hasieratu behar da lehendabizi"
  3229. #~ msgid "Failed to find a Package: header, offset %lu"
  3230. #~ msgstr "Ezin izan da pakete bat aurkitu: Burua, mugitu %lu"
  3231. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3232. #~ msgstr "Okerreko ConfFile sekzioa egoera fitxategian. Desplazamendua %lu"
  3233. #~ msgid "Error parsing MD5. Offset %lu"
  3234. #~ msgstr "Errorea MD5 analizatzean. Desplazamendua %lu"
  3235. #~ msgid "Couldn't change to %s"
  3236. #~ msgstr "Ezin izan da %s(e)ra aldatu"
  3237. #~ msgid "Failed to locate a valid control file"
  3238. #~ msgstr "Ezin izan da baliozko kontrol fitxategi bat lokalizatu"
  3239. #~ msgid "Couldn't open pipe for %s"
  3240. #~ msgstr "Ezin izan da %s(r)en kanalizazioa ireki"
  3241. #~ msgid "Read error from %s process"
  3242. #~ msgstr "Irakurri errorea %s prozesutik"
  3243. #~ msgid "Got a single header line over %u chars"
  3244. #~ msgstr "Goiburu-lerro bakarra eskuratu da %u karaktereen gainean"
  3245. #~ msgid "Malformed override %s line %lu #1"
  3246. #~ msgstr "Gaizki osatutako override %s, lerroa: %lu #1"
  3247. #~ msgid "Malformed override %s line %lu #2"
  3248. #~ msgstr "Gaizki osatutako override %s, lerroa: %lu #2"
  3249. #~ msgid "Malformed override %s line %lu #3"
  3250. #~ msgstr "Gaizki osatutako override %s, lerroa: %lu #3"
  3251. #~ msgid "decompressor"
  3252. #~ msgstr "deskonpresorea"
  3253. #~ msgid "read, still have %lu to read but none left"
  3254. #~ msgstr "irakurrita; oraindik %lu irakurtzeke, baina ez da ezer geratzen"
  3255. #~ msgid "write, still have %lu to write but couldn't"
  3256. #~ msgstr "idatzita; oraindik %lu idazteke, baina ezin da"
  3257. #~ msgid "Error occurred while processing %s (NewPackage)"
  3258. #~ msgstr "Errorea gertatu da %s prozesatzean (NewPackage)"
  3259. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3260. #~ msgstr "Errorea gertatu da %s prozesatzean (UsePackage1)"
  3261. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3262. #~ msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)"
  3263. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3264. #~ msgstr "Errorea gertatu da %s prozesatzean (UsePackage2)"
  3265. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3266. #~ msgstr "Errorea gertatu da %s prozesatzean (NewFileVer1)"
  3267. #, fuzzy
  3268. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3269. #~ msgstr "Errorea gertatu da %s prozesatzean (NewVersion1)"
  3270. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3271. #~ msgstr "Errorea gertatu da %s prozesatzean (UsePackage3)"
  3272. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3273. #~ msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)"
  3274. #~ msgid "Error occurred while processing %s (FindPkg)"
  3275. #~ msgstr "Errorea gertatu da %s prozesatzean (FindPkg)"
  3276. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3277. #~ msgstr "Errorea gertatu da %s prozesatzean (CollectFileProvides)"
  3278. #~ msgid "Internal error, could not locate member"
  3279. #~ msgstr "Barne Errorea, ezin da atala kokatu"
  3280. #~ msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting."
  3281. #~ msgstr "E: Acquire::gpgv::Options argumentu zerrenda luzeegia. Uzten."
  3282. #~ msgid "Error occurred while processing %s (NewVersion2)"
  3283. #~ msgstr "Errorea gertatu da %s prozesatzean (NewVersion2)"
  3284. #~ msgid "Malformed line %u in source list %s (vendor id)"
  3285. #~ msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (hornitzaile id-a)"
  3286. #~ msgid "Couldn't access keyring: '%s'"
  3287. #~ msgstr "Ezin da eraztuna ebatzi: '%s'"
  3288. #~ msgid "Could not patch file"
  3289. #~ msgstr "Ezin izan zaio fitxategiari adabakia ezarri"
  3290. #~ msgid " %4i %s\n"
  3291. #~ msgstr " %4i %s\n"
  3292. #~ msgid "%4i %s\n"
  3293. #~ msgstr "%4i %s\n"
  3294. #~ msgid "Processing triggers for %s"
  3295. #~ msgstr "%s-ren abiarazleak prozesatzen"