fdmprinter.def.json.po 315 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2022-09-27 14:50+0000\n"
  10. "PO-Revision-Date: 2020-03-24 09:43+0100\n"
  11. "Last-Translator: Nagy Attila <vokroot@gmail.com>\n"
  12. "Language-Team: AT-VLOG\n"
  13. "Language: hu_HU\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. "X-Generator: Poedit 2.2.4\n"
  19. #: /fdmprinter.def.json
  20. msgctxt "ironing_inset description"
  21. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  22. msgstr "A modell szélétől tartandó távolság. Ha a vasalás kifutna a test külső éleihez, az egyenetlenséget okozhatna ott."
  23. #: /fdmprinter.def.json
  24. msgctxt "material_no_load_move_factor description"
  25. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  26. msgstr ""
  27. #: /fdmprinter.def.json
  28. msgctxt "roofing_angles description"
  29. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  30. msgstr "Azon egész vonalirányok listája, amelyeket akkor kell használni, amikor a felső felületi rétegek vonal, vagy cikcakk mintáját használjuk.A lista elemeit egymás után használjuk a rétegek előre haladtával, és amikor a végére ér, előlről kezdi. A lista elemit vesszővel választjuk el, és a teljes lista szögletes zárójelben van. Az alapértelmezett lista üres ami azt is jelenti, hogy az alapértelmezett 45 és 135 fokos szögeket hasznájuk."
  31. #: /fdmprinter.def.json
  32. msgctxt "skin_angles description"
  33. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  34. msgstr "Az egész vonal-irányok listája, amelyet akkor kell használni, ha az alsó/felső rétegek a vonalas vagy cikcakk mintákat használják.A lista elemeit egymás után használják a rétegek előrehaladtával, és amikor a lista vége eléri, akkor újra előlről kezdi.A lista elemeit vesszők választják el, és a teljes listát szögletes zárójelben tartalmazza. Az Alapértelmezés egy üres lista, amely azt jelenti, hogy a hagyományos alapértelmezett szögeket (45 és 135 fok) kell használni."
  35. #: /fdmprinter.def.json
  36. msgctxt "support_infill_angles description"
  37. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  38. msgstr "Ez egy lista a teljes vonalak irányáról. A lista elemeit egymás után használják a rétegek, s mikor a lista a végére ért, elkezdi előlről. A lista elemeit vesszővel választja el, és a teljes lista sz9gletes zárójelben van.Az alapértelmezett az üres lista, ami azt is jelenti, hogy az alapértelmezett 0 fokos szöget használja."
  39. #: /fdmprinter.def.json
  40. msgctxt "support_bottom_angles description"
  41. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  42. msgstr "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi."
  43. #: /fdmprinter.def.json
  44. msgctxt "support_interface_angles description"
  45. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  46. msgstr "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi."
  47. #: /fdmprinter.def.json
  48. msgctxt "support_roof_angles description"
  49. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  50. msgstr "A használt teljes vonalaknak a listája. Az elemeket vesszővel választjuk el, és az egész lista szögletes zárójelek között van.Az alapértelmezett lista üres. Ebben az esetben a 45 és a 135 fok között változik az irányszög. A listát az elejéről kezdi, és rétegenként veszi az irányokat. Ha a lista végére ér, akkor előlről kezdi."
  51. #: /fdmprinter.def.json
  52. msgctxt "infill_angles description"
  53. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  54. msgstr "Azoknak a teljes vonalaknak az iránya, amiket kitöltéskor használunk.A lista elemeit egymás után használják fel a rétegek, és előlről kezdik, ha a lista a végére ért. A lista elemeit vesszők választják el, míg a teljes lista szögletes zárójelben van. Az alapértelmezett esetbe a lista üres, ilyenkor az alapértelmezett 45 és 135 fokos szögeket használjuk a vonalas, és a cikcakk kitöltési mintakor, míg 45 fokot az összes többi esetben."
  55. #: /fdmprinter.def.json
  56. msgctxt "nozzle_disallowed_areas description"
  57. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  58. msgstr "A sokszögek listája azon területekkel, ahová a fúvóka nem léphet be."
  59. #: /fdmprinter.def.json
  60. msgctxt "machine_disallowed_areas description"
  61. msgid "A list of polygons with areas the print head is not allowed to enter."
  62. msgstr "A sokszögek listája azon területekkel, ahová a nyomtatófej nem léphet be."
  63. #: /fdmprinter.def.json
  64. msgctxt "extruder_prime_pos_abs label"
  65. msgid "Absolute Extruder Prime Position"
  66. msgstr "Abszolút kezdő pozíció"
  67. #: /fdmprinter.def.json
  68. msgctxt "adaptive_layer_height_variation label"
  69. msgid "Adaptive Layers Maximum Variation"
  70. msgstr "Adaptív rétegek maximális variációja"
  71. #: /fdmprinter.def.json
  72. msgctxt "adaptive_layer_height_threshold label"
  73. msgid "Adaptive Layers Topography Size"
  74. msgstr ""
  75. #: /fdmprinter.def.json
  76. msgctxt "adaptive_layer_height_variation_step label"
  77. msgid "Adaptive Layers Variation Step Size"
  78. msgstr "Lépésméret"
  79. #: /fdmprinter.def.json
  80. msgctxt "adaptive_layer_height_enabled description"
  81. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  82. msgstr "Az adaptív rétegek kiszámítják a szükséges rétegmagasságokat a modell alakjától függően."
  83. #: /fdmprinter.def.json
  84. msgctxt "infill_wall_line_count description"
  85. msgid ""
  86. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  87. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  88. msgstr ""
  89. "További falakat ad a kitöltési terület köré. Ezek a falak segíthetik az alsó/felső kéreg vonalak tapadását, így azok kevésbé tudnak elválni a kitöltéstől.Ennek előnye lehet, hogy kevesebb kéreg rétegre van szükség ugyanazon minőség eléréséhez. Ez azonban növelheti az anyagköltséget. \n"
  90. "Kombinálható a kitöltési sokszögek csatlakozása beállítással, hogy az összes kitöltés egyetlen útvonalba kapcsolja anélkül, hogy felesleges fej utaztatás vagy szálvisszahúzás lenne."
  91. #: /fdmprinter.def.json
  92. msgctxt "platform_adhesion description"
  93. msgid "Adhesion"
  94. msgstr "Tapadás"
  95. #: /fdmprinter.def.json
  96. msgctxt "material_adhesion_tendency label"
  97. msgid "Adhesion Tendency"
  98. msgstr "Tapadási jellemző"
  99. #: /fdmprinter.def.json
  100. msgctxt "skin_overlap description"
  101. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  102. msgstr "A falak és a kéregek középvonalai közötti átfedés mértékét határozza meg, százalékos értékben. A kéreg vonalak és a legbelsőbb fal szélességéből számítjuk. Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kéreg vonalakhoz. Figyeljünk rá, hogy az egyenlő kéreg és falvonal szélesség esetén az 50% fölötti érték már átüthet a falon, mivel ezen a ponton a kéreg extruder fúvóka pozíciója már a fal középvonalát eléri."
  103. #: /fdmprinter.def.json
  104. msgctxt "skin_overlap_mm description"
  105. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  106. msgstr "Az átfedés mértékét állítja be a falak és a felszíni vonalak középpontjainak végpontjai között. Az enyhe átfedés lehetővé teszi a falak szoros kapcsolódását a felszínhez. Vegye figyelembe, hogy ha a kéreg és a fal vonalszélessége egyenlő, akkor a fal szélességének felét meghaladó érték bármilyen felszín esetén áthaladhat a falon, mert ezen a ponton a kéreg-extruder fúvóka pozíciója már elérheti a fal közepén."
  107. #: /fdmprinter.def.json
  108. msgctxt "infill_sparse_density description"
  109. msgid "Adjusts the density of infill of the print."
  110. msgstr "Beállítja a nyomtatás kitöltési sűrűségét."
  111. #: /fdmprinter.def.json
  112. msgctxt "support_interface_density description"
  113. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  114. msgstr "Beállítja a támasz interfész sűrűségét a támasz alsó és a felső felületein.A magasabb érték jobb minőségű túlnyúlás nyomtatást tesz lehetővém viszont a támaszt nehezebb lesz eltávolítani."
  115. #: /fdmprinter.def.json
  116. msgctxt "support_infill_rate description"
  117. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  118. msgstr "A támaszok belső sűrűségének beállítása. A magasabb érték jobb alátámasztást nyújt a kinyúlásokhoz, viszont nehezebb lesz a támaszokat eltávolítani."
  119. #: /fdmprinter.def.json
  120. msgctxt "material_diameter description"
  121. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  122. msgstr "Nyomtatószál átmérő beállítása. Itt állítsd be a te általad használt nyomtatószál átmérőt. Ennek egyeznie kell a gép paramétereivel."
  123. #: /fdmprinter.def.json
  124. msgctxt "support_type description"
  125. 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."
  126. msgstr "A támaszok elhelyezésének beállítása. A támaszokat elhelyezhetjük úgy, hogy azokcsak az asztalon támaszkodhatnak, azaz azoknak érinteniük kell az asztalt.Ha azonban a mindenhol beállítást használjuk, akkor a támaszok a modell egyéb felületein is felépülhetnek."
  127. #: /fdmprinter.def.json
  128. msgctxt "prime_tower_wipe_enabled description"
  129. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  130. msgstr "Miután kinyomtatta az előtornyot a gép, az inaktív fúvókán esetlegesen kicsöppenő anyagot letörli róla az előtoronyba."
  131. #: /fdmprinter.def.json
  132. msgctxt "retraction_hop_after_extruder_switch description"
  133. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  134. msgstr "Extruder váltás után a Z tengely és így a fej megemelkedik, így ez megakadályozza, hogy a fúvókából esetlegesen kicsöppenő anyag a nyomtatás külső felületére kenődjön."
  135. #: /fdmprinter.def.json
  136. msgctxt "retraction_combing option all"
  137. msgid "All"
  138. msgstr "Minden"
  139. #: /fdmprinter.def.json
  140. msgctxt "print_sequence option all_at_once"
  141. msgid "All at Once"
  142. msgstr "Egyidőben"
  143. #: /fdmprinter.def.json
  144. msgctxt "resolution description"
  145. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  146. msgstr "Az összes beállítás, ami befolyásolja a nyomtatvány felbontását és minőségét. Ezekek a beállítások hatással vannak a minőségre és a nyomtatási sebességre."
  147. #: /fdmprinter.def.json
  148. msgctxt "alternate_extra_perimeter label"
  149. msgid "Alternate Extra Wall"
  150. msgstr "Alternatív extra fal"
  151. #: /fdmprinter.def.json
  152. msgctxt "alternate_carve_order label"
  153. msgid "Alternate Mesh Removal"
  154. msgstr "Alternatív háló eltávolítása"
  155. #: /fdmprinter.def.json
  156. msgctxt "material_alternate_walls label"
  157. msgid "Alternate Wall Directions"
  158. msgstr ""
  159. #: /fdmprinter.def.json
  160. msgctxt "material_alternate_walls description"
  161. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  162. msgstr ""
  163. #: /fdmprinter.def.json
  164. msgctxt "machine_buildplate_type option aluminum"
  165. msgid "Aluminum"
  166. msgstr "Alumínium"
  167. #: /fdmprinter.def.json
  168. msgctxt "machine_always_write_active_tool label"
  169. msgid "Always Write Active Tool"
  170. msgstr ""
  171. #: /fdmprinter.def.json
  172. msgctxt "travel_retract_before_outer_wall description"
  173. msgid "Always retract when moving to start an outer wall."
  174. msgstr "Minden esetben, mikor a külső fal nyomtatása fog történni, a pozicionáláskor szál visszahúzás fog történni."
  175. #: /fdmprinter.def.json
  176. msgctxt "hole_xy_offset description"
  177. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  178. msgstr ""
  179. #: /fdmprinter.def.json
  180. msgctxt "xy_offset description"
  181. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  182. msgstr "Az egyes rétegek sokszögeire alkalmazott bővítés mennyisége. A pozitív értékek kompenzálhatják a túl nagy lyukakat, míg a negatív értékek a túl kicsi lyukakat képesek kompenzálni."
  183. #: /fdmprinter.def.json
  184. msgctxt "xy_offset_layer_0 description"
  185. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  186. msgstr "A kezdő réteg sokszögeire alkalmazott bővítés mennyisége. A negatív érték kompenzálhatja az első réteg túlömlését, amit úgy is neveznek, hogy \"elefánt láb\"."
  187. #: /fdmprinter.def.json
  188. msgctxt "support_offset description"
  189. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  190. msgstr "Az egyes rétegek minden támasz poligonjára alkalmazott eltolás mennyisége. A pozitív értékek kiegyenlíthetik a támasz területeket, és erősebb támasztást eredményezhetnek."
  191. #: /fdmprinter.def.json
  192. msgctxt "support_bottom_offset description"
  193. msgid "Amount of offset applied to the floors of the support."
  194. msgstr "A támaszaljzat interész sokszögeire alkalmazott eltolás összege."
  195. #: /fdmprinter.def.json
  196. msgctxt "support_roof_offset description"
  197. msgid "Amount of offset applied to the roofs of the support."
  198. msgstr "A támaszfedél interész sokszögeire alkalmazott eltolás összege."
  199. #: /fdmprinter.def.json
  200. msgctxt "support_interface_offset description"
  201. msgid "Amount of offset applied to the support interface polygons."
  202. msgstr "A támasz interész sokszögeire alkalmazott eltolás összege."
  203. #: /fdmprinter.def.json
  204. msgctxt "wipe_retraction_amount description"
  205. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  206. msgstr "A visszahűzandó anyagmennyiség azért, hogy a törlési művelet során ne legyen anyagcsöppenés a fúvókából."
  207. #: /fdmprinter.def.json
  208. msgctxt "sub_div_rad_add description"
  209. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  210. msgstr "Az egyes kitöltési kockák közepétől számított sugár hozzáadásával ellenőrizni kell a modell határát, hogy eldönthesse a szeletelő, hogy ezt a kockát fel kell-e osztan, vagy sem.A nagyobb értékek a kocka vastagabb héjához vezetnek a modell szélének közelében."
  211. #: /fdmprinter.def.json
  212. msgctxt "anti_overhang_mesh label"
  213. msgid "Anti Overhang Mesh"
  214. msgstr "Túlnyúlás gátló háló"
  215. #: /fdmprinter.def.json
  216. msgctxt "material_anti_ooze_retracted_position label"
  217. msgid "Anti-ooze Retracted Position"
  218. msgstr "Szivárgásgátló visszahúzási helyzet"
  219. #: /fdmprinter.def.json
  220. msgctxt "material_anti_ooze_retraction_speed label"
  221. msgid "Anti-ooze Retraction Speed"
  222. msgstr "Szivárgásgátló visszahúzás sebesség"
  223. #: /fdmprinter.def.json
  224. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  225. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  226. msgstr ""
  227. #: /fdmprinter.def.json
  228. msgctxt "material_flow_dependent_temperature label"
  229. msgid "Auto Temperature"
  230. msgstr "Automatikus hőfok"
  231. #: /fdmprinter.def.json
  232. msgctxt "travel_avoid_other_parts label"
  233. msgid "Avoid Printed Parts When Traveling"
  234. msgstr "Kinyomtatott részek kerülése utazáskor"
  235. #: /fdmprinter.def.json
  236. msgctxt "travel_avoid_supports label"
  237. msgid "Avoid Supports When Traveling"
  238. msgstr "Támasz elkerülése utazáskor"
  239. #: /fdmprinter.def.json
  240. msgctxt "z_seam_position option back"
  241. msgid "Back"
  242. msgstr "Hátra"
  243. #: /fdmprinter.def.json
  244. msgctxt "z_seam_position option backleft"
  245. msgid "Back Left"
  246. msgstr "Hátra balra"
  247. #: /fdmprinter.def.json
  248. msgctxt "z_seam_position option backright"
  249. msgid "Back Right"
  250. msgstr "Hátra jobbra"
  251. #: /fdmprinter.def.json
  252. msgctxt "machine_gcode_flavor option BFB"
  253. msgid "Bits from Bytes"
  254. msgstr "Bits from Bytes (BFB)"
  255. #: /fdmprinter.def.json
  256. msgctxt "magic_mesh_surface_mode option both"
  257. msgid "Both"
  258. msgstr "Mindkettő"
  259. #: /fdmprinter.def.json
  260. msgctxt "bottom_layers label"
  261. msgid "Bottom Layers"
  262. msgstr "Alsó rétegek"
  263. #: /fdmprinter.def.json
  264. msgctxt "top_bottom_pattern_0 label"
  265. msgid "Bottom Pattern Initial Layer"
  266. msgstr "Alsó kezdő réteg mintázata"
  267. #: /fdmprinter.def.json
  268. msgctxt "bottom_skin_expand_distance label"
  269. msgid "Bottom Skin Expand Distance"
  270. msgstr "Alsó kéreg bővítési távolság"
  271. #: /fdmprinter.def.json
  272. msgctxt "bottom_skin_preshrink label"
  273. msgid "Bottom Skin Removal Width"
  274. msgstr "Alsó kéreg eltávolítási szélesség"
  275. #: /fdmprinter.def.json
  276. msgctxt "bottom_thickness label"
  277. msgid "Bottom Thickness"
  278. msgstr "Alsó vastagság"
  279. #: /fdmprinter.def.json
  280. msgctxt "material_break_preparation_retracted_position label"
  281. msgid "Break Preparation Retracted Position"
  282. msgstr "Szakadás előállítás visszahúzott helyzetben"
  283. #: /fdmprinter.def.json
  284. msgctxt "material_break_preparation_speed label"
  285. msgid "Break Preparation Retraction Speed"
  286. msgstr "Szakadás előállítás visszahúzási sebeség"
  287. #: /fdmprinter.def.json
  288. msgctxt "material_break_preparation_temperature label"
  289. msgid "Break Preparation Temperature"
  290. msgstr ""
  291. #: /fdmprinter.def.json
  292. msgctxt "material_break_retracted_position label"
  293. msgid "Break Retracted Position"
  294. msgstr "Sazakdás visszahúzási helyzet"
  295. #: /fdmprinter.def.json
  296. msgctxt "material_break_speed label"
  297. msgid "Break Retraction Speed"
  298. msgstr "Szakítás visszahúzási sebesség"
  299. #: /fdmprinter.def.json
  300. msgctxt "material_break_temperature label"
  301. msgid "Break Temperature"
  302. msgstr "Szakítási hőmérséklet"
  303. #: /fdmprinter.def.json
  304. msgctxt "support_skip_some_zags label"
  305. msgid "Break Up Support In Chunks"
  306. msgstr "Támasz tördelhetősége"
  307. #: /fdmprinter.def.json
  308. msgctxt "bridge_fan_speed label"
  309. msgid "Bridge Fan Speed"
  310. msgstr "Híd hűtési sebesség"
  311. #: /fdmprinter.def.json
  312. msgctxt "bridge_enable_more_layers label"
  313. msgid "Bridge Has Multiple Layers"
  314. msgstr "Többrétegű híd"
  315. #: /fdmprinter.def.json
  316. msgctxt "bridge_skin_density_2 label"
  317. msgid "Bridge Second Skin Density"
  318. msgstr "Második hídréteg sűrűség"
  319. #: /fdmprinter.def.json
  320. msgctxt "bridge_fan_speed_2 label"
  321. msgid "Bridge Second Skin Fan Speed"
  322. msgstr "Második hídréteg hűtési sebessége"
  323. #: /fdmprinter.def.json
  324. msgctxt "bridge_skin_material_flow_2 label"
  325. msgid "Bridge Second Skin Flow"
  326. msgstr "Második hídréteg adagolás"
  327. #: /fdmprinter.def.json
  328. msgctxt "bridge_skin_speed_2 label"
  329. msgid "Bridge Second Skin Speed"
  330. msgstr "Második hídréteg sebessége"
  331. #: /fdmprinter.def.json
  332. msgctxt "bridge_skin_density label"
  333. msgid "Bridge Skin Density"
  334. msgstr "Hídfelszín sűrűsége"
  335. #: /fdmprinter.def.json
  336. msgctxt "bridge_skin_material_flow label"
  337. msgid "Bridge Skin Flow"
  338. msgstr "Hídfelszín adagolás"
  339. #: /fdmprinter.def.json
  340. msgctxt "bridge_skin_speed label"
  341. msgid "Bridge Skin Speed"
  342. msgstr "Hídfelszín sebesség"
  343. #: /fdmprinter.def.json
  344. msgctxt "bridge_skin_support_threshold label"
  345. msgid "Bridge Skin Support Threshold"
  346. msgstr "Felület támasz küszöb"
  347. #: /fdmprinter.def.json
  348. msgctxt "bridge_sparse_infill_max_density label"
  349. msgid "Bridge Sparse Infill Max Density"
  350. msgstr ""
  351. #: /fdmprinter.def.json
  352. msgctxt "bridge_skin_density_3 label"
  353. msgid "Bridge Third Skin Density"
  354. msgstr "Harmadik hídréteg sűrűség"
  355. #: /fdmprinter.def.json
  356. msgctxt "bridge_fan_speed_3 label"
  357. msgid "Bridge Third Skin Fan Speed"
  358. msgstr "Harmadik hídréteg hűtési sebessége"
  359. #: /fdmprinter.def.json
  360. msgctxt "bridge_skin_material_flow_3 label"
  361. msgid "Bridge Third Skin Flow"
  362. msgstr "Harmadik hídréteg adagolás"
  363. #: /fdmprinter.def.json
  364. msgctxt "bridge_skin_speed_3 label"
  365. msgid "Bridge Third Skin Speed"
  366. msgstr "Harmadik hídréteg sebesség"
  367. #: /fdmprinter.def.json
  368. msgctxt "bridge_wall_coast label"
  369. msgid "Bridge Wall Coasting"
  370. msgstr "Híd fal kifutás"
  371. #: /fdmprinter.def.json
  372. msgctxt "bridge_wall_material_flow label"
  373. msgid "Bridge Wall Flow"
  374. msgstr "Hídfal adagolás"
  375. #: /fdmprinter.def.json
  376. msgctxt "bridge_wall_speed label"
  377. msgid "Bridge Wall Speed"
  378. msgstr "Hídfal sebesség"
  379. #: /fdmprinter.def.json
  380. msgctxt "adhesion_type option brim"
  381. msgid "Brim"
  382. msgstr "Perem"
  383. #: /fdmprinter.def.json
  384. msgctxt "brim_gap label"
  385. msgid "Brim Distance"
  386. msgstr ""
  387. #: /fdmprinter.def.json
  388. msgctxt "brim_line_count label"
  389. msgid "Brim Line Count"
  390. msgstr "Perem vonalszám"
  391. #: /fdmprinter.def.json
  392. msgctxt "brim_outside_only label"
  393. msgid "Brim Only on Outside"
  394. msgstr "Perem csak kívül"
  395. #: /fdmprinter.def.json
  396. msgctxt "brim_replaces_support label"
  397. msgid "Brim Replaces Support"
  398. msgstr "Perem támasz helyett"
  399. #: /fdmprinter.def.json
  400. msgctxt "brim_width label"
  401. msgid "Brim Width"
  402. msgstr "Perem szélesség"
  403. #: /fdmprinter.def.json
  404. msgctxt "platform_adhesion label"
  405. msgid "Build Plate Adhesion"
  406. msgstr "Tárgyasztal tapadás"
  407. #: /fdmprinter.def.json
  408. msgctxt "adhesion_extruder_nr label"
  409. msgid "Build Plate Adhesion Extruder"
  410. msgstr "Tapadás extruder"
  411. #: /fdmprinter.def.json
  412. msgctxt "adhesion_type label"
  413. msgid "Build Plate Adhesion Type"
  414. msgstr "Tárgyasztal tapadási típus"
  415. #: /fdmprinter.def.json
  416. msgctxt "machine_buildplate_type label"
  417. msgid "Build Plate Material"
  418. msgstr "Tárgyasztal anyaga"
  419. #: /fdmprinter.def.json
  420. msgctxt "machine_shape label"
  421. msgid "Build Plate Shape"
  422. msgstr "Tárgyasztal alakja"
  423. #: /fdmprinter.def.json
  424. msgctxt "material_bed_temperature label"
  425. msgid "Build Plate Temperature"
  426. msgstr "Tárgyasztal hőmérséklete"
  427. #: /fdmprinter.def.json
  428. msgctxt "material_bed_temperature_layer_0 label"
  429. msgid "Build Plate Temperature Initial Layer"
  430. msgstr "Tárgyasztal hőmérséklet a kezdő rétegnél"
  431. #: /fdmprinter.def.json
  432. msgctxt "build_volume_temperature label"
  433. msgid "Build Volume Temperature"
  434. msgstr "Építési tér hőmérséklete"
  435. #: /fdmprinter.def.json
  436. msgctxt "center_object label"
  437. msgid "Center Object"
  438. msgstr "Tárgy középpontba"
  439. #: /fdmprinter.def.json
  440. msgctxt "conical_overhang_enabled description"
  441. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  442. msgstr "A modell geometriáját fogja megváltoztatni oly módon, hogy minimális támasz legyen szükséges a nyomtatáshoz. A meredek kinyúlások sekélyessé fognak válni, míg a túlnyúló területek függőlegesebbé."
  443. #: /fdmprinter.def.json
  444. msgctxt "material_flow_dependent_temperature description"
  445. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  446. msgstr "Automatikusan változtassuk a hőmérsékletet az egyes rétegeknél, annak függvényében, hogy milyen az adott réteg átlagos adagolási sebessége."
  447. #: /fdmprinter.def.json
  448. msgctxt "support_structure description"
  449. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"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."
  450. msgstr ""
  451. #: /fdmprinter.def.json
  452. msgctxt "coasting_speed label"
  453. msgid "Coasting Speed"
  454. msgstr "Kifutási sebesség"
  455. #: /fdmprinter.def.json
  456. msgctxt "coasting_volume label"
  457. msgid "Coasting Volume"
  458. msgstr "Kifutási mérték"
  459. #: /fdmprinter.def.json
  460. msgctxt "coasting_enable description"
  461. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  462. msgstr "A kifutás során, az adott rész nyomtatásakor, az extrudálási út vége előtt, egy utazási mozgársa váltás történik. Idő előtt megszüntetjük az extrudálást és a fejből még kicsöppenő anyagmaradványt használjuk fel a rész fennmaradó részének nyomtatásához. Így a szálazást, és az utazás közbeni csöppenést tudjuk csökkenteni."
  463. #: /fdmprinter.def.json
  464. msgctxt "retraction_combing label"
  465. msgid "Combing Mode"
  466. msgstr "Fésülés mód"
  467. #: /fdmprinter.def.json
  468. msgctxt "retraction_combing description"
  469. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  470. msgstr "A fésülés a fúvókát a már nyomtatott területeken tartja utazás közben.Ez kissé hosszabb utazási eredményeket eredményez, de csökkenti a visszahúzás szükségességét. Ha a fésülés ki van kapcsolva, akkor az anyag visszahúzódik, és a fúvóka egyenes vonalban mozog a következő pontra.Az is elkerülhető, hogy a felső / alsó kéregfelületeken fésülést végezzen, vagy csak a kitöltés belsejében mozogjon."
  471. #: /fdmprinter.def.json
  472. msgctxt "command_line_settings label"
  473. msgid "Command Line Settings"
  474. msgstr "Parancssor beállításai"
  475. #: /fdmprinter.def.json
  476. msgctxt "wireframe_strategy option compensate"
  477. msgid "Compensate"
  478. msgstr "Kompenzáció"
  479. #: /fdmprinter.def.json
  480. msgctxt "infill_pattern option concentric"
  481. msgid "Concentric"
  482. msgstr "Körkörös"
  483. #: /fdmprinter.def.json
  484. msgctxt "ironing_pattern option concentric"
  485. msgid "Concentric"
  486. msgstr "Körkörös"
  487. #: /fdmprinter.def.json
  488. msgctxt "roofing_pattern option concentric"
  489. msgid "Concentric"
  490. msgstr "Körkörös"
  491. #: /fdmprinter.def.json
  492. msgctxt "support_bottom_pattern option concentric"
  493. msgid "Concentric"
  494. msgstr "Körkörös"
  495. #: /fdmprinter.def.json
  496. msgctxt "support_interface_pattern option concentric"
  497. msgid "Concentric"
  498. msgstr "Körkörös"
  499. #: /fdmprinter.def.json
  500. msgctxt "support_pattern option concentric"
  501. msgid "Concentric"
  502. msgstr "Körkörös"
  503. #: /fdmprinter.def.json
  504. msgctxt "support_roof_pattern option concentric"
  505. msgid "Concentric"
  506. msgstr "Körkörös"
  507. #: /fdmprinter.def.json
  508. msgctxt "top_bottom_pattern option concentric"
  509. msgid "Concentric"
  510. msgstr "Körkörös"
  511. #: /fdmprinter.def.json
  512. msgctxt "top_bottom_pattern_0 option concentric"
  513. msgid "Concentric"
  514. msgstr "Körkörös"
  515. #: /fdmprinter.def.json
  516. msgctxt "support_conical_angle label"
  517. msgid "Conical Support Angle"
  518. msgstr "Kúpszög"
  519. #: /fdmprinter.def.json
  520. msgctxt "support_conical_min_width label"
  521. msgid "Conical Support Minimum Width"
  522. msgstr "Kúptámasz minimális szélesség"
  523. #: /fdmprinter.def.json
  524. msgctxt "zig_zaggify_infill label"
  525. msgid "Connect Infill Lines"
  526. msgstr "Kitöltő vonalak csatlakozása"
  527. #: /fdmprinter.def.json
  528. msgctxt "connect_infill_polygons label"
  529. msgid "Connect Infill Polygons"
  530. msgstr "Kitöltési sokszögek csatlakozása"
  531. #: /fdmprinter.def.json
  532. msgctxt "zig_zaggify_support label"
  533. msgid "Connect Support Lines"
  534. msgstr "Támasz vonalak összekötése"
  535. #: /fdmprinter.def.json
  536. msgctxt "support_connect_zigzags label"
  537. msgid "Connect Support ZigZags"
  538. msgstr "Cikcakk támasz összekötése"
  539. #: /fdmprinter.def.json
  540. msgctxt "connect_skin_polygons label"
  541. msgid "Connect Top/Bottom Polygons"
  542. msgstr "Alsó/felső poligonok kapcsolása"
  543. #: /fdmprinter.def.json
  544. msgctxt "connect_infill_polygons description"
  545. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  546. msgstr ""
  547. #: /fdmprinter.def.json
  548. msgctxt "support_connect_zigzags description"
  549. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  550. msgstr "Kösse össze a cikcakk támasz vonalait. Ez növeli a támasz szerkezeti erősségét."
  551. #: /fdmprinter.def.json
  552. msgctxt "zig_zaggify_support description"
  553. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  554. msgstr "Kösse össze a támaszvonalak végeit. Ha ez engedélyezve van, akkor a támaszok erősebbé válhatnak, csökkenthető az alulextrudálás, viszont ez több anyagba kerül."
  555. #: /fdmprinter.def.json
  556. msgctxt "zig_zaggify_infill description"
  557. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  558. msgstr "Összeköti a kitöltő vonalakat ott, ahol a mintázat megfelelő egy olyan vonallal,ami a belső fal alakját követi. Így jobban fog kapcsolódni a kitöltés a falakhoz, és csükkenthető az a negatív hatás, hogy kitöltési vonalak torzítják a külső felületet. Ha ezt a beállítást nem használjuk, akkor csökken a felhasznált anyagmennyiség."
  559. #: /fdmprinter.def.json
  560. msgctxt "connect_skin_polygons description"
  561. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  562. msgstr "Az alsó/felső rétegpályákat kapcsolja össze, ahol egymás mellett futnak.Ha ezt a beállítást engedélyezzük a körkörös mintázatnál, jelentősen csökkenthetjük a fej átemelési időt, mivel a kapcsolódások félúton terténhetnek meg. Ez azonban ronthatja a felső felület minőségét."
  563. #: /fdmprinter.def.json
  564. msgctxt "z_seam_corner description"
  565. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  566. msgstr "Ellenőrzi, hogy a modell körvonalai mennyire befolyásolják a varrat helyzetét.Ha azt választjuk, hogy nincs, akkor a sarkok nincsenek hatással a varrás helyzetére.A varrat rejtés esetén a varrás legvalószínűbb helyzete, valamelyik belső sarokban lesz.A külső varrat esetén a megjelenés valószínűleg egy külső sarkon lesz.A külső/belső varrat esetén a varrat vagy külső, vagy belső sarokban lesz.Az okos rejtés esetén ugyanaz, mint a külső/belső varrat, de törekszik arra, hogy a varrat inkább a belső sarkokon legyen, rejtve."
  567. #: /fdmprinter.def.json
  568. msgctxt "infill_multiplier description"
  569. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  570. msgstr "Átkonvertálja az összes kitöltési sort, erre az értékre.Az így keletkező extra vonalak nem fogják egymást keresztezni, hanem elkerülik egymást. Ez növelni fogja a kitöltés erősségét, de a nyomtatási idő, és az anyagköltség is nőni fog."
  571. #: /fdmprinter.def.json
  572. msgctxt "machine_nozzle_cool_down_speed label"
  573. msgid "Cool Down Speed"
  574. msgstr "Visszahűlési sebesség"
  575. #: /fdmprinter.def.json
  576. msgctxt "cooling description"
  577. msgid "Cooling"
  578. msgstr "Hűtés"
  579. #: /fdmprinter.def.json
  580. msgctxt "cooling label"
  581. msgid "Cooling"
  582. msgstr "Hűtés"
  583. #: /fdmprinter.def.json
  584. msgctxt "wireframe_top_jump description"
  585. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  586. msgstr "Kicsi csomót hoz létre egy felfelé mutató vonal tetején, hogy az egymást követő vízszintes réteg nagyobb eséllyel csatlakozzon hozzá. Csak a huzalnyomásra vonatkozik."
  587. #: /fdmprinter.def.json
  588. msgctxt "infill_pattern option cross"
  589. msgid "Cross"
  590. msgstr "Kereszt"
  591. #: /fdmprinter.def.json
  592. msgctxt "support_pattern option cross"
  593. msgid "Cross"
  594. msgstr "Kereszt"
  595. #: /fdmprinter.def.json
  596. msgctxt "infill_pattern option cross_3d"
  597. msgid "Cross 3D"
  598. msgstr "3D kereszt"
  599. #: /fdmprinter.def.json
  600. msgctxt "cross_infill_pocket_size label"
  601. msgid "Cross 3D Pocket Size"
  602. msgstr "Kereszt 3D üreg méret"
  603. #: /fdmprinter.def.json
  604. msgctxt "cross_support_density_image label"
  605. msgid "Cross Fill Density Image for Support"
  606. msgstr "Kereszt támasz kitöltési kép"
  607. #: /fdmprinter.def.json
  608. msgctxt "cross_infill_density_image label"
  609. msgid "Cross Infill Density Image"
  610. msgstr "Kereszt kitöltési kép"
  611. #: /fdmprinter.def.json
  612. msgctxt "material_crystallinity label"
  613. msgid "Crystalline Material"
  614. msgstr "Kristályos anyag"
  615. #: /fdmprinter.def.json
  616. msgctxt "infill_pattern option cubic"
  617. msgid "Cubic"
  618. msgstr "Kocka"
  619. #: /fdmprinter.def.json
  620. msgctxt "infill_pattern option cubicsubdiv"
  621. msgid "Cubic Subdivision"
  622. msgstr "Osztott kocka"
  623. #: /fdmprinter.def.json
  624. msgctxt "sub_div_rad_add label"
  625. msgid "Cubic Subdivision Shell"
  626. msgstr "Osztott kocka héj"
  627. #: /fdmprinter.def.json
  628. msgctxt "cutting_mesh label"
  629. msgid "Cutting Mesh"
  630. msgstr "Háló vágás"
  631. #: /fdmprinter.def.json
  632. msgctxt "material_flow_temp_graph description"
  633. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  634. msgstr "A nyomtatószál adagolást (mm3/mp), és a hőmérsékletet (Celsius) összekötő adatok."
  635. #: /fdmprinter.def.json
  636. msgctxt "machine_acceleration label"
  637. msgid "Default Acceleration"
  638. msgstr "Alapértelmezett gyorsulás"
  639. #: /fdmprinter.def.json
  640. msgctxt "default_material_bed_temperature label"
  641. msgid "Default Build Plate Temperature"
  642. msgstr "Alapértelmezett tárgyasztal hőmérséklet"
  643. #: /fdmprinter.def.json
  644. msgctxt "machine_max_jerk_e label"
  645. msgid "Default Filament Jerk"
  646. msgstr "Alapértelmezett E löket"
  647. #: /fdmprinter.def.json
  648. msgctxt "default_material_print_temperature label"
  649. msgid "Default Printing Temperature"
  650. msgstr "Alapértelmezett nyomtatási hőmérséklet"
  651. #: /fdmprinter.def.json
  652. msgctxt "machine_max_jerk_xy label"
  653. msgid "Default X-Y Jerk"
  654. msgstr "Alapértelmezett X-Y löket"
  655. #: /fdmprinter.def.json
  656. msgctxt "machine_max_jerk_z label"
  657. msgid "Default Z Jerk"
  658. msgstr "Alapértelmezett Z löket"
  659. #: /fdmprinter.def.json
  660. msgctxt "machine_max_jerk_xy description"
  661. msgid "Default jerk for movement in the horizontal plane."
  662. msgstr "Alapértelmezett löket a vízszintes síkon történő mozgáskor."
  663. #: /fdmprinter.def.json
  664. msgctxt "machine_max_jerk_z description"
  665. msgid "Default jerk for the motor of the Z-direction."
  666. msgstr "Alapértelmezett löket a Z tengelyen."
  667. #: /fdmprinter.def.json
  668. msgctxt "machine_max_jerk_e description"
  669. msgid "Default jerk for the motor of the filament."
  670. msgstr "Alapértelmezett extrudálási löket."
  671. #: /fdmprinter.def.json
  672. msgctxt "wireframe_bottom_delay description"
  673. msgid "Delay time after a downward move. Only applies to Wire Printing."
  674. msgstr "Késleltesse az időt lefelé történő mozgatás után, hogy a lefelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik."
  675. #: /fdmprinter.def.json
  676. msgctxt "wireframe_top_delay description"
  677. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  678. msgstr "Késleltesse az időt felfelé történő mozgatás után, hogy a felfelé mutató vonal megszilárduljon. Csak a huzalnyomásra vonatkozik."
  679. #: /fdmprinter.def.json
  680. msgctxt "wireframe_flat_delay description"
  681. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  682. msgstr "Késleltetési idő két vízszintes szegmens között. Egy ilyen késleltetés bevezetése jobb tapadást okozhat az előző rétegekhez a csatlakozási pontokon, míg a túl hosszú késleltetések megereszkedést okozhatnak. Csak a huzalnyomásra vonatkozik."
  683. #: /fdmprinter.def.json
  684. msgctxt "bridge_settings_enabled description"
  685. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  686. msgstr "Érzékelje a hidakat, és módosítsa a nyomtatási sebességet, az adagolást és a ventilátorbeállításokat, a nyomtatásuk idejére."
  687. #: /fdmprinter.def.json
  688. msgctxt "inset_direction description"
  689. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  690. msgstr ""
  691. #: /fdmprinter.def.json
  692. msgctxt "infill_mesh_order description"
  693. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  694. msgstr ""
  695. #: /fdmprinter.def.json
  696. msgctxt "lightning_infill_support_angle description"
  697. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  698. msgstr ""
  699. #: /fdmprinter.def.json
  700. msgctxt "lightning_infill_overhang_angle description"
  701. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  702. msgstr ""
  703. #: /fdmprinter.def.json
  704. msgctxt "material_diameter label"
  705. msgid "Diameter"
  706. msgstr "Átmérő"
  707. #: /fdmprinter.def.json
  708. msgctxt "adhesion_type description"
  709. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  710. msgstr "Itt különböző lehetőségek közül választhatunk, amelyek elősegítik a nyomtatvány tárgyasztalhoz való tapadását. A peremek egyrétegű sík felületek, amik a modell alapja körül nyomtatódnak úgy, hogy megakadályozzák a deformációt.A tutaj egy vastag rácsot hoz létre egy fedéllel a modell alatt.A szoknya egy vonal, ami a modell körül van nyomtatva, de az a modellhez ne kapcsolódik."
  711. #: /fdmprinter.def.json
  712. msgctxt "machine_disallowed_areas label"
  713. msgid "Disallowed Areas"
  714. msgstr "Tiltott területek"
  715. #: /fdmprinter.def.json
  716. msgctxt "wireframe_nozzle_clearance description"
  717. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  718. msgstr "A fúvóka és a vízszintesen lefelé mutató vonalak közötti távolság. A nagyobb hézag átlósan lefelé mutató vonalakat eredményez, kevésbé meredek szöggel, ami viszont kevésbé felfelé irányuló kapcsolatokat eredményez a következő réteggel. Csak a huzalnyomásra vonatkozik."
  719. #: /fdmprinter.def.json
  720. msgctxt "infill_line_distance description"
  721. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  722. msgstr "A nyomtatott kitöltő vonalak távolsága. Ez egy számított érték, amit a kitöltési sűrűségből, és a kitöltő vonal szélességéből számol ki."
  723. #: /fdmprinter.def.json
  724. msgctxt "support_initial_layer_line_distance description"
  725. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  726. msgstr "A támaszok belső szerkezetében lévő vonalak távolsága az első rétegben.Ez egy számított érték a támasz sűrűségből."
  727. #: /fdmprinter.def.json
  728. msgctxt "support_bottom_line_distance description"
  729. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  730. msgstr "A támasz interfész aljzatvonalainak távolsága. Ezt a beállítást a támasz aljának a sűrűségét számítja ki, de külön is megadható."
  731. #: /fdmprinter.def.json
  732. msgctxt "support_roof_line_distance description"
  733. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  734. msgstr "A támasz interfész tetővonalainak távolsága. Ezt a beállítást a támasz fedél sűrűségét számítja ki, de külön is megadható."
  735. #: /fdmprinter.def.json
  736. msgctxt "support_line_distance description"
  737. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  738. msgstr "A támaszok belső szerkezetében lévő vonalak távolsága.Ez egy számított érték a támasz sűrűségből."
  739. #: /fdmprinter.def.json
  740. msgctxt "support_bottom_distance description"
  741. msgid "Distance from the print to the bottom of the support."
  742. msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság."
  743. #: /fdmprinter.def.json
  744. msgctxt "support_top_distance description"
  745. msgid "Distance from the top of the support to the print."
  746. msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság."
  747. #: /fdmprinter.def.json
  748. msgctxt "support_z_distance description"
  749. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  750. msgstr "A támaszok struktúrájának alsó/felső részének távolsága a nyomtatott tárgytól.Ez a rés szabadon marad, így segíti a támaszok eltávolítását a nyomtatás után.Ez az érték a rétegmagasság többszörösére lesz kerekítve."
  751. #: /fdmprinter.def.json
  752. msgctxt "infill_wipe_dist description"
  753. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  754. msgstr "A kitöltési sor nyomtatása után egy extra törlőmozgást végez a fej.Ez a távolság határozza meg a törlési mozgás távolságát.Az opció hasonlít a szimpla kitöltés átfedéséhez, azonban itt a mozgás extrudálás nélkül történik, és csak a kitöltő sor egyik végén."
  755. #: /fdmprinter.def.json
  756. msgctxt "wall_0_wipe_dist description"
  757. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  758. msgstr "A külső fal nyomtatása után, beilleszt egy fej átemelést, a meghatározott távolságra. Ez segít elrejteni a Z varratot."
  759. #: /fdmprinter.def.json
  760. msgctxt "wireframe_up_half_speed description"
  761. msgid ""
  762. "Distance of an upward move which is extruded with half speed.\n"
  763. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  764. msgstr "A felfelé irányuló mozgás távolsága, amelyet fél sebességgel extrudálunk. Ez jobb tapadást eredményez az előző rétegekhez, miközben az anyag nem melegíti túl az anyagot ezekben a rétegekben. Csak a huzalnyomásra vonatkozik."
  765. #: /fdmprinter.def.json
  766. msgctxt "draft_shield_dist description"
  767. msgid "Distance of the draft shield from the print, in the X/Y directions."
  768. msgstr "A modell és a huzatpajzs közötti távolság X/Y irányban."
  769. #: /fdmprinter.def.json
  770. msgctxt "ooze_shield_dist description"
  771. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  772. msgstr "A pajzs távolsága a nyomtatványtól X/Y irányban értve."
  773. #: /fdmprinter.def.json
  774. msgctxt "support_xy_distance_overhang description"
  775. msgid "Distance of the support structure from the overhang in the X/Y directions."
  776. msgstr ""
  777. #: /fdmprinter.def.json
  778. msgctxt "support_xy_distance description"
  779. msgid "Distance of the support structure from the print in the X/Y directions."
  780. msgstr "A támasz szerkezete és a nyomtatvány közötti távolság X/Y irányban."
  781. #: /fdmprinter.def.json
  782. msgctxt "wireframe_fall_down description"
  783. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  784. msgstr "Az a távolság, amellyel az anyag leesik egy felfelé történő extrudálás után. Ezt a távolságot tudjuk itt kompenzálni. Csak a huzalnyomásra vonatkozik."
  785. #: /fdmprinter.def.json
  786. msgctxt "wireframe_drag_along description"
  787. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  788. msgstr "Az a távolság, ameddig egy felfelé irányuló extrudálás anyagát az átlósan lefelé irányuló extrudálással együtt meghúzzuk. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik."
  789. #: /fdmprinter.def.json
  790. msgctxt "min_infill_area description"
  791. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  792. msgstr "Az ettől kisebb területekre nem generál kitöltést."
  793. #: /fdmprinter.def.json
  794. msgctxt "draft_shield_height label"
  795. msgid "Draft Shield Height"
  796. msgstr "Huzatpajzs magasság"
  797. #: /fdmprinter.def.json
  798. msgctxt "draft_shield_height_limitation label"
  799. msgid "Draft Shield Limitation"
  800. msgstr "Huzatpajzs korlátozás"
  801. #: /fdmprinter.def.json
  802. msgctxt "draft_shield_dist label"
  803. msgid "Draft Shield X/Y Distance"
  804. msgstr "Huzatpajzs X/Y távolság"
  805. #: /fdmprinter.def.json
  806. msgctxt "support_mesh_drop_down label"
  807. msgid "Drop Down Support Mesh"
  808. msgstr "Támaszháló ledobás"
  809. #: /fdmprinter.def.json
  810. msgctxt "dual label"
  811. msgid "Dual Extrusion"
  812. msgstr "Duál extrudálás"
  813. #: /fdmprinter.def.json
  814. msgctxt "machine_shape option elliptic"
  815. msgid "Elliptic"
  816. msgstr "Elliptikus (kör)"
  817. #: /fdmprinter.def.json
  818. msgctxt "acceleration_enabled label"
  819. msgid "Enable Acceleration Control"
  820. msgstr "Gyorsulás vezérlés engedélyezés"
  821. #: /fdmprinter.def.json
  822. msgctxt "bridge_settings_enabled label"
  823. msgid "Enable Bridge Settings"
  824. msgstr "Híd beállítások engedélyezése"
  825. #: /fdmprinter.def.json
  826. msgctxt "coasting_enable label"
  827. msgid "Enable Coasting"
  828. msgstr "Kifutás engedélyezés"
  829. #: /fdmprinter.def.json
  830. msgctxt "support_conical_enabled label"
  831. msgid "Enable Conical Support"
  832. msgstr "Kúpos támasz engedélyezése"
  833. #: /fdmprinter.def.json
  834. msgctxt "draft_shield_enabled label"
  835. msgid "Enable Draft Shield"
  836. msgstr "Huzatpajzs engedélyezése"
  837. #: /fdmprinter.def.json
  838. msgctxt "ironing_enabled label"
  839. msgid "Enable Ironing"
  840. msgstr "Vasalás engedélyezés"
  841. #: /fdmprinter.def.json
  842. msgctxt "jerk_enabled label"
  843. msgid "Enable Jerk Control"
  844. msgstr "Löket vezérlés engedélyezése"
  845. #: /fdmprinter.def.json
  846. msgctxt "machine_nozzle_temp_enabled label"
  847. msgid "Enable Nozzle Temperature Control"
  848. msgstr "A fúvóka hőmérséklet-szabályozásának engedélyezése"
  849. #: /fdmprinter.def.json
  850. msgctxt "ooze_shield_enabled label"
  851. msgid "Enable Ooze Shield"
  852. msgstr "Szivárgáspajzs engedélyezés"
  853. #: /fdmprinter.def.json
  854. msgctxt "prime_blob_enable label"
  855. msgid "Enable Prime Blob"
  856. msgstr "Előnyomás engedélyezése"
  857. #: /fdmprinter.def.json
  858. msgctxt "prime_tower_enable label"
  859. msgid "Enable Prime Tower"
  860. msgstr "Előtorony engedélyezése"
  861. #: /fdmprinter.def.json
  862. msgctxt "cool_fan_enabled label"
  863. msgid "Enable Print Cooling"
  864. msgstr "Tárgyhűtés engedélyezés"
  865. #: /fdmprinter.def.json
  866. msgctxt "retraction_enable label"
  867. msgid "Enable Retraction"
  868. msgstr "Visszahúzás engedélyezés"
  869. #: /fdmprinter.def.json
  870. msgctxt "support_brim_enable label"
  871. msgid "Enable Support Brim"
  872. msgstr "Támasz perem engedélyezése"
  873. #: /fdmprinter.def.json
  874. msgctxt "support_bottom_enable label"
  875. msgid "Enable Support Floor"
  876. msgstr "Alsó interfész engedélyezés"
  877. #: /fdmprinter.def.json
  878. msgctxt "support_interface_enable label"
  879. msgid "Enable Support Interface"
  880. msgstr "Támasz interfész engedélyezés"
  881. #: /fdmprinter.def.json
  882. msgctxt "support_roof_enable label"
  883. msgid "Enable Support Roof"
  884. msgstr "Felső interfész engedélyezés"
  885. #: /fdmprinter.def.json
  886. msgctxt "acceleration_travel_enabled label"
  887. msgid "Enable Travel Acceleration"
  888. msgstr ""
  889. #: /fdmprinter.def.json
  890. msgctxt "jerk_travel_enabled label"
  891. msgid "Enable Travel Jerk"
  892. msgstr ""
  893. #: /fdmprinter.def.json
  894. msgctxt "ooze_shield_enabled description"
  895. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  896. msgstr "Engedélyezi a szivárgáspajzsot. Ez létrehoz egy héjat a modell körül, úgy, hogy az nem ér a modellhez, azonban a fej visszaálláskor, az esetlegesen fúvókából kicsöppenő anyagmaradványokat 'letörli' ebben a héjban."
  897. #: /fdmprinter.def.json
  898. msgctxt "jerk_enabled description"
  899. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  900. msgstr "Engedéylezi a nyomtatófej X és Y tengelyen való löketének (sebesség) változásának vezérlését. Ha a löketet növeljük, az csökkenti a nyomtatási időt a minőség terhére."
  901. #: /fdmprinter.def.json
  902. msgctxt "acceleration_enabled description"
  903. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  904. msgstr "A nyomtatófej mozgási gyorsulás szabályzás engedélyezése. Ha növeljük a gyorsulást, csökken a nyomtatási idő, viszont a nyomtatás minősége is."
  905. #: /fdmprinter.def.json
  906. msgctxt "cool_fan_enabled description"
  907. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  908. msgstr "Engedélyezi a tárgyhűtést nyomtatás közben. A hűtés javíthatja a rétegek nyomtatási minőségét, főleg a kicsi rétegeknél, és az áthidaló, túlnyúló részeknél."
  909. #: /fdmprinter.def.json
  910. msgctxt "machine_end_gcode label"
  911. msgid "End G-code"
  912. msgstr "Záró G-kód"
  913. #: /fdmprinter.def.json
  914. msgctxt "material_end_of_filament_purge_length label"
  915. msgid "End of Filament Purge Length"
  916. msgstr ""
  917. #: /fdmprinter.def.json
  918. msgctxt "material_end_of_filament_purge_speed label"
  919. msgid "End of Filament Purge Speed"
  920. msgstr ""
  921. #: /fdmprinter.def.json
  922. msgctxt "brim_replaces_support description"
  923. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  924. msgstr "Kényszerítő Perem nyomtatás a tárgy körül, még azokon a helyeken is, ahol egyébként támaszt kellene nyomtatni. Ezeken a helyeken a támasz első rétege helyett a perem lesz nyomtatva."
  925. #: /fdmprinter.def.json
  926. msgctxt "support_type option everywhere"
  927. msgid "Everywhere"
  928. msgstr "Mindenhol"
  929. #: /fdmprinter.def.json
  930. msgctxt "slicing_tolerance option exclusive"
  931. msgid "Exclusive"
  932. msgstr "Kizáró"
  933. #: /fdmprinter.def.json
  934. msgctxt "experimental label"
  935. msgid "Experimental"
  936. msgstr "Kísérleti funkciók"
  937. #: /fdmprinter.def.json
  938. msgctxt "z_seam_corner option z_seam_corner_outer"
  939. msgid "Expose Seam"
  940. msgstr "Külső varrat"
  941. #: /fdmprinter.def.json
  942. msgctxt "meshfix_extensive_stitching label"
  943. msgid "Extensive Stitching"
  944. msgstr "Kiterjedt felfűzés"
  945. #: /fdmprinter.def.json
  946. msgctxt "meshfix_extensive_stitching description"
  947. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  948. msgstr "A kiterjedt felfűzés megkísérli felfűzni a nyílt lyukakat a hálóban úgy, hogy a lyukakat érintő poligonokat bezárja. Ez a funkció jelentősen növelheti a feldolgozási időt."
  949. #: /fdmprinter.def.json
  950. msgctxt "infill_wall_line_count label"
  951. msgid "Extra Infill Wall Count"
  952. msgstr "Extra kitöltési falszám"
  953. #: /fdmprinter.def.json
  954. msgctxt "skin_outline_count label"
  955. msgid "Extra Skin Wall Count"
  956. msgstr "Extra felületi falszám"
  957. #: /fdmprinter.def.json
  958. msgctxt "switch_extruder_extra_prime_amount description"
  959. msgid "Extra material to prime after nozzle switching."
  960. msgstr "Egy extra anyagmennyiség, amivel több anyagot tol vissza a fejbe fúvókaváltás után."
  961. #: /fdmprinter.def.json
  962. msgctxt "extruder_prime_pos_x label"
  963. msgid "Extruder Prime X Position"
  964. msgstr "Extruder kezdő X helyzet"
  965. #: /fdmprinter.def.json
  966. msgctxt "extruder_prime_pos_y label"
  967. msgid "Extruder Prime Y Position"
  968. msgstr "Extruder kezdő Y helyzet"
  969. #: /fdmprinter.def.json
  970. msgctxt "extruder_prime_pos_z label"
  971. msgid "Extruder Prime Z Position"
  972. msgstr "Kezdő Z pozíció"
  973. #: /fdmprinter.def.json
  974. msgctxt "machine_extruders_share_heater label"
  975. msgid "Extruders Share Heater"
  976. msgstr ""
  977. #: /fdmprinter.def.json
  978. msgctxt "machine_extruders_share_nozzle label"
  979. msgid "Extruders Share Nozzle"
  980. msgstr ""
  981. #: /fdmprinter.def.json
  982. msgctxt "material_extrusion_cool_down_speed label"
  983. msgid "Extrusion Cool Down Speed Modifier"
  984. msgstr "Adagolási visszahűlés sebesség kompenzáció"
  985. #: /fdmprinter.def.json
  986. msgctxt "speed_equalize_flow_width_factor description"
  987. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  988. msgstr ""
  989. #: /fdmprinter.def.json
  990. msgctxt "cool_fan_speed label"
  991. msgid "Fan Speed"
  992. msgstr "Hűtés sebesség"
  993. #: /fdmprinter.def.json
  994. msgctxt "support_fan_enable label"
  995. msgid "Fan Speed Override"
  996. msgstr "Hűtés felülbírálás"
  997. #: /fdmprinter.def.json
  998. msgctxt "small_feature_max_length description"
  999. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  1000. msgstr "Ettől a hosszúságtól rövidebb részek körvonalait a Kis funkció sebességgel kerülnek kinyomtatásra."
  1001. #: /fdmprinter.def.json
  1002. msgctxt "experimental description"
  1003. msgid "Features that haven't completely been fleshed out yet."
  1004. msgstr ""
  1005. #: /fdmprinter.def.json
  1006. msgctxt "machine_feeder_wheel_diameter label"
  1007. msgid "Feeder Wheel Diameter"
  1008. msgstr "Az adagolókerék átmérője"
  1009. #: /fdmprinter.def.json
  1010. msgctxt "material_final_print_temperature label"
  1011. msgid "Final Printing Temperature"
  1012. msgstr "Befejező nyomtatási hőmérséklet"
  1013. #: /fdmprinter.def.json
  1014. msgctxt "machine_firmware_retract label"
  1015. msgid "Firmware Retraction"
  1016. msgstr "Firmware visszahúzás"
  1017. #: /fdmprinter.def.json
  1018. msgctxt "support_extruder_nr_layer_0 label"
  1019. msgid "First Layer Support Extruder"
  1020. msgstr "Első réteg támasz extruder"
  1021. #: /fdmprinter.def.json
  1022. msgctxt "material_flow label"
  1023. msgid "Flow"
  1024. msgstr "Áramlás"
  1025. #: /fdmprinter.def.json
  1026. msgctxt "speed_equalize_flow_width_factor label"
  1027. msgid "Flow Equalization Ratio"
  1028. msgstr ""
  1029. #: /fdmprinter.def.json
  1030. msgctxt "flow_rate_extrusion_offset_factor label"
  1031. msgid "Flow Rate Compensation Factor"
  1032. msgstr ""
  1033. #: /fdmprinter.def.json
  1034. msgctxt "flow_rate_max_extrusion_offset label"
  1035. msgid "Flow Rate Compensation Max Extrusion Offset"
  1036. msgstr ""
  1037. #: /fdmprinter.def.json
  1038. msgctxt "material_flow_temp_graph label"
  1039. msgid "Flow Temperature Graph"
  1040. msgstr "Adagolás hőmérséklet diagram"
  1041. #: /fdmprinter.def.json
  1042. msgctxt "material_flow_layer_0 description"
  1043. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1044. msgstr "Az első réteg áramlási kompenzációja: az eredeti rétegre extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  1045. #: /fdmprinter.def.json
  1046. msgctxt "skin_material_flow_layer_0 description"
  1047. msgid "Flow compensation on bottom lines of the first layer"
  1048. msgstr ""
  1049. #: /fdmprinter.def.json
  1050. msgctxt "infill_material_flow description"
  1051. msgid "Flow compensation on infill lines."
  1052. msgstr "Áramláskompenzálás a kitöltés nyomtatásánál."
  1053. #: /fdmprinter.def.json
  1054. msgctxt "support_interface_material_flow description"
  1055. msgid "Flow compensation on lines of support roof or floor."
  1056. msgstr "Áramláskompenzálás a támasz alsó/felső rétegének nyomtatásánál."
  1057. #: /fdmprinter.def.json
  1058. msgctxt "roofing_material_flow description"
  1059. msgid "Flow compensation on lines of the areas at the top of the print."
  1060. msgstr "Áramláskompenzálás a felső kéreg réteg nyomtatásánál."
  1061. #: /fdmprinter.def.json
  1062. msgctxt "prime_tower_flow description"
  1063. msgid "Flow compensation on prime tower lines."
  1064. msgstr "Áramláskompenzáció az előtorony vonalakon."
  1065. #: /fdmprinter.def.json
  1066. msgctxt "skirt_brim_material_flow description"
  1067. msgid "Flow compensation on skirt or brim lines."
  1068. msgstr "Áramláskompenzálás a Szoknya/perem nyomtatásánál."
  1069. #: /fdmprinter.def.json
  1070. msgctxt "support_bottom_material_flow description"
  1071. msgid "Flow compensation on support floor lines."
  1072. msgstr "Áramláskompenzálás a támasz alsó rétegének nyomtatásánál."
  1073. #: /fdmprinter.def.json
  1074. msgctxt "support_roof_material_flow description"
  1075. msgid "Flow compensation on support roof lines."
  1076. msgstr "Áramláskompenzálás a támasz felső rétegének nyomtatásánál."
  1077. #: /fdmprinter.def.json
  1078. msgctxt "support_material_flow description"
  1079. msgid "Flow compensation on support structure lines."
  1080. msgstr "Áramláskompenzálás a támasz nyomtatásánál."
  1081. #: /fdmprinter.def.json
  1082. msgctxt "wall_0_material_flow_layer_0 description"
  1083. msgid "Flow compensation on the outermost wall line of the first layer."
  1084. msgstr ""
  1085. #: /fdmprinter.def.json
  1086. msgctxt "wall_0_material_flow description"
  1087. msgid "Flow compensation on the outermost wall line."
  1088. msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál."
  1089. #: /fdmprinter.def.json
  1090. msgctxt "skin_material_flow description"
  1091. msgid "Flow compensation on top/bottom lines."
  1092. msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál."
  1093. #: /fdmprinter.def.json
  1094. msgctxt "wall_x_material_flow_layer_0 description"
  1095. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1096. msgstr ""
  1097. #: /fdmprinter.def.json
  1098. msgctxt "wall_x_material_flow description"
  1099. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1100. msgstr "Áramláskompnezáció minden falvonalon, kivéve a legkülsőbb falnál."
  1101. #: /fdmprinter.def.json
  1102. msgctxt "wall_material_flow description"
  1103. msgid "Flow compensation on wall lines."
  1104. msgstr "Áramláskompenzálás a fal vonalak nyomtatásánál."
  1105. #: /fdmprinter.def.json
  1106. msgctxt "wireframe_flow_connection description"
  1107. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  1108. msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik."
  1109. #: /fdmprinter.def.json
  1110. msgctxt "wireframe_flow_flat description"
  1111. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  1112. msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik."
  1113. #: /fdmprinter.def.json
  1114. msgctxt "material_flow description"
  1115. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1116. msgstr "Áramláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  1117. #: /fdmprinter.def.json
  1118. msgctxt "wireframe_flow description"
  1119. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  1120. msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik."
  1121. #: /fdmprinter.def.json
  1122. msgctxt "material_flush_purge_length label"
  1123. msgid "Flush Purge Length"
  1124. msgstr ""
  1125. #: /fdmprinter.def.json
  1126. msgctxt "material_flush_purge_speed label"
  1127. msgid "Flush Purge Speed"
  1128. msgstr ""
  1129. #: /fdmprinter.def.json
  1130. msgctxt "min_wall_line_width description"
  1131. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  1132. msgstr ""
  1133. #: /fdmprinter.def.json
  1134. msgctxt "z_seam_position option front"
  1135. msgid "Front"
  1136. msgstr "Előre"
  1137. #: /fdmprinter.def.json
  1138. msgctxt "z_seam_position option frontleft"
  1139. msgid "Front Left"
  1140. msgstr "Balra előre"
  1141. #: /fdmprinter.def.json
  1142. msgctxt "z_seam_position option frontright"
  1143. msgid "Front Right"
  1144. msgstr "Jobbra előre"
  1145. #: /fdmprinter.def.json
  1146. msgctxt "draft_shield_height_limitation option full"
  1147. msgid "Full"
  1148. msgstr "Teljes"
  1149. #: /fdmprinter.def.json
  1150. msgctxt "magic_fuzzy_skin_enabled label"
  1151. msgid "Fuzzy Skin"
  1152. msgstr "Rücskös felszín"
  1153. #: /fdmprinter.def.json
  1154. msgctxt "magic_fuzzy_skin_point_density label"
  1155. msgid "Fuzzy Skin Density"
  1156. msgstr "Rücsök sűrűség"
  1157. #: /fdmprinter.def.json
  1158. msgctxt "magic_fuzzy_skin_outside_only label"
  1159. msgid "Fuzzy Skin Outside Only"
  1160. msgstr ""
  1161. #: /fdmprinter.def.json
  1162. msgctxt "magic_fuzzy_skin_point_dist label"
  1163. msgid "Fuzzy Skin Point Distance"
  1164. msgstr "Rücsök távolság"
  1165. #: /fdmprinter.def.json
  1166. msgctxt "magic_fuzzy_skin_thickness label"
  1167. msgid "Fuzzy Skin Thickness"
  1168. msgstr "Rücsök vastagság"
  1169. #: /fdmprinter.def.json
  1170. msgctxt "machine_gcode_flavor label"
  1171. msgid "G-code Flavor"
  1172. msgstr "G-kód típus"
  1173. #: /fdmprinter.def.json
  1174. msgctxt "machine_end_gcode description"
  1175. msgid ""
  1176. "G-code commands to be executed at the very end - separated by \n"
  1177. "."
  1178. msgstr ""
  1179. "Olyan g-kód parancsok, amiket a nyomtatás legvégén kell végrehajtani \n"
  1180. " -al elválasztva."
  1181. #: /fdmprinter.def.json
  1182. msgctxt "machine_start_gcode description"
  1183. msgid ""
  1184. "G-code commands to be executed at the very start - separated by \n"
  1185. "."
  1186. msgstr ""
  1187. "Olyan g-kód parancsok, amiket a nyomtatás legelején kell végrehajtani \n"
  1188. " -al elválasztva."
  1189. #: /fdmprinter.def.json
  1190. msgctxt "material_guid description"
  1191. msgid "GUID of the material. This is set automatically."
  1192. msgstr ""
  1193. #: /fdmprinter.def.json
  1194. msgctxt "gantry_height label"
  1195. msgid "Gantry Height"
  1196. msgstr "Állványzat magasság"
  1197. #: /fdmprinter.def.json
  1198. msgctxt "support_enable label"
  1199. msgid "Generate Support"
  1200. msgstr "Támaszték készítés"
  1201. #: /fdmprinter.def.json
  1202. msgctxt "support_brim_enable description"
  1203. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  1204. msgstr "Generáljon egy peremet az első rétegben a támaszok kitöltéseiben. Ezt a karimát a támaszok alá, és nem körülötte nyomtatják. Ennek a beállításnak a bekapcsolása növelhetjük a támaszok tapadását az tálcához."
  1205. #: /fdmprinter.def.json
  1206. msgctxt "support_interface_enable description"
  1207. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  1208. msgstr "Egy sűrű felületet generál a modell és a támasz közé. Ez egy héjat hoz létre a támasz tetején, amelyre a modell jól nyomtatódik, vagy az alján, ahová a támasz épülni fog."
  1209. #: /fdmprinter.def.json
  1210. msgctxt "support_bottom_enable description"
  1211. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  1212. msgstr "Egy sűrű felület generálása a támasz aljára és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé."
  1213. #: /fdmprinter.def.json
  1214. msgctxt "support_roof_enable description"
  1215. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  1216. msgstr "Egy sűrű felület generálása a támasz teteje és a modell között. Ez egy átmeneti csatlakozási felületet fog teremteni a modell és a támasz közé."
  1217. #: /fdmprinter.def.json
  1218. msgctxt "support_enable description"
  1219. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1220. msgstr "Olyan szerkezeti részeket készít a nyomtatványhoz, ami segít alátámasztani azokat a részeket, amik a levegőben lógnak, vagy kinyúlnak a tárgyból.E nélkül ezeket a részeket nem lehet kinyomtatni, mivel nincs mire építenie az adott részt a nyomtatónak."
  1221. #: /fdmprinter.def.json
  1222. msgctxt "machine_buildplate_type option glass"
  1223. msgid "Glass"
  1224. msgstr "Üveg"
  1225. #: /fdmprinter.def.json
  1226. msgctxt "ironing_enabled description"
  1227. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1228. msgstr "A felső felületeken a fej mégegyszer átmegy, miközben egy nagyon kis mennyiségű alapanyagot extrudál. Ennek a célja az, hogy a tárgy teteje még jobban összeolvad, simábbá válik. A fúvóka kamrában a nyomás magasan van tartva, így a felszínen lévő gyűrődéseket anyaggal tölti fel."
  1229. #: /fdmprinter.def.json
  1230. msgctxt "gradual_infill_step_height label"
  1231. msgid "Gradual Infill Step Height"
  1232. msgstr "Fokozatos kitöltési lépésmagasság"
  1233. #: /fdmprinter.def.json
  1234. msgctxt "gradual_infill_steps label"
  1235. msgid "Gradual Infill Steps"
  1236. msgstr "Fokozatos kitöltési lépések"
  1237. #: /fdmprinter.def.json
  1238. msgctxt "gradual_support_infill_step_height label"
  1239. msgid "Gradual Support Infill Step Height"
  1240. msgstr "Fokozatos támaszkitöltési lépésmagasság"
  1241. #: /fdmprinter.def.json
  1242. msgctxt "gradual_support_infill_steps label"
  1243. msgid "Gradual Support Infill Steps"
  1244. msgstr "Fokozatos támasz kitöltési lépések"
  1245. #: /fdmprinter.def.json
  1246. msgctxt "infill_pattern option grid"
  1247. msgid "Grid"
  1248. msgstr "Rács"
  1249. #: /fdmprinter.def.json
  1250. msgctxt "support_bottom_pattern option grid"
  1251. msgid "Grid"
  1252. msgstr "Rács"
  1253. #: /fdmprinter.def.json
  1254. msgctxt "support_interface_pattern option grid"
  1255. msgid "Grid"
  1256. msgstr "Rács"
  1257. #: /fdmprinter.def.json
  1258. msgctxt "support_pattern option grid"
  1259. msgid "Grid"
  1260. msgstr "Rács"
  1261. #: /fdmprinter.def.json
  1262. msgctxt "support_roof_pattern option grid"
  1263. msgid "Grid"
  1264. msgstr "Rács"
  1265. #: /fdmprinter.def.json
  1266. msgctxt "machine_gcode_flavor option Griffin"
  1267. msgid "Griffin"
  1268. msgstr "Griffin"
  1269. #: /fdmprinter.def.json
  1270. msgctxt "infill_pattern option gyroid"
  1271. msgid "Gyroid"
  1272. msgstr "Gyroid"
  1273. #: /fdmprinter.def.json
  1274. msgctxt "support_pattern option gyroid"
  1275. msgid "Gyroid"
  1276. msgstr "Gyroid"
  1277. #: /fdmprinter.def.json
  1278. msgctxt "machine_heated_build_volume label"
  1279. msgid "Has Build Volume Temperature Stabilization"
  1280. msgstr "Van építési tér hőmérséklet szabályzás"
  1281. #: /fdmprinter.def.json
  1282. msgctxt "machine_heated_bed label"
  1283. msgid "Has Heated Build Plate"
  1284. msgstr "Van tárgyasztal fűtés"
  1285. #: /fdmprinter.def.json
  1286. msgctxt "machine_nozzle_heat_up_speed label"
  1287. msgid "Heat Up Speed"
  1288. msgstr "Felfűtési sebesség"
  1289. #: /fdmprinter.def.json
  1290. msgctxt "machine_heat_zone_length label"
  1291. msgid "Heat Zone Length"
  1292. msgstr "Olvadókamra hossza"
  1293. #: /fdmprinter.def.json
  1294. msgctxt "draft_shield_height description"
  1295. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1296. msgstr "A huzatpajzs magassága. Csak eddig a magasságig fogja a pajzsot nyomtatni."
  1297. #: /fdmprinter.def.json
  1298. msgctxt "z_seam_corner option z_seam_corner_inner"
  1299. msgid "Hide Seam"
  1300. msgstr "Varrat rejtés"
  1301. #: /fdmprinter.def.json
  1302. msgctxt "z_seam_corner option z_seam_corner_any"
  1303. msgid "Hide or Expose Seam"
  1304. msgstr "Külső, belső varrat"
  1305. #: /fdmprinter.def.json
  1306. msgctxt "hole_xy_offset label"
  1307. msgid "Hole Horizontal Expansion"
  1308. msgstr ""
  1309. #: /fdmprinter.def.json
  1310. msgctxt "small_hole_max_size description"
  1311. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1312. msgstr "Az ennél kisebb átmérőjű lyukakat és részek körvonalait a Kis funkciósebesség használatával nyomtatják ki."
  1313. #: /fdmprinter.def.json
  1314. msgctxt "xy_offset label"
  1315. msgid "Horizontal Expansion"
  1316. msgstr "Vízszintes kiegészítés"
  1317. #: /fdmprinter.def.json
  1318. msgctxt "material_shrinkage_percentage_xy label"
  1319. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1320. msgstr ""
  1321. #: /fdmprinter.def.json
  1322. msgctxt "support_tree_branch_distance description"
  1323. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  1324. msgstr "Azt adja meg, hogy milyen messze kell lenniük az ágaknak, mikor a modellt érintik. Ha a távolság kicsi, a ta támasza több ponton is megérinti a modellt, ami jobb alátámasztást ad, de nehezebb eltávolítani majd a támaszt utólag."
  1325. #: /fdmprinter.def.json
  1326. msgctxt "material_break_preparation_retracted_position description"
  1327. msgid "How far the filament can be stretched before it breaks, while heated."
  1328. msgstr "Mennyire húzható ki a szál melegítés közben, szakadás nélkül."
  1329. #: /fdmprinter.def.json
  1330. msgctxt "material_anti_ooze_retracted_position description"
  1331. msgid "How far the material needs to be retracted before it stops oozing."
  1332. msgstr "Mennyire kell visszahúzni a szálat, hogy az anyagszivárgás leálljon."
  1333. #: /fdmprinter.def.json
  1334. msgctxt "flow_rate_extrusion_offset_factor description"
  1335. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  1336. msgstr ""
  1337. #: /fdmprinter.def.json
  1338. msgctxt "material_break_retracted_position description"
  1339. msgid "How far to retract the filament in order to break it cleanly."
  1340. msgstr "Mennyire kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon."
  1341. #: /fdmprinter.def.json
  1342. msgctxt "material_break_preparation_speed description"
  1343. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1344. msgstr "Milyen gyorsan kell visszahúzni a szálat, mielőtt az megszakadna."
  1345. #: /fdmprinter.def.json
  1346. msgctxt "material_anti_ooze_retraction_speed description"
  1347. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1348. msgstr "Milyen gyorsan kell visszahúzni a szálat, hogy meggátoljuk a szivárgást."
  1349. #: /fdmprinter.def.json
  1350. msgctxt "material_end_of_filament_purge_speed description"
  1351. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1352. msgstr ""
  1353. #: /fdmprinter.def.json
  1354. msgctxt "material_flush_purge_speed description"
  1355. msgid "How fast to prime the material after switching to a different material."
  1356. msgstr ""
  1357. #: /fdmprinter.def.json
  1358. msgctxt "material_maximum_park_duration description"
  1359. msgid "How long the material can be kept out of dry storage safely."
  1360. msgstr ""
  1361. #: /fdmprinter.def.json
  1362. msgctxt "machine_steps_per_mm_x description"
  1363. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1364. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen X irányban."
  1365. #: /fdmprinter.def.json
  1366. msgctxt "machine_steps_per_mm_y description"
  1367. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1368. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Y irányban."
  1369. #: /fdmprinter.def.json
  1370. msgctxt "machine_steps_per_mm_z description"
  1371. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1372. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Z irányban."
  1373. #: /fdmprinter.def.json
  1374. msgctxt "machine_steps_per_mm_e description"
  1375. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1376. msgstr ""
  1377. #: /fdmprinter.def.json
  1378. msgctxt "material_end_of_filament_purge_length description"
  1379. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1380. msgstr ""
  1381. #: /fdmprinter.def.json
  1382. msgctxt "material_flush_purge_length description"
  1383. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1384. msgstr ""
  1385. #: /fdmprinter.def.json
  1386. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1387. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  1388. msgstr ""
  1389. #: /fdmprinter.def.json
  1390. msgctxt "bridge_skin_support_threshold description"
  1391. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  1392. msgstr "Ha a felületi régió területe kevesebb, mint ez a megadott százalékos érték, nyomtassa a híd beállításokkal, egyébként normál felületi beállításokkal nyomtasson."
  1393. #: /fdmprinter.def.json
  1394. msgctxt "bridge_enable_more_layers description"
  1395. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  1396. msgstr "Ha engedélyezve van ez az opció, akkor a híd második és harmadik rétegét is a híd beállításával nyomtatja ki. Egyébként ezek a rétgeke már a normál beállítással nyomtatódnának ki."
  1397. #: /fdmprinter.def.json
  1398. msgctxt "wall_transition_filter_distance description"
  1399. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  1400. msgstr ""
  1401. #: /fdmprinter.def.json
  1402. msgctxt "raft_margin description"
  1403. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1404. msgstr "Ha az extra margót engedélyezzük, akkor a modell alá nyomtatott tutajt ki vogja egészíteni, és bővíteni kifelé irányban. Ez egy erősebb tutajt fog létrehozni, viszont több alapanyagot igényel, és csökkenti a használható nyomtatási területet."
  1405. #: /fdmprinter.def.json
  1406. msgctxt "meshfix_union_all description"
  1407. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  1408. msgstr "Figyelmen kívül hagyja a hálóban lévő, átfedő térfogatokból származó belső geometriai alakzatokat, és a szintet egyben nyomtatja ki. Ez a nem kívánt belső üregek eltűnését eredményezheti."
  1409. #: /fdmprinter.def.json
  1410. msgctxt "material_bed_temp_prepend label"
  1411. msgid "Include Build Plate Temperature"
  1412. msgstr "Tartalmazza a tárgyasztal hőmérsékleteket"
  1413. #: /fdmprinter.def.json
  1414. msgctxt "material_print_temp_prepend label"
  1415. msgid "Include Material Temperatures"
  1416. msgstr "Tartalmazza az anyaghőmérsékleteket"
  1417. #: /fdmprinter.def.json
  1418. msgctxt "slicing_tolerance option inclusive"
  1419. msgid "Inclusive"
  1420. msgstr "Befoglaló"
  1421. #: /fdmprinter.def.json
  1422. msgctxt "infill description"
  1423. msgid "Infill"
  1424. msgstr "Kitöltés"
  1425. #: /fdmprinter.def.json
  1426. msgctxt "infill label"
  1427. msgid "Infill"
  1428. msgstr "Kitöltés"
  1429. #: /fdmprinter.def.json
  1430. msgctxt "acceleration_infill label"
  1431. msgid "Infill Acceleration"
  1432. msgstr "Kitöltés gyorsulás"
  1433. #: /fdmprinter.def.json
  1434. msgctxt "infill_before_walls label"
  1435. msgid "Infill Before Walls"
  1436. msgstr "Kitöltés a falak előtt"
  1437. #: /fdmprinter.def.json
  1438. msgctxt "infill_sparse_density label"
  1439. msgid "Infill Density"
  1440. msgstr "Kitöltési sűrűség"
  1441. #: /fdmprinter.def.json
  1442. msgctxt "infill_extruder_nr label"
  1443. msgid "Infill Extruder"
  1444. msgstr "Kitöltő extruder"
  1445. #: /fdmprinter.def.json
  1446. msgctxt "infill_material_flow label"
  1447. msgid "Infill Flow"
  1448. msgstr "Kitöltési áramlás"
  1449. #: /fdmprinter.def.json
  1450. msgctxt "jerk_infill label"
  1451. msgid "Infill Jerk"
  1452. msgstr "Kitöltés löket"
  1453. #: /fdmprinter.def.json
  1454. msgctxt "infill_sparse_thickness label"
  1455. msgid "Infill Layer Thickness"
  1456. msgstr "Kitöltő réteg vastagság"
  1457. #: /fdmprinter.def.json
  1458. msgctxt "infill_angles label"
  1459. msgid "Infill Line Directions"
  1460. msgstr "Kitöltési vonal irányok"
  1461. #: /fdmprinter.def.json
  1462. msgctxt "infill_line_distance label"
  1463. msgid "Infill Line Distance"
  1464. msgstr "Kitöltő vonal távolság"
  1465. #: /fdmprinter.def.json
  1466. msgctxt "infill_multiplier label"
  1467. msgid "Infill Line Multiplier"
  1468. msgstr "Kitöltési sor szorzó"
  1469. #: /fdmprinter.def.json
  1470. msgctxt "infill_line_width label"
  1471. msgid "Infill Line Width"
  1472. msgstr "Kitöltési vonalszélesség"
  1473. #: /fdmprinter.def.json
  1474. msgctxt "infill_mesh label"
  1475. msgid "Infill Mesh"
  1476. msgstr "Kitöltés háló"
  1477. #: /fdmprinter.def.json
  1478. msgctxt "infill_support_angle label"
  1479. msgid "Infill Overhang Angle"
  1480. msgstr "Kitöltés túlnyúlási szög"
  1481. #: /fdmprinter.def.json
  1482. msgctxt "infill_overlap_mm label"
  1483. msgid "Infill Overlap"
  1484. msgstr "Kitöltési átfedés"
  1485. #: /fdmprinter.def.json
  1486. msgctxt "infill_overlap label"
  1487. msgid "Infill Overlap Percentage"
  1488. msgstr "Kitöltési átfedés aránya"
  1489. #: /fdmprinter.def.json
  1490. msgctxt "infill_pattern label"
  1491. msgid "Infill Pattern"
  1492. msgstr "Kitöltési Minta"
  1493. #: /fdmprinter.def.json
  1494. msgctxt "speed_infill label"
  1495. msgid "Infill Speed"
  1496. msgstr "Kitöltési sebesség"
  1497. #: /fdmprinter.def.json
  1498. msgctxt "infill_support_enabled label"
  1499. msgid "Infill Support"
  1500. msgstr "Kitöltés támaszként"
  1501. #: /fdmprinter.def.json
  1502. msgctxt "infill_enable_travel_optimization label"
  1503. msgid "Infill Travel Optimization"
  1504. msgstr "Kitöltési utazás optimalizáció"
  1505. #: /fdmprinter.def.json
  1506. msgctxt "infill_wipe_dist label"
  1507. msgid "Infill Wipe Distance"
  1508. msgstr "Kitöltés törlési távolság"
  1509. #: /fdmprinter.def.json
  1510. msgctxt "infill_offset_x label"
  1511. msgid "Infill X Offset"
  1512. msgstr "Kitöltés X eltolás"
  1513. #: /fdmprinter.def.json
  1514. msgctxt "infill_offset_y label"
  1515. msgid "Infill Y Offset"
  1516. msgstr "Kitöltés Y eltolás"
  1517. #: /fdmprinter.def.json
  1518. msgctxt "initial_bottom_layers label"
  1519. msgid "Initial Bottom Layers"
  1520. msgstr ""
  1521. #: /fdmprinter.def.json
  1522. msgctxt "cool_fan_speed_0 label"
  1523. msgid "Initial Fan Speed"
  1524. msgstr "Kezdő hűtési sebesség"
  1525. #: /fdmprinter.def.json
  1526. msgctxt "acceleration_layer_0 label"
  1527. msgid "Initial Layer Acceleration"
  1528. msgstr "Kezdő réteg gyorsulás"
  1529. #: /fdmprinter.def.json
  1530. msgctxt "skin_material_flow_layer_0 label"
  1531. msgid "Initial Layer Bottom Flow"
  1532. msgstr ""
  1533. #: /fdmprinter.def.json
  1534. msgctxt "material_flow_layer_0 label"
  1535. msgid "Initial Layer Flow"
  1536. msgstr "Kezdő réteg áramlás"
  1537. #: /fdmprinter.def.json
  1538. msgctxt "layer_height_0 label"
  1539. msgid "Initial Layer Height"
  1540. msgstr "Kezdő réteg magasság"
  1541. #: /fdmprinter.def.json
  1542. msgctxt "xy_offset_layer_0 label"
  1543. msgid "Initial Layer Horizontal Expansion"
  1544. msgstr "Kezdő réteg vízszintes kiegészítése"
  1545. #: /fdmprinter.def.json
  1546. msgctxt "wall_x_material_flow_layer_0 label"
  1547. msgid "Initial Layer Inner Wall Flow"
  1548. msgstr ""
  1549. #: /fdmprinter.def.json
  1550. msgctxt "jerk_layer_0 label"
  1551. msgid "Initial Layer Jerk"
  1552. msgstr "Kezdő réteg löket"
  1553. #: /fdmprinter.def.json
  1554. msgctxt "initial_layer_line_width_factor label"
  1555. msgid "Initial Layer Line Width"
  1556. msgstr "Kezdő réteg vonalszélesség"
  1557. #: /fdmprinter.def.json
  1558. msgctxt "wall_0_material_flow_layer_0 label"
  1559. msgid "Initial Layer Outer Wall Flow"
  1560. msgstr ""
  1561. #: /fdmprinter.def.json
  1562. msgctxt "acceleration_print_layer_0 label"
  1563. msgid "Initial Layer Print Acceleration"
  1564. msgstr "Kezdő réteg nyomtatási gyorsulás"
  1565. #: /fdmprinter.def.json
  1566. msgctxt "jerk_print_layer_0 label"
  1567. msgid "Initial Layer Print Jerk"
  1568. msgstr "Kezdő réteg nyomtatási löket"
  1569. #: /fdmprinter.def.json
  1570. msgctxt "speed_print_layer_0 label"
  1571. msgid "Initial Layer Print Speed"
  1572. msgstr "Kezdő réteg nyomtatási sebessége"
  1573. #: /fdmprinter.def.json
  1574. msgctxt "speed_layer_0 label"
  1575. msgid "Initial Layer Speed"
  1576. msgstr "Kezdő réteg sebessége"
  1577. #: /fdmprinter.def.json
  1578. msgctxt "support_initial_layer_line_distance label"
  1579. msgid "Initial Layer Support Line Distance"
  1580. msgstr "Kezdő réteg támasz vonal távolság"
  1581. #: /fdmprinter.def.json
  1582. msgctxt "acceleration_travel_layer_0 label"
  1583. msgid "Initial Layer Travel Acceleration"
  1584. msgstr "Kezdő réteg utazási gyorsulás"
  1585. #: /fdmprinter.def.json
  1586. msgctxt "jerk_travel_layer_0 label"
  1587. msgid "Initial Layer Travel Jerk"
  1588. msgstr "Kezdő réteg utazás löket"
  1589. #: /fdmprinter.def.json
  1590. msgctxt "speed_travel_layer_0 label"
  1591. msgid "Initial Layer Travel Speed"
  1592. msgstr "Kezdő réteg utazási sebessége"
  1593. #: /fdmprinter.def.json
  1594. msgctxt "layer_0_z_overlap label"
  1595. msgid "Initial Layer Z Overlap"
  1596. msgstr "Első réteg Z átfedés"
  1597. #: /fdmprinter.def.json
  1598. msgctxt "material_initial_print_temperature label"
  1599. msgid "Initial Printing Temperature"
  1600. msgstr "Kezdeti nyomtatási hőmérséklet"
  1601. #: /fdmprinter.def.json
  1602. msgctxt "acceleration_wall_x label"
  1603. msgid "Inner Wall Acceleration"
  1604. msgstr "Belső fal gyorsulás"
  1605. #: /fdmprinter.def.json
  1606. msgctxt "wall_x_extruder_nr label"
  1607. msgid "Inner Wall Extruder"
  1608. msgstr "Belső fali extruder"
  1609. #: /fdmprinter.def.json
  1610. msgctxt "jerk_wall_x label"
  1611. msgid "Inner Wall Jerk"
  1612. msgstr "Belső fal löket"
  1613. #: /fdmprinter.def.json
  1614. msgctxt "speed_wall_x label"
  1615. msgid "Inner Wall Speed"
  1616. msgstr "Belső fal sebesség"
  1617. #: /fdmprinter.def.json
  1618. msgctxt "wall_x_material_flow label"
  1619. msgid "Inner Wall(s) Flow"
  1620. msgstr "Belső fal)akÖ áramlása"
  1621. #: /fdmprinter.def.json
  1622. msgctxt "wall_line_width_x label"
  1623. msgid "Inner Wall(s) Line Width"
  1624. msgstr "Belső fal(-ak) vonalszélessége"
  1625. #: /fdmprinter.def.json
  1626. msgctxt "wall_0_inset description"
  1627. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  1628. msgstr "Eltolás a külső fal útvonalára. Ha a külső fal kisebb, mint a fúvóka, és a belső falak után nyomtatódik, akkor ezt az eltolást használjuk, hogy a fúvóka furata a belső falakon nyúljon túl, a modell külseje helyett."
  1629. #: /fdmprinter.def.json
  1630. msgctxt "inset_direction option inside_out"
  1631. msgid "Inside To Outside"
  1632. msgstr ""
  1633. #: /fdmprinter.def.json
  1634. msgctxt "ironing_only_highest_layer label"
  1635. msgid "Iron Only Highest Layer"
  1636. msgstr "Vasalás csak a legfelső rétegen"
  1637. #: /fdmprinter.def.json
  1638. msgctxt "acceleration_ironing label"
  1639. msgid "Ironing Acceleration"
  1640. msgstr "Vasalási gyorsulás"
  1641. #: /fdmprinter.def.json
  1642. msgctxt "ironing_flow label"
  1643. msgid "Ironing Flow"
  1644. msgstr "Vasalási adagolás"
  1645. #: /fdmprinter.def.json
  1646. msgctxt "ironing_inset label"
  1647. msgid "Ironing Inset"
  1648. msgstr "Vasalás behúzás"
  1649. #: /fdmprinter.def.json
  1650. msgctxt "jerk_ironing label"
  1651. msgid "Ironing Jerk"
  1652. msgstr "Vasalási löket"
  1653. #: /fdmprinter.def.json
  1654. msgctxt "ironing_line_spacing label"
  1655. msgid "Ironing Line Spacing"
  1656. msgstr "Vasalási távolság"
  1657. #: /fdmprinter.def.json
  1658. msgctxt "ironing_pattern label"
  1659. msgid "Ironing Pattern"
  1660. msgstr "Vasalási minta"
  1661. #: /fdmprinter.def.json
  1662. msgctxt "speed_ironing label"
  1663. msgid "Ironing Speed"
  1664. msgstr "Vasalási sebesség"
  1665. #: /fdmprinter.def.json
  1666. msgctxt "machine_center_is_zero label"
  1667. msgid "Is Center Origin"
  1668. msgstr "Origó a középpontban"
  1669. #: /fdmprinter.def.json
  1670. msgctxt "material_crystallinity description"
  1671. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1672. msgstr "Az anyag olyan típusú-e, ami melegítve tiszta módon, kikristályosodva bomlik le, vagy olyan, ami nem kristályos, összefonódott polimer láncokat hoz létre?"
  1673. #: /fdmprinter.def.json
  1674. msgctxt "magic_fuzzy_skin_outside_only description"
  1675. msgid "Jitter only the parts' outlines and not the parts' holes."
  1676. msgstr ""
  1677. #: /fdmprinter.def.json
  1678. msgctxt "meshfix_keep_open_polygons label"
  1679. msgid "Keep Disconnected Faces"
  1680. msgstr "Nyílt poligonok megtartása"
  1681. #: /fdmprinter.def.json
  1682. msgctxt "wireframe_strategy option knot"
  1683. msgid "Knot"
  1684. msgstr "Csomó"
  1685. #: /fdmprinter.def.json
  1686. msgctxt "layer_height label"
  1687. msgid "Layer Height"
  1688. msgstr "Réteg magasság"
  1689. #: /fdmprinter.def.json
  1690. msgctxt "layer_start_x label"
  1691. msgid "Layer Start X"
  1692. msgstr "Réteg X kezdőpont"
  1693. #: /fdmprinter.def.json
  1694. msgctxt "layer_start_y label"
  1695. msgid "Layer Start Y"
  1696. msgstr "Réteg Y kezdőpont"
  1697. #: /fdmprinter.def.json
  1698. msgctxt "raft_base_thickness description"
  1699. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1700. msgstr "Az alap tutajréteg rétegvastagsága. Ennek vastag rétegnek kell lennie, mert erősen tapadnia kell a nyomtató tárgyasztalához."
  1701. #: /fdmprinter.def.json
  1702. msgctxt "raft_interface_thickness description"
  1703. msgid "Layer thickness of the middle raft layer."
  1704. msgstr "A középső tutajréteg rétegvastagsága."
  1705. #: /fdmprinter.def.json
  1706. msgctxt "raft_surface_thickness description"
  1707. msgid "Layer thickness of the top raft layers."
  1708. msgstr "Azoknak a tutajrétegeknek a vastagsága, ami a tutaj tetején van."
  1709. #: /fdmprinter.def.json
  1710. msgctxt "support_skip_zag_per_mm description"
  1711. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1712. msgstr "A támaszvonalak között ennyi mm -ként hagy el egy vonalat, a könnyebb törhetőség miatt."
  1713. #: /fdmprinter.def.json
  1714. msgctxt "z_seam_position option left"
  1715. msgid "Left"
  1716. msgstr "Balra"
  1717. #: /fdmprinter.def.json
  1718. msgctxt "cool_lift_head label"
  1719. msgid "Lift Head"
  1720. msgstr "Fej emelés"
  1721. #: /fdmprinter.def.json
  1722. msgctxt "infill_pattern option lightning"
  1723. msgid "Lightning"
  1724. msgstr ""
  1725. #: /fdmprinter.def.json
  1726. msgctxt "lightning_infill_overhang_angle label"
  1727. msgid "Lightning Infill Overhang Angle"
  1728. msgstr ""
  1729. #: /fdmprinter.def.json
  1730. msgctxt "lightning_infill_prune_angle label"
  1731. msgid "Lightning Infill Prune Angle"
  1732. msgstr ""
  1733. #: /fdmprinter.def.json
  1734. msgctxt "lightning_infill_straightening_angle label"
  1735. msgid "Lightning Infill Straightening Angle"
  1736. msgstr ""
  1737. #: /fdmprinter.def.json
  1738. msgctxt "lightning_infill_support_angle label"
  1739. msgid "Lightning Infill Support Angle"
  1740. msgstr ""
  1741. #: /fdmprinter.def.json
  1742. msgctxt "limit_support_retractions label"
  1743. msgid "Limit Support Retractions"
  1744. msgstr "Támasz visszahúzás korlátozása"
  1745. #: /fdmprinter.def.json
  1746. msgctxt "cutting_mesh description"
  1747. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  1748. msgstr "Korlátozza ennek a hálónak a térfogatát más hálókon belül. Ezt fel tudjuk használni egy háló nyomtatásának bizonyos területeire, különböző beállításokkal, vagy akát teljesen eltérő extruderrel."
  1749. #: /fdmprinter.def.json
  1750. msgctxt "draft_shield_height_limitation option limited"
  1751. msgid "Limited"
  1752. msgstr "Részleges"
  1753. #: /fdmprinter.def.json
  1754. msgctxt "line_width label"
  1755. msgid "Line Width"
  1756. msgstr "Vonalvastagság"
  1757. #: /fdmprinter.def.json
  1758. msgctxt "infill_pattern option lines"
  1759. msgid "Lines"
  1760. msgstr "Vonalak"
  1761. #: /fdmprinter.def.json
  1762. msgctxt "roofing_pattern option lines"
  1763. msgid "Lines"
  1764. msgstr "Vonalak"
  1765. #: /fdmprinter.def.json
  1766. msgctxt "support_bottom_pattern option lines"
  1767. msgid "Lines"
  1768. msgstr "Vonalak"
  1769. #: /fdmprinter.def.json
  1770. msgctxt "support_interface_pattern option lines"
  1771. msgid "Lines"
  1772. msgstr "Vonalak"
  1773. #: /fdmprinter.def.json
  1774. msgctxt "support_pattern option lines"
  1775. msgid "Lines"
  1776. msgstr "Vonalak"
  1777. #: /fdmprinter.def.json
  1778. msgctxt "support_roof_pattern option lines"
  1779. msgid "Lines"
  1780. msgstr "Vonalak"
  1781. #: /fdmprinter.def.json
  1782. msgctxt "top_bottom_pattern option lines"
  1783. msgid "Lines"
  1784. msgstr "Vonalas"
  1785. #: /fdmprinter.def.json
  1786. msgctxt "top_bottom_pattern_0 option lines"
  1787. msgid "Lines"
  1788. msgstr "Vonalas"
  1789. #: /fdmprinter.def.json
  1790. msgctxt "machine_gcode_flavor option MACH3"
  1791. msgid "Mach3"
  1792. msgstr "Mach3"
  1793. #: /fdmprinter.def.json
  1794. msgctxt "machine_settings label"
  1795. msgid "Machine"
  1796. msgstr "Gép"
  1797. #: /fdmprinter.def.json
  1798. msgctxt "machine_depth label"
  1799. msgid "Machine Depth"
  1800. msgstr "Nyomtatási mélység"
  1801. #: /fdmprinter.def.json
  1802. msgctxt "machine_head_with_fans_polygon label"
  1803. msgid "Machine Head & Fan Polygon"
  1804. msgstr "A nyomtatófej és ventillátor ábrázolása"
  1805. #: /fdmprinter.def.json
  1806. msgctxt "machine_height label"
  1807. msgid "Machine Height"
  1808. msgstr "Nyomtatási magasság"
  1809. #: /fdmprinter.def.json
  1810. msgctxt "machine_name label"
  1811. msgid "Machine Type"
  1812. msgstr "Géptípus"
  1813. #: /fdmprinter.def.json
  1814. msgctxt "machine_width label"
  1815. msgid "Machine Width"
  1816. msgstr "Nyomtatási szélesség"
  1817. #: /fdmprinter.def.json
  1818. msgctxt "machine_settings description"
  1819. msgid "Machine specific settings"
  1820. msgstr "Gép specifikus beállítások"
  1821. #: /fdmprinter.def.json
  1822. msgctxt "conical_overhang_enabled label"
  1823. msgid "Make Overhang Printable"
  1824. msgstr "Nyomtatható túlnyúlások"
  1825. #: /fdmprinter.def.json
  1826. msgctxt "multiple_mesh_overlap description"
  1827. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1828. msgstr "Egyesíti az egymással érintkező hálórészeket. Ez jobb kötést hoz létre a testben."
  1829. #: /fdmprinter.def.json
  1830. msgctxt "support_conical_enabled description"
  1831. msgid "Make support areas smaller at the bottom than at the overhang."
  1832. msgstr "A támaszok alja kisebb méretű lesz, mint az alátámasztandó rész."
  1833. #: /fdmprinter.def.json
  1834. msgctxt "support_mesh_drop_down description"
  1835. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1836. msgstr "Készítsen mindenütt támasztást a támaszháló alatt úgy, hogy ne lehessen alátámasztatlan kinyúlás a támaszhálóban."
  1837. #: /fdmprinter.def.json
  1838. msgctxt "extruder_prime_pos_abs description"
  1839. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1840. msgstr "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson."
  1841. #: /fdmprinter.def.json
  1842. msgctxt "layer_0_z_overlap description"
  1843. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  1844. msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás."
  1845. #: /fdmprinter.def.json
  1846. msgctxt "meshfix description"
  1847. msgid "Make the meshes more suited for 3D printing."
  1848. msgstr ""
  1849. #: /fdmprinter.def.json
  1850. msgctxt "machine_gcode_flavor option Makerbot"
  1851. msgid "Makerbot"
  1852. msgstr "Makerbot"
  1853. #: /fdmprinter.def.json
  1854. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1855. msgid "Marlin"
  1856. msgstr "Marlin"
  1857. #: /fdmprinter.def.json
  1858. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1859. msgid "Marlin (Volumetric)"
  1860. msgstr "Marlin (Térfogat)"
  1861. #: /fdmprinter.def.json
  1862. msgctxt "material description"
  1863. msgid "Material"
  1864. msgstr "Alapanyag"
  1865. #: /fdmprinter.def.json
  1866. msgctxt "material label"
  1867. msgid "Material"
  1868. msgstr "Alapanyag"
  1869. #: /fdmprinter.def.json
  1870. msgctxt "material_guid label"
  1871. msgid "Material GUID"
  1872. msgstr "Alapanyag GUID"
  1873. #: /fdmprinter.def.json
  1874. msgctxt "max_extrusion_before_wipe label"
  1875. msgid "Material Volume Between Wipes"
  1876. msgstr "Anyagmennyiség törlések között"
  1877. #: /fdmprinter.def.json
  1878. msgctxt "retraction_combing_max_distance label"
  1879. msgid "Max Comb Distance With No Retract"
  1880. msgstr "Maximum fésű táv visszahúzás nélkül"
  1881. #: /fdmprinter.def.json
  1882. msgctxt "machine_max_acceleration_x label"
  1883. msgid "Maximum Acceleration X"
  1884. msgstr "Maximális X gyorsulás"
  1885. #: /fdmprinter.def.json
  1886. msgctxt "machine_max_acceleration_y label"
  1887. msgid "Maximum Acceleration Y"
  1888. msgstr "Maximális Y gyorsulás"
  1889. #: /fdmprinter.def.json
  1890. msgctxt "machine_max_acceleration_z label"
  1891. msgid "Maximum Acceleration Z"
  1892. msgstr "Maximális Z gyorsulás"
  1893. #: /fdmprinter.def.json
  1894. msgctxt "meshfix_maximum_deviation label"
  1895. msgid "Maximum Deviation"
  1896. msgstr "Maximális eltérés"
  1897. #: /fdmprinter.def.json
  1898. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1899. msgid "Maximum Extrusion Area Deviation"
  1900. msgstr ""
  1901. #: /fdmprinter.def.json
  1902. msgctxt "cool_fan_speed_max label"
  1903. msgid "Maximum Fan Speed"
  1904. msgstr "Maximális hűtési sebesség"
  1905. #: /fdmprinter.def.json
  1906. msgctxt "machine_max_acceleration_e label"
  1907. msgid "Maximum Filament Acceleration"
  1908. msgstr "Maximális E gyorsulás"
  1909. #: /fdmprinter.def.json
  1910. msgctxt "conical_overhang_angle label"
  1911. msgid "Maximum Model Angle"
  1912. msgstr "Maximális túlnyúlási szög"
  1913. #: /fdmprinter.def.json
  1914. msgctxt "conical_overhang_hole_size label"
  1915. msgid "Maximum Overhang Hole Area"
  1916. msgstr ""
  1917. #: /fdmprinter.def.json
  1918. msgctxt "material_maximum_park_duration label"
  1919. msgid "Maximum Park Duration"
  1920. msgstr ""
  1921. #: /fdmprinter.def.json
  1922. msgctxt "meshfix_maximum_resolution label"
  1923. msgid "Maximum Resolution"
  1924. msgstr "Maximális felbontás"
  1925. #: /fdmprinter.def.json
  1926. msgctxt "retraction_count_max label"
  1927. msgid "Maximum Retraction Count"
  1928. msgstr "Visszahúzások maximális száma"
  1929. #: /fdmprinter.def.json
  1930. msgctxt "max_skin_angle_for_expansion label"
  1931. msgid "Maximum Skin Angle for Expansion"
  1932. msgstr "A kéreg bővítés maximális szöge"
  1933. #: /fdmprinter.def.json
  1934. msgctxt "machine_max_feedrate_e label"
  1935. msgid "Maximum Speed E"
  1936. msgstr ""
  1937. #: /fdmprinter.def.json
  1938. msgctxt "machine_max_feedrate_x label"
  1939. msgid "Maximum Speed X"
  1940. msgstr "Maximum X sebesség"
  1941. #: /fdmprinter.def.json
  1942. msgctxt "machine_max_feedrate_y label"
  1943. msgid "Maximum Speed Y"
  1944. msgstr "Maximum Y sebesség"
  1945. #: /fdmprinter.def.json
  1946. msgctxt "machine_max_feedrate_z label"
  1947. msgid "Maximum Speed Z"
  1948. msgstr "Maximum Z sebesség"
  1949. #: /fdmprinter.def.json
  1950. msgctxt "support_tower_maximum_supported_diameter label"
  1951. msgid "Maximum Tower-Supported Diameter"
  1952. msgstr "Maximális toronnyal támasztott átmérő"
  1953. #: /fdmprinter.def.json
  1954. msgctxt "meshfix_maximum_travel_resolution label"
  1955. msgid "Maximum Travel Resolution"
  1956. msgstr "Maximális utazási felbontás"
  1957. #: /fdmprinter.def.json
  1958. msgctxt "machine_max_acceleration_x description"
  1959. msgid "Maximum acceleration for the motor of the X-direction"
  1960. msgstr "Maximális gyorsulás az X tengelyen"
  1961. #: /fdmprinter.def.json
  1962. msgctxt "machine_max_acceleration_y description"
  1963. msgid "Maximum acceleration for the motor of the Y-direction."
  1964. msgstr "Maximális gyorsulás az Y tengelyen."
  1965. #: /fdmprinter.def.json
  1966. msgctxt "machine_max_acceleration_z description"
  1967. msgid "Maximum acceleration for the motor of the Z-direction."
  1968. msgstr "Maximális gyorsulás a Z tengelyen."
  1969. #: /fdmprinter.def.json
  1970. msgctxt "machine_max_acceleration_e description"
  1971. msgid "Maximum acceleration for the motor of the filament."
  1972. msgstr "Maximális extrudálási gyorsulás."
  1973. #: /fdmprinter.def.json
  1974. msgctxt "bridge_sparse_infill_max_density description"
  1975. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  1976. msgstr ""
  1977. #: /fdmprinter.def.json
  1978. msgctxt "support_tower_maximum_supported_diameter description"
  1979. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1980. msgstr "Annak a kis területnek a legnagyobb átmérője, amit speciális támasz toronnyalkell alátámasztani."
  1981. #: /fdmprinter.def.json
  1982. msgctxt "max_extrusion_before_wipe description"
  1983. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  1984. msgstr ""
  1985. #: /fdmprinter.def.json
  1986. msgctxt "multiple_mesh_overlap label"
  1987. msgid "Merged Meshes Overlap"
  1988. msgstr "Átfedések egyesítése"
  1989. #: /fdmprinter.def.json
  1990. msgctxt "meshfix label"
  1991. msgid "Mesh Fixes"
  1992. msgstr "Háló korrekciók"
  1993. #: /fdmprinter.def.json
  1994. msgctxt "mesh_position_x label"
  1995. msgid "Mesh Position X"
  1996. msgstr "Háló X pozíció"
  1997. #: /fdmprinter.def.json
  1998. msgctxt "mesh_position_y label"
  1999. msgid "Mesh Position Y"
  2000. msgstr "Háló Y pozíció"
  2001. #: /fdmprinter.def.json
  2002. msgctxt "mesh_position_z label"
  2003. msgid "Mesh Position Z"
  2004. msgstr "Háló Z pozíció"
  2005. #: /fdmprinter.def.json
  2006. msgctxt "infill_mesh_order label"
  2007. msgid "Mesh Processing Rank"
  2008. msgstr ""
  2009. #: /fdmprinter.def.json
  2010. msgctxt "mesh_rotation_matrix label"
  2011. msgid "Mesh Rotation Matrix"
  2012. msgstr "Háló elforgatás mátrix"
  2013. #: /fdmprinter.def.json
  2014. msgctxt "slicing_tolerance option middle"
  2015. msgid "Middle"
  2016. msgstr "Középső"
  2017. #: /fdmprinter.def.json
  2018. msgctxt "mold_width label"
  2019. msgid "Minimal Mold Width"
  2020. msgstr "Minimális formaszélesség"
  2021. #: /fdmprinter.def.json
  2022. msgctxt "machine_min_cool_heat_time_window label"
  2023. msgid "Minimal Time Standby Temperature"
  2024. msgstr "Minimális készenléti hőmérséklet idő"
  2025. #: /fdmprinter.def.json
  2026. msgctxt "bridge_wall_min_length label"
  2027. msgid "Minimum Bridge Wall Length"
  2028. msgstr "Minimális híd falhossz"
  2029. #: /fdmprinter.def.json
  2030. msgctxt "min_even_wall_line_width label"
  2031. msgid "Minimum Even Wall Line Width"
  2032. msgstr ""
  2033. #: /fdmprinter.def.json
  2034. msgctxt "retraction_extrusion_window label"
  2035. msgid "Minimum Extrusion Distance Window"
  2036. msgstr "Minimális extrudálási távolság ablak"
  2037. #: /fdmprinter.def.json
  2038. msgctxt "min_feature_size label"
  2039. msgid "Minimum Feature Size"
  2040. msgstr ""
  2041. #: /fdmprinter.def.json
  2042. msgctxt "machine_minimum_feedrate label"
  2043. msgid "Minimum Feedrate"
  2044. msgstr "Minimális sebesség"
  2045. #: /fdmprinter.def.json
  2046. msgctxt "min_infill_area label"
  2047. msgid "Minimum Infill Area"
  2048. msgstr "Minimális kitöltési terület"
  2049. #: /fdmprinter.def.json
  2050. msgctxt "cool_min_layer_time label"
  2051. msgid "Minimum Layer Time"
  2052. msgstr "Minimális rétegidő"
  2053. #: /fdmprinter.def.json
  2054. msgctxt "min_odd_wall_line_width label"
  2055. msgid "Minimum Odd Wall Line Width"
  2056. msgstr ""
  2057. #: /fdmprinter.def.json
  2058. msgctxt "minimum_polygon_circumference label"
  2059. msgid "Minimum Polygon Circumference"
  2060. msgstr "Minimális sokszög kerület"
  2061. #: /fdmprinter.def.json
  2062. msgctxt "min_skin_width_for_expansion label"
  2063. msgid "Minimum Skin Width for Expansion"
  2064. msgstr "A minimális kéregszélesség kibővítéshez"
  2065. #: /fdmprinter.def.json
  2066. msgctxt "cool_min_speed label"
  2067. msgid "Minimum Speed"
  2068. msgstr "Minimális sebesség"
  2069. #: /fdmprinter.def.json
  2070. msgctxt "minimum_support_area label"
  2071. msgid "Minimum Support Area"
  2072. msgstr "Minimális támasz terület"
  2073. #: /fdmprinter.def.json
  2074. msgctxt "minimum_bottom_area label"
  2075. msgid "Minimum Support Floor Area"
  2076. msgstr "Minimális alsó interfész terület"
  2077. #: /fdmprinter.def.json
  2078. msgctxt "minimum_interface_area label"
  2079. msgid "Minimum Support Interface Area"
  2080. msgstr "Minimális interfész terület"
  2081. #: /fdmprinter.def.json
  2082. msgctxt "minimum_roof_area label"
  2083. msgid "Minimum Support Roof Area"
  2084. msgstr "Minimális felső interfész terület"
  2085. #: /fdmprinter.def.json
  2086. msgctxt "support_xy_distance_overhang label"
  2087. msgid "Minimum Support X/Y Distance"
  2088. msgstr "Minimális támasz X/Y távolság"
  2089. #: /fdmprinter.def.json
  2090. msgctxt "min_bead_width label"
  2091. msgid "Minimum Thin Wall Line Width"
  2092. msgstr ""
  2093. #: /fdmprinter.def.json
  2094. msgctxt "coasting_min_volume label"
  2095. msgid "Minimum Volume Before Coasting"
  2096. msgstr "Minimális mennyiség a kifutás előtt"
  2097. #: /fdmprinter.def.json
  2098. msgctxt "min_wall_line_width label"
  2099. msgid "Minimum Wall Line Width"
  2100. msgstr ""
  2101. #: /fdmprinter.def.json
  2102. msgctxt "minimum_interface_area description"
  2103. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2104. msgstr ""
  2105. #: /fdmprinter.def.json
  2106. msgctxt "minimum_support_area description"
  2107. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2108. msgstr "A támasz poligonok minimális területe. Ha ettől kisebb a terület, ottnem lesz támasz generálva."
  2109. #: /fdmprinter.def.json
  2110. msgctxt "minimum_bottom_area description"
  2111. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2112. msgstr ""
  2113. #: /fdmprinter.def.json
  2114. msgctxt "minimum_roof_area description"
  2115. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  2116. msgstr ""
  2117. #: /fdmprinter.def.json
  2118. msgctxt "min_feature_size description"
  2119. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  2120. msgstr ""
  2121. #: /fdmprinter.def.json
  2122. msgctxt "support_conical_min_width description"
  2123. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2124. msgstr "A kúptámasz alapjának minimális mérete. Ha nagyon kicsi ez a szélesség, akkor a támasz instabil lehet."
  2125. #: /fdmprinter.def.json
  2126. msgctxt "mold_enabled label"
  2127. msgid "Mold"
  2128. msgstr "Öntőforma"
  2129. #: /fdmprinter.def.json
  2130. msgctxt "mold_angle label"
  2131. msgid "Mold Angle"
  2132. msgstr "Forma szög"
  2133. #: /fdmprinter.def.json
  2134. msgctxt "mold_roof_height label"
  2135. msgid "Mold Roof Height"
  2136. msgstr "Forma fedél magasság"
  2137. #: /fdmprinter.def.json
  2138. msgctxt "ironing_monotonic label"
  2139. msgid "Monotonic Ironing Order"
  2140. msgstr ""
  2141. #: /fdmprinter.def.json
  2142. msgctxt "roofing_monotonic label"
  2143. msgid "Monotonic Top Surface Order"
  2144. msgstr ""
  2145. #: /fdmprinter.def.json
  2146. msgctxt "skin_monotonic label"
  2147. msgid "Monotonic Top/Bottom Order"
  2148. msgstr ""
  2149. #: /fdmprinter.def.json
  2150. msgctxt "skirt_line_count description"
  2151. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2152. msgstr "A szoknyavonalak számának növelése, kisméretű tárgyak esetén segíthet az extruderben a megvelelő olvadókamra nyomás előállításában.Ha az érték 0, akkor a szoknya letiltódik."
  2153. #: /fdmprinter.def.json
  2154. msgctxt "initial_layer_line_width_factor description"
  2155. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2156. msgstr "Az első réteg vonalszélességének szorzója. Ennek a növelésével javíthatjuk a tapadást a tárgyasztalhoz."
  2157. #: /fdmprinter.def.json
  2158. msgctxt "material_no_load_move_factor label"
  2159. msgid "No Load Move Factor"
  2160. msgstr ""
  2161. #: /fdmprinter.def.json
  2162. msgctxt "skin_no_small_gaps_heuristic label"
  2163. msgid "No Skin in Z Gaps"
  2164. msgstr "Felület nélküli Z hézag"
  2165. #: /fdmprinter.def.json
  2166. msgctxt "blackmagic description"
  2167. msgid "Non-traditional ways to print your models."
  2168. msgstr ""
  2169. #: /fdmprinter.def.json
  2170. msgctxt "adhesion_type option none"
  2171. msgid "None"
  2172. msgstr "Nincs"
  2173. #: /fdmprinter.def.json
  2174. msgctxt "z_seam_corner option z_seam_corner_none"
  2175. msgid "None"
  2176. msgstr "Nincs"
  2177. #: /fdmprinter.def.json
  2178. msgctxt "magic_mesh_surface_mode option normal"
  2179. msgid "Normal"
  2180. msgstr "Normál"
  2181. #: /fdmprinter.def.json
  2182. msgctxt "support_structure option normal"
  2183. msgid "Normal"
  2184. msgstr ""
  2185. #: /fdmprinter.def.json
  2186. msgctxt "meshfix_keep_open_polygons description"
  2187. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  2188. msgstr "A Cura általában megkísérli összefűzni a kis lyukakat a hálóban, és eltávolítja ezeket egy nagy üregben. Ennek az opciónak a bekapcsolásával megtarthatók azok a részek, amiket nem lehet felfűzni. Ezt a lehetőséget végső lehetőségként tartsuk fent, és csak akkor használjuk, ha nem tudjuk más módon létrehozni a megfelelő G-kódot."
  2189. #: /fdmprinter.def.json
  2190. msgctxt "retraction_combing option noskin"
  2191. msgid "Not in Skin"
  2192. msgstr "Felszínen nem"
  2193. #: /fdmprinter.def.json
  2194. msgctxt "retraction_combing option no_outer_surfaces"
  2195. msgid "Not on Outer Surface"
  2196. msgstr ""
  2197. #: /fdmprinter.def.json
  2198. msgctxt "machine_nozzle_expansion_angle label"
  2199. msgid "Nozzle Angle"
  2200. msgstr "Csúcsszög"
  2201. #: /fdmprinter.def.json
  2202. msgctxt "machine_nozzle_size label"
  2203. msgid "Nozzle Diameter"
  2204. msgstr "Fúvóka átmérő"
  2205. #: /fdmprinter.def.json
  2206. msgctxt "nozzle_disallowed_areas label"
  2207. msgid "Nozzle Disallowed Areas"
  2208. msgstr "Fúvóka tiltott területek"
  2209. #: /fdmprinter.def.json
  2210. msgctxt "machine_nozzle_id label"
  2211. msgid "Nozzle ID"
  2212. msgstr "Fúvóka ID"
  2213. #: /fdmprinter.def.json
  2214. msgctxt "machine_nozzle_head_distance label"
  2215. msgid "Nozzle Length"
  2216. msgstr "Fúvóka hossza"
  2217. #: /fdmprinter.def.json
  2218. msgctxt "switch_extruder_extra_prime_amount label"
  2219. msgid "Nozzle Switch Extra Prime Amount"
  2220. msgstr "Fúvókaváltási extra visszatolt anyag"
  2221. #: /fdmprinter.def.json
  2222. msgctxt "switch_extruder_prime_speed label"
  2223. msgid "Nozzle Switch Prime Speed"
  2224. msgstr "Fúvókaváltás visszatolási sebesség"
  2225. #: /fdmprinter.def.json
  2226. msgctxt "switch_extruder_retraction_speed label"
  2227. msgid "Nozzle Switch Retract Speed"
  2228. msgstr "Fúvókaváltás visszahúzási sebesség"
  2229. #: /fdmprinter.def.json
  2230. msgctxt "switch_extruder_retraction_amount label"
  2231. msgid "Nozzle Switch Retraction Distance"
  2232. msgstr "Fúvókaváltás visszahúzási távolság"
  2233. #: /fdmprinter.def.json
  2234. msgctxt "switch_extruder_retraction_speeds label"
  2235. msgid "Nozzle Switch Retraction Speed"
  2236. msgstr "Fúvókaváltás visszahúzási sebesség"
  2237. #: /fdmprinter.def.json
  2238. msgctxt "machine_extruder_count label"
  2239. msgid "Number of Extruders"
  2240. msgstr "Extruderek száma"
  2241. #: /fdmprinter.def.json
  2242. msgctxt "extruders_enabled_count label"
  2243. msgid "Number of Extruders That Are Enabled"
  2244. msgstr "Engedélyezett extruderek száma"
  2245. #: /fdmprinter.def.json
  2246. msgctxt "speed_slowdown_layers label"
  2247. msgid "Number of Slower Layers"
  2248. msgstr "Lassabb rétegek száma"
  2249. #: /fdmprinter.def.json
  2250. msgctxt "extruders_enabled_count description"
  2251. msgid "Number of extruder trains that are enabled; automatically set in software"
  2252. msgstr "Az engedélyezett extruder szerelvények száma. Ez egy automatikus beállítás a szoftverből"
  2253. #: /fdmprinter.def.json
  2254. msgctxt "machine_extruder_count description"
  2255. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2256. msgstr "Az extruder szerelvények száma. Az extruder szerelvény áll a továbbító egységből, a nyomtatófejből, és bowdenes gépeken a PTFE csőből."
  2257. #: /fdmprinter.def.json
  2258. msgctxt "wipe_repeat_count description"
  2259. msgid "Number of times to move the nozzle across the brush."
  2260. msgstr "A törlési mozgás ismétlésének száma, háynszor keresztezze a fej a kefét."
  2261. #: /fdmprinter.def.json
  2262. msgctxt "gradual_infill_steps description"
  2263. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  2264. msgstr "Ez egy olyan lépésszám, ami azt határozza meg, hogy hányszor csökkenti a kitöltési sűrűséget a rétegek emelkedése során addig, amíg eléri a kitöltési sűrűség felét. Azokon a területeken, ahol a fedő rétegek közelébe kerül a kitöltés, a sűrűség újra növekedni fog."
  2265. #: /fdmprinter.def.json
  2266. msgctxt "gradual_support_infill_steps description"
  2267. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  2268. msgstr "Hány esetben csökkenti felére a támasz kitörlésének a sűrűségét a felére, ahogy építi a támaszt. Azokon a területeken, ahol a felső felületekhez közelebb kerül, ott a sűrűség nőni fog, egészen a támasz kitöltési sűrűségig."
  2269. #: /fdmprinter.def.json
  2270. msgctxt "infill_pattern option tetrahedral"
  2271. msgid "Octet"
  2272. msgstr "Oktett"
  2273. #: /fdmprinter.def.json
  2274. msgctxt "retraction_combing option off"
  2275. msgid "Off"
  2276. msgstr "Ki"
  2277. #: /fdmprinter.def.json
  2278. msgctxt "mesh_position_x description"
  2279. msgid "Offset applied to the object in the x direction."
  2280. msgstr "Az objektumra vonatkozó eltolás mértéke X irányban."
  2281. #: /fdmprinter.def.json
  2282. msgctxt "mesh_position_y description"
  2283. msgid "Offset applied to the object in the y direction."
  2284. msgstr "Az objektumra vonatkozó eltolás mértéke Y irányban."
  2285. #: /fdmprinter.def.json
  2286. msgctxt "mesh_position_z description"
  2287. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2288. msgstr "Az objektumra alkalmazott eltolás z irányban. Ezzel végrehajthatja azt, amit régen 'Object Sink' -nek hívtak."
  2289. #: /fdmprinter.def.json
  2290. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2291. msgid "Offset with Extruder"
  2292. msgstr "Extruder eltolás"
  2293. #: /fdmprinter.def.json
  2294. msgctxt "limit_support_retractions description"
  2295. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2296. msgstr "A támasz és a normál tárgyvonalak között kihagyja a visszahúzást. Ez időt takaríthat meg, de ez szálazást eredményezhet."
  2297. #: /fdmprinter.def.json
  2298. msgctxt "print_sequence option one_at_a_time"
  2299. msgid "One at a Time"
  2300. msgstr "Egyesével"
  2301. #: /fdmprinter.def.json
  2302. msgctxt "retraction_hop_only_when_collides description"
  2303. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2304. msgstr "Csak akkor végez Z emelést, ha olyan nyomtatott részek felett mozog, amiket vízszintes mozgással nem lehet elkerülni."
  2305. #: /fdmprinter.def.json
  2306. msgctxt "ironing_only_highest_layer description"
  2307. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  2308. msgstr "A vasalást csak a legfelső rétegen végzi el. Ha az alacsonyabb szinteken lévőfelső felületeken nem szükséges a sima felület, akkor ezzel időt takaríthatunk meg."
  2309. #: /fdmprinter.def.json
  2310. msgctxt "brim_outside_only description"
  2311. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  2312. msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen."
  2313. #: /fdmprinter.def.json
  2314. msgctxt "ooze_shield_angle label"
  2315. msgid "Ooze Shield Angle"
  2316. msgstr "Szivárgáspajzs szöge"
  2317. #: /fdmprinter.def.json
  2318. msgctxt "ooze_shield_dist label"
  2319. msgid "Ooze Shield Distance"
  2320. msgstr "Szivárgáspajzs távolság"
  2321. #: /fdmprinter.def.json
  2322. msgctxt "optimize_wall_printing_order label"
  2323. msgid "Optimize Wall Printing Order"
  2324. msgstr "Optimalizálás a falnyomtatási sorrendre"
  2325. #: /fdmprinter.def.json
  2326. msgctxt "optimize_wall_printing_order description"
  2327. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  2328. msgstr "Optimalizálja a falak nyomtatásának sorrendjét, hogy csökkentse a visszahúzások számát és a megtett távolságot. A legtöbb alkatrész számára előnyös lehet ennek engedélyezése, de bizonyos esetekben valójában hosszabb is lehet.Ezért kérjük, hasonlítsa össze a nyomtatási idő becsléseit az optimalizálással és anélkül.Az első réteg nincs optimalizálva, ha a széleket építõlap-tapadási típusnak választják."
  2329. #: /fdmprinter.def.json
  2330. msgctxt "machine_nozzle_tip_outer_diameter label"
  2331. msgid "Outer Nozzle Diameter"
  2332. msgstr "Külső fúvóka átmérő"
  2333. #: /fdmprinter.def.json
  2334. msgctxt "acceleration_wall_0 label"
  2335. msgid "Outer Wall Acceleration"
  2336. msgstr "Külső fal gyorsulás"
  2337. #: /fdmprinter.def.json
  2338. msgctxt "wall_0_extruder_nr label"
  2339. msgid "Outer Wall Extruder"
  2340. msgstr "Külső fali extruder"
  2341. #: /fdmprinter.def.json
  2342. msgctxt "wall_0_material_flow label"
  2343. msgid "Outer Wall Flow"
  2344. msgstr "Külső fal áramlás"
  2345. #: /fdmprinter.def.json
  2346. msgctxt "wall_0_inset label"
  2347. msgid "Outer Wall Inset"
  2348. msgstr "Külső fal eltolás"
  2349. #: /fdmprinter.def.json
  2350. msgctxt "jerk_wall_0 label"
  2351. msgid "Outer Wall Jerk"
  2352. msgstr "Külsö fal löket"
  2353. #: /fdmprinter.def.json
  2354. msgctxt "wall_line_width_0 label"
  2355. msgid "Outer Wall Line Width"
  2356. msgstr "Külső falvonal szélessége"
  2357. #: /fdmprinter.def.json
  2358. msgctxt "speed_wall_0 label"
  2359. msgid "Outer Wall Speed"
  2360. msgstr "Külső fal sebesség"
  2361. #: /fdmprinter.def.json
  2362. msgctxt "wall_0_wipe_dist label"
  2363. msgid "Outer Wall Wipe Distance"
  2364. msgstr "Külső fal tisztítási távolság"
  2365. #: /fdmprinter.def.json
  2366. msgctxt "inset_direction option outside_in"
  2367. msgid "Outside To Inside"
  2368. msgstr ""
  2369. #: /fdmprinter.def.json
  2370. msgctxt "wall_overhang_angle label"
  2371. msgid "Overhanging Wall Angle"
  2372. msgstr "Falkinyúlások szöge"
  2373. #: /fdmprinter.def.json
  2374. msgctxt "wall_overhang_speed_factor label"
  2375. msgid "Overhanging Wall Speed"
  2376. msgstr "Falkinyúlás sebessége"
  2377. #: /fdmprinter.def.json
  2378. msgctxt "wall_overhang_speed_factor description"
  2379. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2380. msgstr "A kinyúló falak a normál nyomtatási sebesség százalékos arányában adjuk meg."
  2381. #: /fdmprinter.def.json
  2382. msgctxt "wipe_pause description"
  2383. msgid "Pause after the unretract."
  2384. msgstr "Szünet a visszahúzás után."
  2385. #: /fdmprinter.def.json
  2386. msgctxt "bridge_fan_speed description"
  2387. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2388. msgstr "A hűtőventillátor sebességének százalékos értéke hídfalak, és a felszíni rétegek nyomtatásakor."
  2389. #: /fdmprinter.def.json
  2390. msgctxt "bridge_fan_speed_2 description"
  2391. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2392. msgstr "A második hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva."
  2393. #: /fdmprinter.def.json
  2394. msgctxt "support_supported_skin_fan_speed description"
  2395. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  2396. msgstr "A ventillátorok % -os sebesség aránya, amit a támaszok feletti külső, kéregfelületeken kell használni. Ha a ventillátor sebesség itt nagyobb, akkor a támasz könnyebben eltávolítható."
  2397. #: /fdmprinter.def.json
  2398. msgctxt "bridge_fan_speed_3 description"
  2399. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2400. msgstr "A harmadik hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva."
  2401. #: /fdmprinter.def.json
  2402. msgctxt "wireframe_straight_before_down description"
  2403. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  2404. msgstr "Az átlósan lefelé mutató vonal százaléka, amelyet egy vízszintes vonaldarab fed le. Ez megakadályozhatja a felfelé mutató vonalak legfelső pontjának elhajlását. Csak a huzalnyomásra vonatkozik."
  2405. #: /fdmprinter.def.json
  2406. msgctxt "minimum_polygon_circumference description"
  2407. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  2408. msgstr "A szeletelt rétegekben lévő sokszögeket, amelyek kerülete kisebb, mint ez az összeg, kiszűrjük. Az alacsonyabb értékek magasabb felbontású hálóhoz vezetnek a szeletelési idő költségén. Elsősorban nagy felbontású SLA nyomtatókhoz és nagyon apró, sok részlettel rendelkező 3D modellekhez készült."
  2409. #: /fdmprinter.def.json
  2410. msgctxt "wall_transition_filter_deviation description"
  2411. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  2412. msgstr ""
  2413. #: /fdmprinter.def.json
  2414. msgctxt "acceleration_prime_tower label"
  2415. msgid "Prime Tower Acceleration"
  2416. msgstr "Előtorony gyorsulás"
  2417. #: /fdmprinter.def.json
  2418. msgctxt "prime_tower_brim_enable label"
  2419. msgid "Prime Tower Brim"
  2420. msgstr "Előtorony perem"
  2421. #: /fdmprinter.def.json
  2422. msgctxt "prime_tower_flow label"
  2423. msgid "Prime Tower Flow"
  2424. msgstr "Elő torony áramlás"
  2425. #: /fdmprinter.def.json
  2426. msgctxt "jerk_prime_tower label"
  2427. msgid "Prime Tower Jerk"
  2428. msgstr "Előtorony löket"
  2429. #: /fdmprinter.def.json
  2430. msgctxt "prime_tower_line_width label"
  2431. msgid "Prime Tower Line Width"
  2432. msgstr "Előtorony vonalszélesség"
  2433. #: /fdmprinter.def.json
  2434. msgctxt "prime_tower_min_volume label"
  2435. msgid "Prime Tower Minimum Volume"
  2436. msgstr "Előtorony minimális térfogat"
  2437. #: /fdmprinter.def.json
  2438. msgctxt "prime_tower_size label"
  2439. msgid "Prime Tower Size"
  2440. msgstr "Előtorony mérete"
  2441. #: /fdmprinter.def.json
  2442. msgctxt "speed_prime_tower label"
  2443. msgid "Prime Tower Speed"
  2444. msgstr "Előtorony sebesség"
  2445. #: /fdmprinter.def.json
  2446. msgctxt "prime_tower_position_x label"
  2447. msgid "Prime Tower X Position"
  2448. msgstr "Előtorony X helyzet"
  2449. #: /fdmprinter.def.json
  2450. msgctxt "prime_tower_position_y label"
  2451. msgid "Prime Tower Y Position"
  2452. msgstr "Előtorony Y helyzet"
  2453. #: /fdmprinter.def.json
  2454. msgctxt "prime_tower_brim_enable description"
  2455. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  2456. msgstr "Előfordulhat, hogy az előtornyokhoz szükség van a peremek által biztosított extra tapadásra, még akkor is, ha a modell nem rendelkezik peremmel. Jelenleg nem használható a tutaj 'Raft' mint tapadástípus ehhez a művelethez."
  2457. #: /fdmprinter.def.json
  2458. msgctxt "acceleration_print label"
  2459. msgid "Print Acceleration"
  2460. msgstr "Nyomtatási gyorsulás"
  2461. #: /fdmprinter.def.json
  2462. msgctxt "jerk_print label"
  2463. msgid "Print Jerk"
  2464. msgstr "Nyomtatás löket"
  2465. #: /fdmprinter.def.json
  2466. msgctxt "print_sequence label"
  2467. msgid "Print Sequence"
  2468. msgstr "Nyomtatási sorrend"
  2469. #: /fdmprinter.def.json
  2470. msgctxt "speed_print label"
  2471. msgid "Print Speed"
  2472. msgstr "Nyomtatási sebesség"
  2473. #: /fdmprinter.def.json
  2474. msgctxt "fill_outline_gaps label"
  2475. msgid "Print Thin Walls"
  2476. msgstr "Vékony falak nyomtatása"
  2477. #: /fdmprinter.def.json
  2478. msgctxt "prime_tower_enable description"
  2479. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2480. msgstr "Nyomtasson egy tornyot a nyomtatandó tárgy mellett, amely abban segít, hogy a fejben lévő anyagváltást végre tudja hajtani. Kinyomtatja az előtoronyba a fejben marad előző alapanyag maradványokat, így már kitisztult fúvókával tudja a nyomtatást folytatni a nyomtatandó testen."
  2481. #: /fdmprinter.def.json
  2482. msgctxt "infill_support_enabled description"
  2483. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  2484. msgstr "Csak ott nyomtasson kitöltő szerkezeteket, ahol a felső modellrésznek szüksége van alátámasztásra. Ennek az engedélyezése csökkenti a nyomtatási időt, illetve az anyagszükségletet, azonban a tárgyak belső szilárdsága egyenetlen lehet."
  2485. #: /fdmprinter.def.json
  2486. msgctxt "ironing_monotonic description"
  2487. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2488. msgstr ""
  2489. #: /fdmprinter.def.json
  2490. msgctxt "mold_enabled description"
  2491. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2492. msgstr "Nyomtassa a modelt úgy, mint ha egy öntőforma lenne. Ezzel elérhetjük, hogy olyan nyomtatványt kapunk, amit ha kiöntünk, akkor a tárgyasztalon lévő modelt kapjuk vissza."
  2493. #: /fdmprinter.def.json
  2494. msgctxt "wireframe_enabled description"
  2495. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  2496. msgstr "Csak a külső felületet nyomtatja, egy ritkás hevederezett szerkezettel, a levegőben. Ez úgy valósul meg, hogy a modell kontúrjai vízszintesen kinyomtatásra kerülnek meghatározott Z intervallumban, amiket felfelé, és átlósan lefelé egyenesen összeköt."
  2497. #: /fdmprinter.def.json
  2498. msgctxt "fill_outline_gaps description"
  2499. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2500. msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete."
  2501. #: /fdmprinter.def.json
  2502. msgctxt "bridge_skin_speed_2 description"
  2503. msgid "Print speed to use when printing the second bridge skin layer."
  2504. msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni."
  2505. #: /fdmprinter.def.json
  2506. msgctxt "bridge_skin_speed_3 description"
  2507. msgid "Print speed to use when printing the third bridge skin layer."
  2508. msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni."
  2509. #: /fdmprinter.def.json
  2510. msgctxt "infill_before_walls description"
  2511. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  2512. msgstr "Az adott rétegnél a kitöltést nyomtatjuk a falak nyomtatása előtt.A falak előzetes nyomtatása pontosabb falakat eredményezhet, azonban az átfedések nyomtatása gyengébb lehet. A kitöltés elsőnek nyomtatása szilárdabb falakhoz vezethet, de a feltöltési minta néha megjelenhet a felületen."
  2513. #: /fdmprinter.def.json
  2514. msgctxt "roofing_monotonic description"
  2515. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2516. msgstr ""
  2517. #: /fdmprinter.def.json
  2518. msgctxt "skin_monotonic description"
  2519. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2520. msgstr ""
  2521. #: /fdmprinter.def.json
  2522. msgctxt "material_print_temperature label"
  2523. msgid "Printing Temperature"
  2524. msgstr "Nyomtatási hőmérséklet"
  2525. #: /fdmprinter.def.json
  2526. msgctxt "material_print_temperature_layer_0 label"
  2527. msgid "Printing Temperature Initial Layer"
  2528. msgstr "Kezdő réteg nyomtatási hőmérséklete"
  2529. #: /fdmprinter.def.json
  2530. msgctxt "alternate_extra_perimeter description"
  2531. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2532. msgstr "Minden rétegben egy további extra falat nyomtat. Ez segít a kitöltésnek hozzáépülni a falhoz, ezáltal erősebb lesz a tárgy szerkezete."
  2533. #: /fdmprinter.def.json
  2534. msgctxt "resolution label"
  2535. msgid "Quality"
  2536. msgstr "Minőség"
  2537. #: /fdmprinter.def.json
  2538. msgctxt "infill_pattern option quarter_cubic"
  2539. msgid "Quarter Cubic"
  2540. msgstr "Negyed kocka"
  2541. #: /fdmprinter.def.json
  2542. msgctxt "adhesion_type option raft"
  2543. msgid "Raft"
  2544. msgstr "Tutaj"
  2545. #: /fdmprinter.def.json
  2546. msgctxt "raft_airgap label"
  2547. msgid "Raft Air Gap"
  2548. msgstr "Tutaj légrés"
  2549. #: /fdmprinter.def.json
  2550. msgctxt "raft_base_extruder_nr label"
  2551. msgid "Raft Base Extruder"
  2552. msgstr ""
  2553. #: /fdmprinter.def.json
  2554. msgctxt "raft_base_fan_speed label"
  2555. msgid "Raft Base Fan Speed"
  2556. msgstr "Tutajalap hűtés"
  2557. #: /fdmprinter.def.json
  2558. msgctxt "raft_base_line_spacing label"
  2559. msgid "Raft Base Line Spacing"
  2560. msgstr "Tutajalap-vonalak közötti távolság"
  2561. #: /fdmprinter.def.json
  2562. msgctxt "raft_base_line_width label"
  2563. msgid "Raft Base Line Width"
  2564. msgstr "Tutajalap vonal szélessége"
  2565. #: /fdmprinter.def.json
  2566. msgctxt "raft_base_acceleration label"
  2567. msgid "Raft Base Print Acceleration"
  2568. msgstr "Tutajalap gyorsulás"
  2569. #: /fdmprinter.def.json
  2570. msgctxt "raft_base_jerk label"
  2571. msgid "Raft Base Print Jerk"
  2572. msgstr "Tutajalap löket"
  2573. #: /fdmprinter.def.json
  2574. msgctxt "raft_base_speed label"
  2575. msgid "Raft Base Print Speed"
  2576. msgstr "Tutajalap nyomtatási sebessége"
  2577. #: /fdmprinter.def.json
  2578. msgctxt "raft_base_thickness label"
  2579. msgid "Raft Base Thickness"
  2580. msgstr "Tutajalap vastagsága"
  2581. #: /fdmprinter.def.json
  2582. msgctxt "raft_base_wall_count label"
  2583. msgid "Raft Base Wall Count"
  2584. msgstr ""
  2585. #: /fdmprinter.def.json
  2586. msgctxt "raft_margin label"
  2587. msgid "Raft Extra Margin"
  2588. msgstr "Tutaj extra margó"
  2589. #: /fdmprinter.def.json
  2590. msgctxt "raft_fan_speed label"
  2591. msgid "Raft Fan Speed"
  2592. msgstr "Tutaj hűtés"
  2593. #: /fdmprinter.def.json
  2594. msgctxt "raft_interface_extruder_nr label"
  2595. msgid "Raft Middle Extruder"
  2596. msgstr ""
  2597. #: /fdmprinter.def.json
  2598. msgctxt "raft_interface_fan_speed label"
  2599. msgid "Raft Middle Fan Speed"
  2600. msgstr "Tutajközép hűtés"
  2601. #: /fdmprinter.def.json
  2602. msgctxt "raft_interface_layers label"
  2603. msgid "Raft Middle Layers"
  2604. msgstr ""
  2605. #: /fdmprinter.def.json
  2606. msgctxt "raft_interface_line_width label"
  2607. msgid "Raft Middle Line Width"
  2608. msgstr "Tutaj középső vonal szélessége"
  2609. #: /fdmprinter.def.json
  2610. msgctxt "raft_interface_acceleration label"
  2611. msgid "Raft Middle Print Acceleration"
  2612. msgstr "Tutajközép gyorsulás"
  2613. #: /fdmprinter.def.json
  2614. msgctxt "raft_interface_jerk label"
  2615. msgid "Raft Middle Print Jerk"
  2616. msgstr "Tutajközép löket"
  2617. #: /fdmprinter.def.json
  2618. msgctxt "raft_interface_speed label"
  2619. msgid "Raft Middle Print Speed"
  2620. msgstr "Tutajközép nyomtatási sebesség"
  2621. #: /fdmprinter.def.json
  2622. msgctxt "raft_interface_line_spacing label"
  2623. msgid "Raft Middle Spacing"
  2624. msgstr "Tutaj középső távolsága"
  2625. #: /fdmprinter.def.json
  2626. msgctxt "raft_interface_thickness label"
  2627. msgid "Raft Middle Thickness"
  2628. msgstr "Tutaj közép vastagsága"
  2629. #: /fdmprinter.def.json
  2630. msgctxt "raft_acceleration label"
  2631. msgid "Raft Print Acceleration"
  2632. msgstr "Tutaj gyorsulás"
  2633. #: /fdmprinter.def.json
  2634. msgctxt "raft_jerk label"
  2635. msgid "Raft Print Jerk"
  2636. msgstr "Tutaj löket"
  2637. #: /fdmprinter.def.json
  2638. msgctxt "raft_speed label"
  2639. msgid "Raft Print Speed"
  2640. msgstr "Tutaj nyomtatási sebesség"
  2641. #: /fdmprinter.def.json
  2642. msgctxt "raft_smoothing label"
  2643. msgid "Raft Smoothing"
  2644. msgstr "Tutaj simítás"
  2645. #: /fdmprinter.def.json
  2646. msgctxt "raft_surface_extruder_nr label"
  2647. msgid "Raft Top Extruder"
  2648. msgstr ""
  2649. #: /fdmprinter.def.json
  2650. msgctxt "raft_surface_fan_speed label"
  2651. msgid "Raft Top Fan Speed"
  2652. msgstr "Tutajfedél hűtés"
  2653. #: /fdmprinter.def.json
  2654. msgctxt "raft_surface_thickness label"
  2655. msgid "Raft Top Layer Thickness"
  2656. msgstr "Felső tutaj rétegvastagság"
  2657. #: /fdmprinter.def.json
  2658. msgctxt "raft_surface_layers label"
  2659. msgid "Raft Top Layers"
  2660. msgstr "Felső tutaj rétegek"
  2661. #: /fdmprinter.def.json
  2662. msgctxt "raft_surface_line_width label"
  2663. msgid "Raft Top Line Width"
  2664. msgstr "Tutaj felső vonalszélesség"
  2665. #: /fdmprinter.def.json
  2666. msgctxt "raft_surface_acceleration label"
  2667. msgid "Raft Top Print Acceleration"
  2668. msgstr "Tutajfedél gyorsulás"
  2669. #: /fdmprinter.def.json
  2670. msgctxt "raft_surface_jerk label"
  2671. msgid "Raft Top Print Jerk"
  2672. msgstr "Tutajfedél löket"
  2673. #: /fdmprinter.def.json
  2674. msgctxt "raft_surface_speed label"
  2675. msgid "Raft Top Print Speed"
  2676. msgstr "Tutajfedél nyomtatási sebesség"
  2677. #: /fdmprinter.def.json
  2678. msgctxt "raft_surface_line_spacing label"
  2679. msgid "Raft Top Spacing"
  2680. msgstr "Tutaj felső távolsága"
  2681. #: /fdmprinter.def.json
  2682. msgctxt "z_seam_type option random"
  2683. msgid "Random"
  2684. msgstr "Véletlenszerű"
  2685. #: /fdmprinter.def.json
  2686. msgctxt "infill_randomize_start_location label"
  2687. msgid "Randomize Infill Start"
  2688. msgstr "Véletlenszerű kitöltés kezdés"
  2689. #: /fdmprinter.def.json
  2690. msgctxt "infill_randomize_start_location description"
  2691. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  2692. msgstr "Az adott rétegben, a kezdő kitöltési sorokat véletlenszerűen választja ki.Ezzel elkerülhető az, hogy a kitöltés az egyik helyen erősebb legyen, mint máshol, vagy éppen valahol gyengébb legyen a kelleténél a kitöltés."
  2693. #: /fdmprinter.def.json
  2694. msgctxt "magic_fuzzy_skin_enabled description"
  2695. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2696. msgstr "A külső fal nyomtatása során, véletlenszerűen beremeg a fej. Ennek hatására a külső fal mintázata elmosott, homályos lesz, elnyomja a mintázatot."
  2697. #: /fdmprinter.def.json
  2698. msgctxt "machine_shape option rectangular"
  2699. msgid "Rectangular"
  2700. msgstr "Szögletes (négyszög)"
  2701. #: /fdmprinter.def.json
  2702. msgctxt "cool_fan_speed_min label"
  2703. msgid "Regular Fan Speed"
  2704. msgstr "Normál hűtési sebesség"
  2705. #: /fdmprinter.def.json
  2706. msgctxt "cool_fan_full_at_height label"
  2707. msgid "Regular Fan Speed at Height"
  2708. msgstr "Normál hűtési magasság"
  2709. #: /fdmprinter.def.json
  2710. msgctxt "cool_fan_full_layer label"
  2711. msgid "Regular Fan Speed at Layer"
  2712. msgstr "Normál hűtési réteg"
  2713. #: /fdmprinter.def.json
  2714. msgctxt "cool_min_layer_time_fan_speed_max label"
  2715. msgid "Regular/Maximum Fan Speed Threshold"
  2716. msgstr "Normál/Maximum ventillátor sebesség küszöb"
  2717. #: /fdmprinter.def.json
  2718. msgctxt "relative_extrusion label"
  2719. msgid "Relative Extrusion"
  2720. msgstr "Relatív extrudálás"
  2721. #: /fdmprinter.def.json
  2722. msgctxt "meshfix_union_all_remove_holes label"
  2723. msgid "Remove All Holes"
  2724. msgstr "Üregek eltávolítása"
  2725. #: /fdmprinter.def.json
  2726. msgctxt "remove_empty_first_layers label"
  2727. msgid "Remove Empty First Layers"
  2728. msgstr "Üres első rétegek eltávolítása"
  2729. #: /fdmprinter.def.json
  2730. msgctxt "carve_multiple_volumes label"
  2731. msgid "Remove Mesh Intersection"
  2732. msgstr "Keresztezések eltávolítása"
  2733. #: /fdmprinter.def.json
  2734. msgctxt "raft_remove_inside_corners label"
  2735. msgid "Remove Raft Inside Corners"
  2736. msgstr ""
  2737. #: /fdmprinter.def.json
  2738. msgctxt "carve_multiple_volumes description"
  2739. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2740. msgstr "Azon területek eltávolítása, ahol a hálók keresztezik egymást. Ezt általában ott kell használni, ahol kettős objektumok átfedésben vannak egymással."
  2741. #: /fdmprinter.def.json
  2742. msgctxt "remove_empty_first_layers description"
  2743. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  2744. msgstr "Távolítsa el az üres rétegeket amik az első nyomtatott réteg alatt, ha vannak. Ennek a beállításnak a letiltása esetén az első rétegek üresek lehetnek, ha a Szelet-tolerancia beállítást Kizárólagos vagy Közepes értékre állítják."
  2745. #: /fdmprinter.def.json
  2746. msgctxt "raft_remove_inside_corners description"
  2747. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2748. msgstr ""
  2749. #: /fdmprinter.def.json
  2750. msgctxt "meshfix_union_all_remove_holes description"
  2751. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  2752. msgstr "Eltávolítja a tárgyból az összes furatot, és üreget, s csak a külső geometriát tartja meg. Egyúttal figyelmen kívül hagyja a belső geometriát is.Nem fogja figyelmbe venni az alulról vagy felülről látható rétegeket sem."
  2753. #: /fdmprinter.def.json
  2754. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2755. msgid "RepRap"
  2756. msgstr "RepRap"
  2757. #: /fdmprinter.def.json
  2758. msgctxt "machine_gcode_flavor option Repetier"
  2759. msgid "Repetier"
  2760. msgstr "Repetier"
  2761. #: /fdmprinter.def.json
  2762. msgctxt "skin_outline_count description"
  2763. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  2764. msgstr "Lecseréli az alsó/felső felületi minta legkülsőbb falait koncentrikus vonalra.Egy vagy két vonal használata javítja a felső záró felületeket, ott, ahol még a kitöltés látható."
  2765. #: /fdmprinter.def.json
  2766. msgctxt "support_tree_collision_resolution description"
  2767. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  2768. msgstr "Felbontás az ütközések kiszámítására, annak érdekében, hogy elkerüljük a modellel való ütközést. Ha alacsonyabb a beállítás, az pontosabb fákat eredményez, amik kevésbé dőlnek el, de a szeletelési időt drámai módon megnöveli."
  2769. #: /fdmprinter.def.json
  2770. msgctxt "wireframe_strategy option retract"
  2771. msgid "Retract"
  2772. msgstr "Visszahúzás"
  2773. #: /fdmprinter.def.json
  2774. msgctxt "travel_retract_before_outer_wall label"
  2775. msgid "Retract Before Outer Wall"
  2776. msgstr "Visszahúzás külső fal előtt"
  2777. #: /fdmprinter.def.json
  2778. msgctxt "retract_at_layer_change label"
  2779. msgid "Retract at Layer Change"
  2780. msgstr "Visszahúzás a rétegváltásnál"
  2781. #: /fdmprinter.def.json
  2782. msgctxt "retraction_enable description"
  2783. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2784. msgstr ""
  2785. #: /fdmprinter.def.json
  2786. msgctxt "wipe_retraction_enable description"
  2787. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2788. msgstr "A nyomtatószálat visszahúzza, mikor a fúvóka átmozog egy nem-nyomtatott területen."
  2789. #: /fdmprinter.def.json
  2790. msgctxt "retract_at_layer_change description"
  2791. msgid "Retract the filament when the nozzle is moving to the next layer."
  2792. msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka a következő rétegre vált."
  2793. #: /fdmprinter.def.json
  2794. msgctxt "retraction_amount label"
  2795. msgid "Retraction Distance"
  2796. msgstr "Visszahúzási távolság"
  2797. #: /fdmprinter.def.json
  2798. msgctxt "retraction_extra_prime_amount label"
  2799. msgid "Retraction Extra Prime Amount"
  2800. msgstr "Előtolási plussz anyagmennyiség"
  2801. #: /fdmprinter.def.json
  2802. msgctxt "retraction_min_travel label"
  2803. msgid "Retraction Minimum Travel"
  2804. msgstr "Minimum út visszahúzáshoz"
  2805. #: /fdmprinter.def.json
  2806. msgctxt "retraction_prime_speed label"
  2807. msgid "Retraction Prime Speed"
  2808. msgstr "Visszahúzás előtolási sebesség"
  2809. #: /fdmprinter.def.json
  2810. msgctxt "retraction_retract_speed label"
  2811. msgid "Retraction Retract Speed"
  2812. msgstr "Visszahúzás visszahúzási sebesség"
  2813. #: /fdmprinter.def.json
  2814. msgctxt "retraction_speed label"
  2815. msgid "Retraction Speed"
  2816. msgstr "Visszahúzási sebesség"
  2817. #: /fdmprinter.def.json
  2818. msgctxt "z_seam_position option right"
  2819. msgid "Right"
  2820. msgstr "Jobbra"
  2821. #: /fdmprinter.def.json
  2822. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2823. msgid "Scale Fan Speed To 0-1"
  2824. msgstr ""
  2825. #: /fdmprinter.def.json
  2826. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2827. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2828. msgstr ""
  2829. #: /fdmprinter.def.json
  2830. msgctxt "material_shrinkage_percentage label"
  2831. msgid "Scaling Factor Shrinkage Compensation"
  2832. msgstr ""
  2833. #: /fdmprinter.def.json
  2834. msgctxt "support_meshes_present label"
  2835. msgid "Scene Has Support Meshes"
  2836. msgstr ""
  2837. #: /fdmprinter.def.json
  2838. msgctxt "z_seam_corner label"
  2839. msgid "Seam Corner Preference"
  2840. msgstr "Sarok varrat preferálás"
  2841. #: /fdmprinter.def.json
  2842. msgctxt "draft_shield_height_limitation description"
  2843. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  2844. msgstr "Beállítja a huzatpajzs magasságát. Kiválasztható, hogy a modell teljes magasságában, vagy egy részleges magasságig épüljön a pajzs."
  2845. #: /fdmprinter.def.json
  2846. msgctxt "dual description"
  2847. msgid "Settings used for printing with multiple extruders."
  2848. msgstr "A több extrúderekkel rendelkező gépek nyomtatási beállításai."
  2849. #: /fdmprinter.def.json
  2850. msgctxt "command_line_settings description"
  2851. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2852. msgstr "Beállítások, amelyeket csak akkor használunk, ha a CuraEngine nem hívható meg a Cura grafikus felületéről."
  2853. #: /fdmprinter.def.json
  2854. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2855. msgid "Shared Nozzle Initial Retraction"
  2856. msgstr ""
  2857. #: /fdmprinter.def.json
  2858. msgctxt "z_seam_type option sharpest_corner"
  2859. msgid "Sharpest Corner"
  2860. msgstr "Éles sarok"
  2861. #: /fdmprinter.def.json
  2862. msgctxt "shell description"
  2863. msgid "Shell"
  2864. msgstr "Héj"
  2865. #: /fdmprinter.def.json
  2866. msgctxt "z_seam_type option shortest"
  2867. msgid "Shortest"
  2868. msgstr "Legrövidebb"
  2869. #: /fdmprinter.def.json
  2870. msgctxt "machine_show_variants label"
  2871. msgid "Show Machine Variants"
  2872. msgstr "Mutasd a gép változatait"
  2873. #: /fdmprinter.def.json
  2874. msgctxt "skin_edge_support_layers label"
  2875. msgid "Skin Edge Support Layers"
  2876. msgstr ""
  2877. #: /fdmprinter.def.json
  2878. msgctxt "skin_edge_support_thickness label"
  2879. msgid "Skin Edge Support Thickness"
  2880. msgstr ""
  2881. #: /fdmprinter.def.json
  2882. msgctxt "expand_skins_expand_distance label"
  2883. msgid "Skin Expand Distance"
  2884. msgstr "Kéreg bővítési távolság"
  2885. #: /fdmprinter.def.json
  2886. msgctxt "skin_overlap_mm label"
  2887. msgid "Skin Overlap"
  2888. msgstr "Kéreg átfedés"
  2889. #: /fdmprinter.def.json
  2890. msgctxt "skin_overlap label"
  2891. msgid "Skin Overlap Percentage"
  2892. msgstr "Felület átlapolás százaléka"
  2893. #: /fdmprinter.def.json
  2894. msgctxt "skin_preshrink label"
  2895. msgid "Skin Removal Width"
  2896. msgstr "Kéreg eltávolítás szélessége"
  2897. #: /fdmprinter.def.json
  2898. msgctxt "min_skin_width_for_expansion description"
  2899. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  2900. msgstr "Az ennél keskenyebb kéregfelületek nem bővülnek ki. Ezzel elkerülhető, hogy keskeny kéregfelületek kibővüljenek, amik akkor jönnek létre, mikor a modell külső felületének lejtése közel van a függőlegeshez."
  2901. #: /fdmprinter.def.json
  2902. msgctxt "support_zag_skip_count description"
  2903. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2904. msgstr "Ennyi kapcsolódó vonal után hagy ki egyet a törés könnyítése érdekében."
  2905. #: /fdmprinter.def.json
  2906. msgctxt "support_skip_some_zags description"
  2907. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  2908. msgstr "A támasz nyomtatásakor néhány támaszbonal összeköttetés kihagy, így a szerkezet a végső eltávolításkor, ott konnyebben el fog törni. Ezt a beállítást a cikcakk támaszmintára tudjuk alkalmazni."
  2909. #: /fdmprinter.def.json
  2910. msgctxt "adhesion_type option skirt"
  2911. msgid "Skirt"
  2912. msgstr "Szoknya"
  2913. #: /fdmprinter.def.json
  2914. msgctxt "skirt_gap label"
  2915. msgid "Skirt Distance"
  2916. msgstr "Szoknya távolság"
  2917. #: /fdmprinter.def.json
  2918. msgctxt "skirt_line_count label"
  2919. msgid "Skirt Line Count"
  2920. msgstr "Szoknya vonalszám"
  2921. #: /fdmprinter.def.json
  2922. msgctxt "acceleration_skirt_brim label"
  2923. msgid "Skirt/Brim Acceleration"
  2924. msgstr "Szoknya/perem gyorsulás"
  2925. #: /fdmprinter.def.json
  2926. msgctxt "skirt_brim_extruder_nr label"
  2927. msgid "Skirt/Brim Extruder"
  2928. msgstr ""
  2929. #: /fdmprinter.def.json
  2930. msgctxt "skirt_brim_material_flow label"
  2931. msgid "Skirt/Brim Flow"
  2932. msgstr "Szoknya/perem áramlás"
  2933. #: /fdmprinter.def.json
  2934. msgctxt "jerk_skirt_brim label"
  2935. msgid "Skirt/Brim Jerk"
  2936. msgstr "Szoknya/perem löket"
  2937. #: /fdmprinter.def.json
  2938. msgctxt "skirt_brim_line_width label"
  2939. msgid "Skirt/Brim Line Width"
  2940. msgstr "Szoknya/perem vonalszélesség"
  2941. #: /fdmprinter.def.json
  2942. msgctxt "skirt_brim_minimal_length label"
  2943. msgid "Skirt/Brim Minimum Length"
  2944. msgstr "Szoknya/Perem minimális hossz"
  2945. #: /fdmprinter.def.json
  2946. msgctxt "skirt_brim_speed label"
  2947. msgid "Skirt/Brim Speed"
  2948. msgstr "Szoknya/perem sebesség"
  2949. #: /fdmprinter.def.json
  2950. msgctxt "slicing_tolerance label"
  2951. msgid "Slicing Tolerance"
  2952. msgstr "Szeletelési tűrés"
  2953. #: /fdmprinter.def.json
  2954. msgctxt "small_feature_speed_factor_0 label"
  2955. msgid "Small Feature Initial Layer Speed"
  2956. msgstr ""
  2957. #: /fdmprinter.def.json
  2958. msgctxt "small_feature_max_length label"
  2959. msgid "Small Feature Max Length"
  2960. msgstr "Kis funkció maximális hossza"
  2961. #: /fdmprinter.def.json
  2962. msgctxt "small_feature_speed_factor label"
  2963. msgid "Small Feature Speed"
  2964. msgstr "Kis funkció sebesség"
  2965. #: /fdmprinter.def.json
  2966. msgctxt "small_hole_max_size label"
  2967. msgid "Small Hole Max Size"
  2968. msgstr "Kis lyuk maximális mérete"
  2969. #: /fdmprinter.def.json
  2970. msgctxt "small_feature_speed_factor_0 description"
  2971. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2972. msgstr ""
  2973. #: /fdmprinter.def.json
  2974. msgctxt "small_feature_speed_factor description"
  2975. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2976. msgstr ""
  2977. #: /fdmprinter.def.json
  2978. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2979. msgid "Smart Hiding"
  2980. msgstr "Okos rejtés"
  2981. #: /fdmprinter.def.json
  2982. msgctxt "smooth_spiralized_contours label"
  2983. msgid "Smooth Spiralized Contours"
  2984. msgstr "Sima, spirális kontúrok"
  2985. #: /fdmprinter.def.json
  2986. msgctxt "smooth_spiralized_contours description"
  2987. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  2988. msgstr "A Z-varrat láthatóságának csökkentése érdekében simítsa meg a spirális kontúrokat (a Z-varratnak alig láthatónak kell lennie a nyomaton, de a rétegnézetben továbbra is látható lesz). Vegye figyelembe, hogy a simítás általában elmossa a finom felület részleteit."
  2989. #: /fdmprinter.def.json
  2990. msgctxt "retraction_extra_prime_amount description"
  2991. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2992. msgstr "Valamennyi anyagveszteség léphet fel a fej üresben mozgatása során, ami az anyag csöppenéséből adódhat. Ezt a hiányt tudjuk itt tudunk kompenzálni."
  2993. #: /fdmprinter.def.json
  2994. msgctxt "wipe_retraction_extra_prime_amount description"
  2995. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2996. msgstr "Valamennyi anyag elszivároghat a törlési művelet során, ami itt kompenzálható."
  2997. #: /fdmprinter.def.json
  2998. msgctxt "blackmagic label"
  2999. msgid "Special Modes"
  3000. msgstr "Különleges módok"
  3001. #: /fdmprinter.def.json
  3002. msgctxt "speed description"
  3003. msgid "Speed"
  3004. msgstr "Sebesség"
  3005. #: /fdmprinter.def.json
  3006. msgctxt "speed label"
  3007. msgid "Speed"
  3008. msgstr "Sebesség"
  3009. #: /fdmprinter.def.json
  3010. msgctxt "wireframe_printspeed description"
  3011. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  3012. msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik."
  3013. #: /fdmprinter.def.json
  3014. msgctxt "wireframe_printspeed_down description"
  3015. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  3016. msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik."
  3017. #: /fdmprinter.def.json
  3018. msgctxt "wireframe_printspeed_up description"
  3019. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  3020. msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik."
  3021. #: /fdmprinter.def.json
  3022. msgctxt "wireframe_printspeed_bottom description"
  3023. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  3024. msgstr "Az első réteg nyomtatásának sebessége, amely az egyetlen réteg, amely megérinti a tárgyasztalt. Csak a huzalnyomásra vonatkozik."
  3025. #: /fdmprinter.def.json
  3026. msgctxt "wireframe_printspeed_flat description"
  3027. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  3028. msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik."
  3029. #: /fdmprinter.def.json
  3030. msgctxt "wipe_hop_speed description"
  3031. msgid "Speed to move the z-axis during the hop."
  3032. msgstr "Az emelési mozgáskor a Z tengely sebessége."
  3033. #: /fdmprinter.def.json
  3034. msgctxt "magic_spiralize label"
  3035. msgid "Spiralize Outer Contour"
  3036. msgstr "Külső kontúr spiralizálása"
  3037. #: /fdmprinter.def.json
  3038. msgctxt "magic_spiralize description"
  3039. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  3040. msgstr "A spirálizálás kiegyenlíti a külső él Z mozgását. Ez folyamatos Z növekedést eredményez a teljes nyomtatás során. Ez a szolgáltatás a szilárd modellt egyetlen falú, szilárd aljú nyomtatássá teszi. Ezt a funkciót csak akkor kell engedélyezni, ha minden réteg csak egyetlen részt tartalmaz."
  3041. #: /fdmprinter.def.json
  3042. msgctxt "material_standby_temperature label"
  3043. msgid "Standby Temperature"
  3044. msgstr "Készenléti hőmérséklet"
  3045. #: /fdmprinter.def.json
  3046. msgctxt "machine_start_gcode label"
  3047. msgid "Start G-code"
  3048. msgstr "Induló g-kód"
  3049. #: /fdmprinter.def.json
  3050. msgctxt "z_seam_type description"
  3051. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  3052. msgstr "Az egyes rétegekben az egyes útvonalak kiindulási pontja. Ha az egymást követő rétegek útvonalai ugyanabban a pontban kezdődnek, egy ún. függőleges varrat jelenik meg a nyomtatvány felületén. Ha a felhasználó ezt egy megadott helyhez igazítja, a varratot egyszerűbben el tudja távolítani.Van lehetőség arra is, hogy a kezdőpontok véletlenszerűen helyezkedjenek el, így azok kevésbé lesznek észrevehetők. Ha a legrövidebb utat választja, a nyomtatási folyamat gyorsabb lesz."
  3053. #: /fdmprinter.def.json
  3054. msgctxt "machine_steps_per_mm_e label"
  3055. msgid "Steps per Millimeter (E)"
  3056. msgstr "Lépés per milliméter (E)"
  3057. #: /fdmprinter.def.json
  3058. msgctxt "machine_steps_per_mm_x label"
  3059. msgid "Steps per Millimeter (X)"
  3060. msgstr "Lépés per milliméter (X)"
  3061. #: /fdmprinter.def.json
  3062. msgctxt "machine_steps_per_mm_y label"
  3063. msgid "Steps per Millimeter (Y)"
  3064. msgstr "Lépés per milliméter (Y)"
  3065. #: /fdmprinter.def.json
  3066. msgctxt "machine_steps_per_mm_z label"
  3067. msgid "Steps per Millimeter (Z)"
  3068. msgstr "Lépés per milliméter (Z)"
  3069. #: /fdmprinter.def.json
  3070. msgctxt "wireframe_strategy description"
  3071. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  3072. msgstr "Stratégia annak biztosítására, hogy két egymást követő réteg kapcsolódjon minden egyes csatlakozási ponthoz. A visszahúzás lehetővé teszi, hogy a felfelé mutató vonalak a megfelelő helyzetben megkeményedjenek, de ez az adagolókerék megcsúszását, és a szál eldarálását okozhatja. Egy felfelé mutató vonal végén csomót lehet készíteni, hogy növeljük az ahhoz való csatlakozás eredményességét, és hagyjuk, hogy a vonal vége lehűljön; ez azonban lassú nyomtatási sebességet igényelhet. Egy másik stratégia, a felfelé mutató vonal tetejének elmaradásának kompenzálása; azonban a vonalak nem mindig esnek le a várt módon."
  3073. #: /fdmprinter.def.json
  3074. msgctxt "support description"
  3075. msgid "Support"
  3076. msgstr "Támaszték"
  3077. #: /fdmprinter.def.json
  3078. msgctxt "support label"
  3079. msgid "Support"
  3080. msgstr "Támaszték"
  3081. #: /fdmprinter.def.json
  3082. msgctxt "acceleration_support label"
  3083. msgid "Support Acceleration"
  3084. msgstr "Támaszték gyorsulás"
  3085. #: /fdmprinter.def.json
  3086. msgctxt "support_bottom_distance label"
  3087. msgid "Support Bottom Distance"
  3088. msgstr "Támasz alsó távolság"
  3089. #: /fdmprinter.def.json
  3090. msgctxt "support_brim_line_count label"
  3091. msgid "Support Brim Line Count"
  3092. msgstr "Támasz perem vonalak száma"
  3093. #: /fdmprinter.def.json
  3094. msgctxt "support_brim_width label"
  3095. msgid "Support Brim Width"
  3096. msgstr "Támasz perem szélesség"
  3097. #: /fdmprinter.def.json
  3098. msgctxt "support_zag_skip_count label"
  3099. msgid "Support Chunk Line Count"
  3100. msgstr "Törésvonalak száma"
  3101. #: /fdmprinter.def.json
  3102. msgctxt "support_skip_zag_per_mm label"
  3103. msgid "Support Chunk Size"
  3104. msgstr "Törés méret"
  3105. #: /fdmprinter.def.json
  3106. msgctxt "support_infill_rate label"
  3107. msgid "Support Density"
  3108. msgstr "Támasz sűrűség"
  3109. #: /fdmprinter.def.json
  3110. msgctxt "support_xy_overrides_z label"
  3111. msgid "Support Distance Priority"
  3112. msgstr "Támasz távolság elsődlegesség"
  3113. #: /fdmprinter.def.json
  3114. msgctxt "support_extruder_nr label"
  3115. msgid "Support Extruder"
  3116. msgstr "Támasz extrúder"
  3117. #: /fdmprinter.def.json
  3118. msgctxt "acceleration_support_bottom label"
  3119. msgid "Support Floor Acceleration"
  3120. msgstr "Támasz alapzat gyorsulás"
  3121. #: /fdmprinter.def.json
  3122. msgctxt "support_bottom_density label"
  3123. msgid "Support Floor Density"
  3124. msgstr "Alsó interfész sűrűség"
  3125. #: /fdmprinter.def.json
  3126. msgctxt "support_bottom_extruder_nr label"
  3127. msgid "Support Floor Extruder"
  3128. msgstr "Támasz fedél extruder"
  3129. #: /fdmprinter.def.json
  3130. msgctxt "support_bottom_material_flow label"
  3131. msgid "Support Floor Flow"
  3132. msgstr "Támasz alsó áramlás"
  3133. #: /fdmprinter.def.json
  3134. msgctxt "support_bottom_offset label"
  3135. msgid "Support Floor Horizontal Expansion"
  3136. msgstr "Interfészaljzat vízszintes bővítés"
  3137. #: /fdmprinter.def.json
  3138. msgctxt "jerk_support_bottom label"
  3139. msgid "Support Floor Jerk"
  3140. msgstr "Támasz alapzat löket"
  3141. #: /fdmprinter.def.json
  3142. msgctxt "support_bottom_angles label"
  3143. msgid "Support Floor Line Directions"
  3144. msgstr "Alsó interfész irány"
  3145. #: /fdmprinter.def.json
  3146. msgctxt "support_bottom_line_distance label"
  3147. msgid "Support Floor Line Distance"
  3148. msgstr "Alsó interfész vonal távolság"
  3149. #: /fdmprinter.def.json
  3150. msgctxt "support_bottom_line_width label"
  3151. msgid "Support Floor Line Width"
  3152. msgstr "Támasz padlóvonal szélesség"
  3153. #: /fdmprinter.def.json
  3154. msgctxt "support_bottom_pattern label"
  3155. msgid "Support Floor Pattern"
  3156. msgstr "Alsó interfész minta"
  3157. #: /fdmprinter.def.json
  3158. msgctxt "speed_support_bottom label"
  3159. msgid "Support Floor Speed"
  3160. msgstr "Támasz alapzat sebesség"
  3161. #: /fdmprinter.def.json
  3162. msgctxt "support_bottom_height label"
  3163. msgid "Support Floor Thickness"
  3164. msgstr "Alsó interfész vastagság"
  3165. #: /fdmprinter.def.json
  3166. msgctxt "support_material_flow label"
  3167. msgid "Support Flow"
  3168. msgstr "Támasz áramlás"
  3169. #: /fdmprinter.def.json
  3170. msgctxt "support_offset label"
  3171. msgid "Support Horizontal Expansion"
  3172. msgstr "Vízszintes támasz bővítés"
  3173. #: /fdmprinter.def.json
  3174. msgctxt "acceleration_support_infill label"
  3175. msgid "Support Infill Acceleration"
  3176. msgstr "Támasz kitöltés gyorsulás"
  3177. #: /fdmprinter.def.json
  3178. msgctxt "support_infill_extruder_nr label"
  3179. msgid "Support Infill Extruder"
  3180. msgstr "Támasz kitöltés extruder"
  3181. #: /fdmprinter.def.json
  3182. msgctxt "jerk_support_infill label"
  3183. msgid "Support Infill Jerk"
  3184. msgstr "Támasz kitöltés löket"
  3185. #: /fdmprinter.def.json
  3186. msgctxt "support_infill_sparse_thickness label"
  3187. msgid "Support Infill Layer Thickness"
  3188. msgstr "Támasz kitöltési rétegvastagság"
  3189. #: /fdmprinter.def.json
  3190. msgctxt "support_infill_angles label"
  3191. msgid "Support Infill Line Directions"
  3192. msgstr "Támasz kitöltés iránya"
  3193. #: /fdmprinter.def.json
  3194. msgctxt "speed_support_infill label"
  3195. msgid "Support Infill Speed"
  3196. msgstr "Támasz kitöltési sebesség"
  3197. #: /fdmprinter.def.json
  3198. msgctxt "acceleration_support_interface label"
  3199. msgid "Support Interface Acceleration"
  3200. msgstr "Támasz interfész gyorsulás"
  3201. #: /fdmprinter.def.json
  3202. msgctxt "support_interface_density label"
  3203. msgid "Support Interface Density"
  3204. msgstr "Interfész sűrűség"
  3205. #: /fdmprinter.def.json
  3206. msgctxt "support_interface_extruder_nr label"
  3207. msgid "Support Interface Extruder"
  3208. msgstr "Támasz interfész extruder"
  3209. #: /fdmprinter.def.json
  3210. msgctxt "support_interface_material_flow label"
  3211. msgid "Support Interface Flow"
  3212. msgstr "Támasz interfész áramlás"
  3213. #: /fdmprinter.def.json
  3214. msgctxt "support_interface_offset label"
  3215. msgid "Support Interface Horizontal Expansion"
  3216. msgstr "Támasz interfész vízszintes bővítés"
  3217. #: /fdmprinter.def.json
  3218. msgctxt "jerk_support_interface label"
  3219. msgid "Support Interface Jerk"
  3220. msgstr "Támasz interfész löket"
  3221. #: /fdmprinter.def.json
  3222. msgctxt "support_interface_angles label"
  3223. msgid "Support Interface Line Directions"
  3224. msgstr "Támaszinterfész vonal irány"
  3225. #: /fdmprinter.def.json
  3226. msgctxt "support_interface_line_width label"
  3227. msgid "Support Interface Line Width"
  3228. msgstr "Támasz interfész vonalszélesség"
  3229. #: /fdmprinter.def.json
  3230. msgctxt "support_interface_pattern label"
  3231. msgid "Support Interface Pattern"
  3232. msgstr "Interfész minta"
  3233. #: /fdmprinter.def.json
  3234. msgctxt "support_interface_skip_height label"
  3235. msgid "Support Interface Resolution"
  3236. msgstr "Interfész felosztás"
  3237. #: /fdmprinter.def.json
  3238. msgctxt "speed_support_interface label"
  3239. msgid "Support Interface Speed"
  3240. msgstr "Támasz interfész sebesség"
  3241. #: /fdmprinter.def.json
  3242. msgctxt "support_interface_height label"
  3243. msgid "Support Interface Thickness"
  3244. msgstr "Interfész vastagság"
  3245. #: /fdmprinter.def.json
  3246. msgctxt "jerk_support label"
  3247. msgid "Support Jerk"
  3248. msgstr "Támasz löket"
  3249. #: /fdmprinter.def.json
  3250. msgctxt "support_join_distance label"
  3251. msgid "Support Join Distance"
  3252. msgstr "Támasz kapcsolódási távolság"
  3253. #: /fdmprinter.def.json
  3254. msgctxt "support_line_distance label"
  3255. msgid "Support Line Distance"
  3256. msgstr "Támasz vonal távolság"
  3257. #: /fdmprinter.def.json
  3258. msgctxt "support_line_width label"
  3259. msgid "Support Line Width"
  3260. msgstr "Támasz vonalszélesség"
  3261. #: /fdmprinter.def.json
  3262. msgctxt "support_mesh label"
  3263. msgid "Support Mesh"
  3264. msgstr "Támasz háló"
  3265. #: /fdmprinter.def.json
  3266. msgctxt "support_angle label"
  3267. msgid "Support Overhang Angle"
  3268. msgstr "Támasz túlnyúlási szög"
  3269. #: /fdmprinter.def.json
  3270. msgctxt "support_pattern label"
  3271. msgid "Support Pattern"
  3272. msgstr "Támasz minta"
  3273. #: /fdmprinter.def.json
  3274. msgctxt "support_type label"
  3275. msgid "Support Placement"
  3276. msgstr "Támasz elhelyezés"
  3277. #: /fdmprinter.def.json
  3278. msgctxt "acceleration_support_roof label"
  3279. msgid "Support Roof Acceleration"
  3280. msgstr "Támasz fedél gyorsulás"
  3281. #: /fdmprinter.def.json
  3282. msgctxt "support_roof_density label"
  3283. msgid "Support Roof Density"
  3284. msgstr "Felső interfész sűrűség"
  3285. #: /fdmprinter.def.json
  3286. msgctxt "support_roof_extruder_nr label"
  3287. msgid "Support Roof Extruder"
  3288. msgstr "Támasz alapzat extruder"
  3289. #: /fdmprinter.def.json
  3290. msgctxt "support_roof_material_flow label"
  3291. msgid "Support Roof Flow"
  3292. msgstr "Támasz felső áramlás"
  3293. #: /fdmprinter.def.json
  3294. msgctxt "support_roof_offset label"
  3295. msgid "Support Roof Horizontal Expansion"
  3296. msgstr "Interfészfedél vízszintes bővítés"
  3297. #: /fdmprinter.def.json
  3298. msgctxt "jerk_support_roof label"
  3299. msgid "Support Roof Jerk"
  3300. msgstr "Támasz fedél löket"
  3301. #: /fdmprinter.def.json
  3302. msgctxt "support_roof_angles label"
  3303. msgid "Support Roof Line Directions"
  3304. msgstr "Felső interfész irány"
  3305. #: /fdmprinter.def.json
  3306. msgctxt "support_roof_line_distance label"
  3307. msgid "Support Roof Line Distance"
  3308. msgstr "Felső interfész vonal távolság"
  3309. #: /fdmprinter.def.json
  3310. msgctxt "support_roof_line_width label"
  3311. msgid "Support Roof Line Width"
  3312. msgstr "Támasz tetővonal szélesség"
  3313. #: /fdmprinter.def.json
  3314. msgctxt "support_roof_pattern label"
  3315. msgid "Support Roof Pattern"
  3316. msgstr "Felső interfész minta"
  3317. #: /fdmprinter.def.json
  3318. msgctxt "speed_support_roof label"
  3319. msgid "Support Roof Speed"
  3320. msgstr "Támasz fedél sebesség"
  3321. #: /fdmprinter.def.json
  3322. msgctxt "support_roof_height label"
  3323. msgid "Support Roof Thickness"
  3324. msgstr "Felső interfész vastagság"
  3325. #: /fdmprinter.def.json
  3326. msgctxt "speed_support label"
  3327. msgid "Support Speed"
  3328. msgstr "Támasz sebesség"
  3329. #: /fdmprinter.def.json
  3330. msgctxt "support_bottom_stair_step_height label"
  3331. msgid "Support Stair Step Height"
  3332. msgstr "Támasz lépcső magasság"
  3333. #: /fdmprinter.def.json
  3334. msgctxt "support_bottom_stair_step_width label"
  3335. msgid "Support Stair Step Maximum Width"
  3336. msgstr "Támasz lépcső maximális szélesség"
  3337. #: /fdmprinter.def.json
  3338. msgctxt "support_bottom_stair_step_min_slope label"
  3339. msgid "Support Stair Step Minimum Slope Angle"
  3340. msgstr ""
  3341. #: /fdmprinter.def.json
  3342. msgctxt "support_structure label"
  3343. msgid "Support Structure"
  3344. msgstr ""
  3345. #: /fdmprinter.def.json
  3346. msgctxt "support_top_distance label"
  3347. msgid "Support Top Distance"
  3348. msgstr "Támasz felső távolság"
  3349. #: /fdmprinter.def.json
  3350. msgctxt "support_wall_count label"
  3351. msgid "Support Wall Line Count"
  3352. msgstr "Támasz falak száma"
  3353. #: /fdmprinter.def.json
  3354. msgctxt "support_xy_distance label"
  3355. msgid "Support X/Y Distance"
  3356. msgstr "Támasz X/Y távolság"
  3357. #: /fdmprinter.def.json
  3358. msgctxt "support_z_distance label"
  3359. msgid "Support Z Distance"
  3360. msgstr "Támasz Z távolság"
  3361. #: /fdmprinter.def.json
  3362. msgctxt "support_supported_skin_fan_speed label"
  3363. msgid "Supported Skin Fan Speed"
  3364. msgstr "Kéreghűtés sebesség támogatás"
  3365. #: /fdmprinter.def.json
  3366. msgctxt "magic_mesh_surface_mode option surface"
  3367. msgid "Surface"
  3368. msgstr "Felület"
  3369. #: /fdmprinter.def.json
  3370. msgctxt "material_surface_energy label"
  3371. msgid "Surface Energy"
  3372. msgstr "Felületi energia"
  3373. #: /fdmprinter.def.json
  3374. msgctxt "magic_mesh_surface_mode label"
  3375. msgid "Surface Mode"
  3376. msgstr "Felszín mód"
  3377. #: /fdmprinter.def.json
  3378. msgctxt "material_adhesion_tendency description"
  3379. msgid "Surface adhesion tendency."
  3380. msgstr "A felület tapadási jellemzője."
  3381. #: /fdmprinter.def.json
  3382. msgctxt "material_surface_energy description"
  3383. msgid "Surface energy."
  3384. msgstr "Felületi energia."
  3385. #: /fdmprinter.def.json
  3386. msgctxt "alternate_carve_order description"
  3387. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  3388. msgstr "Bekapcsolja, hogy minden egyes rétegnél, ahol kereszteződő hálók találhatóak, azok fonódjanak össze. Ha kikapcsoljuk ezt az opciót, akkor a kereszteződő hálók közül az egyik megkapja az átfedésben lévő háló teljes térfogatát, míg a többi hálót eltávolítja."
  3389. #: /fdmprinter.def.json
  3390. msgctxt "adaptive_layer_height_threshold description"
  3391. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  3392. msgstr ""
  3393. #: /fdmprinter.def.json
  3394. msgctxt "layer_start_x description"
  3395. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3396. msgstr "Az az X koordináta, melynek a közelében található a rétegek X nyomtatási kezdőpontja."
  3397. #: /fdmprinter.def.json
  3398. msgctxt "z_seam_x description"
  3399. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3400. msgstr "Az az X koordináta, ahol a rétegek nyomtatását kezdeni fogja."
  3401. #: /fdmprinter.def.json
  3402. msgctxt "extruder_prime_pos_x description"
  3403. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3404. msgstr "A fejnek az az X koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás."
  3405. #: /fdmprinter.def.json
  3406. msgctxt "layer_start_y description"
  3407. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3408. msgstr "Az az Y koordináta, melynek a közelében található a rétegek Y nyomtatási kezdőpontja."
  3409. #: /fdmprinter.def.json
  3410. msgctxt "z_seam_y description"
  3411. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3412. msgstr "Az az Y koordináta, ahol a rétegek nyomtatását kezdeni fogja."
  3413. #: /fdmprinter.def.json
  3414. msgctxt "extruder_prime_pos_y description"
  3415. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3416. msgstr "A fejnek az az Y koordinátája, ahol a fúvóka előkészül ahhoz, hogy elkezdődjön a nyomtatás."
  3417. #: /fdmprinter.def.json
  3418. msgctxt "extruder_prime_pos_z description"
  3419. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3420. msgstr "Az a Z koordináta pont, ahol a fej, illetve a fúvóka áll, a nyomtatási folyamat megkezdésekor."
  3421. #: /fdmprinter.def.json
  3422. msgctxt "acceleration_print_layer_0 description"
  3423. msgid "The acceleration during the printing of the initial layer."
  3424. msgstr "Az a gyorsulási érték, amit az első réteg nyomtatása alatt használ."
  3425. #: /fdmprinter.def.json
  3426. msgctxt "acceleration_layer_0 description"
  3427. msgid "The acceleration for the initial layer."
  3428. msgstr "A legelső rétegnél használt gyorsulási érték."
  3429. #: /fdmprinter.def.json
  3430. msgctxt "acceleration_travel_layer_0 description"
  3431. msgid "The acceleration for travel moves in the initial layer."
  3432. msgstr "A kezdő réteg nyomtatása alatt, a fej utaztatásához használt gyorsulási érték."
  3433. #: /fdmprinter.def.json
  3434. msgctxt "jerk_travel_layer_0 description"
  3435. msgid "The acceleration for travel moves in the initial layer."
  3436. msgstr "Az utazási mozgás gyorsítása a kezdő rétegnél."
  3437. #: /fdmprinter.def.json
  3438. msgctxt "acceleration_wall_x description"
  3439. msgid "The acceleration with which all inner walls are printed."
  3440. msgstr "A belső falak nyomtatása alatt használt gyorsulás."
  3441. #: /fdmprinter.def.json
  3442. msgctxt "acceleration_infill description"
  3443. msgid "The acceleration with which infill is printed."
  3444. msgstr "A kitöltés nyomtatása alatt használt gyorsulási érték."
  3445. #: /fdmprinter.def.json
  3446. msgctxt "acceleration_ironing description"
  3447. msgid "The acceleration with which ironing is performed."
  3448. msgstr "A vasalás közben használt gyorsulási érték."
  3449. #: /fdmprinter.def.json
  3450. msgctxt "acceleration_print description"
  3451. msgid "The acceleration with which printing happens."
  3452. msgstr "A nyomtatás közbeni gyorsulás."
  3453. #: /fdmprinter.def.json
  3454. msgctxt "raft_base_acceleration description"
  3455. msgid "The acceleration with which the base raft layer is printed."
  3456. msgstr "A tutajalap nyomtatásához kapcsolódó gyorsulási érték."
  3457. #: /fdmprinter.def.json
  3458. msgctxt "acceleration_support_bottom description"
  3459. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  3460. msgstr "A támaszok legalsó rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulást választ, akkor segíti a támasz tapadását a modellek tetején."
  3461. #: /fdmprinter.def.json
  3462. msgctxt "acceleration_support_infill description"
  3463. msgid "The acceleration with which the infill of support is printed."
  3464. msgstr "A támaszok kitöltésének nyomtatása alatt használt gyorsulás."
  3465. #: /fdmprinter.def.json
  3466. msgctxt "raft_interface_acceleration description"
  3467. msgid "The acceleration with which the middle raft layer is printed."
  3468. msgstr "A tutaj középső rétegeinek nyomtatásához kapcsolódó gyorsulási érték."
  3469. #: /fdmprinter.def.json
  3470. msgctxt "acceleration_wall_0 description"
  3471. msgid "The acceleration with which the outermost walls are printed."
  3472. msgstr "A külső falak nyomtatása alatt használt gyorsulás."
  3473. #: /fdmprinter.def.json
  3474. msgctxt "acceleration_prime_tower description"
  3475. msgid "The acceleration with which the prime tower is printed."
  3476. msgstr "Az előtorony nyomtatása során használt gyorsulás."
  3477. #: /fdmprinter.def.json
  3478. msgctxt "raft_acceleration description"
  3479. msgid "The acceleration with which the raft is printed."
  3480. msgstr "A tutaj nyomtatásához kapcsolódó gyorsulási érték."
  3481. #: /fdmprinter.def.json
  3482. msgctxt "acceleration_support_interface description"
  3483. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3484. msgstr "A támaszok legalsó és legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén."
  3485. #: /fdmprinter.def.json
  3486. msgctxt "acceleration_support_roof description"
  3487. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3488. msgstr "A támaszok legfelső rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulási értéket használunk, az segít javítani a kinyúlások nyomtatási minőségén."
  3489. #: /fdmprinter.def.json
  3490. msgctxt "acceleration_skirt_brim description"
  3491. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  3492. msgstr "Az a gyorsulás, amellyel a szoknya és a perem nyomtatásra kerül. Általában ezt a kezdeti réteg gyorsulásával hajtják végre, de néha érdemes lehet kinyomtatni a szoknyát vagy a karimát más gyorsulással."
  3493. #: /fdmprinter.def.json
  3494. msgctxt "acceleration_support description"
  3495. msgid "The acceleration with which the support structure is printed."
  3496. msgstr "A támaszok nyomtatása alatt használt gyorsulás."
  3497. #: /fdmprinter.def.json
  3498. msgctxt "raft_surface_acceleration description"
  3499. msgid "The acceleration with which the top raft layers are printed."
  3500. msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték."
  3501. #: /fdmprinter.def.json
  3502. msgctxt "acceleration_wall description"
  3503. msgid "The acceleration with which the walls are printed."
  3504. msgstr "A falak nyomtatása alatt használt gyorsulás."
  3505. #: /fdmprinter.def.json
  3506. msgctxt "acceleration_roofing description"
  3507. msgid "The acceleration with which top surface skin layers are printed."
  3508. msgstr "A legfelső, záró felületi rétegek nyomtatása alatt használt gyorsulás."
  3509. #: /fdmprinter.def.json
  3510. msgctxt "acceleration_topbottom description"
  3511. msgid "The acceleration with which top/bottom layers are printed."
  3512. msgstr "Az alsó és felső rétegek nyomtatása alatt használt gyorsulás."
  3513. #: /fdmprinter.def.json
  3514. msgctxt "acceleration_travel description"
  3515. msgid "The acceleration with which travel moves are made."
  3516. msgstr "A fej utaztatása során használt gyorsulás."
  3517. #: /fdmprinter.def.json
  3518. msgctxt "ironing_flow description"
  3519. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  3520. msgstr "A vasalás során használt adagolási mennyiség. Ez segít megtartani a nyomást az olvadókamrában, ami elősegíti a felületi hézagok kitöltését.A beállításkor figyelembe kell venni, hogy a nyomás ne legyen túl nagy, mivel ez túlzott anyagáramláshoz vezethet, és elmosódásokat hozhat létre a felületen."
  3521. #: /fdmprinter.def.json
  3522. msgctxt "infill_overlap description"
  3523. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  3524. msgstr "Az átfedés százalékos mértéke a kitöltés és a falak között.Meghatározása a kitöltés vonalszélességének százalékában történik.Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kitöltéshez."
  3525. #: /fdmprinter.def.json
  3526. msgctxt "infill_overlap_mm description"
  3527. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3528. msgstr "Az átfedés mértéke a kitöltés és a falak között. Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kitöltéshez."
  3529. #: /fdmprinter.def.json
  3530. msgctxt "switch_extruder_retraction_amount description"
  3531. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  3532. msgstr "A visszahúzás távolsága az extruderek váltásakor. 0-ra állítva egyáltalán nincs visszahúzás.Ennek a távolságnak általában meg kell egyeznie a hőzóna hosszával."
  3533. #: /fdmprinter.def.json
  3534. msgctxt "machine_nozzle_expansion_angle description"
  3535. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3536. msgstr "A vízszintes sík és a kúpos rész közötti szög a fúvóka vége fölött."
  3537. #: /fdmprinter.def.json
  3538. msgctxt "support_tower_roof_angle description"
  3539. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3540. msgstr "A torony fedél szöge. A magasabb érték hegyes tornytetőket eredményez.Az alacsonyabb szöggel laposabb fedelet készíthetünk a toronynak."
  3541. #: /fdmprinter.def.json
  3542. msgctxt "mold_angle description"
  3543. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  3544. msgstr "A forma számára kialakított külső falak túlnyúlási szöge. 0 ° -kal a forma külső héja függőleges lesz, míg 90 ° -kal a modell külső része a modell kontúrját követi."
  3545. #: /fdmprinter.def.json
  3546. msgctxt "support_tree_branch_diameter_angle description"
  3547. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  3548. msgstr "Az ágak átmérőjének változási szöge. Az ágak felülről lefelé vastagodnak. Ha a szög 0, akkor az ágak átmérője egyenletes, teljes hosszukban.Egy kis szög érték növelheti a fa tartásának stabilitását."
  3549. #: /fdmprinter.def.json
  3550. msgctxt "support_tree_angle description"
  3551. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3552. msgstr "Az ágak szöge. Használjon alacsonyabb szöget, hogy függőlegesebb és stabilabbak legyenek. A jobb kinyúláshoz használjon nagyobb szöget."
  3553. #: /fdmprinter.def.json
  3554. msgctxt "support_conical_angle description"
  3555. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  3556. msgstr "A kúpos támasz dőlésszöge. A 0 fok függőleges és 90 fok vízszintes. A kisebb szögek miatt a tartószerkezet erősebb, de több anyagból áll. A negatív szögek miatt a támasz talpa szélesebb, mint a teteje."
  3557. #: /fdmprinter.def.json
  3558. msgctxt "magic_fuzzy_skin_point_density description"
  3559. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  3560. msgstr "Az egyes poligonokon egy rétegben megjelenő pontok átlagos sűrűsége.Vegyük figyelembe, hogy az eredeti sokszög pontok itt eldobásra kerülnek, így az alacsony sűrűség csökkenti a felbontást."
  3561. #: /fdmprinter.def.json
  3562. msgctxt "magic_fuzzy_skin_point_dist description"
  3563. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  3564. msgstr "Az egyes vonalszakaszokon létrehozott rücskök közötti átlagos távolság. Mivel az eredeti pontok eldobásra kerülnek, a sok rücsök a felbontás csökkenését fogja eredményezni. Ennek az értéknek meg kell haladnia a rücskös falvastagság felét."
  3565. #: /fdmprinter.def.json
  3566. msgctxt "machine_acceleration description"
  3567. msgid "The default acceleration of print head movement."
  3568. msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása."
  3569. #: /fdmprinter.def.json
  3570. msgctxt "default_material_print_temperature description"
  3571. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  3572. msgstr "A nyomtatáshoz használt alapértelmezett hőmérséklet. Ez az alap hőmérséklete az adott alapanyagnak. Minden egyéb nyomtatási hőmérséklet eltérés ettől az alaptól kerül számításra"
  3573. #: /fdmprinter.def.json
  3574. msgctxt "default_material_bed_temperature description"
  3575. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  3576. msgstr "A fűthető tárgyasztal alapértelmezett hőmérséklete. Ez a hőmérséklet az alap, és ehhez viszonyítjuk a többi hőmérséklet értékét"
  3577. #: /fdmprinter.def.json
  3578. msgctxt "bridge_skin_density description"
  3579. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3580. msgstr "A híd felszínének a sűrűsége. A 100 -nál kisebb értéknöveli a hézagokat a felszíni vonalak között."
  3581. #: /fdmprinter.def.json
  3582. msgctxt "support_bottom_density description"
  3583. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3584. msgstr "Beállítja a támasz interfész sűrűségét a támasz alsó felületein.A magasabb érték nagyobb tapadást tesz lehetővé a támasznak, a modell felületén, azonban a támaszt nehezebb lesz eltávolítani."
  3585. #: /fdmprinter.def.json
  3586. msgctxt "support_roof_density description"
  3587. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3588. msgstr "Beállítja a támasz interfész sűrűségét a támasz felső felületein.A magasabb érték jobb minőségű túlnyúlás nyomtatást tesz lehetővém viszont a támaszt nehezebb lesz eltávolítani."
  3589. #: /fdmprinter.def.json
  3590. msgctxt "bridge_skin_density_2 description"
  3591. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3592. msgstr "A második hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között."
  3593. #: /fdmprinter.def.json
  3594. msgctxt "bridge_skin_density_3 description"
  3595. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3596. msgstr "A harmadik hídréteg sűrűsége. A 100-nál kisebb értékek növelik a hézagokat a felszíni vonalak között."
  3597. #: /fdmprinter.def.json
  3598. msgctxt "machine_depth description"
  3599. msgid "The depth (Y-direction) of the printable area."
  3600. msgstr "A nyomtatási terület mélysége (Y-irány)."
  3601. #: /fdmprinter.def.json
  3602. msgctxt "support_tower_diameter description"
  3603. msgid "The diameter of a special tower."
  3604. msgstr "A speciális támasz torony átméröje."
  3605. #: /fdmprinter.def.json
  3606. msgctxt "support_tree_branch_diameter description"
  3607. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3608. msgstr "A támasz legvékonyabb ágainak átmérője. A vastagabb ágak erősebbek. Az alap felé eső ágak vastagabbak lesznek, mint ez a méret."
  3609. #: /fdmprinter.def.json
  3610. msgctxt "machine_feeder_wheel_diameter description"
  3611. msgid "The diameter of the wheel that drives the material in the feeder."
  3612. msgstr "A nyomtatószál adagoló kerék átmérője az extruderben."
  3613. #: /fdmprinter.def.json
  3614. msgctxt "support_tree_max_diameter description"
  3615. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  3616. msgstr ""
  3617. #: /fdmprinter.def.json
  3618. msgctxt "adaptive_layer_height_variation_step description"
  3619. msgid "The difference in height of the next layer height compared to the previous one."
  3620. msgstr "A következő réteg magasságának különbsége az előzőhöz képest."
  3621. #: /fdmprinter.def.json
  3622. msgctxt "ironing_line_spacing description"
  3623. msgid "The distance between the lines of ironing."
  3624. msgstr "A vasalási vonalak közötti távolság."
  3625. #: /fdmprinter.def.json
  3626. msgctxt "travel_avoid_distance description"
  3627. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3628. msgstr "A fúvóka és a már kinyomtatott részek közötti távolság, ha kerülő útvonalakat használunk."
  3629. #: /fdmprinter.def.json
  3630. msgctxt "raft_base_line_spacing description"
  3631. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3632. msgstr "Az tutajalap-réteg vonalai közötti távolság. A széles távolság megkönnyíti a tutaj eltávolítását a tárgyasztalról."
  3633. #: /fdmprinter.def.json
  3634. msgctxt "raft_interface_line_spacing description"
  3635. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3636. msgstr "A tutajvonalak közötti távolság a középső tutajrétegben. A középső távolságnak meglehetősen szélesnek kell lennie, ugyanakkor elég sűrűnek is ahhoz, hogy megfelelően támassza a felső tutajrétegeket."
  3637. #: /fdmprinter.def.json
  3638. msgctxt "raft_surface_line_spacing description"
  3639. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3640. msgstr "A tutajvonalak közötti távolság a felső tutajrétegeknél. A távolságnak meg kell egyeznie a vonalszélességgel, hogy a felület tömör legyen."
  3641. #: /fdmprinter.def.json
  3642. msgctxt "wireframe_roof_inset description"
  3643. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  3644. msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik."
  3645. #: /fdmprinter.def.json
  3646. msgctxt "brim_width description"
  3647. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3648. msgstr "Az a szélesség, amilyen széles lesz a Perem, a nyomtatott tárgy szélétől számítva. A nagyobb perem nagyobb tapadást fog eredményeznim viszont csökkenti az effektív használható nyomtatási területet."
  3649. #: /fdmprinter.def.json
  3650. msgctxt "machine_heat_zone_length description"
  3651. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3652. msgstr "Az a távolság, ami a fúvóka csúcstól a még szilárd nyomtatószálig tart.Ez gyakorlatilag az esetek nagy részében a fúvóka teljes hossza, a csúcstól a torokig tart."
  3653. #: /fdmprinter.def.json
  3654. msgctxt "wireframe_roof_drag_along description"
  3655. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  3656. msgstr "A belső vonal végdarabjának távolsága, amely elhúzódik, amikor visszamegy a tető külső körvonalaihoz. Ezt a távolságot kompenzálni kell. Csak a huzalnyomásra vonatkozik."
  3657. #: /fdmprinter.def.json
  3658. msgctxt "bottom_skin_expand_distance description"
  3659. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  3660. msgstr "Az alsó kéreg felületek a kitöltésig jönnek létre. Ha bővítjük az alsó kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez."
  3661. #: /fdmprinter.def.json
  3662. msgctxt "expand_skins_expand_distance description"
  3663. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  3664. msgstr "A kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez."
  3665. #: /fdmprinter.def.json
  3666. msgctxt "top_skin_expand_distance description"
  3667. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  3668. msgstr "A felső kéreg felületek a kitöltésig jönnek létre. Ha bővítjük a felső kérget, és növeljük ezt az értéket, akkor jobb tapadást érhetünk el a kitöltéssel kapcsolatban, illetve a szomszédos falak jobban tudnak tapadni a kéreghez. Az alacsonyabb érték anyagmegtakarítást eredményez."
  3669. #: /fdmprinter.def.json
  3670. msgctxt "wipe_move_distance description"
  3671. msgid "The distance to move the head back and forth across the brush."
  3672. msgstr "A fej oda-vissza mozgatásának távolsága a kefén."
  3673. #: /fdmprinter.def.json
  3674. msgctxt "wireframe_roof_fall_down description"
  3675. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  3676. msgstr "A 'vékony, levegőben' nyomtatott vízszintes tetővonalak nyomtatáskor csökkennek a távolságok. Ezeket a távolságokat kompenzálni kell. Csak a huzalnyomásra vonatkozik."
  3677. #: /fdmprinter.def.json
  3678. msgctxt "lightning_infill_prune_angle description"
  3679. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  3680. msgstr ""
  3681. #: /fdmprinter.def.json
  3682. msgctxt "material_extrusion_cool_down_speed description"
  3683. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  3684. msgstr "Az a sebesség, amivel a fúvóka lehűl az extrudálás közben.Ugyanezt az értéket kell használni az extrudálás közbeni felmelegedésre is."
  3685. #: /fdmprinter.def.json
  3686. msgctxt "support_extruder_nr_layer_0 description"
  3687. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3688. msgstr "Az az extruder szerelvény, amivel az első réteg támasz kitöltését nyomtatjuk.Ezt multi-extruderes gépeken használhatjuk."
  3689. #: /fdmprinter.def.json
  3690. msgctxt "raft_base_extruder_nr description"
  3691. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3692. msgstr ""
  3693. #: /fdmprinter.def.json
  3694. msgctxt "support_bottom_extruder_nr description"
  3695. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3696. msgstr "Az az extruder, ami a támaszok fedelét nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3697. #: /fdmprinter.def.json
  3698. msgctxt "support_infill_extruder_nr description"
  3699. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3700. msgstr "Az az extruder szerelvény, amivel a támasztékok kitöltését nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk."
  3701. #: /fdmprinter.def.json
  3702. msgctxt "raft_interface_extruder_nr description"
  3703. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3704. msgstr ""
  3705. #: /fdmprinter.def.json
  3706. msgctxt "support_interface_extruder_nr description"
  3707. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3708. msgstr "Az az extruder, ami a támaszok alját és tetejét nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3709. #: /fdmprinter.def.json
  3710. msgctxt "support_roof_extruder_nr description"
  3711. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3712. msgstr "Az az extruder, ami a támaszok alját nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3713. #: /fdmprinter.def.json
  3714. msgctxt "skirt_brim_extruder_nr description"
  3715. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3716. msgstr ""
  3717. #: /fdmprinter.def.json
  3718. msgctxt "adhesion_extruder_nr description"
  3719. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3720. msgstr "Az az extruder, amit a tapadásnövelő felületek, szoknya, perem, tutaj nyomtatására használunk. Csak multi extruder esetén használható."
  3721. #: /fdmprinter.def.json
  3722. msgctxt "support_extruder_nr description"
  3723. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3724. msgstr "Az az extruder szerelvény, amivel a támasztékokat nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk."
  3725. #: /fdmprinter.def.json
  3726. msgctxt "raft_surface_extruder_nr description"
  3727. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3728. msgstr ""
  3729. #: /fdmprinter.def.json
  3730. msgctxt "infill_extruder_nr description"
  3731. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3732. msgstr "Az az extruder szerelvény, ami a kitöltést nyomtatja. Ez csak multi-extruderes nyomtatóknál használható."
  3733. #: /fdmprinter.def.json
  3734. msgctxt "wall_x_extruder_nr description"
  3735. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3736. msgstr "Az az extruder, amit a belső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3737. #: /fdmprinter.def.json
  3738. msgctxt "wall_0_extruder_nr description"
  3739. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3740. msgstr "Az az extruder, amit a külső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3741. #: /fdmprinter.def.json
  3742. msgctxt "top_bottom_extruder_nr description"
  3743. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3744. msgstr "Az az extruder, amit az alsó/felső felületi rétegek nyomtatásához használunk. Ezt csak multi extruder esetén használhatjuk."
  3745. #: /fdmprinter.def.json
  3746. msgctxt "roofing_extruder_nr description"
  3747. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3748. msgstr "Az az extruder, amelyik a felső réteg külső lezárását végzi.Ez a funkció csak multiextruderes gépen érhető el."
  3749. #: /fdmprinter.def.json
  3750. msgctxt "wall_extruder_nr description"
  3751. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3752. msgstr "Az az extruder, amit a falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3753. #: /fdmprinter.def.json
  3754. msgctxt "raft_base_fan_speed description"
  3755. msgid "The fan speed for the base raft layer."
  3756. msgstr "A hűtőventillátor sebessége a tutajalap rétegeinek nyomtatásakor."
  3757. #: /fdmprinter.def.json
  3758. msgctxt "raft_interface_fan_speed description"
  3759. msgid "The fan speed for the middle raft layer."
  3760. msgstr "A hűtőventillátor sebessége a tutaj középső rétegeinek nyomtatásakor."
  3761. #: /fdmprinter.def.json
  3762. msgctxt "raft_fan_speed description"
  3763. msgid "The fan speed for the raft."
  3764. msgstr "A hűtőventillátor sebessége a tutaj nyomtatásakor."
  3765. #: /fdmprinter.def.json
  3766. msgctxt "raft_surface_fan_speed description"
  3767. msgid "The fan speed for the top raft layers."
  3768. msgstr "A hűtőventillátor sebessége a tutaj felső rétegeinek nyomtatásakor."
  3769. #: /fdmprinter.def.json
  3770. msgctxt "cross_infill_density_image description"
  3771. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3772. msgstr "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt kitöltésének megfelelő helyén."
  3773. #: /fdmprinter.def.json
  3774. msgctxt "cross_support_density_image description"
  3775. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3776. msgstr "Annak a képfájlnak, aminek a fényerősség értékei meghatározzák a minimális sűrűséget a nyomtatás kereszt támasz kitöltésének megfelelő helyén."
  3777. #: /fdmprinter.def.json
  3778. msgctxt "speed_slowdown_layers description"
  3779. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  3780. msgstr "Az első pár réteget lassabban tudjuk nyomtatni, ha ezt a modell formája szükségessé teszi. Növelheti a tapadást a tárgyasztalhoz, így sikeresebb lehet a nyomtatás. A sebesség folyamatosan növekedni fog, ahogy emelkedik a rétegeken."
  3781. #: /fdmprinter.def.json
  3782. msgctxt "raft_airgap description"
  3783. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3784. msgstr "A légrés megadja, hogy a tutaj teteje és a modell alja között milyen legyena távolság. Csak az első réteget fogja megemelni ez az érték, ami így csökkenteni fogja a tutaj és a test egymáshoz tapadását. Ezáltal könnyebb lesz a nyomtatás végén eltávolítani a tutajt."
  3785. #: /fdmprinter.def.json
  3786. msgctxt "machine_height description"
  3787. msgid "The height (Z-direction) of the printable area."
  3788. msgstr "A nyomtatási terület magassága (Z-irány)."
  3789. #: /fdmprinter.def.json
  3790. msgctxt "mold_roof_height description"
  3791. msgid "The height above horizontal parts in your model which to print mold."
  3792. msgstr "A modell vízszintes részeinek feletti magasság, amelyet formaként nyomtatunk."
  3793. #: /fdmprinter.def.json
  3794. msgctxt "cool_fan_full_at_height description"
  3795. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  3796. msgstr "Az a magasság, ahol a ventillátorok a normál hűtési sebességgel forognak.Az alacsonyabb rétegekben a hűtés még kissebb, és fokozatosan növekedik a sebessége a normál szintig, ahogy eléri ezt a magasságot."
  3797. #: /fdmprinter.def.json
  3798. msgctxt "gantry_height description"
  3799. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3800. msgstr "A fúvóka csúcsa és az állványzat közötti magasságkülönbség (A keresztező X és/vagy az Y tengely állványzata)"
  3801. #: /fdmprinter.def.json
  3802. msgctxt "machine_nozzle_head_distance description"
  3803. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3804. msgstr "A fúvóka csúcsa és a nyomtatófej legalacsonyabb része (fűtőblokk) közötti magasságkülönbség."
  3805. #: /fdmprinter.def.json
  3806. msgctxt "retraction_hop_after_extruder_switch_height description"
  3807. msgid "The height difference when performing a Z Hop after extruder switch."
  3808. msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely extruder váltás után."
  3809. #: /fdmprinter.def.json
  3810. msgctxt "retraction_hop description"
  3811. msgid "The height difference when performing a Z Hop."
  3812. msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely."
  3813. #: /fdmprinter.def.json
  3814. msgctxt "wipe_hop_amount description"
  3815. msgid "The height difference when performing a Z Hop."
  3816. msgstr "A magasság, amivel a Z tenhelyt megemeljük."
  3817. #: /fdmprinter.def.json
  3818. msgctxt "layer_height description"
  3819. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3820. msgstr "Az egyes nyomtatási rétegek magassága mm -ben. A magasabb érték gyorsabb nyomtatást eredményez, viszont a minőség rosszabb lesz, mint az alacsonyabb réteg magasságnál. Azonban a kissebb rétegmagasság növeli a nyomtatási időt."
  3821. #: /fdmprinter.def.json
  3822. msgctxt "gradual_infill_step_height description"
  3823. msgid "The height of infill of a given density before switching to half the density."
  3824. msgstr "Az a kitöltési magasság, amit elérve a kitöltési sűrűség lefeleződik."
  3825. #: /fdmprinter.def.json
  3826. msgctxt "gradual_support_infill_step_height description"
  3827. msgid "The height of support infill of a given density before switching to half the density."
  3828. msgstr "A támaszkitöltés azon magassága, ahol a sűrűség feleződni fog."
  3829. #: /fdmprinter.def.json
  3830. msgctxt "layer_height_0 description"
  3831. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3832. msgstr "A kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz."
  3833. #: /fdmprinter.def.json
  3834. msgctxt "support_bottom_stair_step_height description"
  3835. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3836. msgstr "A támasz lépcsőinek magassága azona a részen, ahol a modellen támaszkodik.Ha az érték alacsony, a támasz eltávolítása nehéz lehet, viszont a túl magas érték instabillá teheti a támaszt. Ha az érték 0, akkor kikapcsolja a lépcsőt."
  3837. #: /fdmprinter.def.json
  3838. msgctxt "wireframe_height description"
  3839. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  3840. msgstr "Két vízszintes rész közötti felfelé és átlósan lefelé mutató vonalak magassága. Ez határozza meg a nettó szerkezet általános sűrűségét. Csak a huzalnyomásra vonatkozik."
  3841. #: /fdmprinter.def.json
  3842. msgctxt "brim_gap description"
  3843. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3844. msgstr ""
  3845. #: /fdmprinter.def.json
  3846. msgctxt "skirt_gap description"
  3847. msgid ""
  3848. "The horizontal distance between the skirt and the first layer of the print.\n"
  3849. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3850. msgstr ""
  3851. "A szoknya vízszintes távolsága a modell első rétegének külső szélétől. \n"
  3852. "Ez a minimális távolság. Ha a szoknya vonalak száma többszörözve van, akkor a szoknya kifelé fog nyövekedni."
  3853. #: /fdmprinter.def.json
  3854. msgctxt "lightning_infill_straightening_angle description"
  3855. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  3856. msgstr ""
  3857. #: /fdmprinter.def.json
  3858. msgctxt "infill_offset_x description"
  3859. msgid "The infill pattern is moved this distance along the X axis."
  3860. msgstr "A kitöltési minta eltolása az X tengely mentén."
  3861. #: /fdmprinter.def.json
  3862. msgctxt "infill_offset_y description"
  3863. msgid "The infill pattern is moved this distance along the Y axis."
  3864. msgstr "A kitöltési minta eltolása az Y tengely mentén."
  3865. #: /fdmprinter.def.json
  3866. msgctxt "machine_nozzle_size description"
  3867. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3868. msgstr "A fúvóka belső átmérője. Akkor változtasd meg ezt az értéket, ha nem szabványos fúvóka méretet használsz."
  3869. #: /fdmprinter.def.json
  3870. msgctxt "raft_base_jerk description"
  3871. msgid "The jerk with which the base raft layer is printed."
  3872. msgstr "A tutajalap nyomtatásakor használt löket."
  3873. #: /fdmprinter.def.json
  3874. msgctxt "raft_interface_jerk description"
  3875. msgid "The jerk with which the middle raft layer is printed."
  3876. msgstr "A tutaj középső rétegeinek nyomtatásakor használt löket."
  3877. #: /fdmprinter.def.json
  3878. msgctxt "raft_jerk description"
  3879. msgid "The jerk with which the raft is printed."
  3880. msgstr "A tutaj nyomtatásakor használt löket."
  3881. #: /fdmprinter.def.json
  3882. msgctxt "raft_surface_jerk description"
  3883. msgid "The jerk with which the top raft layers are printed."
  3884. msgstr "A tutajfedél nyomtatásakor használt löket."
  3885. #: /fdmprinter.def.json
  3886. msgctxt "bottom_skin_preshrink description"
  3887. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  3888. msgstr "Az eltávolítandó alsókéreg felület legnagyobb szélessége. Az ettől kissebb felületek el fognak tűnni. Ez segíthet korlátozni a modell ferde felületeinek alsó részének nyomtatásához felhasznált időt és anyagot."
  3889. #: /fdmprinter.def.json
  3890. msgctxt "skin_preshrink description"
  3891. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  3892. msgstr "Az eltávolítandó kéreg felület legnagyobb szélessége. Az ettől kissebb felületek el fognak tűnni. Ez segíthet korlátozni a modell ferde felületeinek alsó és felső részének nyomtatásához felhasznált időt és anyagot."
  3893. #: /fdmprinter.def.json
  3894. msgctxt "top_skin_preshrink description"
  3895. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  3896. msgstr "Az eltávolítandó felső kéreg felület legnagyobb szélessége. Az ettől kissebb felületek el fognak tűnni. Ez segíthet korlátozni a modell ferde felületeinek felső részének nyomtatásához felhasznált időt és anyagot."
  3897. #: /fdmprinter.def.json
  3898. msgctxt "cool_fan_full_layer description"
  3899. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  3900. msgstr "Az a réteg, ahol a ventillátor eléri a normál hűtési sebességet.Ha a normál hűtési magasság be van állítva, akkor ezt a rétegszámot kiszámítja a szoftver."
  3901. #: /fdmprinter.def.json
  3902. msgctxt "cool_min_layer_time_fan_speed_max description"
  3903. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  3904. msgstr "Az a rétegidő, amely beállítja a küszöbértéket a szokásos ventilátor sebesség és a ventilátor maximális sebessége között. Az ezúttal lassabb nyomtatású rétegek szokásos ventilátorsebességet használnak. A gyorsabb rétegek esetén a ventilátor sebessége fokozatosan növekszik a maximális ventilátor sebesség felé."
  3905. #: /fdmprinter.def.json
  3906. msgctxt "retraction_amount description"
  3907. msgid "The length of material retracted during a retraction move."
  3908. msgstr "A visszahúzott anyag hossza visszahúzáskor."
  3909. #: /fdmprinter.def.json
  3910. msgctxt "machine_buildplate_type description"
  3911. msgid "The material of the build plate installed on the printer."
  3912. msgstr "A gépre szerelt tárgyasztal anyaga."
  3913. #: /fdmprinter.def.json
  3914. msgctxt "adaptive_layer_height_variation description"
  3915. msgid "The maximum allowed height different from the base layer height."
  3916. msgstr "Az alapréteg magasságától eltérő legnagyobb megengedett réteg magasság."
  3917. #: /fdmprinter.def.json
  3918. msgctxt "ooze_shield_angle description"
  3919. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3920. msgstr "Az a maximális szög, ami a szivárgáspajzsban megjelenhet. A 0 fok a függőleges, a 90 fok pedig a vízszintesnek felel meg. Ha a szög kisebb, akkor jobb lehet a pajzs hatásfoka, és jobban mentesíti a fúvókát a szivárgó anyagtól, azonban több felhasználandó anyagot igényel az építése."
  3921. #: /fdmprinter.def.json
  3922. msgctxt "conical_overhang_angle description"
  3923. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  3924. msgstr "A túlnyúlások maximális szöge a nyomtathatóvá tétel után. 0 ° értéknél az összes túlnyúlást egy, az építőlemezhez kapcsolt modelldarab váltja fel, a 90 ° -ot a modell semmilyen módon nem változtatja meg."
  3925. #: /fdmprinter.def.json
  3926. msgctxt "conical_overhang_hole_size description"
  3927. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  3928. msgstr ""
  3929. #: /fdmprinter.def.json
  3930. msgctxt "meshfix_maximum_deviation description"
  3931. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  3932. msgstr "A maximális eltérés, ha csökken a felbontás a maximális felbontás beállításnál. Ha ezt növeli, a nyomtatás kevésbé lesz pontos, de a g-kód kisebb lesz. A maximális eltérés a maximális felbontás korlátja, tehát ha a kettő ütközik, akkor a maximális eltérés lesz magasabb prioritású."
  3933. #: /fdmprinter.def.json
  3934. msgctxt "support_join_distance description"
  3935. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3936. msgstr "A maximális X/Y távolság két támasz szerkezet között. Mikor két elszeparált támasz túl közel kerül egymáshoz, azaz ettől az értéktől közelebb, akkor a támaszok egyesülni fognak."
  3937. #: /fdmprinter.def.json
  3938. msgctxt "flow_rate_max_extrusion_offset description"
  3939. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3940. msgstr ""
  3941. #: /fdmprinter.def.json
  3942. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3943. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  3944. msgstr ""
  3945. #: /fdmprinter.def.json
  3946. msgctxt "jerk_print_layer_0 description"
  3947. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3948. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő réteg nyomtatása alatt."
  3949. #: /fdmprinter.def.json
  3950. msgctxt "jerk_print description"
  3951. msgid "The maximum instantaneous velocity change of the print head."
  3952. msgstr "A maximális pillanatnyi sebességváltozás változtatása a nyomtatófej mozgására vonatkoztatva."
  3953. #: /fdmprinter.def.json
  3954. msgctxt "jerk_ironing description"
  3955. msgid "The maximum instantaneous velocity change while performing ironing."
  3956. msgstr "A maximális löket, amivel megrántja a fejet vasalás közben."
  3957. #: /fdmprinter.def.json
  3958. msgctxt "jerk_wall_x description"
  3959. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3960. msgstr "A maximális pillanatnyi sebességváltozás változtatása a belső falak nyomtatása alatt."
  3961. #: /fdmprinter.def.json
  3962. msgctxt "jerk_infill description"
  3963. msgid "The maximum instantaneous velocity change with which infill is printed."
  3964. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kitöltés nyomtatása alatt."
  3965. #: /fdmprinter.def.json
  3966. msgctxt "jerk_support_bottom description"
  3967. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3968. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó felületének nyomtatása alatt."
  3969. #: /fdmprinter.def.json
  3970. msgctxt "jerk_support_infill description"
  3971. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3972. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok kitöltésének nyomtatása alatt."
  3973. #: /fdmprinter.def.json
  3974. msgctxt "jerk_wall_0 description"
  3975. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3976. msgstr "A maximális pillanatnyi sebességváltozás változtatása a külső falak nyomtatása alatt."
  3977. #: /fdmprinter.def.json
  3978. msgctxt "jerk_prime_tower description"
  3979. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3980. msgstr "A maximális pillanatnyi sebességváltozás változtatása az előtorony nyomtatása alatt."
  3981. #: /fdmprinter.def.json
  3982. msgctxt "jerk_support_interface description"
  3983. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3984. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó és felső felületének nyomtatása alatt."
  3985. #: /fdmprinter.def.json
  3986. msgctxt "jerk_support_roof description"
  3987. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3988. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok felső felületének nyomtatása alatt."
  3989. #: /fdmprinter.def.json
  3990. msgctxt "jerk_skirt_brim description"
  3991. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3992. msgstr "A maximális pillanatnyi sebességváltozás változtatása a szoknya és a perem nyomtatása alatt."
  3993. #: /fdmprinter.def.json
  3994. msgctxt "jerk_support description"
  3995. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3996. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt."
  3997. #: /fdmprinter.def.json
  3998. msgctxt "jerk_wall description"
  3999. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4000. msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt."
  4001. #: /fdmprinter.def.json
  4002. msgctxt "jerk_roofing description"
  4003. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4004. msgstr "A maximális pillanatnyi sebességváltozás változtatása a felső záró felület nyomtatása alatt."
  4005. #: /fdmprinter.def.json
  4006. msgctxt "jerk_topbottom description"
  4007. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4008. msgstr "A maximális pillanatnyi sebességváltozás változtatása az alsó/felső felületek nyomtatása alatt."
  4009. #: /fdmprinter.def.json
  4010. msgctxt "jerk_travel description"
  4011. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4012. msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt."
  4013. #: /fdmprinter.def.json
  4014. msgctxt "machine_max_feedrate_x description"
  4015. msgid "The maximum speed for the motor of the X-direction."
  4016. msgstr "Az X motor maximális sebessége."
  4017. #: /fdmprinter.def.json
  4018. msgctxt "machine_max_feedrate_y description"
  4019. msgid "The maximum speed for the motor of the Y-direction."
  4020. msgstr "Az Y motor maximális sebessége."
  4021. #: /fdmprinter.def.json
  4022. msgctxt "machine_max_feedrate_z description"
  4023. msgid "The maximum speed for the motor of the Z-direction."
  4024. msgstr "A Z motor maximális sebessége."
  4025. #: /fdmprinter.def.json
  4026. msgctxt "machine_max_feedrate_e description"
  4027. msgid "The maximum speed of the filament."
  4028. msgstr "A nyomtatószál maximális adagolási sebessége."
  4029. #: /fdmprinter.def.json
  4030. msgctxt "support_bottom_stair_step_width description"
  4031. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  4032. msgstr "A modellen támaszkodó támasz lépcső maximális szélessége. Az alacsony érték nehezíti az eltávolítást, de a túl magas érték instabillá teszi a támaszt."
  4033. #: /fdmprinter.def.json
  4034. msgctxt "mold_width description"
  4035. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4036. msgstr ""
  4037. #: /fdmprinter.def.json
  4038. msgctxt "machine_minimum_feedrate description"
  4039. msgid "The minimal movement speed of the print head."
  4040. msgstr "A nyomtatófej minimális mozgási sebessége."
  4041. #: /fdmprinter.def.json
  4042. msgctxt "material_initial_print_temperature description"
  4043. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4044. msgstr "Az a minimális hőmérséklet, ameddig fel kell melegedni a fejnek a nyomtatás megkezdéséhez."
  4045. #: /fdmprinter.def.json
  4046. msgctxt "machine_min_cool_heat_time_window description"
  4047. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  4048. msgstr "Az a minimális időtartam, ameddig a fúvóka inaktív lehet, mielőtt elkezdene visszahűlni. Így csak akkor fog a fúvóka visszahűlni a készenléti hőmérsékletre, ha hosszabb ideig nincs használva."
  4049. #: /fdmprinter.def.json
  4050. msgctxt "infill_support_angle description"
  4051. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  4052. msgstr "Az a belső túlnyúlási szög, amihez szükséges kitöltést hozzáadni. Ha ez 0°, a test teljes mértékben kitöltésre kerül. Ha az érték 90°, akkor nem lesz semmiféle kitöltés."
  4053. #: /fdmprinter.def.json
  4054. msgctxt "support_angle description"
  4055. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  4056. msgstr "A kinyúlások minimális szöge, amihez támaszt kell nyomtatni.0° -nál minden kinyúlás alá lesz támasztva, 90° -nál egyik sem."
  4057. #: /fdmprinter.def.json
  4058. msgctxt "retraction_min_travel description"
  4059. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4060. msgstr "Az a minimális útvonal, amit a fejnek mozognia kell X-Y irányban ahhoz, hogy a visszahúzás megtörténjen. Ez segíthet abban, hogy ne legyen túl gyakori visszahűzás kisméretű területek felett."
  4061. #: /fdmprinter.def.json
  4062. msgctxt "skirt_brim_minimal_length description"
  4063. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  4064. msgstr "A szoknya, vagy a perem minimális hossza. Ha ezt a hosszt nem érné el az összes szoknya vagy perem, akkor további szegélyvonalak adódnak hozzá, és kiegészítik addig, amíg el nem érik ezt a hosszt.Ha a vonalszám 0 -ra van állítva, akkor ez az opció figyelmen kívül van hagyva."
  4065. #: /fdmprinter.def.json
  4066. msgctxt "min_odd_wall_line_width description"
  4067. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  4068. msgstr ""
  4069. #: /fdmprinter.def.json
  4070. msgctxt "min_even_wall_line_width description"
  4071. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  4072. msgstr ""
  4073. #: /fdmprinter.def.json
  4074. msgctxt "cool_min_speed description"
  4075. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  4076. msgstr "Minimális sebesség. Ez az a minimum, amivel a fej mozoghat. Ez azért szükséges, mert a minimális rétegidő miatt előfordulhatna, hogy a nyomtatófej tűlzottan lelassul. Ez esetben a fúvóka olvadókamra nyomása leeshetne, ami ronthatná a nyomtatási minőséget."
  4077. #: /fdmprinter.def.json
  4078. msgctxt "meshfix_maximum_resolution description"
  4079. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  4080. msgstr "Egy vonalszakasz minimális mérete a szeletelés után. Ha ezt megnöveli, a háló kisebb felbontású lesz. Ez lehetővé teheti a nyomtató számára, hogy lépést tartson a g-kód feldolgozásának sebességével, és növeli a szeletek sebességét azáltal, hogy eltávolítja a háló azon részleteit, amelyeket egyébként nem tud feldolgozni."
  4081. #: /fdmprinter.def.json
  4082. msgctxt "meshfix_maximum_travel_resolution description"
  4083. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  4084. msgstr "Az utazási útvonalak minimális mérete szeletelés után. Ha ezt növeljük, akkor az utazási mozgások kevésbé rendelkeznek majd sima sarkokkal.Ez lehetővé teszi a nyomtatók számára, hogy lépést tartsanak a g-kód feldolgozásához szükséges sebességgel, azonban a modell elkerülése kevésbé lehet pontos."
  4085. #: /fdmprinter.def.json
  4086. msgctxt "support_bottom_stair_step_min_slope description"
  4087. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  4088. msgstr ""
  4089. #: /fdmprinter.def.json
  4090. msgctxt "cool_min_layer_time description"
  4091. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  4092. msgstr "Egy adott réteg nyomtatásában eltöltött idő. Ha a réteg nagyon kicsi, akkor ez arra készteti a nyomtatót, hogy lelassuljon annyira, hogy a réteg nyomtatási ideje ezt az időtartamot elérje. Ez azért szükséges, hogy az adott réteg le tudjon hűlni annyira, hogy a következő réteg megfelelően tudjon ráépülni. A réteg nyomtatási ideje lehet ettől az értéktől rövidebb, ha a fejemelés le van tiltva, vagy ha a minimális sebesség ettől eltérő értéket ad meg."
  4093. #: /fdmprinter.def.json
  4094. msgctxt "prime_tower_min_volume description"
  4095. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4096. msgstr "Az előtorony minimális térfogata, minden egyes rétegben ahhoz, hogy az anyagcserét teljes egészében végre tudja hajtani."
  4097. #: /fdmprinter.def.json
  4098. msgctxt "machine_name description"
  4099. msgid "The name of your 3D printer model."
  4100. msgstr "A 3D nyomtatód neve."
  4101. #: /fdmprinter.def.json
  4102. msgctxt "machine_nozzle_id description"
  4103. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4104. msgstr "Az extruder szerelvény fúvóka azonosítója, például \"AA 0.4\" és \"BB 0.8\"."
  4105. #: /fdmprinter.def.json
  4106. msgctxt "travel_avoid_other_parts description"
  4107. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4108. msgstr "A fej mozgatásakor a már kinyomtatott részeket elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van."
  4109. #: /fdmprinter.def.json
  4110. msgctxt "travel_avoid_supports description"
  4111. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4112. msgstr "A fej mozgatásakor a kinyomtatott támaszokat elkerülő útvonalon fog haladni.Ez az opció csak akkor érhető el, ha a fésű mód engedélyezve van."
  4113. #: /fdmprinter.def.json
  4114. msgctxt "bottom_layers description"
  4115. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4116. msgstr "Az alsó rétegek száma. Az alsó vastagság alapján számítva ezt az értéket egész számra kerekíti."
  4117. #: /fdmprinter.def.json
  4118. msgctxt "raft_base_wall_count description"
  4119. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4120. msgstr ""
  4121. #: /fdmprinter.def.json
  4122. msgctxt "skin_edge_support_layers description"
  4123. msgid "The number of infill layers that supports skin edges."
  4124. msgstr ""
  4125. #: /fdmprinter.def.json
  4126. msgctxt "initial_bottom_layers description"
  4127. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  4128. msgstr ""
  4129. #: /fdmprinter.def.json
  4130. msgctxt "raft_interface_layers description"
  4131. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  4132. msgstr ""
  4133. #: /fdmprinter.def.json
  4134. msgctxt "brim_line_count description"
  4135. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  4136. msgstr "A Perem körvonalainak száma. Több vonal nagyobb tapadást eredményez, de csökkenti a használható nyomtatási területet."
  4137. #: /fdmprinter.def.json
  4138. msgctxt "support_brim_line_count description"
  4139. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  4140. msgstr "A támasz alá nyomtatandó peremvonalak száma. Több perem vonal javítja a tálcához való tapadást, viszon extra anyagfelhasználást is jelent."
  4141. #: /fdmprinter.def.json
  4142. msgctxt "raft_surface_layers description"
  4143. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  4144. msgstr "Ez a szám a tutaj felső rétegeinek száma. Ezek teljesen kitöltött rétegek amiken a modellek nyugszanak. 2 réteg használata sokkal simább első réteget fog eredményezni a modellen, mint ha 1 lenne."
  4145. #: /fdmprinter.def.json
  4146. msgctxt "top_layers description"
  4147. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4148. msgstr "A felső rétegek száma. A felső vastagság alapján számítva ezt az értéket egész számra kerekíti."
  4149. #: /fdmprinter.def.json
  4150. msgctxt "roofing_layer_count description"
  4151. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4152. msgstr "A felső felszíni zárórétegek száma. Általában egy felső réteg is elegendő a jó minőségű felső felületek előállításához."
  4153. #: /fdmprinter.def.json
  4154. msgctxt "support_wall_count description"
  4155. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4156. msgstr "Azoknak a falaknak a száma, amellyel a támogatást körül lehet venni. A fal hozzáadása megbízhatóbbá teszi a nyomtatást és jobban támaszthatja a túlnyúlásokat, de növeli a nyomtatási időt és a felhasznált anyagot."
  4157. #: /fdmprinter.def.json
  4158. msgctxt "wall_distribution_count description"
  4159. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  4160. msgstr ""
  4161. #: /fdmprinter.def.json
  4162. msgctxt "wall_line_count description"
  4163. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4164. msgstr "A nyomtatandó falak száma. A falvastagság alapján számított és kerekített érték."
  4165. #: /fdmprinter.def.json
  4166. msgctxt "machine_nozzle_tip_outer_diameter description"
  4167. msgid "The outer diameter of the tip of the nozzle."
  4168. msgstr "A fúvóka hegyének külső átmérője."
  4169. #: /fdmprinter.def.json
  4170. msgctxt "infill_pattern description"
  4171. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  4172. msgstr ""
  4173. #: /fdmprinter.def.json
  4174. msgctxt "support_pattern description"
  4175. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4176. msgstr "A támaszok szerkezeteinek mintázata. A különböző mintákkal elérhető eredmény lehet az erős vagy a könnyen eltávolítható támasz."
  4177. #: /fdmprinter.def.json
  4178. msgctxt "roofing_pattern description"
  4179. msgid "The pattern of the top most layers."
  4180. msgstr "A legfelső rétegeken lévő mintázat."
  4181. #: /fdmprinter.def.json
  4182. msgctxt "top_bottom_pattern description"
  4183. msgid "The pattern of the top/bottom layers."
  4184. msgstr "Az alsó/felső rétegek mintázata."
  4185. #: /fdmprinter.def.json
  4186. msgctxt "top_bottom_pattern_0 description"
  4187. msgid "The pattern on the bottom of the print on the first layer."
  4188. msgstr "A legalsóbb, kezdő réteg mintázata."
  4189. #: /fdmprinter.def.json
  4190. msgctxt "ironing_pattern description"
  4191. msgid "The pattern to use for ironing top surfaces."
  4192. msgstr "A felső felületek vasalásához használt minta."
  4193. #: /fdmprinter.def.json
  4194. msgctxt "support_bottom_pattern description"
  4195. msgid "The pattern with which the floors of the support are printed."
  4196. msgstr "A támasz interfész alsó felületének kialakítási mintája."
  4197. #: /fdmprinter.def.json
  4198. msgctxt "support_interface_pattern description"
  4199. msgid "The pattern with which the interface of the support with the model is printed."
  4200. msgstr "A támasz interfész kialakítási mintája."
  4201. #: /fdmprinter.def.json
  4202. msgctxt "support_roof_pattern description"
  4203. msgid "The pattern with which the roofs of the support are printed."
  4204. msgstr "A támasz interfész felső felületének kialakítási mintája."
  4205. #: /fdmprinter.def.json
  4206. msgctxt "z_seam_position description"
  4207. msgid "The position near where to start printing each part in a layer."
  4208. msgstr "Az a pont, ahol az egyes rétegek nyomtatását kezdeni fogja."
  4209. #: /fdmprinter.def.json
  4210. msgctxt "jerk_layer_0 description"
  4211. msgid "The print maximum instantaneous velocity change for the initial layer."
  4212. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő rétegen."
  4213. #: /fdmprinter.def.json
  4214. msgctxt "machine_shape description"
  4215. msgid "The shape of the build plate without taking unprintable areas into account."
  4216. msgstr "A tárgyasztal alakja anélkül, hogy a ténylegesen nem használható területeket figyelembe vennénk."
  4217. #: /fdmprinter.def.json
  4218. msgctxt "machine_head_with_fans_polygon description"
  4219. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  4220. msgstr ""
  4221. #: /fdmprinter.def.json
  4222. msgctxt "cross_infill_pocket_size description"
  4223. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4224. msgstr "Azoknak a kialakuló üregeknek a mérete, amik akkor jönnek létre, mikor a kereszt 3D mintában egy adott magasságnál a minta önmagát érinti."
  4225. #: /fdmprinter.def.json
  4226. msgctxt "coasting_min_volume description"
  4227. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4228. msgstr "Az minimális extrudálási mennyiség, mielőtt engedélyezi a kifutási műveletet.Ha nincs egy bizonyos mennyiségű extrudálás a kifuttatás előtt, nem épül fel elegendő nyomás az olvadótérben, és a kifutás során nem lesz elegendő anyag a nyomtatáshoz. Emiatt a kifutási mérték lineárisan van skálázva.Ez az érték mindig nagyobb, mint a kifutási mérték."
  4229. #: /fdmprinter.def.json
  4230. msgctxt "machine_nozzle_cool_down_speed description"
  4231. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4232. msgstr "Az az átlagolt sebesség, (°C/mp) amivel a nyomtatási és a készenléti hőmérséklet között a fúvóka visszahűl."
  4233. #: /fdmprinter.def.json
  4234. msgctxt "machine_nozzle_heat_up_speed description"
  4235. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4236. msgstr "Az az átlagolt sebesség, (°C/mp) amivel a készenléti és a nyomtatási hőmérséklet között a fúvóka melegszik."
  4237. #: /fdmprinter.def.json
  4238. msgctxt "speed_wall_x description"
  4239. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  4240. msgstr "Az a sebesség, amivel a belső falak nyomatásra kerülnek.A belső falak nyomtatási sebességének növelése csökkenti a nyomtatási időt.A javasolt sebességnek a külső falak, és a kitöltés nyomtatási sebessége közötti értékeket adjunk meg."
  4241. #: /fdmprinter.def.json
  4242. msgctxt "bridge_skin_speed description"
  4243. msgid "The speed at which bridge skin regions are printed."
  4244. msgstr "A hidak felszíni rétegeinek nyomtatási sebessége."
  4245. #: /fdmprinter.def.json
  4246. msgctxt "speed_infill description"
  4247. msgid "The speed at which infill is printed."
  4248. msgstr "Az a sebesség, amivel a kitöltés nyomtatódik."
  4249. #: /fdmprinter.def.json
  4250. msgctxt "speed_print description"
  4251. msgid "The speed at which printing happens."
  4252. msgstr "Az a sebesség, amivel a nyomtatás történik."
  4253. #: /fdmprinter.def.json
  4254. msgctxt "raft_base_speed description"
  4255. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4256. msgstr "A tutajalap nyomtatási sebessége. Ezt meglehetősen lassan kell nyomtatni, mivel a fúvókából kifolyó anyag mennyisége meglehetősen nagy."
  4257. #: /fdmprinter.def.json
  4258. msgctxt "bridge_wall_speed description"
  4259. msgid "The speed at which the bridge walls are printed."
  4260. msgstr "Hidak falainak nyomtatási sebessége."
  4261. #: /fdmprinter.def.json
  4262. msgctxt "cool_fan_speed_0 description"
  4263. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  4264. msgstr "Az a sebesség, amellyel a ventilátorok forognak a nyomtatás kezdetén. Az ezt követő rétegekben a ventilátor sebességét fokozatosan növeli olyan szintre, amely megegyezik a normál ventilátor sebességgel."
  4265. #: /fdmprinter.def.json
  4266. msgctxt "cool_fan_speed_min description"
  4267. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  4268. msgstr "Az a sebesség, amivel a hűtés történik normál nyomtatási esetben.Ha egy réteg nyomtatási sebessége egy küszöbérték felé emelkedik, akkor a hűtést növelni fogja egészen addig, amíg a maximumra nem emelkedik."
  4269. #: /fdmprinter.def.json
  4270. msgctxt "cool_fan_speed_max description"
  4271. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  4272. msgstr "Az a hűtési sebesség, amivel a ventillátorok forognak a maximális hűtéskor.A maximális hűtés azoknál a rétegeknél történik, ahol elértük a minimális rétegídőt. A hűtés a normál és a maximum érték között tud változni."
  4273. #: /fdmprinter.def.json
  4274. msgctxt "retraction_prime_speed description"
  4275. msgid "The speed at which the filament is primed during a retraction move."
  4276. msgstr "A nyomtatószál visszahúzás sebessége szál előtolási mozgáskor."
  4277. #: /fdmprinter.def.json
  4278. msgctxt "wipe_retraction_prime_speed description"
  4279. msgid "The speed at which the filament is primed during a wipe retraction move."
  4280. msgstr "Az a sebesség, amivel a nyomtatószál visszatöltődik a fejbe."
  4281. #: /fdmprinter.def.json
  4282. msgctxt "switch_extruder_prime_speed description"
  4283. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4284. msgstr "Az a sebesség, amivel a nyomtatószálat visszatoljuk a fejbe fúvókaváltás után."
  4285. #: /fdmprinter.def.json
  4286. msgctxt "retraction_speed description"
  4287. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4288. msgstr "A nyomtatószál sebessége visszahúzáskor, és előtoláskor."
  4289. #: /fdmprinter.def.json
  4290. msgctxt "wipe_retraction_speed description"
  4291. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4292. msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik, majd vissza töltődik a fejbe, a törlési művelet során."
  4293. #: /fdmprinter.def.json
  4294. msgctxt "switch_extruder_retraction_speed description"
  4295. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4296. msgstr "Az a sebesség, amivel a szál visszahúzásra kerül a fúvókaváltás során."
  4297. #: /fdmprinter.def.json
  4298. msgctxt "retraction_retract_speed description"
  4299. msgid "The speed at which the filament is retracted during a retraction move."
  4300. msgstr "Az a sebesség, amellyel a nyomtatószál visszahúzódik egy visszahúzási mozgás során."
  4301. #: /fdmprinter.def.json
  4302. msgctxt "wipe_retraction_retract_speed description"
  4303. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4304. msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik."
  4305. #: /fdmprinter.def.json
  4306. msgctxt "switch_extruder_retraction_speeds description"
  4307. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  4308. msgstr "Nyomtatószál visszahúzási sebesség. A nagyobb sebesség jobb eredményhez vezethet, azonban a túl nagy sebesség a nyomtatószál eldarálásához vezethet a nyomtatószál adagolóban."
  4309. #: /fdmprinter.def.json
  4310. msgctxt "speed_support_bottom description"
  4311. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  4312. msgstr "A támasztékok alsó, kezdő rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a támasz tapadása a tárgyasztalra."
  4313. #: /fdmprinter.def.json
  4314. msgctxt "speed_support_infill description"
  4315. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4316. msgstr "A támasztékok kitöltésének nyomatatási sebessége. Ha a kitöltések nyomtatási sebességét csökkentjük, a támaszték stabilabb lesz."
  4317. #: /fdmprinter.def.json
  4318. msgctxt "raft_interface_speed description"
  4319. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  4320. msgstr "A középső tutajrétegek nyomtatási sebessége. Ezt meglehetősen lassan kell nyomtatni, mivel a fúvókából kifolyó anyag mennyisége meglehetősen nagy."
  4321. #: /fdmprinter.def.json
  4322. msgctxt "speed_wall_0 description"
  4323. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  4324. msgstr "Az a sebesség, amivel a legkülsőbb falak nyomtatásra kerülnek.Az alacsonyabb sebesség javítja a külső felület végső minőségét, azonban, ha túl nagy a különbség a külső és a belső falak nyomtatási sebessége között, az negatív hatással lehet a minőségre."
  4325. #: /fdmprinter.def.json
  4326. msgctxt "speed_prime_tower description"
  4327. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  4328. msgstr "Az a asebesség, amivel a előtorony nyomtatódik. Nyomtassuk a előtornyot alacsony sebességen, mert ez segíthet a különböző anyagrétegeknek az egymáshoz tapadásában."
  4329. #: /fdmprinter.def.json
  4330. msgctxt "cool_fan_speed description"
  4331. msgid "The speed at which the print cooling fans spin."
  4332. msgstr "Az a sebesség, amivel a ventillátorok pörögnek."
  4333. #: /fdmprinter.def.json
  4334. msgctxt "raft_speed description"
  4335. msgid "The speed at which the raft is printed."
  4336. msgstr "A tutaj nyomtatási sebessége."
  4337. #: /fdmprinter.def.json
  4338. msgctxt "speed_support_interface description"
  4339. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4340. msgstr "Az a sebesség, amivel a támasztékok alsó és felső felületét nyomtatjuk.Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége."
  4341. #: /fdmprinter.def.json
  4342. msgctxt "speed_support_roof description"
  4343. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4344. msgstr "A támasztékok fedő, felső rétegének nyomtatási sebessége. Ha ez a sebesség lassabb, akkor jobb lehet a kinyúlás minősége."
  4345. #: /fdmprinter.def.json
  4346. msgctxt "skirt_brim_speed description"
  4347. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  4348. msgstr "A szoknya és a perem nyomtatási sebessége. Alapesetben ez ugyanannyi, mint a kezdő réteg sebessége, de néha szükséges lehet a különböző sebességgel való nyomtatásra."
  4349. #: /fdmprinter.def.json
  4350. msgctxt "speed_support description"
  4351. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  4352. msgstr "A támasztékok nyomattási sebessége. A támaszok nyomtatási sebességét bátran növelhetjük, mivel nem számít, milyen lesz a felületi minőségük.A nyomtatás után el lesznek távolítva, nem részei a nyomtatott tárgynak, és a nagyobb sebesség csökkentheti a nyomtatási időt."
  4353. #: /fdmprinter.def.json
  4354. msgctxt "raft_surface_speed description"
  4355. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  4356. msgstr "A tutaj felső rétegeinek nyomtatási sebessége. Ezeket kissé lassabban kell nyomtatni, hogy a fúvóka lassan kiegyenlítse a szomszédos felszíni vonalakat."
  4357. #: /fdmprinter.def.json
  4358. msgctxt "speed_z_hop description"
  4359. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  4360. msgstr "A Z tengely emelési sebessége. Ez általában alaxcsonyabb, mint a nyomtatási sebesség, mivel a tárgyasztal, vagy az X keresztszánt nehezebb mozgatni."
  4361. #: /fdmprinter.def.json
  4362. msgctxt "speed_wall description"
  4363. msgid "The speed at which the walls are printed."
  4364. msgstr "A falak nyomtatási sebessége."
  4365. #: /fdmprinter.def.json
  4366. msgctxt "speed_ironing description"
  4367. msgid "The speed at which to pass over the top surface."
  4368. msgstr "A felső felületen való áthaladási sebesség."
  4369. #: /fdmprinter.def.json
  4370. msgctxt "material_break_speed description"
  4371. msgid "The speed at which to retract the filament in order to break it cleanly."
  4372. msgstr "Milyen gyorsan kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon."
  4373. #: /fdmprinter.def.json
  4374. msgctxt "speed_roofing description"
  4375. msgid "The speed at which top surface skin layers are printed."
  4376. msgstr "A felső záró kéreg felületi rétegnek a nyomtatási sebessége."
  4377. #: /fdmprinter.def.json
  4378. msgctxt "speed_topbottom description"
  4379. msgid "The speed at which top/bottom layers are printed."
  4380. msgstr "Az alsó/felső réteg nyomtatási sebessége."
  4381. #: /fdmprinter.def.json
  4382. msgctxt "speed_travel description"
  4383. msgid "The speed at which travel moves are made."
  4384. msgstr "A fej üresben történő pozícióváltásának sebessége."
  4385. #: /fdmprinter.def.json
  4386. msgctxt "coasting_speed description"
  4387. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4388. msgstr "A kifutási művelet sebessége, a normál extrudálási út sebességéhez képest.Javasolt, hogy kisség csökkentsük, így 100% -nál alacsonyabb legyen az érték, mivel a kifutási mozgás közben csökken a nyomás a csőben."
  4389. #: /fdmprinter.def.json
  4390. msgctxt "speed_layer_0 description"
  4391. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  4392. msgstr ""
  4393. #: /fdmprinter.def.json
  4394. msgctxt "speed_print_layer_0 description"
  4395. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4396. msgstr "A kezdő réteg nyomtatási sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz."
  4397. #: /fdmprinter.def.json
  4398. msgctxt "speed_travel_layer_0 description"
  4399. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  4400. msgstr "A kezdő réteg utazási sebessége. Az Alacsonyabb érték javasolt, mivel a korábban már kinyomtatott részeleteket feltépheti a nyomtatófej a tárgyasztalról.A beállításnak az értéke kiszámítható, az utazási és a nyomatási sebesség arányából."
  4401. #: /fdmprinter.def.json
  4402. msgctxt "material_break_temperature description"
  4403. msgid "The temperature at which the filament is broken for a clean break."
  4404. msgstr "Az a hőmérséklet, ahol a nyomtatószál tisztán meg tud szakadni."
  4405. #: /fdmprinter.def.json
  4406. msgctxt "build_volume_temperature description"
  4407. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4408. msgstr "A nyomtató építési tér hőmérséklete. Ha ez az érték 0, akkor a gép nem képes az építési tér hőmérséklet szabályzására."
  4409. #: /fdmprinter.def.json
  4410. msgctxt "material_standby_temperature description"
  4411. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4412. msgstr "Az adott fúvóka hőmérséklete, amikor éppen egy másik fúvókát használnak nyomtatáshoz."
  4413. #: /fdmprinter.def.json
  4414. msgctxt "material_final_print_temperature description"
  4415. msgid "The temperature to which to already start cooling down just before the end of printing."
  4416. msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt."
  4417. #: /fdmprinter.def.json
  4418. msgctxt "material_print_temperature_layer_0 description"
  4419. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4420. msgstr "Az a hőmérséklet, amin az első réteg nyomtatása fog történni. Ha az érték 0, akkor nem kezeli külön a kezdő réteg hőmérsékleti beállítását."
  4421. #: /fdmprinter.def.json
  4422. msgctxt "material_print_temperature description"
  4423. msgid "The temperature used for printing."
  4424. msgstr "A nyomtatáshoz használt hőmérséklet."
  4425. #: /fdmprinter.def.json
  4426. msgctxt "material_bed_temperature_layer_0 description"
  4427. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  4428. msgstr ""
  4429. #: /fdmprinter.def.json
  4430. msgctxt "material_bed_temperature description"
  4431. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4432. msgstr ""
  4433. #: /fdmprinter.def.json
  4434. msgctxt "material_break_preparation_temperature description"
  4435. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4436. msgstr ""
  4437. #: /fdmprinter.def.json
  4438. msgctxt "bottom_thickness description"
  4439. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4440. msgstr "Az alsó rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó rétegek számát."
  4441. #: /fdmprinter.def.json
  4442. msgctxt "skin_edge_support_thickness description"
  4443. msgid "The thickness of the extra infill that supports skin edges."
  4444. msgstr ""
  4445. #: /fdmprinter.def.json
  4446. msgctxt "support_interface_height description"
  4447. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4448. msgstr "A támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára, vagy a tetejére nyomtat."
  4449. #: /fdmprinter.def.json
  4450. msgctxt "support_bottom_height description"
  4451. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  4452. msgstr "A támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára nyomtat."
  4453. #: /fdmprinter.def.json
  4454. msgctxt "support_roof_height description"
  4455. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  4456. msgstr "A támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz tetejére nyomtat."
  4457. #: /fdmprinter.def.json
  4458. msgctxt "top_thickness description"
  4459. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4460. msgstr "A felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az felső rétegek számát."
  4461. #: /fdmprinter.def.json
  4462. msgctxt "top_bottom_thickness description"
  4463. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  4464. msgstr "Az alsó/felső rétegek vastagsága a nyomtatáskor. Ez az érték osztva a rétegmagassággal adja meg az alsó/felső rétegek számát."
  4465. #: /fdmprinter.def.json
  4466. msgctxt "wall_thickness description"
  4467. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4468. msgstr "A falak vastagsága vízszintes irányban. Ez az érték osztva a falvonal szélességével határozza meg a falak számát."
  4469. #: /fdmprinter.def.json
  4470. msgctxt "infill_sparse_thickness description"
  4471. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4472. msgstr "A kitöltési réteg vastagsága. Ez az érték minden esetben a normál rétegvastagság,vagy annak a többszöröse és kerekített értéke."
  4473. #: /fdmprinter.def.json
  4474. msgctxt "support_infill_sparse_thickness description"
  4475. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4476. msgstr "A támasz kitöltés retegenkénti anyagvastagsága. Ennek az értéknek minden esetben a rétegmagasság egész többszörösének kell lennie, és oda lesz kerekítve."
  4477. #: /fdmprinter.def.json
  4478. msgctxt "machine_gcode_flavor description"
  4479. msgid "The type of g-code to be generated."
  4480. msgstr "A létrehozandó g-kód típusa."
  4481. #: /fdmprinter.def.json
  4482. msgctxt "coasting_volume description"
  4483. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4484. msgstr "A csöppenés mértéke. Ennek az értéknek általában közel kell lennie a fúvóka átmérőjéhez."
  4485. #: /fdmprinter.def.json
  4486. msgctxt "machine_width description"
  4487. msgid "The width (X-direction) of the printable area."
  4488. msgstr "A nyomtatási terület szélessége (X-irány)."
  4489. #: /fdmprinter.def.json
  4490. msgctxt "support_brim_width description"
  4491. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  4492. msgstr "A támasz alá nyomtatandó perem szélessége. A nagyobb peremek javítják a tálcához való tapadást, viszon extra anyagfelhasználást is jelent."
  4493. #: /fdmprinter.def.json
  4494. msgctxt "prime_tower_size description"
  4495. msgid "The width of the prime tower."
  4496. msgstr "Az előtorony szélessége."
  4497. #: /fdmprinter.def.json
  4498. msgctxt "magic_fuzzy_skin_thickness description"
  4499. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4500. msgstr "Az a szélesség, amelyen belül a rezgés történhet. Javasolt, hogy ez a külső fal szélessége alatt legyen, mivel a belső falalkat nem érinti ez a mozgás."
  4501. #: /fdmprinter.def.json
  4502. msgctxt "retraction_extrusion_window description"
  4503. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  4504. msgstr "Az az ablak, amelyben érvényesülni tud a maximális visszahűzási szám.Ennek az értéknek megközelítőleg azonosnak kell lennie a visszahúzási távolsággal, s így lehet korlátozni a visszahúzások számát ugyanabban az anyaghelyzetben."
  4505. #: /fdmprinter.def.json
  4506. msgctxt "prime_tower_position_x description"
  4507. msgid "The x coordinate of the position of the prime tower."
  4508. msgstr "Az előtorony nyomtatási X koordinátája."
  4509. #: /fdmprinter.def.json
  4510. msgctxt "prime_tower_position_y description"
  4511. msgid "The y coordinate of the position of the prime tower."
  4512. msgstr "Az előtorony nyomtatási Y koordinátája."
  4513. #: /fdmprinter.def.json
  4514. msgctxt "support_meshes_present description"
  4515. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4516. msgstr ""
  4517. #: /fdmprinter.def.json
  4518. msgctxt "bridge_wall_coast description"
  4519. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4520. msgstr "Ez határozza meg, hogy a fejnek a szélekhez képest mennyi a távolsága a hídfal megkezdése előtt. A híd nyomtatásának megkezdése előtt az olvadókamra nyomást csökkentheti, ami így vízszintesebb hídhoz vezethez."
  4521. #: /fdmprinter.def.json
  4522. msgctxt "raft_smoothing description"
  4523. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  4524. msgstr "Ez a beállítás azt szabályozza, hogy tutajnak hány belső sarka legyen lekerekítve. A belső sarkokat félkörre kerekíti le, aminek sugara az itt megadott érték. Ez a beállítás eltávolítja a tutaj körvonalában lévő olyan lyukakat is, amik kisebbek, mint egy ilyen kör."
  4525. #: /fdmprinter.def.json
  4526. msgctxt "retraction_count_max description"
  4527. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  4528. msgstr "Ez a beállítás korlátozza a minimális extrudálási távolság ablakon belüli visszahúzódások számát. Az ablakon belüli további visszahúzódásokat figyelmen kívül hagyjuk. Ezzel elkerülhető, hogy ugyanazon a szálpozicióban többször visszahúzódjon, mivel ez a nyomtatószálat ellapíthatja, eldarálhatja az extruder adagolókeréknél és ez elakadási problémákat okozhat."
  4529. #: /fdmprinter.def.json
  4530. msgctxt "draft_shield_enabled description"
  4531. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4532. msgstr "A beállítással létrehozhatunk egy falat a modell körül, ami segít abban, hogy a külső levegő, vagy légáramlat érje a nyomtatott testet.Ez különösen azoknál az alapanyagoknál lehet segítség, amelyek hajlamosak a felválásra, repedésre, mint pl. az ABS, ASA."
  4533. #: /fdmprinter.def.json
  4534. msgctxt "wireframe_roof_outer_delay description"
  4535. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4536. msgstr "A tetővé váló lyuk külső kerületein eltöltött idő. A hosszabb idő biztosítja a jobb kapcsolódást. Csak a huzalnyomásra vonatkozik."
  4537. #: /fdmprinter.def.json
  4538. msgctxt "material_shrinkage_percentage_xy description"
  4539. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  4540. msgstr ""
  4541. #: /fdmprinter.def.json
  4542. msgctxt "material_shrinkage_percentage_z description"
  4543. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  4544. msgstr ""
  4545. #: /fdmprinter.def.json
  4546. msgctxt "material_shrinkage_percentage description"
  4547. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4548. msgstr ""
  4549. #: /fdmprinter.def.json
  4550. msgctxt "top_layers label"
  4551. msgid "Top Layers"
  4552. msgstr "Felső rétegek"
  4553. #: /fdmprinter.def.json
  4554. msgctxt "top_skin_expand_distance label"
  4555. msgid "Top Skin Expand Distance"
  4556. msgstr "Felső kéreg bővítési távolság"
  4557. #: /fdmprinter.def.json
  4558. msgctxt "top_skin_preshrink label"
  4559. msgid "Top Skin Removal Width"
  4560. msgstr "Felső kéreg eltávolítási szélesség"
  4561. #: /fdmprinter.def.json
  4562. msgctxt "acceleration_roofing label"
  4563. msgid "Top Surface Skin Acceleration"
  4564. msgstr "Felső felületi gyorsulás"
  4565. #: /fdmprinter.def.json
  4566. msgctxt "roofing_extruder_nr label"
  4567. msgid "Top Surface Skin Extruder"
  4568. msgstr "Felső és külső felületi extruder"
  4569. #: /fdmprinter.def.json
  4570. msgctxt "roofing_material_flow label"
  4571. msgid "Top Surface Skin Flow"
  4572. msgstr "Felső kéregfelület áramlás"
  4573. #: /fdmprinter.def.json
  4574. msgctxt "jerk_roofing label"
  4575. msgid "Top Surface Skin Jerk"
  4576. msgstr "Felső felület löket"
  4577. #: /fdmprinter.def.json
  4578. msgctxt "roofing_layer_count label"
  4579. msgid "Top Surface Skin Layers"
  4580. msgstr "Felső kéreg rétegek"
  4581. #: /fdmprinter.def.json
  4582. msgctxt "roofing_angles label"
  4583. msgid "Top Surface Skin Line Directions"
  4584. msgstr "Felső kéregvonal irányok"
  4585. #: /fdmprinter.def.json
  4586. msgctxt "roofing_line_width label"
  4587. msgid "Top Surface Skin Line Width"
  4588. msgstr "Felső felszíni kéregvonal szélesség"
  4589. #: /fdmprinter.def.json
  4590. msgctxt "roofing_pattern label"
  4591. msgid "Top Surface Skin Pattern"
  4592. msgstr "Felső felszíni kéregminta"
  4593. #: /fdmprinter.def.json
  4594. msgctxt "speed_roofing label"
  4595. msgid "Top Surface Skin Speed"
  4596. msgstr "Felső záró felületi sebesség"
  4597. #: /fdmprinter.def.json
  4598. msgctxt "top_thickness label"
  4599. msgid "Top Thickness"
  4600. msgstr "Felső vastagság"
  4601. #: /fdmprinter.def.json
  4602. msgctxt "max_skin_angle_for_expansion description"
  4603. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  4604. msgstr ""
  4605. #: /fdmprinter.def.json
  4606. msgctxt "top_bottom description"
  4607. msgid "Top/Bottom"
  4608. msgstr ""
  4609. #: /fdmprinter.def.json
  4610. msgctxt "top_bottom label"
  4611. msgid "Top/Bottom"
  4612. msgstr ""
  4613. #: /fdmprinter.def.json
  4614. msgctxt "acceleration_topbottom label"
  4615. msgid "Top/Bottom Acceleration"
  4616. msgstr "Alsó/felső gyorsulás"
  4617. #: /fdmprinter.def.json
  4618. msgctxt "top_bottom_extruder_nr label"
  4619. msgid "Top/Bottom Extruder"
  4620. msgstr "Alsó/felső extruder"
  4621. #: /fdmprinter.def.json
  4622. msgctxt "skin_material_flow label"
  4623. msgid "Top/Bottom Flow"
  4624. msgstr "Alsó/felső áramlás"
  4625. #: /fdmprinter.def.json
  4626. msgctxt "jerk_topbottom label"
  4627. msgid "Top/Bottom Jerk"
  4628. msgstr "Alsó/felső löket"
  4629. #: /fdmprinter.def.json
  4630. msgctxt "skin_angles label"
  4631. msgid "Top/Bottom Line Directions"
  4632. msgstr "Alsó/felső vonal irányok"
  4633. #: /fdmprinter.def.json
  4634. msgctxt "skin_line_width label"
  4635. msgid "Top/Bottom Line Width"
  4636. msgstr "Alsó/felső vonalszélessége"
  4637. #: /fdmprinter.def.json
  4638. msgctxt "top_bottom_pattern label"
  4639. msgid "Top/Bottom Pattern"
  4640. msgstr "Alsó/felső mintázat"
  4641. #: /fdmprinter.def.json
  4642. msgctxt "speed_topbottom label"
  4643. msgid "Top/Bottom Speed"
  4644. msgstr "Alsó/felső sebesség"
  4645. #: /fdmprinter.def.json
  4646. msgctxt "top_bottom_thickness label"
  4647. msgid "Top/Bottom Thickness"
  4648. msgstr "Alsó/felső vastagság"
  4649. #: /fdmprinter.def.json
  4650. msgctxt "support_type option buildplate"
  4651. msgid "Touching Buildplate"
  4652. msgstr "Asztalt érintse"
  4653. #: /fdmprinter.def.json
  4654. msgctxt "support_tower_diameter label"
  4655. msgid "Tower Diameter"
  4656. msgstr "Torony átmérő"
  4657. #: /fdmprinter.def.json
  4658. msgctxt "support_tower_roof_angle label"
  4659. msgid "Tower Roof Angle"
  4660. msgstr "Torony fedél szög"
  4661. #: /fdmprinter.def.json
  4662. msgctxt "mesh_rotation_matrix description"
  4663. msgid "Transformation matrix to be applied to the model when loading it from file."
  4664. msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból tölti be."
  4665. #: /fdmprinter.def.json
  4666. msgctxt "travel label"
  4667. msgid "Travel"
  4668. msgstr "Utazás"
  4669. #: /fdmprinter.def.json
  4670. msgctxt "acceleration_travel label"
  4671. msgid "Travel Acceleration"
  4672. msgstr "Utaztatási gyorsulás"
  4673. #: /fdmprinter.def.json
  4674. msgctxt "travel_avoid_distance label"
  4675. msgid "Travel Avoid Distance"
  4676. msgstr "Elkerülő utazási távolság"
  4677. #: /fdmprinter.def.json
  4678. msgctxt "jerk_travel label"
  4679. msgid "Travel Jerk"
  4680. msgstr "Utazás löket"
  4681. #: /fdmprinter.def.json
  4682. msgctxt "speed_travel label"
  4683. msgid "Travel Speed"
  4684. msgstr "Utazási sebesség"
  4685. #: /fdmprinter.def.json
  4686. msgctxt "magic_mesh_surface_mode description"
  4687. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4688. msgstr "A modellt csak felületként, térfogatként, vagy lazua felülettel kezelje.A normál nyomtatási mód csak a zárt szinteket nyomtatja ki. A \"Felület\" egyetlen falra nyomtat, amely a háló felületét követi nyomtatás nélkül, és nincs alsó és felső felület.A \"Mindkettő\" zárt szinteket nyomtat, ugyanúgy, mint a normál, és minden fennmaradó poligont pedig felületként."
  4689. #: /fdmprinter.def.json
  4690. msgctxt "support_structure option tree"
  4691. msgid "Tree"
  4692. msgstr ""
  4693. #: /fdmprinter.def.json
  4694. msgctxt "support_tree_angle label"
  4695. msgid "Tree Support Branch Angle"
  4696. msgstr "Támaszágak szöge"
  4697. #: /fdmprinter.def.json
  4698. msgctxt "support_tree_branch_diameter label"
  4699. msgid "Tree Support Branch Diameter"
  4700. msgstr "Támaszágak átmérője"
  4701. #: /fdmprinter.def.json
  4702. msgctxt "support_tree_branch_diameter_angle label"
  4703. msgid "Tree Support Branch Diameter Angle"
  4704. msgstr "Támaszágak átmérő szög"
  4705. #: /fdmprinter.def.json
  4706. msgctxt "support_tree_branch_distance label"
  4707. msgid "Tree Support Branch Distance"
  4708. msgstr "Támaszágak távolsága"
  4709. #: /fdmprinter.def.json
  4710. msgctxt "support_tree_collision_resolution label"
  4711. msgid "Tree Support Collision Resolution"
  4712. msgstr "Ütközés felbontás"
  4713. #: /fdmprinter.def.json
  4714. msgctxt "support_tree_max_diameter label"
  4715. msgid "Tree Support Trunk Diameter"
  4716. msgstr ""
  4717. #: /fdmprinter.def.json
  4718. msgctxt "infill_pattern option trihexagon"
  4719. msgid "Tri-Hexagon"
  4720. msgstr "Három-hatszög"
  4721. #: /fdmprinter.def.json
  4722. msgctxt "infill_pattern option triangles"
  4723. msgid "Triangles"
  4724. msgstr "Háromszög"
  4725. #: /fdmprinter.def.json
  4726. msgctxt "support_bottom_pattern option triangles"
  4727. msgid "Triangles"
  4728. msgstr "Háromszögek"
  4729. #: /fdmprinter.def.json
  4730. msgctxt "support_interface_pattern option triangles"
  4731. msgid "Triangles"
  4732. msgstr "Háromszögek"
  4733. #: /fdmprinter.def.json
  4734. msgctxt "support_pattern option triangles"
  4735. msgid "Triangles"
  4736. msgstr "Háromszög"
  4737. #: /fdmprinter.def.json
  4738. msgctxt "support_roof_pattern option triangles"
  4739. msgid "Triangles"
  4740. msgstr "Háromszögek"
  4741. #: /fdmprinter.def.json
  4742. msgctxt "machine_gcode_flavor option UltiGCode"
  4743. msgid "Ultimaker 2"
  4744. msgstr "Ultimaker 2"
  4745. #: /fdmprinter.def.json
  4746. msgctxt "meshfix_union_all label"
  4747. msgid "Union Overlapping Volumes"
  4748. msgstr "Szintátfedések egyesítése"
  4749. #: /fdmprinter.def.json
  4750. msgctxt "bridge_wall_min_length description"
  4751. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4752. msgstr "Az ennél rövidebb nem alátámasztott falak a normál falbeállításokkal kerülnek kinyomtatásra. Az ettől hosszabb nem támogatott falakat viszont a hídfalak beállításai alapján nyomtatjuk ki."
  4753. #: /fdmprinter.def.json
  4754. msgctxt "adaptive_layer_height_enabled label"
  4755. msgid "Use Adaptive Layers"
  4756. msgstr "Adaptív rétegek használata"
  4757. #: /fdmprinter.def.json
  4758. msgctxt "support_use_towers label"
  4759. msgid "Use Towers"
  4760. msgstr "Tornyok használata"
  4761. #: /fdmprinter.def.json
  4762. msgctxt "acceleration_travel_enabled description"
  4763. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  4764. msgstr ""
  4765. #: /fdmprinter.def.json
  4766. msgctxt "jerk_travel_enabled description"
  4767. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  4768. msgstr ""
  4769. #: /fdmprinter.def.json
  4770. msgctxt "relative_extrusion description"
  4771. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  4772. msgstr "Használjon relatív extrudálást abszolút extrudálás helyett. A relatív E-lépések használata megkönnyíti a g-kód utófeldolgozását. Ezt azonban nem minden nyomtató támogatja, és az abszolút E-lépésekhez viszonyítva nagyon kismértékű eltéréseket eredményezhet a lerakott anyag mennyiségében. Ettől a beállítástól függetlenül az extrudálás módját mindig abszolút értékre állítják, mielőtt bármilyen g-kód szkriptet kiadnának."
  4773. #: /fdmprinter.def.json
  4774. msgctxt "support_use_towers description"
  4775. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  4776. msgstr "Speciális támasz tornyok használata a kisméretű túlnyúló területek támogatásához.Ezeknek a tornyoknak az átmérője nagyobb, mint az alátámasztott terület, azonban az alátámasztandó terület közelébe érve, fokozatosan csökken az átmérőjük, és egy tetőt képeznek."
  4777. #: /fdmprinter.def.json
  4778. msgctxt "infill_mesh description"
  4779. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  4780. msgstr "Ezzel a hálóval módosíthatja az egyéb átfedéseknek megfelelő kitöltéseket. Kicseréli a többi háló feltöltési régióit ezekre a régiókra. Javasoljuk, hogy ehhez a hálóhoz csak egy falat nyomtasson, és ne használjon alsó/felső felületet."
  4781. #: /fdmprinter.def.json
  4782. msgctxt "support_mesh description"
  4783. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4784. msgstr "Ezzel a hálóval határozhatja meg a támaszt területeket. Ez felhasználható a támasz struktúra létrehozására."
  4785. #: /fdmprinter.def.json
  4786. msgctxt "anti_overhang_mesh description"
  4787. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4788. msgstr "Ezzel a hálóval megadhatjuk, hogy a modell melyik részét ne lehessen észlelni túlnyúlásként. Ezt felhasználhatjuk arra, hogy a nem kívánt támasz struktúrákat eltávolítsuk."
  4789. #: /fdmprinter.def.json
  4790. msgctxt "z_seam_type option back"
  4791. msgid "User Specified"
  4792. msgstr "Felhasználói megadás"
  4793. #: /fdmprinter.def.json
  4794. msgctxt "material_shrinkage_percentage_z label"
  4795. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4796. msgstr ""
  4797. #: /fdmprinter.def.json
  4798. msgctxt "slicing_tolerance description"
  4799. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4800. msgstr ""
  4801. #: /fdmprinter.def.json
  4802. msgctxt "wireframe_bottom_delay label"
  4803. msgid "WP Bottom Delay"
  4804. msgstr "Alsó késleltetés"
  4805. #: /fdmprinter.def.json
  4806. msgctxt "wireframe_printspeed_bottom label"
  4807. msgid "WP Bottom Printing Speed"
  4808. msgstr "Aljzat nyomtatási sebesség"
  4809. #: /fdmprinter.def.json
  4810. msgctxt "wireframe_flow_connection label"
  4811. msgid "WP Connection Flow"
  4812. msgstr "Kapcsolódási adagolás"
  4813. #: /fdmprinter.def.json
  4814. msgctxt "wireframe_height label"
  4815. msgid "WP Connection Height"
  4816. msgstr "Kapcsolódási magasság"
  4817. #: /fdmprinter.def.json
  4818. msgctxt "wireframe_printspeed_down label"
  4819. msgid "WP Downward Printing Speed"
  4820. msgstr "Lefelé nyomtatási sebesség"
  4821. #: /fdmprinter.def.json
  4822. msgctxt "wireframe_drag_along label"
  4823. msgid "WP Drag Along"
  4824. msgstr "Húzási távolság"
  4825. #: /fdmprinter.def.json
  4826. msgctxt "wireframe_up_half_speed label"
  4827. msgid "WP Ease Upward"
  4828. msgstr "Emelés távolság"
  4829. #: /fdmprinter.def.json
  4830. msgctxt "wireframe_fall_down label"
  4831. msgid "WP Fall Down"
  4832. msgstr "Ejtés távolság"
  4833. #: /fdmprinter.def.json
  4834. msgctxt "wireframe_flat_delay label"
  4835. msgid "WP Flat Delay"
  4836. msgstr "Vízszintes késleltetés"
  4837. #: /fdmprinter.def.json
  4838. msgctxt "wireframe_flow_flat label"
  4839. msgid "WP Flat Flow"
  4840. msgstr "Vízszintes adagolás"
  4841. #: /fdmprinter.def.json
  4842. msgctxt "wireframe_flow label"
  4843. msgid "WP Flow"
  4844. msgstr "Adagolás"
  4845. #: /fdmprinter.def.json
  4846. msgctxt "wireframe_printspeed_flat label"
  4847. msgid "WP Horizontal Printing Speed"
  4848. msgstr "Vízszintes nyomtatási sebesség"
  4849. #: /fdmprinter.def.json
  4850. msgctxt "wireframe_top_jump label"
  4851. msgid "WP Knot Size"
  4852. msgstr "Csomó méret"
  4853. #: /fdmprinter.def.json
  4854. msgctxt "wireframe_nozzle_clearance label"
  4855. msgid "WP Nozzle Clearance"
  4856. msgstr "Fúvúka hézag"
  4857. #: /fdmprinter.def.json
  4858. msgctxt "wireframe_roof_drag_along label"
  4859. msgid "WP Roof Drag Along"
  4860. msgstr "Fedél húzás"
  4861. #: /fdmprinter.def.json
  4862. msgctxt "wireframe_roof_fall_down label"
  4863. msgid "WP Roof Fall Down"
  4864. msgstr "Fedél ejtés"
  4865. #: /fdmprinter.def.json
  4866. msgctxt "wireframe_roof_inset label"
  4867. msgid "WP Roof Inset Distance"
  4868. msgstr "Fedél betét távolság"
  4869. #: /fdmprinter.def.json
  4870. msgctxt "wireframe_roof_outer_delay label"
  4871. msgid "WP Roof Outer Delay"
  4872. msgstr "Fedél külső késleltetése"
  4873. #: /fdmprinter.def.json
  4874. msgctxt "wireframe_printspeed label"
  4875. msgid "WP Speed"
  4876. msgstr "Sebesség"
  4877. #: /fdmprinter.def.json
  4878. msgctxt "wireframe_straight_before_down label"
  4879. msgid "WP Straighten Downward Lines"
  4880. msgstr "Vonal egyenesítés lefelé"
  4881. #: /fdmprinter.def.json
  4882. msgctxt "wireframe_strategy label"
  4883. msgid "WP Strategy"
  4884. msgstr "Startégia"
  4885. #: /fdmprinter.def.json
  4886. msgctxt "wireframe_top_delay label"
  4887. msgid "WP Top Delay"
  4888. msgstr "Felső késleltetés"
  4889. #: /fdmprinter.def.json
  4890. msgctxt "wireframe_printspeed_up label"
  4891. msgid "WP Upward Printing Speed"
  4892. msgstr "Felfelé nyomtatási sebesség"
  4893. #: /fdmprinter.def.json
  4894. msgctxt "material_bed_temp_wait label"
  4895. msgid "Wait for Build Plate Heatup"
  4896. msgstr "Várakozás a tárgyasztal felfűtésére"
  4897. #: /fdmprinter.def.json
  4898. msgctxt "material_print_temp_wait label"
  4899. msgid "Wait for Nozzle Heatup"
  4900. msgstr "Várakozás a fej felfűtésére"
  4901. #: /fdmprinter.def.json
  4902. msgctxt "acceleration_wall label"
  4903. msgid "Wall Acceleration"
  4904. msgstr "Fal gyorsulás"
  4905. #: /fdmprinter.def.json
  4906. msgctxt "wall_distribution_count label"
  4907. msgid "Wall Distribution Count"
  4908. msgstr ""
  4909. #: /fdmprinter.def.json
  4910. msgctxt "wall_extruder_nr label"
  4911. msgid "Wall Extruder"
  4912. msgstr "Fali extruder"
  4913. #: /fdmprinter.def.json
  4914. msgctxt "wall_material_flow label"
  4915. msgid "Wall Flow"
  4916. msgstr "Fal áramlás"
  4917. #: /fdmprinter.def.json
  4918. msgctxt "jerk_wall label"
  4919. msgid "Wall Jerk"
  4920. msgstr "Fal löket"
  4921. #: /fdmprinter.def.json
  4922. msgctxt "wall_line_count label"
  4923. msgid "Wall Line Count"
  4924. msgstr "Falvonalak száma"
  4925. #: /fdmprinter.def.json
  4926. msgctxt "wall_line_width label"
  4927. msgid "Wall Line Width"
  4928. msgstr "Fali vonal szélessége"
  4929. #: /fdmprinter.def.json
  4930. msgctxt "inset_direction label"
  4931. msgid "Wall Ordering"
  4932. msgstr ""
  4933. #: /fdmprinter.def.json
  4934. msgctxt "speed_wall label"
  4935. msgid "Wall Speed"
  4936. msgstr "Fal sebesség"
  4937. #: /fdmprinter.def.json
  4938. msgctxt "wall_thickness label"
  4939. msgid "Wall Thickness"
  4940. msgstr "Falvastagság"
  4941. #: /fdmprinter.def.json
  4942. msgctxt "wall_transition_length label"
  4943. msgid "Wall Transition Length"
  4944. msgstr ""
  4945. #: /fdmprinter.def.json
  4946. msgctxt "wall_transition_filter_distance label"
  4947. msgid "Wall Transitioning Filter Distance"
  4948. msgstr ""
  4949. #: /fdmprinter.def.json
  4950. msgctxt "wall_transition_filter_deviation label"
  4951. msgid "Wall Transitioning Filter Margin"
  4952. msgstr ""
  4953. #: /fdmprinter.def.json
  4954. msgctxt "wall_transition_angle label"
  4955. msgid "Wall Transitioning Threshold Angle"
  4956. msgstr ""
  4957. #: /fdmprinter.def.json
  4958. msgctxt "shell label"
  4959. msgid "Walls"
  4960. msgstr ""
  4961. #: /fdmprinter.def.json
  4962. msgctxt "wall_overhang_angle description"
  4963. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4964. msgstr ""
  4965. #: /fdmprinter.def.json
  4966. msgctxt "support_interface_skip_height description"
  4967. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  4968. msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni."
  4969. #: /fdmprinter.def.json
  4970. msgctxt "infill_enable_travel_optimization description"
  4971. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4972. msgstr "Ha engedélyezve van, a kitöltési sorok nyomtatási sorrendje optimalizálódik a megtett távolság csökkentése érdekében. Az elért utazási idő csökkentése nagymértékben függ a szeletelt modelltől, a kitöltési mintától, a sűrűségtől stb. Vegye figyelembe, hogy egyes modellek esetében, amelyeknek sok kis kitöltési területe van, a modell szeletelésének ideje jelentősen megnőhet."
  4973. #: /fdmprinter.def.json
  4974. msgctxt "support_fan_enable description"
  4975. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4976. msgstr "Ha engedélyezzük ezt az opciót, akkor a hűtőventillátor sebessége meg fog változni a külső kéreg felületeken, közvetlenül a támasz felett."
  4977. #: /fdmprinter.def.json
  4978. msgctxt "z_seam_relative description"
  4979. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  4980. msgstr "Ha engedélyezve van, a z varrás koordinátái az egyes alkatrészek középpontjához viszonyítva vannak. Letiltva a koordináták meghatározzák az abszolút helyzetét a tárgyasztalon."
  4981. #: /fdmprinter.def.json
  4982. msgctxt "retraction_combing_max_distance description"
  4983. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  4984. msgstr ""
  4985. #: /fdmprinter.def.json
  4986. msgctxt "bridge_skin_material_flow description"
  4987. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4988. msgstr "A hídfelszínek nyomtatásakor az extrudált anyagmennyiséget meg kell szorozni ezzel az értékkel."
  4989. #: /fdmprinter.def.json
  4990. msgctxt "bridge_wall_material_flow description"
  4991. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4992. msgstr "A hídfalak nyomtatásakor az extrudált anyag mennyiségét meg kell szorozni ezzel az értékkel."
  4993. #: /fdmprinter.def.json
  4994. msgctxt "bridge_skin_material_flow_2 description"
  4995. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4996. msgstr "A második hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  4997. #: /fdmprinter.def.json
  4998. msgctxt "bridge_skin_material_flow_3 description"
  4999. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  5000. msgstr "A harmadik hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  5001. #: /fdmprinter.def.json
  5002. msgctxt "cool_lift_head description"
  5003. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  5004. msgstr "Ha a nyomtató elérte a megadott minimális rétegidővel a minimális sebességet, és nem tud tovább lassulni, akkor a nyomtató emelje fel a fejet addig, amig amíg el nem éri a minimális rétegidőt."
  5005. #: /fdmprinter.def.json
  5006. msgctxt "skin_no_small_gaps_heuristic description"
  5007. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  5008. msgstr "Ha a modellnek csak néhány rétegű függőleges rése van, akkor ebben a keskeny térben a rétegek körül általában felületnek kell lennie.Akkor engedélyezze ezt a beállítást, ha nem szeretné, hogy keletkezzen itt felület, és ha a függőleges rés nagyon kicsi itt.Ez javítja a nyomtatási és a szeletelési időt, de technikailag a töltőanyagot a levegőnek teszi ki, azaz a belső kitöltés itt nyitott fog maradni."
  5009. #: /fdmprinter.def.json
  5010. msgctxt "wall_transition_angle description"
  5011. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  5012. msgstr ""
  5013. #: /fdmprinter.def.json
  5014. msgctxt "wall_transition_length description"
  5015. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  5016. msgstr ""
  5017. #: /fdmprinter.def.json
  5018. msgctxt "wipe_hop_enable description"
  5019. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5020. msgstr ""
  5021. #: /fdmprinter.def.json
  5022. msgctxt "retraction_hop_enabled description"
  5023. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5024. msgstr "Szálvisszahúzáskor a Z tengely megemelkedik, így elemeli a fejet a tárgytól, ami megakadályozza, hogy a fúvóka hozzáérjen a már kinyomtatott részekhez utazáskor. Ez csökkenti annak az esélyét, hogy a fej lelökje, vagy felszakítsa a tárgyat a tárgyasztalról."
  5025. #: /fdmprinter.def.json
  5026. msgctxt "support_xy_overrides_z description"
  5027. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  5028. msgstr "Függetlenítés attól, hogy az X/Y támaszték távolsága felülbírálja-e a Z támasz távolságát, vagy fordítva. Amikor az X/Y felülbírálja a Z-t, az X/Y távolság elmozdíthatja a támaszt a modelltől, befolyásolva a tényleges Z távolságot a nyomtatványig. Ezt letilthatjuk, ha nem alkalmazzuk az X/Y távolságot a túlnyúlások körül."
  5029. #: /fdmprinter.def.json
  5030. msgctxt "machine_center_is_zero description"
  5031. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5032. msgstr "Ez a beállítás, az X és Y nullpontot a nyomtatási terület középpontjába helyezi."
  5033. #: /fdmprinter.def.json
  5034. msgctxt "machine_endstop_positive_direction_x description"
  5035. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5036. msgstr "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb X, negatív az alacsonyabb X koordinátát jelenti)"
  5037. #: /fdmprinter.def.json
  5038. msgctxt "machine_endstop_positive_direction_y description"
  5039. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5040. msgstr "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Y, negatív az alacsonyabb Y koordinátát jelenti)"
  5041. #: /fdmprinter.def.json
  5042. msgctxt "machine_endstop_positive_direction_z description"
  5043. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5044. msgstr "Azt határozza meg, hogy a végállás kapcsoló pozitív irányban van-e, vagy negatívban. (pozitív a magasabb Z, negatív az alacsonyabb Z koordinátát jelenti)"
  5045. #: /fdmprinter.def.json
  5046. msgctxt "machine_extruders_share_heater description"
  5047. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5048. msgstr ""
  5049. #: /fdmprinter.def.json
  5050. msgctxt "machine_extruders_share_nozzle description"
  5051. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  5052. msgstr ""
  5053. #: /fdmprinter.def.json
  5054. msgctxt "machine_heated_bed description"
  5055. msgid "Whether the machine has a heated build plate present."
  5056. msgstr "Azt határozza meg, hogy van -e a gépen fűthető tárgyasztal. Ha ez az opció ki van kapcsolva, nem lehet belkapcsolni a tárgyasztal fűtését."
  5057. #: /fdmprinter.def.json
  5058. msgctxt "machine_heated_build_volume description"
  5059. msgid "Whether the machine is able to stabilize the build volume temperature."
  5060. msgstr "Azt határozza meg, hogy a gép képes-e szabályozni a nyomtatási tér hőmérsékletét."
  5061. #: /fdmprinter.def.json
  5062. msgctxt "center_object description"
  5063. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5064. msgstr "A tárgyat a tárgyasztal közepére kell központosítani (0,0), annak a koordináta rendszernek a használata helyett, amelyben az objektum mentérse került."
  5065. #: /fdmprinter.def.json
  5066. msgctxt "machine_nozzle_temp_enabled description"
  5067. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5068. msgstr "A hőmérsékletet a Cura-ból lehet szabályozni.Kapcsolja ki ezt, ha a fúvóka hőmérsékletének szabályozását kívülről szeretné végezni."
  5069. #: /fdmprinter.def.json
  5070. msgctxt "material_bed_temp_prepend description"
  5071. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  5072. msgstr "Annak a meghatározása, hogy a tárgyasztal hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz tárgyasztal hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást."
  5073. #: /fdmprinter.def.json
  5074. msgctxt "material_print_temp_prepend description"
  5075. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  5076. msgstr "Annak a meghatározása, hogy a fúvóka hőmérsékleti parancsokat tartalmaz-e a kódolás elején.Amikor a start_gcode már tartalmaz fúvóka hőmérsékleti parancsokat, a Cura frontend automatikusan letiltja ezt a beállítást."
  5077. #: /fdmprinter.def.json
  5078. msgctxt "clean_between_layers description"
  5079. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5080. msgstr ""
  5081. #: /fdmprinter.def.json
  5082. msgctxt "material_bed_temp_wait description"
  5083. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5084. msgstr "Parancs beszúrás arra, hogy a gép várakozzon, amíg a tárgyasztal eléri a beállított célhőmérsékletet."
  5085. #: /fdmprinter.def.json
  5086. msgctxt "prime_blob_enable description"
  5087. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  5088. msgstr "A nyomtatás előtt a nyomtatószálat előkészítio, és az olvadókamra nyomást felépíti úgy, hogy egy foltot nyomtat. A perem és a szoknya is viselkedhet így, hiszen annak a nyomtatása során is felépíthető a nyomás. Ebben az esetben ez a funkció nem működik, és ezzel időt takaríthatunk meg."
  5089. #: /fdmprinter.def.json
  5090. msgctxt "print_sequence description"
  5091. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5092. msgstr ""
  5093. #: /fdmprinter.def.json
  5094. msgctxt "machine_show_variants description"
  5095. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5096. msgstr "Megmutatja-e ennek a gépnek a különféle json-fájlokban leírt változatait."
  5097. #: /fdmprinter.def.json
  5098. msgctxt "machine_firmware_retract description"
  5099. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5100. msgstr "Használja -e a firmware szálvisszahúzási parancsokat (G10/G11), a G1 parancsokban használt E szálvisszahúzási parancsok helyett."
  5101. #: /fdmprinter.def.json
  5102. msgctxt "material_print_temp_wait description"
  5103. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5104. msgstr "Várakozás addig, amíg a nyomtatófej el nem éri a beállított célhőmérsékletet."
  5105. #: /fdmprinter.def.json
  5106. msgctxt "infill_line_width description"
  5107. msgid "Width of a single infill line."
  5108. msgstr "Egyetlen kitöltési vonalszélesség."
  5109. #: /fdmprinter.def.json
  5110. msgctxt "support_interface_line_width description"
  5111. msgid "Width of a single line of support roof or floor."
  5112. msgstr "A padló vagy a tető egyetlen vonalszélessége."
  5113. #: /fdmprinter.def.json
  5114. msgctxt "roofing_line_width description"
  5115. msgid "Width of a single line of the areas at the top of the print."
  5116. msgstr "A nyomtatás tetjén lévő területek egyetlen sorának szélessége."
  5117. #: /fdmprinter.def.json
  5118. msgctxt "line_width description"
  5119. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  5120. msgstr "Egy sor szélessége. Általában az egyes vonalak szélességének meg kell egyeznie a fúvóka szélességével. Ennek az értéknek minimális csökkentése azonban jobb nyomatokat eredményezhet."
  5121. #: /fdmprinter.def.json
  5122. msgctxt "prime_tower_line_width description"
  5123. msgid "Width of a single prime tower line."
  5124. msgstr "Egyetlen előtorony vonalszélesség."
  5125. #: /fdmprinter.def.json
  5126. msgctxt "skirt_brim_line_width description"
  5127. msgid "Width of a single skirt or brim line."
  5128. msgstr "Egyetlen szoknya/perem vonalszélesség."
  5129. #: /fdmprinter.def.json
  5130. msgctxt "support_bottom_line_width description"
  5131. msgid "Width of a single support floor line."
  5132. msgstr "Egyetlen támasz padlóvonal szélesség."
  5133. #: /fdmprinter.def.json
  5134. msgctxt "support_roof_line_width description"
  5135. msgid "Width of a single support roof line."
  5136. msgstr "Egyetlen támasz tetővonal szélesség."
  5137. #: /fdmprinter.def.json
  5138. msgctxt "support_line_width description"
  5139. msgid "Width of a single support structure line."
  5140. msgstr "Egyetlen támasz vonalszélesség."
  5141. #: /fdmprinter.def.json
  5142. msgctxt "skin_line_width description"
  5143. msgid "Width of a single top/bottom line."
  5144. msgstr "Egyetlen alsó/felső sorszélessége."
  5145. #: /fdmprinter.def.json
  5146. msgctxt "wall_line_width_x description"
  5147. msgid "Width of a single wall line for all wall lines except the outermost one."
  5148. msgstr "Egyetlen falvonal szélessége az összes fali vonalhoz, a legkülső fal kivételével."
  5149. #: /fdmprinter.def.json
  5150. msgctxt "wall_line_width description"
  5151. msgid "Width of a single wall line."
  5152. msgstr "Egy fal vonalának szélessége."
  5153. #: /fdmprinter.def.json
  5154. msgctxt "raft_base_line_width description"
  5155. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5156. msgstr "A vonalak szélessége a tutajalap rétegeiben. Ezeknek vastag vonalaknak kell lenniük, hogy elősegítsék a tárgyasztalhoz tapadást."
  5157. #: /fdmprinter.def.json
  5158. msgctxt "raft_interface_line_width description"
  5159. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  5160. msgstr "A vonalak szélessége a középső tutajrétegben. Ha a második rétegnél többet extrudálunk, akkor a vonalak jobban tapadnak majd a tárgyasztalhoz."
  5161. #: /fdmprinter.def.json
  5162. msgctxt "raft_surface_line_width description"
  5163. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  5164. msgstr "A vonalak szélessége a tutaj felső felületén. Ezek lehetnek vékony vonalak, így a tutaj teteje sima lesz."
  5165. #: /fdmprinter.def.json
  5166. msgctxt "wall_line_width_0 description"
  5167. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5168. msgstr "A külső falvonal szélessége. Ennek az értéknek a csökkentésével nagyobb szintű részletesség érhető el."
  5169. #: /fdmprinter.def.json
  5170. msgctxt "min_bead_width description"
  5171. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  5172. msgstr ""
  5173. #: /fdmprinter.def.json
  5174. msgctxt "wipe_brush_pos_x label"
  5175. msgid "Wipe Brush X Position"
  5176. msgstr "Törlési pont (kefe) X helyzete"
  5177. #: /fdmprinter.def.json
  5178. msgctxt "wipe_hop_speed label"
  5179. msgid "Wipe Hop Speed"
  5180. msgstr "Z emelés sebesség"
  5181. #: /fdmprinter.def.json
  5182. msgctxt "prime_tower_wipe_enabled label"
  5183. msgid "Wipe Inactive Nozzle on Prime Tower"
  5184. msgstr "Inaktív fúvóka tisztítása az előtornyon"
  5185. #: /fdmprinter.def.json
  5186. msgctxt "wipe_move_distance label"
  5187. msgid "Wipe Move Distance"
  5188. msgstr "Törlési mozgás távolsága"
  5189. #: /fdmprinter.def.json
  5190. msgctxt "clean_between_layers label"
  5191. msgid "Wipe Nozzle Between Layers"
  5192. msgstr "Fúvóka tisztítás rétegek között"
  5193. #: /fdmprinter.def.json
  5194. msgctxt "wipe_pause label"
  5195. msgid "Wipe Pause"
  5196. msgstr "Törlés szünet"
  5197. #: /fdmprinter.def.json
  5198. msgctxt "wipe_repeat_count label"
  5199. msgid "Wipe Repeat Count"
  5200. msgstr "Törlés ismétlés száma"
  5201. #: /fdmprinter.def.json
  5202. msgctxt "wipe_retraction_amount label"
  5203. msgid "Wipe Retraction Distance"
  5204. msgstr "Törlés visszahúzás távolság"
  5205. #: /fdmprinter.def.json
  5206. msgctxt "wipe_retraction_enable label"
  5207. msgid "Wipe Retraction Enable"
  5208. msgstr "Törlés visszahúzás engedélyezése"
  5209. #: /fdmprinter.def.json
  5210. msgctxt "wipe_retraction_extra_prime_amount label"
  5211. msgid "Wipe Retraction Extra Prime Amount"
  5212. msgstr "Törlés visszahúzás anyag kompenzáció"
  5213. #: /fdmprinter.def.json
  5214. msgctxt "wipe_retraction_prime_speed label"
  5215. msgid "Wipe Retraction Prime Speed"
  5216. msgstr ""
  5217. #: /fdmprinter.def.json
  5218. msgctxt "wipe_retraction_retract_speed label"
  5219. msgid "Wipe Retraction Retract Speed"
  5220. msgstr "Visszahúzási sebesség"
  5221. #: /fdmprinter.def.json
  5222. msgctxt "wipe_retraction_speed label"
  5223. msgid "Wipe Retraction Speed"
  5224. msgstr "Törlés visszahúzás sebesség"
  5225. #: /fdmprinter.def.json
  5226. msgctxt "wipe_hop_enable label"
  5227. msgid "Wipe Z Hop"
  5228. msgstr ""
  5229. #: /fdmprinter.def.json
  5230. msgctxt "wipe_hop_amount label"
  5231. msgid "Wipe Z Hop Height"
  5232. msgstr "Z emelés magasság"
  5233. #: /fdmprinter.def.json
  5234. msgctxt "wireframe_enabled label"
  5235. msgid "Wire Printing"
  5236. msgstr "Huzalváz nyomtatás"
  5237. #: /fdmprinter.def.json
  5238. msgctxt "retraction_combing option infill"
  5239. msgid "Within Infill"
  5240. msgstr "Kitöltésen belül"
  5241. #: /fdmprinter.def.json
  5242. msgctxt "machine_always_write_active_tool description"
  5243. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  5244. msgstr ""
  5245. #: /fdmprinter.def.json
  5246. msgctxt "machine_endstop_positive_direction_x label"
  5247. msgid "X Endstop in Positive Direction"
  5248. msgstr "X végállás pozitív irányban"
  5249. #: /fdmprinter.def.json
  5250. msgctxt "wipe_brush_pos_x description"
  5251. msgid "X location where wipe script will start."
  5252. msgstr "Az az X helyzet, ahol a törlési szkript elindul."
  5253. #: /fdmprinter.def.json
  5254. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5255. msgid "X/Y overrides Z"
  5256. msgstr "X/Y felülbírálás Z-re"
  5257. #: /fdmprinter.def.json
  5258. msgctxt "machine_endstop_positive_direction_y label"
  5259. msgid "Y Endstop in Positive Direction"
  5260. msgstr "Y végállás pozitív irányban"
  5261. #: /fdmprinter.def.json
  5262. msgctxt "machine_endstop_positive_direction_z label"
  5263. msgid "Z Endstop in Positive Direction"
  5264. msgstr "Z végállás pozitív irányban"
  5265. #: /fdmprinter.def.json
  5266. msgctxt "retraction_hop_after_extruder_switch label"
  5267. msgid "Z Hop After Extruder Switch"
  5268. msgstr "Z emelés extruder váltás után"
  5269. #: /fdmprinter.def.json
  5270. msgctxt "retraction_hop_after_extruder_switch_height label"
  5271. msgid "Z Hop After Extruder Switch Height"
  5272. msgstr "Z emelés magassága extruder váltás után"
  5273. #: /fdmprinter.def.json
  5274. msgctxt "retraction_hop label"
  5275. msgid "Z Hop Height"
  5276. msgstr "Z emelés magasság"
  5277. #: /fdmprinter.def.json
  5278. msgctxt "retraction_hop_only_when_collides label"
  5279. msgid "Z Hop Only Over Printed Parts"
  5280. msgstr "Z emelés nyomtatott részeknél"
  5281. #: /fdmprinter.def.json
  5282. msgctxt "speed_z_hop label"
  5283. msgid "Z Hop Speed"
  5284. msgstr "Z emelés sebesség"
  5285. #: /fdmprinter.def.json
  5286. msgctxt "retraction_hop_enabled label"
  5287. msgid "Z Hop When Retracted"
  5288. msgstr "Z emelés visszahúzáskor"
  5289. #: /fdmprinter.def.json
  5290. msgctxt "z_seam_type label"
  5291. msgid "Z Seam Alignment"
  5292. msgstr "Z varrat igazítás"
  5293. #: /fdmprinter.def.json
  5294. msgctxt "z_seam_position label"
  5295. msgid "Z Seam Position"
  5296. msgstr "Z varrat helyzet"
  5297. #: /fdmprinter.def.json
  5298. msgctxt "z_seam_relative label"
  5299. msgid "Z Seam Relative"
  5300. msgstr "Relatív Z varrat"
  5301. #: /fdmprinter.def.json
  5302. msgctxt "z_seam_x label"
  5303. msgid "Z Seam X"
  5304. msgstr "Z varrat X"
  5305. #: /fdmprinter.def.json
  5306. msgctxt "z_seam_y label"
  5307. msgid "Z Seam Y"
  5308. msgstr "Z varrat Y"
  5309. #: /fdmprinter.def.json
  5310. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5311. msgid "Z overrides X/Y"
  5312. msgstr "Z felülbírálás X/Y-ra"
  5313. #: /fdmprinter.def.json
  5314. msgctxt "infill_pattern option zigzag"
  5315. msgid "Zig Zag"
  5316. msgstr "Cikcakk"
  5317. #: /fdmprinter.def.json
  5318. msgctxt "ironing_pattern option zigzag"
  5319. msgid "Zig Zag"
  5320. msgstr "Cikcakk"
  5321. #: /fdmprinter.def.json
  5322. msgctxt "roofing_pattern option zigzag"
  5323. msgid "Zig Zag"
  5324. msgstr "Cikcakk"
  5325. #: /fdmprinter.def.json
  5326. msgctxt "support_bottom_pattern option zigzag"
  5327. msgid "Zig Zag"
  5328. msgstr "Cikcakk"
  5329. #: /fdmprinter.def.json
  5330. msgctxt "support_interface_pattern option zigzag"
  5331. msgid "Zig Zag"
  5332. msgstr "Cikcakk"
  5333. #: /fdmprinter.def.json
  5334. msgctxt "support_pattern option zigzag"
  5335. msgid "Zig Zag"
  5336. msgstr "Cikcakk"
  5337. #: /fdmprinter.def.json
  5338. msgctxt "support_roof_pattern option zigzag"
  5339. msgid "Zig Zag"
  5340. msgstr "Cikcakk"
  5341. #: /fdmprinter.def.json
  5342. msgctxt "top_bottom_pattern option zigzag"
  5343. msgid "Zig Zag"
  5344. msgstr "Cikcakk"
  5345. #: /fdmprinter.def.json
  5346. msgctxt "top_bottom_pattern_0 option zigzag"
  5347. msgid "Zig Zag"
  5348. msgstr "Cikcakk"
  5349. #: /fdmprinter.def.json
  5350. msgctxt "travel description"
  5351. msgid "travel"
  5352. msgstr "fej átpozícionálás"
  5353. #~ msgctxt "machine_head_polygon description"
  5354. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5355. #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)."
  5356. #~ msgctxt "machine_head_with_fans_polygon description"
  5357. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5358. #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)."
  5359. #~ msgctxt "spaghetti_infill_extra_volume description"
  5360. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5361. #~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható."
  5362. #~ msgctxt "adaptive_layer_height_threshold label"
  5363. #~ msgid "Adaptive Layers Threshold"
  5364. #~ msgstr "Küszöbérték"
  5365. #~ msgctxt "spaghetti_flow description"
  5366. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5367. #~ msgstr "Beállítja a spagetti kitöltés sűrűségét. Vegye figyelembe, hogy a töltési sűrűség csak a töltési minta sorközét szabályozza, nem pedig a spagetti kitöltés extrudálásának mértékét."
  5368. #~ msgctxt "skin_alternate_rotation label"
  5369. #~ msgid "Alternate Skin Rotation"
  5370. #~ msgstr "Alternatív felületi forgás"
  5371. #~ msgctxt "skin_alternate_rotation description"
  5372. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5373. #~ msgstr "Az alsó/felső felületi kéregvonalak nyomtatási irányát változtatja meg.Általában ezek az irányok csak átlósak, azonban ez a beállítás hozzáadja a csak X és csak Y irányokat is."
  5374. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5375. #~ msgid "Apply the extruder offset to the coordinate system."
  5376. #~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva."
  5377. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5378. #~ msgid "Compensate Inner Wall Overlaps"
  5379. #~ msgstr "Kompenzálja a belső fal átfedéseit"
  5380. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5381. #~ msgid "Compensate Outer Wall Overlaps"
  5382. #~ msgstr "Kompenzálja a külső fal átfedéseit"
  5383. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5384. #~ msgid "Compensate Wall Overlaps"
  5385. #~ msgstr "Fali átlapolások kompenzálása"
  5386. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5387. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5388. #~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült."
  5389. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5390. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5391. #~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült."
  5392. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5393. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5394. #~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült."
  5395. #~ msgctxt "infill_mesh_order description"
  5396. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5397. #~ msgstr "Meghatározza, hogy melyik kitöltési háló helyezkedjen el egy másik kitöltési hálón. A magasabb rendű kitöltési háló megváltoztatja az alacsonyabb rendű és normál hálókat."
  5398. #~ msgctxt "support_xy_distance_overhang description"
  5399. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5400. #~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. "
  5401. #~ msgctxt "speed_equalize_flow_enabled label"
  5402. #~ msgid "Equalize Filament Flow"
  5403. #~ msgstr "Adagolás kiegyenlítés"
  5404. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5405. #~ msgid "Everywhere"
  5406. #~ msgstr "Mindenhol"
  5407. #~ msgctxt "machine_filament_park_distance label"
  5408. #~ msgid "Filament Park Distance"
  5409. #~ msgstr "Nyomtatószál park távolsága"
  5410. #~ msgctxt "fill_perimeter_gaps label"
  5411. #~ msgid "Fill Gaps Between Walls"
  5412. #~ msgstr "Falak közötti rések kitöltése"
  5413. #~ msgctxt "fill_perimeter_gaps description"
  5414. #~ msgid "Fills the gaps between walls where no walls fit."
  5415. #~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak."
  5416. #~ msgctxt "filter_out_tiny_gaps label"
  5417. #~ msgid "Filter Out Tiny Gaps"
  5418. #~ msgstr "Apró hézagok kiszűrése"
  5419. #~ msgctxt "filter_out_tiny_gaps description"
  5420. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  5421. #~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején."
  5422. #~ msgctxt "small_feature_speed_factor_0 label"
  5423. #~ msgid "First Layer Speed"
  5424. #~ msgstr "Első réteg sebesség"
  5425. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5426. #~ msgid "Flow rate compensation factor"
  5427. #~ msgstr "Adagoláskompenzáció faktor"
  5428. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5429. #~ msgid "Flow rate compensation max extrusion offset"
  5430. #~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció"
  5431. #~ msgctxt "material_guid description"
  5432. #~ msgid "GUID of the material. This is set automatically. "
  5433. #~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. "
  5434. #~ msgctxt "support_tree_enable description"
  5435. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5436. #~ msgstr "Generáljon fához hasonló támasz ágakkal, amelyek megtámasztják a nyomtatványt.Ez csökkentheti az anyagfelhasználást és a nyomtatási időt, de jelentősen megnöveli a szeletelési időt."
  5437. #~ msgctxt "machine_steps_per_mm_e description"
  5438. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5439. #~ msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen a nyomtatószál adagolásakor."
  5440. #~ msgctxt "slicing_tolerance description"
  5441. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5442. #~ msgstr "A szeleteléskor az egyes szeletek a tárgy egy adott pontjában haladnak át, keresztben. Az adott réteg területei úgy alakulnak ki, hogy az adott réteg középpontjában metszi-e a szelet felületét. (Középső)Alternatív megoldásként az egyes rétegeknek lehetnek olyan területei, amelyek a térfogat beljesébe esnek a teljes rétegmagasság alatt (Kizáró).A rétegnek lehetnek olyan területei, amelyek a réteg bármely pontján belülre esnek (Befoglaló).A kizárólagos megtartja a legtöbb részletet, amíg a befoglalt a legjobban illeszkedik. A középső igényli a legkevesebb feldolgozási időt."
  5443. #~ msgctxt "wall_min_flow_retract description"
  5444. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  5445. #~ msgstr "Ha engedélyezve van, akkor a visszahúzás van elsődlegesen használva a fésülés helyett, s így helyettesíti azokat a falakat, amiknek az anyag szükséglete az adagolási küszöb alatt lenne."
  5446. #~ msgctxt "infill_mesh_order label"
  5447. #~ msgid "Infill Mesh Order"
  5448. #~ msgstr "Kitöltés háló rend"
  5449. #~ msgctxt "machine_head_polygon label"
  5450. #~ msgid "Machine Head Polygon"
  5451. #~ msgstr "A nyomtatófej ábrázolása"
  5452. #~ msgctxt "machine_max_feedrate_e label"
  5453. #~ msgid "Maximum Feedrate"
  5454. #~ msgstr "Adagolás maximum"
  5455. #~ msgctxt "speed_equalize_flow_max label"
  5456. #~ msgid "Maximum Speed for Flow Equalization"
  5457. #~ msgstr "Maximális adagolás kompenzáció sebesség"
  5458. #~ msgctxt "max_extrusion_before_wipe description"
  5459. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5460. #~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva."
  5461. #~ msgctxt "speed_equalize_flow_max description"
  5462. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5463. #~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást."
  5464. #~ msgctxt "wall_min_flow label"
  5465. #~ msgid "Minimum Wall Flow"
  5466. #~ msgstr "Minimális fal adagolás"
  5467. #~ msgctxt "wall_min_flow description"
  5468. #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  5469. #~ msgstr "A fali vonalak minimális adagolása. A fal átlapolás kompenzáció csökkenti az adagolást, amikor a már meglévő falakhoz közel nyomtatunk. Azoknak a falaknak, ahol az adagolási sebesség kissebb lenne, mint ez a megadott érték, az útvonalat módosítani kell. Ennek a beállításnak a használatakor engedélyezni kell a a fal átfedés kompenzációját, és a külső falakat a belsők előtt kell nyomtatni."
  5470. #~ msgctxt "minimum_interface_area description"
  5471. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5472. #~ msgstr "A támasz interfész minimális területe. Az ezen az értéken kisebb területtel rendelkező támaszokat nem generálják."
  5473. #~ msgctxt "minimum_bottom_area description"
  5474. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5475. #~ msgstr "A támaszaljzat interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva."
  5476. #~ msgctxt "minimum_roof_area description"
  5477. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5478. #~ msgstr "A támasztető interfész minimális területe. Ha a terület kevesebbre jön ki a megadott értéktől, az nem lesz legenerálva."
  5479. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5480. #~ msgid "Nowhere"
  5481. #~ msgstr "Seholsem"
  5482. #~ msgctxt "outer_inset_first label"
  5483. #~ msgid "Outer Before Inner Walls"
  5484. #~ msgstr "Külső falak a belsők előtt"
  5485. #~ msgctxt "wall_min_flow_retract label"
  5486. #~ msgid "Prefer Retract"
  5487. #~ msgstr "Visszahúzás preferálása"
  5488. #~ msgctxt "spaghetti_infill_enabled description"
  5489. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5490. #~ msgstr "Ez a kitöltés nem minta alapján történik, hanem a nyomtatószálat kaotikusan, össze-vissza folyatja a kitöltésen belül. Ez csökkenti a nyomtatási időt, azonban a struktúra stabilitása, és viselkedése kiszámíthatatlan."
  5491. #~ msgctxt "speed_equalize_flow_enabled description"
  5492. #~ msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  5493. #~ msgstr "A normál vonalaktól vékonyabb vonalak nyomtatásakor a sebességet növelni fogja, miközben az extrudálás sebességét nem változatja. Így előfordulhat, hogy a modell vékonyabb darabjainál a vonalak szélessége kissebb lesz, mint a megadott.Ez a beállítás szabályozza az ilyen vonalaknak a nyomatatási sebesség változását."
  5494. #~ msgctxt "outer_inset_first description"
  5495. #~ msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  5496. #~ msgstr "A falakat külső, majd belső sorrendben nyomtatja, ha ez engedélyezve van.Ez hozzájárulhat a X és Y méret pontosságának javításához, különösen nagy viszkozitású műanyag, például ABS használatakor. Ez azonban csökkentheti a külső felület nyomtatási minőségét, különösen az átlapolásoknál."
  5497. #~ msgctxt "retraction_enable description"
  5498. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5499. #~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. "
  5500. #~ msgctxt "wipe_retraction_prime_speed label"
  5501. #~ msgid "Retraction Prime Speed"
  5502. #~ msgstr "Visszatöltési sebesség"
  5503. #~ msgctxt "shell label"
  5504. #~ msgid "Shell"
  5505. #~ msgstr "Héj"
  5506. #~ msgctxt "material_shrinkage_percentage label"
  5507. #~ msgid "Shrinkage Ratio"
  5508. #~ msgstr "Zsugorodási arány"
  5509. #~ msgctxt "material_shrinkage_percentage description"
  5510. #~ msgid "Shrinkage ratio in percentage."
  5511. #~ msgstr "ZSugorodási arány százalékban megadva."
  5512. #~ msgctxt "small_feature_speed_factor_0 description"
  5513. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5514. #~ msgstr "Az első réteg kis elemeit a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban."
  5515. #~ msgctxt "small_feature_speed_factor description"
  5516. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5517. #~ msgstr "A kisméretű elemeket a normál nyomtatási sebesség megadott százalékában nyomtatják ki. A lassabb nyomtatás segíthet a tapadásban és a pontosságban."
  5518. #~ msgctxt "spaghetti_flow label"
  5519. #~ msgid "Spaghetti Flow"
  5520. #~ msgstr "Spagetti adagolás"
  5521. #~ msgctxt "spaghetti_infill_enabled label"
  5522. #~ msgid "Spaghetti Infill"
  5523. #~ msgstr "Spagetti kitöltés"
  5524. #~ msgctxt "spaghetti_infill_extra_volume label"
  5525. #~ msgid "Spaghetti Infill Extra Volume"
  5526. #~ msgstr "Extra kitöltési térfogat"
  5527. #~ msgctxt "spaghetti_max_height label"
  5528. #~ msgid "Spaghetti Infill Maximum Height"
  5529. #~ msgstr "Kitöltés maximum magasság"
  5530. #~ msgctxt "spaghetti_infill_stepped label"
  5531. #~ msgid "Spaghetti Infill Stepping"
  5532. #~ msgstr "Lépésenkénti kitöltés"
  5533. #~ msgctxt "spaghetti_inset label"
  5534. #~ msgid "Spaghetti Inset"
  5535. #~ msgstr "Spagetti berakás"
  5536. #~ msgctxt "spaghetti_max_infill_angle label"
  5537. #~ msgid "Spaghetti Maximum Infill Angle"
  5538. #~ msgstr "Maximális kitöltési szög"
  5539. #~ msgctxt "machine_filament_park_distance description"
  5540. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5541. #~ msgstr "Ez a távolság a fúvóka végétől mért távolság, ameddig a nyomtatószálat vissza szükséges húzni, ha nem használjuk az adott extrudert."
  5542. #~ msgctxt "spaghetti_max_infill_angle description"
  5543. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5544. #~ msgstr "A maximális w.r.t. szög a nyomtatás belsejében, és a Z tengelye azokon a területeken, amelyeket utána spagetti töltelékkel kell kitölteni. Ennek az értéknek a csökkentésével több olyan szögben lévő részeket hoz létre, amit minden rétegben meg kell tölteni."
  5545. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5546. #~ msgid "The maximum distance in mm to compensate."
  5547. #~ msgstr "A maximális távolság mm -ben történő kompenzációja."
  5548. #~ msgctxt "spaghetti_max_height description"
  5549. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5550. #~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni."
  5551. #~ msgctxt "mold_width description"
  5552. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5553. #~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság."
  5554. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5555. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5556. #~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció."
  5557. #~ msgctxt "support_tree_wall_count description"
  5558. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5559. #~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen."
  5560. #~ msgctxt "spaghetti_inset description"
  5561. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5562. #~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül."
  5563. #~ msgctxt "infill_pattern description"
  5564. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5565. #~ msgstr "A kitöltés mintázata. A vonal és a cikcakk felváltva cserélgeti az irányát rétegenként, csökkentve ezzel az anyagköltséget. A rács, háromszög, háromhatszög,kocka, oktett, negyed kocka, kereszt és koncentrikus mintákat minden rétegben nyomtatjuk. A gyroid, a kocka, a negyedkocka, és az oktett töltés minden rétegben változik, és így egyenletesebb az erő eloszlása minden irányban."
  5566. #~ msgctxt "speed_layer_0 description"
  5567. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5568. #~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz."
  5569. #~ msgctxt "material_bed_temperature_layer_0 description"
  5570. #~ msgid "The temperature used for the heated build plate at the first layer."
  5571. #~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához."
  5572. #~ msgctxt "material_bed_temperature description"
  5573. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5574. #~ msgstr "A tárgyasztal hőmérséklete. Ha ez az érték 0, akkor tárgyasztal hőmérséklete nem lesz beállítva, azaz nem fogja fűteni a gép."
  5575. #~ msgctxt "support_tree_wall_thickness description"
  5576. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5577. #~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen."
  5578. #~ msgctxt "adaptive_layer_height_threshold description"
  5579. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5580. #~ msgstr "Annak a küszöbértéke, hogy kisebb legyen a rétegmagasság, vagy sem.Ezt a számot hasonlítják össze a réteg legmeredekebb meredekségével."
  5581. #~ msgctxt "max_skin_angle_for_expansion description"
  5582. #~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  5583. #~ msgstr "A tárgy alsó/felső felületén, az itt megadott szögnél nagyobb szög esetén a kéreg nem lesz kibővítve. Így elkerülhető, hogy a keskeny kéregrészek ne legyenek kibővítve, amik akkor jönnek létre, mikor a modell felülete közel függőleges szögben áll. A 0° szög a vízszintes, míg a 90° szög a függőlegest jelenti."
  5584. #~ msgctxt "support_tree_enable label"
  5585. #~ msgid "Tree Support"
  5586. #~ msgstr "Fa támasz"
  5587. #~ msgctxt "support_tree_wall_count label"
  5588. #~ msgid "Tree Support Wall Line Count"
  5589. #~ msgstr "Fal vonal szám"
  5590. #~ msgctxt "support_tree_wall_thickness label"
  5591. #~ msgid "Tree Support Wall Thickness"
  5592. #~ msgstr "Fal vastagság"
  5593. #~ msgctxt "wall_overhang_angle description"
  5594. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  5595. #~ msgstr "Ettől a szögtől nagyobb mértékben túlnyúló falakat, a túlnyúló falbeállítások segítségével nyomtatjuk ki. Ha az érték 90, egyetlen falat sem tekintünk túlnyúlásnak."
  5596. #~ msgctxt "retraction_combing_max_distance description"
  5597. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5598. #~ msgstr "Ha ez az érték nem nulla, akkor a megadott értéktől hosszabb utazáskor nyomtatószál visszahúzás fog történni."
  5599. #~ msgctxt "wipe_hop_enable description"
  5600. #~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5601. #~ msgstr "Amikor a szál visszahúzódik, akkor a Z tengelyen történik egy emelés, hogy a nyomtatófej és a tárgy között legyen egy Z irányú hézag.Ez megakadályozza, hogy a fúvóka beleüzközzön, és esetleg elmozdítsa a testet a tárgylemezről."
  5602. #~ msgctxt "clean_between_layers description"
  5603. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5604. #~ msgstr "Ha ezt használjuk, akkor lesz a G-kód -ban egy fúvóka törlés rétegváltáskor.A beállítás befolyásolhatja a visszahúzást rétegváltáskor.Kérjük használa a törlés visszahúzáskor beállításokat, ha felügyelni szeretné ezt olyan rétegeken, ahol a törlés kódrészlet működni fog."
  5605. #~ msgctxt "print_sequence description"
  5606. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5607. #~ msgstr "Beállíthatjuk, hogy az összes modellt egy rétegben, egyszerre nyomtassa, vagy egyesével, egymás után nyomtatódjanak ki. Ha egymás után nyomtatódnak, akkor a modellek teljes egészében kinyomtatódnak, majd ez után lép át a következő modellre. Azonban ez csak akkor hasznáható, ha a modellek megfelelő távolságra helyezkednek el egymástól, és a fej nem tud beleütközni egy már kész modellbe.Továbbá arra is ügyelni kell, hogy az X/Y kinematikai rendszer (kereszttengelyek)magasságánál alacsonyabbak legyenek a modellek."
  5608. #~ msgctxt "spaghetti_infill_stepped description"
  5609. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5610. #~ msgstr "A spagetti kitöltést lépésenként végezze, vagy egyszerre, a nyomtatás végén extrudálja a töltőszálat. (beleömleszti, össze-vissza)"
  5611. #~ msgctxt "wipe_hop_enable label"
  5612. #~ msgid "Wipe Z Hop When Retracted"
  5613. #~ msgstr "Törlési Z emelés visszahúzáskor"
  5614. #~ msgctxt "blackmagic description"
  5615. #~ msgid "category_blackmagic"
  5616. #~ msgstr "fekete mágia kategória"
  5617. #~ msgctxt "meshfix description"
  5618. #~ msgid "category_fixes"
  5619. #~ msgstr "korrekció kategóriák"
  5620. #~ msgctxt "experimental description"
  5621. #~ msgid "experimental!"
  5622. #~ msgstr "ezek még kísérleti stádiumban lévő funkciók!"