hu.po 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209
  1. # Advanced Package Transfer - APT message translation catalog
  2. # Hungarian messages
  3. #
  4. # PASZTOR Gyorgy <pasztor@linux.gyakg.u-szeged.hu>, 2002.
  5. # Gabor Kelemen <kelemeng at gnome dot hu>, 2004, 2005, 2011, 2012.
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: apt 1.0.5\n"
  9. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  10. "POT-Creation-Date: 2015-12-30 00:41+0100\n"
  11. "PO-Revision-Date: 2012-06-25 17:09+0200\n"
  12. "Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
  13. "Language-Team: Hungarian <gnome-hu-list@gnome.org>\n"
  14. "Language: hu\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Launchpad-Export-Date: 2011-12-27 15:00+0000\n"
  20. "X-Generator: KBabel 1.11.4\n"
  21. "X-Poedit-Country: HUNGARY\n"
  22. "X-Poedit-Language: Hungarian\n"
  23. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  24. #: apt-private/acqprogress.cc
  25. #, c-format
  26. msgid "Hit:%lu %s"
  27. msgstr "Találat:%lu %s"
  28. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  29. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  30. #: apt-private/acqprogress.cc
  31. #, c-format
  32. msgid "Get:%lu %s"
  33. msgstr "Letöltés:%lu %s"
  34. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  35. #. which failed to download, but the error is ignored (compare "Err:")
  36. #: apt-private/acqprogress.cc
  37. #, c-format
  38. msgid "Ign:%lu %s"
  39. msgstr "Mellőz:%lu %s"
  40. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  41. #. which failed to download and the error is critical (compare "Ign:")
  42. #: apt-private/acqprogress.cc
  43. #, c-format
  44. msgid "Err:%lu %s"
  45. msgstr "Hiba:%lu %s"
  46. #: apt-private/acqprogress.cc
  47. #, c-format
  48. msgid "Fetched %sB in %s (%sB/s)\n"
  49. msgstr "Letöltve %sB %s alatt (%sB/s)\n"
  50. #: apt-private/acqprogress.cc
  51. msgid " [Working]"
  52. msgstr " [Folyamatban]"
  53. #: apt-private/acqprogress.cc
  54. #, fuzzy, c-format
  55. msgid ""
  56. "Media change: please insert the disc labeled\n"
  57. " '%s'\n"
  58. "in the drive '%s' and press [Enter]\n"
  59. msgstr ""
  60. "Helyezze be a(z)\n"
  61. " „%s”\n"
  62. "címkéjű lemezt a(z) %s meghajtóba, és nyomja meg az Entert\n"
  63. #: apt-private/private-cachefile.cc
  64. msgid "Correcting dependencies..."
  65. msgstr "Függőségek javítása..."
  66. #: apt-private/private-cachefile.cc
  67. msgid " failed."
  68. msgstr " sikertelen."
  69. #: apt-private/private-cachefile.cc
  70. msgid "Unable to correct dependencies"
  71. msgstr "Nem lehet javítani a függőségeket"
  72. #: apt-private/private-cachefile.cc
  73. msgid "Unable to minimize the upgrade set"
  74. msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét"
  75. #: apt-private/private-cachefile.cc
  76. msgid " Done"
  77. msgstr " Kész"
  78. #: apt-private/private-cachefile.cc
  79. msgid "You might want to run 'apt-get -f install' to correct these."
  80. msgstr "Próbálja futtatni az „apt-get -f install” parancsot ezek javításához."
  81. #: apt-private/private-cachefile.cc
  82. msgid "Unmet dependencies. Try using -f."
  83. msgstr "Teljesítetlen függőségek. Próbálja a -f használatával."
  84. #: apt-private/private-cacheset.cc apt-private/private-search.cc
  85. msgid "Sorting"
  86. msgstr ""
  87. #: apt-private/private-cacheset.cc
  88. #, c-format
  89. msgid "Note, selecting '%s' for task '%s'\n"
  90. msgstr "Megjegyzés: „%s” kijelölése „%s” feladathoz\n"
  91. #: apt-private/private-cacheset.cc
  92. #, fuzzy, c-format
  93. msgid "Note, selecting '%s' for glob '%s'\n"
  94. msgstr "Megjegyzés: „%s” kijelölése „%s” regexhez\n"
  95. #: apt-private/private-cacheset.cc
  96. #, c-format
  97. msgid "Note, selecting '%s' for regex '%s'\n"
  98. msgstr "Megjegyzés: „%s” kijelölése „%s” regexhez\n"
  99. #: apt-private/private-cacheset.cc
  100. #, c-format
  101. msgid "Package %s is a virtual package provided by:\n"
  102. msgstr "%s egy virtuális csomag, melyet az alábbi csomagok biztosítanak:\n"
  103. #: apt-private/private-cacheset.cc
  104. #, fuzzy
  105. msgid " [Installed]"
  106. msgstr " [Telepítve]"
  107. #: apt-private/private-cacheset.cc
  108. msgid " [Not candidate version]"
  109. msgstr " [Nem jelölt verzió]"
  110. #: apt-private/private-cacheset.cc
  111. msgid "You should explicitly select one to install."
  112. msgstr "Egyet név szerint ki kell jelölni a telepítésre."
  113. #: apt-private/private-cacheset.cc
  114. #, c-format
  115. msgid ""
  116. "Package %s is not available, but is referred to by another package.\n"
  117. "This may mean that the package is missing, has been obsoleted, or\n"
  118. "is only available from another source\n"
  119. msgstr ""
  120. "%s csomag nem elérhető, de egy másik hivatkozik rá.\n"
  121. "A kért csomag hiányzik, elavult vagy csak más forrásból érhető el\n"
  122. #: apt-private/private-cacheset.cc
  123. msgid "However the following packages replace it:"
  124. msgstr "De az alábbi csomagok helyettesítik:"
  125. #: apt-private/private-cacheset.cc
  126. #, c-format
  127. msgid "Package '%s' has no installation candidate"
  128. msgstr "„%s” csomagnak nincs telepítésre jelölt verziója"
  129. #: apt-private/private-cacheset.cc
  130. #, c-format
  131. msgid "Virtual packages like '%s' can't be removed\n"
  132. msgstr "A virtuális csomagokat, mint a(z) „%s” nem lehet eltávolítani\n"
  133. #. TRANSLATORS: Note, this is not an interactive question
  134. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  135. #, c-format
  136. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  137. msgstr ""
  138. "A(z) „%s” csomag nincs telepítve, így nem lett törölve. Erre gondolt: „%s”?\n"
  139. #: apt-private/private-cacheset.cc apt-private/private-install.cc
  140. #, c-format
  141. msgid "Package '%s' is not installed, so not removed\n"
  142. msgstr "A(z) „%s” csomag nincs telepítve, így nem lett törölve\n"
  143. #: apt-private/private-cacheset.cc
  144. #, c-format
  145. msgid "Note, selecting '%s' instead of '%s'\n"
  146. msgstr "Megjegyzés: „%s” kijelölése „%s” helyett\n"
  147. #: apt-private/private-cmndline.cc
  148. msgid "Most used commands:"
  149. msgstr ""
  150. #: apt-private/private-cmndline.cc
  151. #, c-format
  152. msgid "See %s for more information about the available commands."
  153. msgstr ""
  154. #: apt-private/private-cmndline.cc
  155. msgid ""
  156. "Configuration options and syntax is detailed in apt.conf(5).\n"
  157. "Information about how to configure sources can be found in sources.list(5).\n"
  158. "Package and version choices can be expressed via apt_preferences(5).\n"
  159. "Security details are available in apt-secure(8).\n"
  160. msgstr ""
  161. #: apt-private/private-cmndline.cc
  162. msgid "This APT has Super Cow Powers."
  163. msgstr "Ez az APT a SzuperTehén Hatalmával rendelkezik."
  164. #: apt-private/private-cmndline.cc
  165. msgid "This APT helper has Super Meep Powers."
  166. msgstr ""
  167. #: apt-private/private-depends.cc apt-private/private-show.cc
  168. #: cmdline/apt-mark.cc
  169. msgid "No packages found"
  170. msgstr "Nem találhatók csomagok"
  171. #: apt-private/private-download.cc
  172. msgid "WARNING: The following packages cannot be authenticated!"
  173. msgstr "FIGYELMEZTETÉS: Az alábbi csomagok nem hitelesíthetők!"
  174. #: apt-private/private-download.cc
  175. msgid "Authentication warning overridden.\n"
  176. msgstr "A hitelesítési figyelmeztetés felülbírálva.\n"
  177. #: apt-private/private-download.cc
  178. msgid "Some packages could not be authenticated"
  179. msgstr "Néhány csomag nem hitelesíthető"
  180. #: apt-private/private-download.cc
  181. msgid "Install these packages without verification?"
  182. msgstr "Valóban ellenőrzés nélkül telepíti a csomagokat?"
  183. #: apt-private/private-download.cc apt-private/private-install.cc
  184. msgid ""
  185. "--force-yes is deprecated, use one of the options starting with --allow "
  186. "instead."
  187. msgstr ""
  188. #: apt-private/private-download.cc
  189. #, fuzzy
  190. msgid ""
  191. "There were unauthenticated packages and -y was used without --allow-"
  192. "unauthenticated"
  193. msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül"
  194. #: apt-private/private-download.cc
  195. #, c-format
  196. msgid "Failed to fetch %s %s\n"
  197. msgstr "Sikertelen letöltés: %s %s\n"
  198. #: apt-private/private-download.cc
  199. #, c-format
  200. msgid "Couldn't determine free space in %s"
  201. msgstr "Nem határozható meg a szabad hely mennyisége itt: %s"
  202. #: apt-private/private-download.cc
  203. #, c-format
  204. msgid "You don't have enough free space in %s."
  205. msgstr "Nincs elég szabad hely itt: %s."
  206. #: apt-private/private-download.cc
  207. msgid "Unable to lock the download directory"
  208. msgstr "Nem lehet zárolni a letöltési könyvtárat"
  209. #: apt-private/private-install.cc
  210. msgid "Internal error, InstallPackages was called with broken packages!"
  211. msgstr "Belső hiba, az InstallPackages törött csomagokkal lett meghívva!"
  212. #: apt-private/private-install.cc
  213. msgid "Packages need to be removed but remove is disabled."
  214. msgstr "Csomagokat kellene eltávolítani, de az eltávolítás nem engedélyezett."
  215. #: apt-private/private-install.cc
  216. #, fuzzy
  217. msgid ""
  218. "Essential packages were removed and -y was used without --allow-remove-"
  219. "essential."
  220. msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül"
  221. #: apt-private/private-install.cc
  222. #, fuzzy
  223. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  224. msgstr "Problémák vannak, és a -y kapcsolót használta --force-yes nélkül"
  225. #: apt-private/private-install.cc
  226. msgid ""
  227. "Held packages were changed and -y was used without --allow-change-held-"
  228. "packages."
  229. msgstr ""
  230. #: apt-private/private-install.cc
  231. msgid "Internal error, Ordering didn't finish"
  232. msgstr "Belső hiba, a rendezés nem fejeződött be"
  233. #: apt-private/private-install.cc
  234. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  235. msgstr "A méretek nem egyeznek, írjon az apt@packages.debian.org címre"
  236. #. TRANSLATOR: The required space between number and unit is already included
  237. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  238. #: apt-private/private-install.cc
  239. #, c-format
  240. msgid "Need to get %sB/%sB of archives.\n"
  241. msgstr "Letöltendő adatmennyiség: %sB/%sB.\n"
  242. #. TRANSLATOR: The required space between number and unit is already included
  243. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  244. #: apt-private/private-install.cc
  245. #, c-format
  246. msgid "Need to get %sB of archives.\n"
  247. msgstr "Letöltendő adatmennyiség: %sB.\n"
  248. #. TRANSLATOR: The required space between number and unit is already included
  249. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  250. #: apt-private/private-install.cc
  251. #, c-format
  252. msgid "After this operation, %sB of additional disk space will be used.\n"
  253. msgstr "A művelet után %sB lemezterület kerül felhasználásra.\n"
  254. #. TRANSLATOR: The required space between number and unit is already included
  255. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  256. #: apt-private/private-install.cc
  257. #, c-format
  258. msgid "After this operation, %sB disk space will be freed.\n"
  259. msgstr "A művelet után %sB lemezterület szabadul fel.\n"
  260. #: apt-private/private-install.cc
  261. msgid "Trivial Only specified but this is not a trivial operation."
  262. msgstr "A „Trivial Only” meg van adva, de ez nem egy triviális művelet."
  263. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  264. #. careful with hard to type or special characters (like non-breaking spaces)
  265. #: apt-private/private-install.cc
  266. msgid "Yes, do as I say!"
  267. msgstr "Igen, tedd amit mondok!"
  268. #: apt-private/private-install.cc
  269. #, c-format
  270. msgid ""
  271. "You are about to do something potentially harmful.\n"
  272. "To continue type in the phrase '%s'\n"
  273. " ?] "
  274. msgstr ""
  275. "Ártalmasnak tűnő műveletet készül végrehajtani.\n"
  276. "A folytatáshoz írja be ezt a mondatot: „%s”\n"
  277. " ?] "
  278. #: apt-private/private-install.cc
  279. msgid "Abort."
  280. msgstr "Megszakítva."
  281. #: apt-private/private-install.cc
  282. msgid "Do you want to continue?"
  283. msgstr "Folytatni akarja?"
  284. #: apt-private/private-install.cc
  285. msgid "Some files failed to download"
  286. msgstr "Néhány fájlt nem sikerült letölteni"
  287. #: apt-private/private-install.cc apt-private/private-source.cc
  288. msgid "Download complete and in download only mode"
  289. msgstr "A letöltés befejeződött a „csak letöltés” módban"
  290. #: apt-private/private-install.cc
  291. msgid ""
  292. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  293. "missing?"
  294. msgstr ""
  295. "Nem lehet letölteni néhány archívumot. Próbálja futtatni az „apt-get update” "
  296. "parancsot, vagy használja a --fix-missing kapcsolót."
  297. #: apt-private/private-install.cc
  298. msgid "--fix-missing and media swapping is not currently supported"
  299. msgstr "A --fix-missing és az adathordozó-csere jelenleg nem támogatott"
  300. #: apt-private/private-install.cc
  301. msgid "Unable to correct missing packages."
  302. msgstr "Nem lehet javítani a hiányzó csomagokat."
  303. #: apt-private/private-install.cc
  304. msgid "Aborting install."
  305. msgstr "Telepítés megszakítása."
  306. #: apt-private/private-install.cc
  307. msgid ""
  308. "The following package disappeared from your system as\n"
  309. "all files have been overwritten by other packages:"
  310. msgid_plural ""
  311. "The following packages disappeared from your system as\n"
  312. "all files have been overwritten by other packages:"
  313. msgstr[0] ""
  314. "A következő csomag eltűnt a rendszerből, mivel\n"
  315. "az összes fájlt más csomagok fölülírták:"
  316. msgstr[1] ""
  317. "A következő csomagok eltűntek a rendszerből, mivel\n"
  318. "az összes fájlt más csomagok fölülírták:"
  319. #: apt-private/private-install.cc
  320. msgid "Note: This is done automatically and on purpose by dpkg."
  321. msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre."
  322. #: apt-private/private-install.cc
  323. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  324. msgstr "Nem kellene semmit törölni, az AutoRemover nem indítható"
  325. #: apt-private/private-install.cc
  326. msgid ""
  327. "Hmm, seems like the AutoRemover destroyed something which really\n"
  328. "shouldn't happen. Please file a bug report against apt."
  329. msgstr ""
  330. "Úgy tűnik, az AutoRemover hibát okozott, ez nem történhetne meg.\n"
  331. "Küldjön hibajelentést az apt csomaghoz."
  332. #.
  333. #. if (Packages == 1)
  334. #. {
  335. #. c1out << std::endl;
  336. #. c1out <<
  337. #. _("Since you only requested a single operation it is extremely likely that\n"
  338. #. "the package is simply not installable and a bug report against\n"
  339. #. "that package should be filed.") << std::endl;
  340. #. }
  341. #.
  342. #: apt-private/private-install.cc
  343. msgid "The following information may help to resolve the situation:"
  344. msgstr "Az alábbi információk segíthetnek megoldani a problémát:"
  345. #: apt-private/private-install.cc
  346. msgid "Internal Error, AutoRemover broke stuff"
  347. msgstr "Belső hiba, az AutoRemover sérült"
  348. #: apt-private/private-install.cc
  349. msgid ""
  350. "The following package was automatically installed and is no longer required:"
  351. msgid_plural ""
  352. "The following packages were automatically installed and are no longer "
  353. "required:"
  354. msgstr[0] ""
  355. "A következő csomag automatikusan lett telepítve, és már nincs rá szükség:"
  356. msgstr[1] ""
  357. "A következő csomagok automatikusan lettek telepítve, és már nincs rájuk "
  358. "szükség:"
  359. #: apt-private/private-install.cc
  360. #, c-format
  361. msgid "%lu package was automatically installed and is no longer required.\n"
  362. msgid_plural ""
  363. "%lu packages were automatically installed and are no longer required.\n"
  364. msgstr[0] "%lu csomag automatikusan lett telepítve, és már nincs rá szükség.\n"
  365. msgstr[1] ""
  366. "%lu csomag automatikusan lett telepítve, és már nincs rájuk szükség.\n"
  367. #: apt-private/private-install.cc
  368. #, c-format
  369. msgid "Use '%s' to remove it."
  370. msgid_plural "Use '%s' to remove them."
  371. msgstr[0] "Ezt az „%s” paranccsal törölheti."
  372. msgstr[1] "Ezeket az „%s” paranccsal törölheti."
  373. #: apt-private/private-install.cc
  374. msgid "You might want to run 'apt-get -f install' to correct these:"
  375. msgstr ""
  376. "Próbálja futtatni az „apt-get -f install” parancsot az alábbiak javításához:"
  377. #: apt-private/private-install.cc
  378. msgid ""
  379. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  380. "solution)."
  381. msgstr ""
  382. "Teljesítetlen függőségek. Próbálja kiadni az „apt-get -f install” parancsot "
  383. "csomagok nélkül (vagy telepítse a függőségeket is!)."
  384. #: apt-private/private-install.cc
  385. msgid ""
  386. "Some packages could not be installed. This may mean that you have\n"
  387. "requested an impossible situation or if you are using the unstable\n"
  388. "distribution that some required packages have not yet been created\n"
  389. "or been moved out of Incoming."
  390. msgstr ""
  391. "Néhány csomagot nem lehetett telepíteni. Ez azt jelentheti, hogy\n"
  392. "egy lehetetlen állapotot kért, vagy ha az unstable disztribúciót\n"
  393. "használja, akkor néhány igényelt csomag még nem készült el vagy ki\n"
  394. "lett mozdítva az Incoming-ból."
  395. #: apt-private/private-install.cc
  396. msgid "Broken packages"
  397. msgstr "Törött csomagok"
  398. #: apt-private/private-install.cc
  399. #, fuzzy
  400. msgid "The following additional packages will be installed:"
  401. msgstr "Az alábbi extra csomagok kerülnek telepítésre:"
  402. #: apt-private/private-install.cc
  403. msgid "Suggested packages:"
  404. msgstr "Javasolt csomagok:"
  405. #: apt-private/private-install.cc
  406. msgid "Recommended packages:"
  407. msgstr "Ajánlott csomagok:"
  408. #: apt-private/private-install.cc
  409. #, c-format
  410. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  411. msgstr "%s kihagyása, ez már telepítve van, és a frissítés nincs beállítva.\n"
  412. #: apt-private/private-install.cc
  413. #, c-format
  414. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  415. msgstr "„%s” kihagyása, nincs telepítve, és csak frissítések lettek kérve.\n"
  416. #: apt-private/private-install.cc
  417. #, c-format
  418. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  419. msgstr "%s újratelepítése nem lehetséges, mert nem lehet letölteni.\n"
  420. #. TRANSLATORS: First string is package name, second is version
  421. #: apt-private/private-install.cc
  422. #, fuzzy, c-format
  423. msgid "%s is already the newest version (%s).\n"
  424. msgstr "%s már a legújabb verzió.\n"
  425. #: apt-private/private-install.cc cmdline/apt-get.cc cmdline/apt-mark.cc
  426. #, c-format
  427. msgid "%s set to manually installed.\n"
  428. msgstr "%s kézi telepítésűre állítva.\n"
  429. #: apt-private/private-install.cc
  430. #, c-format
  431. msgid "Selected version '%s' (%s) for '%s'\n"
  432. msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”\n"
  433. #: apt-private/private-install.cc
  434. #, c-format
  435. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  436. msgstr "„%s” (%s) verzió lett kijelölve ehhez: „%s”, a(z) „%s” miatt\n"
  437. #: apt-private/private-list.cc
  438. msgid "Listing"
  439. msgstr ""
  440. #: apt-private/private-list.cc
  441. #, c-format
  442. msgid "There is %i additional version. Please use the '-a' switch to see it"
  443. msgid_plural ""
  444. "There are %i additional versions. Please use the '-a' switch to see them."
  445. msgstr[0] ""
  446. msgstr[1] ""
  447. #: apt-private/private-main.cc
  448. msgid ""
  449. "NOTE: This is only a simulation!\n"
  450. " apt-get needs root privileges for real execution.\n"
  451. " Keep also in mind that locking is deactivated,\n"
  452. " so don't depend on the relevance to the real current situation!"
  453. msgstr ""
  454. "NE FELEDJE: Ez csak szimuláció!\n"
  455. " Az apt-get rendszergazdai jogokat igényel a tényleges végrehajtáshoz.\n"
  456. " Ne feledje, hogy a zárolás is ki van kapcsolva,\n"
  457. " így ne számítson a jelenlegi helyzet valósságára!"
  458. #: apt-private/private-output.cc apt-private/private-show.cc
  459. msgid "unknown"
  460. msgstr ""
  461. #: apt-private/private-output.cc
  462. #, fuzzy, c-format
  463. msgid "[installed,upgradable to: %s]"
  464. msgstr " [Telepítve]"
  465. #: apt-private/private-output.cc
  466. #, fuzzy
  467. msgid "[installed,local]"
  468. msgstr " [Telepítve]"
  469. #: apt-private/private-output.cc
  470. msgid "[installed,auto-removable]"
  471. msgstr ""
  472. #: apt-private/private-output.cc
  473. #, fuzzy
  474. msgid "[installed,automatic]"
  475. msgstr " [Telepítve]"
  476. #: apt-private/private-output.cc
  477. #, fuzzy
  478. msgid "[installed]"
  479. msgstr " [Telepítve]"
  480. #: apt-private/private-output.cc
  481. #, c-format
  482. msgid "[upgradable from: %s]"
  483. msgstr ""
  484. #: apt-private/private-output.cc
  485. msgid "[residual-config]"
  486. msgstr ""
  487. #: apt-private/private-output.cc
  488. #, c-format
  489. msgid "but %s is installed"
  490. msgstr "de %s van telepítve"
  491. #: apt-private/private-output.cc
  492. #, c-format
  493. msgid "but %s is to be installed"
  494. msgstr "de csak %s telepíthető"
  495. #: apt-private/private-output.cc
  496. msgid "but it is not installable"
  497. msgstr "de az nem telepíthető"
  498. #: apt-private/private-output.cc
  499. msgid "but it is a virtual package"
  500. msgstr "de az egy virtuális csomag"
  501. #: apt-private/private-output.cc
  502. msgid "but it is not installed"
  503. msgstr "de az nincs telepítve"
  504. #: apt-private/private-output.cc
  505. msgid "but it is not going to be installed"
  506. msgstr "de az nincs telepítésre megjelölve"
  507. #: apt-private/private-output.cc
  508. msgid " or"
  509. msgstr " vagy"
  510. #: apt-private/private-output.cc
  511. msgid "The following packages have unmet dependencies:"
  512. msgstr "Az alábbi csomagoknak teljesítetlen függőségei vannak:"
  513. #: apt-private/private-output.cc
  514. msgid "The following NEW packages will be installed:"
  515. msgstr "Az alábbi ÚJ csomagok lesznek telepítve:"
  516. #: apt-private/private-output.cc
  517. msgid "The following packages will be REMOVED:"
  518. msgstr "Az alábbi csomagok el lesznek TÁVOLÍTVA:"
  519. #: apt-private/private-output.cc
  520. msgid "The following packages have been kept back:"
  521. msgstr "Az alábbi csomagok vissza lesznek tartva:"
  522. #: apt-private/private-output.cc
  523. msgid "The following packages will be upgraded:"
  524. msgstr "Az alábbi csomagok frissítve lesznek:"
  525. #: apt-private/private-output.cc
  526. msgid "The following packages will be DOWNGRADED:"
  527. msgstr "Az alábbi csomagok VISSZAFEJLESZTÉSRE kerülnek:"
  528. #: apt-private/private-output.cc
  529. msgid "The following held packages will be changed:"
  530. msgstr "Az alábbi visszafogott csomagokat cserélem:"
  531. #: apt-private/private-output.cc
  532. #, c-format
  533. msgid "%s (due to %s)"
  534. msgstr "%s (%s miatt)"
  535. #: apt-private/private-output.cc
  536. msgid ""
  537. "WARNING: The following essential packages will be removed.\n"
  538. "This should NOT be done unless you know exactly what you are doing!"
  539. msgstr ""
  540. "FIGYELMEZTETÉS: Az alábbi alapvető csomagok el lesznek távolítva.\n"
  541. "NE tegye ezt, hacsak nem tudja pontosan, mit csinál!"
  542. #: apt-private/private-output.cc
  543. #, c-format
  544. msgid "%lu upgraded, %lu newly installed, "
  545. msgstr "%lu frissített, %lu újonnan telepített, "
  546. #: apt-private/private-output.cc
  547. #, c-format
  548. msgid "%lu reinstalled, "
  549. msgstr "%lu újratelepítendő, "
  550. #: apt-private/private-output.cc
  551. #, c-format
  552. msgid "%lu downgraded, "
  553. msgstr "%lu visszafejlesztendő, "
  554. #: apt-private/private-output.cc
  555. #, c-format
  556. msgid "%lu to remove and %lu not upgraded.\n"
  557. msgstr "%lu eltávolítandó és %lu nem frissített.\n"
  558. #: apt-private/private-output.cc
  559. #, c-format
  560. msgid "%lu not fully installed or removed.\n"
  561. msgstr "%lu nincs teljesen telepítve/eltávolítva.\n"
  562. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  563. #. e.g. "Do you want to continue? [Y/n] "
  564. #. The user has to answer with an input matching the
  565. #. YESEXPR/NOEXPR defined in your l10n.
  566. #: apt-private/private-output.cc
  567. msgid "[Y/n]"
  568. msgstr "[I/n]"
  569. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  570. #. e.g. "Should this file be removed? [y/N] "
  571. #. The user has to answer with an input matching the
  572. #. YESEXPR/NOEXPR defined in your l10n.
  573. #: apt-private/private-output.cc
  574. msgid "[y/N]"
  575. msgstr "[i/N]"
  576. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  577. #: apt-private/private-output.cc
  578. msgid "Y"
  579. msgstr "I"
  580. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  581. #: apt-private/private-output.cc
  582. msgid "N"
  583. msgstr "N"
  584. #: apt-private/private-output.cc apt-pkg/cachefilter.cc
  585. #, c-format
  586. msgid "Regex compilation error - %s"
  587. msgstr "Regex fordítási hiba - %s"
  588. #: apt-private/private-search.cc
  589. msgid "You must give at least one search pattern"
  590. msgstr "Legalább egy keresési mintát meg kell adnia"
  591. #: apt-private/private-search.cc
  592. msgid "Full Text Search"
  593. msgstr ""
  594. #: apt-private/private-show.cc cmdline/apt-cache.cc
  595. #, c-format
  596. msgid "Package file %s is out of sync."
  597. msgstr "%s csomagfájl nincs szinkronban."
  598. #: apt-private/private-show.cc
  599. #, c-format
  600. msgid "There is %i additional record. Please use the '-a' switch to see it"
  601. msgid_plural ""
  602. "There are %i additional records. Please use the '-a' switch to see them."
  603. msgstr[0] ""
  604. msgstr[1] ""
  605. #: apt-private/private-show.cc
  606. msgid "not a real package (virtual)"
  607. msgstr ""
  608. #: apt-private/private-show.cc apt-pkg/cacheset.cc
  609. #, c-format
  610. msgid "Unable to locate package %s"
  611. msgstr "Ez a csomag nem található: %s"
  612. #: apt-private/private-show.cc
  613. msgid "Package files:"
  614. msgstr "Csomagfájlok:"
  615. #: apt-private/private-show.cc
  616. msgid "Cache is out of sync, can't x-ref a package file"
  617. msgstr ""
  618. "A gyorsítótár nincs szinkronban, nem lehet kereszthivatkozni a csomagfájlra"
  619. #. Show any packages have explicit pins
  620. #: apt-private/private-show.cc
  621. msgid "Pinned packages:"
  622. msgstr "Rögzített csomagok:"
  623. #: apt-private/private-show.cc
  624. msgid "(not found)"
  625. msgstr "(nem található)"
  626. #. Print the package name and the version we are forcing to
  627. #: apt-private/private-show.cc
  628. #, c-format
  629. msgid "%s -> %s with priority %d\n"
  630. msgstr ""
  631. #: apt-private/private-show.cc
  632. msgid " Installed: "
  633. msgstr " Telepítve: "
  634. #: apt-private/private-show.cc
  635. msgid " Candidate: "
  636. msgstr " Jelölt: "
  637. #: apt-private/private-show.cc
  638. msgid "(none)"
  639. msgstr "(nincs)"
  640. #: apt-private/private-show.cc
  641. msgid " Package pin: "
  642. msgstr " Csomagrögzítés: "
  643. #. Show the priority tables
  644. #: apt-private/private-show.cc
  645. msgid " Version table:"
  646. msgstr " Verziótáblázat:"
  647. #: apt-private/private-source.cc
  648. #, fuzzy, c-format
  649. msgid "Can not find a package for architecture '%s'"
  650. msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel"
  651. #: apt-private/private-source.cc
  652. #, fuzzy, c-format
  653. msgid "Can not find a package '%s' with version '%s'"
  654. msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel"
  655. #: apt-private/private-source.cc
  656. #, fuzzy, c-format
  657. msgid "Can not find a package '%s' with release '%s'"
  658. msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel"
  659. #: apt-private/private-source.cc
  660. #, c-format
  661. msgid "Picking '%s' as source package instead of '%s'\n"
  662. msgstr "„%s” kiválasztása forráscsomagként „%s” helyett\n"
  663. #: apt-private/private-source.cc
  664. #, fuzzy, c-format
  665. msgid "Can not find version '%s' of package '%s'"
  666. msgstr ""
  667. "A(z) „%2$s” csomag el nem érhető „%1$s” verziójának figyelmen kívül hagyása"
  668. #: apt-private/private-source.cc
  669. msgid "Must specify at least one package to fetch source for"
  670. msgstr ""
  671. "Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni"
  672. #: apt-private/private-source.cc
  673. #, c-format
  674. msgid "Unable to find a source package for %s"
  675. msgstr "Nem található forráscsomag ehhez: %s"
  676. #: apt-private/private-source.cc
  677. #, c-format
  678. msgid ""
  679. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  680. "%s\n"
  681. msgstr ""
  682. "MEGJEGYZÉS: a(z) „%s” csomagolása a(z) „%s” verziókövető rendszerben van "
  683. "karbantartva:\n"
  684. "%s\n"
  685. #: apt-private/private-source.cc
  686. #, c-format
  687. msgid ""
  688. "Please use:\n"
  689. "%s\n"
  690. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  691. msgstr ""
  692. "Használja a következő parancsot:\n"
  693. "%s\n"
  694. "a csomag legújabb (esetleg kiadatlan) frissítéseinek letöltéséhez.\n"
  695. #: apt-private/private-source.cc
  696. #, c-format
  697. msgid "Skipping already downloaded file '%s'\n"
  698. msgstr "A már letöltött „%s” fájl kihagyása\n"
  699. #. TRANSLATOR: The required space between number and unit is already included
  700. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  701. #: apt-private/private-source.cc
  702. #, c-format
  703. msgid "Need to get %sB/%sB of source archives.\n"
  704. msgstr "Letöltendő forrásadat-mennyiség: %sB/%sB.\n"
  705. #. TRANSLATOR: The required space between number and unit is already included
  706. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  707. #: apt-private/private-source.cc
  708. #, c-format
  709. msgid "Need to get %sB of source archives.\n"
  710. msgstr "Letöltendő forrásadat-mennyiség: %sB.\n"
  711. #: apt-private/private-source.cc
  712. #, c-format
  713. msgid "Fetch source %s\n"
  714. msgstr "Forrás letöltése: %s\n"
  715. #: apt-private/private-source.cc
  716. msgid "Failed to fetch some archives."
  717. msgstr "Nem sikerült néhány archívumot letölteni."
  718. #: apt-private/private-source.cc
  719. #, c-format
  720. msgid "Skipping unpack of already unpacked source in %s\n"
  721. msgstr "Egy már kibontott forrás kibontásának kihagyása itt: %s\n"
  722. #: apt-private/private-source.cc
  723. #, c-format
  724. msgid "Unpack command '%s' failed.\n"
  725. msgstr "„%s” kibontási parancs nem sikerült.\n"
  726. #: apt-private/private-source.cc
  727. #, c-format
  728. msgid "Check if the 'dpkg-dev' package is installed.\n"
  729. msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n"
  730. #: apt-private/private-source.cc
  731. #, c-format
  732. msgid "Build command '%s' failed.\n"
  733. msgstr "„%s” elkészítési parancs nem sikerült.\n"
  734. #: apt-private/private-source.cc
  735. #, c-format
  736. msgid ""
  737. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  738. "packages"
  739. msgstr ""
  740. "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s nem "
  741. "engedélyezett a(z) „%4$s” csomagokon"
  742. #: apt-private/private-source.cc
  743. #, c-format
  744. msgid ""
  745. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  746. "found"
  747. msgstr ""
  748. "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag nem "
  749. "található"
  750. #: apt-private/private-source.cc
  751. #, c-format
  752. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  753. msgstr ""
  754. "%2$s csomag %1$s függősége nem elégíthető ki: a telepített %3$s csomag túl "
  755. "friss"
  756. #: apt-private/private-source.cc
  757. #, c-format
  758. msgid ""
  759. "%s dependency for %s cannot be satisfied because candidate version of "
  760. "package %s can't satisfy version requirements"
  761. msgstr ""
  762. "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomag elérhető "
  763. "verziója nem elégíti ki a verziókövetelményeket"
  764. #: apt-private/private-source.cc
  765. #, c-format
  766. msgid ""
  767. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  768. "version"
  769. msgstr ""
  770. "%2$s csomag %1$s függősége nem elégíthető ki, mert a(z) %3$s csomagnak nincs "
  771. "jelölt verziója"
  772. #: apt-private/private-source.cc
  773. #, c-format
  774. msgid "Failed to satisfy %s dependency for %s: %s"
  775. msgstr "%2$s csomag %1$s függősége nem elégíthető ki: %3$s"
  776. #: apt-private/private-source.cc
  777. #, c-format
  778. msgid "Build-dependencies for %s could not be satisfied."
  779. msgstr "%s építési függőségei nem elégíthetők ki."
  780. #: apt-private/private-source.cc
  781. #, c-format
  782. msgid "Unable to get build-dependency information for %s"
  783. msgstr "Nem lehet %s fordítási függőségeinek információit letölteni"
  784. #: apt-private/private-source.cc
  785. #, c-format
  786. msgid "%s has no build depends.\n"
  787. msgstr "Nincs fordítási függősége a következőnek: %s.\n"
  788. #: apt-private/private-source.cc
  789. msgid "Must specify at least one package to check builddeps for"
  790. msgstr ""
  791. "Legalább egy csomagot adjon meg, amelynek fordítási függőségeit ellenőrizni "
  792. "kell"
  793. #: apt-private/private-source.cc
  794. #, c-format
  795. msgid ""
  796. "No architecture information available for %s. See apt.conf(5) APT::"
  797. "Architectures for setup"
  798. msgstr ""
  799. "Nem érhetők el architektúrainformációk ehhez: %s. A beállításokkal "
  800. "kapcsolatban lásd az apt.conf(5) APT::Architectures részét."
  801. #: apt-private/private-source.cc
  802. #, c-format
  803. msgid "Note, using directory '%s' to get the build dependencies\n"
  804. msgstr ""
  805. #: apt-private/private-source.cc
  806. #, fuzzy, c-format
  807. msgid "Note, using file '%s' to get the build dependencies\n"
  808. msgstr "Nem sikerült az építési függőségeket feldolgozni"
  809. #: apt-private/private-source.cc
  810. msgid "Failed to process build dependencies"
  811. msgstr "Nem sikerült az építési függőségeket feldolgozni"
  812. #: apt-private/private-sources.cc
  813. #, fuzzy, c-format
  814. msgid "Failed to parse %s. Edit again? "
  815. msgstr "„%s” átnevezése sikertelen erre: %s"
  816. #: apt-private/private-sources.cc
  817. #, c-format
  818. msgid "Your '%s' file changed, please run 'apt-get update'."
  819. msgstr ""
  820. #: apt-private/private-unmet.cc
  821. #, c-format
  822. msgid "Package %s version %s has an unmet dep:\n"
  823. msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n"
  824. #: apt-private/private-update.cc
  825. msgid "The update command takes no arguments"
  826. msgstr "Az update parancsnak nincsenek argumentumai"
  827. #: apt-private/private-update.cc
  828. #, c-format
  829. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  830. msgid_plural ""
  831. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  832. msgstr[0] ""
  833. msgstr[1] ""
  834. #: apt-private/private-update.cc
  835. msgid "All packages are up to date."
  836. msgstr ""
  837. #: cmdline/apt-cache.cc
  838. #, fuzzy
  839. msgid "apt-cache stats does not take any arguments"
  840. msgstr "Az update parancsnak nincsenek argumentumai"
  841. #: cmdline/apt-cache.cc
  842. msgid "Total package names: "
  843. msgstr "Csomagnevek összesen : "
  844. #: cmdline/apt-cache.cc
  845. msgid "Total package structures: "
  846. msgstr "Csomagstruktúrák összesen: "
  847. #: cmdline/apt-cache.cc
  848. msgid " Normal packages: "
  849. msgstr " Normális csomagok: "
  850. #: cmdline/apt-cache.cc
  851. msgid " Pure virtual packages: "
  852. msgstr " Teljesen virtuális csomagok: "
  853. #: cmdline/apt-cache.cc
  854. msgid " Single virtual packages: "
  855. msgstr " Egyedi virtuális csomagok: "
  856. #: cmdline/apt-cache.cc
  857. msgid " Mixed virtual packages: "
  858. msgstr " Vegyes virtuális csomagok: "
  859. #: cmdline/apt-cache.cc
  860. msgid " Missing: "
  861. msgstr " Hiányzik: "
  862. #: cmdline/apt-cache.cc
  863. msgid "Total distinct versions: "
  864. msgstr "Különböző verziók összesen: "
  865. #: cmdline/apt-cache.cc
  866. msgid "Total distinct descriptions: "
  867. msgstr "Összes különböző leírás: "
  868. #: cmdline/apt-cache.cc
  869. msgid "Total dependencies: "
  870. msgstr "Függőségek összesen: "
  871. #: cmdline/apt-cache.cc
  872. msgid "Total ver/file relations: "
  873. msgstr "Verzió/Fájl kapcsolatok összesen: "
  874. #: cmdline/apt-cache.cc
  875. msgid "Total Desc/File relations: "
  876. msgstr "Leírás/Fájl kapcsolatok összesen: "
  877. #: cmdline/apt-cache.cc
  878. msgid "Total Provides mappings: "
  879. msgstr "„Biztosítja” kapcsolatok összesen: "
  880. #: cmdline/apt-cache.cc
  881. msgid "Total globbed strings: "
  882. msgstr "Minták összesen: "
  883. #: cmdline/apt-cache.cc
  884. msgid "Total slack space: "
  885. msgstr "Slack terület összesen: "
  886. #: cmdline/apt-cache.cc
  887. msgid "Total space accounted for: "
  888. msgstr "Nyilvántartott terület összesen: "
  889. #: cmdline/apt-cache.cc
  890. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  891. msgstr "Ez a parancs elavult. Használja helyette az „apt-mark showauto”-t."
  892. #: cmdline/apt-cache.cc
  893. msgid ""
  894. "Usage: apt-cache [options] command\n"
  895. " apt-cache [options] show pkg1 [pkg2 ...]\n"
  896. "\n"
  897. "apt-cache queries and displays available information about installed\n"
  898. "and installable packages. It works exclusively on the data acquired\n"
  899. "into the local cache via the 'update' command of e.g. apt-get. The\n"
  900. "displayed information may therefore be outdated if the last update was\n"
  901. "too long ago, but in exchange apt-cache works independently of the\n"
  902. "availability of the configured sources (e.g. offline).\n"
  903. msgstr ""
  904. #: cmdline/apt-cache.cc
  905. msgid "Show source records"
  906. msgstr "Megjeleníti a forrásrekordokat"
  907. #: cmdline/apt-cache.cc
  908. msgid "Search the package list for a regex pattern"
  909. msgstr "A csomaglistában keres reguláris kifejezéseket"
  910. #: cmdline/apt-cache.cc
  911. msgid "Show raw dependency information for a package"
  912. msgstr "Nyers függőségi információt mutat a csomagról"
  913. #: cmdline/apt-cache.cc
  914. msgid "Show reverse dependency information for a package"
  915. msgstr "Fordított függőségi információkat jelenít meg a csomagról"
  916. #: cmdline/apt-cache.cc
  917. msgid "Show a readable record for the package"
  918. msgstr "Megjeleníti a csomag leírását"
  919. #: cmdline/apt-cache.cc
  920. msgid "List the names of all packages in the system"
  921. msgstr "Kilistázza az összes csomag nevét"
  922. #: cmdline/apt-cache.cc
  923. msgid "Show policy settings"
  924. msgstr "Megjeleníti a policy beállításokat"
  925. #: cmdline/apt-cdrom.cc
  926. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  927. msgstr "Adja meg a lemez nevét, mint például „Debian 5.0.3 1. lemez”"
  928. #: cmdline/apt-cdrom.cc
  929. #, fuzzy
  930. msgid "Please insert a Disc in the drive and press [Enter]"
  931. msgstr "Helyezzen be egy lemezt a meghajtóba, és nyomja meg az Entert"
  932. #: cmdline/apt-cdrom.cc
  933. #, c-format
  934. msgid "Failed to mount '%s' to '%s'"
  935. msgstr "„%s” csatolása a(z) „%s” könyvtárba meghiúsult"
  936. #: cmdline/apt-cdrom.cc
  937. msgid ""
  938. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  939. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  940. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  941. "mount point."
  942. msgstr ""
  943. #: cmdline/apt-cdrom.cc
  944. msgid "Repeat this process for the rest of the CDs in your set."
  945. msgstr "Ismételje meg a folyamatot készlete többi CD-jével is."
  946. #: cmdline/apt-cdrom.cc
  947. msgid ""
  948. "Usage: apt-cdrom [options] command\n"
  949. "\n"
  950. "apt-cdrom is used to add CDROM's, USB flashdrives and other removable\n"
  951. "media types as package sources to APT. The mount point and device\n"
  952. "information is taken from apt.conf(5), udev(7) and fstab(5).\n"
  953. msgstr ""
  954. #: cmdline/apt-config.cc
  955. msgid "Arguments not in pairs"
  956. msgstr "Az argumentumok nincsenek párban"
  957. #: cmdline/apt-config.cc
  958. #, fuzzy
  959. msgid ""
  960. "Usage: apt-config [options] command\n"
  961. "\n"
  962. "apt-config is an interface to the configuration settings used by\n"
  963. "all APT tools, mainly intended for debugging and shell scripting.\n"
  964. msgstr ""
  965. "Használat: apt-config [kapcsolók] parancs\n"
  966. "\n"
  967. "Az apt-config egy egyszerű eszköz az APT konfigurációs fájl olvasására\n"
  968. #: cmdline/apt-config.cc
  969. msgid "get configuration values via shell evaluation"
  970. msgstr ""
  971. #: cmdline/apt-config.cc
  972. msgid "show the active configuration setting"
  973. msgstr ""
  974. #: cmdline/apt-get.cc
  975. #, c-format
  976. msgid "Couldn't find package %s"
  977. msgstr "Az alábbi csomag nem található: %s"
  978. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  979. #, c-format
  980. msgid "%s set to automatically installed.\n"
  981. msgstr "%s megjelölve automatikusan telepítettként.\n"
  982. #: cmdline/apt-get.cc cmdline/apt-mark.cc
  983. msgid ""
  984. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  985. "instead."
  986. msgstr ""
  987. "Ez a parancs elavult. Használja helyette az „apt-mark auto” és az „apt-mark "
  988. "auto” parancsokat."
  989. #: cmdline/apt-get.cc
  990. msgid "Internal error, problem resolver broke stuff"
  991. msgstr "Belső hiba, a problémamegoldó hibát okozott"
  992. #: cmdline/apt-get.cc
  993. msgid "Supported modules:"
  994. msgstr "Támogatott modulok:"
  995. #: cmdline/apt-get.cc
  996. #, fuzzy
  997. msgid ""
  998. "Usage: apt-get [options] command\n"
  999. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  1000. " apt-get [options] source pkg1 [pkg2 ...]\n"
  1001. "\n"
  1002. "apt-get is a command line interface for retrieval of packages\n"
  1003. "and information about them from authenticated sources and\n"
  1004. "for installation, upgrade and removal of packages together\n"
  1005. "with their dependencies.\n"
  1006. msgstr ""
  1007. "Használat: apt-get [kapcsolók] parancs\n"
  1008. " apt-get [kapcsolók] install|remove pkg1 [pkg2 ...]\n"
  1009. " apt-get [kapcsolók] source pkg1 [pkg2 ...]\n"
  1010. "\n"
  1011. "Az apt-get egy egyszerű parancssori felület csomagok letöltéséhez és\n"
  1012. "telepítéséhez. A leggyakrabban használt parancsok az update és az install. \n"
  1013. #: cmdline/apt-get.cc
  1014. msgid "Retrieve new lists of packages"
  1015. msgstr "Frissíti a csomaglistákat"
  1016. #: cmdline/apt-get.cc
  1017. msgid "Perform an upgrade"
  1018. msgstr "Frissítés végrehajtása"
  1019. #: cmdline/apt-get.cc
  1020. msgid "Install new packages (pkg is libc6 not libc6.deb)"
  1021. msgstr "Új csomagok telepítése (csomag a libc6 és nem a libc6.deb)"
  1022. #: cmdline/apt-get.cc
  1023. msgid "Remove packages"
  1024. msgstr "Csomagok eltávolítása"
  1025. #: cmdline/apt-get.cc
  1026. msgid "Remove packages and config files"
  1027. msgstr "Eltávolítja és teljesen törli a csomagokat"
  1028. #: cmdline/apt-get.cc cmdline/apt.cc
  1029. msgid "Remove automatically all unused packages"
  1030. msgstr "Automatikusan eltávolítja a nem használt csomagokat"
  1031. #: cmdline/apt-get.cc
  1032. msgid "Distribution upgrade, see apt-get(8)"
  1033. msgstr "Disztribúciófrissítés, lásd apt-get(8)"
  1034. #: cmdline/apt-get.cc
  1035. msgid "Follow dselect selections"
  1036. msgstr "Követi a dselect kijelöléseit"
  1037. #: cmdline/apt-get.cc
  1038. msgid "Configure build-dependencies for source packages"
  1039. msgstr "Forráscsomagok építési függőségét konfigurálja"
  1040. #: cmdline/apt-get.cc
  1041. msgid "Erase downloaded archive files"
  1042. msgstr "Törli a letöltött archívumfájlokat"
  1043. #: cmdline/apt-get.cc
  1044. msgid "Erase old downloaded archive files"
  1045. msgstr "Törli a régi letöltött archívumfájlokat"
  1046. #: cmdline/apt-get.cc
  1047. msgid "Verify that there are no broken dependencies"
  1048. msgstr "Ellenőrzi, hogy nincsenek-e törött függőségek"
  1049. #: cmdline/apt-get.cc
  1050. msgid "Download source archives"
  1051. msgstr "Forrásarchívumok letöltése"
  1052. #: cmdline/apt-get.cc
  1053. msgid "Download the binary package into the current directory"
  1054. msgstr "Bináris csomag letöltése a jelenlegi mappába"
  1055. #: cmdline/apt-get.cc
  1056. msgid "Download and display the changelog for the given package"
  1057. msgstr "Adott csomag változási naplójának letöltése és megjelenítése"
  1058. #: cmdline/apt-helper.cc
  1059. msgid "Need one URL as argument"
  1060. msgstr ""
  1061. #: cmdline/apt-helper.cc
  1062. #, fuzzy
  1063. msgid "Must specify at least one pair url/filename"
  1064. msgstr ""
  1065. "Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni"
  1066. #: cmdline/apt-helper.cc
  1067. msgid "Download Failed"
  1068. msgstr ""
  1069. #: cmdline/apt-helper.cc
  1070. #, c-format
  1071. msgid "GetSrvRec failed for %s"
  1072. msgstr ""
  1073. #: cmdline/apt-helper.cc
  1074. msgid ""
  1075. "Usage: apt-helper [options] command\n"
  1076. " apt-helper [options] cat-file file ...\n"
  1077. " apt-helper [options] download-file uri target-path\n"
  1078. "\n"
  1079. "apt-helper bundles a variety of commands for shell scripts to use\n"
  1080. "e.g. the same proxy configuration or acquire system as APT would.\n"
  1081. msgstr ""
  1082. #: cmdline/apt-helper.cc
  1083. msgid "download the given uri to the target-path"
  1084. msgstr ""
  1085. #: cmdline/apt-helper.cc
  1086. msgid "lookup a SRV record (e.g. _http._tcp.ftp.debian.org)"
  1087. msgstr ""
  1088. #: cmdline/apt-helper.cc
  1089. msgid "concatenate files, with automatic decompression"
  1090. msgstr ""
  1091. #: cmdline/apt-helper.cc
  1092. msgid "detect proxy using apt.conf"
  1093. msgstr ""
  1094. #: cmdline/apt-mark.cc
  1095. #, c-format
  1096. msgid "%s can not be marked as it is not installed.\n"
  1097. msgstr "%s nem jelölhető meg, mivel nincs telepítve.\n"
  1098. #: cmdline/apt-mark.cc
  1099. #, c-format
  1100. msgid "%s was already set to manually installed.\n"
  1101. msgstr "%s már be van állítva kézi telepítésűre.\n"
  1102. #: cmdline/apt-mark.cc
  1103. #, c-format
  1104. msgid "%s was already set to automatically installed.\n"
  1105. msgstr "%s már meg van jelölve automatikusan telepítettként.\n"
  1106. #: cmdline/apt-mark.cc
  1107. #, c-format
  1108. msgid "%s was already set on hold.\n"
  1109. msgstr "%s már be van állítva visszafogásra.\n"
  1110. #: cmdline/apt-mark.cc
  1111. #, c-format
  1112. msgid "%s was already not hold.\n"
  1113. msgstr "%s eddig sem volt visszafogva.\n"
  1114. #: cmdline/apt-mark.cc
  1115. msgid "Executing dpkg failed. Are you root?"
  1116. msgstr "A dpkg futtatása sikertelen. Van root jogosultsága?"
  1117. #: cmdline/apt-mark.cc
  1118. #, c-format
  1119. msgid "%s set on hold.\n"
  1120. msgstr "%s beállítva visszafogásra.\n"
  1121. #: cmdline/apt-mark.cc
  1122. #, c-format
  1123. msgid "Canceled hold on %s.\n"
  1124. msgstr "Visszafogás törölve ezen: %s.\n"
  1125. #: cmdline/apt-mark.cc
  1126. #, c-format
  1127. msgid "Selected %s for purge.\n"
  1128. msgstr ""
  1129. #: cmdline/apt-mark.cc
  1130. #, c-format
  1131. msgid "Selected %s for removal.\n"
  1132. msgstr ""
  1133. #: cmdline/apt-mark.cc
  1134. #, c-format
  1135. msgid "Selected %s for installation.\n"
  1136. msgstr ""
  1137. #: cmdline/apt-mark.cc
  1138. #, fuzzy
  1139. msgid ""
  1140. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  1141. "\n"
  1142. "apt-mark is a simple command line interface for marking packages\n"
  1143. "as manually or automatically installed. It can also be used to\n"
  1144. "manipulate the dpkg(1) selection states of packages, and to list\n"
  1145. "all packages with or without a certain marking.\n"
  1146. msgstr ""
  1147. "Használat: apt-mark [kapcsolók] {auto|manual} csom1 [csom2 ...]\n"
  1148. "\n"
  1149. "Az apt-mark egy egyszerű parancssori felület csomagok megjelölésére\n"
  1150. "kézileg vagy automatikusan telepítettként. Képes felsorolni a jelöléseket "
  1151. "is.\n"
  1152. #: cmdline/apt-mark.cc
  1153. msgid "Mark the given packages as automatically installed"
  1154. msgstr "Az adott csomagok megjelölése automatikusan telepítettként"
  1155. #: cmdline/apt-mark.cc
  1156. msgid "Mark the given packages as manually installed"
  1157. msgstr "Az adott csomagok megjelölése kézzel telepítettként"
  1158. #: cmdline/apt-mark.cc
  1159. msgid "Mark a package as held back"
  1160. msgstr ""
  1161. #: cmdline/apt-mark.cc
  1162. msgid "Unset a package set as held back"
  1163. msgstr ""
  1164. #: cmdline/apt-mark.cc
  1165. msgid "Print the list of automatically installed packages"
  1166. msgstr ""
  1167. #: cmdline/apt-mark.cc
  1168. msgid "Print the list of manually installed packages"
  1169. msgstr ""
  1170. #: cmdline/apt-mark.cc
  1171. msgid "Print the list of package on hold"
  1172. msgstr ""
  1173. #: cmdline/apt.cc
  1174. msgid ""
  1175. "Usage: apt [options] command\n"
  1176. "\n"
  1177. "apt is a commandline package manager and provides commands for\n"
  1178. "searching and managing as well as querying information about packages.\n"
  1179. "It provides the same functionality as the specialized APT tools,\n"
  1180. "like apt-get and apt-cache, but enables options more suitable for\n"
  1181. "interactive use by default.\n"
  1182. msgstr ""
  1183. #. query
  1184. #: cmdline/apt.cc
  1185. msgid "list packages based on package names"
  1186. msgstr ""
  1187. #: cmdline/apt.cc
  1188. #, fuzzy
  1189. msgid "search in package descriptions"
  1190. msgstr "Csomaglisták olvasása"
  1191. #: cmdline/apt.cc
  1192. msgid "show package details"
  1193. msgstr ""
  1194. #. package stuff
  1195. #: cmdline/apt.cc
  1196. #, fuzzy
  1197. msgid "install packages"
  1198. msgstr "Rögzített csomagok:"
  1199. #: cmdline/apt.cc
  1200. #, fuzzy
  1201. msgid "remove packages"
  1202. msgstr "Törött csomagok"
  1203. #. system wide stuff
  1204. #: cmdline/apt.cc
  1205. #, fuzzy
  1206. msgid "update list of available packages"
  1207. msgstr "de az egy virtuális csomag"
  1208. #: cmdline/apt.cc
  1209. msgid "upgrade the system by installing/upgrading packages"
  1210. msgstr ""
  1211. #: cmdline/apt.cc
  1212. msgid "upgrade the system by removing/installing/upgrading packages"
  1213. msgstr ""
  1214. #. misc
  1215. #: cmdline/apt.cc
  1216. #, fuzzy
  1217. msgid "edit the source information file"
  1218. msgstr "Állapotinformációk olvasása"
  1219. #: methods/cdrom.cc
  1220. #, c-format
  1221. msgid "Unable to read the cdrom database %s"
  1222. msgstr "%s CD-ROM adatbázis nem olvasható"
  1223. #: methods/cdrom.cc
  1224. msgid ""
  1225. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  1226. "cannot be used to add new CD-ROMs"
  1227. msgstr ""
  1228. "Használja az apt-cdrom parancsot a CD felismertetésére. Az apt-get update "
  1229. "nem használható új CD-k hozzáadására."
  1230. #: methods/cdrom.cc
  1231. msgid "Wrong CD-ROM"
  1232. msgstr "Hibás CD"
  1233. #: methods/cdrom.cc
  1234. #, c-format
  1235. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  1236. msgstr ""
  1237. "Nem lehet leválasztani az itt lévő CD-ROM-ot: %s, még használatban lehet."
  1238. #: methods/cdrom.cc
  1239. msgid "Disk not found."
  1240. msgstr "A lemez nem található."
  1241. #: methods/cdrom.cc methods/file.cc methods/rsh.cc
  1242. msgid "File not found"
  1243. msgstr "A fájl nem található"
  1244. #: methods/connect.cc
  1245. #, c-format
  1246. msgid "Connecting to %s (%s)"
  1247. msgstr "Csatlakozás: %s (%s)"
  1248. #: methods/connect.cc
  1249. #, c-format
  1250. msgid "[IP: %s %s]"
  1251. msgstr "[IP: %s %s]"
  1252. #: methods/connect.cc
  1253. #, c-format
  1254. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1255. msgstr "Foglalat létrehozása sikertelen ehhez: %s (f=%u t=%u p=%u)"
  1256. #: methods/connect.cc
  1257. #, c-format
  1258. msgid "Cannot initiate the connection to %s:%s (%s)."
  1259. msgstr "Kapcsolat létrehozása sikertelen ehhez: %s: %s (%s)."
  1260. #: methods/connect.cc
  1261. #, c-format
  1262. msgid "Could not connect to %s:%s (%s), connection timed out"
  1263. msgstr "Időtúllépés miatt nem lehet kapcsolódni a következőhöz: %s: %s (%s)"
  1264. #: methods/connect.cc methods/ftp.cc methods/rsh.cc
  1265. msgid "Failed"
  1266. msgstr "Sikertelen"
  1267. #: methods/connect.cc
  1268. #, c-format
  1269. msgid "Could not connect to %s:%s (%s)."
  1270. msgstr "Nem lehet kapcsolódni ehhez: %s: %s (%s)."
  1271. #. We say this mainly because the pause here is for the
  1272. #. ssh connection that is still going
  1273. #: methods/connect.cc methods/rsh.cc
  1274. #, c-format
  1275. msgid "Connecting to %s"
  1276. msgstr "Kapcsolódás: %s"
  1277. #: methods/connect.cc
  1278. #, c-format
  1279. msgid "Could not resolve '%s'"
  1280. msgstr "Nem lehet feloldani a következőt: „%s”"
  1281. #: methods/connect.cc
  1282. #, c-format
  1283. msgid "Temporary failure resolving '%s'"
  1284. msgstr "Átmeneti hiba „%s” feloldása közben"
  1285. #: methods/connect.cc
  1286. #, fuzzy, c-format
  1287. msgid "System error resolving '%s:%s'"
  1288. msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)"
  1289. #: methods/connect.cc
  1290. #, c-format
  1291. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1292. msgstr "Hiba történt „%s:%s” feloldásakor (%i - %s)"
  1293. #: methods/connect.cc
  1294. #, c-format
  1295. msgid "Unable to connect to %s:%s:"
  1296. msgstr "Nem lehet csatlakozni ehhez: %s:%s:"
  1297. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1298. msgid "Failed to stat"
  1299. msgstr "Nem érhető el"
  1300. #: methods/copy.cc methods/gzip.cc methods/rred.cc
  1301. msgid "Failed to set modification time"
  1302. msgstr "A módosítási idő beállítása sikertelen"
  1303. #: methods/file.cc
  1304. msgid "Invalid URI, local URIS must not start with //"
  1305. msgstr "Érvénytelen URI, helyi URI-k nem kezdődhetnek //-rel"
  1306. #. Login must be before getpeername otherwise dante won't work.
  1307. #: methods/ftp.cc
  1308. msgid "Logging in"
  1309. msgstr "Bejelentkezés"
  1310. #: methods/ftp.cc
  1311. msgid "Unable to determine the peer name"
  1312. msgstr "Nem lehet a partner nevét megállapítani"
  1313. #: methods/ftp.cc
  1314. msgid "Unable to determine the local name"
  1315. msgstr "Nem lehet a helyi nevet megállapítani"
  1316. #: methods/ftp.cc
  1317. #, c-format
  1318. msgid "The server refused the connection and said: %s"
  1319. msgstr "A kiszolgáló visszautasította a kapcsolatot: %s"
  1320. #: methods/ftp.cc
  1321. #, c-format
  1322. msgid "USER failed, server said: %s"
  1323. msgstr "Hibás USER, a kiszolgáló üzenete: %s"
  1324. #: methods/ftp.cc
  1325. #, c-format
  1326. msgid "PASS failed, server said: %s"
  1327. msgstr "Hibás PASS, a kiszolgáló üzenete: %s"
  1328. #: methods/ftp.cc
  1329. msgid ""
  1330. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  1331. "is empty."
  1332. msgstr ""
  1333. "Meg lett adva proxy kiszolgáló, de nincs bejelentkezési parancsfájl és az "
  1334. "Acquire::ftp::ProxyLogin üres."
  1335. #: methods/ftp.cc
  1336. #, c-format
  1337. msgid "Login script command '%s' failed, server said: %s"
  1338. msgstr ""
  1339. "A bejelentkezési parancsfájl „%s” parancsa sikertelen, a kiszolgáló üzenete: "
  1340. "%s"
  1341. #: methods/ftp.cc
  1342. #, c-format
  1343. msgid "TYPE failed, server said: %s"
  1344. msgstr "Hibás TYPE, a kiszolgáló üzenete: %s"
  1345. #: methods/ftp.cc methods/rsh.cc
  1346. msgid "Connection timeout"
  1347. msgstr "Időtúllépés a kapcsolatban"
  1348. #: methods/ftp.cc
  1349. msgid "Server closed the connection"
  1350. msgstr "A kiszolgáló lezárta a kapcsolatot"
  1351. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1352. msgid "Read error"
  1353. msgstr "Olvasási hiba"
  1354. #: methods/ftp.cc methods/rsh.cc
  1355. msgid "A response overflowed the buffer."
  1356. msgstr "A válasz túlcsordította a puffert."
  1357. #: methods/ftp.cc
  1358. msgid "Protocol corruption"
  1359. msgstr "Protokollhiba"
  1360. #: methods/ftp.cc methods/rsh.cc apt-pkg/contrib/fileutl.cc
  1361. msgid "Write error"
  1362. msgstr "Írási hiba"
  1363. #: methods/ftp.cc
  1364. msgid "Could not create a socket"
  1365. msgstr "Nem lehet létrehozni a foglalatot"
  1366. #: methods/ftp.cc
  1367. msgid "Could not connect data socket, connection timed out"
  1368. msgstr ""
  1369. "Nem lehet kapcsolódni az adatfoglalathoz, a kapcsolat túllépte az időkorlátot"
  1370. #: methods/ftp.cc
  1371. msgid "Could not connect passive socket."
  1372. msgstr "Nem lehet kapcsolódni a passzív foglalathoz."
  1373. #: methods/ftp.cc
  1374. msgid "getaddrinfo was unable to get a listening socket"
  1375. msgstr "A getaddrinfo nem talált figyelőfoglalatot"
  1376. #: methods/ftp.cc
  1377. msgid "Could not bind a socket"
  1378. msgstr "Nem lehet összekapcsolódni a foglalattal"
  1379. #: methods/ftp.cc
  1380. msgid "Could not listen on the socket"
  1381. msgstr "Nem lehet figyelni a foglalaton"
  1382. #: methods/ftp.cc
  1383. msgid "Could not determine the socket's name"
  1384. msgstr "Nem lehet megállapítani a foglalat nevét"
  1385. #: methods/ftp.cc
  1386. msgid "Unable to send PORT command"
  1387. msgstr "Nem lehet PORT parancsot küldeni"
  1388. #: methods/ftp.cc
  1389. #, c-format
  1390. msgid "Unknown address family %u (AF_*)"
  1391. msgstr "Ismeretlen címcsalád: %u (AF_*)"
  1392. #: methods/ftp.cc
  1393. #, c-format
  1394. msgid "EPRT failed, server said: %s"
  1395. msgstr "Hibás EPRT, a kiszolgáló üzenete: %s"
  1396. #: methods/ftp.cc
  1397. msgid "Data socket connect timed out"
  1398. msgstr "Az adatfoglalathoz kapcsolódás túllépte az időkorlátot"
  1399. #: methods/ftp.cc
  1400. msgid "Unable to accept connection"
  1401. msgstr "Nem lehet elfogadni a kapcsolatot"
  1402. #: methods/ftp.cc methods/rsh.cc methods/server.cc
  1403. msgid "Problem hashing file"
  1404. msgstr "Probléma a fájl hash értékének meghatározásakor"
  1405. #: methods/ftp.cc
  1406. #, c-format
  1407. msgid "Unable to fetch file, server said '%s'"
  1408. msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: „%s”"
  1409. #: methods/ftp.cc methods/rsh.cc
  1410. msgid "Data socket timed out"
  1411. msgstr "Az adatfoglalat túllépte az időkorlátot"
  1412. #: methods/ftp.cc
  1413. #, c-format
  1414. msgid "Data transfer failed, server said '%s'"
  1415. msgstr "Az adatátvitel sikertelen, a kiszolgáló üzenete: „%s”"
  1416. #. Get the files information
  1417. #: methods/ftp.cc
  1418. msgid "Query"
  1419. msgstr "Lekérdezés"
  1420. #: methods/ftp.cc
  1421. msgid "Unable to invoke "
  1422. msgstr "Nem lehet meghívni "
  1423. #: methods/gpgv.cc
  1424. msgid "At least one invalid signature was encountered."
  1425. msgstr "Legalább egy aláírás érvénytelen."
  1426. #: methods/gpgv.cc
  1427. msgid ""
  1428. "Internal error: Good signature, but could not determine key fingerprint?!"
  1429. msgstr "Belső hiba: Jó aláírás, de nem állapítható meg a kulcs ujjlenyomata."
  1430. #: methods/gpgv.cc
  1431. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  1432. msgstr ""
  1433. "Nem indítható el a „apt-key” az aláírás ellenőrzéséhez (telepítve van a "
  1434. "gnupg?)"
  1435. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  1436. #: methods/gpgv.cc apt-pkg/acquire-item.cc
  1437. #, c-format
  1438. msgid ""
  1439. "Clearsigned file isn't valid, got '%s' (does the network require "
  1440. "authentication?)"
  1441. msgstr ""
  1442. #: methods/gpgv.cc
  1443. msgid "Unknown error executing apt-key"
  1444. msgstr "Ismeretlen apt-key futtatási hiba"
  1445. #: methods/gpgv.cc
  1446. msgid "The following signatures were invalid:\n"
  1447. msgstr "Az alábbi aláírások érvénytelenek voltak:\n"
  1448. #: methods/gpgv.cc
  1449. msgid ""
  1450. "The following signatures couldn't be verified because the public key is not "
  1451. "available:\n"
  1452. msgstr ""
  1453. "Az alábbi aláírások nem ellenőrizhetők, mert a nyilvános kulcs nem érhető "
  1454. "el:\n"
  1455. #: methods/gzip.cc
  1456. msgid "Empty files can't be valid archives"
  1457. msgstr "Az üres fájlok biztosan nem érvényes csomagok"
  1458. #: methods/http.cc
  1459. msgid "Error writing to the file"
  1460. msgstr "Hiba a fájl írásakor"
  1461. #: methods/http.cc
  1462. msgid "Error reading from server. Remote end closed connection"
  1463. msgstr "Hiba a kiszolgálóról olvasáskor, a túloldal lezárta a kapcsolatot"
  1464. #: methods/http.cc
  1465. msgid "Error reading from server"
  1466. msgstr "Hiba a kiszolgálóról olvasáskor"
  1467. #: methods/http.cc
  1468. msgid "Error writing to file"
  1469. msgstr "Hiba a fájl írásakor"
  1470. #: methods/http.cc
  1471. msgid "Select failed"
  1472. msgstr "A kiválasztás sikertelen"
  1473. #: methods/http.cc
  1474. msgid "Connection timed out"
  1475. msgstr "Időtúllépés a kapcsolatban"
  1476. #: methods/http.cc
  1477. msgid "Error writing to output file"
  1478. msgstr "Hiba a kimeneti fájl írásakor"
  1479. #. Only warn if there are no sources.list.d.
  1480. #. Only warn if there is no sources.list file.
  1481. #: methods/mirror.cc apt-inst/extract.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1482. #: apt-pkg/contrib/cdromutl.cc apt-pkg/contrib/fileutl.cc apt-pkg/init.cc
  1483. #: apt-pkg/policy.cc apt-pkg/sourcelist.cc
  1484. #, c-format
  1485. msgid "Unable to read %s"
  1486. msgstr "%s nem olvasható"
  1487. #: methods/mirror.cc apt-pkg/acquire.cc apt-pkg/clean.cc
  1488. #: apt-pkg/contrib/cdromutl.cc
  1489. #, c-format
  1490. msgid "Unable to change to %s"
  1491. msgstr "Nem sikerült ide váltani: %s"
  1492. #. FIXME: fallback to a default mirror here instead
  1493. #. and provide a config option to define that default
  1494. #: methods/mirror.cc
  1495. #, c-format
  1496. msgid "No mirror file '%s' found "
  1497. msgstr "Nem található a(z) „%s” tükörfájl "
  1498. #. FIXME: fallback to a default mirror here instead
  1499. #. and provide a config option to define that default
  1500. #: methods/mirror.cc
  1501. #, c-format
  1502. msgid "Can not read mirror file '%s'"
  1503. msgstr "A(z) „%s” tükörfájl nem olvasható"
  1504. #: methods/mirror.cc
  1505. #, fuzzy, c-format
  1506. msgid "No entry found in mirror file '%s'"
  1507. msgstr "A(z) „%s” tükörfájl nem olvasható"
  1508. #: methods/mirror.cc
  1509. #, c-format
  1510. msgid "[Mirror: %s]"
  1511. msgstr "[Tükör: %s]"
  1512. #: methods/rsh.cc ftparchive/multicompress.cc
  1513. msgid "Failed to create IPC pipe to subprocess"
  1514. msgstr "Nem sikerült IPC-adatcsatornát létrehozni az alfolyamathoz"
  1515. #: methods/rsh.cc
  1516. msgid "Connection closed prematurely"
  1517. msgstr "A kapcsolat idő előtt lezárult"
  1518. #: methods/server.cc
  1519. msgid "Waiting for headers"
  1520. msgstr "Várakozás a fejlécekre"
  1521. #: methods/server.cc
  1522. msgid "Bad header line"
  1523. msgstr "Rossz fejlécsor"
  1524. #: methods/server.cc
  1525. msgid "The HTTP server sent an invalid reply header"
  1526. msgstr "A HTTP-kiszolgáló érvénytelen válaszfejlécet küldött"
  1527. #: methods/server.cc
  1528. msgid "The HTTP server sent an invalid Content-Length header"
  1529. msgstr "A HTTP-kiszolgáló érvénytelen Content-Length fejlécet küldött"
  1530. #: methods/server.cc
  1531. msgid "The HTTP server sent an invalid Content-Range header"
  1532. msgstr "A HTTP-kiszolgáló érvénytelen Content-Range fejlécet küldött"
  1533. #: methods/server.cc
  1534. msgid "This HTTP server has broken range support"
  1535. msgstr "A HTTP-kiszolgáló tartománytámogatása sérült"
  1536. #: methods/server.cc
  1537. msgid "Unknown date format"
  1538. msgstr "Ismeretlen dátumformátum"
  1539. #: methods/server.cc
  1540. msgid "Bad header data"
  1541. msgstr "Rossz fejlécadatok"
  1542. #: methods/server.cc
  1543. msgid "Connection failed"
  1544. msgstr "Sikertelen kapcsolódás"
  1545. #: methods/server.cc
  1546. #, c-format
  1547. msgid ""
  1548. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1549. "5 apt.conf)"
  1550. msgstr ""
  1551. #: methods/server.cc
  1552. msgid "Internal error"
  1553. msgstr "Belső hiba"
  1554. #: dselect/install:33
  1555. msgid "Bad default setting!"
  1556. msgstr "Hibás alapértelmezett beállítás!"
  1557. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1558. #: dselect/install:106 dselect/update:45
  1559. #, fuzzy
  1560. msgid "Press [Enter] to continue."
  1561. msgstr "Nyomja meg az Entert a folytatáshoz."
  1562. #: dselect/install:92
  1563. msgid "Do you want to erase any previously downloaded .deb files?"
  1564. msgstr "Törli a korábban letöltött .deb fájlokat?"
  1565. #: dselect/install:102
  1566. msgid "Some errors occurred while unpacking. Packages that were installed"
  1567. msgstr "Hiba történt a kicsomagolás során. A telepített csomagok"
  1568. #: dselect/install:103
  1569. msgid "will be configured. This may result in duplicate errors"
  1570. msgstr "beállításra kerülnek. Ez többszörös"
  1571. #: dselect/install:104
  1572. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1573. msgstr ""
  1574. "vagy hiányzó függőségek miatti hibákat okozhat. Ez így van rendben, csak az "
  1575. "ezen üzenet"
  1576. #: dselect/install:105
  1577. msgid ""
  1578. "above this message are important. Please fix them and run [I]nstall again"
  1579. msgstr "előtti hibák fontosak. Javítsa azokat, és futtassa az [I]nstallt újra"
  1580. #: dselect/update:30
  1581. msgid "Merging available information"
  1582. msgstr "Elérhető információk egyesítése"
  1583. #: cmdline/apt-extracttemplates.cc
  1584. #, fuzzy
  1585. msgid ""
  1586. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1587. "\n"
  1588. "apt-extracttemplates is used to extract config and template files\n"
  1589. "from debian packages. It is used mainly by debconf(1) to prompt for\n"
  1590. "configuration questions before installation of packages.\n"
  1591. msgstr ""
  1592. "Használat:apt-extracttemplates fájl1 [fájl2 ...]\n"
  1593. "\n"
  1594. "Az apt-extracttemplates egy eszköz konfigurációs- és mintainformációk "
  1595. "debian-\n"
  1596. "csomagokból való kibontására\n"
  1597. "\n"
  1598. "Kapcsolók:\n"
  1599. " -h Ez a súgó szöveg\n"
  1600. " -t Beállítja az átmeneti könyvtárat\n"
  1601. " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  1602. " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n"
  1603. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1604. #, fuzzy, c-format
  1605. msgid "Unable to mkstemp %s"
  1606. msgstr "%s nem érhető el"
  1607. #: cmdline/apt-extracttemplates.cc apt-pkg/contrib/fileutl.cc
  1608. #, c-format
  1609. msgid "Unable to write to %s"
  1610. msgstr "Nem lehet írni ebbe: %s"
  1611. #: cmdline/apt-extracttemplates.cc
  1612. msgid "Cannot get debconf version. Is debconf installed?"
  1613. msgstr "Nem lehet megállapítani a debconf verziót. A debconf telepítve van?"
  1614. #: cmdline/apt-internal-solver.cc
  1615. #, fuzzy
  1616. msgid ""
  1617. "Usage: apt-internal-solver\n"
  1618. "\n"
  1619. "apt-internal-solver is an interface to use the current internal\n"
  1620. "resolver for the APT family like an external one, for debugging or\n"
  1621. "the like.\n"
  1622. msgstr ""
  1623. "Használat: apt-internal-solver\n"
  1624. "\n"
  1625. "Az apt-internal-solver felülettel a jelenlegi belső feloldó külső\n"
  1626. "feloldóként használható az APT családhoz hibakeresési vagy hasonló céllal\n"
  1627. "\n"
  1628. "Kapcsolók:\n"
  1629. " -h Ez a súgó szöveg.\n"
  1630. " -q Naplózható kimenet - nincs folyamatjelző\n"
  1631. " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  1632. " -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/"
  1633. "tmp\n"
  1634. #: cmdline/apt-sortpkgs.cc
  1635. msgid "Unknown package record!"
  1636. msgstr "Ismeretlen csomagbejegyzés!"
  1637. #: cmdline/apt-sortpkgs.cc
  1638. msgid ""
  1639. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1640. "\n"
  1641. "apt-sortpkgs is a simple tool to sort package information files.\n"
  1642. "By default it sorts by binary package information, but the -s option\n"
  1643. "can be used to switch to source package ordering instead.\n"
  1644. msgstr ""
  1645. #: ftparchive/apt-ftparchive.cc
  1646. msgid "Package extension list is too long"
  1647. msgstr "A csomagkiterjesztések listája túl hosszú"
  1648. #: ftparchive/apt-ftparchive.cc
  1649. #, c-format
  1650. msgid "Error processing directory %s"
  1651. msgstr "Hiba a(z) %s könyvtár feldolgozásakor"
  1652. #: ftparchive/apt-ftparchive.cc
  1653. msgid "Source extension list is too long"
  1654. msgstr "A forráskiterjesztések listája túl hosszú"
  1655. #: ftparchive/apt-ftparchive.cc
  1656. msgid "Error writing header to contents file"
  1657. msgstr "Hiba a tartalomfájl fejlécének írásakor"
  1658. #: ftparchive/apt-ftparchive.cc
  1659. #, c-format
  1660. msgid "Error processing contents %s"
  1661. msgstr "Hiba %s tartalmának feldolgozásakor"
  1662. #: ftparchive/apt-ftparchive.cc
  1663. msgid ""
  1664. "Usage: apt-ftparchive [options] command\n"
  1665. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1666. " sources srcpath [overridefile [pathprefix]]\n"
  1667. " contents path\n"
  1668. " release path\n"
  1669. " generate config [groups]\n"
  1670. " clean config\n"
  1671. "\n"
  1672. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1673. "many styles of generation from fully automated to functional replacements\n"
  1674. "for dpkg-scanpackages and dpkg-scansources\n"
  1675. "\n"
  1676. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1677. "Package file contains the contents of all the control fields from\n"
  1678. "each package as well as the MD5 hash and filesize. An override file\n"
  1679. "is supported to force the value of Priority and Section.\n"
  1680. "\n"
  1681. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1682. "The --source-override option can be used to specify a src override file\n"
  1683. "\n"
  1684. "The 'packages' and 'sources' command should be run in the root of the\n"
  1685. "tree. BinaryPath should point to the base of the recursive search and \n"
  1686. "override file should contain the override flags. Pathprefix is\n"
  1687. "appended to the filename fields if present. Example usage from the \n"
  1688. "Debian archive:\n"
  1689. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1690. " dists/potato/main/binary-i386/Packages\n"
  1691. "\n"
  1692. "Options:\n"
  1693. " -h This help text\n"
  1694. " --md5 Control MD5 generation\n"
  1695. " -s=? Source override file\n"
  1696. " -q Quiet\n"
  1697. " -d=? Select the optional caching database\n"
  1698. " --no-delink Enable delinking debug mode\n"
  1699. " --contents Control contents file generation\n"
  1700. " -c=? Read this configuration file\n"
  1701. " -o=? Set an arbitrary configuration option"
  1702. msgstr ""
  1703. "Használat: apt-ftparchive [kapcsolók] parancs\n"
  1704. "Parancsok: packages binarypath [felülbírálófájl [útvonalelőtag]]\n"
  1705. " sources srcpath [felülbírálófájl [útvonalelőtag]]\n"
  1706. " contents útvonal\n"
  1707. " release útvonal\n"
  1708. " generate konfigfájl [csoportok]\n"
  1709. " clean konfigfájl\n"
  1710. "\n"
  1711. "Az apt-ftparchive indexfájlokat generál a Debian archívumokhoz. A generálás\n"
  1712. "sok stílusát támogatja, a teljesen automatizálttól kezdve a\n"
  1713. "dpkg-scanpackages és a dpkg-scansources funkcionális helyettesítéséig.\n"
  1714. "\n"
  1715. "Az apt-ftparchive Package fájlokat generál a .deb-ek fájából. A Package\n"
  1716. "fájl minden vezérlő mezőt tartalmaz minden egyes csomagról úgy az MD5\n"
  1717. "hasht mint a fájlméretet. Az override (felülbíráló) fájl támogatott a\n"
  1718. "Prioritás és Szekció mezők értékének kényszerítésére.\n"
  1719. "\n"
  1720. "Hasonlóképpen az apt-ftparchive Sources fájlokat generál .dsc-k fájából.\n"
  1721. "A --source-override opció használható forrás-felülbíráló fájlok megadására\n"
  1722. "\n"
  1723. "A „packages” és „sources” parancsokat a fa gyökeréből kell futtatni.\n"
  1724. "A BinaryPath-nak a rekurzív keresés kiindulópontjára kell mutatnia, és\n"
  1725. "a felülbírálófájlnak a felülbíráló jelzőket kell tartalmaznia. Az "
  1726. "útvonalelőtag\n"
  1727. "hozzáadódik a fájlnév mezőkhöz, ha meg van adva. Felhasználására egy példa "
  1728. "a\n"
  1729. "Debian archívumból:\n"
  1730. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1731. " dists/potato/main/binary-i386/Packages\n"
  1732. "\n"
  1733. "Kapcsolók:\n"
  1734. " -h Ez a súgó szöveg\n"
  1735. " --md5 MD5 generálás vezérlése\n"
  1736. " -s=? Forrás-felülbíráló fájl\n"
  1737. " -q Szűkszavú mód\n"
  1738. " -d=? Opcionális gyorsítótár-adatbázis kiválasztása\n"
  1739. " --no-delink „delink” hibakereső mód bekapcsolása\n"
  1740. " --contents Tartalom fájl generálásának ellenőrzése\n"
  1741. " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  1742. " -o=? Beállít egy tetszőleges konfigurációs opciót"
  1743. #: ftparchive/apt-ftparchive.cc
  1744. msgid "No selections matched"
  1745. msgstr "Nincs illeszkedő kiválasztás"
  1746. #: ftparchive/apt-ftparchive.cc
  1747. #, c-format
  1748. msgid "Some files are missing in the package file group `%s'"
  1749. msgstr "Néhány fájl hiányzik a(z) „%s” csomagfájlcsoportból"
  1750. #: ftparchive/cachedb.cc
  1751. #, c-format
  1752. msgid "DB was corrupted, file renamed to %s.old"
  1753. msgstr "A DB megsérült, a fájl átnevezve %s.old-ra"
  1754. #: ftparchive/cachedb.cc
  1755. #, c-format
  1756. msgid "DB is old, attempting to upgrade %s"
  1757. msgstr "A DB régi, kísérlet a következő frissítésére: %s"
  1758. #: ftparchive/cachedb.cc
  1759. msgid ""
  1760. "DB format is invalid. If you upgraded from an older version of apt, please "
  1761. "remove and re-create the database."
  1762. msgstr ""
  1763. "Az adatbázis-formátum érvénytelen. Ha az apt egy korábbi verziójáról "
  1764. "frissített, akkor távolítsa el, és hozza létre újra az adatbázist."
  1765. #: ftparchive/cachedb.cc
  1766. #, c-format
  1767. msgid "Unable to open DB file %s: %s"
  1768. msgstr "A(z) %s DB fájlt nem lehet megnyitni: %s"
  1769. #: ftparchive/cachedb.cc apt-inst/extract.cc
  1770. #, c-format
  1771. msgid "Failed to stat %s"
  1772. msgstr "%s elérése sikertelen"
  1773. #: ftparchive/cachedb.cc
  1774. #, fuzzy
  1775. msgid "Failed to read .dsc"
  1776. msgstr "readlink nem hajtható végre erre: %s"
  1777. #: ftparchive/cachedb.cc
  1778. msgid "Archive has no control record"
  1779. msgstr "Az archívumnak nincs vezérlő rekordja"
  1780. #: ftparchive/cachedb.cc
  1781. msgid "Unable to get a cursor"
  1782. msgstr "Nem sikerült egy mutatóhoz jutni"
  1783. #: ftparchive/contents.cc
  1784. msgid "realloc - Failed to allocate memory"
  1785. msgstr "realloc - Nem sikerült memóriát lefoglalni"
  1786. #: ftparchive/multicompress.cc
  1787. #, c-format
  1788. msgid "Unknown compression algorithm '%s'"
  1789. msgstr "„%s” tömörítési algoritmus ismeretlen"
  1790. #: ftparchive/multicompress.cc
  1791. #, c-format
  1792. msgid "Compressed output %s needs a compression set"
  1793. msgstr "%s tömörített kimenetnek egy tömörítő készletre van szüksége"
  1794. #: ftparchive/multicompress.cc
  1795. msgid "Failed to fork"
  1796. msgstr "Nem sikerült forkolni"
  1797. #: ftparchive/multicompress.cc
  1798. msgid "Compress child"
  1799. msgstr "Gyermekfolyamat tömörítése"
  1800. #: ftparchive/multicompress.cc
  1801. #, c-format
  1802. msgid "Internal error, failed to create %s"
  1803. msgstr "Belső hiba, %s létrehozása sikertelen"
  1804. #: ftparchive/multicompress.cc
  1805. msgid "IO to subprocess/file failed"
  1806. msgstr "IO az alfolyamathoz/fájlhoz nem sikerült"
  1807. #: ftparchive/multicompress.cc
  1808. msgid "Failed to read while computing MD5"
  1809. msgstr "Olvasási hiba az MD5 kiszámításakor"
  1810. #: ftparchive/multicompress.cc apt-inst/extract.cc
  1811. #, c-format
  1812. msgid "Failed to rename %s to %s"
  1813. msgstr "„%s” átnevezése sikertelen erre: %s"
  1814. #: ftparchive/override.cc
  1815. #, c-format
  1816. msgid "Unable to open %s"
  1817. msgstr "%s megnyitása sikertelen"
  1818. #. skip spaces
  1819. #. find end of word
  1820. #: ftparchive/override.cc
  1821. #, fuzzy, c-format
  1822. msgid "Malformed override %s line %llu (%s)"
  1823. msgstr "%s felülbírálás deformált a(z) %llu. sorában #1"
  1824. #: ftparchive/override.cc
  1825. #, c-format
  1826. msgid "Failed to read the override file %s"
  1827. msgstr "Nem lehet a(z) %s felülbírálófájlt olvasni"
  1828. #: ftparchive/override.cc
  1829. #, c-format
  1830. msgid "Malformed override %s line %llu #1"
  1831. msgstr "%s felülbírálás deformált a(z) %llu. sorában #1"
  1832. #: ftparchive/override.cc
  1833. #, c-format
  1834. msgid "Malformed override %s line %llu #2"
  1835. msgstr "%s felülbírálás deformált a(z) %llu. sorában #2"
  1836. #: ftparchive/override.cc
  1837. #, c-format
  1838. msgid "Malformed override %s line %llu #3"
  1839. msgstr "%s felülbírálás deformált a(z) %llu. sorában #3"
  1840. #: ftparchive/writer.cc
  1841. #, c-format
  1842. msgid "W: Unable to read directory %s\n"
  1843. msgstr "F: nem lehet a(z) %s könyvtárat olvasni\n"
  1844. #: ftparchive/writer.cc
  1845. #, c-format
  1846. msgid "W: Unable to stat %s\n"
  1847. msgstr "F: %s nem érhető el\n"
  1848. #: ftparchive/writer.cc
  1849. msgid "E: "
  1850. msgstr "H: "
  1851. #: ftparchive/writer.cc
  1852. msgid "W: "
  1853. msgstr "F: "
  1854. #: ftparchive/writer.cc
  1855. msgid "E: Errors apply to file "
  1856. msgstr "H: Hibás a fájl "
  1857. #: ftparchive/writer.cc
  1858. #, c-format
  1859. msgid "Failed to resolve %s"
  1860. msgstr "Nem sikerült feloldani ezt: %s"
  1861. #: ftparchive/writer.cc
  1862. msgid "Tree walking failed"
  1863. msgstr "Fabejárás nem sikerült"
  1864. #: ftparchive/writer.cc
  1865. #, c-format
  1866. msgid "Failed to open %s"
  1867. msgstr "%s megnyitása sikertelen"
  1868. #: ftparchive/writer.cc
  1869. #, c-format
  1870. msgid " DeLink %s [%s]\n"
  1871. msgstr " DeLink %s [%s]\n"
  1872. #: ftparchive/writer.cc
  1873. #, c-format
  1874. msgid "Failed to readlink %s"
  1875. msgstr "readlink nem hajtható végre erre: %s"
  1876. #: ftparchive/writer.cc
  1877. #, c-format
  1878. msgid "*** Failed to link %s to %s"
  1879. msgstr "*** %s linkelése sikertelen ehhez: %s"
  1880. #: ftparchive/writer.cc
  1881. #, c-format
  1882. msgid " DeLink limit of %sB hit.\n"
  1883. msgstr " a DeLink korlátja (%sB) elérve.\n"
  1884. #: ftparchive/writer.cc
  1885. msgid "Archive had no package field"
  1886. msgstr "Az archívumnak nem volt csomag mezője"
  1887. #: ftparchive/writer.cc
  1888. #, c-format
  1889. msgid " %s has no override entry\n"
  1890. msgstr " %s nem rendelkezik felülbíráló bejegyzéssel\n"
  1891. #: ftparchive/writer.cc
  1892. #, c-format
  1893. msgid " %s maintainer is %s not %s\n"
  1894. msgstr " %s karbantartója %s, nem %s\n"
  1895. #: ftparchive/writer.cc
  1896. #, c-format
  1897. msgid " %s has no source override entry\n"
  1898. msgstr " %s nem rendelkezik forrás-felülbíráló bejegyzéssel\n"
  1899. #: ftparchive/writer.cc
  1900. #, c-format
  1901. msgid " %s has no binary override entry either\n"
  1902. msgstr " %s nem rendelkezik bináris-felülbíráló bejegyzéssel sem\n"
  1903. #: apt-inst/contrib/arfile.cc
  1904. msgid "Invalid archive signature"
  1905. msgstr "Érvénytelen archívum-aláírás"
  1906. #: apt-inst/contrib/arfile.cc
  1907. msgid "Error reading archive member header"
  1908. msgstr "Hiba az archívumtag-fejléc olvasásakor"
  1909. #: apt-inst/contrib/arfile.cc
  1910. #, c-format
  1911. msgid "Invalid archive member header %s"
  1912. msgstr "Érvénytelen archívumtag-fejléc: %s"
  1913. #: apt-inst/contrib/arfile.cc
  1914. msgid "Invalid archive member header"
  1915. msgstr "Érvénytelen archívumtag-fejléc"
  1916. #: apt-inst/contrib/arfile.cc
  1917. msgid "Archive is too short"
  1918. msgstr "Az archívum túl rövid"
  1919. #: apt-inst/contrib/arfile.cc
  1920. msgid "Failed to read the archive headers"
  1921. msgstr "Nem sikerült olvasni az archívumfejléceket"
  1922. #: apt-inst/contrib/extracttar.cc
  1923. #, fuzzy, c-format
  1924. msgid "Cannot find a configured compressor for '%s'"
  1925. msgstr "%s hitelesítési rekordja nem található"
  1926. #: apt-inst/contrib/extracttar.cc
  1927. msgid "Corrupted archive"
  1928. msgstr "Hibás archívum"
  1929. #: apt-inst/contrib/extracttar.cc
  1930. msgid "Tar checksum failed, archive corrupted"
  1931. msgstr "Tar ellenőrzőösszeg nem egyezik, az archívum megsérült"
  1932. #: apt-inst/contrib/extracttar.cc
  1933. #, c-format
  1934. msgid "Unknown TAR header type %u, member %s"
  1935. msgstr "Ismeretlen a(z) %u TAR fejléctípus, %s tag"
  1936. #: apt-inst/deb/debfile.cc
  1937. #, c-format
  1938. msgid "This is not a valid DEB archive, missing '%s' member"
  1939. msgstr "Ez nem egy érvényes DEB archívum, hiányzik a(z) „%s” tag"
  1940. #: apt-inst/deb/debfile.cc
  1941. #, c-format
  1942. msgid "Internal error, could not locate member %s"
  1943. msgstr "Belső hiba, %s tag nem található"
  1944. #: apt-inst/deb/debfile.cc
  1945. msgid "Unparsable control file"
  1946. msgstr "Értelmezhetetlen control fájl"
  1947. #: apt-inst/dirstream.cc
  1948. #, c-format
  1949. msgid "Failed to write file %s"
  1950. msgstr "A(z) %s fájl írása sikertelen"
  1951. #: apt-inst/dirstream.cc
  1952. #, c-format
  1953. msgid "Failed to close file %s"
  1954. msgstr "A(z) %s fájl bezárása sikertelen"
  1955. #: apt-inst/extract.cc
  1956. #, c-format
  1957. msgid "The path %s is too long"
  1958. msgstr "A(z) %s útvonal túl hosszú"
  1959. #: apt-inst/extract.cc
  1960. #, c-format
  1961. msgid "Unpacking %s more than once"
  1962. msgstr "A(z) %s többszöri kicsomagolása"
  1963. #: apt-inst/extract.cc
  1964. #, c-format
  1965. msgid "The directory %s is diverted"
  1966. msgstr "A(z) %s könyvtár eltérítve"
  1967. #: apt-inst/extract.cc
  1968. #, c-format
  1969. msgid "The package is trying to write to the diversion target %s/%s"
  1970. msgstr "A csomag megpróbál írni a(z) %s/%s eltérített célpontba"
  1971. #: apt-inst/extract.cc
  1972. msgid "The diversion path is too long"
  1973. msgstr "Az eltérített útvonal túl hosszú"
  1974. #: apt-inst/extract.cc
  1975. #, c-format
  1976. msgid "The directory %s is being replaced by a non-directory"
  1977. msgstr "A(z) %s könyvtár nem egy könyvtárral lesz helyettesítve"
  1978. #: apt-inst/extract.cc
  1979. msgid "Failed to locate node in its hash bucket"
  1980. msgstr "Nem sikerült a node helyét megtalálni a hashtárolóban"
  1981. #: apt-inst/extract.cc
  1982. msgid "The path is too long"
  1983. msgstr "Az útvonal túl hosszú"
  1984. #: apt-inst/extract.cc
  1985. #, c-format
  1986. msgid "Overwrite package match with no version for %s"
  1987. msgstr "Csomagtalálat felülírása %s verziója nélkül"
  1988. #: apt-inst/extract.cc
  1989. #, c-format
  1990. msgid "File %s/%s overwrites the one in the package %s"
  1991. msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt"
  1992. #: apt-inst/extract.cc
  1993. #, c-format
  1994. msgid "Unable to stat %s"
  1995. msgstr "%s nem érhető el"
  1996. #: apt-inst/filelist.cc
  1997. msgid "DropNode called on still linked node"
  1998. msgstr "A DropNode hívása egy még mindig linkelt node-ra történt"
  1999. #: apt-inst/filelist.cc
  2000. msgid "Failed to locate the hash element!"
  2001. msgstr "A hash elem nem található!"
  2002. #: apt-inst/filelist.cc
  2003. msgid "Failed to allocate diversion"
  2004. msgstr "Nem lehet eltérítést lefoglalni"
  2005. #: apt-inst/filelist.cc
  2006. msgid "Internal error in AddDiversion"
  2007. msgstr "Belső hiba az AddDiversion hívásban"
  2008. #: apt-inst/filelist.cc
  2009. #, c-format
  2010. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  2011. msgstr "Kísérlet eltérítés felülírására: %s -> %s és %s/%s"
  2012. #: apt-inst/filelist.cc
  2013. #, c-format
  2014. msgid "Double add of diversion %s -> %s"
  2015. msgstr "A(z) %s -> %s eltérítés hozzáadásának duplázása"
  2016. #: apt-inst/filelist.cc
  2017. #, c-format
  2018. msgid "Duplicate conf file %s/%s"
  2019. msgstr "Dupla %s/%s konfigurációs fájl"
  2020. #: apt-pkg/acquire-item.cc
  2021. msgid ""
  2022. "Updating from such a repository can't be done securely, and is therefore "
  2023. "disabled by default."
  2024. msgstr ""
  2025. #: apt-pkg/acquire-item.cc
  2026. msgid ""
  2027. "Data from such a repository can't be authenticated and is therefore "
  2028. "potentially dangerous to use."
  2029. msgstr ""
  2030. #: apt-pkg/acquire-item.cc
  2031. msgid ""
  2032. "See apt-secure(8) manpage for repository creation and user configuration "
  2033. "details."
  2034. msgstr ""
  2035. #: apt-pkg/acquire-item.cc apt-pkg/contrib/fileutl.cc
  2036. #, c-format
  2037. msgid "rename failed, %s (%s -> %s)."
  2038. msgstr "sikertelen átnevezés, %s (%s -> %s)."
  2039. #: apt-pkg/acquire-item.cc
  2040. msgid "Hash Sum mismatch"
  2041. msgstr "A Hash Sum nem megfelelő"
  2042. #: apt-pkg/acquire-item.cc
  2043. msgid "Size mismatch"
  2044. msgstr "A méret nem megfelelő"
  2045. #: apt-pkg/acquire-item.cc
  2046. #, fuzzy
  2047. msgid "Invalid file format"
  2048. msgstr "%s érvénytelen művelet"
  2049. #: apt-pkg/acquire-item.cc
  2050. #, fuzzy
  2051. msgid "Signature error"
  2052. msgstr "Írási hiba"
  2053. #: apt-pkg/acquire-item.cc
  2054. #, fuzzy, c-format
  2055. msgid ""
  2056. "An error occurred during the signature verification. The repository is not "
  2057. "updated and the previous index files will be used. GPG error: %s: %s"
  2058. msgstr ""
  2059. "Hiba történt az aláírás ellenőrzése közben. A tároló nem frissült, és az "
  2060. "előző indexfájl lesz használva. GPG hiba: %s: %s\n"
  2061. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2062. #: apt-pkg/acquire-item.cc
  2063. #, c-format
  2064. msgid "GPG error: %s: %s"
  2065. msgstr "GPG hiba: %s: %s"
  2066. #: apt-pkg/acquire-item.cc
  2067. #, c-format
  2068. msgid ""
  2069. "Skipping acquire of configured file '%s' as repository '%s' doesn't support "
  2070. "architecture '%s'"
  2071. msgstr ""
  2072. #: apt-pkg/acquire-item.cc
  2073. #, c-format
  2074. msgid ""
  2075. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2076. "or malformed file)"
  2077. msgstr ""
  2078. "A várt „%s” bejegyzés nem található a Release fájlban (Rossz sources.list "
  2079. "bejegyzés vagy helytelenül formázott fájl)"
  2080. #: apt-pkg/acquire-item.cc
  2081. #, c-format
  2082. msgid ""
  2083. "Skipping acquire of configured file '%s' as repository '%s' provides only "
  2084. "weak security information for it"
  2085. msgstr ""
  2086. #: apt-pkg/acquire-item.cc
  2087. msgid "There is no public key available for the following key IDs:\n"
  2088. msgstr "Nem érhető el nyilvános kulcs az alábbi kulcsazonosítókhoz:\n"
  2089. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  2090. #. the time since then the file is invalid - formatted in the same way as in
  2091. #. the download progress display (e.g. 7d 3h 42min 1s)
  2092. #: apt-pkg/acquire-item.cc
  2093. #, c-format
  2094. msgid ""
  2095. "Release file for %s is expired (invalid since %s). Updates for this "
  2096. "repository will not be applied."
  2097. msgstr ""
  2098. "A Release fájl elavult ehhez: %s (érvénytelen ez óta: %s). A tároló "
  2099. "frissítései nem kerülnek alkalmazásra."
  2100. #: apt-pkg/acquire-item.cc
  2101. #, c-format
  2102. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2103. msgstr "Ütköző disztribúció: %s (a várt %s helyett %s érkezett)"
  2104. #. No Release file was present, or verification failed, so fall
  2105. #. back to queueing Packages files without verification
  2106. #. only allow going further if the user explicitly wants it
  2107. #: apt-pkg/acquire-item.cc
  2108. #, fuzzy, c-format
  2109. msgid "The repository '%s' is not signed."
  2110. msgstr "A(z) %s könyvtár eltérítve"
  2111. #. No Release file was present so fall
  2112. #. back to queueing Packages files without verification
  2113. #. only allow going further if the user explicitly wants it
  2114. #: apt-pkg/acquire-item.cc
  2115. #, fuzzy, c-format
  2116. msgid "The repository '%s' does not have a Release file."
  2117. msgstr "A(z) %s könyvtár eltérítve"
  2118. #: apt-pkg/acquire-item.cc
  2119. #, fuzzy, c-format
  2120. msgid "The repository '%s' is no longer signed."
  2121. msgstr "A(z) %s könyvtár eltérítve"
  2122. #: apt-pkg/acquire-item.cc
  2123. msgid ""
  2124. "This is normally not allowed, but the option Acquire::"
  2125. "AllowDowngradeToInsecureRepositories was given to override it."
  2126. msgstr ""
  2127. #: apt-pkg/acquire-item.cc
  2128. #, c-format
  2129. msgid ""
  2130. "I wasn't able to locate a file for the %s package. This might mean you need "
  2131. "to manually fix this package. (due to missing arch)"
  2132. msgstr ""
  2133. "Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
  2134. "kell kijavítani a csomagot. (hiányzó arch. miatt)"
  2135. #: apt-pkg/acquire-item.cc
  2136. #, c-format
  2137. msgid "Can't find a source to download version '%s' of '%s'"
  2138. msgstr "Nem található forrás a(z) „%2$s” „%1$s” verziójának letöltéséhez"
  2139. #: apt-pkg/acquire-item.cc
  2140. #, c-format
  2141. msgid ""
  2142. "The package index files are corrupted. No Filename: field for package %s."
  2143. msgstr ""
  2144. "A csomagindexfájlok megsérültek. Nincs Filename: mező a(z) %s csomaghoz."
  2145. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  2146. #: apt-pkg/acquire-item.cc
  2147. #, fuzzy, c-format
  2148. msgid "Changelog unavailable for %s=%s"
  2149. msgstr "Változási napló ehhez: %s (%s)"
  2150. #: apt-pkg/acquire-worker.cc
  2151. #, c-format
  2152. msgid "The method driver %s could not be found."
  2153. msgstr "A(z) %s metódusvezérlő nem található."
  2154. #: apt-pkg/acquire-worker.cc
  2155. #, fuzzy, c-format
  2156. msgid "Is the package %s installed?"
  2157. msgstr "Ellenőrizze, hogy a „dpkg-dev” csomag telepítve van-e.\n"
  2158. #: apt-pkg/acquire-worker.cc
  2159. #, c-format
  2160. msgid "Method %s did not start correctly"
  2161. msgstr "A(z) %s metódus nem indult el megfelelően"
  2162. #: apt-pkg/acquire-worker.cc
  2163. #, fuzzy, c-format
  2164. msgid ""
  2165. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  2166. msgstr ""
  2167. "Helyezze be a(z) „%s” címkéjű lemezt a(z) „%s” meghajtóba, és nyomja meg az "
  2168. "Entert."
  2169. #: apt-pkg/acquire.cc apt-pkg/cdrom.cc
  2170. #, c-format
  2171. msgid "List directory %spartial is missing."
  2172. msgstr "A(z) %spartial listakönyvtár hiányzik."
  2173. #: apt-pkg/acquire.cc
  2174. #, c-format
  2175. msgid "Archives directory %spartial is missing."
  2176. msgstr "A(z) %spartial archívumkönyvtár hiányzik."
  2177. #: apt-pkg/acquire.cc
  2178. #, c-format
  2179. msgid "Unable to lock directory %s"
  2180. msgstr "%s könyvtár zárolása sikertelen"
  2181. #: apt-pkg/acquire.cc
  2182. #, c-format
  2183. msgid "No sandbox user '%s' on the system, can not drop privileges"
  2184. msgstr ""
  2185. #: apt-pkg/acquire.cc
  2186. #, c-format
  2187. msgid ""
  2188. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  2189. "user '%s'."
  2190. msgstr ""
  2191. #: apt-pkg/acquire.cc apt-pkg/clean.cc
  2192. #, fuzzy, c-format
  2193. msgid "Clean of %s is not supported"
  2194. msgstr "A(z) „%s” indexfájltípus nem támogatott"
  2195. #. only show the ETA if it makes sense
  2196. #. two days
  2197. #: apt-pkg/acquire.cc
  2198. #, c-format
  2199. msgid "Retrieving file %li of %li (%s remaining)"
  2200. msgstr "%li/%li fájl letöltése (%s marad)"
  2201. #: apt-pkg/acquire.cc
  2202. #, c-format
  2203. msgid "Retrieving file %li of %li"
  2204. msgstr "%li/%li fájl letöltése"
  2205. #: apt-pkg/algorithms.cc
  2206. #, c-format
  2207. msgid ""
  2208. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2209. msgstr ""
  2210. "A(z) %s csomagot újra kell telepíteni, de nem található hozzá archívum."
  2211. #: apt-pkg/algorithms.cc
  2212. msgid ""
  2213. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2214. "held packages."
  2215. msgstr ""
  2216. "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott "
  2217. "csomagok okozhatják."
  2218. #: apt-pkg/algorithms.cc
  2219. msgid "Unable to correct problems, you have held broken packages."
  2220. msgstr "A problémák nem javíthatók, sérült csomagokat fogott vissza."
  2221. #: apt-pkg/cachefile.cc
  2222. msgid "The package lists or status file could not be parsed or opened."
  2223. msgstr ""
  2224. "A csomaglisták vagy az állapotfájl nem dolgozhatók fel vagy nem nyithatók "
  2225. "meg."
  2226. #: apt-pkg/cachefile.cc
  2227. msgid "You may want to run apt-get update to correct these problems"
  2228. msgstr "Próbálja futtatni az „apt-get update” parancsot ezen hibák javításához"
  2229. #: apt-pkg/cachefile.cc
  2230. msgid "The list of sources could not be read."
  2231. msgstr "A források listája olvashatatlan."
  2232. #: apt-pkg/cacheset.cc
  2233. #, c-format
  2234. msgid "Release '%s' for '%s' was not found"
  2235. msgstr "„%s” kiadás nem található ehhez: „%s”"
  2236. #: apt-pkg/cacheset.cc
  2237. #, c-format
  2238. msgid "Version '%s' for '%s' was not found"
  2239. msgstr "„%s” verzió nem található ehhez: „%s”"
  2240. #: apt-pkg/cacheset.cc
  2241. #, c-format
  2242. msgid "Couldn't find task '%s'"
  2243. msgstr "„%s” feladat nem található"
  2244. #: apt-pkg/cacheset.cc
  2245. #, c-format
  2246. msgid "Couldn't find any package by regex '%s'"
  2247. msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel"
  2248. #: apt-pkg/cacheset.cc
  2249. #, fuzzy, c-format
  2250. msgid "Couldn't find any package by glob '%s'"
  2251. msgstr "Nem található csomag a(z) „%s” reguláris kifejezéssel"
  2252. #: apt-pkg/cacheset.cc
  2253. #, c-format
  2254. msgid "Can't select versions from package '%s' as it is purely virtual"
  2255. msgstr "„%s” csomagból nem választható verzió, mert teljesen virtuális"
  2256. #: apt-pkg/cacheset.cc
  2257. #, c-format
  2258. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2259. msgstr ""
  2260. "„%s” csomag legújabb verziója nem választható ki, mert teljesen virtuális"
  2261. #: apt-pkg/cacheset.cc
  2262. #, c-format
  2263. msgid "Can't select candidate version from package %s as it has no candidate"
  2264. msgstr ""
  2265. "„%s” csomag kiadásra jelölt verziója nem választható ki, mert nincs jelöltje"
  2266. #: apt-pkg/cacheset.cc
  2267. #, c-format
  2268. msgid "Can't select installed version from package %s as it is not installed"
  2269. msgstr ""
  2270. "„%s” csomag telepített verziója nem választható ki, mert nincs telepítve"
  2271. #: apt-pkg/cacheset.cc
  2272. #, c-format
  2273. msgid ""
  2274. "Can't select installed nor candidate version from package '%s' as it has "
  2275. "neither of them"
  2276. msgstr ""
  2277. "„%s” csomagból nem választható sem telepített, sem kiadásra jelölt verzió, "
  2278. "mert egyikkel sem rendelkezik"
  2279. #: apt-pkg/cdrom.cc
  2280. #, c-format
  2281. msgid "Line %u too long in source list %s."
  2282. msgstr "A(z) %u. sor túl hosszú a(z) %s forráslistában."
  2283. #: apt-pkg/cdrom.cc
  2284. msgid "Unmounting CD-ROM...\n"
  2285. msgstr "CD-ROM leválasztása...\n"
  2286. #: apt-pkg/cdrom.cc
  2287. #, c-format
  2288. msgid "Using CD-ROM mount point %s\n"
  2289. msgstr "%s CD-ROM csatolási pont használata\n"
  2290. #: apt-pkg/cdrom.cc
  2291. msgid "Waiting for disc...\n"
  2292. msgstr "Várakozás a lemezre...\n"
  2293. #: apt-pkg/cdrom.cc
  2294. msgid "Mounting CD-ROM...\n"
  2295. msgstr "CD-ROM csatolása...\n"
  2296. #: apt-pkg/cdrom.cc
  2297. msgid "Identifying... "
  2298. msgstr "Azonosítás... "
  2299. #: apt-pkg/cdrom.cc
  2300. #, c-format
  2301. msgid "Stored label: %s\n"
  2302. msgstr "Tárolt címke: %s\n"
  2303. #: apt-pkg/cdrom.cc
  2304. msgid "Scanning disc for index files...\n"
  2305. msgstr "Indexfájlok keresése a lemezen...\n"
  2306. #: apt-pkg/cdrom.cc
  2307. #, c-format
  2308. msgid ""
  2309. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2310. "%zu signatures\n"
  2311. msgstr ""
  2312. "%zu csomagindex, %zu forrásindex, %zu fordításindex és %zu aláírás "
  2313. "megtalálva\n"
  2314. #: apt-pkg/cdrom.cc
  2315. msgid ""
  2316. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2317. "wrong architecture?"
  2318. msgstr ""
  2319. "Nem találhatók csomagfájlok, lehet hogy ez nem Debian lemez, vagy nem "
  2320. "megfelelő az architektúra?"
  2321. #: apt-pkg/cdrom.cc
  2322. #, c-format
  2323. msgid "Found label '%s'\n"
  2324. msgstr "Talált címke: „%s”\n"
  2325. #: apt-pkg/cdrom.cc
  2326. msgid "That is not a valid name, try again.\n"
  2327. msgstr "A név érvénytelen, próbálja újra.\n"
  2328. #: apt-pkg/cdrom.cc
  2329. #, c-format
  2330. msgid ""
  2331. "This disc is called: \n"
  2332. "'%s'\n"
  2333. msgstr ""
  2334. "A lemez neve: \n"
  2335. "„%s”\n"
  2336. #: apt-pkg/cdrom.cc
  2337. msgid "Copying package lists..."
  2338. msgstr "Csomaglisták másolása..."
  2339. #: apt-pkg/cdrom.cc
  2340. msgid "Writing new source list\n"
  2341. msgstr "Új forráslista írása\n"
  2342. #: apt-pkg/cdrom.cc
  2343. msgid "Source list entries for this disc are:\n"
  2344. msgstr "A lemezhez tartozó forráslistabejegyzések a következők:\n"
  2345. #: apt-pkg/clean.cc
  2346. #, c-format
  2347. msgid "Unable to stat %s."
  2348. msgstr "%s nem érhető el."
  2349. #: apt-pkg/contrib/cdromutl.cc
  2350. #, c-format
  2351. msgid "Unable to stat the mount point %s"
  2352. msgstr "%s csatolási pont nem érhető el"
  2353. #: apt-pkg/contrib/cdromutl.cc
  2354. msgid "Failed to stat the cdrom"
  2355. msgstr "Nem sikerült elérni a CD-ROM-ot."
  2356. #: apt-pkg/contrib/cmndline.cc
  2357. #, fuzzy, c-format
  2358. msgid ""
  2359. "Command line option '%c' [from %s] is not understood in combination with the "
  2360. "other options."
  2361. msgstr "A(z) „%c” parancssori kapcsoló [a következőből: %s] ismeretlen."
  2362. #: apt-pkg/contrib/cmndline.cc
  2363. #, fuzzy, c-format
  2364. msgid ""
  2365. "Command line option %s is not understood in combination with the other "
  2366. "options"
  2367. msgstr "%s parancssori kapcsoló értelmezhetetlen"
  2368. #: apt-pkg/contrib/cmndline.cc
  2369. #, c-format
  2370. msgid "Command line option %s is not boolean"
  2371. msgstr "%s parancssori kapcsoló nem logikai"
  2372. #: apt-pkg/contrib/cmndline.cc
  2373. #, c-format
  2374. msgid "Option %s requires an argument."
  2375. msgstr "%s kapcsolóhoz argumentum szükséges."
  2376. #: apt-pkg/contrib/cmndline.cc
  2377. #, c-format
  2378. msgid "Option %s: Configuration item specification must have an =<val>."
  2379. msgstr ""
  2380. "%s kapcsoló: a konfigurációs elem megadásához szükséges egy =<érték> rész."
  2381. #: apt-pkg/contrib/cmndline.cc
  2382. #, c-format
  2383. msgid "Option %s requires an integer argument, not '%s'"
  2384. msgstr "%s kapcsoló egész, és nem „%s” típusú argumentumot követel meg"
  2385. #: apt-pkg/contrib/cmndline.cc
  2386. #, c-format
  2387. msgid "Option '%s' is too long"
  2388. msgstr "Túl hosszú „%s” kapcsoló"
  2389. #: apt-pkg/contrib/cmndline.cc
  2390. #, c-format
  2391. msgid "Sense %s is not understood, try true or false."
  2392. msgstr "%s jelentés nem értelmezhető, próbálja a true vagy false értékeket."
  2393. #: apt-pkg/contrib/cmndline.cc
  2394. #, c-format
  2395. msgid "Invalid operation %s"
  2396. msgstr "%s érvénytelen művelet"
  2397. #: apt-pkg/contrib/configuration.cc
  2398. #, c-format
  2399. msgid "Unrecognized type abbreviation: '%c'"
  2400. msgstr "Ismeretlen típusrövidítés: „%c”"
  2401. #: apt-pkg/contrib/configuration.cc
  2402. #, c-format
  2403. msgid "Opening configuration file %s"
  2404. msgstr "%s konfigurációs fájl megnyitása"
  2405. #: apt-pkg/contrib/configuration.cc
  2406. #, c-format
  2407. msgid "Syntax error %s:%u: Block starts with no name."
  2408. msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik."
  2409. #: apt-pkg/contrib/configuration.cc
  2410. #, c-format
  2411. msgid "Syntax error %s:%u: Malformed tag"
  2412. msgstr "Szintaktikai hiba %s: %u: rosszul formázott címke"
  2413. #: apt-pkg/contrib/configuration.cc
  2414. #, c-format
  2415. msgid "Syntax error %s:%u: Extra junk after value"
  2416. msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után"
  2417. #: apt-pkg/contrib/configuration.cc
  2418. #, c-format
  2419. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2420. msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások"
  2421. #: apt-pkg/contrib/configuration.cc
  2422. #, c-format
  2423. msgid "Syntax error %s:%u: Too many nested includes"
  2424. msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include"
  2425. #: apt-pkg/contrib/configuration.cc
  2426. #, c-format
  2427. msgid "Syntax error %s:%u: Included from here"
  2428. msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva"
  2429. #: apt-pkg/contrib/configuration.cc
  2430. #, c-format
  2431. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2432. msgstr "Szintaktikai hiba %s:%u: „%s” nem támogatott előírás"
  2433. #: apt-pkg/contrib/configuration.cc
  2434. #, c-format
  2435. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2436. msgstr ""
  2437. "Szintaktikai hiba %s:%u: a törlési parancs egy beállítási fát vár "
  2438. "argumentumként"
  2439. #: apt-pkg/contrib/configuration.cc
  2440. #, c-format
  2441. msgid "Syntax error %s:%u: Extra junk at end of file"
  2442. msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén"
  2443. #: apt-pkg/contrib/fileutl.cc
  2444. #, c-format
  2445. msgid "Problem unlinking the file %s"
  2446. msgstr "Hiba a(z) %s fájl törlésekor"
  2447. #: apt-pkg/contrib/fileutl.cc
  2448. #, c-format
  2449. msgid "Not using locking for read only lock file %s"
  2450. msgstr "Nem lesz zárolva a(z) „%s” csak olvasható zárolási fájl"
  2451. #: apt-pkg/contrib/fileutl.cc
  2452. #, c-format
  2453. msgid "Could not open lock file %s"
  2454. msgstr "%s zárolási fájl nem nyitható meg"
  2455. #: apt-pkg/contrib/fileutl.cc
  2456. #, c-format
  2457. msgid "Not using locking for nfs mounted lock file %s"
  2458. msgstr "Nem lesz zárolva a(z) %s NFS-csatolású zárolási fájl"
  2459. #: apt-pkg/contrib/fileutl.cc
  2460. #, c-format
  2461. msgid "Could not get lock %s"
  2462. msgstr "Nem sikerült zárolni: %s"
  2463. #: apt-pkg/contrib/fileutl.cc
  2464. #, c-format
  2465. msgid "List of files can't be created as '%s' is not a directory"
  2466. msgstr "A fájlok listáját nem lehetett létrehozni, mert „%s” nem könyvtár"
  2467. #: apt-pkg/contrib/fileutl.cc
  2468. #, c-format
  2469. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2470. msgstr ""
  2471. "„%s” figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nem szabályos fájl"
  2472. #: apt-pkg/contrib/fileutl.cc
  2473. #, c-format
  2474. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2475. msgstr ""
  2476. "„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert nincs "
  2477. "fájlkiterjesztése"
  2478. #: apt-pkg/contrib/fileutl.cc
  2479. #, c-format
  2480. msgid ""
  2481. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2482. msgstr ""
  2483. "„%s” fájl figyelmen kívül hagyása a(z) „%s” könyvtárban, mert érvénytelen "
  2484. "fájlkiterjesztése van"
  2485. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc apt-pkg/deb/debsystem.cc
  2486. #, c-format
  2487. msgid "Waited for %s but it wasn't there"
  2488. msgstr "Nem található a(z) %s, a várakozás után sem"
  2489. #: apt-pkg/contrib/fileutl.cc
  2490. #, c-format
  2491. msgid "Sub-process %s received a segmentation fault."
  2492. msgstr "%s alfolyamat szegmentálási hibát okozott."
  2493. #: apt-pkg/contrib/fileutl.cc
  2494. #, c-format
  2495. msgid "Sub-process %s received signal %u."
  2496. msgstr "A(z) %s alfolyamat %u számú szignált kapott."
  2497. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2498. #, c-format
  2499. msgid "Sub-process %s returned an error code (%u)"
  2500. msgstr "%s alfolyamat hibakóddal tért vissza (%u)"
  2501. #: apt-pkg/contrib/fileutl.cc apt-pkg/contrib/gpgv.cc
  2502. #, c-format
  2503. msgid "Sub-process %s exited unexpectedly"
  2504. msgstr "%s alfolyamat váratlanul kilépett"
  2505. #: apt-pkg/contrib/fileutl.cc
  2506. #, c-format
  2507. msgid "Problem closing the gzip file %s"
  2508. msgstr "Hiba a(z) %s gzip fájl bezárásakor"
  2509. #: apt-pkg/contrib/fileutl.cc
  2510. msgid "Failed to create subprocess IPC"
  2511. msgstr "Nem sikerült az alfolyamat IPC-t létrehozni"
  2512. #: apt-pkg/contrib/fileutl.cc
  2513. msgid "Failed to exec compressor "
  2514. msgstr "Nem sikerült elindítani a tömörítőt "
  2515. #: apt-pkg/contrib/fileutl.cc
  2516. #, c-format
  2517. msgid "Could not open file %s"
  2518. msgstr "Nem lehet megnyitni a(z) %s fájlt"
  2519. #: apt-pkg/contrib/fileutl.cc
  2520. #, c-format
  2521. msgid "Could not open file descriptor %d"
  2522. msgstr "Nem lehet megnyitni a(z) %d fájlleírót"
  2523. #: apt-pkg/contrib/fileutl.cc
  2524. #, c-format
  2525. msgid "read, still have %llu to read but none left"
  2526. msgstr "olvasás, még kellene %llu, de már az összes elfogyott"
  2527. #: apt-pkg/contrib/fileutl.cc
  2528. #, c-format
  2529. msgid "write, still have %llu to write but couldn't"
  2530. msgstr "írás, még kiírandó %llu, de ez nem lehetséges"
  2531. #: apt-pkg/contrib/fileutl.cc
  2532. #, c-format
  2533. msgid "Problem closing the file %s"
  2534. msgstr "Hiba a(z) %s fájl bezárásakor"
  2535. #: apt-pkg/contrib/fileutl.cc
  2536. #, c-format
  2537. msgid "Problem renaming the file %s to %s"
  2538. msgstr "Hiba a(z) %s fájl átnevezésekor erre: %s"
  2539. #: apt-pkg/contrib/fileutl.cc
  2540. msgid "Problem syncing the file"
  2541. msgstr "Hiba a fájl szinkronizálásakor"
  2542. # FIXME
  2543. #: apt-pkg/contrib/mmap.cc
  2544. msgid "Can't mmap an empty file"
  2545. msgstr "Nem lehet mmap-olni egy üres fájlt"
  2546. #: apt-pkg/contrib/mmap.cc
  2547. #, c-format
  2548. msgid "Couldn't make mmap of %llu bytes"
  2549. msgstr "Nem sikerült %llu bájtot mmap-olni"
  2550. #: apt-pkg/contrib/mmap.cc
  2551. #, c-format
  2552. msgid "Couldn't duplicate file descriptor %i"
  2553. msgstr "Nem lehetett kettőzni a(z) %i fájlleírót"
  2554. #: apt-pkg/contrib/mmap.cc
  2555. msgid "Unable to close mmap"
  2556. msgstr "Nem lehet bezárni az mmapot"
  2557. #: apt-pkg/contrib/mmap.cc
  2558. msgid "Unable to synchronize mmap"
  2559. msgstr "Nem lehet szinkronizálni az mmapot"
  2560. #: apt-pkg/contrib/mmap.cc
  2561. #, c-format
  2562. msgid "Couldn't make mmap of %lu bytes"
  2563. msgstr "Nem sikerült %lu bájtot mmap-olni"
  2564. #: apt-pkg/contrib/mmap.cc
  2565. msgid "Failed to truncate file"
  2566. msgstr "A fájl csonkítása meghiúsult"
  2567. #: apt-pkg/contrib/mmap.cc
  2568. #, c-format
  2569. msgid ""
  2570. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2571. "Current value: %lu. (man 5 apt.conf)"
  2572. msgstr ""
  2573. "A dinamikus MMap helye elfogyott. Növelje az APT::Cache-Start méretét. A "
  2574. "jelenlegi érték: %lu. (lásd: man 5 apt.conf)"
  2575. #: apt-pkg/contrib/mmap.cc
  2576. #, c-format
  2577. msgid ""
  2578. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2579. "reached."
  2580. msgstr ""
  2581. "Nem lehet növelni az MMap méretét, mert a(z) %lu bájt korlátot már elérte."
  2582. #: apt-pkg/contrib/mmap.cc
  2583. msgid ""
  2584. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2585. msgstr ""
  2586. "Nem lehet növelni az MMap méretét, mert a felhasználó letiltotta az "
  2587. "automatikus emelést."
  2588. #: apt-pkg/contrib/progress.cc
  2589. #, c-format
  2590. msgid "%c%s... Error!"
  2591. msgstr "%c%s... Hiba!"
  2592. #: apt-pkg/contrib/progress.cc
  2593. #, c-format
  2594. msgid "%c%s... Done"
  2595. msgstr "%c%s... Kész"
  2596. #: apt-pkg/contrib/progress.cc
  2597. msgid "..."
  2598. msgstr ""
  2599. #. Print the spinner
  2600. #: apt-pkg/contrib/progress.cc
  2601. #, fuzzy, c-format
  2602. msgid "%c%s... %u%%"
  2603. msgstr "%c%s... Kész"
  2604. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2605. #: apt-pkg/contrib/strutl.cc
  2606. #, c-format
  2607. msgid "%lid %lih %limin %lis"
  2608. msgstr "%lin %lió %lip %limp"
  2609. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2610. #: apt-pkg/contrib/strutl.cc
  2611. #, c-format
  2612. msgid "%lih %limin %lis"
  2613. msgstr "%lió %lip %limp"
  2614. #. TRANSLATOR: min means minutes, s means seconds
  2615. #: apt-pkg/contrib/strutl.cc
  2616. #, c-format
  2617. msgid "%limin %lis"
  2618. msgstr "%lip %limp"
  2619. #. TRANSLATOR: s means seconds
  2620. #: apt-pkg/contrib/strutl.cc
  2621. #, c-format
  2622. msgid "%lis"
  2623. msgstr "%limp"
  2624. #: apt-pkg/contrib/strutl.cc
  2625. #, c-format
  2626. msgid "Selection %s not found"
  2627. msgstr "%s kiválasztás nem található"
  2628. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2629. #. a file like main/binary-amd64/Packages; another identifier like Contents;
  2630. #. filename and linenumber of the sources.list entry currently parsed
  2631. #: apt-pkg/deb/debmetaindex.cc
  2632. #, c-format
  2633. msgid "Target %s wants to acquire the same file (%s) as %s from source %s"
  2634. msgstr ""
  2635. #. TRANSLATOR: an identifier like Packages; Releasefile key indicating
  2636. #. a file like main/binary-amd64/Packages; filename and linenumber of
  2637. #. two sources.list entries
  2638. #: apt-pkg/deb/debmetaindex.cc
  2639. #, c-format
  2640. msgid "Target %s (%s) is configured multiple times in %s and %s"
  2641. msgstr ""
  2642. #: apt-pkg/deb/debmetaindex.cc
  2643. #, c-format
  2644. msgid "Unable to parse Release file %s"
  2645. msgstr "A(z) %s Release fájl nem dolgozható fel"
  2646. #: apt-pkg/deb/debmetaindex.cc
  2647. #, c-format
  2648. msgid "No sections in Release file %s"
  2649. msgstr "A(z) %s Release fájl nem tartalmaz szakaszokat"
  2650. #: apt-pkg/deb/debmetaindex.cc
  2651. #, c-format
  2652. msgid "No Hash entry in Release file %s"
  2653. msgstr "Nincs Hash bejegyzés a(z) %s Release fájlban"
  2654. #: apt-pkg/deb/debmetaindex.cc
  2655. #, c-format
  2656. msgid ""
  2657. "No Hash entry in Release file %s, which is considered strong enough for "
  2658. "security purposes"
  2659. msgstr ""
  2660. #: apt-pkg/deb/debmetaindex.cc
  2661. #, c-format
  2662. msgid "Invalid 'Date' entry in Release file %s"
  2663. msgstr "Érvénytelen „Date” bejegyzés a(z) %s Release fájlban"
  2664. #: apt-pkg/deb/debmetaindex.cc
  2665. #, c-format
  2666. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2667. msgstr "Érvénytelen „Valid-Until” bejegyzés a(z) %s Release fájlban"
  2668. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2669. #: apt-pkg/deb/debmetaindex.cc
  2670. #, c-format
  2671. msgid "Conflicting values set for option %s regarding source %s %s"
  2672. msgstr ""
  2673. #: apt-pkg/deb/debmetaindex.cc
  2674. #, c-format
  2675. msgid "Invalid value set for option %s regarding source %s %s (%s)"
  2676. msgstr ""
  2677. #: apt-pkg/deb/debrecords.cc apt-pkg/tagfile.cc
  2678. #, c-format
  2679. msgid "Unable to parse package file %s (%d)"
  2680. msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (%d)"
  2681. #: apt-pkg/deb/debsystem.cc
  2682. #, c-format
  2683. msgid ""
  2684. "Unable to lock the administration directory (%s), is another process using "
  2685. "it?"
  2686. msgstr ""
  2687. "Az adminisztrációs könyvtár (%s) nem zárolható, lehet hogy másik folyamat "
  2688. "használja?"
  2689. #: apt-pkg/deb/debsystem.cc
  2690. #, c-format
  2691. msgid "Unable to lock the administration directory (%s), are you root?"
  2692. msgstr ""
  2693. "Az adminisztrációs könyvtár (%s) nem zárolható, rendszergazdaként próbálja?"
  2694. #. TRANSLATORS: the %s contains the recovery command, usually
  2695. #. dpkg --configure -a
  2696. #: apt-pkg/deb/debsystem.cc
  2697. #, c-format
  2698. msgid ""
  2699. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2700. msgstr ""
  2701. "A dpkg megszakadt, saját kezűleg kell futtatnia a(z) „%s” parancsot a "
  2702. "probléma megoldásához. "
  2703. #: apt-pkg/deb/debsystem.cc
  2704. msgid "Not locked"
  2705. msgstr "Nincs zárolva"
  2706. #: apt-pkg/deb/dpkgpm.cc
  2707. #, c-format
  2708. msgid "Installing %s"
  2709. msgstr "%s telepítése"
  2710. #: apt-pkg/deb/dpkgpm.cc
  2711. #, c-format
  2712. msgid "Configuring %s"
  2713. msgstr "%s konfigurálása"
  2714. #: apt-pkg/deb/dpkgpm.cc
  2715. #, c-format
  2716. msgid "Removing %s"
  2717. msgstr "%s eltávolítása"
  2718. #: apt-pkg/deb/dpkgpm.cc
  2719. #, c-format
  2720. msgid "Completely removing %s"
  2721. msgstr "%s teljes eltávolítása"
  2722. #: apt-pkg/deb/dpkgpm.cc
  2723. #, c-format
  2724. msgid "Noting disappearance of %s"
  2725. msgstr "„%s” eltűnése feljegyezve"
  2726. #: apt-pkg/deb/dpkgpm.cc
  2727. #, c-format
  2728. msgid "Running post-installation trigger %s"
  2729. msgstr "A(z) %s telepítés utáni trigger futtatása"
  2730. #. FIXME: use a better string after freeze
  2731. #: apt-pkg/deb/dpkgpm.cc
  2732. #, c-format
  2733. msgid "Directory '%s' missing"
  2734. msgstr "A(z) „%s” könyvtár hiányzik"
  2735. #: apt-pkg/deb/dpkgpm.cc
  2736. #, c-format
  2737. msgid "Could not open file '%s'"
  2738. msgstr "A(z) „%s” fájl megnyitása sikertelen"
  2739. #: apt-pkg/deb/dpkgpm.cc
  2740. #, c-format
  2741. msgid "Preparing %s"
  2742. msgstr "%s előkészítése"
  2743. #: apt-pkg/deb/dpkgpm.cc
  2744. #, c-format
  2745. msgid "Unpacking %s"
  2746. msgstr "%s kicsomagolása"
  2747. #: apt-pkg/deb/dpkgpm.cc
  2748. #, c-format
  2749. msgid "Preparing to configure %s"
  2750. msgstr "%s konfigurálásának előkészítése"
  2751. #: apt-pkg/deb/dpkgpm.cc
  2752. #, c-format
  2753. msgid "Installed %s"
  2754. msgstr "%s telepítve"
  2755. #: apt-pkg/deb/dpkgpm.cc
  2756. #, c-format
  2757. msgid "Preparing for removal of %s"
  2758. msgstr "%s eltávolításának előkészítése"
  2759. #: apt-pkg/deb/dpkgpm.cc
  2760. #, c-format
  2761. msgid "Removed %s"
  2762. msgstr "%s eltávolítva"
  2763. #: apt-pkg/deb/dpkgpm.cc
  2764. #, c-format
  2765. msgid "Preparing to completely remove %s"
  2766. msgstr "%s teljes eltávolításának előkészítése"
  2767. #: apt-pkg/deb/dpkgpm.cc
  2768. #, c-format
  2769. msgid "Completely removed %s"
  2770. msgstr "%s teljesen eltávolítva"
  2771. #: apt-pkg/deb/dpkgpm.cc
  2772. #, fuzzy, c-format
  2773. msgid "Can not write log (%s)"
  2774. msgstr "Nem lehet írni ebbe: %s"
  2775. #: apt-pkg/deb/dpkgpm.cc
  2776. msgid "Is /dev/pts mounted?"
  2777. msgstr ""
  2778. #: apt-pkg/deb/dpkgpm.cc
  2779. msgid "Operation was interrupted before it could finish"
  2780. msgstr "A művelet megszakadt, mielőtt befejeződhetett volna"
  2781. #: apt-pkg/deb/dpkgpm.cc
  2782. msgid "No apport report written because MaxReports is reached already"
  2783. msgstr "Nem került írásra apport jelentés, mivel a MaxReports már elérve"
  2784. #. check if its not a follow up error
  2785. #: apt-pkg/deb/dpkgpm.cc
  2786. msgid "dependency problems - leaving unconfigured"
  2787. msgstr "függőségi hibák - a csomag beállítatlan maradt"
  2788. #: apt-pkg/deb/dpkgpm.cc
  2789. msgid ""
  2790. "No apport report written because the error message indicates its a followup "
  2791. "error from a previous failure."
  2792. msgstr ""
  2793. "Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint ez a hiba "
  2794. "egy korábbi hiba következménye."
  2795. #: apt-pkg/deb/dpkgpm.cc
  2796. msgid ""
  2797. "No apport report written because the error message indicates a disk full "
  2798. "error"
  2799. msgstr ""
  2800. "Nem került kiírásra apport jelentés, mivel a hibaüzenet szerint megtelt a "
  2801. "lemez"
  2802. #: apt-pkg/deb/dpkgpm.cc
  2803. msgid ""
  2804. "No apport report written because the error message indicates a out of memory "
  2805. "error"
  2806. msgstr ""
  2807. "Nem került kiírásra apport jelentés, mivel a hibaüzenet memóriaelfogyási "
  2808. "hibát jelez"
  2809. #: apt-pkg/deb/dpkgpm.cc
  2810. msgid ""
  2811. "No apport report written because the error message indicates an issue on the "
  2812. "local system"
  2813. msgstr ""
  2814. "Nem került kiírásra apport jelentés, mert a hibaüzenet a helyi rendszeren "
  2815. "lévő hibát jelez"
  2816. #: apt-pkg/deb/dpkgpm.cc
  2817. msgid ""
  2818. "No apport report written because the error message indicates a dpkg I/O error"
  2819. msgstr ""
  2820. "Nem került kiírásra apport jelentés, mert a hibaüzenet dpkg I/O hibát jelez"
  2821. #: apt-pkg/depcache.cc
  2822. msgid "Building dependency tree"
  2823. msgstr "Függőségi fa építése"
  2824. #: apt-pkg/depcache.cc
  2825. msgid "Candidate versions"
  2826. msgstr "Lehetséges verziók"
  2827. #: apt-pkg/depcache.cc
  2828. msgid "Dependency generation"
  2829. msgstr "Függőséggenerálás"
  2830. #: apt-pkg/depcache.cc
  2831. msgid "Reading state information"
  2832. msgstr "Állapotinformációk olvasása"
  2833. #: apt-pkg/depcache.cc
  2834. #, c-format
  2835. msgid "Failed to open StateFile %s"
  2836. msgstr "%s állapotfájl megnyitása sikertelen"
  2837. #: apt-pkg/depcache.cc
  2838. #, c-format
  2839. msgid "Failed to write temporary StateFile %s"
  2840. msgstr "%s átmeneti állapotfájl írása sikertelen"
  2841. #: apt-pkg/edsp.cc
  2842. msgid "Send scenario to solver"
  2843. msgstr "A helyzet elküldése a solvernek"
  2844. #: apt-pkg/edsp.cc
  2845. msgid "Send request to solver"
  2846. msgstr "Kérés küldése a solvernek"
  2847. #: apt-pkg/edsp.cc
  2848. msgid "Prepare for receiving solution"
  2849. msgstr "Felkészülés megoldás fogadására"
  2850. #: apt-pkg/edsp.cc
  2851. msgid "External solver failed without a proper error message"
  2852. msgstr "A külső solver megfelelő hibaüzenet nélkül hibázott"
  2853. #: apt-pkg/edsp.cc
  2854. msgid "Execute external solver"
  2855. msgstr "Külső solver végrehajtása"
  2856. #: apt-pkg/indexcopy.cc
  2857. #, c-format
  2858. msgid "Wrote %i records.\n"
  2859. msgstr "%i rekord kiírva.\n"
  2860. #: apt-pkg/indexcopy.cc
  2861. #, c-format
  2862. msgid "Wrote %i records with %i missing files.\n"
  2863. msgstr "%i rekord kiírva, %i hiányzó fájllal.\n"
  2864. #: apt-pkg/indexcopy.cc
  2865. #, c-format
  2866. msgid "Wrote %i records with %i mismatched files\n"
  2867. msgstr "%i rekord kiírva %i eltérő fájllal\n"
  2868. #: apt-pkg/indexcopy.cc
  2869. #, c-format
  2870. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2871. msgstr "%i rekord kiírva %i hiányzó és %i eltérő fájllal\n"
  2872. #: apt-pkg/indexcopy.cc
  2873. #, c-format
  2874. msgid "Can't find authentication record for: %s"
  2875. msgstr "%s hitelesítési rekordja nem található"
  2876. #: apt-pkg/indexcopy.cc
  2877. #, c-format
  2878. msgid "Hash mismatch for: %s"
  2879. msgstr "%s ellenőrzőösszege nem megfelelő"
  2880. #: apt-pkg/init.cc
  2881. #, c-format
  2882. msgid "Packaging system '%s' is not supported"
  2883. msgstr "A(z) „%s” csomagrendszer nem támogatott"
  2884. #: apt-pkg/init.cc
  2885. msgid "Unable to determine a suitable packaging system type"
  2886. msgstr "A megfelelő csomagrendszertípus nem határozható meg"
  2887. #: apt-pkg/install-progress.cc
  2888. #, c-format
  2889. msgid "Progress: [%3i%%]"
  2890. msgstr ""
  2891. #: apt-pkg/install-progress.cc
  2892. msgid "Running dpkg"
  2893. msgstr "A dpkg futtatása"
  2894. #: apt-pkg/packagemanager.cc
  2895. #, c-format
  2896. msgid ""
  2897. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2898. "under APT::Immediate-Configure for details. (%d)"
  2899. msgstr ""
  2900. "Nem lehetett a(z) „%s” közvetlen beállítását végrehajtani. A részletekért "
  2901. "lásd a man 5 apt.conf oldalt az APT::Immediate-Configure címszó alatt. (%d)"
  2902. #: apt-pkg/packagemanager.cc
  2903. #, c-format
  2904. msgid "Could not configure '%s'. "
  2905. msgstr "A(z) „%s” beállítása sikertelen"
  2906. #: apt-pkg/packagemanager.cc
  2907. #, c-format
  2908. msgid ""
  2909. "This installation run will require temporarily removing the essential "
  2910. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2911. "you really want to do it, activate the APT::Force-LoopBreak option."
  2912. msgstr ""
  2913. "Ez a telepítési lépés átmenetileg megköveteli a(z) %s alapvető csomag "
  2914. "eltávolítását, ami ütközési/előfüggőségi hurkot okoz. Ez gyakran rossz, de "
  2915. "ha tényleg ezt akarja tenni, aktiválja az APT::Force-LoopBreak opciót."
  2916. #: apt-pkg/pkgcache.cc
  2917. msgid "Empty package cache"
  2918. msgstr "Üres csomaggyorsítótár"
  2919. #: apt-pkg/pkgcache.cc
  2920. msgid "The package cache file is corrupted"
  2921. msgstr "A csomaggyorsítótár fájl megsérült"
  2922. #: apt-pkg/pkgcache.cc
  2923. msgid "The package cache file is an incompatible version"
  2924. msgstr "A csomaggyorsítótár-fájl inkompatibilis verziójú"
  2925. #: apt-pkg/pkgcache.cc
  2926. #, c-format
  2927. msgid "This APT does not support the versioning system '%s'"
  2928. msgstr "Ez az APT nem támogatja a(z) „%s” verziórendszert"
  2929. #: apt-pkg/pkgcache.cc
  2930. #, fuzzy, c-format
  2931. msgid "The package cache was built for different architectures: %s vs %s"
  2932. msgstr "A csomaggyorsítótár egy másik architektúrához készült"
  2933. #: apt-pkg/pkgcache.cc
  2934. #, fuzzy
  2935. msgid "The package cache file is corrupted, it has the wrong hash"
  2936. msgstr "A csomaggyorsítótár-fájl sérült, túl kicsi"
  2937. #: apt-pkg/pkgcache.cc
  2938. msgid "Depends"
  2939. msgstr "Függ ettől"
  2940. #: apt-pkg/pkgcache.cc
  2941. msgid "PreDepends"
  2942. msgstr "Függ ettől (előfüggés)"
  2943. #: apt-pkg/pkgcache.cc
  2944. msgid "Suggests"
  2945. msgstr "Javasolja"
  2946. #: apt-pkg/pkgcache.cc
  2947. msgid "Recommends"
  2948. msgstr "Ajánlja"
  2949. #: apt-pkg/pkgcache.cc
  2950. msgid "Conflicts"
  2951. msgstr "Ütközik"
  2952. #: apt-pkg/pkgcache.cc
  2953. msgid "Replaces"
  2954. msgstr "Kicseréli"
  2955. #: apt-pkg/pkgcache.cc
  2956. msgid "Obsoletes"
  2957. msgstr "Elavulttá teszi"
  2958. #: apt-pkg/pkgcache.cc
  2959. msgid "Breaks"
  2960. msgstr "Töri"
  2961. #: apt-pkg/pkgcache.cc
  2962. msgid "Enhances"
  2963. msgstr "Bővíti"
  2964. #: apt-pkg/pkgcache.cc
  2965. msgid "required"
  2966. msgstr "szükséges"
  2967. #: apt-pkg/pkgcache.cc
  2968. msgid "important"
  2969. msgstr "fontos"
  2970. #: apt-pkg/pkgcache.cc
  2971. msgid "standard"
  2972. msgstr "szabványos"
  2973. #: apt-pkg/pkgcache.cc
  2974. msgid "optional"
  2975. msgstr "opcionális"
  2976. #: apt-pkg/pkgcache.cc
  2977. msgid "extra"
  2978. msgstr "extra"
  2979. #: apt-pkg/pkgcachegen.cc
  2980. msgid "Cache has an incompatible versioning system"
  2981. msgstr "A gyorsítótárnak inkompatibilis verziórendszere van"
  2982. #. TRANSLATOR: The first placeholder is a package name,
  2983. #. the other two should be copied verbatim as they include debug info
  2984. #: apt-pkg/pkgcachegen.cc
  2985. #, c-format
  2986. msgid "Error occurred while processing %s (%s%d)"
  2987. msgstr "Hiba történt a(z) %s feldolgozása során (%s%d)"
  2988. #: apt-pkg/pkgcachegen.cc
  2989. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2990. msgstr "Az APT által kezelhető csomagnevek száma túllépve."
  2991. #: apt-pkg/pkgcachegen.cc
  2992. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2993. msgstr "Az APT által kezelhető csomagverziók száma túllépve."
  2994. #: apt-pkg/pkgcachegen.cc
  2995. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2996. msgstr "Az APT által kezelhető csomagleírások száma túllépve."
  2997. #: apt-pkg/pkgcachegen.cc
  2998. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2999. msgstr "Az APT által kezelhető függőségek száma túllépve."
  3000. #: apt-pkg/pkgcachegen.cc
  3001. msgid "Reading package lists"
  3002. msgstr "Csomaglisták olvasása"
  3003. #: apt-pkg/pkgcachegen.cc
  3004. msgid "IO Error saving source cache"
  3005. msgstr "IO hiba a forrás-gyorsítótár mentésekor"
  3006. #: apt-pkg/pkgrecords.cc
  3007. #, c-format
  3008. msgid "Index file type '%s' is not supported"
  3009. msgstr "A(z) „%s” indexfájltípus nem támogatott"
  3010. #: apt-pkg/policy.cc
  3011. #, c-format
  3012. msgid ""
  3013. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  3014. "available in the sources"
  3015. msgstr ""
  3016. "A(z) „%s” érték érvénytelen az APT::Default-Release beállításhoz, mert nincs "
  3017. "ilyen kiadás a forrásokban"
  3018. #: apt-pkg/policy.cc
  3019. #, c-format
  3020. msgid "Invalid record in the preferences file %s, no Package header"
  3021. msgstr "Érvénytelen rekord a(z) %s beállításfájlban, nincs Package fejléc"
  3022. #: apt-pkg/policy.cc
  3023. #, c-format
  3024. msgid "Did not understand pin type %s"
  3025. msgstr "A(z) %s rögzítéstípus nem értelmezhető"
  3026. #: apt-pkg/policy.cc
  3027. #, c-format
  3028. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  3029. msgstr ""
  3030. #: apt-pkg/policy.cc
  3031. msgid "No priority (or zero) specified for pin"
  3032. msgstr "Nincs prioritás (vagy nulla) megadva a rögzítéshez"
  3033. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  3034. #: apt-pkg/sourcelist.cc
  3035. #, fuzzy, c-format
  3036. msgid "Malformed entry %u in %s file %s (%s)"
  3037. msgstr "%s felülbírálás deformált a(z) %llu. sorában #1"
  3038. #: apt-pkg/sourcelist.cc
  3039. #, c-format
  3040. msgid "Opening %s"
  3041. msgstr "%s megnyitása"
  3042. #: apt-pkg/sourcelist.cc
  3043. #, c-format
  3044. msgid "Malformed line %u in source list %s (type)"
  3045. msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)"
  3046. #: apt-pkg/sourcelist.cc
  3047. #, c-format
  3048. msgid "Type '%s' is not known on line %u in source list %s"
  3049. msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában"
  3050. #: apt-pkg/sourcelist.cc
  3051. #, fuzzy, c-format
  3052. msgid "Malformed stanza %u in source list %s (type)"
  3053. msgstr "A(z) %u. sor hibás a(z) %s forráslistában (típus)"
  3054. #: apt-pkg/sourcelist.cc
  3055. #, fuzzy, c-format
  3056. msgid "Type '%s' is not known on stanza %u in source list %s"
  3057. msgstr "„%1$s” típus nem ismert a(z) %3$s forráslista %2$u. sorában"
  3058. #: apt-pkg/sourcelist.cc
  3059. #, c-format
  3060. msgid "Unsupported file %s given on commandline"
  3061. msgstr ""
  3062. #: apt-pkg/srcrecords.cc
  3063. msgid "You must put some 'source' URIs in your sources.list"
  3064. msgstr "Néhány „source” URI-t el kell helyezni a sources.list fájlban"
  3065. #: apt-pkg/tagfile.cc
  3066. #, c-format
  3067. msgid "Cannot convert %s to integer: out of range"
  3068. msgstr ""
  3069. #: apt-pkg/update.cc
  3070. #, fuzzy, c-format
  3071. msgid "Failed to fetch %s %s"
  3072. msgstr "Sikertelen letöltés: %s %s\n"
  3073. #: apt-pkg/update.cc
  3074. msgid ""
  3075. "Some index files failed to download. They have been ignored, or old ones "
  3076. "used instead."
  3077. msgstr ""
  3078. "Néhány indexfájlt nem sikerült letölteni. Figyelmen kívül lettek hagyva, "
  3079. "vagy régebbiek lettek felhasználva."
  3080. #: apt-pkg/upgrade.cc
  3081. msgid "Calculating upgrade"
  3082. msgstr "Frissítés kiszámítása"
  3083. #~ msgid "Problem unlinking %s"
  3084. #~ msgstr "Hiba %s törlésekor"
  3085. #~ msgid "Failed to unlink %s"
  3086. #~ msgstr "%s törlése sikertelen"
  3087. #~ msgid ""
  3088. #~ "Usage: apt-cache [options] command\n"
  3089. #~ " apt-cache [options] show pkg1 [pkg2 ...]\n"
  3090. #~ "\n"
  3091. #~ "apt-cache is a low-level tool used to query information\n"
  3092. #~ "from APT's binary cache files\n"
  3093. #~ msgstr ""
  3094. #~ "Használat: apt-cache [kapcsolók] parancs\n"
  3095. #~ " apt-cache [kapcsolók] show pkg1 [pkg2 ...]\n"
  3096. #~ "\n"
  3097. #~ "Az apt-cache egy alacsony szintű eszköz információk lekérdezésére\n"
  3098. #~ "az APT bináris gyorsítótár-fájljaiból\n"
  3099. #~ msgid "Commands:"
  3100. #~ msgstr "Parancsok:"
  3101. #~ msgid ""
  3102. #~ "Options:\n"
  3103. #~ " -h This help text.\n"
  3104. #~ " -p=? The package cache.\n"
  3105. #~ " -s=? The source cache.\n"
  3106. #~ " -q Disable progress indicator.\n"
  3107. #~ " -i Show only important deps for the unmet command.\n"
  3108. #~ " -c=? Read this configuration file\n"
  3109. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3110. #~ "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  3111. #~ msgstr ""
  3112. #~ "Kapcsolók:\n"
  3113. #~ " -h Ez a súgó szöveg. \n"
  3114. #~ " -p=? A csomag-gyorsítótár.\n"
  3115. #~ " -s=? A forrás-gyorsítótár.\n"
  3116. #~ " -q Letiltja az állapotjelzőt.\n"
  3117. #~ " -i Csak a fontos függőségeket jeleníti meg az unmet parancsnál.\n"
  3118. #~ " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  3119. #~ " -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/"
  3120. #~ "tmp\n"
  3121. #~ "Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további "
  3122. #~ "információkért.\n"
  3123. #, fuzzy
  3124. #~ msgid ""
  3125. #~ "Options:\n"
  3126. #~ " -h This help text\n"
  3127. #~ " -d CD-ROM mount point\n"
  3128. #~ " -r Rename a recognized CD-ROM\n"
  3129. #~ " -m No mounting\n"
  3130. #~ " -f Fast mode, don't check package files\n"
  3131. #~ " -a Thorough scan mode\n"
  3132. #~ " --no-auto-detect Do not try to auto detect drive and mount point\n"
  3133. #~ " -c=? Read this configuration file\n"
  3134. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3135. #~ "See fstab(5)\n"
  3136. #~ msgstr ""
  3137. #~ "Kapcsolók:\n"
  3138. #~ " -h Ez a súgó szöveg.\n"
  3139. #~ " -q Naplózható kimenet - nincs folyamatjelző\n"
  3140. #~ " -qq Nincs kimenet, kivéve a hibákat\n"
  3141. #~ " -s Szimulációs mód. Csak kiírja, mi történne.\n"
  3142. #~ " -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n"
  3143. #~ " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  3144. #~ " -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/"
  3145. #~ "tmp\n"
  3146. #~ "Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n"
  3147. #~ "információkért."
  3148. #~ msgid ""
  3149. #~ "Options:\n"
  3150. #~ " -h This help text.\n"
  3151. #~ " -c=? Read this configuration file\n"
  3152. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3153. #~ msgstr ""
  3154. #~ "Kapcsolók:\n"
  3155. #~ " -h Ez a súgó szöveg\n"
  3156. #~ " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  3157. #~ " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/"
  3158. #~ "tmp\n"
  3159. #~ msgid ""
  3160. #~ "Options:\n"
  3161. #~ " -h This help text.\n"
  3162. #~ " -q Loggable output - no progress indicator\n"
  3163. #~ " -qq No output except for errors\n"
  3164. #~ " -s No-act. Just prints what would be done.\n"
  3165. #~ " -f read/write auto/manual marking in the given file\n"
  3166. #~ " -c=? Read this configuration file\n"
  3167. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3168. #~ "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  3169. #~ msgstr ""
  3170. #~ "Kapcsolók:\n"
  3171. #~ " -h Ez a súgó szöveg.\n"
  3172. #~ " -q Naplózható kimenet - nincs folyamatjelző\n"
  3173. #~ " -qq Nincs kimenet, kivéve a hibákat\n"
  3174. #~ " -s Szimulációs mód. Csak kiírja, mi történne.\n"
  3175. #~ " -f auto/kézi megjelölés olvasása/írása az adott fájlból/fájlba\n"
  3176. #~ " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  3177. #~ " -o=? Beállít egy tetszőleges konfigurációs opciót, pl. -o dir::cache=/"
  3178. #~ "tmp\n"
  3179. #~ "Lásd még az apt-mark(8) és apt.conf(5) kézikönyvlapokat további\n"
  3180. #~ "információkért."
  3181. #~ msgid ""
  3182. #~ "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3183. #~ "\n"
  3184. #~ "apt-sortpkgs is a simple tool to sort package files. The -s option is "
  3185. #~ "used\n"
  3186. #~ "to indicate what kind of file it is.\n"
  3187. #~ "\n"
  3188. #~ "Options:\n"
  3189. #~ " -h This help text\n"
  3190. #~ " -s Use source file sorting\n"
  3191. #~ " -c=? Read this configuration file\n"
  3192. #~ " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3193. #~ msgstr ""
  3194. #~ "Használat: apt-sortpkgs [kapcsolók] fájl1 [fájl2 ...]\n"
  3195. #~ "\n"
  3196. #~ "Az apt-sortpkgs egy egyszerű eszköz csomagfájlok rendezésére. A -s "
  3197. #~ "kapcsolót\n"
  3198. #~ "lehet használni annak jelzésére hogy ez milyen típusú fájl.\n"
  3199. #~ "\n"
  3200. #~ "Kapcsolók:\n"
  3201. #~ " -h Ez a súgó szöveg\n"
  3202. #~ " -s Forrásfájlrendezést használ\n"
  3203. #~ " -c=? Ezt a konfigurációs fájlt olvassa be\n"
  3204. #~ " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/"
  3205. #~ "tmp\n"
  3206. #~ msgid "Child process failed"
  3207. #~ msgstr "Hiba a gyermekfolyamatnál"
  3208. #, fuzzy
  3209. #~ msgid "Must specifc at least one srv record"
  3210. #~ msgstr ""
  3211. #~ "Legalább egy csomagot meg kell adni, amelynek a forrását le kell tölteni"
  3212. #~ msgid "Failed to create pipes"
  3213. #~ msgstr "Nem sikerült adatcsatornákat létrehozni"
  3214. #~ msgid "Failed to exec gzip "
  3215. #~ msgstr "Nem sikerült a gzipet futtatni "
  3216. #~ msgid "%s %s for %s compiled on %s %s\n"
  3217. #~ msgstr "%s %s erre: %s lefordítva ekkor: %s %s\n"
  3218. #~ msgid "Failed to create FILE*"
  3219. #~ msgstr "Nem sikerült FILE*-ot létrehozni"
  3220. #, fuzzy
  3221. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3222. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)"
  3223. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3224. #~ msgstr ""
  3225. #~ "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] "
  3226. #~ "feldolgozhatatlan)"
  3227. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3228. #~ msgstr ""
  3229. #~ "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában (az [option] "
  3230. #~ "túl rövid)"
  3231. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3232. #~ msgstr ""
  3233. #~ "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem "
  3234. #~ "érvényes hozzárendelés)"
  3235. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3236. #~ msgstr ""
  3237. #~ "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] nem "
  3238. #~ "tartalmaz kulcsot)"
  3239. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3240. #~ msgstr ""
  3241. #~ "Helytelenül formázott a(z) %lu. sor a(z) %s forráslistában ([%s] %s "
  3242. #~ "kulcsnak nincs értéke)"
  3243. #~ msgid "Malformed line %lu in source list %s (URI)"
  3244. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI)"
  3245. #~ msgid "Malformed line %lu in source list %s (dist)"
  3246. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist)"
  3247. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3248. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (URI-feldolgozás)"
  3249. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3250. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (Abszolút dist)"
  3251. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3252. #~ msgstr "A(z) %lu. sor hibás a(z) %s forráslistában (dist feldolgozás)"
  3253. #~ msgid "Package %s %s was not found while processing file dependencies"
  3254. #~ msgstr ""
  3255. #~ "A(z) %s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása "
  3256. #~ "közben"
  3257. #~ msgid "Couldn't stat source package list %s"
  3258. #~ msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni"
  3259. # FIXME
  3260. #~ msgid "Collecting File Provides"
  3261. #~ msgstr "„Biztosítja” kapcsolatok összegyűjtése"
  3262. #, fuzzy
  3263. #~ msgid "Does not start with a cleartext signature"
  3264. #~ msgstr "A(z) %s fájl nem digitálisan aláírt üzenettel kezdődik"
  3265. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3266. #~ msgstr "Nem található a(z) „%s” ellenőrzőösszege a Release fájlban"
  3267. #~ msgid "Vendor block %s contains no fingerprint"
  3268. #~ msgstr "A(z) %s terjesztőblokk nem tartalmaz ujjlenyomatot"
  3269. #~ msgid "Total dependency version space: "
  3270. #~ msgstr "Függőségiverzió-terület összesen: "
  3271. #~ msgid "You don't have enough free space in %s"
  3272. #~ msgstr "Nincs elég szabad hely itt: %s"
  3273. #~ msgid "Done"
  3274. #~ msgstr "Kész"
  3275. #~ msgid "No keyring installed in %s."
  3276. #~ msgstr "Nincs kulcstartó telepítve ide: %s."
  3277. #, fuzzy
  3278. #~ msgid "Internal error, Upgrade broke stuff"
  3279. #~ msgstr "Belső hiba, az AllUpgrade megsértett valamit"
  3280. #~ msgid "%s not a valid DEB package."
  3281. #~ msgstr "%s nem egy érvényes DEB csomag."
  3282. #~ msgid ""
  3283. #~ "Using CD-ROM mount point %s\n"
  3284. #~ "Mounting CD-ROM\n"
  3285. #~ msgstr ""
  3286. #~ "%s CD-ROM csatolási pont használata\n"
  3287. #~ "CD-ROM csatolása\n"
  3288. #~ msgid ""
  3289. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3290. #~ "seems to be corrupt."
  3291. #~ msgstr ""
  3292. #~ "%s nem foltozható mmappel és fájlművelet használatával - a folt sérültnek "
  3293. #~ "tűnik."
  3294. #~ msgid ""
  3295. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3296. #~ "seems to be corrupt."
  3297. #~ msgstr ""
  3298. #~ "%s nem foltozható mmappel (nem mmap specifikus hiba) - a folt sérültnek "
  3299. #~ "tűnik."
  3300. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3301. #~ msgstr ""
  3302. #~ "A(z) „%2$s” csomag el nem érhető „%1$s” cél kiadásának figyelmen kívül "
  3303. #~ "hagyása"
  3304. #~ msgid "Downloading %s %s"
  3305. #~ msgstr "Letöltés: %s %s"
  3306. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3307. #~ msgstr "Érvénytelen DEB archívum, nincs „%s”, „%s” vagy „%s” tagja"
  3308. #~ msgid "MD5Sum mismatch"
  3309. #~ msgstr "Az MD5Sum nem megfelelő"
  3310. #~ msgid ""
  3311. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3312. #~ "need to manually fix this package."
  3313. #~ msgstr ""
  3314. #~ "Egy fájl nem található a(z) %s csomaghoz. Ez azt jelentheti, hogy kézzel "
  3315. #~ "kell kijavítani a csomagot."
  3316. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3317. #~ msgstr ""
  3318. #~ "Nem írható a napló, sikertelen openpty() (a /dev/pts nincs csatolva?)\n"
  3319. #~ msgid "Skipping nonexistent file %s"
  3320. #~ msgstr "A nem létező %s fájl kihagyása"
  3321. #~ msgid "Failed to remove %s"
  3322. #~ msgstr "%s eltávolítása sikertelen"
  3323. #~ msgid "Unable to create %s"
  3324. #~ msgstr "%s létrehozása sikertelen"
  3325. #~ msgid "Failed to stat %sinfo"
  3326. #~ msgstr "%sinfo nem érhető el"
  3327. #~ msgid "The info and temp directories need to be on the same filesystem"
  3328. #~ msgstr "Az info és temp könyvtáraknak azonos fájlrendszeren kell lenniük"
  3329. #~ msgid "Failed to change to the admin dir %sinfo"
  3330. #~ msgstr "Nem sikerült a(z) %sinfo adminisztrációs könyvtárba váltani"
  3331. #~ msgid "Internal error getting a package name"
  3332. #~ msgstr "Belső hiba a csomagnév lekérésekor"
  3333. #~ msgid "Reading file listing"
  3334. #~ msgstr "Fájllista olvasása"
  3335. #~ msgid ""
  3336. #~ "Failed to open the list file '%sinfo/%s'. If you cannot restore this file "
  3337. #~ "then make it empty and immediately re-install the same version of the "
  3338. #~ "package!"
  3339. #~ msgstr ""
  3340. #~ "Nem sikerült a(z) „%sinfo/%s” listafájlt megnyitni. Ha nem lehet "
  3341. #~ "helyreállítani ezt a fájlt, akkor ürítse ki, és azonnal telepítse újra a "
  3342. #~ "csomag ugyanezen verzióját!"
  3343. #~ msgid "Failed reading the list file %sinfo/%s"
  3344. #~ msgstr "Nem sikerült a(z) %sinfo/%s listafájlt olvasni"
  3345. #~ msgid "Internal error getting a node"
  3346. #~ msgstr "Belső hiba a csomópont lekérésekor"
  3347. #~ msgid "Failed to open the diversions file %sdiversions"
  3348. #~ msgstr "Nem sikerült a(z) %sdiversions eltérítő fájlt megnyitni"
  3349. #~ msgid "The diversion file is corrupted"
  3350. #~ msgstr "Az eltérítő fájl hibás"
  3351. #~ msgid "Invalid line in the diversion file: %s"
  3352. #~ msgstr "Érvénytelen sor az eltérítő fájlban: %s"
  3353. #~ msgid "Internal error adding a diversion"
  3354. #~ msgstr "Belső hiba egy eltérítés hozzáadásakor"
  3355. #~ msgid "The pkg cache must be initialized first"
  3356. #~ msgstr "A csomaggyorsítótárat kell előbb előkészíteni"
  3357. #~ msgid "Failed to find a Package: header, offset %lu"
  3358. #~ msgstr "Nem található a csomagfejléc, eltolás: %lu"
  3359. #~ msgid "Bad ConfFile section in the status file. Offset %lu"
  3360. #~ msgstr "Hibás ConfFile szakasz az állapotfájlban. Eltolás: %lu"
  3361. #~ msgid "Error parsing MD5. Offset %lu"
  3362. #~ msgstr "MD5 értelmezési hiba. Eltolás: %lu"
  3363. #~ msgid "Couldn't change to %s"
  3364. #~ msgstr "Nem lehet váltani ebbe: %s"
  3365. #~ msgid "Failed to locate a valid control file"
  3366. #~ msgstr "Nem található érvényes control fájl"
  3367. #~ msgid "Couldn't open pipe for %s"
  3368. #~ msgstr "Nem lehet adatcsatornát nyitni ehhez: %s"
  3369. #~ msgid "Read error from %s process"
  3370. #~ msgstr "Olvasási hiba %s folyamattól"
  3371. #~ msgid "Got a single header line over %u chars"
  3372. #~ msgstr "Egyetlen fejlécsor érkezett, amely több, mint %u karakter"
  3373. #~ msgid "Note: This is done automatic and on purpose by dpkg."
  3374. #~ msgstr "Megjegyzés: ezt a dpkg automatikusan és szándékosan hajtja végre."
  3375. #~ msgid "Malformed override %s line %lu #1"
  3376. #~ msgstr "Deformált felülbírálás %s %lu. sorában #1"
  3377. #~ msgid "Malformed override %s line %lu #2"
  3378. #~ msgstr "Deformált felülbírálás %s %lu. sorában #2"
  3379. #~ msgid "Malformed override %s line %lu #3"
  3380. #~ msgstr "Deformált felülbírálás %s %lu. sorában #3"
  3381. #~ msgid "decompressor"
  3382. #~ msgstr "kicsomagoló"
  3383. #~ msgid "read, still have %lu to read but none left"
  3384. #~ msgstr "olvasás, még kellene %lu, de már az összes elfogyott"
  3385. #~ msgid "write, still have %lu to write but couldn't"
  3386. #~ msgstr "írás, még kiírandó %lu, de ez nem lehetséges"
  3387. #~ msgid ""
  3388. #~ "Could not perform immediate configuration on already unpacked '%s'. "
  3389. #~ "Please see man 5 apt.conf under APT::Immediate-Configure for details."
  3390. #~ msgstr ""
  3391. #~ "Nem lehetett a már kicsomagolt „%s” közvetlen beállítását végrehajtani. A "
  3392. #~ "részletekért lásd a man 5 apt.conf oldalt az APT::Immediate-Configure "
  3393. #~ "címszó alatt."
  3394. #~ msgid "Error occurred while processing %s (NewPackage)"
  3395. #~ msgstr "Hiba történt %s feldolgozásakor (NewPackage)"
  3396. #~ msgid "Error occurred while processing %s (UsePackage1)"
  3397. #~ msgstr "Hiba történt %s feldolgozásakor (UsePackage1)"
  3398. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  3399. #~ msgstr "Hiba történt %s feldolgozásakor (NewFileDesc1)"
  3400. #~ msgid "Error occurred while processing %s (UsePackage2)"
  3401. #~ msgstr "Hiba történt %s feldolgozásakor (UsePackage2)"
  3402. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  3403. #~ msgstr "Hiba történt %s feldolgozásakor (NewFileVer1)"
  3404. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  3405. #~ msgstr "Hiba történt a(z) %s (NewVersion%d) feldolgozása során"
  3406. #~ msgid "Error occurred while processing %s (UsePackage3)"
  3407. #~ msgstr "Hiba történt %s feldolgozásakor (UsePackage3)"
  3408. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  3409. #~ msgstr "Hiba történt %s feldolgozásakor (NewFileDesc2)"
  3410. #~ msgid "Error occurred while processing %s (FindPkg)"
  3411. #~ msgstr "Hiba történt %s feldolgozásakor (FindPkg)"
  3412. #~ msgid "Error occurred while processing %s (CollectFileProvides)"
  3413. #~ msgstr "Hiba történt %s feldolgozásakor (CollectFileProvides)"