eu.po 115 KB

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