eu.po 112 KB

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