eu.po 117 KB

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