eu.po 113 KB

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