cura.po 234 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 5.1\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2023-01-31 16:46+0100\n"
  11. "PO-Revision-Date: 2020-03-24 09:36+0100\n"
  12. "Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
  13. "Language-Team: ATI-SZOFT\n"
  14. "Language: hu_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-Generator: Poedit 2.2.4\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Sikertelen bejelentkezés"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "Új hely keresése az objektumokhoz"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "Hely keresés"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Nincs elég hely az összes objektum építési térfogatához"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Nem találok helyet"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Nem sikerült archívumot létrehozni a felhasználói adatkönyvtárból: {}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "Biztonsági mentés"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "Megpróbált visszaállítani egy Cura biztonsági másolatot anélkül, hogy megfelelő adatok vagy meta adatok lennének."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "Egy olyan Cura biztonsági mentést próbált visszaállítani, amelyiknek a verziója magasabb a jelenlegitől."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr ""
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  65. msgstr "Az nyomtatási szint csökken a \"Nyomtatási sorrend\" beállítása miatt, ez megakadályozza, hogy a mechanika beleütközzön a nyomtatott tárgyba."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "Építési térfogat"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "A Cura nem tud elindulni"
  74. #: cura/CrashHandler.py:113
  75. #, fuzzy
  76. msgctxt "@label crash message"
  77. msgid ""
  78. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  79. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  80. " <p>Backups can be found in the configuration folder.</p>\n"
  81. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  82. " "
  83. msgstr ""
  84. "<p><b>Hoppá, az Ultimaker Cura olyan dolgokkal találkozott, amelyek hibásnak tűnnek.</p></b>\n"
  85. " <p>Az indítás során helyrehozhatatlan hibát tapasztaltunkEzt valószínűleg néhány helytelen konfigurációs fájl okozta. Javasoljuk, hogy biztonsági másolatból állítsa vissza a konfigurációt.</p>\n"
  86. " <p>A biztonsági mentések a konfigurációs mappában találhatók.</p>\n"
  87. " <p>Kérjük, küldje el nekünk ezt a hibajelentést a probléma megoldásához.</p>\n"
  88. " "
  89. #: cura/CrashHandler.py:122
  90. msgctxt "@action:button"
  91. msgid "Send crash report to UltiMaker"
  92. msgstr "Hibajelentés küldése az UltiMaker -nek"
  93. #: cura/CrashHandler.py:125
  94. msgctxt "@action:button"
  95. msgid "Show detailed crash report"
  96. msgstr "Hibajelentés részletei"
  97. #: cura/CrashHandler.py:129
  98. msgctxt "@action:button"
  99. msgid "Show configuration folder"
  100. msgstr "Konfigurációs mappa megnyitása"
  101. #: cura/CrashHandler.py:140
  102. msgctxt "@action:button"
  103. msgid "Backup and Reset Configuration"
  104. msgstr "Konfiguráció biztonsági mentés és visszaállítás"
  105. #: cura/CrashHandler.py:171
  106. msgctxt "@title:window"
  107. msgid "Crash Report"
  108. msgstr "Összeomlás jelentés"
  109. #: cura/CrashHandler.py:190
  110. msgctxt "@label crash message"
  111. msgid ""
  112. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  113. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  114. " "
  115. msgstr ""
  116. "<p><b>Végzetes hiba történt Cura-ban. Kérjük, küld el nekünk az összeomlás jelentését, hogy javítani tudjuk a hibát.</p></b>\n"
  117. " <p>Kérjük használd a \"Jelentés küldés\" gombot a hibajelentés postázásához, így az automatikusan a szerverünkre kerül.</p>\n"
  118. " "
  119. #: cura/CrashHandler.py:198
  120. msgctxt "@title:groupbox"
  121. msgid "System information"
  122. msgstr "Rendszer információ"
  123. #: cura/CrashHandler.py:207
  124. msgctxt "@label unknown version of Cura"
  125. msgid "Unknown"
  126. msgstr "Ismeretlen"
  127. #: cura/CrashHandler.py:228
  128. msgctxt "@label Cura version number"
  129. msgid "Cura version"
  130. msgstr "Cura verzió"
  131. #: cura/CrashHandler.py:229
  132. msgctxt "@label"
  133. msgid "Cura language"
  134. msgstr ""
  135. #: cura/CrashHandler.py:230
  136. msgctxt "@label"
  137. msgid "OS language"
  138. msgstr ""
  139. #: cura/CrashHandler.py:231
  140. msgctxt "@label Type of platform"
  141. msgid "Platform"
  142. msgstr "Felület"
  143. #: cura/CrashHandler.py:232
  144. msgctxt "@label"
  145. msgid "Qt version"
  146. msgstr "Qt verzió"
  147. #: cura/CrashHandler.py:233
  148. msgctxt "@label"
  149. msgid "PyQt version"
  150. msgstr "PyQt verzió"
  151. #: cura/CrashHandler.py:234
  152. msgctxt "@label OpenGL version"
  153. msgid "OpenGL"
  154. msgstr "OpenGL"
  155. #: cura/CrashHandler.py:264
  156. msgctxt "@label"
  157. msgid "Not yet initialized"
  158. msgstr ""
  159. #: cura/CrashHandler.py:267
  160. #, python-brace-format
  161. msgctxt "@label OpenGL version"
  162. msgid "<li>OpenGL Version: {version}</li>"
  163. msgstr "<li>OpenGL Verzió: {version}</li>"
  164. #: cura/CrashHandler.py:268
  165. #, python-brace-format
  166. msgctxt "@label OpenGL vendor"
  167. msgid "<li>OpenGL Vendor: {vendor}</li>"
  168. msgstr "<li>OpenGL terjesztő: {vendor}</li>"
  169. #: cura/CrashHandler.py:269
  170. #, python-brace-format
  171. msgctxt "@label OpenGL renderer"
  172. msgid "<li>OpenGL Renderer: {renderer}</li>"
  173. msgstr "<li>OpenGL Renderer: {renderer}</li>"
  174. #: cura/CrashHandler.py:304
  175. msgctxt "@title:groupbox"
  176. msgid "Error traceback"
  177. msgstr "Hibakövetés"
  178. #: cura/CrashHandler.py:390
  179. msgctxt "@title:groupbox"
  180. msgid "Logs"
  181. msgstr "Naplók"
  182. #: cura/CrashHandler.py:418
  183. msgctxt "@action:button"
  184. msgid "Send report"
  185. msgstr "Jelentés küldés"
  186. #: cura/CuraApplication.py:540
  187. msgctxt "@info:progress"
  188. msgid "Loading machines..."
  189. msgstr "Gépek betöltése ..."
  190. #: cura/CuraApplication.py:547
  191. msgctxt "@info:progress"
  192. msgid "Setting up preferences..."
  193. msgstr ""
  194. #: cura/CuraApplication.py:692
  195. msgctxt "@info:progress"
  196. msgid "Initializing Active Machine..."
  197. msgstr ""
  198. #: cura/CuraApplication.py:839
  199. msgctxt "@info:progress"
  200. msgid "Initializing machine manager..."
  201. msgstr ""
  202. #: cura/CuraApplication.py:853
  203. msgctxt "@info:progress"
  204. msgid "Initializing build volume..."
  205. msgstr ""
  206. #: cura/CuraApplication.py:921
  207. msgctxt "@info:progress"
  208. msgid "Setting up scene..."
  209. msgstr "Felület beállítása..."
  210. #: cura/CuraApplication.py:957
  211. msgctxt "@info:progress"
  212. msgid "Loading interface..."
  213. msgstr "Interfészek betöltése..."
  214. #: cura/CuraApplication.py:962
  215. msgctxt "@info:progress"
  216. msgid "Initializing engine..."
  217. msgstr ""
  218. #: cura/CuraApplication.py:1290
  219. #, python-format
  220. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  221. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  222. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  223. #: cura/CuraApplication.py:1816
  224. #, python-brace-format
  225. msgctxt "@info:status"
  226. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  227. msgstr "Egyszerre csak egy G-kód fájlt lehet betölteni. Az importálás kihagyva {0}"
  228. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  229. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  230. msgctxt "@info:title"
  231. msgid "Warning"
  232. msgstr "Figyelem"
  233. #: cura/CuraApplication.py:1828
  234. #, python-brace-format
  235. msgctxt "@info:status"
  236. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  237. msgstr "Nem nyitható meg más fájl, ha a G-kód betöltődik. Az importálás kihagyva {0}"
  238. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  239. #: cura/Settings/CuraContainerRegistry.py:166
  240. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  241. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  242. msgctxt "@info:title"
  243. msgid "Error"
  244. msgstr "Hiba"
  245. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  246. msgctxt "@label"
  247. msgid "Unknown"
  248. msgstr "Ismeretlen"
  249. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  250. msgctxt "@label"
  251. msgid "The printer(s) below cannot be connected because they are part of a group"
  252. msgstr "Az alábbi nyomtató (k) nem csatlakoztathatók, mert egy csoporthoz tartoznak"
  253. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  254. msgctxt "@label"
  255. msgid "Available networked printers"
  256. msgstr "Elérhető hálózati nyomtatók"
  257. #: cura/Machines/Models/ExtrudersModel.py:219
  258. msgctxt "@menuitem"
  259. msgid "Not overridden"
  260. msgstr "Nincs felülírva"
  261. #: cura/Machines/Models/GlobalStacksModel.py:160
  262. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  263. msgctxt "@label"
  264. msgid "Connected printers"
  265. msgstr "Csatlakoztatott nyomtatók"
  266. #: cura/Machines/Models/GlobalStacksModel.py:160
  267. msgctxt "@label"
  268. msgid "Preset printers"
  269. msgstr "Előre beállított nyomtatók"
  270. #: cura/Machines/Models/GlobalStacksModel.py:165
  271. #, python-brace-format
  272. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  273. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  274. msgstr ""
  275. #: cura/Machines/Models/IntentCategoryModel.py:42
  276. #: cura/Machines/Models/IntentSelectionModel.py:61
  277. #: cura/Machines/Models/IntentTranslations.py:11
  278. #: cura/Machines/Models/QualityManagementModel.py:347
  279. msgctxt "@label"
  280. msgid "Default"
  281. msgstr ""
  282. #: cura/Machines/Models/IntentCategoryModel.py:45
  283. #: cura/Machines/Models/IntentSelectionModel.py:65
  284. #: cura/Machines/Models/IntentTranslations.py:14
  285. msgctxt "@label"
  286. msgid "Visual"
  287. msgstr ""
  288. #: cura/Machines/Models/IntentCategoryModel.py:46
  289. #: cura/Machines/Models/IntentSelectionModel.py:66
  290. #: cura/Machines/Models/IntentTranslations.py:15
  291. msgctxt "@text"
  292. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  293. msgstr ""
  294. #: cura/Machines/Models/IntentCategoryModel.py:49
  295. #: cura/Machines/Models/IntentSelectionModel.py:70
  296. #: cura/Machines/Models/IntentTranslations.py:18
  297. msgctxt "@label"
  298. msgid "Engineering"
  299. msgstr ""
  300. #: cura/Machines/Models/IntentCategoryModel.py:50
  301. #: cura/Machines/Models/IntentSelectionModel.py:71
  302. #: cura/Machines/Models/IntentTranslations.py:19
  303. msgctxt "@text"
  304. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  305. msgstr ""
  306. #: cura/Machines/Models/IntentCategoryModel.py:53
  307. #: cura/Machines/Models/IntentSelectionModel.py:75
  308. #: cura/Machines/Models/IntentTranslations.py:22
  309. msgctxt "@label"
  310. msgid "Draft"
  311. msgstr ""
  312. #: cura/Machines/Models/IntentCategoryModel.py:54
  313. #: cura/Machines/Models/IntentSelectionModel.py:76
  314. #: cura/Machines/Models/IntentTranslations.py:23
  315. msgctxt "@text"
  316. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  317. msgstr ""
  318. #: cura/Machines/Models/MaterialManagementModel.py:232
  319. msgctxt "@label"
  320. msgid "Custom Material"
  321. msgstr "Egyedi anyag"
  322. #: cura/Machines/Models/MaterialManagementModel.py:233
  323. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  324. msgctxt "@label"
  325. msgid "Custom"
  326. msgstr "Egyedi"
  327. #: cura/Machines/Models/QualityManagementModel.py:400
  328. msgctxt "@label"
  329. msgid "Custom profiles"
  330. msgstr "Egyéni profil"
  331. #: cura/Machines/Models/QualityManagementModel.py:435
  332. #, python-brace-format
  333. msgctxt "@item:inlistbox"
  334. msgid "All Supported Types ({0})"
  335. msgstr "Összes támasz típus ({0})"
  336. #: cura/Machines/Models/QualityManagementModel.py:436
  337. msgctxt "@item:inlistbox"
  338. msgid "All Files (*)"
  339. msgstr "Minden fájl (*)"
  340. #: cura/Machines/Models/QualitySettingsModel.py:182
  341. msgctxt "@info:status"
  342. msgid "Calculated"
  343. msgstr "Számított"
  344. #: cura/MultiplyObjectsJob.py:30
  345. msgctxt "@info:status"
  346. msgid "Multiplying and placing objects"
  347. msgstr "Tárgyak többszörözése és elhelyezése"
  348. #: cura/MultiplyObjectsJob.py:32
  349. msgctxt "@info:title"
  350. msgid "Placing Objects"
  351. msgstr "Tárgyak elhelyezése"
  352. #: cura/MultiplyObjectsJob.py:100
  353. msgctxt "@info:title"
  354. msgid "Placing Object"
  355. msgstr "Tárgy elhelyezése"
  356. #: cura/OAuth2/AuthorizationHelpers.py:89
  357. msgctxt "@message"
  358. msgid "Could not read response."
  359. msgstr "Nincs olvasható válasz."
  360. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  361. msgctxt "@message"
  362. msgid "The provided state is not correct."
  363. msgstr ""
  364. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  365. msgctxt "@message"
  366. msgid "Timeout when authenticating with the account server."
  367. msgstr ""
  368. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  369. msgctxt "@message"
  370. msgid "Please give the required permissions when authorizing this application."
  371. msgstr "Kérjük, adja meg a szükséges jogosultságokat az alkalmazás engedélyezéséhez."
  372. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  373. msgctxt "@message"
  374. msgid "Something unexpected happened when trying to log in, please try again."
  375. msgstr "Valami váratlan esemény történt a bejelentkezéskor, próbálkozzon újra."
  376. #: cura/OAuth2/AuthorizationService.py:216
  377. msgctxt "@info"
  378. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  379. msgstr ""
  380. #: cura/OAuth2/AuthorizationService.py:277
  381. msgctxt "@info"
  382. msgid "Unable to reach the UltiMaker account server."
  383. msgstr "Az UltiMaker fiókkiszolgáló elérhetetlen."
  384. #: cura/OAuth2/AuthorizationService.py:278
  385. msgctxt "@info:title"
  386. msgid "Log-in failed"
  387. msgstr ""
  388. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  389. msgctxt "@text:error"
  390. msgid "Failed to create archive of materials to sync with printers."
  391. msgstr ""
  392. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  393. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  394. msgctxt "@text:error"
  395. msgid "Failed to load the archive of materials to sync it with printers."
  396. msgstr ""
  397. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  398. msgctxt "@text:error"
  399. msgid "The response from Digital Factory appears to be corrupted."
  400. msgstr ""
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  402. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  403. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  404. msgctxt "@text:error"
  405. msgid "The response from Digital Factory is missing important information."
  406. msgstr ""
  407. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  408. msgctxt "@text:error"
  409. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  410. msgstr ""
  411. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  412. msgctxt "@text:error"
  413. msgid "Failed to connect to Digital Factory."
  414. msgstr ""
  415. #: cura/Settings/ActiveQuality.py:43
  416. msgctxt "@label"
  417. msgid "Experimental"
  418. msgstr "Tapasztalati"
  419. #: cura/Settings/ContainerManager.py:207
  420. #: cura/Settings/CuraContainerRegistry.py:140
  421. msgctxt "@title:window"
  422. msgid "File Already Exists"
  423. msgstr "A fájl már létezik"
  424. #: cura/Settings/ContainerManager.py:208
  425. #: cura/Settings/CuraContainerRegistry.py:141
  426. #, python-brace-format
  427. msgctxt "@label Don't translate the XML tag <filename>!"
  428. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  429. msgstr "A <filename>{0}</filename> fájl már létezik. Biztosan szeretnéd, hogy felülírjuk?"
  430. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  431. msgctxt "@info:status"
  432. msgid "Invalid file URL:"
  433. msgstr "Érvénytelen fájl URL:"
  434. #: cura/Settings/CuraContainerRegistry.py:153
  435. #, python-brace-format
  436. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  437. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  438. msgstr "A profil exportálása nem sikerült <filename>{0}</filename>: <message>{1}</message>"
  439. #: cura/Settings/CuraContainerRegistry.py:163
  440. #, python-brace-format
  441. msgctxt "@info:status Don't translate the XML tag <filename>!"
  442. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  443. msgstr "A profil exportálása nem sikerült <filename>{0}</filename>:Az író beépülő modul hibát jelez."
  444. #: cura/Settings/CuraContainerRegistry.py:171
  445. #, python-brace-format
  446. msgctxt "@info:status Don't translate the XML tag <filename>!"
  447. msgid "Exported profile to <filename>{0}</filename>"
  448. msgstr "Profil exportálva ide: <filename>{0}</filename>"
  449. #: cura/Settings/CuraContainerRegistry.py:173
  450. msgctxt "@info:title"
  451. msgid "Export succeeded"
  452. msgstr "Sikeres export"
  453. #: cura/Settings/CuraContainerRegistry.py:205
  454. #, python-brace-format
  455. msgctxt "@info:status Don't translate the XML tags <filename>!"
  456. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  457. msgstr "Sikertelen profil importálás <filename>{0}</filename>: {1} -ból"
  458. #: cura/Settings/CuraContainerRegistry.py:209
  459. #, python-brace-format
  460. msgctxt "@info:status Don't translate the XML tags <filename>!"
  461. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  462. msgstr "Nem importálható a profil <filename>{0}</filename> -ból, mielőtt hozzá nem adunk egy nyomtatót."
  463. #: cura/Settings/CuraContainerRegistry.py:224
  464. #, python-brace-format
  465. msgctxt "@info:status Don't translate the XML tags <filename>!"
  466. msgid "No custom profile to import in file <filename>{0}</filename>"
  467. msgstr "Nincs egyéni profil a <filename>{0}</filename> fájlban, amelyet importálni lehetne"
  468. #: cura/Settings/CuraContainerRegistry.py:228
  469. #, python-brace-format
  470. msgctxt "@info:status Don't translate the XML tags <filename>!"
  471. msgid "Failed to import profile from <filename>{0}</filename>:"
  472. msgstr "A profil importálása nem sikerült <filename>{0}</filename>:"
  473. #: cura/Settings/CuraContainerRegistry.py:252
  474. #: cura/Settings/CuraContainerRegistry.py:262
  475. #, python-brace-format
  476. msgctxt "@info:status Don't translate the XML tags <filename>!"
  477. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  478. msgstr "Ez a <filename>{0}</filename> profil helytelen adatokat tartamaz, ezért nem importálható."
  479. #: cura/Settings/CuraContainerRegistry.py:355
  480. #, python-brace-format
  481. msgctxt "@info:status Don't translate the XML tag <filename>!"
  482. msgid "Failed to import profile from <filename>{0}</filename>:"
  483. msgstr "Nem importálható a profil <filename>{0}</filename>:"
  484. #: cura/Settings/CuraContainerRegistry.py:359
  485. #, python-brace-format
  486. msgctxt "@info:status"
  487. msgid "Successfully imported profile {0}."
  488. msgstr ""
  489. #: cura/Settings/CuraContainerRegistry.py:366
  490. #, python-brace-format
  491. msgctxt "@info:status"
  492. msgid "File {0} does not contain any valid profile."
  493. msgstr "A {0} fájl nem tartalmaz érvényes profilt."
  494. #: cura/Settings/CuraContainerRegistry.py:369
  495. #, python-brace-format
  496. msgctxt "@info:status"
  497. msgid "Profile {0} has an unknown file type or is corrupted."
  498. msgstr "A(z) {0} profil ismeretlen fájltípusú vagy sérült."
  499. #: cura/Settings/CuraContainerRegistry.py:443
  500. msgctxt "@label"
  501. msgid "Custom profile"
  502. msgstr "Egyedi profil"
  503. #: cura/Settings/CuraContainerRegistry.py:459
  504. msgctxt "@info:status"
  505. msgid "Profile is missing a quality type."
  506. msgstr "Hiányzik a profil minőségi típusa."
  507. #: cura/Settings/CuraContainerRegistry.py:463
  508. msgctxt "@info:status"
  509. msgid "There is no active printer yet."
  510. msgstr ""
  511. #: cura/Settings/CuraContainerRegistry.py:469
  512. msgctxt "@info:status"
  513. msgid "Unable to add the profile."
  514. msgstr ""
  515. #: cura/Settings/CuraContainerRegistry.py:483
  516. #, python-brace-format
  517. msgctxt "@info:status"
  518. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  519. msgstr ""
  520. #: cura/Settings/CuraContainerRegistry.py:488
  521. #, python-brace-format
  522. msgctxt "@info:status"
  523. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  524. msgstr ""
  525. #: cura/Settings/MachineManager.py:746
  526. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  527. msgctxt "@label"
  528. msgid "Nozzle"
  529. msgstr "Fúvóka"
  530. #: cura/Settings/MachineManager.py:890
  531. msgctxt "@info:message Followed by a list of settings."
  532. msgid "Settings have been changed to match the current availability of extruders:"
  533. msgstr "A beállításokat megváltoztattuk, hogy azok megfeleljenek az jelenleg elérhető extrudereknek:"
  534. #: cura/Settings/MachineManager.py:891
  535. msgctxt "@info:title"
  536. msgid "Settings updated"
  537. msgstr "Beállítások frissítve"
  538. #: cura/Settings/MachineManager.py:1514
  539. msgctxt "@info:title"
  540. msgid "Extruder(s) Disabled"
  541. msgstr "Extruder(ek) kikapcsolva"
  542. #: cura/Settings/cura_empty_instance_containers.py:36
  543. msgctxt "@info:not supported profile"
  544. msgid "Not supported"
  545. msgstr "Nem támogatott"
  546. #: cura/Settings/cura_empty_instance_containers.py:55
  547. msgctxt "@info:No intent profile selected"
  548. msgid "Default"
  549. msgstr ""
  550. #: cura/UI/AddPrinterPagesModel.py:17
  551. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  552. msgctxt "@action:button"
  553. msgid "Add"
  554. msgstr "Hozzáad"
  555. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  556. msgctxt "@action:button"
  557. msgid "Finish"
  558. msgstr ""
  559. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  560. #: plugins/ImageReader/ConfigUI.qml:323
  561. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  562. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  563. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  564. #: resources/qml/ColorDialog.qml:143
  565. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  566. #: resources/qml/Dialogs/RenameDialog.qml:103
  567. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  568. msgctxt "@action:button"
  569. msgid "Cancel"
  570. msgstr "Elvet"
  571. #: cura/UI/ObjectsModel.py:69
  572. #, python-brace-format
  573. msgctxt "@label"
  574. msgid "Group #{group_nr}"
  575. msgstr "Csoport #{group_nr}"
  576. #: cura/UI/PrintInformation.py:87
  577. msgctxt "@tooltip"
  578. msgid "Outer Wall"
  579. msgstr "Külső fal"
  580. #: cura/UI/PrintInformation.py:88
  581. msgctxt "@tooltip"
  582. msgid "Inner Walls"
  583. msgstr "Belső falak"
  584. #: cura/UI/PrintInformation.py:89
  585. msgctxt "@tooltip"
  586. msgid "Skin"
  587. msgstr "Héj"
  588. #: cura/UI/PrintInformation.py:90
  589. msgctxt "@tooltip"
  590. msgid "Infill"
  591. msgstr "Kitöltés"
  592. #: cura/UI/PrintInformation.py:91
  593. msgctxt "@tooltip"
  594. msgid "Support Infill"
  595. msgstr "Támasz kitöltés"
  596. #: cura/UI/PrintInformation.py:92
  597. msgctxt "@tooltip"
  598. msgid "Support Interface"
  599. msgstr "Támasz interface"
  600. #: cura/UI/PrintInformation.py:93
  601. msgctxt "@tooltip"
  602. msgid "Support"
  603. msgstr "Támasz"
  604. #: cura/UI/PrintInformation.py:94
  605. msgctxt "@tooltip"
  606. msgid "Skirt"
  607. msgstr "Szoknya"
  608. #: cura/UI/PrintInformation.py:95
  609. msgctxt "@tooltip"
  610. msgid "Prime Tower"
  611. msgstr "Elsődleges torony"
  612. #: cura/UI/PrintInformation.py:96
  613. msgctxt "@tooltip"
  614. msgid "Travel"
  615. msgstr "Átmozgás"
  616. #: cura/UI/PrintInformation.py:97
  617. msgctxt "@tooltip"
  618. msgid "Retractions"
  619. msgstr "Visszahúzás"
  620. #: cura/UI/PrintInformation.py:98
  621. msgctxt "@tooltip"
  622. msgid "Other"
  623. msgstr "Egyéb"
  624. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  625. msgctxt "@text:window"
  626. msgid "The release notes could not be opened."
  627. msgstr ""
  628. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  629. msgctxt "@action:button"
  630. msgid "Next"
  631. msgstr "Következő"
  632. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  633. msgctxt "@action:button"
  634. msgid "Skip"
  635. msgstr ""
  636. #: cura/UI/WhatsNewPagesModel.py:76
  637. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  638. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  639. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  640. #: resources/qml/Dialogs/AboutDialog.qml:188
  641. msgctxt "@action:button"
  642. msgid "Close"
  643. msgstr "Bezár"
  644. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  645. msgctxt "@action:button"
  646. msgid "Please sync the material profiles with your printers before starting to print."
  647. msgstr ""
  648. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  649. msgctxt "@action:button"
  650. msgid "New materials installed"
  651. msgstr ""
  652. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  653. msgctxt "@action:button"
  654. msgid "Sync materials"
  655. msgstr ""
  656. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  657. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  658. msgctxt "@action:button"
  659. msgid "Learn more"
  660. msgstr ""
  661. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  662. msgctxt "@message:text"
  663. msgid "Could not save material archive to {}:"
  664. msgstr ""
  665. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  666. msgctxt "@message:title"
  667. msgid "Failed to save material archive"
  668. msgstr ""
  669. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  670. msgctxt "@text"
  671. msgid "Unknown error."
  672. msgstr ""
  673. #: plugin.json
  674. msgctxt "name"
  675. msgid "3MF Reader"
  676. msgstr "3MF olvasó"
  677. #: plugin.json
  678. msgctxt "name"
  679. msgid "3MF Writer"
  680. msgstr "3MF író"
  681. #: plugin.json
  682. msgctxt "name"
  683. msgid "AMF Reader"
  684. msgstr "AMF Olvasó"
  685. #: plugin.json
  686. msgctxt "description"
  687. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  688. msgstr "Elfogadja a G-kódot és elküldi őket egy nyomtatóra. A plugin a firmware-t is frissítheti."
  689. #: plugin.json
  690. msgctxt "description"
  691. msgid "Allows loading and displaying G-code files."
  692. msgstr "Lehetővé teszi a G-kód fájlok betöltését és megjelenítését."
  693. #: plugin.json
  694. msgctxt "description"
  695. msgid "Backup and restore your configuration."
  696. msgstr "Konfiguráció biztonsági másolat készítése és visszaállítása."
  697. #: plugin.json
  698. msgctxt "description"
  699. msgid "Checks for firmware updates."
  700. msgstr "Ellenőrzi a firmware frissítéseket."
  701. #: plugin.json
  702. msgctxt "description"
  703. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  704. msgstr "Ellenőrzi a modelleket és a nyomtatási konfigurációt a lehetséges nyomtatási problémákra vonatkozóan, és javaslatokat ad."
  705. #: plugin.json
  706. msgctxt "name"
  707. msgid "Compressed G-code Reader"
  708. msgstr "Tömörített G-kód olvasó"
  709. #: plugin.json
  710. msgctxt "name"
  711. msgid "Compressed G-code Writer"
  712. msgstr "Tömörített G-kód író"
  713. #: plugin.json
  714. msgctxt "description"
  715. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  716. msgstr ""
  717. #: plugin.json
  718. msgctxt "description"
  719. msgid "Creates an eraser mesh to block the printing of support in certain places"
  720. msgstr "Törlő hálót hoz létre, hogy bizonyos helyeken blokkolja a támasz nyomtatását"
  721. #: plugin.json
  722. msgctxt "name"
  723. msgid "Cura Backups"
  724. msgstr "Cura biztonsági mentések"
  725. #: plugin.json
  726. msgctxt "name"
  727. msgid "Cura Profile Reader"
  728. msgstr "Cura profil olvasó"
  729. #: plugin.json
  730. msgctxt "name"
  731. msgid "Cura Profile Writer"
  732. msgstr "Cura profil író"
  733. #: plugin.json
  734. msgctxt "name"
  735. msgid "CuraEngine Backend"
  736. msgstr "CuraEngine motor"
  737. #: plugin.json
  738. msgctxt "description"
  739. msgid "Enables ability to generate printable geometry from 2D image files."
  740. msgstr "Lehetővé teszi a nyomtatható geometria létrehozását 2D-képfájlokból."
  741. #: plugin.json
  742. msgctxt "description"
  743. msgid "Extension that allows for user created scripts for post processing"
  744. msgstr "Bővítmény, amely lehetővé teszi a felhasználó által létrehozott szkriptek utófeldolgozást"
  745. #: plugin.json
  746. msgctxt "name"
  747. msgid "Firmware Update Checker"
  748. msgstr "Frimrware frissítés ellenőrző"
  749. #: plugin.json
  750. msgctxt "name"
  751. msgid "Firmware Updater"
  752. msgstr "Firmware frissítő"
  753. #: plugin.json
  754. msgctxt "name"
  755. msgid "G-code Profile Reader"
  756. msgstr "G-kód profil olvasó"
  757. #: plugin.json
  758. msgctxt "name"
  759. msgid "G-code Reader"
  760. msgstr "G-kód olvasó"
  761. #: plugin.json
  762. msgctxt "name"
  763. msgid "G-code Writer"
  764. msgstr "G-kódot író"
  765. #: plugin.json
  766. msgctxt "name"
  767. msgid "Image Reader"
  768. msgstr "Kép olvasó"
  769. #: plugin.json
  770. msgctxt "name"
  771. msgid "Legacy Cura Profile Reader"
  772. msgstr "Örökölt Cura profil olvasó"
  773. #: plugin.json
  774. msgctxt "description"
  775. msgid "Logs certain events so that they can be used by the crash reporter"
  776. msgstr ""
  777. #: plugin.json
  778. msgctxt "name"
  779. msgid "Machine Settings Action"
  780. msgstr ""
  781. #: plugin.json
  782. msgctxt "description"
  783. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  784. msgstr ""
  785. #: plugin.json
  786. #, fuzzy
  787. msgctxt "description"
  788. msgid "Manages network connections to Ultimaker networked printers."
  789. msgstr "Kezeli a hálózati csatlakozásokat az UltiMaker hálózati nyomtatókhoz."
  790. #: plugin.json
  791. msgctxt "name"
  792. msgid "Marketplace"
  793. msgstr ""
  794. #: plugin.json
  795. msgctxt "name"
  796. msgid "Material Profiles"
  797. msgstr "Alapanyag profilok"
  798. #: plugin.json
  799. msgctxt "name"
  800. msgid "Model Checker"
  801. msgstr "Modell-ellenőrző"
  802. #: plugin.json
  803. msgctxt "name"
  804. msgid "Monitor Stage"
  805. msgstr "Monitor nézet"
  806. #: plugin.json
  807. msgctxt "name"
  808. msgid "Per Model Settings Tool"
  809. msgstr "Modellenkénti beállítás-eszköz"
  810. #: plugin.json
  811. msgctxt "name"
  812. msgid "Post Processing"
  813. msgstr "Utólagos feldolgozás"
  814. #: plugin.json
  815. msgctxt "name"
  816. msgid "Prepare Stage"
  817. msgstr "Előkészítés nézet"
  818. #: plugin.json
  819. msgctxt "name"
  820. msgid "Preview Stage"
  821. msgstr "Előnézet"
  822. #: plugin.json
  823. msgctxt "description"
  824. msgid "Provides a machine actions for updating firmware."
  825. msgstr "Gépi funkciókat biztosít a firmware frissítéséhez."
  826. #: plugin.json
  827. msgctxt "description"
  828. msgid "Provides a monitor stage in Cura."
  829. msgstr "Monitor nézetet biztosít a Cura -ban."
  830. #: plugin.json
  831. msgctxt "description"
  832. msgid "Provides a normal solid mesh view."
  833. msgstr "Felületi háló nézetet biztosít."
  834. #: plugin.json
  835. msgctxt "description"
  836. msgid "Provides a prepare stage in Cura."
  837. msgstr "Biztosítja az előkészítés nézetet a Cura-ban."
  838. #: plugin.json
  839. msgctxt "description"
  840. msgid "Provides a preview stage in Cura."
  841. msgstr "Előnézet biztosítása a Cura -ban."
  842. #: plugin.json
  843. msgctxt "description"
  844. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  845. msgstr "A géoi beállítások megváltoztatásának lehetőségét biztosítja.(például a építési méret, fúvóka méret, stb.)"
  846. #: plugin.json
  847. msgctxt "description"
  848. msgid "Provides capabilities to read and write XML-based material profiles."
  849. msgstr "Lehetővé teszi az XML-alapú anyagprofilok olvasását és írását."
  850. #: plugin.json
  851. #, fuzzy
  852. msgctxt "description"
  853. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  854. msgstr "Gépi funkciók biztosítása az UltiMaker nyomtatók számára.(pl.: ágyszintezés varázsló, frissítések kiválasztása.)"
  855. #: plugin.json
  856. msgctxt "description"
  857. msgid "Provides removable drive hotplugging and writing support."
  858. msgstr "Támogatás a cserélhető meghajtók üzem közbeni cseréjét és írását."
  859. #: plugin.json
  860. msgctxt "description"
  861. msgid "Provides support for exporting Cura profiles."
  862. msgstr "Támogatást nyújt a Cura profilok exportálásához."
  863. #: plugin.json
  864. msgctxt "description"
  865. msgid "Provides support for importing Cura profiles."
  866. msgstr "Támogatást nyújt a Cura profilok importálásához."
  867. #: plugin.json
  868. msgctxt "description"
  869. msgid "Provides support for importing profiles from g-code files."
  870. msgstr "Támogatást nyújt a profilok g-kód fájlokból történő importálásához."
  871. #: plugin.json
  872. msgctxt "description"
  873. msgid "Provides support for importing profiles from legacy Cura versions."
  874. msgstr "Támogatást nyújt a profilok importálásához a régi Cura verziókból."
  875. #: plugin.json
  876. msgctxt "description"
  877. msgid "Provides support for reading 3MF files."
  878. msgstr "Támogatást nyújt a 3MF fájlok olvasásához."
  879. #: plugin.json
  880. msgctxt "description"
  881. msgid "Provides support for reading AMF files."
  882. msgstr "Támogatást nyújt az AMF fájlok olvasásához."
  883. #: plugin.json
  884. #, fuzzy
  885. msgctxt "description"
  886. msgid "Provides support for reading Ultimaker Format Packages."
  887. msgstr "Támogatást nyújt az UltiMaker formátumú csomagok olvasásához."
  888. #: plugin.json
  889. msgctxt "description"
  890. msgid "Provides support for reading X3D files."
  891. msgstr "Támogatást nyújt az X3D fájlok olvasásához."
  892. #: plugin.json
  893. msgctxt "description"
  894. msgid "Provides support for reading model files."
  895. msgstr "Támogatást nyújt a modellfájlok olvasásához."
  896. #: plugin.json
  897. msgctxt "description"
  898. msgid "Provides support for writing 3MF files."
  899. msgstr "Támogatást nyújt a 3MF fájlok írásához."
  900. #: plugin.json
  901. #, fuzzy
  902. msgctxt "description"
  903. msgid "Provides support for writing Ultimaker Format Packages."
  904. msgstr "Támogatást nyújt az UltiMaker formátumú csomagok írásához."
  905. #: plugin.json
  906. msgctxt "description"
  907. msgid "Provides the Per Model Settings."
  908. msgstr "Biztosítja a modellenkénti beállításokat."
  909. #: plugin.json
  910. msgctxt "description"
  911. msgid "Provides the X-Ray view."
  912. msgstr "Röntgen nézetet biztosít."
  913. #: plugin.json
  914. msgctxt "description"
  915. msgid "Provides the link to the CuraEngine slicing backend."
  916. msgstr "Biztosítja a kapcsolatot a CuraEngine szeletelő motorhoz."
  917. #: plugin.json
  918. msgctxt "description"
  919. msgid "Provides the preview of sliced layerdata."
  920. msgstr ""
  921. #: plugin.json
  922. msgctxt "description"
  923. msgid "Reads g-code from a compressed archive."
  924. msgstr "Olvassa be a g-kódot egy tömörített archívumból."
  925. #: plugin.json
  926. msgctxt "name"
  927. msgid "Removable Drive Output Device Plugin"
  928. msgstr "Cserélhető meghajtók kimeneti beépülője"
  929. #: plugin.json
  930. msgctxt "name"
  931. msgid "Sentry Logger"
  932. msgstr ""
  933. #: plugin.json
  934. msgctxt "name"
  935. msgid "Simulation View"
  936. msgstr "Szimulációs nézet"
  937. #: plugin.json
  938. msgctxt "name"
  939. msgid "Slice info"
  940. msgstr "Szeletelési infó"
  941. #: plugin.json
  942. msgctxt "name"
  943. msgid "Solid View"
  944. msgstr "Felület nézet"
  945. #: plugin.json
  946. msgctxt "description"
  947. msgid "Submits anonymous slice info. Can be disabled through preferences."
  948. msgstr "Névtelen szelet-információt nyújt be. A beállítások révén letiltható."
  949. #: plugin.json
  950. msgctxt "name"
  951. msgid "Support Eraser"
  952. msgstr "Támasz törlő"
  953. #: plugin.json
  954. msgctxt "name"
  955. msgid "Trimesh Reader"
  956. msgstr "Trimesh olvasó"
  957. #: plugin.json
  958. msgctxt "name"
  959. msgid "UFP Reader"
  960. msgstr "UFP Olvasó"
  961. #: plugin.json
  962. msgctxt "name"
  963. msgid "UFP Writer"
  964. msgstr "UFP Író"
  965. #: plugin.json
  966. msgctxt "name"
  967. msgid "USB printing"
  968. msgstr "USB nyomtatás"
  969. #: plugin.json
  970. msgctxt "name"
  971. msgid "Ultimaker Digital Library"
  972. msgstr ""
  973. #: plugin.json
  974. #, fuzzy
  975. msgctxt "name"
  976. msgid "Ultimaker Network Connection"
  977. msgstr "UltiMaker hálózati kapcsolat"
  978. #: plugin.json
  979. #, fuzzy
  980. msgctxt "name"
  981. msgid "Ultimaker machine actions"
  982. msgstr "UltiMaker gépi funkciók"
  983. #: plugin.json
  984. msgctxt "description"
  985. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  986. msgstr "A konfigurációk frissítése Cura 2.1-ről Cura 2.2-re."
  987. #: plugin.json
  988. msgctxt "description"
  989. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  990. msgstr "A konfigurációk frissítése Cura 2.2-ről Cura 2.4-re."
  991. #: plugin.json
  992. msgctxt "description"
  993. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  994. msgstr "Frissíti a konfigurációt Cura 2.5-ről Cura 2.6-ra."
  995. #: plugin.json
  996. msgctxt "description"
  997. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  998. msgstr "A konfigurációk frissítése Cura 2.6-ról Cura 2.7-re."
  999. #: plugin.json
  1000. msgctxt "description"
  1001. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  1002. msgstr "A konfigurációk frissítése Cura 2.7-ről Cura 3.0-ra."
  1003. #: plugin.json
  1004. msgctxt "description"
  1005. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  1006. msgstr "A konfigurációk frissítése Cura 3.0-ról Cura 3.1-re."
  1007. #: plugin.json
  1008. msgctxt "description"
  1009. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  1010. msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra."
  1011. #: plugin.json
  1012. msgctxt "description"
  1013. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  1014. msgstr "A konfigurációk frissítése Cura 3.3-ról Cura 3.4-re."
  1015. #: plugin.json
  1016. msgctxt "description"
  1017. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  1018. msgstr "A konfigurációt Cura 3.4-ről Cura 3.5-re frissíti."
  1019. #: plugin.json
  1020. msgctxt "description"
  1021. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  1022. msgstr "A konfigurációk frissítése Cura 3.5-ről Cura 4.0-ra."
  1023. #: plugin.json
  1024. msgctxt "description"
  1025. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  1026. msgstr "A konfigurációt Cura 4.0-ról Cura 4.1-re frissíti."
  1027. #: plugin.json
  1028. msgctxt "description"
  1029. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  1030. msgstr "A konfigurációk frissítése Cura 4.1-ről Cura 4.2-re."
  1031. #: plugin.json
  1032. msgctxt "description"
  1033. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  1034. msgstr ""
  1035. #: plugin.json
  1036. msgctxt "description"
  1037. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  1038. msgstr ""
  1039. #: plugin.json
  1040. msgctxt "description"
  1041. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  1042. msgstr "A konfigurációk frissítése Cura 4.2-ről Cura 4.3-ra."
  1043. #: plugin.json
  1044. msgctxt "description"
  1045. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  1046. msgstr ""
  1047. #: plugin.json
  1048. msgctxt "description"
  1049. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  1050. msgstr ""
  1051. #: plugin.json
  1052. msgctxt "description"
  1053. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  1054. msgstr ""
  1055. #: plugin.json
  1056. msgctxt "description"
  1057. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  1058. msgstr ""
  1059. #: plugin.json
  1060. msgctxt "description"
  1061. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  1062. msgstr ""
  1063. #: plugin.json
  1064. msgctxt "description"
  1065. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  1066. msgstr ""
  1067. #: plugin.json
  1068. msgctxt "description"
  1069. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  1070. msgstr ""
  1071. #: plugin.json
  1072. msgctxt "description"
  1073. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  1074. msgstr ""
  1075. #: plugin.json
  1076. #, fuzzy
  1077. msgctxt "description"
  1078. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  1079. msgstr "A konfigurációk frissítése Cura 3.2-ről Cura 3.3-ra."
  1080. #: plugin.json
  1081. msgctxt "name"
  1082. msgid "Version Upgrade 2.1 to 2.2"
  1083. msgstr "A 2.1-es verzió frissítése 2.2-re"
  1084. #: plugin.json
  1085. msgctxt "name"
  1086. msgid "Version Upgrade 2.2 to 2.4"
  1087. msgstr "A 2.2-es verzió frissítése 2.4-ig"
  1088. #: plugin.json
  1089. msgctxt "name"
  1090. msgid "Version Upgrade 2.5 to 2.6"
  1091. msgstr "A 2.5-es verzió frissítése 2.6-ra"
  1092. #: plugin.json
  1093. msgctxt "name"
  1094. msgid "Version Upgrade 2.6 to 2.7"
  1095. msgstr "A 2.6-os verzió frissítése 2.7-re"
  1096. #: plugin.json
  1097. msgctxt "name"
  1098. msgid "Version Upgrade 2.7 to 3.0"
  1099. msgstr "A 2.7-es verzió frissítése 3.0-ra"
  1100. #: plugin.json
  1101. msgctxt "name"
  1102. msgid "Version Upgrade 3.0 to 3.1"
  1103. msgstr "A 3.0-s verzió frissítése 3.1-re"
  1104. #: plugin.json
  1105. msgctxt "name"
  1106. msgid "Version Upgrade 3.2 to 3.3"
  1107. msgstr "A 3.2-es verzió frissítése 3.3-ra"
  1108. #: plugin.json
  1109. msgctxt "name"
  1110. msgid "Version Upgrade 3.3 to 3.4"
  1111. msgstr "A 3.3-as verzió frissítése 3.4-re"
  1112. #: plugin.json
  1113. msgctxt "name"
  1114. msgid "Version Upgrade 3.4 to 3.5"
  1115. msgstr "A 3.4-es verzió frissítése 3.5-re"
  1116. #: plugin.json
  1117. msgctxt "name"
  1118. msgid "Version Upgrade 3.5 to 4.0"
  1119. msgstr "A 3.5-es verzió frissítése 4.0-ra"
  1120. #: plugin.json
  1121. msgctxt "name"
  1122. msgid "Version Upgrade 4.0 to 4.1"
  1123. msgstr "A 4.0-s verzió frissítése 4.1-re"
  1124. #: plugin.json
  1125. msgctxt "name"
  1126. msgid "Version Upgrade 4.1 to 4.2"
  1127. msgstr "A 4.1-es verzió frissítése 4.2-re"
  1128. #: plugin.json
  1129. msgctxt "name"
  1130. msgid "Version Upgrade 4.11 to 4.12"
  1131. msgstr ""
  1132. #: plugin.json
  1133. msgctxt "name"
  1134. msgid "Version Upgrade 4.13 to 5.0"
  1135. msgstr ""
  1136. #: plugin.json
  1137. msgctxt "name"
  1138. msgid "Version Upgrade 4.2 to 4.3"
  1139. msgstr "A 4.2-es verzió frissítése 4.3-ra"
  1140. #: plugin.json
  1141. msgctxt "name"
  1142. msgid "Version Upgrade 4.3 to 4.4"
  1143. msgstr ""
  1144. #: plugin.json
  1145. msgctxt "name"
  1146. msgid "Version Upgrade 4.4 to 4.5"
  1147. msgstr ""
  1148. #: plugin.json
  1149. msgctxt "name"
  1150. msgid "Version Upgrade 4.5 to 4.6"
  1151. msgstr ""
  1152. #: plugin.json
  1153. msgctxt "name"
  1154. msgid "Version Upgrade 4.6.0 to 4.6.2"
  1155. msgstr ""
  1156. #: plugin.json
  1157. msgctxt "name"
  1158. msgid "Version Upgrade 4.6.2 to 4.7"
  1159. msgstr ""
  1160. #: plugin.json
  1161. msgctxt "name"
  1162. msgid "Version Upgrade 4.7 to 4.8"
  1163. msgstr ""
  1164. #: plugin.json
  1165. msgctxt "name"
  1166. msgid "Version Upgrade 4.8 to 4.9"
  1167. msgstr ""
  1168. #: plugin.json
  1169. msgctxt "name"
  1170. msgid "Version Upgrade 4.9 to 4.10"
  1171. msgstr ""
  1172. #: plugin.json
  1173. #, fuzzy
  1174. msgctxt "name"
  1175. msgid "Version Upgrade 5.2 to 5.3"
  1176. msgstr "A 3.2-es verzió frissítése 3.3-ra"
  1177. #: plugin.json
  1178. msgctxt "description"
  1179. msgid "Writes g-code to a compressed archive."
  1180. msgstr "G-kódot ír egy tömörített archívumba."
  1181. #: plugin.json
  1182. msgctxt "description"
  1183. msgid "Writes g-code to a file."
  1184. msgstr "G-kódot ír fájlba."
  1185. #: plugin.json
  1186. msgctxt "name"
  1187. msgid "X-Ray View"
  1188. msgstr "Röntgen nézet"
  1189. #: plugin.json
  1190. msgctxt "name"
  1191. msgid "X3D Reader"
  1192. msgstr "X3D Olvasó"
  1193. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  1194. #, python-brace-format
  1195. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1196. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1197. msgstr "A projekt fájl <filename>{0}</filename> egy ismeretlen <message>{1}</message> géptípust tartalmaz.Gépet nem lehet importálni. Importálj helyette modelleket."
  1198. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:550
  1199. msgctxt "@info:title"
  1200. msgid "Open Project File"
  1201. msgstr "Projekt fájl megnyitása"
  1202. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:631
  1203. #: plugins/3MFReader/WorkspaceDialog.qml:99
  1204. #: plugins/3MFReader/WorkspaceDialog.qml:127
  1205. #: plugins/3MFReader/WorkspaceDialog.qml:134
  1206. #, fuzzy
  1207. msgctxt "@button"
  1208. msgid "Create new"
  1209. msgstr "Új létrehozása"
  1210. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:681
  1211. #, python-brace-format
  1212. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1213. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1214. msgstr ""
  1215. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:682
  1216. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:690
  1217. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:709
  1218. msgctxt "@info:title"
  1219. msgid "Can't Open Project File"
  1220. msgstr ""
  1221. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:689
  1222. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:707
  1223. #, python-brace-format
  1224. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1225. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1226. msgstr ""
  1227. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:754
  1228. #, python-brace-format
  1229. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1230. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1231. msgstr ""
  1232. #: plugins/3MFReader/WorkspaceDialog.py:233
  1233. msgctxt "@title:tab"
  1234. msgid "Recommended"
  1235. msgstr "Ajánlott"
  1236. #: plugins/3MFReader/WorkspaceDialog.py:235
  1237. msgctxt "@title:tab"
  1238. msgid "Custom"
  1239. msgstr "Egyedi"
  1240. #: plugins/3MFReader/WorkspaceDialog.py:411
  1241. msgctxt "@info:status"
  1242. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  1243. msgstr ""
  1244. #: plugins/3MFReader/WorkspaceDialog.py:413
  1245. msgctxt "@info:title"
  1246. msgid "Material profiles not installed"
  1247. msgstr ""
  1248. #: plugins/3MFReader/WorkspaceDialog.py:426
  1249. msgctxt "@action:button"
  1250. msgid "Install Materials"
  1251. msgstr ""
  1252. #: plugins/3MFReader/WorkspaceDialog.qml:15
  1253. msgctxt "@title:window"
  1254. msgid "Open Project"
  1255. msgstr "Projekt megnyitása"
  1256. #: plugins/3MFReader/WorkspaceDialog.qml:31
  1257. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  1258. msgctxt "@action:title"
  1259. msgid "Summary - Cura Project"
  1260. msgstr "Összegzés - Cura Project"
  1261. #: plugins/3MFReader/WorkspaceDialog.qml:65
  1262. msgctxt "@action:ComboBox Update/override existing profile"
  1263. msgid "Update existing"
  1264. msgstr ""
  1265. #: plugins/3MFReader/WorkspaceDialog.qml:66
  1266. msgctxt "@action:ComboBox Save settings in a new profile"
  1267. msgid "Create new"
  1268. msgstr ""
  1269. #: plugins/3MFReader/WorkspaceDialog.qml:83
  1270. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  1271. msgctxt "@action:label"
  1272. msgid "Printer settings"
  1273. msgstr "Nyomtató beállítások"
  1274. #: plugins/3MFReader/WorkspaceDialog.qml:92
  1275. #: plugins/3MFReader/WorkspaceRow.qml:23
  1276. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  1277. msgctxt "@action:label"
  1278. msgid "Type"
  1279. msgstr "Típus"
  1280. #: plugins/3MFReader/WorkspaceDialog.qml:98
  1281. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1282. msgctxt "@action:label"
  1283. msgid "Printer Group"
  1284. msgstr "Nyomtató csoport"
  1285. #: plugins/3MFReader/WorkspaceDialog.qml:103
  1286. #, fuzzy
  1287. msgctxt "@action:label"
  1288. msgid "Open With"
  1289. msgstr "Megnyitás"
  1290. #: plugins/3MFReader/WorkspaceDialog.qml:104
  1291. msgctxt "@info:tooltip"
  1292. msgid "Printer settings will be updated to match the settings saved with the project."
  1293. msgstr ""
  1294. #: plugins/3MFReader/WorkspaceDialog.qml:156
  1295. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  1296. msgctxt "@action:label"
  1297. msgid "Profile settings"
  1298. msgstr "Profil beállítások"
  1299. #: plugins/3MFReader/WorkspaceDialog.qml:166
  1300. #: plugins/3MFReader/WorkspaceDialog.qml:238
  1301. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  1302. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  1303. msgctxt "@action:label"
  1304. msgid "Name"
  1305. msgstr "Név"
  1306. #: plugins/3MFReader/WorkspaceDialog.qml:172
  1307. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  1308. msgctxt "@action:label"
  1309. msgid "Intent"
  1310. msgstr ""
  1311. #: plugins/3MFReader/WorkspaceDialog.qml:178
  1312. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  1313. msgctxt "@action:label"
  1314. msgid "Not in profile"
  1315. msgstr "Nincs a profilban"
  1316. #: plugins/3MFReader/WorkspaceDialog.qml:179
  1317. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  1318. msgctxt "@action:label"
  1319. msgid "%1 override"
  1320. msgid_plural "%1 overrides"
  1321. msgstr[0] "%1 felülírás"
  1322. msgstr[1] "%1 felülírás"
  1323. #: plugins/3MFReader/WorkspaceDialog.qml:185
  1324. msgctxt "@action:label"
  1325. msgid "Derivative from"
  1326. msgstr "Származék"
  1327. #: plugins/3MFReader/WorkspaceDialog.qml:186
  1328. msgctxt "@action:label"
  1329. msgid "%1, %2 override"
  1330. msgid_plural "%1, %2 overrides"
  1331. msgstr[0] "%1, %2 felülírás"
  1332. msgstr[1] "%1, %2 felülírás"
  1333. #: plugins/3MFReader/WorkspaceDialog.qml:226
  1334. msgctxt "@action:label"
  1335. msgid "Material settings"
  1336. msgstr "Alapanyag beállítások"
  1337. #: plugins/3MFReader/WorkspaceDialog.qml:280
  1338. msgctxt "@action:label"
  1339. msgid "Setting visibility"
  1340. msgstr "Beállítások láthatósága"
  1341. #: plugins/3MFReader/WorkspaceDialog.qml:290
  1342. msgctxt "@action:label"
  1343. msgid "Mode"
  1344. msgstr "Mód"
  1345. #: plugins/3MFReader/WorkspaceDialog.qml:296
  1346. msgctxt "@action:label"
  1347. msgid "%1 out of %2"
  1348. msgstr "%1 %2 -ből"
  1349. #: plugins/3MFReader/WorkspaceDialog.qml:321
  1350. msgctxt "@action:warning"
  1351. msgid "Loading a project will clear all models on the build plate."
  1352. msgstr "A projekt betöltésekor minden modell törlődik a tárgyasztalról."
  1353. #: plugins/3MFReader/WorkspaceDialog.qml:367
  1354. msgctxt "@label"
  1355. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  1356. msgstr ""
  1357. #: plugins/3MFReader/WorkspaceDialog.qml:392
  1358. msgctxt "@action:button"
  1359. msgid "Open"
  1360. msgstr "Megnyitás"
  1361. #: plugins/3MFReader/WorkspaceDialog.qml:398
  1362. msgctxt "@action:button"
  1363. msgid "Open project anyway"
  1364. msgstr ""
  1365. #: plugins/3MFReader/WorkspaceDialog.qml:407
  1366. msgctxt "@action:button"
  1367. msgid "Install missing material"
  1368. msgstr ""
  1369. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  1370. msgctxt "@item:inlistbox"
  1371. msgid "3MF File"
  1372. msgstr "3MF fájl"
  1373. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1374. msgctxt "@error:zip"
  1375. msgid "3MF Writer plug-in is corrupt."
  1376. msgstr ""
  1377. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1378. msgctxt "@error"
  1379. msgid "There is no workspace yet to write. Please add a printer first."
  1380. msgstr ""
  1381. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1382. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1383. msgctxt "@error:zip"
  1384. msgid "No permission to write the workspace here."
  1385. msgstr ""
  1386. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1387. msgctxt "@error:zip"
  1388. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1389. msgstr ""
  1390. #: plugins/3MFWriter/ThreeMFWriter.py:240
  1391. msgctxt "@error:zip"
  1392. msgid "Error writing 3mf file."
  1393. msgstr "Hiba a 3mf fájl írásakor."
  1394. #: plugins/3MFWriter/__init__.py:28
  1395. msgctxt "@item:inlistbox"
  1396. msgid "3MF file"
  1397. msgstr "3MF fájl"
  1398. #: plugins/3MFWriter/__init__.py:36
  1399. msgctxt "@item:inlistbox"
  1400. msgid "Cura Project 3MF file"
  1401. msgstr "Cura projekt 3MF fájl"
  1402. #: plugins/AMFReader/__init__.py:15
  1403. msgctxt "@item:inlistbox"
  1404. msgid "AMF File"
  1405. msgstr "AMF fájl"
  1406. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  1407. msgctxt "@info:title"
  1408. msgid "Backups"
  1409. msgstr "Biztonsági mentések"
  1410. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  1411. msgctxt "@info:backup_status"
  1412. msgid "There was an error while uploading your backup."
  1413. msgstr "Hiba történt a biztonsági mentés feltöltése közben."
  1414. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  1415. msgctxt "@info:backup_status"
  1416. msgid "Creating your backup..."
  1417. msgstr ""
  1418. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  1419. msgctxt "@info:backup_status"
  1420. msgid "There was an error while creating your backup."
  1421. msgstr ""
  1422. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  1423. msgctxt "@info:backup_status"
  1424. msgid "Uploading your backup..."
  1425. msgstr "A biztonsági mentés feltöltése ..."
  1426. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  1427. msgctxt "@info:backup_status"
  1428. msgid "Your backup has finished uploading."
  1429. msgstr "A biztonsági mentés feltöltése befejeződött."
  1430. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  1431. msgctxt "@error:file_size"
  1432. msgid "The backup exceeds the maximum file size."
  1433. msgstr ""
  1434. #: plugins/CuraDrive/src/DriveApiService.py:86
  1435. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  1436. msgctxt "@info:backup_status"
  1437. msgid "There was an error trying to restore your backup."
  1438. msgstr "Hiba történt a biztonsági másolat visszaállításakor."
  1439. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  1440. msgctxt "@item:inmenu"
  1441. msgid "Manage backups"
  1442. msgstr "Bitonsági mentések kezelése"
  1443. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1444. msgctxt "@button"
  1445. msgid "Want more?"
  1446. msgstr "Többet szeretnél?"
  1447. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1448. msgctxt "@button"
  1449. msgid "Backup Now"
  1450. msgstr "Biztonsági mentés most"
  1451. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1452. msgctxt "@checkbox:description"
  1453. msgid "Auto Backup"
  1454. msgstr "Automatikus biztonsági mentés"
  1455. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1456. msgctxt "@checkbox:description"
  1457. msgid "Automatically create a backup each day that Cura is started."
  1458. msgstr "Automatikusan létrehoz egy biztonsági mentést minden egyes nap, mikor a Cura indítva van."
  1459. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  1460. msgctxt "@button"
  1461. msgid "Restore"
  1462. msgstr "Visszaállítás"
  1463. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  1464. msgctxt "@dialog:title"
  1465. msgid "Delete Backup"
  1466. msgstr "Biztonsági mentés törlés"
  1467. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  1468. msgctxt "@dialog:info"
  1469. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1470. msgstr "Biztosan szeretnéd törölni a biztonsági mentést? Ez nem vonható vissza."
  1471. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  1472. msgctxt "@dialog:title"
  1473. msgid "Restore Backup"
  1474. msgstr "Helyreállítás biztonsági mentésből"
  1475. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  1476. msgctxt "@dialog:info"
  1477. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1478. msgstr "A biztonsági mentés helyreállítás előtt a Cura -t újra kell indítani.Bezárjuk most a Cura-t?"
  1479. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1480. msgctxt "@backuplist:label"
  1481. msgid "Cura Version"
  1482. msgstr "Cura verzió"
  1483. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1484. msgctxt "@backuplist:label"
  1485. msgid "Machines"
  1486. msgstr "Gépek"
  1487. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1488. msgctxt "@backuplist:label"
  1489. msgid "Materials"
  1490. msgstr "Alapanyagok"
  1491. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1492. msgctxt "@backuplist:label"
  1493. msgid "Profiles"
  1494. msgstr "Profilok"
  1495. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1496. msgctxt "@backuplist:label"
  1497. msgid "Plugins"
  1498. msgstr "Beépülők"
  1499. #: plugins/CuraDrive/src/qml/main.qml:25
  1500. msgctxt "@title:window"
  1501. msgid "Cura Backups"
  1502. msgstr "Cura biztonsági mentések"
  1503. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1504. msgctxt "@title"
  1505. msgid "My Backups"
  1506. msgstr "Biztonsági mentéseim"
  1507. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1508. msgctxt "@empty_state"
  1509. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1510. msgstr "Nincs egyetlen biztonsági mentésed sem. Használd a 'Biztonsági mentés' gombot, hogy létrehozz egyet."
  1511. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1512. msgctxt "@backup_limit_info"
  1513. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1514. msgstr "Az előnézeti szakaszban a látható biztonsági mentések száma 5 lehet.Ha szeretné látni a régebbieket, távolítson el egyet a láthatóak közül."
  1515. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1516. msgctxt "@description"
  1517. msgid "Backup and synchronize your Cura settings."
  1518. msgstr "A Cura beállítások biztonsági mentése és szinkronizálása."
  1519. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1520. #: resources/qml/Account/GeneralOperations.qml:49
  1521. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1522. #: resources/qml/WelcomePages/CloudContent.qml:212
  1523. msgctxt "@button"
  1524. msgid "Sign in"
  1525. msgstr "Bejelentkezés"
  1526. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1527. msgctxt "@message"
  1528. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1529. msgstr ""
  1530. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1531. msgctxt "@message:title"
  1532. msgid "Slicing failed"
  1533. msgstr ""
  1534. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1535. msgctxt "@message:button"
  1536. msgid "Report a bug"
  1537. msgstr ""
  1538. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1539. msgctxt "@message:description"
  1540. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1541. msgstr ""
  1542. #: plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1543. msgctxt "@info:status"
  1544. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1545. msgstr "Nem lehet szeletelni a jelenlegi alapanyaggal, mert nem kompatibilis a kiválasztott nyomtatóval, vagy a beállításaival."
  1546. #: plugins/CuraEngineBackend/CuraEngineBackend.py:402
  1547. #: plugins/CuraEngineBackend/CuraEngineBackend.py:435
  1548. #: plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1549. #: plugins/CuraEngineBackend/CuraEngineBackend.py:474
  1550. #: plugins/CuraEngineBackend/CuraEngineBackend.py:486
  1551. #: plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1552. msgctxt "@info:title"
  1553. msgid "Unable to slice"
  1554. msgstr "Nem lehet szeletelni"
  1555. #: plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1556. #, python-brace-format
  1557. msgctxt "@info:status"
  1558. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1559. msgstr "Nem lehet szeletelni ezekkel a beállításokkal. Ezek a beállítások okoznak hibát: {0}"
  1560. #: plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1561. #, python-brace-format
  1562. msgctxt "@info:status"
  1563. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1564. msgstr "Nem lehet szeletelni pár modell beállítás miatt. A következő beállításokokoznak hibát egy vagy több modellnél: {error_labels}"
  1565. #: plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1566. msgctxt "@info:status"
  1567. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1568. msgstr "Nem lehet szeletelni, mert az elsődleges torony, vagy az elsődleges pozíció érvénytelen."
  1569. #: plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1570. #, python-format
  1571. msgctxt "@info:status"
  1572. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1573. msgstr "Nem lehet szeletelni, mert vannak olyan objektumok, amelyek a letiltott Extruderhez vannak társítva.%s."
  1574. #: plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1575. msgctxt "@info:status"
  1576. msgid ""
  1577. "Please review settings and check if your models:\n"
  1578. "- Fit within the build volume\n"
  1579. "- Are assigned to an enabled extruder\n"
  1580. "- Are not all set as modifier meshes"
  1581. msgstr ""
  1582. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1583. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1584. msgctxt "@info:status"
  1585. msgid "Processing Layers"
  1586. msgstr "Réteg feldolgozás"
  1587. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1588. msgctxt "@info:title"
  1589. msgid "Information"
  1590. msgstr "Információ"
  1591. #: plugins/CuraProfileReader/__init__.py:14
  1592. #: plugins/CuraProfileWriter/__init__.py:14
  1593. msgctxt "@item:inlistbox"
  1594. msgid "Cura Profile"
  1595. msgstr "Cura Profil"
  1596. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1597. msgctxt "@option"
  1598. msgid "Save Cura project and print file"
  1599. msgstr ""
  1600. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1601. msgctxt "@option"
  1602. msgid "Save Cura project"
  1603. msgstr ""
  1604. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1605. msgctxt "@text Placeholder for the username if it has been deleted"
  1606. msgid "deleted user"
  1607. msgstr ""
  1608. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1609. msgctxt "@info"
  1610. msgid "Could not access update information."
  1611. msgstr "Nem sikerült elérni a frissítési információkat."
  1612. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1613. #, python-brace-format
  1614. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1615. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1616. msgstr ""
  1617. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1618. #, python-format
  1619. msgctxt "@info:title The %s gets replaced with the printer name."
  1620. msgid "New %s stable firmware available"
  1621. msgstr ""
  1622. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1623. msgctxt "@action:button"
  1624. msgid "How to update"
  1625. msgstr "Hogyan frissíts"
  1626. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1627. msgctxt "@action"
  1628. msgid "Update Firmware"
  1629. msgstr "Firmware frissítés"
  1630. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1631. msgctxt "@title"
  1632. msgid "Update Firmware"
  1633. msgstr "Firmware frissítés"
  1634. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1635. msgctxt "@label"
  1636. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1637. msgstr "A firmware egy szoftver, ami közvetlenül a nyomtatón fut. Ez vezérli a léptető motorokat, szabályozza a hőmérsékleteket, és az egész nyomtató működését."
  1638. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1639. msgctxt "@label"
  1640. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1641. msgstr "A firmware a nyomtató része, így a használatba vételkor már a gépen található.Azonban készülnek belőle újabb verziók, amik esetleges hibákat szüntetnek meg, illetve egyéb új funkciókat biztosíthatnak."
  1642. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1643. msgctxt "@action:button"
  1644. msgid "Automatically upgrade Firmware"
  1645. msgstr "Automatikus firmware frissítés"
  1646. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1647. msgctxt "@action:button"
  1648. msgid "Upload custom Firmware"
  1649. msgstr "Egyedi firmware feltöltése"
  1650. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1651. msgctxt "@label"
  1652. msgid "Firmware can not be updated because there is no connection with the printer."
  1653. msgstr "A firmware feltöltés nem lehetséges, mert nincs a nyomtatóval kapcsolat."
  1654. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1655. msgctxt "@label"
  1656. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1657. msgstr "A firmware feltöltés nem lehetséges, mert ugyan a nyomtató kapcsolódik, de az nem támogatja a firmware frissítést."
  1658. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1659. msgctxt "@title:window"
  1660. msgid "Select custom firmware"
  1661. msgstr "Egyedi firmware kiválasztása"
  1662. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1663. msgctxt "@title:window"
  1664. msgid "Firmware Update"
  1665. msgstr "Firmware frissítés"
  1666. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1667. msgctxt "@label"
  1668. msgid "Updating firmware."
  1669. msgstr "A firmware frissítése."
  1670. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1671. msgctxt "@label"
  1672. msgid "Firmware update completed."
  1673. msgstr "Firmware frissítés kész."
  1674. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1675. msgctxt "@label"
  1676. msgid "Firmware update failed due to an unknown error."
  1677. msgstr "A firmware frissítés meghiúsult ismeretlen hiba miatt."
  1678. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1679. msgctxt "@label"
  1680. msgid "Firmware update failed due to an communication error."
  1681. msgstr "A firmware frissítés meghiúsult kommunikációs hiba miatt."
  1682. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1683. msgctxt "@label"
  1684. msgid "Firmware update failed due to an input/output error."
  1685. msgstr "A firmware frissítés meghiúsult input/output hiba miatt."
  1686. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1687. msgctxt "@label"
  1688. msgid "Firmware update failed due to missing firmware."
  1689. msgstr "A firmware frissítés meghiúsult, mert nem található a firmware."
  1690. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1691. msgctxt "@item:inlistbox"
  1692. msgid "Compressed G-code File"
  1693. msgstr "Tömörített G-kód fájl"
  1694. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1695. msgctxt "@error:not supported"
  1696. msgid "GCodeGzWriter does not support text mode."
  1697. msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot."
  1698. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1699. #: plugins/GCodeWriter/__init__.py:16
  1700. msgctxt "@item:inlistbox"
  1701. msgid "G-code File"
  1702. msgstr "G-code Fájl"
  1703. #: plugins/GCodeReader/FlavorParser.py:350
  1704. msgctxt "@info:status"
  1705. msgid "Parsing G-code"
  1706. msgstr "G-kód elemzés"
  1707. #: plugins/GCodeReader/FlavorParser.py:352
  1708. #: plugins/GCodeReader/FlavorParser.py:506
  1709. msgctxt "@info:title"
  1710. msgid "G-code Details"
  1711. msgstr "G-kód részletek"
  1712. #: plugins/GCodeReader/FlavorParser.py:504
  1713. msgctxt "@info:generic"
  1714. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1715. msgstr "Győződj meg róla, hogy a G-kód igazodik a nyomtatódhoz és beállításaihoz, mielőtt elküldöd a fájlt. A G-kód ábrázolása nem biztos, hogy pontos."
  1716. #: plugins/GCodeReader/__init__.py:18
  1717. msgctxt "@item:inlistbox"
  1718. msgid "G File"
  1719. msgstr "G fájl"
  1720. #: plugins/GCodeWriter/GCodeWriter.py:75
  1721. msgctxt "@error:not supported"
  1722. msgid "GCodeWriter does not support non-text mode."
  1723. msgstr "A GCodeWriter nem támogatja a szöveges nélüli módot."
  1724. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1725. msgctxt "@warning:status"
  1726. msgid "Please prepare G-code before exporting."
  1727. msgstr "Készítse elő a G-kódot az exportálás előtt."
  1728. #: plugins/ImageReader/ConfigUI.qml:14
  1729. msgctxt "@title:window"
  1730. msgid "Convert Image"
  1731. msgstr ""
  1732. #: plugins/ImageReader/ConfigUI.qml:33
  1733. msgctxt "@action:label"
  1734. msgid "Height (mm)"
  1735. msgstr "Magasság (mm)"
  1736. #: plugins/ImageReader/ConfigUI.qml:56
  1737. msgctxt "@info:tooltip"
  1738. msgid "The maximum distance of each pixel from \"Base.\""
  1739. msgstr "Az egyes pixelek legnagyobb távolsága \"Base.\""
  1740. #: plugins/ImageReader/ConfigUI.qml:66
  1741. msgctxt "@action:label"
  1742. msgid "Base (mm)"
  1743. msgstr "Alap (mm)"
  1744. #: plugins/ImageReader/ConfigUI.qml:90
  1745. msgctxt "@info:tooltip"
  1746. msgid "The base height from the build plate in millimeters."
  1747. msgstr "Az alap magassága a tárgyasztaltól mm -ben."
  1748. #: plugins/ImageReader/ConfigUI.qml:100
  1749. msgctxt "@action:label"
  1750. msgid "Width (mm)"
  1751. msgstr "Szélesség (mm)"
  1752. #: plugins/ImageReader/ConfigUI.qml:124
  1753. msgctxt "@info:tooltip"
  1754. msgid "The width in millimeters on the build plate"
  1755. msgstr ""
  1756. #: plugins/ImageReader/ConfigUI.qml:134
  1757. msgctxt "@action:label"
  1758. msgid "Depth (mm)"
  1759. msgstr "Mélység (mm)"
  1760. #: plugins/ImageReader/ConfigUI.qml:158
  1761. msgctxt "@info:tooltip"
  1762. msgid "The depth in millimeters on the build plate"
  1763. msgstr "A mélység mm-ben a tárgyasztalon"
  1764. #: plugins/ImageReader/ConfigUI.qml:187
  1765. msgctxt "@item:inlistbox"
  1766. msgid "Darker is higher"
  1767. msgstr "A sötétebb a magasabb"
  1768. #: plugins/ImageReader/ConfigUI.qml:188
  1769. msgctxt "@item:inlistbox"
  1770. msgid "Lighter is higher"
  1771. msgstr "A világosabb a magasabb"
  1772. #: plugins/ImageReader/ConfigUI.qml:195
  1773. msgctxt "@info:tooltip"
  1774. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1775. msgstr "A litofánok esetében a sötét képpontoknak a vastagabb helyek felelnek meg.Ez azért van így, mert minél vastagabb a hely, annál kevesebb fényt enged át.A magassági térképeknél a világosabb képpontok magasabb szintnek felelnek meg, tehát a generált 3D modellnél ezeket figyelembe kell venni.Ez azt is jelenti, hogy általában a generált modell a tényleges kép negatívja kell, hogy legyen."
  1776. #: plugins/ImageReader/ConfigUI.qml:205
  1777. msgctxt "@action:label"
  1778. msgid "Color Model"
  1779. msgstr ""
  1780. #: plugins/ImageReader/ConfigUI.qml:224
  1781. msgctxt "@item:inlistbox"
  1782. msgid "Linear"
  1783. msgstr ""
  1784. #: plugins/ImageReader/ConfigUI.qml:225
  1785. msgctxt "@item:inlistbox"
  1786. msgid "Translucency"
  1787. msgstr ""
  1788. #: plugins/ImageReader/ConfigUI.qml:232
  1789. msgctxt "@info:tooltip"
  1790. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1791. msgstr ""
  1792. #: plugins/ImageReader/ConfigUI.qml:242
  1793. msgctxt "@action:label"
  1794. msgid "1mm Transmittance (%)"
  1795. msgstr ""
  1796. #: plugins/ImageReader/ConfigUI.qml:263
  1797. msgctxt "@info:tooltip"
  1798. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1799. msgstr ""
  1800. #: plugins/ImageReader/ConfigUI.qml:274
  1801. msgctxt "@action:label"
  1802. msgid "Smoothing"
  1803. msgstr "Simítás"
  1804. #: plugins/ImageReader/ConfigUI.qml:298
  1805. msgctxt "@info:tooltip"
  1806. msgid "The amount of smoothing to apply to the image."
  1807. msgstr "A kép simításának mértéke."
  1808. #: plugins/ImageReader/ConfigUI.qml:329
  1809. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1810. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1811. msgctxt "@action:button"
  1812. msgid "OK"
  1813. msgstr "OK"
  1814. #: plugins/ImageReader/__init__.py:14
  1815. msgctxt "@item:inlistbox"
  1816. msgid "JPG Image"
  1817. msgstr "JPG kép"
  1818. #: plugins/ImageReader/__init__.py:18
  1819. msgctxt "@item:inlistbox"
  1820. msgid "JPEG Image"
  1821. msgstr "JPEG kép"
  1822. #: plugins/ImageReader/__init__.py:22
  1823. msgctxt "@item:inlistbox"
  1824. msgid "PNG Image"
  1825. msgstr "PNG kép"
  1826. #: plugins/ImageReader/__init__.py:26
  1827. msgctxt "@item:inlistbox"
  1828. msgid "BMP Image"
  1829. msgstr "BMP kép"
  1830. #: plugins/ImageReader/__init__.py:30
  1831. msgctxt "@item:inlistbox"
  1832. msgid "GIF Image"
  1833. msgstr "GIF kép"
  1834. #: plugins/LegacyProfileReader/__init__.py:14
  1835. msgctxt "@item:inlistbox"
  1836. msgid "Cura 15.04 profiles"
  1837. msgstr "Cura 15.04 profil"
  1838. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1839. msgctxt "@action"
  1840. msgid "Machine Settings"
  1841. msgstr "Gép beállítások"
  1842. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1843. msgctxt "@title:tab"
  1844. msgid "Printer"
  1845. msgstr "Nyomtató"
  1846. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1847. msgctxt "@title:label"
  1848. msgid "Nozzle Settings"
  1849. msgstr "Fűvóka beállítások"
  1850. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1851. msgctxt "@label"
  1852. msgid "Nozzle size"
  1853. msgstr "Fúvóka méret"
  1854. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1855. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1856. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1857. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1858. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1859. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1860. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1861. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1862. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1863. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1864. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1865. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1866. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1867. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1868. msgctxt "@label"
  1869. msgid "mm"
  1870. msgstr "mm"
  1871. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1872. msgctxt "@label"
  1873. msgid "Compatible material diameter"
  1874. msgstr "Nyomtatószál átmérő"
  1875. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1876. msgctxt "@label"
  1877. msgid "Nozzle offset X"
  1878. msgstr "Fúvóka X eltolás"
  1879. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1880. msgctxt "@label"
  1881. msgid "Nozzle offset Y"
  1882. msgstr "Fúvóka Y eltolás"
  1883. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1884. msgctxt "@label"
  1885. msgid "Cooling Fan Number"
  1886. msgstr "Hűtőventilátorok száma"
  1887. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1888. msgctxt "@title:label"
  1889. msgid "Extruder Start G-code"
  1890. msgstr "Extruder G-kód kezdés"
  1891. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1892. msgctxt "@title:label"
  1893. msgid "Extruder End G-code"
  1894. msgstr "Extruder G-kód zárás"
  1895. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1896. msgctxt "@title:label"
  1897. msgid "Printer Settings"
  1898. msgstr "Nyomtató beállítás"
  1899. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1900. msgctxt "@label"
  1901. msgid "X (Width)"
  1902. msgstr "X (Szélesség)"
  1903. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1904. msgctxt "@label"
  1905. msgid "Y (Depth)"
  1906. msgstr "Y (Mélység)"
  1907. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1908. msgctxt "@label"
  1909. msgid "Z (Height)"
  1910. msgstr "Z (Magasság)"
  1911. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1912. msgctxt "@label"
  1913. msgid "Build plate shape"
  1914. msgstr "Tárgyasztal alakja"
  1915. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1916. msgctxt "@label"
  1917. msgid "Origin at center"
  1918. msgstr "Origó középen"
  1919. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1920. msgctxt "@label"
  1921. msgid "Heated bed"
  1922. msgstr "Fűtött asztal"
  1923. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1924. msgctxt "@label"
  1925. msgid "Heated build volume"
  1926. msgstr "Fűtött nyomtatási tér"
  1927. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1928. msgctxt "@label"
  1929. msgid "G-code flavor"
  1930. msgstr "G-kód illesztés"
  1931. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1932. msgctxt "@title:label"
  1933. msgid "Printhead Settings"
  1934. msgstr "Nyomtatófej beállítások"
  1935. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1936. msgctxt "@label"
  1937. msgid "X min"
  1938. msgstr "X min"
  1939. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1940. msgctxt "@label"
  1941. msgid "Y min"
  1942. msgstr "Y min"
  1943. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1944. msgctxt "@label"
  1945. msgid "X max"
  1946. msgstr "X max"
  1947. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1948. msgctxt "@label"
  1949. msgid "Y max"
  1950. msgstr "Y max"
  1951. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1952. msgctxt "@label"
  1953. msgid "Gantry Height"
  1954. msgstr "Szán magasság"
  1955. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1956. msgctxt "@label"
  1957. msgid "Number of Extruders"
  1958. msgstr "Extruderek száma"
  1959. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1960. msgctxt "@label"
  1961. msgid "Apply Extruder offsets to GCode"
  1962. msgstr ""
  1963. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1964. msgctxt "@title:label"
  1965. msgid "Start G-code"
  1966. msgstr "G-kód kezdés"
  1967. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1968. msgctxt "@title:label"
  1969. msgid "End G-code"
  1970. msgstr "G-kód zárás"
  1971. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1972. msgctxt "@info:generic"
  1973. msgid "Do you want to sync material and software packages with your account?"
  1974. msgstr ""
  1975. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1976. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1977. msgctxt "@info:title"
  1978. msgid "Changes detected from your UltiMaker account"
  1979. msgstr ""
  1980. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1981. msgctxt "@action:button"
  1982. msgid "Sync"
  1983. msgstr ""
  1984. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1985. msgctxt "@info:generic"
  1986. msgid "Syncing..."
  1987. msgstr ""
  1988. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1989. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1990. msgctxt "@button"
  1991. msgid "Decline"
  1992. msgstr ""
  1993. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1994. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1995. msgctxt "@button"
  1996. msgid "Agree"
  1997. msgstr "Elfogadás"
  1998. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  1999. msgctxt "@title:window"
  2000. msgid "Plugin License Agreement"
  2001. msgstr "Kiegészítő licencszerződés"
  2002. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  2003. msgctxt "@button"
  2004. msgid "Decline and remove from account"
  2005. msgstr ""
  2006. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  2007. msgctxt "@info:generic"
  2008. msgid "You need to quit and restart {} before changes have effect."
  2009. msgstr ""
  2010. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  2011. msgctxt "@info:generic"
  2012. msgid "{} plugins failed to download"
  2013. msgstr ""
  2014. #: plugins/Marketplace/LocalPackageList.py:28
  2015. msgctxt "@label"
  2016. msgid "Installed Plugins"
  2017. msgstr ""
  2018. #: plugins/Marketplace/LocalPackageList.py:29
  2019. msgctxt "@label"
  2020. msgid "Installed Materials"
  2021. msgstr ""
  2022. #: plugins/Marketplace/LocalPackageList.py:33
  2023. msgctxt "@label"
  2024. msgid "Bundled Plugins"
  2025. msgstr ""
  2026. #: plugins/Marketplace/LocalPackageList.py:34
  2027. msgctxt "@label"
  2028. msgid "Bundled Materials"
  2029. msgstr ""
  2030. #: plugins/Marketplace/PackageModel.py:43
  2031. msgctxt "@label:property"
  2032. msgid "Unknown Package"
  2033. msgstr ""
  2034. #: plugins/Marketplace/PackageModel.py:66
  2035. msgctxt "@label:property"
  2036. msgid "Unknown Author"
  2037. msgstr ""
  2038. #: plugins/Marketplace/PackageModel.py:95
  2039. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  2040. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  2041. msgstr ""
  2042. #: plugins/Marketplace/RemotePackageList.py:117
  2043. msgctxt "@info:error"
  2044. msgid "Could not interpret the server's response."
  2045. msgstr ""
  2046. #: plugins/Marketplace/RemotePackageList.py:148
  2047. msgctxt "@info:error"
  2048. msgid "Could not reach Marketplace."
  2049. msgstr ""
  2050. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2051. msgctxt "@title"
  2052. msgid "Changes from your account"
  2053. msgstr ""
  2054. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2055. msgctxt "@button"
  2056. msgid "Dismiss"
  2057. msgstr ""
  2058. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2059. #: resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2060. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  2061. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  2062. msgctxt "@button"
  2063. msgid "Next"
  2064. msgstr "Következő"
  2065. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2066. msgctxt "@label"
  2067. msgid "The following packages will be added:"
  2068. msgstr ""
  2069. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2070. msgctxt "@label"
  2071. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2072. msgstr ""
  2073. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2074. msgctxt "@title"
  2075. msgid "Install missing Materials"
  2076. msgstr ""
  2077. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2078. msgctxt "@button"
  2079. msgid "Plugin license agreement"
  2080. msgstr ""
  2081. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2082. msgctxt "@text"
  2083. msgid "Please read and agree with the plugin licence."
  2084. msgstr ""
  2085. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2086. msgctxt "@button"
  2087. msgid "Accept"
  2088. msgstr ""
  2089. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2090. msgctxt "@info:tooltip"
  2091. msgid "Manage packages"
  2092. msgstr ""
  2093. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  2094. msgctxt "@header"
  2095. msgid "Manage packages"
  2096. msgstr ""
  2097. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  2098. msgctxt "@text"
  2099. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2100. msgstr ""
  2101. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  2102. msgctxt "@title"
  2103. msgid "Loading..."
  2104. msgstr ""
  2105. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  2106. msgctxt "@button"
  2107. msgid "Plugins"
  2108. msgstr ""
  2109. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  2110. msgctxt "@button"
  2111. msgid "Materials"
  2112. msgstr ""
  2113. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  2114. msgctxt "@info"
  2115. msgid "Search in the browser"
  2116. msgstr ""
  2117. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  2118. msgctxt "@button"
  2119. msgid "In order to use the package you will need to restart Cura"
  2120. msgstr ""
  2121. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  2122. msgctxt "@info:button, %1 is the application name"
  2123. msgid "Quit %1"
  2124. msgstr ""
  2125. #: plugins/Marketplace/resources/qml/Materials.qml:8
  2126. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2127. msgctxt "@header"
  2128. msgid "Install Materials"
  2129. msgstr ""
  2130. #: plugins/Marketplace/resources/qml/Materials.qml:12
  2131. msgctxt "@text"
  2132. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2133. msgstr ""
  2134. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2135. msgctxt "@label"
  2136. msgid "You need to accept the license to install the package"
  2137. msgstr ""
  2138. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2139. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  2140. msgctxt "@button:label"
  2141. msgid "Learn More"
  2142. msgstr ""
  2143. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  2144. msgctxt "@label Is followed by the name of an author"
  2145. msgid "By"
  2146. msgstr ""
  2147. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2148. msgctxt "@button"
  2149. msgid "Disable"
  2150. msgstr ""
  2151. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  2152. msgctxt "@button"
  2153. msgid "Enable"
  2154. msgstr ""
  2155. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2156. msgctxt "@button"
  2157. msgid "Downgrading..."
  2158. msgstr ""
  2159. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  2160. msgctxt "@button"
  2161. msgid "Downgrade"
  2162. msgstr ""
  2163. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  2164. msgctxt "@button"
  2165. msgid "Installing..."
  2166. msgstr ""
  2167. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  2168. msgctxt "@button"
  2169. msgid "Install"
  2170. msgstr ""
  2171. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  2172. msgctxt "@button"
  2173. msgid "Uninstall"
  2174. msgstr ""
  2175. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2176. msgctxt "@button"
  2177. msgid "Update"
  2178. msgstr ""
  2179. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  2180. msgctxt "@button"
  2181. msgid "Updating..."
  2182. msgstr ""
  2183. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2184. msgctxt "@header"
  2185. msgid "Package details"
  2186. msgstr ""
  2187. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2188. msgctxt "@button:tooltip"
  2189. msgid "Back"
  2190. msgstr ""
  2191. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  2192. msgctxt "@header"
  2193. msgid "Description"
  2194. msgstr ""
  2195. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  2196. msgctxt "@header"
  2197. msgid "Compatible printers"
  2198. msgstr ""
  2199. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  2200. msgctxt "@info"
  2201. msgid "No compatibility information"
  2202. msgstr ""
  2203. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  2204. msgctxt "@header"
  2205. msgid "Compatible support materials"
  2206. msgstr ""
  2207. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  2208. msgctxt "@info No materials"
  2209. msgid "None"
  2210. msgstr ""
  2211. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  2212. msgctxt "@header"
  2213. msgid "Compatible with Material Station"
  2214. msgstr ""
  2215. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2216. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2217. msgctxt "@info"
  2218. msgid "No"
  2219. msgstr ""
  2220. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  2221. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  2222. msgctxt "@info"
  2223. msgid "Yes"
  2224. msgstr ""
  2225. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  2226. msgctxt "@header"
  2227. msgid "Optimized for Air Manager"
  2228. msgstr ""
  2229. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2230. msgctxt "@button"
  2231. msgid "Visit plug-in website"
  2232. msgstr ""
  2233. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  2234. msgctxt "@button"
  2235. msgid "Website"
  2236. msgstr ""
  2237. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  2238. msgctxt "@button"
  2239. msgid "Buy spool"
  2240. msgstr ""
  2241. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  2242. msgctxt "@button"
  2243. msgid "Safety datasheet"
  2244. msgstr ""
  2245. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  2246. msgctxt "@button"
  2247. msgid "Technical datasheet"
  2248. msgstr ""
  2249. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2250. msgctxt "@button"
  2251. msgid "Failed to load packages:"
  2252. msgstr ""
  2253. #: plugins/Marketplace/resources/qml/Packages.qml:151
  2254. msgctxt "@button"
  2255. msgid "Retry?"
  2256. msgstr ""
  2257. #: plugins/Marketplace/resources/qml/Packages.qml:167
  2258. msgctxt "@button"
  2259. msgid "Loading"
  2260. msgstr ""
  2261. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2262. msgctxt "@message"
  2263. msgid "No more results to load"
  2264. msgstr ""
  2265. #: plugins/Marketplace/resources/qml/Packages.qml:183
  2266. msgctxt "@message"
  2267. msgid "No results found with current filter"
  2268. msgstr ""
  2269. #: plugins/Marketplace/resources/qml/Packages.qml:226
  2270. msgctxt "@button"
  2271. msgid "Load more"
  2272. msgstr ""
  2273. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  2274. msgctxt "@header"
  2275. msgid "Install Plugins"
  2276. msgstr ""
  2277. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  2278. msgctxt "@text"
  2279. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2280. msgstr ""
  2281. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2282. msgctxt "@info"
  2283. msgid "UltiMaker Verified Plug-in"
  2284. msgstr ""
  2285. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2286. msgctxt "@info"
  2287. msgid "UltiMaker Certified Material"
  2288. msgstr ""
  2289. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2290. msgctxt "@info"
  2291. msgid "UltiMaker Verified Package"
  2292. msgstr ""
  2293. #: plugins/ModelChecker/ModelChecker.py:31
  2294. msgctxt "@info:title"
  2295. msgid "3D Model Assistant"
  2296. msgstr "3D-s modellsegéd"
  2297. #: plugins/ModelChecker/ModelChecker.py:97
  2298. #, python-brace-format
  2299. msgctxt "@info:status"
  2300. msgid ""
  2301. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  2302. "<p>{model_names}</p>\n"
  2303. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  2304. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  2305. msgstr ""
  2306. "<p>Lehetséges, hogy egy vagy több 3D-s modellt nem lehet optimálisan kinyomtatni a modell mérete és az anyagkonfiguráció miatt:</p>\n"
  2307. "<p>{model_names}</p>\n"
  2308. "<p>Itt Megtudhatja, hogyan lehet a lehető legjobb nyomtatási minőséget és megbízhatóságot biztosítani.</p>\n"
  2309. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  2310. #: plugins/MonitorStage/MonitorMain.qml:100
  2311. msgctxt "@info"
  2312. msgid ""
  2313. "Please make sure your printer has a connection:\n"
  2314. "- Check if the printer is turned on.\n"
  2315. "- Check if the printer is connected to the network.\n"
  2316. "- Check if you are signed in to discover cloud-connected printers."
  2317. msgstr ""
  2318. "Győződj meg, hogy a nyomtató csatlakozása rendben van:\n"
  2319. "- Ellenőrizd, hogy a nyomtató be van-e kapcsolva.\n"
  2320. "- Ellenőrizd, hogy a nyomtató csatlakozik a hálózathoz\n"
  2321. "- Ellenőrizd, hogy fel vagy-e jelentkezve a felhőbe."
  2322. #: plugins/MonitorStage/MonitorMain.qml:113
  2323. msgctxt "@info"
  2324. msgid "Please connect your printer to the network."
  2325. msgstr "Csatlakoztasd a nyomtatót a hálózathoz."
  2326. #: plugins/MonitorStage/MonitorMain.qml:148
  2327. msgctxt "@label link to technical assistance"
  2328. msgid "View user manuals online"
  2329. msgstr "Nézd meg az online felhasználói kézikönyvet"
  2330. #: plugins/MonitorStage/MonitorMain.qml:164
  2331. msgctxt "@info"
  2332. msgid "In order to monitor your print from Cura, please connect the printer."
  2333. msgstr ""
  2334. #: plugins/MonitorStage/__init__.py:14
  2335. msgctxt "@item:inmenu"
  2336. msgid "Monitor"
  2337. msgstr "Monitor"
  2338. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2339. msgctxt "@label"
  2340. msgid "Mesh Type"
  2341. msgstr "Háló típus"
  2342. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2343. msgctxt "@label"
  2344. msgid "Normal model"
  2345. msgstr "Normál mód"
  2346. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2347. msgctxt "@label"
  2348. msgid "Print as support"
  2349. msgstr "Támaszként nyomtassa"
  2350. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2351. msgctxt "@label"
  2352. msgid "Modify settings for overlaps"
  2353. msgstr ""
  2354. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2355. msgctxt "@label"
  2356. msgid "Don't support overlaps"
  2357. msgstr ""
  2358. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2359. msgctxt "@item:inlistbox"
  2360. msgid "Infill mesh only"
  2361. msgstr ""
  2362. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2363. msgctxt "@item:inlistbox"
  2364. msgid "Cutting mesh"
  2365. msgstr ""
  2366. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2367. msgctxt "@action:button"
  2368. msgid "Select settings"
  2369. msgstr "Beállítások kiválasztása"
  2370. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2371. msgctxt "@title:window"
  2372. msgid "Select Settings to Customize for this model"
  2373. msgstr "A modellek egyéni beállításainak kiválasztása"
  2374. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2375. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2376. msgctxt "@label:textbox"
  2377. msgid "Filter..."
  2378. msgstr "Szűrés..."
  2379. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2380. msgctxt "@label:checkbox"
  2381. msgid "Show all"
  2382. msgstr "Mindent mutat"
  2383. #: plugins/PerObjectSettingsTool/__init__.py:14
  2384. msgctxt "@label"
  2385. msgid "Per Model Settings"
  2386. msgstr "Modellenkénti beállítások"
  2387. #: plugins/PerObjectSettingsTool/__init__.py:15
  2388. msgctxt "@info:tooltip"
  2389. msgid "Configure Per Model Settings"
  2390. msgstr "Modellenkénti beállítások konfigurálása"
  2391. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2392. msgctxt "@item:inmenu"
  2393. msgid "Post Processing"
  2394. msgstr "Utólagos műveletek"
  2395. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2396. msgctxt "@item:inmenu"
  2397. msgid "Modify G-Code"
  2398. msgstr "G-kód módosítás"
  2399. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2400. msgctxt "@title:window"
  2401. msgid "Post Processing Plugin"
  2402. msgstr "Utó művelet beépülő"
  2403. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2404. msgctxt "@label"
  2405. msgid "Post Processing Scripts"
  2406. msgstr "Utó művelet szkript"
  2407. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2408. msgctxt "@action"
  2409. msgid "Add a script"
  2410. msgstr "Adjon hozzá egy szkriptet"
  2411. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2412. msgctxt "@label"
  2413. msgid "Settings"
  2414. msgstr "Beállítások"
  2415. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2416. msgctxt "@info:tooltip"
  2417. msgid "Change active post-processing scripts."
  2418. msgstr ""
  2419. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2420. msgctxt "@info:tooltip"
  2421. msgid "The following script is active:"
  2422. msgid_plural "The following scripts are active:"
  2423. msgstr[0] ""
  2424. msgstr[1] ""
  2425. #: plugins/PrepareStage/PrepareMenu.qml:74
  2426. msgctxt "@button"
  2427. msgid "Add printer"
  2428. msgstr "Nyomtató hozzáadása"
  2429. #: plugins/PrepareStage/PrepareMenu.qml:90
  2430. msgctxt "@button"
  2431. msgid "Manage printers"
  2432. msgstr "Nyomtatók kezelése"
  2433. #: plugins/PrepareStage/__init__.py:12
  2434. msgctxt "@item:inmenu"
  2435. msgid "Prepare"
  2436. msgstr "Előkészítés"
  2437. #: plugins/PreviewStage/__init__.py:13
  2438. msgctxt "@item:inmenu"
  2439. msgid "Preview"
  2440. msgstr "Előnézet"
  2441. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2442. msgctxt "@action:button Preceded by 'Ready to'."
  2443. msgid "Save to Removable Drive"
  2444. msgstr "Mentés külső meghajtóra"
  2445. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2446. #, python-brace-format
  2447. msgctxt "@item:inlistbox"
  2448. msgid "Save to Removable Drive {0}"
  2449. msgstr "Mentés külső meghajtóra {0}"
  2450. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2451. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2452. msgctxt "@info:status"
  2453. msgid "There are no file formats available to write with!"
  2454. msgstr "Nincsenek elérhető fájlformátumok az íráshoz!"
  2455. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2456. #, python-brace-format
  2457. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2458. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2459. msgstr "Mentés külső meghajóra <filename>{0}</filename>"
  2460. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2461. msgctxt "@info:title"
  2462. msgid "Saving"
  2463. msgstr "Mentés"
  2464. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2465. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2466. #, python-brace-format
  2467. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2468. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2469. msgstr "Sikertelen mentés <filename>{0}</filename>: <message>{1}</message>"
  2470. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2471. #, python-brace-format
  2472. msgctxt "@info:status Don't translate the tag {device}!"
  2473. msgid "Could not find a file name when trying to write to {device}."
  2474. msgstr "Nem található a fájlnév {device} -on az írási művelethez."
  2475. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2476. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2477. #, python-brace-format
  2478. msgctxt "@info:status"
  2479. msgid "Could not save to removable drive {0}: {1}"
  2480. msgstr "Sikertelen mentés a {0}: {1} meghajtóra."
  2481. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2482. #, python-brace-format
  2483. msgctxt "@info:status"
  2484. msgid "Saved to Removable Drive {0} as {1}"
  2485. msgstr "Mentve a {0} meghajtóra, mint {1}"
  2486. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2487. msgctxt "@info:title"
  2488. msgid "File Saved"
  2489. msgstr "Fájl Mentve"
  2490. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2491. msgctxt "@action:button"
  2492. msgid "Eject"
  2493. msgstr "Leválaszt"
  2494. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2495. #, python-brace-format
  2496. msgctxt "@action"
  2497. msgid "Eject removable device {0}"
  2498. msgstr "{0} meghajtó leválasztása"
  2499. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2500. #, python-brace-format
  2501. msgctxt "@info:status"
  2502. msgid "Ejected {0}. You can now safely remove the drive."
  2503. msgstr "{0} leválasztva. Eltávolíthatod az adathordozót."
  2504. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2505. msgctxt "@info:title"
  2506. msgid "Safely Remove Hardware"
  2507. msgstr "Hardver biztonságos eltávolítása"
  2508. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2509. #, python-brace-format
  2510. msgctxt "@info:status"
  2511. msgid "Failed to eject {0}. Another program may be using the drive."
  2512. msgstr "{0} leválasztása sikertelen. A meghajtó használatban van."
  2513. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2514. msgctxt "@item:intext"
  2515. msgid "Removable Drive"
  2516. msgstr "Cserélhető meghajtó"
  2517. #: plugins/SimulationView/SimulationView.py:129
  2518. msgctxt "@info:status"
  2519. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  2520. msgstr ""
  2521. #: plugins/SimulationView/SimulationView.py:130
  2522. msgctxt "@info:title"
  2523. msgid "Simulation View"
  2524. msgstr "Szimuláció nézet"
  2525. #: plugins/SimulationView/SimulationView.py:133
  2526. msgctxt "@info:status"
  2527. msgid "Nothing is shown because you need to slice first."
  2528. msgstr ""
  2529. #: plugins/SimulationView/SimulationView.py:134
  2530. msgctxt "@info:title"
  2531. msgid "No layers to show"
  2532. msgstr ""
  2533. #: plugins/SimulationView/SimulationView.py:136
  2534. #: plugins/SolidView/SolidView.py:74
  2535. msgctxt "@info:option_text"
  2536. msgid "Do not show this message again"
  2537. msgstr ""
  2538. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2539. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2540. msgctxt "@label"
  2541. msgid "Color scheme"
  2542. msgstr "Szín séma"
  2543. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2544. msgctxt "@label:listbox"
  2545. msgid "Material Color"
  2546. msgstr "Alapanyag szín"
  2547. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2548. msgctxt "@label:listbox"
  2549. msgid "Line Type"
  2550. msgstr "Vonal típus"
  2551. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2552. msgctxt "@label:listbox"
  2553. msgid "Speed"
  2554. msgstr ""
  2555. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2556. msgctxt "@label:listbox"
  2557. msgid "Layer Thickness"
  2558. msgstr ""
  2559. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2560. msgctxt "@label:listbox"
  2561. msgid "Line Width"
  2562. msgstr ""
  2563. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2564. msgctxt "@label:listbox"
  2565. msgid "Flow"
  2566. msgstr ""
  2567. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2568. msgctxt "@label"
  2569. msgid "Compatibility Mode"
  2570. msgstr "Kompatibilis mód"
  2571. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2572. msgctxt "@label"
  2573. msgid "Travels"
  2574. msgstr "Átmozgás"
  2575. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2576. msgctxt "@label"
  2577. msgid "Helpers"
  2578. msgstr "Segítők"
  2579. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2580. msgctxt "@label"
  2581. msgid "Shell"
  2582. msgstr "Héj"
  2583. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2584. msgctxt "@label"
  2585. msgid "Infill"
  2586. msgstr "Kitöltés"
  2587. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2588. msgctxt "@label"
  2589. msgid "Starts"
  2590. msgstr ""
  2591. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2592. msgctxt "@label"
  2593. msgid "Only Show Top Layers"
  2594. msgstr "Csak a felső rétegek megjelenítése"
  2595. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2596. msgctxt "@label"
  2597. msgid "Show 5 Detailed Layers On Top"
  2598. msgstr "Mutasson 5 felső réteget részletesen"
  2599. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2600. msgctxt "@label"
  2601. msgid "Top / Bottom"
  2602. msgstr "Felső / Alsó"
  2603. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2604. msgctxt "@label"
  2605. msgid "Inner Wall"
  2606. msgstr "Belső fal"
  2607. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2608. msgctxt "@label"
  2609. msgid "min"
  2610. msgstr "min"
  2611. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2612. msgctxt "@label"
  2613. msgid "max"
  2614. msgstr "max"
  2615. #: plugins/SimulationView/__init__.py:15
  2616. msgctxt "@item:inlistbox"
  2617. msgid "Layer view"
  2618. msgstr "Réteg nézet"
  2619. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2620. msgctxt "@title:window"
  2621. msgid "More information on anonymous data collection"
  2622. msgstr "További információ a névtelen adatgyűjtésről"
  2623. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2624. msgctxt "@text:window"
  2625. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2626. msgstr "Az UltiMaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javítása érdekében. Az alábbiakban található egy példa az összes megosztott adatra:"
  2627. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2628. msgctxt "@text:window"
  2629. msgid "I don't want to send anonymous data"
  2630. msgstr "Nem szeretnék részt venni az adatgyűjtésben"
  2631. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2632. msgctxt "@text:window"
  2633. msgid "Allow sending anonymous data"
  2634. msgstr "Anonim adatok küldésének engedélyezése"
  2635. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2636. msgctxt "@text"
  2637. msgid "Unable to read example data file."
  2638. msgstr ""
  2639. #: plugins/SolidView/SolidView.py:71
  2640. msgctxt "@info:status"
  2641. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2642. msgstr ""
  2643. #: plugins/SolidView/SolidView.py:73
  2644. msgctxt "@info:title"
  2645. msgid "Model Errors"
  2646. msgstr ""
  2647. #: plugins/SolidView/__init__.py:12
  2648. msgctxt "@item:inmenu"
  2649. msgid "Solid view"
  2650. msgstr "Felület nézet"
  2651. #: plugins/SupportEraser/__init__.py:12
  2652. msgctxt "@label"
  2653. msgid "Support Blocker"
  2654. msgstr "Támasz blokkoló"
  2655. #: plugins/SupportEraser/__init__.py:13
  2656. msgctxt "@info:tooltip"
  2657. msgid "Create a volume in which supports are not printed."
  2658. msgstr "Hozzon létre egy kötetet, amelyben a támaszok nem kerülnek nyomtatásra."
  2659. #: plugins/TrimeshReader/__init__.py:15
  2660. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2661. msgid "Open Compressed Triangle Mesh"
  2662. msgstr ""
  2663. #: plugins/TrimeshReader/__init__.py:19
  2664. msgctxt "@item:inlistbox"
  2665. msgid "COLLADA Digital Asset Exchange"
  2666. msgstr "COLLADA digitális eszközcsere"
  2667. #: plugins/TrimeshReader/__init__.py:23
  2668. msgctxt "@item:inlistbox"
  2669. msgid "glTF Binary"
  2670. msgstr "glTF Bináris"
  2671. #: plugins/TrimeshReader/__init__.py:27
  2672. msgctxt "@item:inlistbox"
  2673. msgid "glTF Embedded JSON"
  2674. msgstr "glTF beágyazott JSON"
  2675. #: plugins/TrimeshReader/__init__.py:36
  2676. msgctxt "@item:inlistbox"
  2677. msgid "Stanford Triangle Format"
  2678. msgstr "Stanford háromszög formátum"
  2679. #: plugins/TrimeshReader/__init__.py:40
  2680. msgctxt "@item:inlistbox"
  2681. msgid "Compressed COLLADA Digital Asset Exchange"
  2682. msgstr "Tömörített COLLADA digitális eszközcsere"
  2683. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2684. msgctxt "@item:inlistbox"
  2685. msgid "UltiMaker Format Package"
  2686. msgstr "UltiMaker formátumcsomag"
  2687. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2688. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2689. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2690. msgctxt "@info:error"
  2691. msgid "Can't write to UFP file:"
  2692. msgstr ""
  2693. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2694. msgctxt "@title:window"
  2695. msgid "Connect to Networked Printer"
  2696. msgstr "Csatlakozás hálózati nyomtatóhoz"
  2697. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2698. msgctxt "@label"
  2699. msgid "Select your printer from the list below:"
  2700. msgstr "Válaszd ki a nyomtatódat az alábbi listából:"
  2701. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2702. msgctxt "@label"
  2703. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2704. msgstr "Ha hálózaton keresztül szeretnél közvetlenül nyomtatni, akkor győződj meg arról, hogy a nyomtató csatlakozik vezetékes, vagy vezeték nélküli hálózathoz. Ha nincs elérhető hálózat, akkor közvetlenül USB kapcsolaton keresztül is tudsz nyomtatni."
  2705. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2706. msgctxt "@action:button"
  2707. msgid "Edit"
  2708. msgstr "Szerkeszt"
  2709. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2710. #: resources/qml/Preferences/MachinesPage.qml:153
  2711. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2712. #: resources/qml/Preferences/ProfilesPage.qml:321
  2713. msgctxt "@action:button"
  2714. msgid "Remove"
  2715. msgstr "Eltávolít"
  2716. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2717. msgctxt "@action:button"
  2718. msgid "Refresh"
  2719. msgstr "Frissít"
  2720. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2721. msgctxt "@label"
  2722. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2723. msgstr "Ha a nyomtatód nincs a listában, olvasd el a <a href='%1'>hálózati nyomtatás hibaelhárítási útmutatót</a>"
  2724. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2725. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2726. msgctxt "@label"
  2727. msgid "Type"
  2728. msgstr "Típus"
  2729. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2730. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2731. msgctxt "@label"
  2732. msgid "Firmware version"
  2733. msgstr "Frimware verzió"
  2734. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2735. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2736. msgctxt "@label"
  2737. msgid "Address"
  2738. msgstr "Cím"
  2739. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2740. msgctxt "@label"
  2741. msgid "This printer is not set up to host a group of printers."
  2742. msgstr "Ez a nyomtató nem úgy van beállítva, hogy nyomtatócsoportot üzemeltessen."
  2743. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2744. msgctxt "@label"
  2745. msgid "This printer is the host for a group of %1 printers."
  2746. msgstr "Ez a nyomtató gazdagépe a %1 nyomtatócsoportnak."
  2747. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2748. msgctxt "@label"
  2749. msgid "The printer at this address has not yet responded."
  2750. msgstr "A címen található nyomtató még nem válaszolt."
  2751. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2752. msgctxt "@action:button"
  2753. msgid "Connect"
  2754. msgstr "Csatlakozás"
  2755. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2756. msgctxt "@title:window"
  2757. msgid "Invalid IP address"
  2758. msgstr "Hibás IP cím"
  2759. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2760. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2761. msgctxt "@text"
  2762. msgid "Please enter a valid IP address."
  2763. msgstr "Kérlek adj meg egy érvényes IP címet."
  2764. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2765. msgctxt "@title:window"
  2766. msgid "Printer Address"
  2767. msgstr "Nyomtató cím"
  2768. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2769. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2770. msgctxt "@label"
  2771. msgid "Enter the IP address of your printer on the network."
  2772. msgstr "Írd be a nyomtató hálózati IP címét."
  2773. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2774. msgctxt "@title:window"
  2775. msgid "Configuration Changes"
  2776. msgstr "Konfiguráció változások"
  2777. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2778. msgctxt "@action:button"
  2779. msgid "Override"
  2780. msgstr "Felülírás"
  2781. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2782. msgctxt "@label"
  2783. msgid "The assigned printer, %1, requires the following configuration change:"
  2784. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2785. msgstr[0] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatás szükséges:"
  2786. msgstr[1] "A hozzárendelt nyomtatóhoz, %1, a következő konfigurációs változtatások szükségesek:"
  2787. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2788. msgctxt "@label"
  2789. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2790. msgstr "A %1 nyomtató hozzá van rendelve a feladathoz, azonban az ismeretlen anyagot tartalmaz."
  2791. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2792. msgctxt "@label"
  2793. msgid "Change material %1 from %2 to %3."
  2794. msgstr "Változtasd meg az %1 anyagot %2 -ről %3 -ra."
  2795. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2796. msgctxt "@label"
  2797. msgid "Load %3 as material %1 (This cannot be overridden)."
  2798. msgstr "Töltsd be %3 -at %1 anyagként. (Ez nem felülbírálható)."
  2799. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2800. msgctxt "@label"
  2801. msgid "Change print core %1 from %2 to %3."
  2802. msgstr "Cseréld a nyomtató magot %1 -ről %2 -re, %3 -hoz."
  2803. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2804. msgctxt "@label"
  2805. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2806. msgstr "A felülbírálás a megadott beállításokat fogja használni a meglévő nyomtató konfigurációval, azonban ez eredménytelen nyomtatáshoz vezethet."
  2807. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2808. msgctxt "@label"
  2809. msgid "Move to top"
  2810. msgstr "Lépj a tetjére"
  2811. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2812. msgctxt "@label"
  2813. msgid "Delete"
  2814. msgstr "Törlés"
  2815. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2816. #: resources/qml/MonitorButton.qml:284
  2817. msgctxt "@label"
  2818. msgid "Resume"
  2819. msgstr "Folytat"
  2820. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2821. msgctxt "@label"
  2822. msgid "Pausing..."
  2823. msgstr "Várakozás..."
  2824. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2825. msgctxt "@label"
  2826. msgid "Resuming..."
  2827. msgstr "Folytatás..."
  2828. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2829. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2830. msgctxt "@label"
  2831. msgid "Pause"
  2832. msgstr "Várakozás"
  2833. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2834. msgctxt "@label"
  2835. msgid "Abort"
  2836. msgstr "Megszakít"
  2837. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2838. msgctxt "@label"
  2839. msgid "Aborting..."
  2840. msgstr "Megszakítás..."
  2841. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2842. msgctxt "@label %1 is the name of a print job."
  2843. msgid "Are you sure you want to move %1 to the top of the queue?"
  2844. msgstr "Biztos, hogy a %1 a nyomtatási sor elejére akarod mozgatni?"
  2845. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2846. msgctxt "@window:title"
  2847. msgid "Move print job to top"
  2848. msgstr "Tedd a nyomtatási sor elejére"
  2849. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2850. msgctxt "@label %1 is the name of a print job."
  2851. msgid "Are you sure you want to delete %1?"
  2852. msgstr "Biztos, hogy törölni szeretnéd %1?"
  2853. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2854. msgctxt "@window:title"
  2855. msgid "Delete print job"
  2856. msgstr "Nyomtatási feladat törlés"
  2857. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2858. msgctxt "@label %1 is the name of a print job."
  2859. msgid "Are you sure you want to abort %1?"
  2860. msgstr "Biztosan meg akarod szakítani %1?"
  2861. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2862. #: resources/qml/MonitorButton.qml:326
  2863. msgctxt "@window:title"
  2864. msgid "Abort print"
  2865. msgstr "Nyomtatás megszakítás"
  2866. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2867. msgctxt "@label"
  2868. msgid "Unavailable printer"
  2869. msgstr "Elérhetetlen nyomtató"
  2870. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2871. msgctxt "@label"
  2872. msgid "First available"
  2873. msgstr "Az első elérhető"
  2874. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2875. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2876. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2877. msgctxt "@info"
  2878. msgid "Please update your printer's firmware to manage the queue remotely."
  2879. msgstr "A távoli nyomtatásisor kezeléshez kérjük frissítse a firmware-t."
  2880. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2881. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2882. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2883. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2884. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2885. msgctxt "@label:status"
  2886. msgid "Aborted"
  2887. msgstr "Megszakítva"
  2888. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2889. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2890. msgctxt "@label:status"
  2891. msgid "Finished"
  2892. msgstr "Befejezve"
  2893. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2894. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2895. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2896. msgctxt "@label:status"
  2897. msgid "Preparing..."
  2898. msgstr "Előkészítés..."
  2899. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2900. msgctxt "@label:status"
  2901. msgid "Aborting..."
  2902. msgstr "Megszakítás..."
  2903. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2904. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2905. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2906. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2907. msgctxt "@label:status"
  2908. msgid "Failed"
  2909. msgstr ""
  2910. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2911. msgctxt "@label:status"
  2912. msgid "Pausing..."
  2913. msgstr "Várakozás..."
  2914. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2915. msgctxt "@label:status"
  2916. msgid "Paused"
  2917. msgstr "Várakozás"
  2918. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2919. msgctxt "@label:status"
  2920. msgid "Resuming..."
  2921. msgstr "Folytatás..."
  2922. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2923. msgctxt "@label:status"
  2924. msgid "Action required"
  2925. msgstr "Beavatkozás szükséges"
  2926. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2927. msgctxt "@label:status"
  2928. msgid "Finishes %1 at %2"
  2929. msgstr "Befejezve %1 a %2 -ből"
  2930. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2931. msgctxt "@label link to Connect and Cloud interfaces"
  2932. msgid "Manage printer"
  2933. msgstr "Nyomtató kezelés"
  2934. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2935. msgctxt "@info"
  2936. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2937. msgstr ""
  2938. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2939. msgctxt "@label:status"
  2940. msgid "Loading..."
  2941. msgstr "Betöltés..."
  2942. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2943. msgctxt "@label:status"
  2944. msgid "Unavailable"
  2945. msgstr "Elérhetetlen"
  2946. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2947. msgctxt "@label:status"
  2948. msgid "Unreachable"
  2949. msgstr "Elérhetetlen"
  2950. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2951. msgctxt "@label:status"
  2952. msgid "Idle"
  2953. msgstr "Készenlét"
  2954. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2955. msgctxt "@label:status"
  2956. msgid "Printing"
  2957. msgstr ""
  2958. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2959. msgctxt "@label"
  2960. msgid "Untitled"
  2961. msgstr "Felirat nélküli"
  2962. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2963. msgctxt "@label"
  2964. msgid "Anonymous"
  2965. msgstr "Névtelen"
  2966. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2967. msgctxt "@label:status"
  2968. msgid "Requires configuration changes"
  2969. msgstr "A konfiguráció változtatásokat igényel"
  2970. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2971. msgctxt "@action:button"
  2972. msgid "Details"
  2973. msgstr "Részletek"
  2974. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2975. msgctxt "@label"
  2976. msgid "Queued"
  2977. msgstr "Nyomtatási Sor"
  2978. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2979. msgctxt "@label link to connect manager"
  2980. msgid "Manage in browser"
  2981. msgstr "Kezelés a böngészőben"
  2982. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2983. msgctxt "@label"
  2984. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2985. msgstr "Nincs a sorban nyomtatási feladat. Szeletelj és adj hozzá egy feladatot."
  2986. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2987. msgctxt "@label"
  2988. msgid "Print jobs"
  2989. msgstr "Nyomtatások"
  2990. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2991. msgctxt "@label"
  2992. msgid "Total print time"
  2993. msgstr "Teljes nyomtatási idő"
  2994. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2995. msgctxt "@label"
  2996. msgid "Waiting for"
  2997. msgstr "Várakozom"
  2998. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  2999. msgctxt "@info"
  3000. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  3001. msgstr ""
  3002. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  3003. msgctxt "@button"
  3004. msgid "View printers in Digital Factory"
  3005. msgstr ""
  3006. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  3007. msgctxt "@title:window"
  3008. msgid "Print over network"
  3009. msgstr "Nyomtatás hálózaton"
  3010. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  3011. msgctxt "@action:button"
  3012. msgid "Print"
  3013. msgstr "Nyomtatás"
  3014. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  3015. msgctxt "@label"
  3016. msgid "Printer selection"
  3017. msgstr "Nyomtató kiválasztás"
  3018. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  3019. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  3020. msgctxt "@action:button"
  3021. msgid "Print via cloud"
  3022. msgstr ""
  3023. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  3024. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  3025. msgctxt "@properties:tooltip"
  3026. msgid "Print via cloud"
  3027. msgstr ""
  3028. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  3029. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  3030. msgctxt "@info:status"
  3031. msgid "Connected via cloud"
  3032. msgstr ""
  3033. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  3034. msgctxt "@action:button"
  3035. msgid "Monitor print"
  3036. msgstr ""
  3037. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  3038. msgctxt "@action:tooltip"
  3039. msgid "Track the print in Ultimaker Digital Factory"
  3040. msgstr ""
  3041. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  3042. #, python-brace-format
  3043. msgctxt "@error:send"
  3044. msgid "Unknown error code when uploading print job: {0}"
  3045. msgstr ""
  3046. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  3047. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  3048. msgctxt "info:name"
  3049. msgid "Ultimaker Digital Factory"
  3050. msgstr ""
  3051. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  3052. #, python-brace-format
  3053. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3054. msgid "{printer_name} will be removed until the next account sync."
  3055. msgstr ""
  3056. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  3057. #, python-brace-format
  3058. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3059. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3060. msgstr ""
  3061. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  3062. #, python-brace-format
  3063. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3064. msgid "Are you sure you want to remove {printer_name} temporarily?"
  3065. msgstr ""
  3066. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  3067. msgctxt "@title:window"
  3068. msgid "Remove printers?"
  3069. msgstr ""
  3070. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  3071. #, python-brace-format
  3072. msgctxt "@label"
  3073. msgid ""
  3074. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  3075. "Are you sure you want to continue?"
  3076. msgid_plural ""
  3077. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  3078. "Are you sure you want to continue?"
  3079. msgstr[0] ""
  3080. msgstr[1] ""
  3081. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  3082. msgctxt "@label"
  3083. msgid ""
  3084. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  3085. "Are you sure you want to continue?"
  3086. msgstr ""
  3087. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  3088. #, python-brace-format
  3089. msgctxt "@info:status"
  3090. msgid ""
  3091. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  3092. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3093. msgstr ""
  3094. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  3095. msgctxt "@info:title"
  3096. msgid "Are you ready for cloud printing?"
  3097. msgstr ""
  3098. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  3099. msgctxt "@action"
  3100. msgid "Get started"
  3101. msgstr "Kezdjük el"
  3102. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  3103. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  3104. msgctxt "@action"
  3105. msgid "Learn more"
  3106. msgstr ""
  3107. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  3108. #, fuzzy
  3109. msgctxt "@info:status"
  3110. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  3111. msgstr "Olyan nyomtatóval próbál csatlakozni, amelyen nem fut az UltiMaker Connect. Kérjük, frissítse a nyomtatón a firmware-t."
  3112. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  3113. msgctxt "@info:title"
  3114. msgid "Update your printer"
  3115. msgstr "Frissítse a nyomtatót"
  3116. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  3117. #, python-brace-format
  3118. msgctxt "@info:status"
  3119. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  3120. msgstr "A Cura olyan anyagprofilt észlel, amelyet még nem telepítettek a(z) {0} csoport gazdanyomtatójára."
  3121. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  3122. msgctxt "@info:title"
  3123. msgid "Sending materials to printer"
  3124. msgstr "Anyagok küldése a nyomtatóra"
  3125. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  3126. msgctxt "info:status"
  3127. msgid "New printer detected from your Ultimaker account"
  3128. msgid_plural "New printers detected from your Ultimaker account"
  3129. msgstr[0] ""
  3130. msgstr[1] ""
  3131. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  3132. #, python-brace-format
  3133. msgctxt "info:status Filled in with printer name and printer model."
  3134. msgid "Adding printer {name} ({model}) from your account"
  3135. msgstr ""
  3136. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  3137. #, python-brace-format
  3138. msgctxt "info:{0} gets replaced by a number of printers"
  3139. msgid "... and {0} other"
  3140. msgid_plural "... and {0} others"
  3141. msgstr[0] ""
  3142. msgstr[1] ""
  3143. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  3144. msgctxt "info:status"
  3145. msgid "Printers added from Digital Factory:"
  3146. msgstr ""
  3147. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  3148. #, python-brace-format
  3149. msgctxt "@info:status"
  3150. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3151. msgstr "Megpróbált csatlakozni a (z) {0} -hez, de a gép nem része a csoportnak.Látogasson el a weboldalra, és konfigurálhatja azt csoporttagnak."
  3152. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  3153. msgctxt "@info:title"
  3154. msgid "Not a group host"
  3155. msgstr "Nem csoport"
  3156. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  3157. msgctxt "@action"
  3158. msgid "Configure group"
  3159. msgstr "Csoport konfiguráció"
  3160. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  3161. msgctxt "@info:status"
  3162. msgid "You will receive a confirmation via email when the print job is approved"
  3163. msgstr ""
  3164. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  3165. msgctxt "@info:title"
  3166. msgid "The print job was successfully submitted"
  3167. msgstr ""
  3168. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  3169. msgctxt "@action"
  3170. msgid "Manage print jobs"
  3171. msgstr ""
  3172. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  3173. msgctxt "@info:status"
  3174. msgid "Please wait until the current job has been sent."
  3175. msgstr "Várja meg, amíg az aktuális feladat elküldésre kerül."
  3176. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  3177. msgctxt "@info:title"
  3178. msgid "Print error"
  3179. msgstr "Nyomtatási hiba"
  3180. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  3181. msgctxt "@info:text"
  3182. msgid "Could not upload the data to the printer."
  3183. msgstr "Nem sikerült feltölteni az adatokat a nyomtatóra."
  3184. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  3185. msgctxt "@info:title"
  3186. msgid "Network error"
  3187. msgstr "Hálózati hiba"
  3188. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  3189. msgctxt "@info:status"
  3190. msgid "Sending Print Job"
  3191. msgstr "Nyomtatási feladat küldése"
  3192. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  3193. msgctxt "@info:status"
  3194. msgid "Uploading print job to printer."
  3195. msgstr "A nyomtatási feladat feltöltése a nyomtatóra."
  3196. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  3197. msgctxt "@info:status"
  3198. msgid "Print job queue is full. The printer can't accept a new job."
  3199. msgstr ""
  3200. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  3201. msgctxt "@info:title"
  3202. msgid "Queue Full"
  3203. msgstr ""
  3204. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  3205. msgctxt "@info:status"
  3206. msgid "Print job was successfully sent to the printer."
  3207. msgstr "A nyomtatási feladat sikeresen elküldésre került a nyomtatóra."
  3208. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  3209. msgctxt "@info:title"
  3210. msgid "Data Sent"
  3211. msgstr "Adatok elküldve"
  3212. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  3213. msgctxt "info:status"
  3214. msgid "This printer is not linked to the Digital Factory:"
  3215. msgid_plural "These printers are not linked to the Digital Factory:"
  3216. msgstr[0] ""
  3217. msgstr[1] ""
  3218. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  3219. #, python-brace-format
  3220. msgctxt "info:status"
  3221. msgid "To establish a connection, please visit the {website_link}"
  3222. msgstr ""
  3223. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  3224. msgctxt "info:status"
  3225. msgid "A cloud connection is not available for a printer"
  3226. msgid_plural "A cloud connection is not available for some printers"
  3227. msgstr[0] ""
  3228. msgstr[1] ""
  3229. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  3230. msgctxt "@action:button"
  3231. msgid "Keep printer configurations"
  3232. msgstr ""
  3233. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  3234. msgctxt "@action:button"
  3235. msgid "Remove printers"
  3236. msgstr ""
  3237. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3238. msgctxt "@action:button Preceded by 'Ready to'."
  3239. msgid "Print over network"
  3240. msgstr "Hálózati nyomtatás"
  3241. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3242. msgctxt "@properties:tooltip"
  3243. msgid "Print over network"
  3244. msgstr "Hálózati nyomtatás"
  3245. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3246. msgctxt "@info:status"
  3247. msgid "Connected over the network"
  3248. msgstr "Csatlakozva hálózaton keresztül"
  3249. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3250. msgctxt "@action"
  3251. msgid "Connect via Network"
  3252. msgstr "Hálózati csatlakozás"
  3253. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3254. msgctxt "@info:status"
  3255. msgid "tomorrow"
  3256. msgstr "holnap"
  3257. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3258. msgctxt "@info:status"
  3259. msgid "today"
  3260. msgstr "ma"
  3261. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3262. msgctxt "@item:inmenu"
  3263. msgid "USB printing"
  3264. msgstr "USB nyomtatás"
  3265. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3266. msgctxt "@action:button Preceded by 'Ready to'."
  3267. msgid "Print via USB"
  3268. msgstr "Nyomtatás USB-ről"
  3269. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3270. msgctxt "@info:tooltip"
  3271. msgid "Print via USB"
  3272. msgstr "Nyomtatás USB-ről"
  3273. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3274. msgctxt "@info:status"
  3275. msgid "Connected via USB"
  3276. msgstr "Csatlakozás USB-n"
  3277. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3278. msgctxt "@label"
  3279. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3280. msgstr "USB nyomtatás folyamatban van, a Cura bezárása leállítja ezt a nyomtatást. Biztos vagy ebben?"
  3281. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3282. msgctxt "@message"
  3283. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3284. msgstr "A nyomtatás még folyamatban van. A Cura nem indíthat új nyomtatást USB-n keresztül, amíg az előző nyomtatás be nem fejeződött."
  3285. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3286. msgctxt "@message"
  3287. msgid "Print in Progress"
  3288. msgstr "Nyomtatás folyamatban"
  3289. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3290. msgctxt "@action"
  3291. msgid "Level build plate"
  3292. msgstr "Tárgyasztal szint"
  3293. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3294. msgctxt "@title"
  3295. msgid "Build Plate Leveling"
  3296. msgstr "Tálca szintezés"
  3297. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3298. msgctxt "@label"
  3299. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3300. msgstr "Azért, hogy nyomtattandó testek megfelelően letapadjanak, lehetőség van beállítani a nyomtatótálcát. Ha rákattint a 'Mozgás a következő pozícióba' gombra, a fej átmozgatható a különböző beállítási helyzetekbe."
  3301. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3302. msgctxt "@label"
  3303. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  3304. msgstr "Minden helyzetben helyezzen be egy darab papírt (A4) a fúvóka alá, és állítsa be a fej magasságát.A nyomtató tálca magassága akkor megfelelő, ha a papírt kissé megfogja a fúvóka vége."
  3305. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3306. msgctxt "@action:button"
  3307. msgid "Start Build Plate Leveling"
  3308. msgstr "Tálca szintezés indítása"
  3309. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3310. msgctxt "@action:button"
  3311. msgid "Move to Next Position"
  3312. msgstr "Mozgás a következő pozícióba"
  3313. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3314. msgctxt "@action"
  3315. msgid "Select upgrades"
  3316. msgstr "Válassz frissítést"
  3317. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3318. msgctxt "@label"
  3319. msgid "Please select any upgrades made to this UltiMaker Original"
  3320. msgstr "Kérjük, válassza ki az UltiMaker Original eredeti frissítéseit"
  3321. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3322. msgctxt "@label"
  3323. msgid "Heated Build Plate (official kit or self-built)"
  3324. msgstr "Fűthető tárgyasztal (eredeti vagy utólag épített)"
  3325. #: plugins/X3DReader/__init__.py:13
  3326. msgctxt "@item:inlistbox"
  3327. msgid "X3D File"
  3328. msgstr "X3D Fájl"
  3329. #: plugins/XRayView/__init__.py:12
  3330. msgctxt "@item:inlistbox"
  3331. msgid "X-Ray view"
  3332. msgstr "Röntgen nézet"
  3333. #: resources/qml/Account/AccountWidget.qml:24
  3334. msgctxt "@action:button"
  3335. msgid "Sign in"
  3336. msgstr "Bejelentkezés"
  3337. #: resources/qml/Account/GeneralOperations.qml:19
  3338. #: resources/qml/WelcomePages/CloudContent.qml:64
  3339. msgctxt "@label"
  3340. msgid "Sign in to the UltiMaker platform"
  3341. msgstr ""
  3342. #: resources/qml/Account/GeneralOperations.qml:39
  3343. msgctxt "@text"
  3344. msgid ""
  3345. "- Add material profiles and plug-ins from the Marketplace\n"
  3346. "- Back-up and sync your material profiles and plug-ins\n"
  3347. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3348. msgstr ""
  3349. #: resources/qml/Account/GeneralOperations.qml:58
  3350. msgctxt "@button"
  3351. msgid "Create a free UltiMaker account"
  3352. msgstr ""
  3353. #: resources/qml/Account/SyncState.qml:35
  3354. msgctxt "@label"
  3355. msgid "Checking..."
  3356. msgstr ""
  3357. #: resources/qml/Account/SyncState.qml:42
  3358. msgctxt "@label"
  3359. msgid "Account synced"
  3360. msgstr ""
  3361. #: resources/qml/Account/SyncState.qml:49
  3362. msgctxt "@label"
  3363. msgid "Something went wrong..."
  3364. msgstr ""
  3365. #: resources/qml/Account/SyncState.qml:102
  3366. msgctxt "@button"
  3367. msgid "Install pending updates"
  3368. msgstr ""
  3369. #: resources/qml/Account/SyncState.qml:123
  3370. msgctxt "@button"
  3371. msgid "Check for account updates"
  3372. msgstr ""
  3373. #: resources/qml/Account/UserOperations.qml:78
  3374. msgctxt "@label The argument is a timestamp"
  3375. msgid "Last update: %1"
  3376. msgstr ""
  3377. #: resources/qml/Account/UserOperations.qml:107
  3378. msgctxt "@button"
  3379. msgid "UltiMaker Account"
  3380. msgstr ""
  3381. #: resources/qml/Account/UserOperations.qml:126
  3382. msgctxt "@button"
  3383. msgid "Sign Out"
  3384. msgstr ""
  3385. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3386. msgctxt "@label"
  3387. msgid "No time estimation available"
  3388. msgstr "Nincs időbecslés"
  3389. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3390. msgctxt "@label"
  3391. msgid "No cost estimation available"
  3392. msgstr "Nincs költségbecslés"
  3393. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3394. msgctxt "@button"
  3395. msgid "Preview"
  3396. msgstr "Előnézet"
  3397. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3398. msgctxt "@label"
  3399. msgid "Time estimation"
  3400. msgstr "Időbecslés"
  3401. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3402. msgctxt "@label"
  3403. msgid "Material estimation"
  3404. msgstr "Anyag becslés"
  3405. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3406. msgctxt "@label m for meter"
  3407. msgid "%1m"
  3408. msgstr "%1m"
  3409. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3410. msgctxt "@label g for grams"
  3411. msgid "%1g"
  3412. msgstr "%1g"
  3413. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3414. msgctxt "@label:PrintjobStatus"
  3415. msgid "Slicing..."
  3416. msgstr "Szeletelés..."
  3417. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3418. msgctxt "@label:PrintjobStatus"
  3419. msgid "Unable to slice"
  3420. msgstr "Nem szeletelhető"
  3421. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3422. msgctxt "@button"
  3423. msgid "Processing"
  3424. msgstr "Feldolgozás"
  3425. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3426. msgctxt "@button"
  3427. msgid "Slice"
  3428. msgstr "Szeletelés"
  3429. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3430. msgctxt "@label"
  3431. msgid "Start the slicing process"
  3432. msgstr "Szeletelés indítása"
  3433. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3434. msgctxt "@button"
  3435. msgid "Cancel"
  3436. msgstr "Elvet"
  3437. #: resources/qml/Actions.qml:81
  3438. msgctxt "@action:inmenu"
  3439. msgid "Show Online Troubleshooting"
  3440. msgstr ""
  3441. #: resources/qml/Actions.qml:88
  3442. msgctxt "@action:inmenu"
  3443. msgid "Toggle Full Screen"
  3444. msgstr "Teljes képernyőre váltás"
  3445. #: resources/qml/Actions.qml:96
  3446. msgctxt "@action:inmenu"
  3447. msgid "Exit Full Screen"
  3448. msgstr "Kilépés a teljes képernyőn"
  3449. #: resources/qml/Actions.qml:103
  3450. msgctxt "@action:inmenu menubar:edit"
  3451. msgid "&Undo"
  3452. msgstr "&Visszavon"
  3453. #: resources/qml/Actions.qml:113
  3454. msgctxt "@action:inmenu menubar:edit"
  3455. msgid "&Redo"
  3456. msgstr "&Újra"
  3457. #: resources/qml/Actions.qml:131
  3458. msgctxt "@action:inmenu menubar:file"
  3459. msgid "&Quit"
  3460. msgstr "Kilép"
  3461. #: resources/qml/Actions.qml:139
  3462. msgctxt "@action:inmenu menubar:view"
  3463. msgid "3D View"
  3464. msgstr "3D nézet"
  3465. #: resources/qml/Actions.qml:146
  3466. msgctxt "@action:inmenu menubar:view"
  3467. msgid "Front View"
  3468. msgstr "Előlnézet"
  3469. #: resources/qml/Actions.qml:153
  3470. msgctxt "@action:inmenu menubar:view"
  3471. msgid "Top View"
  3472. msgstr "Felülnézet"
  3473. #: resources/qml/Actions.qml:160
  3474. msgctxt "@action:inmenu menubar:view"
  3475. msgid "Bottom View"
  3476. msgstr ""
  3477. #: resources/qml/Actions.qml:167
  3478. msgctxt "@action:inmenu menubar:view"
  3479. msgid "Left Side View"
  3480. msgstr "Bal oldalnézet"
  3481. #: resources/qml/Actions.qml:174
  3482. msgctxt "@action:inmenu menubar:view"
  3483. msgid "Right Side View"
  3484. msgstr "Jobb oldalnézet"
  3485. #: resources/qml/Actions.qml:188
  3486. msgctxt "@action:inmenu"
  3487. msgid "Configure Cura..."
  3488. msgstr "Cura beállítása..."
  3489. #: resources/qml/Actions.qml:197
  3490. msgctxt "@action:inmenu menubar:printer"
  3491. msgid "&Add Printer..."
  3492. msgstr "&Nyomtató hozzáadása..."
  3493. #: resources/qml/Actions.qml:203
  3494. msgctxt "@action:inmenu menubar:printer"
  3495. msgid "Manage Pr&inters..."
  3496. msgstr "Nyomtatók kezelése..."
  3497. #: resources/qml/Actions.qml:210
  3498. msgctxt "@action:inmenu"
  3499. msgid "Manage Materials..."
  3500. msgstr "Anyagok kezelése..."
  3501. #: resources/qml/Actions.qml:218
  3502. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3503. msgid "Add more materials from Marketplace"
  3504. msgstr ""
  3505. #: resources/qml/Actions.qml:225
  3506. msgctxt "@action:inmenu menubar:profile"
  3507. msgid "&Update profile with current settings/overrides"
  3508. msgstr "Profil &frissítése a jelenlegi beállításokkal/felülírásokkal"
  3509. #: resources/qml/Actions.qml:233
  3510. msgctxt "@action:inmenu menubar:profile"
  3511. msgid "&Discard current changes"
  3512. msgstr "&Jelenlegi változtatások eldobása"
  3513. #: resources/qml/Actions.qml:245
  3514. msgctxt "@action:inmenu menubar:profile"
  3515. msgid "&Create profile from current settings/overrides..."
  3516. msgstr "Profil &létrehozása a jelenlegi beállításokkal/felülírásokkal..."
  3517. #: resources/qml/Actions.qml:251
  3518. msgctxt "@action:inmenu menubar:profile"
  3519. msgid "Manage Profiles..."
  3520. msgstr "Profilok kezelése..."
  3521. #: resources/qml/Actions.qml:259
  3522. msgctxt "@action:inmenu menubar:help"
  3523. msgid "Show Online &Documentation"
  3524. msgstr "Online &Dokumentumok megjelenítése"
  3525. #: resources/qml/Actions.qml:267
  3526. msgctxt "@action:inmenu menubar:help"
  3527. msgid "Report a &Bug"
  3528. msgstr "Hibajelentés"
  3529. #: resources/qml/Actions.qml:275
  3530. msgctxt "@action:inmenu menubar:help"
  3531. msgid "What's New"
  3532. msgstr "Újdonságok"
  3533. #: resources/qml/Actions.qml:289
  3534. msgctxt "@action:inmenu menubar:help"
  3535. msgid "About..."
  3536. msgstr "Rólunk..."
  3537. #: resources/qml/Actions.qml:296
  3538. msgctxt "@action:inmenu menubar:edit"
  3539. msgid "Delete Selected"
  3540. msgstr ""
  3541. #: resources/qml/Actions.qml:306
  3542. msgctxt "@action:inmenu menubar:edit"
  3543. msgid "Center Selected"
  3544. msgstr ""
  3545. #: resources/qml/Actions.qml:315
  3546. msgctxt "@action:inmenu menubar:edit"
  3547. msgid "Multiply Selected"
  3548. msgstr ""
  3549. #: resources/qml/Actions.qml:324
  3550. msgctxt "@action:inmenu"
  3551. msgid "Delete Model"
  3552. msgstr "Modell törlés"
  3553. #: resources/qml/Actions.qml:332
  3554. msgctxt "@action:inmenu"
  3555. msgid "Ce&nter Model on Platform"
  3556. msgstr "&Középső modell a platformon"
  3557. #: resources/qml/Actions.qml:338
  3558. msgctxt "@action:inmenu menubar:edit"
  3559. msgid "&Group Models"
  3560. msgstr "&Csoportosítás"
  3561. #: resources/qml/Actions.qml:358
  3562. msgctxt "@action:inmenu menubar:edit"
  3563. msgid "Ungroup Models"
  3564. msgstr "Csoport bontása"
  3565. #: resources/qml/Actions.qml:368
  3566. msgctxt "@action:inmenu menubar:edit"
  3567. msgid "&Merge Models"
  3568. msgstr "&Modellek keverése"
  3569. #: resources/qml/Actions.qml:378
  3570. msgctxt "@action:inmenu"
  3571. msgid "&Multiply Model..."
  3572. msgstr "&Modell többszörözés..."
  3573. #: resources/qml/Actions.qml:385
  3574. msgctxt "@action:inmenu menubar:edit"
  3575. msgid "Select All Models"
  3576. msgstr "Mindent kijelöl"
  3577. #: resources/qml/Actions.qml:395
  3578. msgctxt "@action:inmenu menubar:edit"
  3579. msgid "Clear Build Plate"
  3580. msgstr "Tárgyasztal törlése"
  3581. #: resources/qml/Actions.qml:405
  3582. msgctxt "@action:inmenu menubar:file"
  3583. msgid "Reload All Models"
  3584. msgstr "Mindent újratölt"
  3585. #: resources/qml/Actions.qml:414
  3586. msgctxt "@action:inmenu menubar:edit"
  3587. msgid "Arrange All Models"
  3588. msgstr "Minden modell rendezése"
  3589. #: resources/qml/Actions.qml:422
  3590. msgctxt "@action:inmenu menubar:edit"
  3591. msgid "Arrange Selection"
  3592. msgstr "Kijelöltek rendezése"
  3593. #: resources/qml/Actions.qml:429
  3594. msgctxt "@action:inmenu menubar:edit"
  3595. msgid "Reset All Model Positions"
  3596. msgstr "Minden modellpozíció visszaállítása"
  3597. #: resources/qml/Actions.qml:436
  3598. msgctxt "@action:inmenu menubar:edit"
  3599. msgid "Reset All Model Transformations"
  3600. msgstr "Minden modelltranszformáció visszaállítása"
  3601. #: resources/qml/Actions.qml:445
  3602. msgctxt "@action:inmenu menubar:file"
  3603. msgid "&Open File(s)..."
  3604. msgstr "Fájl(ok) megnyitása..."
  3605. #: resources/qml/Actions.qml:455
  3606. msgctxt "@action:inmenu menubar:file"
  3607. msgid "&New Project..."
  3608. msgstr "Új projekt..."
  3609. #: resources/qml/Actions.qml:462
  3610. msgctxt "@action:inmenu menubar:help"
  3611. msgid "Show Configuration Folder"
  3612. msgstr "Konfigurációs mappa megjelenítése"
  3613. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3614. msgctxt "@action:menu"
  3615. msgid "Configure setting visibility..."
  3616. msgstr "Beállítások láthatóságának beállítása..."
  3617. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3618. msgctxt "@label:button"
  3619. msgid "My printers"
  3620. msgstr ""
  3621. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3622. msgctxt "@tooltip:button"
  3623. msgid "Monitor printers in Ultimaker Digital Factory."
  3624. msgstr ""
  3625. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3626. msgctxt "@tooltip:button"
  3627. msgid "Create print projects in Digital Library."
  3628. msgstr ""
  3629. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3630. msgctxt "@label:button"
  3631. msgid "Print jobs"
  3632. msgstr ""
  3633. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3634. msgctxt "@tooltip:button"
  3635. msgid "Monitor print jobs and reprint from your print history."
  3636. msgstr ""
  3637. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3638. msgctxt "@tooltip:button"
  3639. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3640. msgstr ""
  3641. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3642. msgctxt "@tooltip:button"
  3643. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3644. msgstr ""
  3645. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3646. msgctxt "@label:button"
  3647. msgid "UltiMaker support"
  3648. msgstr ""
  3649. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3650. msgctxt "@tooltip:button"
  3651. msgid "Learn how to get started with UltiMaker Cura."
  3652. msgstr ""
  3653. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3654. msgctxt "@label:button"
  3655. msgid "Ask a question"
  3656. msgstr ""
  3657. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3658. msgctxt "@tooltip:button"
  3659. msgid "Consult the UltiMaker Community."
  3660. msgstr ""
  3661. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3662. msgctxt "@label:button"
  3663. msgid "Report a bug"
  3664. msgstr ""
  3665. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3666. msgctxt "@tooltip:button"
  3667. msgid "Let developers know that something is going wrong."
  3668. msgstr ""
  3669. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3670. msgctxt "@tooltip:button"
  3671. msgid "Visit the UltiMaker website."
  3672. msgstr ""
  3673. #: resources/qml/ColorDialog.qml:110
  3674. msgctxt "@label"
  3675. msgid "Hex"
  3676. msgstr ""
  3677. #: resources/qml/Cura.qml:256
  3678. msgctxt "@label"
  3679. msgid "This package will be installed after restarting."
  3680. msgstr "Ez a csomag újraindítás után fog települni."
  3681. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3682. msgctxt "@title:tab"
  3683. msgid "General"
  3684. msgstr "Általános"
  3685. #: resources/qml/Cura.qml:470
  3686. msgctxt "@title:tab"
  3687. msgid "Settings"
  3688. msgstr "Beállítások"
  3689. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3690. msgctxt "@title:tab"
  3691. msgid "Printers"
  3692. msgstr "Nyomtatók"
  3693. #: resources/qml/Cura.qml:474
  3694. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3695. msgctxt "@title:tab"
  3696. msgid "Materials"
  3697. msgstr "Alapanyagok"
  3698. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3699. msgctxt "@title:tab"
  3700. msgid "Profiles"
  3701. msgstr "Profilok"
  3702. #: resources/qml/Cura.qml:581
  3703. msgctxt "@title:window %1 is the application name"
  3704. msgid "Closing %1"
  3705. msgstr ""
  3706. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3707. msgctxt "@label %1 is the application name"
  3708. msgid "Are you sure you want to exit %1?"
  3709. msgstr ""
  3710. #: resources/qml/Cura.qml:629
  3711. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3712. msgctxt "@title:window"
  3713. msgid "Open file(s)"
  3714. msgstr "Fájl(ok) megnyitása"
  3715. #: resources/qml/Cura.qml:734
  3716. msgctxt "@window:title"
  3717. msgid "Install Package"
  3718. msgstr "Csomag telepítése"
  3719. #: resources/qml/Cura.qml:741
  3720. msgctxt "@title:window"
  3721. msgid "Open File(s)"
  3722. msgstr "Fájl(ok) megnyitása"
  3723. #: resources/qml/Cura.qml:743
  3724. msgctxt "@text:window"
  3725. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3726. msgstr "A kiválasztott fájlok között több G-kód fájl is található.Egyszerre csak egy G-kód fájlt nyithat meg, ezért csak egy ilyen fájlt válasszon ki."
  3727. #: resources/qml/Cura.qml:828
  3728. msgctxt "@title:window"
  3729. msgid "Add Printer"
  3730. msgstr "Nyomtató hozzáadása"
  3731. #: resources/qml/Cura.qml:836
  3732. msgctxt "@title:window"
  3733. msgid "What's New"
  3734. msgstr "Újdonságok"
  3735. #: resources/qml/Cura.qml:890
  3736. #, fuzzy
  3737. msgctxt "@title:window"
  3738. msgid "Save Custom Profile"
  3739. msgstr "Egyedi profil"
  3740. #: resources/qml/Cura.qml:891
  3741. #, fuzzy
  3742. msgctxt "@textfield:placeholder"
  3743. msgid "New Custom Profile"
  3744. msgstr "Egyedi profil"
  3745. #: resources/qml/Cura.qml:892
  3746. #, fuzzy
  3747. msgctxt "@info"
  3748. msgid "Custom profile name:"
  3749. msgstr "Egyedi profil"
  3750. #: resources/qml/Cura.qml:909
  3751. msgctxt "@label %i will be replaced with a profile name"
  3752. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3753. msgstr ""
  3754. #: resources/qml/Cura.qml:917
  3755. msgctxt "@action:button"
  3756. msgid "Learn more about Cura print profiles"
  3757. msgstr ""
  3758. #: resources/qml/Cura.qml:926
  3759. #, fuzzy
  3760. msgctxt "@button"
  3761. msgid "Save new profile"
  3762. msgstr "Új profil létrehozás"
  3763. #: resources/qml/Dialogs/AboutDialog.qml:15
  3764. msgctxt "@title:window The argument is the application name."
  3765. msgid "About %1"
  3766. msgstr ""
  3767. #: resources/qml/Dialogs/AboutDialog.qml:59
  3768. msgctxt "@label"
  3769. msgid "version: %1"
  3770. msgstr "verzió: %1"
  3771. #: resources/qml/Dialogs/AboutDialog.qml:74
  3772. msgctxt "@label"
  3773. msgid "End-to-end solution for fused filament 3D printing."
  3774. msgstr "Teljes körű megoldás az olvadószálas 3D-s nyomtatáshoz."
  3775. #: resources/qml/Dialogs/AboutDialog.qml:87
  3776. msgctxt "@info:credit"
  3777. msgid ""
  3778. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3779. "Cura proudly uses the following open source projects:"
  3780. msgstr "A Cura-t az UltiMaker B.V fejlesztette ki a közösséggel együttműködésben. A Cura büszkén használja a következő nyílt forráskódú projekteket:"
  3781. #: resources/qml/Dialogs/AboutDialog.qml:138
  3782. msgctxt "@label Description for application component"
  3783. msgid "Graphical user interface"
  3784. msgstr "Grafikai felhasználói interfész"
  3785. #: resources/qml/Dialogs/AboutDialog.qml:139
  3786. msgctxt "@label Description for application component"
  3787. msgid "Application framework"
  3788. msgstr "Alkalmazás keretrendszer"
  3789. #: resources/qml/Dialogs/AboutDialog.qml:140
  3790. msgctxt "@label Description for application component"
  3791. msgid "G-code generator"
  3792. msgstr "G-kód generátor"
  3793. #: resources/qml/Dialogs/AboutDialog.qml:141
  3794. msgctxt "@label Description for application component"
  3795. msgid "Interprocess communication library"
  3796. msgstr "Folyamatközi kommunikációs könyvtár"
  3797. #: resources/qml/Dialogs/AboutDialog.qml:142
  3798. msgctxt "@label Description for application component"
  3799. msgid "Python bindings for libnest2d"
  3800. msgstr ""
  3801. #: resources/qml/Dialogs/AboutDialog.qml:143
  3802. msgctxt "@label Description for application component"
  3803. msgid "Polygon packing library, developed by Prusa Research"
  3804. msgstr ""
  3805. #: resources/qml/Dialogs/AboutDialog.qml:144
  3806. msgctxt "@label Description for application component"
  3807. msgid "Support library for handling 3MF files"
  3808. msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez"
  3809. #: resources/qml/Dialogs/AboutDialog.qml:145
  3810. msgctxt "@label Description for application component"
  3811. msgid "Support library for file metadata and streaming"
  3812. msgstr "Támogató könyvtár a fájl metaadatokhoz és továbbításához"
  3813. #: resources/qml/Dialogs/AboutDialog.qml:148
  3814. msgctxt "@label Description for application dependency"
  3815. msgid "Programming language"
  3816. msgstr "Programozási nyelv"
  3817. #: resources/qml/Dialogs/AboutDialog.qml:149
  3818. msgctxt "@label Description for application dependency"
  3819. msgid "GUI framework"
  3820. msgstr "GUI keretrendszer"
  3821. #: resources/qml/Dialogs/AboutDialog.qml:150
  3822. msgctxt "@label Description for application dependency"
  3823. msgid "GUI framework bindings"
  3824. msgstr "GUI keretrendszer függőségek"
  3825. #: resources/qml/Dialogs/AboutDialog.qml:151
  3826. msgctxt "@label Description for application dependency"
  3827. msgid "C/C++ Binding library"
  3828. msgstr "C/C++ függőségek könyvtár"
  3829. #: resources/qml/Dialogs/AboutDialog.qml:152
  3830. msgctxt "@label Description for application dependency"
  3831. msgid "Data interchange format"
  3832. msgstr "Adat csere formátum"
  3833. #: resources/qml/Dialogs/AboutDialog.qml:153
  3834. msgctxt "@label"
  3835. msgid "Font"
  3836. msgstr "Betűtípus"
  3837. #: resources/qml/Dialogs/AboutDialog.qml:156
  3838. msgctxt "@label Description for application dependency"
  3839. msgid "Polygon clipping library"
  3840. msgstr "Poligon daraboló könyvtár"
  3841. #: resources/qml/Dialogs/AboutDialog.qml:157
  3842. msgctxt "@label Description for application dependency"
  3843. msgid "JSON parser"
  3844. msgstr ""
  3845. #: resources/qml/Dialogs/AboutDialog.qml:158
  3846. msgctxt "@label Description for application dependency"
  3847. msgid "Utility functions, including an image loader"
  3848. msgstr ""
  3849. #: resources/qml/Dialogs/AboutDialog.qml:159
  3850. msgctxt "@label Description for application dependency"
  3851. msgid "Utility library, including Voronoi generation"
  3852. msgstr ""
  3853. #: resources/qml/Dialogs/AboutDialog.qml:162
  3854. #: resources/qml/Dialogs/AboutDialog.qml:163
  3855. msgctxt "@label Description for application dependency"
  3856. msgid "Root Certificates for validating SSL trustworthiness"
  3857. msgstr ""
  3858. #: resources/qml/Dialogs/AboutDialog.qml:164
  3859. msgctxt "@label Description for application dependency"
  3860. msgid "Compatibility between Python 2 and 3"
  3861. msgstr ""
  3862. #: resources/qml/Dialogs/AboutDialog.qml:165
  3863. msgctxt "@label Description for application dependency"
  3864. msgid "Support library for system keyring access"
  3865. msgstr ""
  3866. #: resources/qml/Dialogs/AboutDialog.qml:166
  3867. msgctxt "@label Description for application dependency"
  3868. msgid "Support library for faster math"
  3869. msgstr "Támogató könyvtár a gyorsabb matematikához"
  3870. #: resources/qml/Dialogs/AboutDialog.qml:167
  3871. msgctxt "@label Description for application dependency"
  3872. msgid "Support library for handling STL files"
  3873. msgstr "Támogató könyvtár az STL fájlok kezeléséhez"
  3874. #: resources/qml/Dialogs/AboutDialog.qml:168
  3875. msgctxt "@label Description for application dependency"
  3876. msgid "Python bindings for Clipper"
  3877. msgstr ""
  3878. #: resources/qml/Dialogs/AboutDialog.qml:169
  3879. msgctxt "@label Description for application dependency"
  3880. msgid "Serial communication library"
  3881. msgstr "Soros kommunikációs könyvtár"
  3882. #: resources/qml/Dialogs/AboutDialog.qml:170
  3883. msgctxt "@label Description for application dependency"
  3884. msgid "Support library for scientific computing"
  3885. msgstr "Támogató könyvtár a tudományos számítások számára"
  3886. #: resources/qml/Dialogs/AboutDialog.qml:171
  3887. msgctxt "@Label Description for application dependency"
  3888. msgid "Python Error tracking library"
  3889. msgstr ""
  3890. #: resources/qml/Dialogs/AboutDialog.qml:172
  3891. msgctxt "@label Description for application dependency"
  3892. msgid "Support library for handling triangular meshes"
  3893. msgstr "Támogató könyvtár a háromszög hálók kezeléséhez"
  3894. #: resources/qml/Dialogs/AboutDialog.qml:173
  3895. msgctxt "@label Description for application dependency"
  3896. msgid "ZeroConf discovery library"
  3897. msgstr "ZeroConf felderítő könyvtár"
  3898. #: resources/qml/Dialogs/AboutDialog.qml:176
  3899. msgctxt "@label Description for development tool"
  3900. msgid "Universal build system configuration"
  3901. msgstr ""
  3902. #: resources/qml/Dialogs/AboutDialog.qml:177
  3903. msgctxt "@label Description for development tool"
  3904. msgid "Dependency and package manager"
  3905. msgstr ""
  3906. #: resources/qml/Dialogs/AboutDialog.qml:178
  3907. msgctxt "@label Description for development tool"
  3908. msgid "Packaging Python-applications"
  3909. msgstr ""
  3910. #: resources/qml/Dialogs/AboutDialog.qml:179
  3911. msgctxt "@label Description for development tool"
  3912. msgid "Linux cross-distribution application deployment"
  3913. msgstr "Linux kereszt-disztribúciós alkalmazás telepítése"
  3914. #: resources/qml/Dialogs/AboutDialog.qml:180
  3915. msgctxt "@label Description for development tool"
  3916. msgid "Generating Windows installers"
  3917. msgstr ""
  3918. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3919. msgctxt "@title:window"
  3920. msgid "Open project file"
  3921. msgstr "Projekt fájl megnyitása"
  3922. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3923. msgctxt "@text:window"
  3924. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3925. msgstr "Ez egy Cura projekt fájl. Szeretné projektként megnyitni, vagy importálni a modelleket?"
  3926. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3927. msgctxt "@text:window"
  3928. msgid "Remember my choice"
  3929. msgstr "Emlékezzen a választásra"
  3930. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3931. msgctxt "@action:button"
  3932. msgid "Open as project"
  3933. msgstr "Megnyitás projektként"
  3934. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3935. msgctxt "@action:button"
  3936. msgid "Import models"
  3937. msgstr "Modellek importálása"
  3938. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3939. msgctxt "@title:window"
  3940. msgid "Select Printer"
  3941. msgstr ""
  3942. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3943. msgctxt "@title:label"
  3944. msgid "Compatible Printers"
  3945. msgstr ""
  3946. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3947. msgctxt "@description"
  3948. msgid "No compatible printers, that are currently online, where found."
  3949. msgstr ""
  3950. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3951. msgctxt "@title:window"
  3952. msgid "Discard or Keep changes"
  3953. msgstr "Változtatások megtartása vagy eldobása"
  3954. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3955. msgctxt "@text:window, %1 is a profile name"
  3956. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3957. msgstr ""
  3958. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3959. msgctxt "@title:column"
  3960. msgid "Profile settings"
  3961. msgstr "Profil beállítások"
  3962. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3963. msgctxt "@title:column"
  3964. msgid "Current changes"
  3965. msgstr ""
  3966. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3967. #: resources/qml/Preferences/GeneralPage.qml:820
  3968. msgctxt "@option:discardOrKeep"
  3969. msgid "Always ask me this"
  3970. msgstr "Mindig kérdezz"
  3971. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3972. msgctxt "@option:discardOrKeep"
  3973. msgid "Discard and never ask again"
  3974. msgstr "Eldobás és ne kérdezze újra"
  3975. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3976. msgctxt "@option:discardOrKeep"
  3977. msgid "Keep and never ask again"
  3978. msgstr "Megtartás és ne kérdezze újra"
  3979. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3980. msgctxt "@action:button"
  3981. msgid "Discard changes"
  3982. msgstr ""
  3983. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  3984. msgctxt "@action:button"
  3985. msgid "Keep changes"
  3986. msgstr ""
  3987. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  3988. #, fuzzy
  3989. msgctxt "@action:button"
  3990. msgid "Save as new custom profile"
  3991. msgstr "Egyedi profil"
  3992. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  3993. msgctxt "@action:button"
  3994. msgid "Save changes"
  3995. msgstr ""
  3996. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3997. msgctxt "@text:window"
  3998. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3999. msgstr "Egy vagy több projekt fájlt találtunk a kiválasztott fájlokban.Egyszerre csak egy projekt fájlt nyithat meg. Javasoljuk, hogy csak a modelleket importálja ezekből a fájlokból. Szeretné folytatni?"
  4000. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4001. msgctxt "@action:button"
  4002. msgid "Import all as models"
  4003. msgstr "Importáljunk mindent modellekként"
  4004. #: resources/qml/Dialogs/RenameDialog.qml:23
  4005. msgctxt "@title:window"
  4006. msgid "Rename"
  4007. msgstr ""
  4008. #: resources/qml/Dialogs/RenameDialog.qml:24
  4009. msgctxt "@info"
  4010. msgid "Please provide a new name."
  4011. msgstr ""
  4012. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4013. msgctxt "@title:window"
  4014. msgid "Save Project"
  4015. msgstr "Projekt mentése"
  4016. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4017. msgctxt "@action:label"
  4018. msgid "Extruder %1"
  4019. msgstr "Extruder %1"
  4020. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4021. msgctxt "@action:label"
  4022. msgid "%1 & material"
  4023. msgstr "%1 & alapanyag"
  4024. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4025. msgctxt "@action:label"
  4026. msgid "Material"
  4027. msgstr "Alapanyag"
  4028. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4029. msgctxt "@action:label"
  4030. msgid "Don't show project summary on save again"
  4031. msgstr "Ne mutassa újra a projekt összegzését mentés közben"
  4032. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4033. msgctxt "@action:button"
  4034. msgid "Save"
  4035. msgstr "Mentés"
  4036. #: resources/qml/JobSpecs.qml:93
  4037. msgctxt "@text Print job name"
  4038. msgid "Untitled"
  4039. msgstr "Névtelen"
  4040. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4041. #: resources/qml/Menus/SettingsMenu.qml:13
  4042. msgctxt "@title:menu menubar:toplevel"
  4043. msgid "&Settings"
  4044. msgstr "&Beállítások"
  4045. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4046. msgctxt "@title:window"
  4047. msgid "New project"
  4048. msgstr "Új projekt"
  4049. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4050. msgctxt "@info:question"
  4051. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4052. msgstr "Biztos benne, hogy új projektet akar kezdeni? Ez törli az alapsíkot és az összes nem mentett beállítást."
  4053. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4054. msgctxt "@action:button"
  4055. msgid "Marketplace"
  4056. msgstr "Piactér"
  4057. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4058. msgctxt "@header"
  4059. msgid "Configurations"
  4060. msgstr "Konfigurációk"
  4061. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4062. msgctxt "@label"
  4063. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4064. msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez."
  4065. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4066. msgctxt "@label"
  4067. msgid "Marketplace"
  4068. msgstr "Piactér"
  4069. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4070. msgctxt "@label"
  4071. msgid "Loading available configurations from the printer..."
  4072. msgstr "Az elérhető konfigurációk betöltése a nyomtatóról..."
  4073. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4074. msgctxt "@label"
  4075. msgid "The configurations are not available because the printer is disconnected."
  4076. msgstr "A konfiguráció nem elérhető, mert nincs kapcsolat a a nyomtatóval."
  4077. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4078. msgctxt "@tooltip"
  4079. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4080. msgstr ""
  4081. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4082. msgctxt "@tooltip"
  4083. msgid "There are no profiles matching the configuration of this extruder."
  4084. msgstr ""
  4085. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4086. msgctxt "@label"
  4087. msgid "Select configuration"
  4088. msgstr "Konfiguráció kiválasztása"
  4089. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4090. msgctxt "@label"
  4091. msgid "Configurations"
  4092. msgstr "Konfigurációk"
  4093. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4094. msgctxt "@header"
  4095. msgid "Custom"
  4096. msgstr "Egyéni"
  4097. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4098. msgctxt "@label"
  4099. msgid "Enabled"
  4100. msgstr "Bekapcsolt"
  4101. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4102. msgctxt "@label"
  4103. msgid "Material"
  4104. msgstr "Alapanyag"
  4105. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4106. msgctxt "@label"
  4107. msgid "Use glue for better adhesion with this material combination."
  4108. msgstr "Használj ragasztót a jobb tapadás érdekében, ennél az alapanyag kombinációnál."
  4109. #: resources/qml/Menus/ContextMenu.qml:29
  4110. msgctxt "@label"
  4111. msgid "Print Selected Model With:"
  4112. msgid_plural "Print Selected Models With:"
  4113. msgstr[0] "Kiválasztott modell nyomtatása:"
  4114. msgstr[1] "Kiválasztott modellek nyomtatása:"
  4115. #: resources/qml/Menus/ContextMenu.qml:92
  4116. msgctxt "@title:window"
  4117. msgid "Multiply Selected Model"
  4118. msgid_plural "Multiply Selected Models"
  4119. msgstr[0] "Kiválasztott modell sokszorozása"
  4120. msgstr[1] "Kiválasztott modellek sokszorozása"
  4121. #: resources/qml/Menus/ContextMenu.qml:123
  4122. msgctxt "@label"
  4123. msgid "Number of Copies"
  4124. msgstr "Másolatok száma"
  4125. #: resources/qml/Menus/EditMenu.qml:12
  4126. msgctxt "@title:menu menubar:toplevel"
  4127. msgid "&Edit"
  4128. msgstr "S&zerkesztés"
  4129. #: resources/qml/Menus/ExtensionMenu.qml:13
  4130. msgctxt "@title:menu menubar:toplevel"
  4131. msgid "E&xtensions"
  4132. msgstr "K&iterjesztések"
  4133. #: resources/qml/Menus/FileMenu.qml:13
  4134. msgctxt "@title:menu menubar:toplevel"
  4135. msgid "&File"
  4136. msgstr "&Fájl"
  4137. #: resources/qml/Menus/FileMenu.qml:45
  4138. msgctxt "@title:menu menubar:file"
  4139. msgid "&Save Project..."
  4140. msgstr ""
  4141. #: resources/qml/Menus/FileMenu.qml:78
  4142. msgctxt "@title:menu menubar:file"
  4143. msgid "&Export..."
  4144. msgstr ""
  4145. #: resources/qml/Menus/FileMenu.qml:89
  4146. msgctxt "@action:inmenu menubar:file"
  4147. msgid "Export Selection..."
  4148. msgstr "Kiválasztás exportálása..."
  4149. #: resources/qml/Menus/HelpMenu.qml:14
  4150. msgctxt "@title:menu menubar:toplevel"
  4151. msgid "&Help"
  4152. msgstr "&Segítség"
  4153. #: resources/qml/Menus/MaterialMenu.qml:13
  4154. msgctxt "@label:category menu label"
  4155. msgid "Material"
  4156. msgstr "Alapanyag"
  4157. #: resources/qml/Menus/MaterialMenu.qml:53
  4158. msgctxt "@label:category menu label"
  4159. msgid "Favorites"
  4160. msgstr "Kedvencek"
  4161. #: resources/qml/Menus/MaterialMenu.qml:78
  4162. msgctxt "@label:category menu label"
  4163. msgid "Generic"
  4164. msgstr "Generikus"
  4165. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4166. msgctxt "@title:menu menubar:file"
  4167. msgid "Open File(s)..."
  4168. msgstr ""
  4169. #: resources/qml/Menus/PreferencesMenu.qml:21
  4170. msgctxt "@title:menu menubar:toplevel"
  4171. msgid "P&references"
  4172. msgstr "P&referenciák"
  4173. #: resources/qml/Menus/PrinterMenu.qml:13
  4174. msgctxt "@title:menu menubar:settings"
  4175. msgid "&Printer"
  4176. msgstr "&Nyomtató"
  4177. #: resources/qml/Menus/PrinterMenu.qml:17
  4178. msgctxt "@label:category menu label"
  4179. msgid "Network enabled printers"
  4180. msgstr "Hálózati nyomtatók"
  4181. #: resources/qml/Menus/PrinterMenu.qml:50
  4182. msgctxt "@label:category menu label"
  4183. msgid "Local printers"
  4184. msgstr "Helyi nyomtatók"
  4185. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4186. msgctxt "@title:menu menubar:file"
  4187. msgid "Open &Recent"
  4188. msgstr "Legutóbbi fájlok"
  4189. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4190. msgctxt "@title:menu menubar:file"
  4191. msgid "Save Project..."
  4192. msgstr ""
  4193. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4194. msgctxt "@action:inmenu"
  4195. msgid "Visible Settings"
  4196. msgstr "Láthatósági beállítások"
  4197. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4198. msgctxt "@action:inmenu"
  4199. msgid "Collapse All Categories"
  4200. msgstr ""
  4201. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4202. msgctxt "@action:inmenu"
  4203. msgid "Manage Setting Visibility..."
  4204. msgstr "Beállítások láthatóságának kezelése..."
  4205. #: resources/qml/Menus/SettingsMenu.qml:34
  4206. msgctxt "@title:menu"
  4207. msgid "&Material"
  4208. msgstr "&Alapanyag"
  4209. #: resources/qml/Menus/SettingsMenu.qml:49
  4210. msgctxt "@action:inmenu"
  4211. msgid "Set as Active Extruder"
  4212. msgstr "Beállítva aktív extruderként"
  4213. #: resources/qml/Menus/SettingsMenu.qml:55
  4214. msgctxt "@action:inmenu"
  4215. msgid "Enable Extruder"
  4216. msgstr "Extruder engedélyezése"
  4217. #: resources/qml/Menus/SettingsMenu.qml:63
  4218. msgctxt "@action:inmenu"
  4219. msgid "Disable Extruder"
  4220. msgstr "Extruder letiltása"
  4221. #: resources/qml/Menus/ViewMenu.qml:13
  4222. msgctxt "@title:menu menubar:toplevel"
  4223. msgid "&View"
  4224. msgstr "&Nézet"
  4225. #: resources/qml/Menus/ViewMenu.qml:17
  4226. msgctxt "@action:inmenu menubar:view"
  4227. msgid "&Camera position"
  4228. msgstr "&Kamera helyzet"
  4229. #: resources/qml/Menus/ViewMenu.qml:30
  4230. msgctxt "@action:inmenu menubar:view"
  4231. msgid "Camera view"
  4232. msgstr "Kamera nézet"
  4233. #: resources/qml/Menus/ViewMenu.qml:48
  4234. msgctxt "@action:inmenu menubar:view"
  4235. msgid "Perspective"
  4236. msgstr "Perspektívikus"
  4237. #: resources/qml/Menus/ViewMenu.qml:59
  4238. msgctxt "@action:inmenu menubar:view"
  4239. msgid "Orthographic"
  4240. msgstr "Merőleges"
  4241. #: resources/qml/MonitorButton.qml:115
  4242. msgctxt "@label:MonitorStatus"
  4243. msgid "Not connected to a printer"
  4244. msgstr "Nincs nyomtatóhoz csatlakoztatva"
  4245. #: resources/qml/MonitorButton.qml:119
  4246. msgctxt "@label:MonitorStatus"
  4247. msgid "Printer does not accept commands"
  4248. msgstr "A nyomtató nem fogadja a parancsokat"
  4249. #: resources/qml/MonitorButton.qml:129
  4250. msgctxt "@label:MonitorStatus"
  4251. msgid "In maintenance. Please check the printer"
  4252. msgstr "Karbantartás alatt. Ellenőrizze a nyomtatót"
  4253. #: resources/qml/MonitorButton.qml:140
  4254. msgctxt "@label:MonitorStatus"
  4255. msgid "Lost connection with the printer"
  4256. msgstr "Elveszett a kapcsolat a nyomtatóval"
  4257. #: resources/qml/MonitorButton.qml:142
  4258. msgctxt "@label:MonitorStatus"
  4259. msgid "Printing..."
  4260. msgstr "Nyomtatás..."
  4261. #: resources/qml/MonitorButton.qml:145
  4262. msgctxt "@label:MonitorStatus"
  4263. msgid "Paused"
  4264. msgstr "Felfüggsztve"
  4265. #: resources/qml/MonitorButton.qml:148
  4266. msgctxt "@label:MonitorStatus"
  4267. msgid "Preparing..."
  4268. msgstr "Előkészítés..."
  4269. #: resources/qml/MonitorButton.qml:150
  4270. msgctxt "@label:MonitorStatus"
  4271. msgid "Please remove the print"
  4272. msgstr "Távolítsa el a tárgyat"
  4273. #: resources/qml/MonitorButton.qml:318
  4274. msgctxt "@label"
  4275. msgid "Abort Print"
  4276. msgstr "Nyomtatás megszakítás"
  4277. #: resources/qml/MonitorButton.qml:327
  4278. msgctxt "@label"
  4279. msgid "Are you sure you want to abort the print?"
  4280. msgstr "Biztosan meg akarod szakítani a nyomtatást?"
  4281. #: resources/qml/ObjectItemButton.qml:109
  4282. msgctxt "@label"
  4283. msgid "Is printed as support."
  4284. msgstr ""
  4285. #: resources/qml/ObjectItemButton.qml:112
  4286. msgctxt "@label"
  4287. msgid "Other models overlapping with this model are modified."
  4288. msgstr ""
  4289. #: resources/qml/ObjectItemButton.qml:115
  4290. msgctxt "@label"
  4291. msgid "Infill overlapping with this model is modified."
  4292. msgstr ""
  4293. #: resources/qml/ObjectItemButton.qml:118
  4294. msgctxt "@label"
  4295. msgid "Overlaps with this model are not supported."
  4296. msgstr ""
  4297. #: resources/qml/ObjectItemButton.qml:125
  4298. msgctxt "@label %1 is the number of settings it overrides."
  4299. msgid "Overrides %1 setting."
  4300. msgid_plural "Overrides %1 settings."
  4301. msgstr[0] ""
  4302. msgstr[1] ""
  4303. #: resources/qml/ObjectSelector.qml:59
  4304. msgctxt "@label"
  4305. msgid "Object list"
  4306. msgstr "Objektum lista"
  4307. #: resources/qml/Preferences/GeneralPage.qml:134
  4308. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4309. msgctxt "@action:button"
  4310. msgid "Defaults"
  4311. msgstr ""
  4312. #: resources/qml/Preferences/GeneralPage.qml:172
  4313. msgctxt "@label"
  4314. msgid "Interface"
  4315. msgstr "Interfész"
  4316. #: resources/qml/Preferences/GeneralPage.qml:215
  4317. msgctxt "@heading"
  4318. msgid "-- incomplete --"
  4319. msgstr ""
  4320. #: resources/qml/Preferences/GeneralPage.qml:261
  4321. msgctxt "@label"
  4322. msgid "Currency:"
  4323. msgstr "Pénznem:"
  4324. #: resources/qml/Preferences/GeneralPage.qml:277
  4325. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4326. msgid "Theme*:"
  4327. msgstr ""
  4328. #: resources/qml/Preferences/GeneralPage.qml:323
  4329. msgctxt "@info:tooltip"
  4330. msgid "Slice automatically when changing settings."
  4331. msgstr "Automatikus újraszeletelés, ha a beállítások megváltoznak."
  4332. #: resources/qml/Preferences/GeneralPage.qml:331
  4333. msgctxt "@option:check"
  4334. msgid "Slice automatically"
  4335. msgstr "Automatikus szeletelés"
  4336. #: resources/qml/Preferences/GeneralPage.qml:340
  4337. msgctxt "@info:tooltip"
  4338. msgid "Show an icon and notifications in the system notification area."
  4339. msgstr ""
  4340. #: resources/qml/Preferences/GeneralPage.qml:348
  4341. msgctxt "@option:check"
  4342. msgid "Add icon to system tray *"
  4343. msgstr ""
  4344. #: resources/qml/Preferences/GeneralPage.qml:357
  4345. msgctxt "@label"
  4346. msgid "*You will need to restart the application for these changes to have effect."
  4347. msgstr ""
  4348. #: resources/qml/Preferences/GeneralPage.qml:373
  4349. msgctxt "@label"
  4350. msgid "Viewport behavior"
  4351. msgstr "A nézetablak viselkedése"
  4352. #: resources/qml/Preferences/GeneralPage.qml:381
  4353. msgctxt "@info:tooltip"
  4354. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4355. msgstr "Jelölje meg pirossal azokat a területeket, amiket szükséges alátámasztani.Ha ezeket a részeket nem támasztjuk alá, a nyomtatás nem lesz hibátlan."
  4356. #: resources/qml/Preferences/GeneralPage.qml:390
  4357. msgctxt "@option:check"
  4358. msgid "Display overhang"
  4359. msgstr "Túlnyúlás kijelzése"
  4360. #: resources/qml/Preferences/GeneralPage.qml:400
  4361. msgctxt "@info:tooltip"
  4362. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4363. msgstr ""
  4364. #: resources/qml/Preferences/GeneralPage.qml:409
  4365. msgctxt "@option:check"
  4366. msgid "Display model errors"
  4367. msgstr ""
  4368. #: resources/qml/Preferences/GeneralPage.qml:417
  4369. msgctxt "@info:tooltip"
  4370. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4371. msgstr "A kamerát úgy mozgatja, hogy a modell kiválasztásakor, az a nézet középpontjában legyen"
  4372. #: resources/qml/Preferences/GeneralPage.qml:422
  4373. msgctxt "@action:button"
  4374. msgid "Center camera when item is selected"
  4375. msgstr "Kamera középre, mikor az elem ki van választva"
  4376. #: resources/qml/Preferences/GeneralPage.qml:432
  4377. msgctxt "@info:tooltip"
  4378. msgid "Should the default zoom behavior of cura be inverted?"
  4379. msgstr "Megfordítsuk-e az alapértelmezett Zoom viselkedését?"
  4380. #: resources/qml/Preferences/GeneralPage.qml:437
  4381. msgctxt "@action:button"
  4382. msgid "Invert the direction of camera zoom."
  4383. msgstr "Fordítsa meg a kamera zoom irányát."
  4384. #: resources/qml/Preferences/GeneralPage.qml:453
  4385. msgctxt "@info:tooltip"
  4386. msgid "Should zooming move in the direction of the mouse?"
  4387. msgstr "A nagyítás az egér mozgatásának irányában mozogjon?"
  4388. #: resources/qml/Preferences/GeneralPage.qml:453
  4389. msgctxt "@info:tooltip"
  4390. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4391. msgstr "Az egér felé történő nagyítás ortográfiai szempontból nem támogatott."
  4392. #: resources/qml/Preferences/GeneralPage.qml:458
  4393. msgctxt "@action:button"
  4394. msgid "Zoom toward mouse direction"
  4395. msgstr "Nagyítás az egér mozgás irányában"
  4396. #: resources/qml/Preferences/GeneralPage.qml:484
  4397. msgctxt "@info:tooltip"
  4398. msgid "Should models on the platform be moved so that they no longer intersect?"
  4399. msgstr "Az alapsíkon lévő modelleket elmozgassuk úgy, hogy ne keresztezzék egymást?"
  4400. #: resources/qml/Preferences/GeneralPage.qml:489
  4401. msgctxt "@option:check"
  4402. msgid "Ensure models are kept apart"
  4403. msgstr "A modellek egymástól való távtartásának biztosítása"
  4404. #: resources/qml/Preferences/GeneralPage.qml:498
  4405. msgctxt "@info:tooltip"
  4406. msgid "Should models on the platform be moved down to touch the build plate?"
  4407. msgstr "A modelleket mozgatni kell lefelé, hogy érintsék a tárgyasztalt?"
  4408. #: resources/qml/Preferences/GeneralPage.qml:503
  4409. msgctxt "@option:check"
  4410. msgid "Automatically drop models to the build plate"
  4411. msgstr "Modellek automatikus tárgyasztalra illesztése"
  4412. #: resources/qml/Preferences/GeneralPage.qml:515
  4413. msgctxt "@info:tooltip"
  4414. msgid "Show caution message in g-code reader."
  4415. msgstr "Figyelmeztető üzenet megjelenítése g-kód olvasóban."
  4416. #: resources/qml/Preferences/GeneralPage.qml:524
  4417. msgctxt "@option:check"
  4418. msgid "Caution message in g-code reader"
  4419. msgstr "Figyelmeztető üzenet a g-code olvasóban"
  4420. #: resources/qml/Preferences/GeneralPage.qml:532
  4421. msgctxt "@info:tooltip"
  4422. msgid "Should layer be forced into compatibility mode?"
  4423. msgstr "Kényszerítsük a réteget kompatibilitási módba ?"
  4424. #: resources/qml/Preferences/GeneralPage.qml:537
  4425. msgctxt "@option:check"
  4426. msgid "Force layer view compatibility mode (restart required)"
  4427. msgstr "A rétegnézet kompatibilis módjának kényszerítése (újraindítás szükséges)"
  4428. #: resources/qml/Preferences/GeneralPage.qml:547
  4429. msgctxt "@info:tooltip"
  4430. msgid "Should Cura open at the location it was closed?"
  4431. msgstr ""
  4432. #: resources/qml/Preferences/GeneralPage.qml:552
  4433. msgctxt "@option:check"
  4434. msgid "Restore window position on start"
  4435. msgstr ""
  4436. #: resources/qml/Preferences/GeneralPage.qml:562
  4437. msgctxt "@info:tooltip"
  4438. msgid "What type of camera rendering should be used?"
  4439. msgstr "Milyen fípusú fényképezőgépet használunk?"
  4440. #: resources/qml/Preferences/GeneralPage.qml:569
  4441. msgctxt "@window:text"
  4442. msgid "Camera rendering:"
  4443. msgstr ""
  4444. #: resources/qml/Preferences/GeneralPage.qml:576
  4445. msgid "Perspective"
  4446. msgstr "Perspetívikus"
  4447. #: resources/qml/Preferences/GeneralPage.qml:577
  4448. msgid "Orthographic"
  4449. msgstr "Merőleges"
  4450. #: resources/qml/Preferences/GeneralPage.qml:617
  4451. msgctxt "@label"
  4452. msgid "Opening and saving files"
  4453. msgstr "Fájlok megnyitása és mentése"
  4454. #: resources/qml/Preferences/GeneralPage.qml:624
  4455. msgctxt "@info:tooltip"
  4456. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4457. msgstr ""
  4458. #: resources/qml/Preferences/GeneralPage.qml:629
  4459. msgctxt "@option:check"
  4460. msgid "Use a single instance of Cura"
  4461. msgstr ""
  4462. #: resources/qml/Preferences/GeneralPage.qml:640
  4463. msgctxt "@info:tooltip"
  4464. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4465. msgstr ""
  4466. #: resources/qml/Preferences/GeneralPage.qml:646
  4467. msgctxt "@option:check"
  4468. msgid "Clear buildplate before loading model into the single instance"
  4469. msgstr ""
  4470. #: resources/qml/Preferences/GeneralPage.qml:656
  4471. msgctxt "@info:tooltip"
  4472. msgid "Should models be scaled to the build volume if they are too large?"
  4473. msgstr "A modelleket átméretezzük a maximális építési méretre, ha azok túl nagyok?"
  4474. #: resources/qml/Preferences/GeneralPage.qml:661
  4475. msgctxt "@option:check"
  4476. msgid "Scale large models"
  4477. msgstr "Nagy modellek átméretezése"
  4478. #: resources/qml/Preferences/GeneralPage.qml:671
  4479. msgctxt "@info:tooltip"
  4480. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4481. msgstr "Egy adott modell rendkívül kicsinek tűnhet, ha mértékegysége például méterben van, nem pedig milliméterben. Ezeket a modelleket átméretezzük?"
  4482. #: resources/qml/Preferences/GeneralPage.qml:676
  4483. msgctxt "@option:check"
  4484. msgid "Scale extremely small models"
  4485. msgstr "Extrém kicsi modellek átméretezése"
  4486. #: resources/qml/Preferences/GeneralPage.qml:686
  4487. msgctxt "@info:tooltip"
  4488. msgid "Should models be selected after they are loaded?"
  4489. msgstr "Betöltés után a modellek legyenek kiválasztva?"
  4490. #: resources/qml/Preferences/GeneralPage.qml:691
  4491. msgctxt "@option:check"
  4492. msgid "Select models when loaded"
  4493. msgstr "Modell kiválasztása betöltés után"
  4494. #: resources/qml/Preferences/GeneralPage.qml:701
  4495. msgctxt "@info:tooltip"
  4496. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4497. msgstr "A nyomtató nevét, mint előtagot, hozzáadjuk a nyomtatási feladat nevéhez?"
  4498. #: resources/qml/Preferences/GeneralPage.qml:706
  4499. msgctxt "@option:check"
  4500. msgid "Add machine prefix to job name"
  4501. msgstr "Gépnév előtagként a feladatnévben"
  4502. #: resources/qml/Preferences/GeneralPage.qml:716
  4503. msgctxt "@info:tooltip"
  4504. msgid "Should a summary be shown when saving a project file?"
  4505. msgstr "Mutassuk az összegzést a projekt mentésekor?"
  4506. #: resources/qml/Preferences/GeneralPage.qml:720
  4507. msgctxt "@option:check"
  4508. msgid "Show summary dialog when saving project"
  4509. msgstr "Összegzés megjelenítése projekt mentésekor"
  4510. #: resources/qml/Preferences/GeneralPage.qml:730
  4511. msgctxt "@info:tooltip"
  4512. msgid "Default behavior when opening a project file"
  4513. msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor"
  4514. #: resources/qml/Preferences/GeneralPage.qml:738
  4515. msgctxt "@window:text"
  4516. msgid "Default behavior when opening a project file: "
  4517. msgstr "Alapértelmezett viselkedés a projektfájl megnyitásakor: "
  4518. #: resources/qml/Preferences/GeneralPage.qml:753
  4519. msgctxt "@option:openProject"
  4520. msgid "Always ask me this"
  4521. msgstr "Mindig kérdezz"
  4522. #: resources/qml/Preferences/GeneralPage.qml:754
  4523. msgctxt "@option:openProject"
  4524. msgid "Always open as a project"
  4525. msgstr "Projektként való megnyitás"
  4526. #: resources/qml/Preferences/GeneralPage.qml:755
  4527. msgctxt "@option:openProject"
  4528. msgid "Always import models"
  4529. msgstr "Importálja a modelleket"
  4530. #: resources/qml/Preferences/GeneralPage.qml:792
  4531. msgctxt "@info:tooltip"
  4532. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4533. msgstr "Ha módosított egy profilt, és váltott egy másikra, akkor megjelenik egy párbeszédpanel, amelyben megkérdezi, hogy meg kívánja-e tartani a módosításokat, vagy nem. Vagy választhat egy alapértelmezett viselkedést, és soha többé nem jeleníti meg ezt a párbeszédablakot."
  4534. #: resources/qml/Preferences/GeneralPage.qml:801
  4535. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4536. msgctxt "@label"
  4537. msgid "Profiles"
  4538. msgstr "Profilok"
  4539. #: resources/qml/Preferences/GeneralPage.qml:806
  4540. msgctxt "@window:text"
  4541. msgid "Default behavior for changed setting values when switching to a different profile: "
  4542. msgstr "Alapértelmezett viselkedés a megváltozott beállítási értékeknél, ha másik profilra vált: "
  4543. #: resources/qml/Preferences/GeneralPage.qml:821
  4544. msgctxt "@option:discardOrKeep"
  4545. msgid "Always discard changed settings"
  4546. msgstr "Megváltozott beállítások elvetése"
  4547. #: resources/qml/Preferences/GeneralPage.qml:822
  4548. msgctxt "@option:discardOrKeep"
  4549. msgid "Always transfer changed settings to new profile"
  4550. msgstr "Megváltozott beállítások alkalmazása az új profilba"
  4551. #: resources/qml/Preferences/GeneralPage.qml:856
  4552. msgctxt "@label"
  4553. msgid "Privacy"
  4554. msgstr "Magán"
  4555. #: resources/qml/Preferences/GeneralPage.qml:862
  4556. msgctxt "@info:tooltip"
  4557. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  4558. msgstr "Elküldjük a nyomtatott adatokat név nélkül az UltiMaker-nek?Semmilyen személyes infromáció, IP cím vagy azonosító nem kerül elküldésre."
  4559. #: resources/qml/Preferences/GeneralPage.qml:867
  4560. msgctxt "@option:check"
  4561. msgid "Send (anonymous) print information"
  4562. msgstr "Név nélküli információ küldés"
  4563. #: resources/qml/Preferences/GeneralPage.qml:897
  4564. msgctxt "@label"
  4565. msgid "Updates"
  4566. msgstr ""
  4567. #: resources/qml/Preferences/GeneralPage.qml:904
  4568. msgctxt "@info:tooltip"
  4569. msgid "Should Cura check for updates when the program is started?"
  4570. msgstr "A Cura-nak ellenőriznie kell-e a frissítéseket a program indításakor?"
  4571. #: resources/qml/Preferences/GeneralPage.qml:909
  4572. msgctxt "@option:check"
  4573. msgid "Check for updates on start"
  4574. msgstr "Keressen frissítéseket az induláskor"
  4575. #: resources/qml/Preferences/GeneralPage.qml:925
  4576. msgctxt "@info:tooltip"
  4577. msgid "When checking for updates, only check for stable releases."
  4578. msgstr ""
  4579. #: resources/qml/Preferences/GeneralPage.qml:931
  4580. msgctxt "@option:radio"
  4581. msgid "Stable releases only"
  4582. msgstr ""
  4583. #: resources/qml/Preferences/GeneralPage.qml:941
  4584. msgctxt "@info:tooltip"
  4585. msgid "When checking for updates, check for both stable and for beta releases."
  4586. msgstr ""
  4587. #: resources/qml/Preferences/GeneralPage.qml:947
  4588. msgctxt "@option:radio"
  4589. msgid "Stable and Beta releases"
  4590. msgstr ""
  4591. #: resources/qml/Preferences/GeneralPage.qml:957
  4592. msgctxt "@info:tooltip"
  4593. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4594. msgstr ""
  4595. #: resources/qml/Preferences/GeneralPage.qml:962
  4596. msgctxt "@option:check"
  4597. msgid "Get notifications for plugin updates"
  4598. msgstr ""
  4599. #: resources/qml/Preferences/MachinesPage.qml:50
  4600. msgctxt "@action:button"
  4601. msgid "Add New"
  4602. msgstr ""
  4603. #: resources/qml/Preferences/MachinesPage.qml:147
  4604. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4605. #: resources/qml/Preferences/ProfilesPage.qml:294
  4606. msgctxt "@action:button"
  4607. msgid "Activate"
  4608. msgstr "Aktivál"
  4609. #: resources/qml/Preferences/MachinesPage.qml:159
  4610. #: resources/qml/Preferences/ProfilesPage.qml:331
  4611. msgctxt "@action:button"
  4612. msgid "Rename"
  4613. msgstr "Átnevezés"
  4614. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4615. msgctxt "@label"
  4616. msgid "Materials compatible with active printer:"
  4617. msgstr ""
  4618. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4619. #: resources/qml/Preferences/ProfilesPage.qml:94
  4620. msgctxt "@action:button"
  4621. msgid "Create new"
  4622. msgstr ""
  4623. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4624. #: resources/qml/Preferences/ProfilesPage.qml:88
  4625. msgctxt "@action:button"
  4626. msgid "Import"
  4627. msgstr "Import"
  4628. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4629. msgctxt "@action:button"
  4630. msgid "Sync with Printers"
  4631. msgstr ""
  4632. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4633. #: resources/qml/Preferences/ProfilesPage.qml:311
  4634. msgctxt "@action:button"
  4635. msgid "Duplicate"
  4636. msgstr "Másolat"
  4637. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4638. #: resources/qml/Preferences/ProfilesPage.qml:342
  4639. msgctxt "@action:button"
  4640. msgid "Export"
  4641. msgstr "Export"
  4642. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4643. #: resources/qml/Preferences/ProfilesPage.qml:392
  4644. msgctxt "@title:window"
  4645. msgid "Confirm Remove"
  4646. msgstr "Eltávolítás megerősítése"
  4647. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4648. #: resources/qml/Preferences/ProfilesPage.qml:393
  4649. msgctxt "@label (%1 is object name)"
  4650. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4651. msgstr "Biztosan el akarod távolítani %1 -et? Ez nem vonható vissza!"
  4652. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4653. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4654. msgctxt "@title:window"
  4655. msgid "Import Material"
  4656. msgstr "Alapanyag importálás"
  4657. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4658. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4659. msgid "Successfully imported material <filename>%1</filename>"
  4660. msgstr "Sikeres alapanyag import <filename>%1</filename>"
  4661. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4662. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4663. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4664. msgstr "Nem sikerült importálni az alapanyagot <filename>%1</filename>: <message>%2</message>"
  4665. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4666. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4667. msgctxt "@title:window"
  4668. msgid "Export Material"
  4669. msgstr "Alapanyag export"
  4670. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4671. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4672. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4673. msgstr "Sikertelen alapanyag export <filename>%1</filename>: <message>%2</message>"
  4674. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4675. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4676. msgid "Successfully exported material to <filename>%1</filename>"
  4677. msgstr "Sikeres alapanyag export <filename>%1</filename> -ba"
  4678. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4679. msgctxt "@title:window"
  4680. msgid "Sync materials with printers"
  4681. msgstr ""
  4682. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4683. msgctxt "@title:header"
  4684. msgid "Sync materials with printers"
  4685. msgstr ""
  4686. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4687. msgctxt "@text"
  4688. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4689. msgstr ""
  4690. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4691. msgctxt "@button"
  4692. msgid "Why do I need to sync material profiles?"
  4693. msgstr ""
  4694. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4695. msgctxt "@button"
  4696. msgid "Start"
  4697. msgstr ""
  4698. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4699. msgctxt "@title:header"
  4700. msgid "Sign in"
  4701. msgstr ""
  4702. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4703. msgctxt "@text"
  4704. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4705. msgstr ""
  4706. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4707. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4708. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4709. msgctxt "@button"
  4710. msgid "Sync materials with USB"
  4711. msgstr ""
  4712. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4713. msgctxt "@title:header"
  4714. msgid "The following printers will receive the new material profiles:"
  4715. msgstr ""
  4716. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4717. msgctxt "@title:header"
  4718. msgid "Something went wrong when sending the materials to the printers."
  4719. msgstr ""
  4720. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4721. msgctxt "@title:header"
  4722. msgid "Material profiles successfully synced with the following printers:"
  4723. msgstr ""
  4724. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4725. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4726. msgctxt "@button"
  4727. msgid "Troubleshooting"
  4728. msgstr ""
  4729. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4730. msgctxt "@text Asking the user whether printers are missing in a list."
  4731. msgid "Printers missing?"
  4732. msgstr ""
  4733. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4734. msgctxt "@text"
  4735. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4736. msgstr ""
  4737. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4738. msgctxt "@button"
  4739. msgid "Refresh List"
  4740. msgstr ""
  4741. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4742. msgctxt "@button"
  4743. msgid "Try again"
  4744. msgstr ""
  4745. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4746. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4747. msgctxt "@button"
  4748. msgid "Done"
  4749. msgstr ""
  4750. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4751. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4752. msgctxt "@button"
  4753. msgid "Sync"
  4754. msgstr ""
  4755. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4756. msgctxt "@button"
  4757. msgid "Syncing"
  4758. msgstr ""
  4759. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4760. msgctxt "@title:header"
  4761. msgid "No printers found"
  4762. msgstr ""
  4763. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4764. msgctxt "@text"
  4765. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4766. msgstr ""
  4767. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4768. msgctxt "@button"
  4769. msgid "Learn how to connect your printer to Digital Factory"
  4770. msgstr ""
  4771. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4772. msgctxt "@button"
  4773. msgid "Refresh"
  4774. msgstr ""
  4775. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4776. msgctxt "@title:header"
  4777. msgid "Sync material profiles via USB"
  4778. msgstr ""
  4779. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4780. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4781. msgid "Follow the following steps to load the new material profiles to your printer."
  4782. msgstr ""
  4783. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4784. msgctxt "@text"
  4785. msgid "Click the export material archive button."
  4786. msgstr ""
  4787. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4788. msgctxt "@text"
  4789. msgid "Save the .umm file on a USB stick."
  4790. msgstr ""
  4791. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4792. msgctxt "@text"
  4793. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4794. msgstr ""
  4795. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4796. msgctxt "@button"
  4797. msgid "How to load new material profiles to my printer"
  4798. msgstr ""
  4799. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4800. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4801. msgctxt "@button"
  4802. msgid "Back"
  4803. msgstr "Vissza"
  4804. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4805. msgctxt "@button"
  4806. msgid "Export material archive"
  4807. msgstr ""
  4808. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4809. msgctxt "@title:window"
  4810. msgid "Export All Materials"
  4811. msgstr ""
  4812. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4813. msgctxt "@title:window"
  4814. msgid "Confirm Diameter Change"
  4815. msgstr "Új átmérő megerősítése"
  4816. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4817. msgctxt "@label (%1 is a number)"
  4818. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4819. msgstr "Az új nyomtatószál átmérő %1 mm -re lett beállítva. Ez nem kompatibilis a jelenlegi extruderrel. Biztos, hogy így folytatod?"
  4820. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4821. msgctxt "@label"
  4822. msgid "Display Name"
  4823. msgstr "Megjelenítendő név"
  4824. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4825. msgctxt "@label"
  4826. msgid "Brand"
  4827. msgstr "Márka"
  4828. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4829. msgctxt "@label"
  4830. msgid "Material Type"
  4831. msgstr "Alapanyag típus"
  4832. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4833. msgctxt "@label"
  4834. msgid "Color"
  4835. msgstr "Szín"
  4836. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4837. msgctxt "@title"
  4838. msgid "Material color picker"
  4839. msgstr ""
  4840. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4841. msgctxt "@label"
  4842. msgid "Properties"
  4843. msgstr "Tulajdonságok"
  4844. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4845. msgctxt "@label"
  4846. msgid "Density"
  4847. msgstr "Sűrűség"
  4848. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4849. msgctxt "@label"
  4850. msgid "Diameter"
  4851. msgstr "Átmérő"
  4852. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4853. msgctxt "@label"
  4854. msgid "Filament Cost"
  4855. msgstr "Nyomtatószál költség"
  4856. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4857. msgctxt "@label"
  4858. msgid "Filament weight"
  4859. msgstr "Nyomtatószál súly"
  4860. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4861. msgctxt "@label"
  4862. msgid "Filament length"
  4863. msgstr "Nyomtatószál hossz"
  4864. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4865. msgctxt "@label"
  4866. msgid "Cost per Meter"
  4867. msgstr "Költség / méter"
  4868. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4869. msgctxt "@label"
  4870. msgid "This material is linked to %1 and shares some of its properties."
  4871. msgstr "Ez az anyag kapcsolódik% 1 -hez és osztja néhány tulajdonságát."
  4872. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4873. msgctxt "@label"
  4874. msgid "Unlink Material"
  4875. msgstr "Alapanyag leválasztása"
  4876. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4877. msgctxt "@label"
  4878. msgid "Description"
  4879. msgstr "Leírás"
  4880. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4881. msgctxt "@label"
  4882. msgid "Adhesion Information"
  4883. msgstr "Tapadási információ"
  4884. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4885. msgctxt "@title"
  4886. msgid "Information"
  4887. msgstr "Információ"
  4888. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4889. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4890. msgctxt "@label"
  4891. msgid "Print settings"
  4892. msgstr "Nyomtatási beállítások"
  4893. #: resources/qml/Preferences/ProfilesPage.qml:59
  4894. msgctxt "@label"
  4895. msgid "Profiles compatible with active printer:"
  4896. msgstr ""
  4897. #: resources/qml/Preferences/ProfilesPage.qml:98
  4898. msgctxt "@action:tooltip"
  4899. msgid "Create new profile from current settings/overrides"
  4900. msgstr ""
  4901. #: resources/qml/Preferences/ProfilesPage.qml:125
  4902. msgctxt "@action:label"
  4903. msgid "Some settings from current profile were overwritten."
  4904. msgstr ""
  4905. #: resources/qml/Preferences/ProfilesPage.qml:140
  4906. msgctxt "@action:button"
  4907. msgid "Update profile."
  4908. msgstr ""
  4909. #: resources/qml/Preferences/ProfilesPage.qml:143
  4910. msgctxt "@action:tooltip"
  4911. msgid "Update profile with current settings/overrides"
  4912. msgstr ""
  4913. #: resources/qml/Preferences/ProfilesPage.qml:148
  4914. msgctxt "@action:button"
  4915. msgid "Discard current changes"
  4916. msgstr "A jelenlegi változások elvetése"
  4917. #: resources/qml/Preferences/ProfilesPage.qml:158
  4918. msgctxt "@action:label"
  4919. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4920. msgstr "Ez a profil a nyomtató által megadott alapértelmezéseket használja, tehát az alábbi listában nincs egyetlen beállítás módosítás sem."
  4921. #: resources/qml/Preferences/ProfilesPage.qml:165
  4922. msgctxt "@action:label"
  4923. msgid "Your current settings match the selected profile."
  4924. msgstr "Az Ön aktuális beállításai megegyeznek a kiválasztott profillal."
  4925. #: resources/qml/Preferences/ProfilesPage.qml:175
  4926. msgctxt "@title:tab"
  4927. msgid "Global Settings"
  4928. msgstr "Általános beállítások"
  4929. #: resources/qml/Preferences/ProfilesPage.qml:278
  4930. msgctxt "@title:window"
  4931. msgid "Create Profile"
  4932. msgstr "Profil készítés"
  4933. #: resources/qml/Preferences/ProfilesPage.qml:280
  4934. msgctxt "@info"
  4935. msgid "Please provide a name for this profile."
  4936. msgstr "Adjon nevet ehhez a profilhoz."
  4937. #: resources/qml/Preferences/ProfilesPage.qml:352
  4938. #: resources/qml/Preferences/ProfilesPage.qml:368
  4939. msgctxt "@title:window"
  4940. msgid "Export Profile"
  4941. msgstr "Profil exportálás"
  4942. #: resources/qml/Preferences/ProfilesPage.qml:382
  4943. msgctxt "@title:window"
  4944. msgid "Duplicate Profile"
  4945. msgstr "Profil másolása"
  4946. #: resources/qml/Preferences/ProfilesPage.qml:409
  4947. msgctxt "@title:window"
  4948. msgid "Rename Profile"
  4949. msgstr "Profil átnevezés"
  4950. #: resources/qml/Preferences/ProfilesPage.qml:422
  4951. #: resources/qml/Preferences/ProfilesPage.qml:429
  4952. msgctxt "@title:window"
  4953. msgid "Import Profile"
  4954. msgstr "Profil importálás"
  4955. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4956. msgctxt "@item:tooltip"
  4957. msgid "This setting has been hidden by the active machine and will not be visible."
  4958. msgstr ""
  4959. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4960. msgctxt "@item:tooltip %1 is list of setting names"
  4961. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4962. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4963. msgstr[0] ""
  4964. msgstr[1] ""
  4965. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4966. msgctxt "@title:tab"
  4967. msgid "Setting Visibility"
  4968. msgstr "Láthatóság beállítása"
  4969. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4970. msgctxt "@label:textbox"
  4971. msgid "Check all"
  4972. msgstr "Mindent ellenőrizni"
  4973. #: resources/qml/PrintMonitor.qml:156
  4974. msgctxt "@label"
  4975. msgid "Active print"
  4976. msgstr "Aktív nyomtatás"
  4977. #: resources/qml/PrintMonitor.qml:164
  4978. msgctxt "@label"
  4979. msgid "Job Name"
  4980. msgstr "Feladat név"
  4981. #: resources/qml/PrintMonitor.qml:172
  4982. msgctxt "@label"
  4983. msgid "Printing Time"
  4984. msgstr "Nyomtatási idő"
  4985. #: resources/qml/PrintMonitor.qml:180
  4986. msgctxt "@label"
  4987. msgid "Estimated time left"
  4988. msgstr "Becsült hátralévő idő"
  4989. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4990. msgctxt "@label"
  4991. msgid "Profile"
  4992. msgstr "Profil"
  4993. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  4994. msgctxt "@tooltip"
  4995. msgid ""
  4996. "Some setting/override values are different from the values stored in the profile.\n"
  4997. "\n"
  4998. "Click to open the profile manager."
  4999. msgstr ""
  5000. "Néhány beállított vagy felülbírált érték eltérő, a profilban tárolt értéktől. \n"
  5001. "\n"
  5002. "Kattints, hogy megnyisd a profil menedzsert."
  5003. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5004. msgctxt "@label:header"
  5005. msgid "Custom profiles"
  5006. msgstr ""
  5007. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5008. msgctxt "@label shown when we load a Gcode file"
  5009. msgid "Print setup disabled. G-code file can not be modified."
  5010. msgstr "A nyomtatás beállítása letiltva. A G-kód fájl nem módosítható."
  5011. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:160
  5012. msgctxt "@button"
  5013. msgid "Recommended"
  5014. msgstr "Ajánlott"
  5015. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5016. msgctxt "@label:Should be short"
  5017. msgid "On"
  5018. msgstr "Be"
  5019. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5020. msgctxt "@label:Should be short"
  5021. msgid "Off"
  5022. msgstr "Ki"
  5023. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5024. msgctxt "@info, %1 is the name of the custom profile"
  5025. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5026. msgstr ""
  5027. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5028. msgctxt "@info, %1 is the name of the custom profile"
  5029. msgid "<b>%1</b> custom profile is overriding some settings."
  5030. msgstr ""
  5031. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5032. msgctxt "@info %1 is the name of a profile"
  5033. msgid "Recommended settings (for <b>%1</b>) were altered."
  5034. msgstr ""
  5035. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5036. msgctxt "@info %1 is the name of a profile"
  5037. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5038. msgstr ""
  5039. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5040. msgctxt "@info"
  5041. msgid "Reset to defaults."
  5042. msgstr ""
  5043. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5044. msgctxt "@info"
  5045. msgid "Compare and save."
  5046. msgstr ""
  5047. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5048. msgctxt "@label"
  5049. msgid "Adhesion"
  5050. msgstr "Letapadás"
  5051. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5052. msgctxt "@label"
  5053. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  5054. msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről."
  5055. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5056. #, fuzzy
  5057. msgctxt "@label"
  5058. msgid "Recommended print settings"
  5059. msgstr "Nyomtatási beállítások"
  5060. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5061. #, fuzzy
  5062. msgctxt "@button"
  5063. msgid "Show Custom"
  5064. msgstr "Egyéni"
  5065. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5066. msgctxt "@label"
  5067. msgid "Resolution"
  5068. msgstr ""
  5069. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5070. msgctxt "@label"
  5071. msgid "Strength"
  5072. msgstr ""
  5073. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5074. msgctxt "@label"
  5075. msgid "The following settings define the strength of your part."
  5076. msgstr ""
  5077. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5078. #, fuzzy
  5079. msgctxt "infill_sparse_density description"
  5080. msgid "Infill Density"
  5081. msgstr "Sűrűség"
  5082. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5083. msgctxt "@label"
  5084. msgid "Adjusts the density of infill of the print."
  5085. msgstr ""
  5086. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5087. msgctxt "@action:label"
  5088. msgid "Infill Pattern"
  5089. msgstr ""
  5090. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5091. msgctxt "@label"
  5092. msgid ""
  5093. "The pattern of the infill material of the print:\n"
  5094. "\n"
  5095. "For quick prints of non functional model choose line, zig zag or lighting infill.\n"
  5096. "\n"
  5097. "For functional part not subjected to a lot of stress we reccomend grid or triangle or tri hexagon.\n"
  5098. "\n"
  5099. "For functional 3D prints which require high strenght in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5100. msgstr ""
  5101. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5102. #, fuzzy
  5103. msgctxt "@action:label"
  5104. msgid "Shell Thickness"
  5105. msgstr "Réteg vastagság"
  5106. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5107. msgctxt "@label"
  5108. msgid "Defines the tickness of your part side walls, roof and floor."
  5109. msgstr ""
  5110. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5111. msgctxt "@label"
  5112. msgid "Support"
  5113. msgstr "Támasz"
  5114. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5115. #, fuzzy
  5116. msgctxt "@label"
  5117. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5118. msgstr "A támasz létrehozása segíti a modell kinyúló részeinek hibátlan nyomatását. Támasz nélkül, ezek a részek összeomlanak, és nem lehetséges a hibátlan nyomtatás."
  5119. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5120. #, fuzzy
  5121. msgctxt "@action:label"
  5122. msgid "Support Type"
  5123. msgstr "Támasz"
  5124. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5125. msgctxt "@label"
  5126. msgid ""
  5127. "Chooses between the techniques available to generate support. \n"
  5128. "\n"
  5129. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5130. "\n"
  5131. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  5132. msgstr ""
  5133. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5134. #, fuzzy
  5135. msgctxt "@action:label"
  5136. msgid "Print with"
  5137. msgstr "Nyomtatás"
  5138. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5139. msgctxt "@label"
  5140. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5141. msgstr ""
  5142. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5143. msgctxt "@action:label"
  5144. msgid "Placement"
  5145. msgstr ""
  5146. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5147. msgctxt "support_type description"
  5148. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  5149. msgstr ""
  5150. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5151. msgctxt "@error"
  5152. msgid "Configuration not supported"
  5153. msgstr ""
  5154. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5155. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5156. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5157. msgstr ""
  5158. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5159. msgctxt "@button:label"
  5160. msgid "Learn more"
  5161. msgstr ""
  5162. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5163. msgctxt "@label"
  5164. msgid "Extruder"
  5165. msgstr "Extruder"
  5166. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5167. msgctxt "@tooltip"
  5168. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  5169. msgstr "A nyomtatófej célhőmérséklete. A fűtőblokk hőmérséklete a beállított értékre fog melegedni, vagy éppen hűlni. Ha ez az érték 0, akkor a fejfűtés ki fog kapcsolni."
  5170. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5171. msgctxt "@tooltip"
  5172. msgid "The current temperature of this hotend."
  5173. msgstr "Ennek a fejnek a jelenlegi hőmérséklete."
  5174. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5175. msgctxt "@tooltip of temperature input"
  5176. msgid "The temperature to pre-heat the hotend to."
  5177. msgstr "A nyomtatófej előmelegítési hőmérséklete."
  5178. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5179. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5180. msgctxt "@button Cancel pre-heating"
  5181. msgid "Cancel"
  5182. msgstr "Elvet"
  5183. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5184. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5185. msgctxt "@button"
  5186. msgid "Pre-heat"
  5187. msgstr "Előfűtés"
  5188. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5189. msgctxt "@tooltip of pre-heat"
  5190. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  5191. msgstr "A nyomtatófejet a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére."
  5192. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5193. msgctxt "@tooltip"
  5194. msgid "The colour of the material in this extruder."
  5195. msgstr "Az alapanyag színe ennél az extrudernél."
  5196. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5197. msgctxt "@tooltip"
  5198. msgid "The material in this extruder."
  5199. msgstr "Az alapanyag ebben az extruderben."
  5200. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5201. msgctxt "@tooltip"
  5202. msgid "The nozzle inserted in this extruder."
  5203. msgstr "A fúvóka be van építve az extruderbe."
  5204. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5205. msgctxt "@label"
  5206. msgid "Build plate"
  5207. msgstr "Tárgyasztal"
  5208. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5209. msgctxt "@tooltip"
  5210. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  5211. msgstr "A fűthető ágy beállítható célhőmérséklete. Ha beállítjuk ezt az értéket a tálca elkezd erre a hőmérsékletre melegedni, vagy éppen lehűlni. Ha az érték 0 a tálcafűtés kikapcsol."
  5212. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5213. msgctxt "@tooltip"
  5214. msgid "The current temperature of the heated bed."
  5215. msgstr "A fűthető ágy aktuális hőmérséklete."
  5216. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5217. msgctxt "@tooltip of temperature input"
  5218. msgid "The temperature to pre-heat the bed to."
  5219. msgstr "A tálca előmelegítési hőmérséklete."
  5220. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5221. msgctxt "@tooltip of pre-heat"
  5222. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  5223. msgstr "A fűthető tálcát, a nyomtatás előtt előre felmelegíti. Ez alatt az idő alatt tudod folytatni a nyomtatás beállítását, esetleg a szeletelést, s mire ezekkel a műveletekkel elkészülsz, a nyomtató már készen fog állni a nyomtatásra.Így nem kell majd várnod a gép felmelegedésére."
  5224. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5225. msgctxt "@label"
  5226. msgid "Printer control"
  5227. msgstr "Nyomtató vezérlés"
  5228. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5229. msgctxt "@label"
  5230. msgid "Jog Position"
  5231. msgstr "Léptetőgomb pozíció"
  5232. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5233. msgctxt "@label"
  5234. msgid "X/Y"
  5235. msgstr "X/Y"
  5236. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5237. msgctxt "@label"
  5238. msgid "Z"
  5239. msgstr "Z"
  5240. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5241. msgctxt "@label"
  5242. msgid "Jog Distance"
  5243. msgstr "Léptetőgomb távolság"
  5244. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5245. msgctxt "@label"
  5246. msgid "Send G-code"
  5247. msgstr "G-kód küldés"
  5248. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5249. msgctxt "@tooltip of G-code command input"
  5250. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5251. msgstr "Küldjön egy egyéni G-kód parancsot a csatlakoztatott nyomtatóra. A parancs elküldéséhez nyomja meg az 'enter' gombot."
  5252. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5253. msgctxt "@info:status"
  5254. msgid "The printer is not connected."
  5255. msgstr "A nyomtató nincs csatlakoztatva."
  5256. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5257. msgctxt "@label"
  5258. msgid "Hide all connected printers"
  5259. msgstr ""
  5260. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5261. msgctxt "@label"
  5262. msgid "Show all connected printers"
  5263. msgstr ""
  5264. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5265. msgctxt "@status"
  5266. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5267. msgstr ""
  5268. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5269. msgctxt "@status"
  5270. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5271. msgstr ""
  5272. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5273. msgctxt "@status"
  5274. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5275. msgstr ""
  5276. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5277. msgctxt "@status"
  5278. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5279. msgstr ""
  5280. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5281. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5282. msgctxt "@label"
  5283. msgid "Other printers"
  5284. msgstr ""
  5285. #: resources/qml/ProfileOverview.qml:36
  5286. msgctxt "@title:column"
  5287. msgid "Setting"
  5288. msgstr "Beállítás"
  5289. #: resources/qml/ProfileOverview.qml:37
  5290. msgctxt "@title:column"
  5291. msgid "Profile"
  5292. msgstr "Profil"
  5293. #: resources/qml/ProfileOverview.qml:38
  5294. msgctxt "@title:column"
  5295. msgid "Current"
  5296. msgstr "Jelenlegi"
  5297. #: resources/qml/ProfileOverview.qml:39
  5298. msgctxt "@title:column Unit of measurement"
  5299. msgid "Unit"
  5300. msgstr ""
  5301. #: resources/qml/SearchBar.qml:17
  5302. msgctxt "@placeholder"
  5303. msgid "Search"
  5304. msgstr ""
  5305. #: resources/qml/Settings/SettingCategory.qml:115
  5306. msgctxt "@label"
  5307. msgid ""
  5308. "Some hidden settings use values different from their normal calculated value.\n"
  5309. "\n"
  5310. "Click to make these settings visible."
  5311. msgstr ""
  5312. "Egyes beállítások eltérő értéken vannak a normál, kalkulált értékektől.\n"
  5313. "\n"
  5314. "Kattints, hogy ezek a beállítások láthatók legyenek."
  5315. #: resources/qml/Settings/SettingItem.qml:84
  5316. msgctxt "@label"
  5317. msgid "This setting is not used because all the settings that it influences are overridden."
  5318. msgstr "Ezt a beállítást nem használjuk, mert minden ezen beállítással befolyásolt egyéb beállítás értéke felül van bírálva."
  5319. #: resources/qml/Settings/SettingItem.qml:89
  5320. msgctxt "@label Header for list of settings."
  5321. msgid "Affects"
  5322. msgstr "Befolyásolások"
  5323. #: resources/qml/Settings/SettingItem.qml:94
  5324. msgctxt "@label Header for list of settings."
  5325. msgid "Affected By"
  5326. msgstr "Befolyásolja"
  5327. #: resources/qml/Settings/SettingItem.qml:190
  5328. msgctxt "@label"
  5329. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5330. msgstr "Ezt a beállítást megoszta az összes extruder között. Az itt megváltoztatott értékek az összes extrudernél meg fognak változni."
  5331. #: resources/qml/Settings/SettingItem.qml:194
  5332. msgctxt "@label"
  5333. msgid "This setting is resolved from conflicting extruder-specific values:"
  5334. msgstr ""
  5335. #: resources/qml/Settings/SettingItem.qml:234
  5336. msgctxt "@label"
  5337. msgid ""
  5338. "This setting has a value that is different from the profile.\n"
  5339. "\n"
  5340. "Click to restore the value of the profile."
  5341. msgstr ""
  5342. "Ennek a beállításnak az értéke eltér a profilban megadottól.\n"
  5343. "\n"
  5344. "Kattintson a profil értékének visszaállításához."
  5345. #: resources/qml/Settings/SettingItem.qml:334
  5346. msgctxt "@label"
  5347. msgid ""
  5348. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5349. "\n"
  5350. "Click to restore the calculated value."
  5351. msgstr ""
  5352. "Ez az érték általában kalulálva van, de jelenleg abszolút értékre van beállítva \n"
  5353. "\n"
  5354. "Kattintson, hogy visszaállítsuk a kalkulált értéket."
  5355. #: resources/qml/Settings/SettingView.qml:48
  5356. msgctxt "@label:textbox"
  5357. msgid "Search settings"
  5358. msgstr ""
  5359. #: resources/qml/Settings/SettingView.qml:395
  5360. msgctxt "@action:menu"
  5361. msgid "Copy value to all extruders"
  5362. msgstr "Értékek másolása minden extruderre"
  5363. #: resources/qml/Settings/SettingView.qml:404
  5364. msgctxt "@action:menu"
  5365. msgid "Copy all changed values to all extruders"
  5366. msgstr "Minden változott érték másolása minden extruderre"
  5367. #: resources/qml/Settings/SettingView.qml:440
  5368. msgctxt "@action:menu"
  5369. msgid "Hide this setting"
  5370. msgstr "Beállítás elrejtése"
  5371. #: resources/qml/Settings/SettingView.qml:453
  5372. msgctxt "@action:menu"
  5373. msgid "Don't show this setting"
  5374. msgstr "Ne jelenítsd meg ezt a beállítást"
  5375. #: resources/qml/Settings/SettingView.qml:457
  5376. msgctxt "@action:menu"
  5377. msgid "Keep this setting visible"
  5378. msgstr "Beállítás látható marad"
  5379. #: resources/qml/Toolbar.qml:142
  5380. msgctxt "@label %1 is filled in with the name of an extruder"
  5381. msgid "Print Selected Model with %1"
  5382. msgid_plural "Print Selected Models with %1"
  5383. msgstr[0] "Kiválasztott modell nyomtatása %1"
  5384. msgstr[1] "Kiválasztott modellek nyomtatása %1"
  5385. #: resources/qml/ViewOrientationControls.qml:25
  5386. msgctxt "@info:tooltip"
  5387. msgid "3D View"
  5388. msgstr ""
  5389. #: resources/qml/ViewOrientationControls.qml:38
  5390. msgctxt "@info:tooltip"
  5391. msgid "Front View"
  5392. msgstr ""
  5393. #: resources/qml/ViewOrientationControls.qml:51
  5394. msgctxt "@info:tooltip"
  5395. msgid "Top View"
  5396. msgstr ""
  5397. #: resources/qml/ViewOrientationControls.qml:64
  5398. msgctxt "@info:tooltip"
  5399. msgid "Left View"
  5400. msgstr ""
  5401. #: resources/qml/ViewOrientationControls.qml:77
  5402. msgctxt "@info:tooltip"
  5403. msgid "Right View"
  5404. msgstr ""
  5405. #: resources/qml/ViewsSelector.qml:50
  5406. msgctxt "@label"
  5407. msgid "View type"
  5408. msgstr "Nézet típus"
  5409. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5410. msgctxt "@label"
  5411. msgid "Add a Cloud printer"
  5412. msgstr ""
  5413. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5414. msgctxt "@label"
  5415. msgid "Waiting for Cloud response"
  5416. msgstr ""
  5417. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5418. msgctxt "@label"
  5419. msgid "No printers found in your account?"
  5420. msgstr ""
  5421. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5422. msgctxt "@label"
  5423. msgid "The following printers in your account have been added in Cura:"
  5424. msgstr ""
  5425. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5426. msgctxt "@button"
  5427. msgid "Add printer manually"
  5428. msgstr ""
  5429. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5430. msgctxt "@label"
  5431. msgid "Manufacturer"
  5432. msgstr ""
  5433. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5434. msgctxt "@label"
  5435. msgid "Profile author"
  5436. msgstr ""
  5437. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5438. msgctxt "@label"
  5439. msgid "Printer name"
  5440. msgstr "Nyomtató név"
  5441. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5442. msgctxt "@text"
  5443. msgid "Please name your printer"
  5444. msgstr ""
  5445. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5446. msgctxt "@label"
  5447. msgid "There is no printer found over your network."
  5448. msgstr "A hálózaton nem található nyomtató."
  5449. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5450. msgctxt "@label"
  5451. msgid "Refresh"
  5452. msgstr "Frissítés"
  5453. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5454. msgctxt "@label"
  5455. msgid "Add printer by IP"
  5456. msgstr "Nyomtató hozzáadása IP címmel"
  5457. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5458. msgctxt "@label"
  5459. msgid "Troubleshooting"
  5460. msgstr "Hibaelhárítás"
  5461. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5462. msgctxt "@label"
  5463. msgid "Add printer by IP address"
  5464. msgstr "Nyomtató hozzáadása IP címmel"
  5465. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5466. msgctxt "@text"
  5467. msgid "Enter your printer's IP address."
  5468. msgstr ""
  5469. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5470. msgctxt "@button"
  5471. msgid "Add"
  5472. msgstr "Hozzáad"
  5473. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5474. msgctxt "@label"
  5475. msgid "Could not connect to device."
  5476. msgstr "Nem sikerült csatlakozni az eszközhöz."
  5477. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5478. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5479. msgctxt "@label"
  5480. msgid "Can't connect to your UltiMaker printer?"
  5481. msgstr ""
  5482. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5483. msgctxt "@label"
  5484. msgid "The printer at this address has not responded yet."
  5485. msgstr "Az ezen a címen található nyomtató még nem válaszolt."
  5486. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5487. msgctxt "@label"
  5488. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5489. msgstr "Ezt a nyomtatót nem lehet hozzáadni, mert ismeretlen a nyomtató vagy nem egy csoport tagja."
  5490. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5491. msgctxt "@button"
  5492. msgid "Connect"
  5493. msgstr "Csatlakozás"
  5494. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5495. msgctxt "@label"
  5496. msgid "Add a networked printer"
  5497. msgstr "Hálózati nyomtató hozzáadása"
  5498. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5499. msgctxt "@label"
  5500. msgid "Add a non-networked printer"
  5501. msgstr "Helyi nyomtató hozzáadása"
  5502. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5503. msgctxt "@button"
  5504. msgid "Add UltiMaker printer via Digital Factory"
  5505. msgstr ""
  5506. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5507. msgctxt "@label"
  5508. msgid "In order to start using Cura you will need to configure a printer."
  5509. msgstr ""
  5510. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5511. msgctxt "@label"
  5512. msgid "What printer would you like to setup?"
  5513. msgstr ""
  5514. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5515. #, fuzzy
  5516. msgctxt "@button"
  5517. msgid "UltiMaker printer"
  5518. msgstr "UltiMaker Cura"
  5519. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5520. #, fuzzy
  5521. msgctxt "@button"
  5522. msgid "Non UltiMaker printer"
  5523. msgstr "UltiMaker fiók"
  5524. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5525. msgctxt "@button"
  5526. msgid "Learn more about adding printers to Cura"
  5527. msgstr ""
  5528. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5529. #, fuzzy
  5530. msgctxt "@label"
  5531. msgid "Add printer"
  5532. msgstr "Nyomtató hozzáadása"
  5533. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5534. msgctxt "@label"
  5535. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5536. msgstr ""
  5537. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5538. msgctxt "@label"
  5539. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5540. msgstr ""
  5541. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5542. msgctxt "@info"
  5543. msgid "Sign in into UltiMaker Digilal Factory"
  5544. msgstr ""
  5545. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5546. msgctxt "@info"
  5547. msgid "Follow the procedure to add a new printer"
  5548. msgstr ""
  5549. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5550. msgctxt "@info"
  5551. msgid "Your new printer will automatically appear in Cura"
  5552. msgstr ""
  5553. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5554. #, fuzzy
  5555. msgctxt "@button"
  5556. msgid "Learn more"
  5557. msgstr "Többet szeretnél?"
  5558. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5559. #, fuzzy
  5560. msgctxt "@button"
  5561. msgid "Add local printer"
  5562. msgstr "Nyomtató hozzáadása"
  5563. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5564. msgctxt "@button"
  5565. msgid "Sign in to Digital Factory"
  5566. msgstr ""
  5567. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5568. #, fuzzy
  5569. msgctxt "@button"
  5570. msgid "Waiting for new printers"
  5571. msgstr "Nyomtatók kezelése"
  5572. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5573. msgctxt "@label"
  5574. msgid "Release Notes"
  5575. msgstr ""
  5576. #: resources/qml/WelcomePages/CloudContent.qml:123
  5577. msgctxt "@text"
  5578. msgid "Add material settings and plugins from the Marketplace"
  5579. msgstr ""
  5580. #: resources/qml/WelcomePages/CloudContent.qml:149
  5581. msgctxt "@text"
  5582. msgid "Backup and sync your material settings and plugins"
  5583. msgstr ""
  5584. #: resources/qml/WelcomePages/CloudContent.qml:175
  5585. msgctxt "@text"
  5586. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5587. msgstr ""
  5588. #: resources/qml/WelcomePages/CloudContent.qml:189
  5589. msgctxt "@button"
  5590. msgid "Skip"
  5591. msgstr ""
  5592. #: resources/qml/WelcomePages/CloudContent.qml:201
  5593. msgctxt "@text"
  5594. msgid "Create a free UltiMaker Account"
  5595. msgstr ""
  5596. #: resources/qml/WelcomePages/DataCollectionsContent.qml:24
  5597. msgctxt "@label"
  5598. msgid "Help us to improve UltiMaker Cura"
  5599. msgstr "Segítsen nekünk az UltiMaker Cura fejlesztésében"
  5600. #: resources/qml/WelcomePages/DataCollectionsContent.qml:56
  5601. msgctxt "@text"
  5602. msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  5603. msgstr "Az UltiMaker Cura névtelen adatokat gyűjt a nyomtatási minőség és a felhasználói élmény javításának érdekében, ideértve:"
  5604. #: resources/qml/WelcomePages/DataCollectionsContent.qml:68
  5605. msgctxt "@text"
  5606. msgid "Machine types"
  5607. msgstr "Géptípusok"
  5608. #: resources/qml/WelcomePages/DataCollectionsContent.qml:74
  5609. msgctxt "@text"
  5610. msgid "Material usage"
  5611. msgstr "Anyagfelhasználás"
  5612. #: resources/qml/WelcomePages/DataCollectionsContent.qml:80
  5613. msgctxt "@text"
  5614. msgid "Number of slices"
  5615. msgstr "Szeletek száma"
  5616. #: resources/qml/WelcomePages/DataCollectionsContent.qml:86
  5617. msgctxt "@text"
  5618. msgid "Print settings"
  5619. msgstr "Nyomtatási beállítások"
  5620. #: resources/qml/WelcomePages/DataCollectionsContent.qml:99
  5621. msgctxt "@text"
  5622. msgid "Data collected by UltiMaker Cura will not contain any personal information."
  5623. msgstr "Az UltiMaker Cura által gyűjtött adatok nem tartalmaznak személyes információt."
  5624. #: resources/qml/WelcomePages/DataCollectionsContent.qml:100
  5625. msgctxt "@text"
  5626. msgid "More information"
  5627. msgstr "Több információ"
  5628. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5629. msgctxt "@label"
  5630. msgid "Empty"
  5631. msgstr "Üres"
  5632. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5633. msgctxt "@label"
  5634. msgid "User Agreement"
  5635. msgstr "Felhasználói Szerződés"
  5636. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5637. msgctxt "@button"
  5638. msgid "Decline and close"
  5639. msgstr "Elutasítás és bezárás"
  5640. #: resources/qml/WelcomePages/WelcomeContent.qml:56
  5641. msgctxt "@label"
  5642. msgid "Welcome to UltiMaker Cura"
  5643. msgstr "Üdvözöljük az UltiMaker Cura-ban"
  5644. #: resources/qml/WelcomePages/WelcomeContent.qml:67
  5645. msgctxt "@text"
  5646. msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  5647. msgstr ""
  5648. #: resources/qml/WelcomePages/WelcomeContent.qml:82
  5649. msgctxt "@button"
  5650. msgid "Get started"
  5651. msgstr "Kezdj hozzá"
  5652. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5653. msgctxt "@label"
  5654. msgid "What's New"
  5655. msgstr ""
  5656. #: resources/qml/Widgets/ComboBox.qml:18
  5657. msgctxt "@label"
  5658. msgid "No items to select from"
  5659. msgstr ""
  5660. #~ msgctxt "@action:inmenu menubar:view"
  5661. #~ msgid "&Build plate"
  5662. #~ msgstr "&Tárgyasztal"
  5663. #~ msgctxt "@title:menu"
  5664. #~ msgid "&Build plate"
  5665. #~ msgstr "&Tárgyasztal"
  5666. #~ msgctxt "@action:menu"
  5667. #~ msgid "&Marketplace"
  5668. #~ msgstr "&Piactér"
  5669. #~ msgctxt "@title:settings"
  5670. #~ msgid "&Profile"
  5671. #~ msgstr "&Profil"
  5672. #~ msgctxt "@title:menu menubar:file"
  5673. #~ msgid "&Save..."
  5674. #~ msgstr "Mentés..."
  5675. #~ msgctxt "@text"
  5676. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5677. #~ msgstr "- Exkluzív hozzáférés a vezető márkák nyomtatási profiljaihoz"
  5678. #~ msgctxt "@text"
  5679. #~ msgid "- Send print jobs to UltiMaker printers outside your local network"
  5680. #~ msgstr "- Küldjön nyomtatási feladatokat az UltiMaker nyomtatóknak a helyi hálózaton kívülről"
  5681. #~ msgctxt "@text"
  5682. #~ msgid ""
  5683. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5684. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5685. #~ "- Get exclusive access to print profiles from leading brands"
  5686. #~ msgstr ""
  5687. #~ "- Nyomtatási feladatok küldése Ultimaker nyomtatóknak helyi hálózaton kívülről\n"
  5688. #~ "- Tárolja az Ultimaker Cura beállításait felhőben, így az bárhonnan elérhető lesz\n"
  5689. #~ "- Exklúzív hozzáférés a vezető nyomtató márkák nyomtatási profiljaikhoz"
  5690. #~ msgctxt "@text"
  5691. #~ msgid "- Store your UltiMaker Cura settings in the cloud for use anywhere"
  5692. #~ msgstr "- Tárolja az UltiMaker Cura beállításait a felhőben így azok bárhol használhatóak"
  5693. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5694. #~ msgid "<a href='%1'>Buy material spools</a>"
  5695. #~ msgstr "<a href='%1'>Anyagtekercsek vásárlása</a>"
  5696. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5697. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5698. #~ msgstr "<a href='%1'>Bejelentkezés</a> szükséges a telepítéshez vagy frissítéshez"
  5699. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5700. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5701. #~ msgstr "<a href='%1'>Bejelentkezés</a> szükséges a frissítéshez"
  5702. #~ msgctxt "@tooltip"
  5703. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5704. #~ msgstr "Az egyéni profil jelenleg aktív. A minőségi csúszka engedélyezéséhez válassza az alapértelmezett minőségi profilt az Egyéni lapon"
  5705. #~ msgctxt "@title:window"
  5706. #~ msgid "About Cura"
  5707. #~ msgstr "A Cura -ról"
  5708. #~ msgctxt "@action:button"
  5709. #~ msgid "Accept"
  5710. #~ msgstr "Elfogad"
  5711. #~ msgctxt "description"
  5712. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5713. #~ msgstr "Lehetővé teszi az anyaggyártók számára, hogy új anyag- és minőségi profilokat hozzanak létre egy beépülő felhasználói felület használatával."
  5714. #~ msgctxt "@label"
  5715. #~ msgid "Aluminum"
  5716. #~ msgstr "Alumínium"
  5717. #~ msgctxt "@label"
  5718. #~ msgid "Are you sure you want to exit Cura?"
  5719. #~ msgstr "Biztos, hogy kilépsz a Cura -ból?"
  5720. #~ msgctxt "@action:inmenu menubar:edit"
  5721. #~ msgid "Arrange All Models To All Build Plates"
  5722. #~ msgstr "Minden modell elrendezése a tárgyasztalon"
  5723. #~ msgctxt "@label"
  5724. #~ msgid "Author"
  5725. #~ msgstr "Szerző"
  5726. #~ msgctxt "@action:button"
  5727. #~ msgid "Back"
  5728. #~ msgstr "Vissza"
  5729. #~ msgctxt "@label:table_header"
  5730. #~ msgid "Build Plate"
  5731. #~ msgstr "Tárgyasztal"
  5732. #~ msgctxt "@action:label"
  5733. #~ msgid "Build plate"
  5734. #~ msgstr "Tárgyasztal"
  5735. #~ msgctxt "@window:text"
  5736. #~ msgid "Camera rendering: "
  5737. #~ msgstr "Kamera megjelenítés: "
  5738. #~ msgctxt "@action:inmenu menubar:edit"
  5739. #~ msgid "Center Selected Model"
  5740. #~ msgid_plural "Center Selected Models"
  5741. #~ msgstr[0] "A kijelölt modellt középre"
  5742. #~ msgstr[1] "A kijelölt modelleket középre"
  5743. #~ msgctxt "@info:tooltip"
  5744. #~ msgid "Change active post-processing scripts"
  5745. #~ msgstr "Állítsd aktívra az utó művelet szkriptet"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Change build plate to %1 (This cannot be overridden)."
  5748. #~ msgstr "Változtasd meg a tálcát %1 -re (Ez nem felülbírálható)."
  5749. #~ msgctxt "@label"
  5750. #~ msgid "Checklist"
  5751. #~ msgstr "Ellenőrző lista"
  5752. #~ msgctxt "@title:window"
  5753. #~ msgid "Closing Cura"
  5754. #~ msgstr "Cura bezárása"
  5755. #~ msgctxt "@label"
  5756. #~ msgid "Community Contributions"
  5757. #~ msgstr "Közösségi hozzájárulások"
  5758. #~ msgctxt "@label"
  5759. #~ msgid "Community Plugins"
  5760. #~ msgstr "Közösségi bővítmények"
  5761. #~ msgctxt "@label"
  5762. #~ msgid "Compatibility"
  5763. #~ msgstr "Kompatibilitás"
  5764. #~ msgctxt "@action:button"
  5765. #~ msgid "Confirm"
  5766. #~ msgstr "Jóváhagy"
  5767. #~ msgctxt "@label"
  5768. #~ msgid "Confirm"
  5769. #~ msgstr "Jóváhagy"
  5770. #~ msgctxt "@title:window"
  5771. #~ msgid "Confirm uninstall"
  5772. #~ msgstr "Eltávolítás jóváhagyása"
  5773. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5774. #~ msgid "Connect to UltiMaker Cloud"
  5775. #~ msgstr "Csatlakozás az UltiMaker felhőhöz"
  5776. #~ msgctxt "@info:status"
  5777. #~ msgid "Connected via Cloud"
  5778. #~ msgstr "Csatlakozás felhőn keresztül"
  5779. #~ msgctxt "@title:window"
  5780. #~ msgid "Convert Image..."
  5781. #~ msgstr "Kép konvertálás..."
  5782. #~ msgctxt "@info"
  5783. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5784. #~ msgstr "Nem sikerült csatlakozni a Cura Package adatbázishoz. Kérjük, ellenőrizze a kapcsolatot."
  5785. #~ msgctxt "@info:status"
  5786. #~ msgid "Could not find a quality type {0} for the current configuration."
  5787. #~ msgstr "Nem található a (z) {0} minőségi típus az aktuális konfigurációhoz."
  5788. #~ msgctxt "@action:button"
  5789. #~ msgid "Create"
  5790. #~ msgstr "Létrehoz"
  5791. #~ msgctxt "@label"
  5792. #~ msgid "Create"
  5793. #~ msgstr "Létrehozás"
  5794. #~ msgctxt "description"
  5795. #~ msgid "Create a flattened quality changes profile."
  5796. #~ msgstr "Hozzon létre egy simított tulajdonságú profilt."
  5797. #~ msgctxt "@button"
  5798. #~ msgid "Create account"
  5799. #~ msgstr "Fiók létrehozása"
  5800. #~ msgctxt "@button"
  5801. #~ msgid "Create an account"
  5802. #~ msgstr "Fiók létrehozása"
  5803. #~ msgctxt "@info:status"
  5804. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5805. #~ msgstr "A Cura nem jeleníti meg pontosan a rétegeket, ha a huzalnyomtatás engedélyezve van"
  5806. #~ msgctxt "@title:column"
  5807. #~ msgid "Customized"
  5808. #~ msgstr "Testreszabott"
  5809. #~ msgctxt "@action:button"
  5810. #~ msgid "Decline"
  5811. #~ msgstr "Elutasít"
  5812. #~ msgctxt "@title:column"
  5813. #~ msgid "Default"
  5814. #~ msgstr "Alapértelmezett"
  5815. #~ msgctxt "@label"
  5816. #~ msgid "Default profiles"
  5817. #~ msgstr "Alapértelemezett profil"
  5818. #~ msgctxt "@action:inmenu menubar:edit"
  5819. #~ msgid "Delete Selected Model"
  5820. #~ msgid_plural "Delete Selected Models"
  5821. #~ msgstr[0] "Kiválasztott modell törlése"
  5822. #~ msgstr[1] "Kiválasztott modellek törlése"
  5823. #~ msgctxt "@action:button"
  5824. #~ msgid "Discard"
  5825. #~ msgstr "Eldob"
  5826. #~ msgctxt "@label"
  5827. #~ msgid "Don't support overlap with other models"
  5828. #~ msgstr "Nem támogatott az egyéb modellekkel való átfedés"
  5829. #~ msgctxt "@action:button"
  5830. #~ msgid "Downgrade"
  5831. #~ msgstr "Leminősítés"
  5832. #~ msgctxt "@label"
  5833. #~ msgid "Downloads"
  5834. #~ msgstr "Letöltések"
  5835. #~ msgctxt "description"
  5836. #~ msgid "Dump the contents of all settings to a HTML file."
  5837. #~ msgstr "Az összes beállítás tartalmát HTML-fájlba teheti."
  5838. #~ msgctxt "@label"
  5839. #~ msgid "Duplicate"
  5840. #~ msgstr "Másolás"
  5841. #~ msgctxt "@label"
  5842. #~ msgid "Email"
  5843. #~ msgstr "Email"
  5844. #~ msgctxt "@title:menu menubar:file"
  5845. #~ msgid "Export..."
  5846. #~ msgstr "&Exportál..."
  5847. #~ msgctxt "@label"
  5848. #~ msgid "Featured"
  5849. #~ msgstr "Kiemelt"
  5850. #~ msgctxt "@label:listbox"
  5851. #~ msgid "Feedrate"
  5852. #~ msgstr "Előtolás"
  5853. #~ msgctxt "@info"
  5854. #~ msgid "Fetching packages..."
  5855. #~ msgstr "Csomagok beolvasása..."
  5856. #~ msgctxt "description"
  5857. #~ msgid "Find, manage and install new Cura packages."
  5858. #~ msgstr "Keressen, kezeljen és telepítsen új Cura csomagokat."
  5859. #~ msgctxt "@button"
  5860. #~ msgid "Finish"
  5861. #~ msgstr "Befejezés"
  5862. #~ msgctxt "@item:inmenu"
  5863. #~ msgid "Flatten active settings"
  5864. #~ msgstr "Aktív beállítások simítása"
  5865. #~ msgctxt "@label"
  5866. #~ msgid "Generic Materials"
  5867. #~ msgstr "Általános anyagok"
  5868. #~ msgctxt "@label"
  5869. #~ msgid "Glass"
  5870. #~ msgstr "Üveg"
  5871. #~ msgctxt "name"
  5872. #~ msgid "God Mode"
  5873. #~ msgstr "Isten mód"
  5874. #~ msgctxt "@label"
  5875. #~ msgid "Gradual infill"
  5876. #~ msgstr "Fokozatos kitöltés"
  5877. #~ msgctxt "@label"
  5878. #~ msgid "Gradual infill will gradually increase the amount of infill towards the top."
  5879. #~ msgstr "A fokozatos kitöltés folyamatosan növeli a kitöltés mennyiségét, ahogy közeledik a tárgy teteje felé."
  5880. #~ msgctxt "@label The argument is a username."
  5881. #~ msgid "Hi %1"
  5882. #~ msgstr "Szia %1"
  5883. #~ msgctxt "@info:tooltip"
  5884. #~ msgid "How should the conflict in the machine be resolved?"
  5885. #~ msgstr "Hogyan lehet megoldani a gépet érintő konfliktust?"
  5886. #~ msgctxt "@info:tooltip"
  5887. #~ msgid "How should the conflict in the material be resolved?"
  5888. #~ msgstr "Hogyan lehet megoldani az alapanyaggal kapcsolatos konfliktust?"
  5889. #~ msgctxt "@info:tooltip"
  5890. #~ msgid "How should the conflict in the profile be resolved?"
  5891. #~ msgstr "Hogyan lehet megoldani a profilt érintő konfliktust?"
  5892. #~ msgctxt "@action:button"
  5893. #~ msgid "Install"
  5894. #~ msgstr "Telepítés"
  5895. #~ msgctxt "@action:button"
  5896. #~ msgid "Installed"
  5897. #~ msgstr "Telepítve"
  5898. #~ msgctxt "@title:tab"
  5899. #~ msgid "Installed"
  5900. #~ msgstr "Telepítve"
  5901. #~ msgctxt "@action:button"
  5902. #~ msgid "Keep"
  5903. #~ msgstr "Megtart"
  5904. #~ msgctxt "@label"
  5905. #~ msgid "Language:"
  5906. #~ msgstr "Nyelv:"
  5907. #~ msgctxt "@label"
  5908. #~ msgid "Last updated"
  5909. #~ msgstr "Utosó frissítés"
  5910. #~ msgctxt "@label"
  5911. #~ msgid "Layer Height"
  5912. #~ msgstr "Réteg magasság"
  5913. #~ msgctxt "@label:table_header"
  5914. #~ msgid "Machine"
  5915. #~ msgstr "Gép"
  5916. #~ msgctxt "name"
  5917. #~ msgid "Machine Settings action"
  5918. #~ msgstr "Gépbeállítások művelete"
  5919. #~ msgctxt "@title"
  5920. #~ msgid "Marketplace"
  5921. #~ msgstr "Áruház"
  5922. #~ msgctxt "@text:window"
  5923. #~ msgid "Materials"
  5924. #~ msgstr "Alapanyagok"
  5925. #~ msgctxt "@label"
  5926. #~ msgid "Modify settings for infill of other models"
  5927. #~ msgstr "Módosítsa a többi modell kitöltés beállításait"
  5928. #~ msgctxt "@label"
  5929. #~ msgid "Modify settings for overlap with other models"
  5930. #~ msgstr "Módosítsa az egyéb modellekkel való átfedés beállítását"
  5931. #~ msgctxt "@action:button"
  5932. #~ msgid "More information"
  5933. #~ msgstr "Több információ"
  5934. #~ msgctxt "@action:inmenu menubar:edit"
  5935. #~ msgid "Multiply Selected Model"
  5936. #~ msgid_plural "Multiply Selected Models"
  5937. #~ msgstr[0] "A kijelölt modell többszörözése"
  5938. #~ msgstr[1] "A kijelölt modellek többszörözése"
  5939. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5940. #~ msgid "New %s firmware available"
  5941. #~ msgstr "Új %s firmware elérhető"
  5942. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5943. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5944. #~ msgstr "Új funkciók érhetők el a (z) {machine_name} készülékken! Javasoljuk, hogy frissítse a nyomtató firmware-jét."
  5945. #~ msgctxt "@label"
  5946. #~ msgid "Not supported"
  5947. #~ msgstr "Nem támogatott"
  5948. #~ msgctxt "@label"
  5949. #~ msgid "Not yet initialized<br/>"
  5950. #~ msgstr "Még nincs inicializálva<br/>"
  5951. #~ msgctxt "@info:status"
  5952. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5953. #~ msgstr "Nem lehet szeletelni, mert egyik modell sem érintkezik az alapsíkkal, vagy a modell letiltott extruderhez van hozzárendelve. Kérjük, méretezze vagy forgassa el a modelleket, hogy illeszkedjenek az alapsíkra, vagy engedélyezz egy extrudert."
  5954. #~ msgctxt "@label"
  5955. #~ msgid "Olsson Block"
  5956. #~ msgstr "Olsson blokk"
  5957. #~ msgctxt "@item:inlistbox"
  5958. #~ msgid "Open Compressed Triangle Mesh"
  5959. #~ msgstr "Tömörített háromszög háló megnyitása"
  5960. #~ msgctxt "@text"
  5961. #~ msgid "Place enter your printer's IP address."
  5962. #~ msgstr "Írja be a nyomtató IP címét."
  5963. #~ msgctxt "@text"
  5964. #~ msgid ""
  5965. #~ "Please follow these steps to set up\n"
  5966. #~ "Ultimaker Cura. This will only take a few moments."
  5967. #~ msgstr ""
  5968. #~ "Kéjük, kövesd a következő lépéseket\n"
  5969. #~ "az Ultimaker Cura beállításához. Pár pillanat az egész."
  5970. #~ msgctxt "@text"
  5971. #~ msgid "Please give your printer a name"
  5972. #~ msgstr "Adja meg a nyomtató nevét"
  5973. #~ msgctxt "@label"
  5974. #~ msgid "Please select any upgrades made to this UltiMaker 2."
  5975. #~ msgstr "Kérjük, válassza ki az UltiMaker 2 frissítéseit."
  5976. #~ msgctxt "@title:tab"
  5977. #~ msgid "Plugins"
  5978. #~ msgstr "Kiegészítők"
  5979. #~ msgctxt "@label"
  5980. #~ msgid "Pre-sliced file {0}"
  5981. #~ msgstr "Elő szeletelt fájl {0}"
  5982. #~ msgctxt "@action:button"
  5983. #~ msgid "Previous"
  5984. #~ msgstr "Előző"
  5985. #~ msgctxt "@label:table_header"
  5986. #~ msgid "Print Core"
  5987. #~ msgstr "Nyomtató motor"
  5988. #~ msgctxt "name"
  5989. #~ msgid "Print Profile Assistant"
  5990. #~ msgstr "Nyomtatási profil-asszisztens"
  5991. #~ msgctxt "@label"
  5992. #~ msgid "Print experiment"
  5993. #~ msgstr "Nyomtatási kísérlet"
  5994. #~ msgctxt "@action:button"
  5995. #~ msgid "Print via Cloud"
  5996. #~ msgstr "Nyomtatás felhőn keresztül"
  5997. #~ msgctxt "@properties:tooltip"
  5998. #~ msgid "Print via Cloud"
  5999. #~ msgstr "Nyomtatás felhőn keresztül"
  6000. #~ msgctxt "@action:label"
  6001. #~ msgid "Printer"
  6002. #~ msgstr "Nyomtató"
  6003. #~ msgctxt "@label"
  6004. #~ msgid "Printer"
  6005. #~ msgstr "Nyomtató"
  6006. #~ msgctxt "@label %1 is printer name"
  6007. #~ msgid "Printer: %1"
  6008. #~ msgstr "Nyomtató: %1"
  6009. #~ msgctxt "@action:label"
  6010. #~ msgid "Printing Guidelines"
  6011. #~ msgstr "Nyomtatási útmutató"
  6012. #~ msgctxt "@item:inlistbox"
  6013. #~ msgid "Profile Assistant"
  6014. #~ msgstr "Profil segéd"
  6015. #~ msgctxt "@item:inmenu"
  6016. #~ msgid "Profile Assistant"
  6017. #~ msgstr "Profil segéd"
  6018. #~ msgctxt "name"
  6019. #~ msgid "Profile Flattener"
  6020. #~ msgstr "Profil simító"
  6021. #~ msgctxt "@info:status"
  6022. #~ msgid "Profile has been flattened & activated."
  6023. #~ msgstr "A profil simítva és aktiválva."
  6024. #~ msgctxt "@text:window"
  6025. #~ msgid "Profiles"
  6026. #~ msgstr "Profilok"
  6027. #~ msgctxt "description"
  6028. #~ msgid "Provides the Simulation view."
  6029. #~ msgstr "Szimulációs nézetet biztosít."
  6030. #~ msgctxt "@Label"
  6031. #~ msgid "Python HTTP library"
  6032. #~ msgstr "Python HTTP könyvtár"
  6033. #~ msgctxt "@label:table_header"
  6034. #~ msgid "Quality"
  6035. #~ msgstr "Minőség"
  6036. #~ msgctxt "@info:button"
  6037. #~ msgid "Quit Cura"
  6038. #~ msgstr "Kilépés a Cura-ból"
  6039. #~ msgctxt "@action:button"
  6040. #~ msgid "Retry"
  6041. #~ msgstr "Újra"
  6042. #~ msgctxt "@label"
  6043. #~ msgid "SVG icons"
  6044. #~ msgstr "SVG ikonok"
  6045. #~ msgctxt "@action:label"
  6046. #~ msgid "Safety Data Sheet"
  6047. #~ msgstr "Biztonsági adatlap"
  6048. #~ msgctxt "@info:status"
  6049. #~ msgid "Send and monitor print jobs from anywhere using your UltiMaker account."
  6050. #~ msgstr "Küldjön és felügyeljen nyomtatási feladatokat bárhonnan az UltiMaker fiókjával."
  6051. #~ msgctxt "@action:inmenu"
  6052. #~ msgid "Show All Settings"
  6053. #~ msgstr "Minden beállítást mutat"
  6054. #~ msgctxt "@action:inmenu"
  6055. #~ msgid "Show Online Troubleshooting Guide"
  6056. #~ msgstr "Mutassa az online hibaelhárítási útmutatót"
  6057. #~ msgctxt "@button"
  6058. #~ msgid "Sign out"
  6059. #~ msgstr "Kijelentkezés"
  6060. #~ msgctxt "@info:tooltip"
  6061. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  6062. #~ msgstr "Néhány dolog problémát jelenthet ebben a nyomtatásban.Kattintson ide a beállítási tippek megtekintéséhez."
  6063. #~ msgctxt "@info:status"
  6064. #~ msgid "Successfully imported profile {0}"
  6065. #~ msgstr "Sikeres profil importálás {0}"
  6066. #~ msgctxt "@label:table_header"
  6067. #~ msgid "Support"
  6068. #~ msgstr "Támasz"
  6069. #~ msgctxt "@label"
  6070. #~ msgid "Support library for analysis of complex networks"
  6071. #~ msgstr "Támogató könyvtár a komplex hálózatok elemzéséhez"
  6072. #~ msgctxt "@label"
  6073. #~ msgid "Support library for handling planar objects"
  6074. #~ msgstr "Támogató könyvtár a sík objektumok kezeléséhez"
  6075. #~ msgctxt "@action:label"
  6076. #~ msgid "Technical Data Sheet"
  6077. #~ msgstr "Technikai adatlap"
  6078. #~ msgctxt "@label"
  6079. #~ msgid "The next generation 3D printing workflow"
  6080. #~ msgstr "A következő generációs 3D nyomtatási munkafolyamat"
  6081. #~ msgctxt "@text"
  6082. #~ msgid "The next generation 3D printing workflow"
  6083. #~ msgstr "Következő generációs 3D nyomtatási munkafolyamat"
  6084. #~ msgctxt "@info:status"
  6085. #~ msgid "The selected model was too small to load."
  6086. #~ msgstr "A kiválasztott tárgy túl kicsi volt a betöltéshez."
  6087. #~ msgctxt "@label"
  6088. #~ msgid "The value is resolved from per-extruder values "
  6089. #~ msgstr "Az értékek meghatározása az extruderek értékei alapján történik "
  6090. #~ msgctxt "@info"
  6091. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  6092. #~ msgstr "A webkamera nem érhető el, mert felhőben lévő nyomtatót szeretne figyelni."
  6093. #~ msgctxt "@info:tooltip"
  6094. #~ msgid "The width in millimeters on the build plate."
  6095. #~ msgstr "A szélesség mm -ben a tárgyasztalon."
  6096. #~ msgctxt "@label"
  6097. #~ msgid "Theme:"
  6098. #~ msgstr "Téma:"
  6099. #~ msgctxt "@info:backup_status"
  6100. #~ msgid "There was an error listing your backups."
  6101. #~ msgstr "Hiba történt a biztonsági mentések listázásánál."
  6102. #~ msgctxt "@label"
  6103. #~ msgid ""
  6104. #~ "This plugin contains a license.\n"
  6105. #~ "You need to accept this license to install this plugin.\n"
  6106. #~ "Do you agree with the terms below?"
  6107. #~ msgstr ""
  6108. #~ "A bővítmény telepítéséhez el kell fogadnia ezt a licencet. \n"
  6109. #~ "Egyetért az alábbi feltételekkel?"
  6110. #~ msgctxt "@tooltip"
  6111. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6112. #~ msgstr "Ez a minőségi profil nem áll rendelkezésre a jelenlegi anyag- és fúvóka-konfigurációhoz. Kérjük, módosítsa ezeket a minőségprofil engedélyezéséhez."
  6113. #~ msgctxt "@label"
  6114. #~ msgid "Tip"
  6115. #~ msgstr "Tipp"
  6116. #~ msgctxt "name"
  6117. #~ msgid "Toolbox"
  6118. #~ msgstr "Eszköztár"
  6119. #~ msgctxt "@label"
  6120. #~ msgid "UltiMaker Cloud"
  6121. #~ msgstr "UltiMaker felhő"
  6122. #~ msgctxt "@action:button"
  6123. #~ msgid "Uninstall"
  6124. #~ msgstr "Eltávolítás"
  6125. #~ msgctxt "@title:column"
  6126. #~ msgid "Unit"
  6127. #~ msgstr "Egység"
  6128. #~ msgctxt "@action:ComboBox option"
  6129. #~ msgid "Update"
  6130. #~ msgstr "Frissítés"
  6131. #~ msgctxt "@action:button"
  6132. #~ msgid "Update"
  6133. #~ msgstr "Frissítés"
  6134. #~ msgctxt "@action:ComboBox option"
  6135. #~ msgid "Update existing"
  6136. #~ msgstr "Meglévő frissítése"
  6137. #~ msgctxt "@action:button"
  6138. #~ msgid "Update profile with current settings/overrides"
  6139. #~ msgstr "Frissítse a profilt az aktuális beállításokkal/felülbírálásokkal"
  6140. #~ msgctxt "@action:button"
  6141. #~ msgid "Updated"
  6142. #~ msgstr "Frissítve"
  6143. #~ msgctxt "@action:button"
  6144. #~ msgid "Updating"
  6145. #~ msgstr "Frissítés"
  6146. #~ msgctxt "@info:tooltip"
  6147. #~ msgid "Use multi build plate functionality"
  6148. #~ msgstr "Többrétegű tárgyasztal használata"
  6149. #~ msgctxt "@option:check"
  6150. #~ msgid "Use multi build plate functionality (restart required)"
  6151. #~ msgstr "Többrétegű tárgyasztal használata (újraindítás szükséges)"
  6152. #~ msgctxt "@title:groupbox"
  6153. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6154. #~ msgstr "Felhasználói leírás (Megjegyzés: Lehet, hogy a fejlesztők nem beszélnek az Ön nyelvén,ezért kérjük, használja az Angol nyelvet, ha lehetséges.)"
  6155. #~ msgctxt "@label"
  6156. #~ msgid "Version"
  6157. #~ msgstr "Verzió"
  6158. #~ msgctxt "@action:label"
  6159. #~ msgid "Visible settings:"
  6160. #~ msgstr "Látható beállítások:"
  6161. #~ msgctxt "@action:label"
  6162. #~ msgid "Website"
  6163. #~ msgstr "Weboldal"
  6164. #~ msgctxt "@label"
  6165. #~ msgid "Website"
  6166. #~ msgstr "Weboldal"
  6167. #~ msgctxt "@label"
  6168. #~ msgid "What's new in UltiMaker Cura"
  6169. #~ msgstr "Újdonságok az UltiMaker Cura-ban"
  6170. #~ msgctxt "@label"
  6171. #~ msgid "Will install upon restarting"
  6172. #~ msgstr "Telepítés után újraindul"
  6173. #~ msgctxt "X3g Writer Plugin Description"
  6174. #~ msgid "Writes X3g to files"
  6175. #~ msgstr "Írás X3g fájlba"
  6176. #~ msgctxt "X3G Writer File Description"
  6177. #~ msgid "X3G File"
  6178. #~ msgstr "X3g fájl"
  6179. #~ msgctxt "X3g Writer File Description"
  6180. #~ msgid "X3g File"
  6181. #~ msgstr "X3g fájl"
  6182. #~ msgctxt "@text:window"
  6183. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  6184. #~ msgstr "Távolítsd el a még használatban lévő anyagokat és / vagy profilokat.A megerősítés visszaállítja az alapanyagokat / profilokat alapértelmezett értékükre."
  6185. #~ msgctxt "@text:window"
  6186. #~ msgid ""
  6187. #~ "You have customized some profile settings.\n"
  6188. #~ "Would you like to keep or discard those settings?"
  6189. #~ msgstr ""
  6190. #~ "Van néhány testreszabott beállításod a profilban. \n"
  6191. #~ "Szeretnéd ezeket megtartani, vagy eldobod őket?"
  6192. #~ msgctxt "@tooltip"
  6193. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  6194. #~ msgstr "Megváltoztattál néhány profilbeállítást. Ha ezeket szeretnéd folyamatosan megtartani, akkor válaszd az 'Egyéni mód' -ot."
  6195. #~ msgctxt "@label"
  6196. #~ msgid "You need to install the package before you can rate"
  6197. #~ msgstr "Mielőtt értékelni tudná, telepítenie kell a csomagot"
  6198. #~ msgctxt "@info"
  6199. #~ msgid "You will need to restart Cura before changes in packages have effect."
  6200. #~ msgstr "A csomagok változásainak érvénybe lépése előtt újra kell indítania a Cura-t."
  6201. #~ msgctxt "@label"
  6202. #~ msgid "You will need to restart the application for these changes to have effect."
  6203. #~ msgstr "A módosítások érvénybe lépéséhez újra kell indítania az alkalmazást."
  6204. #~ msgctxt "@label"
  6205. #~ msgid "Your rating"
  6206. #~ msgstr "Értékelésed"
  6207. #~ msgctxt "@label"
  6208. #~ msgid "ratings"
  6209. #~ msgstr "értékelés"
  6210. #~ msgctxt "@label:textbox"
  6211. #~ msgid "search settings"
  6212. #~ msgstr "keresési beállítások"