eu.po 117 KB

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