eu.po 114 KB

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