fdmprinter.def.json.po 324 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288
  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: 2023-04-28 10:03+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 "brim_inside_margin description"
  65. msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  66. msgstr ""
  67. #: fdmprinter.def.json
  68. msgctxt "support_tree_branch_reach_limit description"
  69. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  70. msgstr ""
  71. #: fdmprinter.def.json
  72. msgctxt "extruder_prime_pos_abs label"
  73. msgid "Absolute Extruder Prime Position"
  74. msgstr "Abszolút kezdő pozíció"
  75. #: fdmprinter.def.json
  76. msgctxt "adaptive_layer_height_variation label"
  77. msgid "Adaptive Layers Maximum Variation"
  78. msgstr "Adaptív rétegek maximális variációja"
  79. #: fdmprinter.def.json
  80. msgctxt "adaptive_layer_height_threshold label"
  81. msgid "Adaptive Layers Topography Size"
  82. msgstr ""
  83. #: fdmprinter.def.json
  84. msgctxt "adaptive_layer_height_variation_step label"
  85. msgid "Adaptive Layers Variation Step Size"
  86. msgstr "Lépésméret"
  87. #: fdmprinter.def.json
  88. msgctxt "adaptive_layer_height_enabled description"
  89. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  90. 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."
  91. #: fdmprinter.def.json
  92. msgctxt "infill_wall_line_count description"
  93. msgid ""
  94. "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"
  95. "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."
  96. msgstr ""
  97. "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"
  98. "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."
  99. #: fdmprinter.def.json
  100. msgctxt "platform_adhesion description"
  101. msgid "Adhesion"
  102. msgstr "Tapadás"
  103. #: fdmprinter.def.json
  104. msgctxt "material_adhesion_tendency label"
  105. msgid "Adhesion Tendency"
  106. msgstr "Tapadási jellemző"
  107. #: fdmprinter.def.json
  108. msgctxt "skin_overlap description"
  109. 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."
  110. 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."
  111. #: fdmprinter.def.json
  112. msgctxt "skin_overlap_mm description"
  113. 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."
  114. 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."
  115. #: fdmprinter.def.json
  116. msgctxt "infill_sparse_density description"
  117. msgid "Adjusts the density of infill of the print."
  118. msgstr "Beállítja a nyomtatás kitöltési sűrűségét."
  119. #: fdmprinter.def.json
  120. msgctxt "support_interface_density description"
  121. 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."
  122. 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."
  123. #: fdmprinter.def.json
  124. msgctxt "support_tree_top_rate description"
  125. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  126. msgstr ""
  127. #: fdmprinter.def.json
  128. msgctxt "support_infill_rate description"
  129. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  130. 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."
  131. #: fdmprinter.def.json
  132. msgctxt "material_diameter description"
  133. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  134. 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."
  135. #: fdmprinter.def.json
  136. msgctxt "support_type description"
  137. 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."
  138. 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."
  139. #: fdmprinter.def.json
  140. msgctxt "prime_tower_wipe_enabled description"
  141. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  142. 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."
  143. #: fdmprinter.def.json
  144. msgctxt "retraction_hop_after_extruder_switch description"
  145. 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."
  146. 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."
  147. #: fdmprinter.def.json
  148. msgctxt "retraction_combing option all"
  149. msgid "All"
  150. msgstr "Minden"
  151. #: fdmprinter.def.json
  152. msgctxt "print_sequence option all_at_once"
  153. msgid "All at Once"
  154. msgstr "Egyidőben"
  155. #: fdmprinter.def.json
  156. msgctxt "resolution description"
  157. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  158. 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."
  159. #: fdmprinter.def.json
  160. msgctxt "alternate_extra_perimeter label"
  161. msgid "Alternate Extra Wall"
  162. msgstr "Alternatív extra fal"
  163. #: fdmprinter.def.json
  164. msgctxt "alternate_carve_order label"
  165. msgid "Alternate Mesh Removal"
  166. msgstr "Alternatív háló eltávolítása"
  167. #: fdmprinter.def.json
  168. msgctxt "material_alternate_walls label"
  169. msgid "Alternate Wall Directions"
  170. msgstr ""
  171. #: fdmprinter.def.json
  172. msgctxt "material_alternate_walls description"
  173. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  174. msgstr ""
  175. #: fdmprinter.def.json
  176. msgctxt "machine_buildplate_type option aluminum"
  177. msgid "Aluminum"
  178. msgstr "Alumínium"
  179. #: fdmprinter.def.json
  180. msgctxt "machine_always_write_active_tool label"
  181. msgid "Always Write Active Tool"
  182. msgstr ""
  183. #: fdmprinter.def.json
  184. msgctxt "travel_retract_before_outer_wall description"
  185. msgid "Always retract when moving to start an outer wall."
  186. 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."
  187. #: fdmprinter.def.json
  188. msgctxt "hole_xy_offset description"
  189. 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."
  190. msgstr ""
  191. #: fdmprinter.def.json
  192. msgctxt "xy_offset description"
  193. 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."
  194. 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."
  195. #: fdmprinter.def.json
  196. msgctxt "xy_offset_layer_0 description"
  197. 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\"."
  198. 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\"."
  199. #: fdmprinter.def.json
  200. msgctxt "support_offset description"
  201. 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."
  202. 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."
  203. #: fdmprinter.def.json
  204. msgctxt "support_bottom_offset description"
  205. msgid "Amount of offset applied to the floors of the support."
  206. msgstr "A támaszaljzat interész sokszögeire alkalmazott eltolás összege."
  207. #: fdmprinter.def.json
  208. msgctxt "support_roof_offset description"
  209. msgid "Amount of offset applied to the roofs of the support."
  210. msgstr "A támaszfedél interész sokszögeire alkalmazott eltolás összege."
  211. #: fdmprinter.def.json
  212. msgctxt "support_interface_offset description"
  213. msgid "Amount of offset applied to the support interface polygons."
  214. msgstr "A támasz interész sokszögeire alkalmazott eltolás összege."
  215. #: fdmprinter.def.json
  216. msgctxt "wipe_retraction_amount description"
  217. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  218. 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."
  219. #: fdmprinter.def.json
  220. msgctxt "sub_div_rad_add description"
  221. 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."
  222. 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."
  223. #: fdmprinter.def.json
  224. msgctxt "anti_overhang_mesh label"
  225. msgid "Anti Overhang Mesh"
  226. msgstr "Túlnyúlás gátló háló"
  227. #: fdmprinter.def.json
  228. msgctxt "material_anti_ooze_retracted_position label"
  229. msgid "Anti-ooze Retracted Position"
  230. msgstr "Szivárgásgátló visszahúzási helyzet"
  231. #: fdmprinter.def.json
  232. msgctxt "material_anti_ooze_retraction_speed label"
  233. msgid "Anti-ooze Retraction Speed"
  234. msgstr "Szivárgásgátló visszahúzás sebesség"
  235. #: fdmprinter.def.json
  236. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  237. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  238. msgstr ""
  239. #: fdmprinter.def.json
  240. msgctxt "interlocking_enable description"
  241. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  242. msgstr ""
  243. #: fdmprinter.def.json
  244. msgctxt "travel_avoid_other_parts label"
  245. msgid "Avoid Printed Parts When Traveling"
  246. msgstr "Kinyomtatott részek kerülése utazáskor"
  247. #: fdmprinter.def.json
  248. msgctxt "travel_avoid_supports label"
  249. msgid "Avoid Supports When Traveling"
  250. msgstr "Támasz elkerülése utazáskor"
  251. #: fdmprinter.def.json
  252. msgctxt "z_seam_position option back"
  253. msgid "Back"
  254. msgstr "Hátra"
  255. #: fdmprinter.def.json
  256. msgctxt "z_seam_position option backleft"
  257. msgid "Back Left"
  258. msgstr "Hátra balra"
  259. #: fdmprinter.def.json
  260. msgctxt "z_seam_position option backright"
  261. msgid "Back Right"
  262. msgstr "Hátra jobbra"
  263. #: fdmprinter.def.json
  264. msgctxt "machine_gcode_flavor option BFB"
  265. msgid "Bits from Bytes"
  266. msgstr "Bits from Bytes (BFB)"
  267. #: fdmprinter.def.json
  268. msgctxt "magic_mesh_surface_mode option both"
  269. msgid "Both"
  270. msgstr "Mindkettő"
  271. #: fdmprinter.def.json
  272. msgctxt "support_interface_priority option nothing"
  273. msgid "Both overlap"
  274. msgstr ""
  275. #: fdmprinter.def.json
  276. msgctxt "bottom_layers label"
  277. msgid "Bottom Layers"
  278. msgstr "Alsó rétegek"
  279. #: fdmprinter.def.json
  280. msgctxt "top_bottom_pattern_0 label"
  281. msgid "Bottom Pattern Initial Layer"
  282. msgstr "Alsó kezdő réteg mintázata"
  283. #: fdmprinter.def.json
  284. msgctxt "bottom_skin_expand_distance label"
  285. msgid "Bottom Skin Expand Distance"
  286. msgstr "Alsó kéreg bővítési távolság"
  287. #: fdmprinter.def.json
  288. msgctxt "bottom_skin_preshrink label"
  289. msgid "Bottom Skin Removal Width"
  290. msgstr "Alsó kéreg eltávolítási szélesség"
  291. #: fdmprinter.def.json
  292. msgctxt "bottom_thickness label"
  293. msgid "Bottom Thickness"
  294. msgstr "Alsó vastagság"
  295. #: fdmprinter.def.json
  296. msgctxt "support_tree_top_rate label"
  297. msgid "Branch Density"
  298. msgstr ""
  299. #: fdmprinter.def.json
  300. msgctxt "support_tree_branch_diameter label"
  301. msgid "Branch Diameter"
  302. msgstr ""
  303. #: fdmprinter.def.json
  304. msgctxt "support_tree_branch_diameter_angle label"
  305. msgid "Branch Diameter Angle"
  306. msgstr ""
  307. #: fdmprinter.def.json
  308. msgctxt "material_break_preparation_retracted_position label"
  309. msgid "Break Preparation Retracted Position"
  310. msgstr "Szakadás előállítás visszahúzott helyzetben"
  311. #: fdmprinter.def.json
  312. msgctxt "material_break_preparation_speed label"
  313. msgid "Break Preparation Retraction Speed"
  314. msgstr "Szakadás előállítás visszahúzási sebeség"
  315. #: fdmprinter.def.json
  316. msgctxt "material_break_preparation_temperature label"
  317. msgid "Break Preparation Temperature"
  318. msgstr ""
  319. #: fdmprinter.def.json
  320. msgctxt "material_break_retracted_position label"
  321. msgid "Break Retracted Position"
  322. msgstr "Sazakdás visszahúzási helyzet"
  323. #: fdmprinter.def.json
  324. msgctxt "material_break_speed label"
  325. msgid "Break Retraction Speed"
  326. msgstr "Szakítás visszahúzási sebesség"
  327. #: fdmprinter.def.json
  328. msgctxt "material_break_temperature label"
  329. msgid "Break Temperature"
  330. msgstr "Szakítási hőmérséklet"
  331. #: fdmprinter.def.json
  332. msgctxt "support_skip_some_zags label"
  333. msgid "Break Up Support In Chunks"
  334. msgstr "Támasz tördelhetősége"
  335. #: fdmprinter.def.json
  336. msgctxt "bridge_fan_speed label"
  337. msgid "Bridge Fan Speed"
  338. msgstr "Híd hűtési sebesség"
  339. #: fdmprinter.def.json
  340. msgctxt "bridge_enable_more_layers label"
  341. msgid "Bridge Has Multiple Layers"
  342. msgstr "Többrétegű híd"
  343. #: fdmprinter.def.json
  344. msgctxt "bridge_skin_density_2 label"
  345. msgid "Bridge Second Skin Density"
  346. msgstr "Második hídréteg sűrűség"
  347. #: fdmprinter.def.json
  348. msgctxt "bridge_fan_speed_2 label"
  349. msgid "Bridge Second Skin Fan Speed"
  350. msgstr "Második hídréteg hűtési sebessége"
  351. #: fdmprinter.def.json
  352. msgctxt "bridge_skin_material_flow_2 label"
  353. msgid "Bridge Second Skin Flow"
  354. msgstr "Második hídréteg adagolás"
  355. #: fdmprinter.def.json
  356. msgctxt "bridge_skin_speed_2 label"
  357. msgid "Bridge Second Skin Speed"
  358. msgstr "Második hídréteg sebessége"
  359. #: fdmprinter.def.json
  360. msgctxt "bridge_skin_density label"
  361. msgid "Bridge Skin Density"
  362. msgstr "Hídfelszín sűrűsége"
  363. #: fdmprinter.def.json
  364. msgctxt "bridge_skin_material_flow label"
  365. msgid "Bridge Skin Flow"
  366. msgstr "Hídfelszín adagolás"
  367. #: fdmprinter.def.json
  368. msgctxt "bridge_skin_speed label"
  369. msgid "Bridge Skin Speed"
  370. msgstr "Hídfelszín sebesség"
  371. #: fdmprinter.def.json
  372. msgctxt "bridge_skin_support_threshold label"
  373. msgid "Bridge Skin Support Threshold"
  374. msgstr "Felület támasz küszöb"
  375. #: fdmprinter.def.json
  376. msgctxt "bridge_sparse_infill_max_density label"
  377. msgid "Bridge Sparse Infill Max Density"
  378. msgstr ""
  379. #: fdmprinter.def.json
  380. msgctxt "bridge_skin_density_3 label"
  381. msgid "Bridge Third Skin Density"
  382. msgstr "Harmadik hídréteg sűrűség"
  383. #: fdmprinter.def.json
  384. msgctxt "bridge_fan_speed_3 label"
  385. msgid "Bridge Third Skin Fan Speed"
  386. msgstr "Harmadik hídréteg hűtési sebessége"
  387. #: fdmprinter.def.json
  388. msgctxt "bridge_skin_material_flow_3 label"
  389. msgid "Bridge Third Skin Flow"
  390. msgstr "Harmadik hídréteg adagolás"
  391. #: fdmprinter.def.json
  392. msgctxt "bridge_skin_speed_3 label"
  393. msgid "Bridge Third Skin Speed"
  394. msgstr "Harmadik hídréteg sebesség"
  395. #: fdmprinter.def.json
  396. msgctxt "bridge_wall_coast label"
  397. msgid "Bridge Wall Coasting"
  398. msgstr "Híd fal kifutás"
  399. #: fdmprinter.def.json
  400. msgctxt "bridge_wall_material_flow label"
  401. msgid "Bridge Wall Flow"
  402. msgstr "Hídfal adagolás"
  403. #: fdmprinter.def.json
  404. msgctxt "bridge_wall_speed label"
  405. msgid "Bridge Wall Speed"
  406. msgstr "Hídfal sebesség"
  407. #: fdmprinter.def.json
  408. msgctxt "adhesion_type option brim"
  409. msgid "Brim"
  410. msgstr "Perem"
  411. #: fdmprinter.def.json
  412. msgctxt "brim_gap label"
  413. msgid "Brim Distance"
  414. msgstr ""
  415. #: fdmprinter.def.json
  416. msgctxt "brim_inside_margin label"
  417. msgid "Brim Inside Avoid Margin"
  418. msgstr ""
  419. #: fdmprinter.def.json
  420. msgctxt "brim_line_count label"
  421. msgid "Brim Line Count"
  422. msgstr "Perem vonalszám"
  423. #: fdmprinter.def.json
  424. msgctxt "brim_outside_only label"
  425. msgid "Brim Only on Outside"
  426. msgstr "Perem csak kívül"
  427. #: fdmprinter.def.json
  428. msgctxt "brim_replaces_support label"
  429. msgid "Brim Replaces Support"
  430. msgstr "Perem támasz helyett"
  431. #: fdmprinter.def.json
  432. msgctxt "brim_width label"
  433. msgid "Brim Width"
  434. msgstr "Perem szélesség"
  435. #: fdmprinter.def.json
  436. msgctxt "platform_adhesion label"
  437. msgid "Build Plate Adhesion"
  438. msgstr "Tárgyasztal tapadás"
  439. #: fdmprinter.def.json
  440. msgctxt "adhesion_extruder_nr label"
  441. msgid "Build Plate Adhesion Extruder"
  442. msgstr "Tapadás extruder"
  443. #: fdmprinter.def.json
  444. msgctxt "adhesion_type label"
  445. msgid "Build Plate Adhesion Type"
  446. msgstr "Tárgyasztal tapadási típus"
  447. #: fdmprinter.def.json
  448. msgctxt "machine_buildplate_type label"
  449. msgid "Build Plate Material"
  450. msgstr "Tárgyasztal anyaga"
  451. #: fdmprinter.def.json
  452. msgctxt "machine_shape label"
  453. msgid "Build Plate Shape"
  454. msgstr "Tárgyasztal alakja"
  455. #: fdmprinter.def.json
  456. msgctxt "material_bed_temperature label"
  457. msgid "Build Plate Temperature"
  458. msgstr "Tárgyasztal hőmérséklete"
  459. #: fdmprinter.def.json
  460. msgctxt "material_bed_temperature_layer_0 label"
  461. msgid "Build Plate Temperature Initial Layer"
  462. msgstr "Tárgyasztal hőmérséklet a kezdő rétegnél"
  463. #: fdmprinter.def.json
  464. msgctxt "build_volume_temperature label"
  465. msgid "Build Volume Temperature"
  466. msgstr "Építési tér hőmérséklete"
  467. #: fdmprinter.def.json
  468. msgctxt "center_object label"
  469. msgid "Center Object"
  470. msgstr "Tárgy középpontba"
  471. #: fdmprinter.def.json
  472. msgctxt "conical_overhang_enabled description"
  473. 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."
  474. 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é."
  475. #: fdmprinter.def.json
  476. msgctxt "support_structure description"
  477. 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."
  478. msgstr ""
  479. #: fdmprinter.def.json
  480. msgctxt "coasting_speed label"
  481. msgid "Coasting Speed"
  482. msgstr "Kifutási sebesség"
  483. #: fdmprinter.def.json
  484. msgctxt "coasting_volume label"
  485. msgid "Coasting Volume"
  486. msgstr "Kifutási mérték"
  487. #: fdmprinter.def.json
  488. msgctxt "coasting_enable description"
  489. 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."
  490. 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."
  491. #: fdmprinter.def.json
  492. msgctxt "retraction_combing label"
  493. msgid "Combing Mode"
  494. msgstr "Fésülés mód"
  495. #: fdmprinter.def.json
  496. msgctxt "retraction_combing description"
  497. 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."
  498. 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."
  499. #: fdmprinter.def.json
  500. msgctxt "command_line_settings label"
  501. msgid "Command Line Settings"
  502. msgstr "Parancssor beállításai"
  503. #: fdmprinter.def.json
  504. msgctxt "infill_pattern option concentric"
  505. msgid "Concentric"
  506. msgstr "Körkörös"
  507. #: fdmprinter.def.json
  508. msgctxt "ironing_pattern option concentric"
  509. msgid "Concentric"
  510. msgstr "Körkörös"
  511. #: fdmprinter.def.json
  512. msgctxt "roofing_pattern option concentric"
  513. msgid "Concentric"
  514. msgstr "Körkörös"
  515. #: fdmprinter.def.json
  516. msgctxt "support_bottom_pattern option concentric"
  517. msgid "Concentric"
  518. msgstr "Körkörös"
  519. #: fdmprinter.def.json
  520. msgctxt "support_interface_pattern option concentric"
  521. msgid "Concentric"
  522. msgstr "Körkörös"
  523. #: fdmprinter.def.json
  524. msgctxt "support_pattern option concentric"
  525. msgid "Concentric"
  526. msgstr "Körkörös"
  527. #: fdmprinter.def.json
  528. msgctxt "support_roof_pattern option concentric"
  529. msgid "Concentric"
  530. msgstr "Körkörös"
  531. #: fdmprinter.def.json
  532. msgctxt "top_bottom_pattern option concentric"
  533. msgid "Concentric"
  534. msgstr "Körkörös"
  535. #: fdmprinter.def.json
  536. msgctxt "top_bottom_pattern_0 option concentric"
  537. msgid "Concentric"
  538. msgstr "Körkörös"
  539. #: fdmprinter.def.json
  540. msgctxt "support_conical_angle label"
  541. msgid "Conical Support Angle"
  542. msgstr "Kúpszög"
  543. #: fdmprinter.def.json
  544. msgctxt "support_conical_min_width label"
  545. msgid "Conical Support Minimum Width"
  546. msgstr "Kúptámasz minimális szélesség"
  547. #: fdmprinter.def.json
  548. msgctxt "zig_zaggify_infill label"
  549. msgid "Connect Infill Lines"
  550. msgstr "Kitöltő vonalak csatlakozása"
  551. #: fdmprinter.def.json
  552. msgctxt "connect_infill_polygons label"
  553. msgid "Connect Infill Polygons"
  554. msgstr "Kitöltési sokszögek csatlakozása"
  555. #: fdmprinter.def.json
  556. msgctxt "zig_zaggify_support label"
  557. msgid "Connect Support Lines"
  558. msgstr "Támasz vonalak összekötése"
  559. #: fdmprinter.def.json
  560. msgctxt "support_connect_zigzags label"
  561. msgid "Connect Support ZigZags"
  562. msgstr "Cikcakk támasz összekötése"
  563. #: fdmprinter.def.json
  564. msgctxt "connect_skin_polygons label"
  565. msgid "Connect Top/Bottom Polygons"
  566. msgstr "Alsó/felső poligonok kapcsolása"
  567. #: fdmprinter.def.json
  568. msgctxt "connect_infill_polygons description"
  569. 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."
  570. msgstr ""
  571. #: fdmprinter.def.json
  572. msgctxt "support_connect_zigzags description"
  573. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  574. msgstr "Kösse össze a cikcakk támasz vonalait. Ez növeli a támasz szerkezeti erősségét."
  575. #: fdmprinter.def.json
  576. msgctxt "zig_zaggify_support description"
  577. 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."
  578. 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."
  579. #: fdmprinter.def.json
  580. msgctxt "zig_zaggify_infill description"
  581. 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."
  582. 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."
  583. #: fdmprinter.def.json
  584. msgctxt "connect_skin_polygons description"
  585. 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."
  586. 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."
  587. #: fdmprinter.def.json
  588. msgctxt "z_seam_corner description"
  589. 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."
  590. 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."
  591. #: fdmprinter.def.json
  592. msgctxt "infill_multiplier description"
  593. 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."
  594. 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."
  595. #: fdmprinter.def.json
  596. msgctxt "machine_nozzle_cool_down_speed label"
  597. msgid "Cool Down Speed"
  598. msgstr "Visszahűlési sebesség"
  599. #: fdmprinter.def.json
  600. msgctxt "cooling description"
  601. msgid "Cooling"
  602. msgstr "Hűtés"
  603. #: fdmprinter.def.json
  604. msgctxt "cooling label"
  605. msgid "Cooling"
  606. msgstr "Hűtés"
  607. #: fdmprinter.def.json
  608. msgctxt "infill_pattern option cross"
  609. msgid "Cross"
  610. msgstr "Kereszt"
  611. #: fdmprinter.def.json
  612. msgctxt "support_pattern option cross"
  613. msgid "Cross"
  614. msgstr "Kereszt"
  615. #: fdmprinter.def.json
  616. msgctxt "infill_pattern option cross_3d"
  617. msgid "Cross 3D"
  618. msgstr "3D kereszt"
  619. #: fdmprinter.def.json
  620. msgctxt "cross_infill_pocket_size label"
  621. msgid "Cross 3D Pocket Size"
  622. msgstr "Kereszt 3D üreg méret"
  623. #: fdmprinter.def.json
  624. msgctxt "cross_support_density_image label"
  625. msgid "Cross Fill Density Image for Support"
  626. msgstr "Kereszt támasz kitöltési kép"
  627. #: fdmprinter.def.json
  628. msgctxt "cross_infill_density_image label"
  629. msgid "Cross Infill Density Image"
  630. msgstr "Kereszt kitöltési kép"
  631. #: fdmprinter.def.json
  632. msgctxt "material_crystallinity label"
  633. msgid "Crystalline Material"
  634. msgstr "Kristályos anyag"
  635. #: fdmprinter.def.json
  636. msgctxt "infill_pattern option cubic"
  637. msgid "Cubic"
  638. msgstr "Kocka"
  639. #: fdmprinter.def.json
  640. msgctxt "infill_pattern option cubicsubdiv"
  641. msgid "Cubic Subdivision"
  642. msgstr "Osztott kocka"
  643. #: fdmprinter.def.json
  644. msgctxt "sub_div_rad_add label"
  645. msgid "Cubic Subdivision Shell"
  646. msgstr "Osztott kocka héj"
  647. #: fdmprinter.def.json
  648. msgctxt "cutting_mesh label"
  649. msgid "Cutting Mesh"
  650. msgstr "Háló vágás"
  651. #: fdmprinter.def.json
  652. msgctxt "material_flow_temp_graph description"
  653. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  654. msgstr "A nyomtatószál adagolást (mm3/mp), és a hőmérsékletet (Celsius) összekötő adatok."
  655. #: fdmprinter.def.json
  656. msgctxt "machine_acceleration label"
  657. msgid "Default Acceleration"
  658. msgstr "Alapértelmezett gyorsulás"
  659. #: fdmprinter.def.json
  660. msgctxt "default_material_bed_temperature label"
  661. msgid "Default Build Plate Temperature"
  662. msgstr "Alapértelmezett tárgyasztal hőmérséklet"
  663. #: fdmprinter.def.json
  664. msgctxt "machine_max_jerk_e label"
  665. msgid "Default Filament Jerk"
  666. msgstr "Alapértelmezett E löket"
  667. #: fdmprinter.def.json
  668. msgctxt "default_material_print_temperature label"
  669. msgid "Default Printing Temperature"
  670. msgstr "Alapértelmezett nyomtatási hőmérséklet"
  671. #: fdmprinter.def.json
  672. msgctxt "machine_max_jerk_xy label"
  673. msgid "Default X-Y Jerk"
  674. msgstr "Alapértelmezett X-Y löket"
  675. #: fdmprinter.def.json
  676. msgctxt "machine_max_jerk_z label"
  677. msgid "Default Z Jerk"
  678. msgstr "Alapértelmezett Z löket"
  679. #: fdmprinter.def.json
  680. msgctxt "machine_max_jerk_xy description"
  681. msgid "Default jerk for movement in the horizontal plane."
  682. msgstr "Alapértelmezett löket a vízszintes síkon történő mozgáskor."
  683. #: fdmprinter.def.json
  684. msgctxt "machine_max_jerk_z description"
  685. msgid "Default jerk for the motor of the Z-direction."
  686. msgstr "Alapértelmezett löket a Z tengelyen."
  687. #: fdmprinter.def.json
  688. msgctxt "machine_max_jerk_e description"
  689. msgid "Default jerk for the motor of the filament."
  690. msgstr "Alapértelmezett extrudálási löket."
  691. #: fdmprinter.def.json
  692. msgctxt "bridge_settings_enabled description"
  693. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  694. 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."
  695. #: fdmprinter.def.json
  696. msgctxt "inset_direction description"
  697. 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."
  698. msgstr ""
  699. #: fdmprinter.def.json
  700. msgctxt "infill_mesh_order description"
  701. 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."
  702. msgstr ""
  703. #: fdmprinter.def.json
  704. msgctxt "lightning_infill_support_angle description"
  705. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  706. msgstr ""
  707. #: fdmprinter.def.json
  708. msgctxt "lightning_infill_overhang_angle description"
  709. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  710. msgstr ""
  711. #: fdmprinter.def.json
  712. msgctxt "material_diameter label"
  713. msgid "Diameter"
  714. msgstr "Átmérő"
  715. #: fdmprinter.def.json
  716. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  717. msgid "Diameter Increase To Model"
  718. msgstr ""
  719. #: fdmprinter.def.json
  720. msgctxt "support_tree_bp_diameter description"
  721. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  722. msgstr ""
  723. #: fdmprinter.def.json
  724. msgctxt "adhesion_type description"
  725. 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."
  726. 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."
  727. #: fdmprinter.def.json
  728. msgctxt "machine_disallowed_areas label"
  729. msgid "Disallowed Areas"
  730. msgstr "Tiltott területek"
  731. #: fdmprinter.def.json
  732. msgctxt "infill_line_distance description"
  733. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  734. 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."
  735. #: fdmprinter.def.json
  736. msgctxt "support_initial_layer_line_distance description"
  737. msgid "Distance between the printed initial layer 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 az első rétegben.Ez egy számított érték a támasz sűrűségből."
  739. #: fdmprinter.def.json
  740. msgctxt "support_bottom_line_distance description"
  741. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  742. 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ó."
  743. #: fdmprinter.def.json
  744. msgctxt "support_roof_line_distance description"
  745. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  746. 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ó."
  747. #: fdmprinter.def.json
  748. msgctxt "support_line_distance description"
  749. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  750. 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."
  751. #: fdmprinter.def.json
  752. msgctxt "support_bottom_distance description"
  753. msgid "Distance from the print to the bottom of the support."
  754. msgstr "A támasz alja és az alatta lévő nyomtatvány közötti távolság."
  755. #: fdmprinter.def.json
  756. msgctxt "support_top_distance description"
  757. msgid "Distance from the top of the support to the print."
  758. msgstr "A támasz teteje és a fölé épített nyomtatvány közötti távolság."
  759. #: fdmprinter.def.json
  760. msgctxt "support_z_distance description"
  761. 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."
  762. 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."
  763. #: fdmprinter.def.json
  764. msgctxt "infill_wipe_dist description"
  765. 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."
  766. 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."
  767. #: fdmprinter.def.json
  768. msgctxt "wall_0_wipe_dist description"
  769. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  770. 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."
  771. #: fdmprinter.def.json
  772. msgctxt "draft_shield_dist description"
  773. msgid "Distance of the draft shield from the print, in the X/Y directions."
  774. msgstr "A modell és a huzatpajzs közötti távolság X/Y irányban."
  775. #: fdmprinter.def.json
  776. msgctxt "ooze_shield_dist description"
  777. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  778. msgstr "A pajzs távolsága a nyomtatványtól X/Y irányban értve."
  779. #: fdmprinter.def.json
  780. msgctxt "support_xy_distance_overhang description"
  781. msgid "Distance of the support structure from the overhang in the X/Y directions."
  782. msgstr ""
  783. #: fdmprinter.def.json
  784. msgctxt "support_xy_distance description"
  785. msgid "Distance of the support structure from the print in the X/Y directions."
  786. msgstr "A támasz szerkezete és a nyomtatvány közötti távolság X/Y irányban."
  787. #: fdmprinter.def.json
  788. msgctxt "min_infill_area description"
  789. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  790. msgstr "Az ettől kisebb területekre nem generál kitöltést."
  791. #: fdmprinter.def.json
  792. msgctxt "draft_shield_height label"
  793. msgid "Draft Shield Height"
  794. msgstr "Huzatpajzs magasság"
  795. #: fdmprinter.def.json
  796. msgctxt "draft_shield_height_limitation label"
  797. msgid "Draft Shield Limitation"
  798. msgstr "Huzatpajzs korlátozás"
  799. #: fdmprinter.def.json
  800. msgctxt "draft_shield_dist label"
  801. msgid "Draft Shield X/Y Distance"
  802. msgstr "Huzatpajzs X/Y távolság"
  803. #: fdmprinter.def.json
  804. msgctxt "support_mesh_drop_down label"
  805. msgid "Drop Down Support Mesh"
  806. msgstr "Támaszháló ledobás"
  807. #: fdmprinter.def.json
  808. msgctxt "dual label"
  809. msgid "Dual Extrusion"
  810. msgstr "Duál extrudálás"
  811. #: fdmprinter.def.json
  812. msgctxt "machine_shape option elliptic"
  813. msgid "Elliptic"
  814. msgstr "Elliptikus (kör)"
  815. #: fdmprinter.def.json
  816. msgctxt "acceleration_enabled label"
  817. msgid "Enable Acceleration Control"
  818. msgstr "Gyorsulás vezérlés engedélyezés"
  819. #: fdmprinter.def.json
  820. msgctxt "bridge_settings_enabled label"
  821. msgid "Enable Bridge Settings"
  822. msgstr "Híd beállítások engedélyezése"
  823. #: fdmprinter.def.json
  824. msgctxt "coasting_enable label"
  825. msgid "Enable Coasting"
  826. msgstr "Kifutás engedélyezés"
  827. #: fdmprinter.def.json
  828. msgctxt "support_conical_enabled label"
  829. msgid "Enable Conical Support"
  830. msgstr "Kúpos támasz engedélyezése"
  831. #: fdmprinter.def.json
  832. msgctxt "draft_shield_enabled label"
  833. msgid "Enable Draft Shield"
  834. msgstr "Huzatpajzs engedélyezése"
  835. #: fdmprinter.def.json
  836. msgctxt "ironing_enabled label"
  837. msgid "Enable Ironing"
  838. msgstr "Vasalás engedélyezés"
  839. #: fdmprinter.def.json
  840. msgctxt "jerk_enabled label"
  841. msgid "Enable Jerk Control"
  842. msgstr "Löket vezérlés engedélyezése"
  843. #: fdmprinter.def.json
  844. msgctxt "machine_nozzle_temp_enabled label"
  845. msgid "Enable Nozzle Temperature Control"
  846. msgstr "A fúvóka hőmérséklet-szabályozásának engedélyezése"
  847. #: fdmprinter.def.json
  848. msgctxt "ooze_shield_enabled label"
  849. msgid "Enable Ooze Shield"
  850. msgstr "Szivárgáspajzs engedélyezés"
  851. #: fdmprinter.def.json
  852. msgctxt "prime_blob_enable label"
  853. msgid "Enable Prime Blob"
  854. msgstr "Előnyomás engedélyezése"
  855. #: fdmprinter.def.json
  856. msgctxt "prime_tower_enable label"
  857. msgid "Enable Prime Tower"
  858. msgstr "Előtorony engedélyezése"
  859. #: fdmprinter.def.json
  860. msgctxt "cool_fan_enabled label"
  861. msgid "Enable Print Cooling"
  862. msgstr "Tárgyhűtés engedélyezés"
  863. #: fdmprinter.def.json
  864. msgctxt "retraction_enable label"
  865. msgid "Enable Retraction"
  866. msgstr "Visszahúzás engedélyezés"
  867. #: fdmprinter.def.json
  868. msgctxt "support_brim_enable label"
  869. msgid "Enable Support Brim"
  870. msgstr "Támasz perem engedélyezése"
  871. #: fdmprinter.def.json
  872. msgctxt "support_bottom_enable label"
  873. msgid "Enable Support Floor"
  874. msgstr "Alsó interfész engedélyezés"
  875. #: fdmprinter.def.json
  876. msgctxt "support_interface_enable label"
  877. msgid "Enable Support Interface"
  878. msgstr "Támasz interfész engedélyezés"
  879. #: fdmprinter.def.json
  880. msgctxt "support_roof_enable label"
  881. msgid "Enable Support Roof"
  882. msgstr "Felső interfész engedélyezés"
  883. #: fdmprinter.def.json
  884. msgctxt "acceleration_travel_enabled label"
  885. msgid "Enable Travel Acceleration"
  886. msgstr ""
  887. #: fdmprinter.def.json
  888. msgctxt "jerk_travel_enabled label"
  889. msgid "Enable Travel Jerk"
  890. msgstr ""
  891. #: fdmprinter.def.json
  892. msgctxt "ooze_shield_enabled description"
  893. 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."
  894. 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."
  895. #: fdmprinter.def.json
  896. msgctxt "jerk_enabled description"
  897. 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."
  898. 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."
  899. #: fdmprinter.def.json
  900. msgctxt "acceleration_enabled description"
  901. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  902. 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."
  903. #: fdmprinter.def.json
  904. msgctxt "cool_fan_enabled description"
  905. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  906. 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."
  907. #: fdmprinter.def.json
  908. msgctxt "machine_end_gcode label"
  909. msgid "End G-code"
  910. msgstr "Záró G-kód"
  911. #: fdmprinter.def.json
  912. msgctxt "material_end_of_filament_purge_length label"
  913. msgid "End of Filament Purge Length"
  914. msgstr ""
  915. #: fdmprinter.def.json
  916. msgctxt "material_end_of_filament_purge_speed label"
  917. msgid "End of Filament Purge Speed"
  918. msgstr ""
  919. #: fdmprinter.def.json
  920. msgctxt "brim_replaces_support description"
  921. 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."
  922. 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."
  923. #: fdmprinter.def.json
  924. msgctxt "support_type option everywhere"
  925. msgid "Everywhere"
  926. msgstr "Mindenhol"
  927. #: fdmprinter.def.json
  928. msgctxt "slicing_tolerance option exclusive"
  929. msgid "Exclusive"
  930. msgstr "Kizáró"
  931. #: fdmprinter.def.json
  932. msgctxt "experimental label"
  933. msgid "Experimental"
  934. msgstr "Kísérleti funkciók"
  935. #: fdmprinter.def.json
  936. msgctxt "z_seam_corner option z_seam_corner_outer"
  937. msgid "Expose Seam"
  938. msgstr "Külső varrat"
  939. #: fdmprinter.def.json
  940. msgctxt "meshfix_extensive_stitching label"
  941. msgid "Extensive Stitching"
  942. msgstr "Kiterjedt felfűzés"
  943. #: fdmprinter.def.json
  944. msgctxt "meshfix_extensive_stitching description"
  945. 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."
  946. 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."
  947. #: fdmprinter.def.json
  948. msgctxt "infill_wall_line_count label"
  949. msgid "Extra Infill Wall Count"
  950. msgstr "Extra kitöltési falszám"
  951. #: fdmprinter.def.json
  952. msgctxt "skin_outline_count label"
  953. msgid "Extra Skin Wall Count"
  954. msgstr "Extra felületi falszám"
  955. #: fdmprinter.def.json
  956. msgctxt "switch_extruder_extra_prime_amount description"
  957. msgid "Extra material to prime after nozzle switching."
  958. msgstr "Egy extra anyagmennyiség, amivel több anyagot tol vissza a fejbe fúvókaváltás után."
  959. #: fdmprinter.def.json
  960. msgctxt "extruder_prime_pos_x label"
  961. msgid "Extruder Prime X Position"
  962. msgstr "Extruder kezdő X helyzet"
  963. #: fdmprinter.def.json
  964. msgctxt "extruder_prime_pos_y label"
  965. msgid "Extruder Prime Y Position"
  966. msgstr "Extruder kezdő Y helyzet"
  967. #: fdmprinter.def.json
  968. msgctxt "extruder_prime_pos_z label"
  969. msgid "Extruder Prime Z Position"
  970. msgstr "Kezdő Z pozíció"
  971. #: fdmprinter.def.json
  972. msgctxt "machine_extruders_share_heater label"
  973. msgid "Extruders Share Heater"
  974. msgstr ""
  975. #: fdmprinter.def.json
  976. msgctxt "machine_extruders_share_nozzle label"
  977. msgid "Extruders Share Nozzle"
  978. msgstr ""
  979. #: fdmprinter.def.json
  980. msgctxt "material_extrusion_cool_down_speed label"
  981. msgid "Extrusion Cool Down Speed Modifier"
  982. msgstr "Adagolási visszahűlés sebesség kompenzáció"
  983. #: fdmprinter.def.json
  984. msgctxt "speed_equalize_flow_width_factor description"
  985. 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."
  986. msgstr ""
  987. #: fdmprinter.def.json
  988. msgctxt "cool_fan_speed label"
  989. msgid "Fan Speed"
  990. msgstr "Hűtés sebesség"
  991. #: fdmprinter.def.json
  992. msgctxt "support_fan_enable label"
  993. msgid "Fan Speed Override"
  994. msgstr "Hűtés felülbírálás"
  995. #: fdmprinter.def.json
  996. msgctxt "small_feature_max_length description"
  997. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  998. msgstr "Ettől a hosszúságtól rövidebb részek körvonalait a Kis funkció sebességgel kerülnek kinyomtatásra."
  999. #: fdmprinter.def.json
  1000. msgctxt "experimental description"
  1001. msgid "Features that haven't completely been fleshed out yet."
  1002. msgstr ""
  1003. #: fdmprinter.def.json
  1004. msgctxt "machine_feeder_wheel_diameter label"
  1005. msgid "Feeder Wheel Diameter"
  1006. msgstr "Az adagolókerék átmérője"
  1007. #: fdmprinter.def.json
  1008. msgctxt "material_final_print_temperature label"
  1009. msgid "Final Printing Temperature"
  1010. msgstr "Befejező nyomtatási hőmérséklet"
  1011. #: fdmprinter.def.json
  1012. msgctxt "machine_firmware_retract label"
  1013. msgid "Firmware Retraction"
  1014. msgstr "Firmware visszahúzás"
  1015. #: fdmprinter.def.json
  1016. msgctxt "support_extruder_nr_layer_0 label"
  1017. msgid "First Layer Support Extruder"
  1018. msgstr "Első réteg támasz extruder"
  1019. #: fdmprinter.def.json
  1020. msgctxt "material_flow label"
  1021. msgid "Flow"
  1022. msgstr "Áramlás"
  1023. #: fdmprinter.def.json
  1024. msgctxt "speed_equalize_flow_width_factor label"
  1025. msgid "Flow Equalization Ratio"
  1026. msgstr ""
  1027. #: fdmprinter.def.json
  1028. msgctxt "flow_rate_extrusion_offset_factor label"
  1029. msgid "Flow Rate Compensation Factor"
  1030. msgstr ""
  1031. #: fdmprinter.def.json
  1032. msgctxt "flow_rate_max_extrusion_offset label"
  1033. msgid "Flow Rate Compensation Max Extrusion Offset"
  1034. msgstr ""
  1035. #: fdmprinter.def.json
  1036. msgctxt "material_flow_temp_graph label"
  1037. msgid "Flow Temperature Graph"
  1038. msgstr "Adagolás hőmérséklet diagram"
  1039. #: fdmprinter.def.json
  1040. msgctxt "material_flow_layer_0 description"
  1041. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1042. 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."
  1043. #: fdmprinter.def.json
  1044. msgctxt "skin_material_flow_layer_0 description"
  1045. msgid "Flow compensation on bottom lines of the first layer"
  1046. msgstr ""
  1047. #: fdmprinter.def.json
  1048. msgctxt "infill_material_flow description"
  1049. msgid "Flow compensation on infill lines."
  1050. msgstr "Áramláskompenzálás a kitöltés nyomtatásánál."
  1051. #: fdmprinter.def.json
  1052. msgctxt "support_interface_material_flow description"
  1053. msgid "Flow compensation on lines of support roof or floor."
  1054. msgstr "Áramláskompenzálás a támasz alsó/felső rétegének nyomtatásánál."
  1055. #: fdmprinter.def.json
  1056. msgctxt "roofing_material_flow description"
  1057. msgid "Flow compensation on lines of the areas at the top of the print."
  1058. msgstr "Áramláskompenzálás a felső kéreg réteg nyomtatásánál."
  1059. #: fdmprinter.def.json
  1060. msgctxt "prime_tower_flow description"
  1061. msgid "Flow compensation on prime tower lines."
  1062. msgstr "Áramláskompenzáció az előtorony vonalakon."
  1063. #: fdmprinter.def.json
  1064. msgctxt "skirt_brim_material_flow description"
  1065. msgid "Flow compensation on skirt or brim lines."
  1066. msgstr "Áramláskompenzálás a Szoknya/perem nyomtatásánál."
  1067. #: fdmprinter.def.json
  1068. msgctxt "support_bottom_material_flow description"
  1069. msgid "Flow compensation on support floor lines."
  1070. msgstr "Áramláskompenzálás a támasz alsó rétegének nyomtatásánál."
  1071. #: fdmprinter.def.json
  1072. msgctxt "support_roof_material_flow description"
  1073. msgid "Flow compensation on support roof lines."
  1074. msgstr "Áramláskompenzálás a támasz felső rétegének nyomtatásánál."
  1075. #: fdmprinter.def.json
  1076. msgctxt "support_material_flow description"
  1077. msgid "Flow compensation on support structure lines."
  1078. msgstr "Áramláskompenzálás a támasz nyomtatásánál."
  1079. #: fdmprinter.def.json
  1080. msgctxt "wall_0_material_flow_layer_0 description"
  1081. msgid "Flow compensation on the outermost wall line of the first layer."
  1082. msgstr ""
  1083. #: fdmprinter.def.json
  1084. msgctxt "wall_0_material_flow description"
  1085. msgid "Flow compensation on the outermost wall line."
  1086. msgstr "Áramláskompenzálás a külső falvonalak nyomtatásánál."
  1087. #: fdmprinter.def.json
  1088. msgctxt "skin_material_flow description"
  1089. msgid "Flow compensation on top/bottom lines."
  1090. msgstr "Áramláskompenzálás az alsó/felső rétegek nyomtatásánál."
  1091. #: fdmprinter.def.json
  1092. msgctxt "wall_x_material_flow_layer_0 description"
  1093. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1094. msgstr ""
  1095. #: fdmprinter.def.json
  1096. msgctxt "wall_x_material_flow description"
  1097. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1098. msgstr "Áramláskompnezáció minden falvonalon, kivéve a legkülsőbb falnál."
  1099. #: fdmprinter.def.json
  1100. msgctxt "wall_material_flow description"
  1101. msgid "Flow compensation on wall lines."
  1102. msgstr "Áramláskompenzálás a fal vonalak nyomtatásánál."
  1103. #: fdmprinter.def.json
  1104. msgctxt "material_flow description"
  1105. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1106. msgstr "Áramláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  1107. #: fdmprinter.def.json
  1108. msgctxt "material_flush_purge_length label"
  1109. msgid "Flush Purge Length"
  1110. msgstr ""
  1111. #: fdmprinter.def.json
  1112. msgctxt "material_flush_purge_speed label"
  1113. msgid "Flush Purge Speed"
  1114. msgstr ""
  1115. #: fdmprinter.def.json
  1116. msgctxt "min_wall_line_width description"
  1117. 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."
  1118. msgstr ""
  1119. #: fdmprinter.def.json
  1120. msgctxt "support_tree_rest_preference option buildplate"
  1121. msgid "Force Only Buildplate"
  1122. msgstr ""
  1123. #: fdmprinter.def.json
  1124. msgctxt "z_seam_position option front"
  1125. msgid "Front"
  1126. msgstr "Előre"
  1127. #: fdmprinter.def.json
  1128. msgctxt "z_seam_position option frontleft"
  1129. msgid "Front Left"
  1130. msgstr "Balra előre"
  1131. #: fdmprinter.def.json
  1132. msgctxt "z_seam_position option frontright"
  1133. msgid "Front Right"
  1134. msgstr "Jobbra előre"
  1135. #: fdmprinter.def.json
  1136. msgctxt "draft_shield_height_limitation option full"
  1137. msgid "Full"
  1138. msgstr "Teljes"
  1139. #: fdmprinter.def.json
  1140. msgctxt "magic_fuzzy_skin_enabled label"
  1141. msgid "Fuzzy Skin"
  1142. msgstr "Rücskös felszín"
  1143. #: fdmprinter.def.json
  1144. msgctxt "magic_fuzzy_skin_point_density label"
  1145. msgid "Fuzzy Skin Density"
  1146. msgstr "Rücsök sűrűség"
  1147. #: fdmprinter.def.json
  1148. msgctxt "magic_fuzzy_skin_outside_only label"
  1149. msgid "Fuzzy Skin Outside Only"
  1150. msgstr ""
  1151. #: fdmprinter.def.json
  1152. msgctxt "magic_fuzzy_skin_point_dist label"
  1153. msgid "Fuzzy Skin Point Distance"
  1154. msgstr "Rücsök távolság"
  1155. #: fdmprinter.def.json
  1156. msgctxt "magic_fuzzy_skin_thickness label"
  1157. msgid "Fuzzy Skin Thickness"
  1158. msgstr "Rücsök vastagság"
  1159. #: fdmprinter.def.json
  1160. msgctxt "machine_gcode_flavor label"
  1161. msgid "G-code Flavor"
  1162. msgstr "G-kód típus"
  1163. #: fdmprinter.def.json
  1164. msgctxt "machine_end_gcode description"
  1165. msgid ""
  1166. "G-code commands to be executed at the very end - separated by \n"
  1167. "."
  1168. msgstr ""
  1169. "Olyan g-kód parancsok, amiket a nyomtatás legvégén kell végrehajtani \n"
  1170. " -al elválasztva."
  1171. #: fdmprinter.def.json
  1172. msgctxt "machine_start_gcode description"
  1173. msgid ""
  1174. "G-code commands to be executed at the very start - separated by \n"
  1175. "."
  1176. msgstr ""
  1177. "Olyan g-kód parancsok, amiket a nyomtatás legelején kell végrehajtani \n"
  1178. " -al elválasztva."
  1179. #: fdmprinter.def.json
  1180. msgctxt "material_guid description"
  1181. msgid "GUID of the material. This is set automatically."
  1182. msgstr ""
  1183. #: fdmprinter.def.json
  1184. msgctxt "gantry_height label"
  1185. msgid "Gantry Height"
  1186. msgstr "Állványzat magasság"
  1187. #: fdmprinter.def.json
  1188. msgctxt "interlocking_enable label"
  1189. msgid "Generate Interlocking Structure"
  1190. msgstr ""
  1191. #: fdmprinter.def.json
  1192. msgctxt "support_enable label"
  1193. msgid "Generate Support"
  1194. msgstr "Támaszték készítés"
  1195. #: fdmprinter.def.json
  1196. msgctxt "support_brim_enable description"
  1197. 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."
  1198. 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."
  1199. #: fdmprinter.def.json
  1200. msgctxt "support_interface_enable description"
  1201. 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."
  1202. 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."
  1203. #: fdmprinter.def.json
  1204. msgctxt "support_bottom_enable description"
  1205. 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."
  1206. 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é."
  1207. #: fdmprinter.def.json
  1208. msgctxt "support_roof_enable description"
  1209. 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."
  1210. 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é."
  1211. #: fdmprinter.def.json
  1212. msgctxt "support_enable description"
  1213. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1214. 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."
  1215. #: fdmprinter.def.json
  1216. msgctxt "machine_buildplate_type option glass"
  1217. msgid "Glass"
  1218. msgstr "Üveg"
  1219. #: fdmprinter.def.json
  1220. msgctxt "ironing_enabled description"
  1221. 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."
  1222. 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."
  1223. #: fdmprinter.def.json
  1224. msgctxt "gradual_infill_step_height label"
  1225. msgid "Gradual Infill Step Height"
  1226. msgstr "Fokozatos kitöltési lépésmagasság"
  1227. #: fdmprinter.def.json
  1228. msgctxt "gradual_infill_steps label"
  1229. msgid "Gradual Infill Steps"
  1230. msgstr "Fokozatos kitöltési lépések"
  1231. #: fdmprinter.def.json
  1232. msgctxt "gradual_support_infill_step_height label"
  1233. msgid "Gradual Support Infill Step Height"
  1234. msgstr "Fokozatos támaszkitöltési lépésmagasság"
  1235. #: fdmprinter.def.json
  1236. msgctxt "gradual_support_infill_steps label"
  1237. msgid "Gradual Support Infill Steps"
  1238. msgstr "Fokozatos támasz kitöltési lépések"
  1239. #: fdmprinter.def.json
  1240. msgctxt "cool_min_temperature description"
  1241. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  1242. msgstr ""
  1243. #: fdmprinter.def.json
  1244. msgctxt "infill_pattern option grid"
  1245. msgid "Grid"
  1246. msgstr "Rács"
  1247. #: fdmprinter.def.json
  1248. msgctxt "support_bottom_pattern option grid"
  1249. msgid "Grid"
  1250. msgstr "Rács"
  1251. #: fdmprinter.def.json
  1252. msgctxt "support_interface_pattern option grid"
  1253. msgid "Grid"
  1254. msgstr "Rács"
  1255. #: fdmprinter.def.json
  1256. msgctxt "support_pattern option grid"
  1257. msgid "Grid"
  1258. msgstr "Rács"
  1259. #: fdmprinter.def.json
  1260. msgctxt "support_roof_pattern option grid"
  1261. msgid "Grid"
  1262. msgstr "Rács"
  1263. #: fdmprinter.def.json
  1264. msgctxt "machine_gcode_flavor option Griffin"
  1265. msgid "Griffin"
  1266. msgstr "Griffin"
  1267. #: fdmprinter.def.json
  1268. msgctxt "infill_pattern option gyroid"
  1269. msgid "Gyroid"
  1270. msgstr "Gyroid"
  1271. #: fdmprinter.def.json
  1272. msgctxt "support_pattern option gyroid"
  1273. msgid "Gyroid"
  1274. msgstr "Gyroid"
  1275. #: fdmprinter.def.json
  1276. msgctxt "machine_heated_build_volume label"
  1277. msgid "Has Build Volume Temperature Stabilization"
  1278. msgstr "Van építési tér hőmérséklet szabályzás"
  1279. #: fdmprinter.def.json
  1280. msgctxt "machine_heated_bed label"
  1281. msgid "Has Heated Build Plate"
  1282. msgstr "Van tárgyasztal fűtés"
  1283. #: fdmprinter.def.json
  1284. msgctxt "machine_nozzle_heat_up_speed label"
  1285. msgid "Heat Up Speed"
  1286. msgstr "Felfűtési sebesség"
  1287. #: fdmprinter.def.json
  1288. msgctxt "machine_heat_zone_length label"
  1289. msgid "Heat Zone Length"
  1290. msgstr "Olvadókamra hossza"
  1291. #: fdmprinter.def.json
  1292. msgctxt "draft_shield_height description"
  1293. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1294. msgstr "A huzatpajzs magassága. Csak eddig a magasságig fogja a pajzsot nyomtatni."
  1295. #: fdmprinter.def.json
  1296. msgctxt "z_seam_corner option z_seam_corner_inner"
  1297. msgid "Hide Seam"
  1298. msgstr "Varrat rejtés"
  1299. #: fdmprinter.def.json
  1300. msgctxt "z_seam_corner option z_seam_corner_any"
  1301. msgid "Hide or Expose Seam"
  1302. msgstr "Külső, belső varrat"
  1303. #: fdmprinter.def.json
  1304. msgctxt "hole_xy_offset label"
  1305. msgid "Hole Horizontal Expansion"
  1306. msgstr ""
  1307. #: fdmprinter.def.json
  1308. msgctxt "hole_xy_offset_max_diameter label"
  1309. msgid "Hole Horizontal Expansion Max Diameter"
  1310. msgstr ""
  1311. #: fdmprinter.def.json
  1312. msgctxt "small_hole_max_size description"
  1313. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1314. 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."
  1315. #: fdmprinter.def.json
  1316. msgctxt "xy_offset label"
  1317. msgid "Horizontal Expansion"
  1318. msgstr "Vízszintes kiegészítés"
  1319. #: fdmprinter.def.json
  1320. msgctxt "material_shrinkage_percentage_xy label"
  1321. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1322. msgstr ""
  1323. #: fdmprinter.def.json
  1324. msgctxt "material_break_preparation_retracted_position description"
  1325. msgid "How far the filament can be stretched before it breaks, while heated."
  1326. msgstr "Mennyire húzható ki a szál melegítés közben, szakadás nélkül."
  1327. #: fdmprinter.def.json
  1328. msgctxt "material_anti_ooze_retracted_position description"
  1329. msgid "How far the material needs to be retracted before it stops oozing."
  1330. msgstr "Mennyire kell visszahúzni a szálat, hogy az anyagszivárgás leálljon."
  1331. #: fdmprinter.def.json
  1332. msgctxt "flow_rate_extrusion_offset_factor description"
  1333. 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."
  1334. msgstr ""
  1335. #: fdmprinter.def.json
  1336. msgctxt "material_break_retracted_position description"
  1337. msgid "How far to retract the filament in order to break it cleanly."
  1338. msgstr "Mennyire kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon."
  1339. #: fdmprinter.def.json
  1340. msgctxt "material_break_preparation_speed description"
  1341. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1342. msgstr "Milyen gyorsan kell visszahúzni a szálat, mielőtt az megszakadna."
  1343. #: fdmprinter.def.json
  1344. msgctxt "material_anti_ooze_retraction_speed description"
  1345. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1346. msgstr "Milyen gyorsan kell visszahúzni a szálat, hogy meggátoljuk a szivárgást."
  1347. #: fdmprinter.def.json
  1348. msgctxt "material_end_of_filament_purge_speed description"
  1349. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1350. msgstr ""
  1351. #: fdmprinter.def.json
  1352. msgctxt "material_flush_purge_speed description"
  1353. msgid "How fast to prime the material after switching to a different material."
  1354. msgstr ""
  1355. #: fdmprinter.def.json
  1356. msgctxt "material_maximum_park_duration description"
  1357. msgid "How long the material can be kept out of dry storage safely."
  1358. msgstr ""
  1359. #: fdmprinter.def.json
  1360. msgctxt "machine_steps_per_mm_x description"
  1361. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1362. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen X irányban."
  1363. #: fdmprinter.def.json
  1364. msgctxt "machine_steps_per_mm_y description"
  1365. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1366. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Y irányban."
  1367. #: fdmprinter.def.json
  1368. msgctxt "machine_steps_per_mm_z description"
  1369. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1370. msgstr "Hány lépést kell a motornak megtenni ahhoz, hogy 1 mm mozgás történjen Z irányban."
  1371. #: fdmprinter.def.json
  1372. msgctxt "machine_steps_per_mm_e description"
  1373. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1374. msgstr ""
  1375. #: fdmprinter.def.json
  1376. msgctxt "material_end_of_filament_purge_length description"
  1377. 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."
  1378. msgstr ""
  1379. #: fdmprinter.def.json
  1380. msgctxt "material_flush_purge_length description"
  1381. 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."
  1382. msgstr ""
  1383. #: fdmprinter.def.json
  1384. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1385. 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."
  1386. msgstr ""
  1387. #: fdmprinter.def.json
  1388. msgctxt "support_interface_priority description"
  1389. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1390. msgstr ""
  1391. #: fdmprinter.def.json
  1392. msgctxt "support_tree_min_height_to_model description"
  1393. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1394. msgstr ""
  1395. #: fdmprinter.def.json
  1396. msgctxt "bridge_skin_support_threshold description"
  1397. 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."
  1398. 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."
  1399. #: fdmprinter.def.json
  1400. msgctxt "bridge_enable_more_layers description"
  1401. 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."
  1402. 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."
  1403. #: fdmprinter.def.json
  1404. msgctxt "wall_transition_filter_distance description"
  1405. 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."
  1406. msgstr ""
  1407. #: fdmprinter.def.json
  1408. msgctxt "raft_margin description"
  1409. 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."
  1410. 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."
  1411. #: fdmprinter.def.json
  1412. msgctxt "meshfix_union_all description"
  1413. 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."
  1414. 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."
  1415. #: fdmprinter.def.json
  1416. msgctxt "material_bed_temp_prepend label"
  1417. msgid "Include Build Plate Temperature"
  1418. msgstr "Tartalmazza a tárgyasztal hőmérsékleteket"
  1419. #: fdmprinter.def.json
  1420. msgctxt "material_print_temp_prepend label"
  1421. msgid "Include Material Temperatures"
  1422. msgstr "Tartalmazza az anyaghőmérsékleteket"
  1423. #: fdmprinter.def.json
  1424. msgctxt "slicing_tolerance option inclusive"
  1425. msgid "Inclusive"
  1426. msgstr "Befoglaló"
  1427. #: fdmprinter.def.json
  1428. msgctxt "infill description"
  1429. msgid "Infill"
  1430. msgstr "Kitöltés"
  1431. #: fdmprinter.def.json
  1432. msgctxt "infill label"
  1433. msgid "Infill"
  1434. msgstr "Kitöltés"
  1435. #: fdmprinter.def.json
  1436. msgctxt "acceleration_infill label"
  1437. msgid "Infill Acceleration"
  1438. msgstr "Kitöltés gyorsulás"
  1439. #: fdmprinter.def.json
  1440. msgctxt "infill_before_walls label"
  1441. msgid "Infill Before Walls"
  1442. msgstr "Kitöltés a falak előtt"
  1443. #: fdmprinter.def.json
  1444. msgctxt "infill_sparse_density label"
  1445. msgid "Infill Density"
  1446. msgstr "Kitöltési sűrűség"
  1447. #: fdmprinter.def.json
  1448. msgctxt "infill_extruder_nr label"
  1449. msgid "Infill Extruder"
  1450. msgstr "Kitöltő extruder"
  1451. #: fdmprinter.def.json
  1452. msgctxt "infill_material_flow label"
  1453. msgid "Infill Flow"
  1454. msgstr "Kitöltési áramlás"
  1455. #: fdmprinter.def.json
  1456. msgctxt "jerk_infill label"
  1457. msgid "Infill Jerk"
  1458. msgstr "Kitöltés löket"
  1459. #: fdmprinter.def.json
  1460. msgctxt "infill_sparse_thickness label"
  1461. msgid "Infill Layer Thickness"
  1462. msgstr "Kitöltő réteg vastagság"
  1463. #: fdmprinter.def.json
  1464. msgctxt "infill_angles label"
  1465. msgid "Infill Line Directions"
  1466. msgstr "Kitöltési vonal irányok"
  1467. #: fdmprinter.def.json
  1468. msgctxt "infill_line_distance label"
  1469. msgid "Infill Line Distance"
  1470. msgstr "Kitöltő vonal távolság"
  1471. #: fdmprinter.def.json
  1472. msgctxt "infill_multiplier label"
  1473. msgid "Infill Line Multiplier"
  1474. msgstr "Kitöltési sor szorzó"
  1475. #: fdmprinter.def.json
  1476. msgctxt "infill_line_width label"
  1477. msgid "Infill Line Width"
  1478. msgstr "Kitöltési vonalszélesség"
  1479. #: fdmprinter.def.json
  1480. msgctxt "infill_mesh label"
  1481. msgid "Infill Mesh"
  1482. msgstr "Kitöltés háló"
  1483. #: fdmprinter.def.json
  1484. msgctxt "infill_support_angle label"
  1485. msgid "Infill Overhang Angle"
  1486. msgstr "Kitöltés túlnyúlási szög"
  1487. #: fdmprinter.def.json
  1488. msgctxt "infill_overlap_mm label"
  1489. msgid "Infill Overlap"
  1490. msgstr "Kitöltési átfedés"
  1491. #: fdmprinter.def.json
  1492. msgctxt "infill_overlap label"
  1493. msgid "Infill Overlap Percentage"
  1494. msgstr "Kitöltési átfedés aránya"
  1495. #: fdmprinter.def.json
  1496. msgctxt "infill_pattern label"
  1497. msgid "Infill Pattern"
  1498. msgstr "Kitöltési Minta"
  1499. #: fdmprinter.def.json
  1500. msgctxt "speed_infill label"
  1501. msgid "Infill Speed"
  1502. msgstr "Kitöltési sebesség"
  1503. #: fdmprinter.def.json
  1504. msgctxt "infill_support_enabled label"
  1505. msgid "Infill Support"
  1506. msgstr "Kitöltés támaszként"
  1507. #: fdmprinter.def.json
  1508. msgctxt "infill_enable_travel_optimization label"
  1509. msgid "Infill Travel Optimization"
  1510. msgstr "Kitöltési utazás optimalizáció"
  1511. #: fdmprinter.def.json
  1512. msgctxt "infill_wipe_dist label"
  1513. msgid "Infill Wipe Distance"
  1514. msgstr "Kitöltés törlési távolság"
  1515. #: fdmprinter.def.json
  1516. msgctxt "infill_offset_x label"
  1517. msgid "Infill X Offset"
  1518. msgstr "Kitöltés X eltolás"
  1519. #: fdmprinter.def.json
  1520. msgctxt "infill_offset_y label"
  1521. msgid "Infill Y Offset"
  1522. msgstr "Kitöltés Y eltolás"
  1523. #: fdmprinter.def.json
  1524. msgctxt "initial_bottom_layers label"
  1525. msgid "Initial Bottom Layers"
  1526. msgstr ""
  1527. #: fdmprinter.def.json
  1528. msgctxt "cool_fan_speed_0 label"
  1529. msgid "Initial Fan Speed"
  1530. msgstr "Kezdő hűtési sebesség"
  1531. #: fdmprinter.def.json
  1532. msgctxt "acceleration_layer_0 label"
  1533. msgid "Initial Layer Acceleration"
  1534. msgstr "Kezdő réteg gyorsulás"
  1535. #: fdmprinter.def.json
  1536. msgctxt "skin_material_flow_layer_0 label"
  1537. msgid "Initial Layer Bottom Flow"
  1538. msgstr ""
  1539. #: fdmprinter.def.json
  1540. msgctxt "support_tree_bp_diameter label"
  1541. msgid "Initial Layer Diameter"
  1542. msgstr ""
  1543. #: fdmprinter.def.json
  1544. msgctxt "material_flow_layer_0 label"
  1545. msgid "Initial Layer Flow"
  1546. msgstr "Kezdő réteg áramlás"
  1547. #: fdmprinter.def.json
  1548. msgctxt "layer_height_0 label"
  1549. msgid "Initial Layer Height"
  1550. msgstr "Kezdő réteg magasság"
  1551. #: fdmprinter.def.json
  1552. msgctxt "xy_offset_layer_0 label"
  1553. msgid "Initial Layer Horizontal Expansion"
  1554. msgstr "Kezdő réteg vízszintes kiegészítése"
  1555. #: fdmprinter.def.json
  1556. msgctxt "wall_x_material_flow_layer_0 label"
  1557. msgid "Initial Layer Inner Wall Flow"
  1558. msgstr ""
  1559. #: fdmprinter.def.json
  1560. msgctxt "jerk_layer_0 label"
  1561. msgid "Initial Layer Jerk"
  1562. msgstr "Kezdő réteg löket"
  1563. #: fdmprinter.def.json
  1564. msgctxt "initial_layer_line_width_factor label"
  1565. msgid "Initial Layer Line Width"
  1566. msgstr "Kezdő réteg vonalszélesség"
  1567. #: fdmprinter.def.json
  1568. msgctxt "wall_0_material_flow_layer_0 label"
  1569. msgid "Initial Layer Outer Wall Flow"
  1570. msgstr ""
  1571. #: fdmprinter.def.json
  1572. msgctxt "acceleration_print_layer_0 label"
  1573. msgid "Initial Layer Print Acceleration"
  1574. msgstr "Kezdő réteg nyomtatási gyorsulás"
  1575. #: fdmprinter.def.json
  1576. msgctxt "jerk_print_layer_0 label"
  1577. msgid "Initial Layer Print Jerk"
  1578. msgstr "Kezdő réteg nyomtatási löket"
  1579. #: fdmprinter.def.json
  1580. msgctxt "speed_print_layer_0 label"
  1581. msgid "Initial Layer Print Speed"
  1582. msgstr "Kezdő réteg nyomtatási sebessége"
  1583. #: fdmprinter.def.json
  1584. msgctxt "speed_layer_0 label"
  1585. msgid "Initial Layer Speed"
  1586. msgstr "Kezdő réteg sebessége"
  1587. #: fdmprinter.def.json
  1588. msgctxt "support_initial_layer_line_distance label"
  1589. msgid "Initial Layer Support Line Distance"
  1590. msgstr "Kezdő réteg támasz vonal távolság"
  1591. #: fdmprinter.def.json
  1592. msgctxt "acceleration_travel_layer_0 label"
  1593. msgid "Initial Layer Travel Acceleration"
  1594. msgstr "Kezdő réteg utazási gyorsulás"
  1595. #: fdmprinter.def.json
  1596. msgctxt "jerk_travel_layer_0 label"
  1597. msgid "Initial Layer Travel Jerk"
  1598. msgstr "Kezdő réteg utazás löket"
  1599. #: fdmprinter.def.json
  1600. msgctxt "speed_travel_layer_0 label"
  1601. msgid "Initial Layer Travel Speed"
  1602. msgstr "Kezdő réteg utazási sebessége"
  1603. #: fdmprinter.def.json
  1604. msgctxt "layer_0_z_overlap label"
  1605. msgid "Initial Layer Z Overlap"
  1606. msgstr "Első réteg Z átfedés"
  1607. #: fdmprinter.def.json
  1608. msgctxt "material_initial_print_temperature label"
  1609. msgid "Initial Printing Temperature"
  1610. msgstr "Kezdeti nyomtatási hőmérséklet"
  1611. #: fdmprinter.def.json
  1612. msgctxt "acceleration_wall_x label"
  1613. msgid "Inner Wall Acceleration"
  1614. msgstr "Belső fal gyorsulás"
  1615. #: fdmprinter.def.json
  1616. msgctxt "wall_x_extruder_nr label"
  1617. msgid "Inner Wall Extruder"
  1618. msgstr "Belső fali extruder"
  1619. #: fdmprinter.def.json
  1620. msgctxt "jerk_wall_x label"
  1621. msgid "Inner Wall Jerk"
  1622. msgstr "Belső fal löket"
  1623. #: fdmprinter.def.json
  1624. msgctxt "speed_wall_x label"
  1625. msgid "Inner Wall Speed"
  1626. msgstr "Belső fal sebesség"
  1627. #: fdmprinter.def.json
  1628. msgctxt "wall_x_material_flow label"
  1629. msgid "Inner Wall(s) Flow"
  1630. msgstr "Belső fal)akÖ áramlása"
  1631. #: fdmprinter.def.json
  1632. msgctxt "wall_line_width_x label"
  1633. msgid "Inner Wall(s) Line Width"
  1634. msgstr "Belső fal(-ak) vonalszélessége"
  1635. #: fdmprinter.def.json
  1636. msgctxt "wall_0_inset description"
  1637. 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."
  1638. 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."
  1639. #: fdmprinter.def.json
  1640. msgctxt "inset_direction option inside_out"
  1641. msgid "Inside To Outside"
  1642. msgstr ""
  1643. #: fdmprinter.def.json
  1644. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1645. msgid "Interface lines preferred"
  1646. msgstr ""
  1647. #: fdmprinter.def.json
  1648. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1649. msgid "Interface preferred"
  1650. msgstr ""
  1651. #: fdmprinter.def.json
  1652. msgctxt "interlocking_beam_layer_count label"
  1653. msgid "Interlocking Beam Layer Count"
  1654. msgstr ""
  1655. #: fdmprinter.def.json
  1656. msgctxt "interlocking_beam_width label"
  1657. msgid "Interlocking Beam Width"
  1658. msgstr ""
  1659. #: fdmprinter.def.json
  1660. msgctxt "interlocking_boundary_avoidance label"
  1661. msgid "Interlocking Boundary Avoidance"
  1662. msgstr ""
  1663. #: fdmprinter.def.json
  1664. msgctxt "interlocking_depth label"
  1665. msgid "Interlocking Depth"
  1666. msgstr ""
  1667. #: fdmprinter.def.json
  1668. msgctxt "interlocking_orientation label"
  1669. msgid "Interlocking Structure Orientation"
  1670. msgstr ""
  1671. #: fdmprinter.def.json
  1672. msgctxt "ironing_only_highest_layer label"
  1673. msgid "Iron Only Highest Layer"
  1674. msgstr "Vasalás csak a legfelső rétegen"
  1675. #: fdmprinter.def.json
  1676. msgctxt "acceleration_ironing label"
  1677. msgid "Ironing Acceleration"
  1678. msgstr "Vasalási gyorsulás"
  1679. #: fdmprinter.def.json
  1680. msgctxt "ironing_flow label"
  1681. msgid "Ironing Flow"
  1682. msgstr "Vasalási adagolás"
  1683. #: fdmprinter.def.json
  1684. msgctxt "ironing_inset label"
  1685. msgid "Ironing Inset"
  1686. msgstr "Vasalás behúzás"
  1687. #: fdmprinter.def.json
  1688. msgctxt "jerk_ironing label"
  1689. msgid "Ironing Jerk"
  1690. msgstr "Vasalási löket"
  1691. #: fdmprinter.def.json
  1692. msgctxt "ironing_line_spacing label"
  1693. msgid "Ironing Line Spacing"
  1694. msgstr "Vasalási távolság"
  1695. #: fdmprinter.def.json
  1696. msgctxt "ironing_pattern label"
  1697. msgid "Ironing Pattern"
  1698. msgstr "Vasalási minta"
  1699. #: fdmprinter.def.json
  1700. msgctxt "speed_ironing label"
  1701. msgid "Ironing Speed"
  1702. msgstr "Vasalási sebesség"
  1703. #: fdmprinter.def.json
  1704. msgctxt "machine_center_is_zero label"
  1705. msgid "Is Center Origin"
  1706. msgstr "Origó a középpontban"
  1707. #: fdmprinter.def.json
  1708. msgctxt "material_crystallinity description"
  1709. 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)?"
  1710. 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?"
  1711. #: fdmprinter.def.json
  1712. msgctxt "magic_fuzzy_skin_outside_only description"
  1713. msgid "Jitter only the parts' outlines and not the parts' holes."
  1714. msgstr ""
  1715. #: fdmprinter.def.json
  1716. msgctxt "meshfix_keep_open_polygons label"
  1717. msgid "Keep Disconnected Faces"
  1718. msgstr "Nyílt poligonok megtartása"
  1719. #: fdmprinter.def.json
  1720. msgctxt "layer_height label"
  1721. msgid "Layer Height"
  1722. msgstr "Réteg magasság"
  1723. #: fdmprinter.def.json
  1724. msgctxt "layer_start_x label"
  1725. msgid "Layer Start X"
  1726. msgstr "Réteg X kezdőpont"
  1727. #: fdmprinter.def.json
  1728. msgctxt "layer_start_y label"
  1729. msgid "Layer Start Y"
  1730. msgstr "Réteg Y kezdőpont"
  1731. #: fdmprinter.def.json
  1732. msgctxt "raft_base_thickness description"
  1733. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1734. msgstr "Az alap tutajréteg rétegvastagsága. Ennek vastag rétegnek kell lennie, mert erősen tapadnia kell a nyomtató tárgyasztalához."
  1735. #: fdmprinter.def.json
  1736. msgctxt "raft_interface_thickness description"
  1737. msgid "Layer thickness of the middle raft layer."
  1738. msgstr "A középső tutajréteg rétegvastagsága."
  1739. #: fdmprinter.def.json
  1740. msgctxt "raft_surface_thickness description"
  1741. msgid "Layer thickness of the top raft layers."
  1742. msgstr "Azoknak a tutajrétegeknek a vastagsága, ami a tutaj tetején van."
  1743. #: fdmprinter.def.json
  1744. msgctxt "support_skip_zag_per_mm description"
  1745. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1746. msgstr "A támaszvonalak között ennyi mm -ként hagy el egy vonalat, a könnyebb törhetőség miatt."
  1747. #: fdmprinter.def.json
  1748. msgctxt "z_seam_position option left"
  1749. msgid "Left"
  1750. msgstr "Balra"
  1751. #: fdmprinter.def.json
  1752. msgctxt "cool_lift_head label"
  1753. msgid "Lift Head"
  1754. msgstr "Fej emelés"
  1755. #: fdmprinter.def.json
  1756. msgctxt "infill_pattern option lightning"
  1757. msgid "Lightning"
  1758. msgstr ""
  1759. #: fdmprinter.def.json
  1760. msgctxt "lightning_infill_overhang_angle label"
  1761. msgid "Lightning Infill Overhang Angle"
  1762. msgstr ""
  1763. #: fdmprinter.def.json
  1764. msgctxt "lightning_infill_prune_angle label"
  1765. msgid "Lightning Infill Prune Angle"
  1766. msgstr ""
  1767. #: fdmprinter.def.json
  1768. msgctxt "lightning_infill_straightening_angle label"
  1769. msgid "Lightning Infill Straightening Angle"
  1770. msgstr ""
  1771. #: fdmprinter.def.json
  1772. msgctxt "lightning_infill_support_angle label"
  1773. msgid "Lightning Infill Support Angle"
  1774. msgstr ""
  1775. #: fdmprinter.def.json
  1776. msgctxt "support_tree_limit_branch_reach label"
  1777. msgid "Limit Branch Reach"
  1778. msgstr ""
  1779. #: fdmprinter.def.json
  1780. msgctxt "support_tree_limit_branch_reach description"
  1781. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1782. msgstr ""
  1783. #: fdmprinter.def.json
  1784. msgctxt "cutting_mesh description"
  1785. 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."
  1786. 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."
  1787. #: fdmprinter.def.json
  1788. msgctxt "draft_shield_height_limitation option limited"
  1789. msgid "Limited"
  1790. msgstr "Részleges"
  1791. #: fdmprinter.def.json
  1792. msgctxt "line_width label"
  1793. msgid "Line Width"
  1794. msgstr "Vonalvastagság"
  1795. #: fdmprinter.def.json
  1796. msgctxt "infill_pattern option lines"
  1797. msgid "Lines"
  1798. msgstr "Vonalak"
  1799. #: fdmprinter.def.json
  1800. msgctxt "roofing_pattern option lines"
  1801. msgid "Lines"
  1802. msgstr "Vonalak"
  1803. #: fdmprinter.def.json
  1804. msgctxt "support_bottom_pattern option lines"
  1805. msgid "Lines"
  1806. msgstr "Vonalak"
  1807. #: fdmprinter.def.json
  1808. msgctxt "support_interface_pattern option lines"
  1809. msgid "Lines"
  1810. msgstr "Vonalak"
  1811. #: fdmprinter.def.json
  1812. msgctxt "support_pattern option lines"
  1813. msgid "Lines"
  1814. msgstr "Vonalak"
  1815. #: fdmprinter.def.json
  1816. msgctxt "support_roof_pattern option lines"
  1817. msgid "Lines"
  1818. msgstr "Vonalak"
  1819. #: fdmprinter.def.json
  1820. msgctxt "top_bottom_pattern option lines"
  1821. msgid "Lines"
  1822. msgstr "Vonalas"
  1823. #: fdmprinter.def.json
  1824. msgctxt "top_bottom_pattern_0 option lines"
  1825. msgid "Lines"
  1826. msgstr "Vonalas"
  1827. #: fdmprinter.def.json
  1828. msgctxt "machine_gcode_flavor option MACH3"
  1829. msgid "Mach3"
  1830. msgstr "Mach3"
  1831. #: fdmprinter.def.json
  1832. msgctxt "machine_settings label"
  1833. msgid "Machine"
  1834. msgstr "Gép"
  1835. #: fdmprinter.def.json
  1836. msgctxt "machine_depth label"
  1837. msgid "Machine Depth"
  1838. msgstr "Nyomtatási mélység"
  1839. #: fdmprinter.def.json
  1840. msgctxt "machine_head_with_fans_polygon label"
  1841. msgid "Machine Head & Fan Polygon"
  1842. msgstr "A nyomtatófej és ventillátor ábrázolása"
  1843. #: fdmprinter.def.json
  1844. msgctxt "machine_height label"
  1845. msgid "Machine Height"
  1846. msgstr "Nyomtatási magasság"
  1847. #: fdmprinter.def.json
  1848. msgctxt "machine_name label"
  1849. msgid "Machine Type"
  1850. msgstr "Géptípus"
  1851. #: fdmprinter.def.json
  1852. msgctxt "machine_width label"
  1853. msgid "Machine Width"
  1854. msgstr "Nyomtatási szélesség"
  1855. #: fdmprinter.def.json
  1856. msgctxt "machine_settings description"
  1857. msgid "Machine specific settings"
  1858. msgstr "Gép specifikus beállítások"
  1859. #: fdmprinter.def.json
  1860. msgctxt "conical_overhang_enabled label"
  1861. msgid "Make Overhang Printable"
  1862. msgstr "Nyomtatható túlnyúlások"
  1863. #: fdmprinter.def.json
  1864. msgctxt "multiple_mesh_overlap description"
  1865. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1866. msgstr "Egyesíti az egymással érintkező hálórészeket. Ez jobb kötést hoz létre a testben."
  1867. #: fdmprinter.def.json
  1868. msgctxt "support_conical_enabled description"
  1869. msgid "Make support areas smaller at the bottom than at the overhang."
  1870. msgstr "A támaszok alja kisebb méretű lesz, mint az alátámasztandó rész."
  1871. #: fdmprinter.def.json
  1872. msgctxt "support_mesh_drop_down description"
  1873. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1874. 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."
  1875. #: fdmprinter.def.json
  1876. msgctxt "extruder_prime_pos_abs description"
  1877. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1878. msgstr "A nyomtatófej kezdeti pozíciója legyen abszolút, és ne a fej utolsó ismert helyzetéhez viszonyítson."
  1879. #: fdmprinter.def.json
  1880. msgctxt "layer_0_z_overlap description"
  1881. 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."
  1882. 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."
  1883. #: fdmprinter.def.json
  1884. msgctxt "meshfix description"
  1885. msgid "Make the meshes more suited for 3D printing."
  1886. msgstr ""
  1887. #: fdmprinter.def.json
  1888. msgctxt "machine_gcode_flavor option Makerbot"
  1889. msgid "Makerbot"
  1890. msgstr "Makerbot"
  1891. #: fdmprinter.def.json
  1892. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1893. msgid "Marlin"
  1894. msgstr "Marlin"
  1895. #: fdmprinter.def.json
  1896. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1897. msgid "Marlin (Volumetric)"
  1898. msgstr "Marlin (Térfogat)"
  1899. #: fdmprinter.def.json
  1900. msgctxt "material description"
  1901. msgid "Material"
  1902. msgstr "Alapanyag"
  1903. #: fdmprinter.def.json
  1904. msgctxt "material label"
  1905. msgid "Material"
  1906. msgstr "Alapanyag"
  1907. #: fdmprinter.def.json
  1908. msgctxt "material_guid label"
  1909. msgid "Material GUID"
  1910. msgstr "Alapanyag GUID"
  1911. #: fdmprinter.def.json
  1912. msgctxt "max_extrusion_before_wipe label"
  1913. msgid "Material Volume Between Wipes"
  1914. msgstr "Anyagmennyiség törlések között"
  1915. #: fdmprinter.def.json
  1916. msgctxt "retraction_combing_max_distance label"
  1917. msgid "Max Comb Distance With No Retract"
  1918. msgstr "Maximum fésű táv visszahúzás nélkül"
  1919. #: fdmprinter.def.json
  1920. msgctxt "machine_max_acceleration_x label"
  1921. msgid "Maximum Acceleration X"
  1922. msgstr "Maximális X gyorsulás"
  1923. #: fdmprinter.def.json
  1924. msgctxt "machine_max_acceleration_y label"
  1925. msgid "Maximum Acceleration Y"
  1926. msgstr "Maximális Y gyorsulás"
  1927. #: fdmprinter.def.json
  1928. msgctxt "machine_max_acceleration_z label"
  1929. msgid "Maximum Acceleration Z"
  1930. msgstr "Maximális Z gyorsulás"
  1931. #: fdmprinter.def.json
  1932. msgctxt "support_tree_angle label"
  1933. msgid "Maximum Branch Angle"
  1934. msgstr ""
  1935. #: fdmprinter.def.json
  1936. msgctxt "meshfix_maximum_deviation label"
  1937. msgid "Maximum Deviation"
  1938. msgstr "Maximális eltérés"
  1939. #: fdmprinter.def.json
  1940. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1941. msgid "Maximum Extrusion Area Deviation"
  1942. msgstr ""
  1943. #: fdmprinter.def.json
  1944. msgctxt "cool_fan_speed_max label"
  1945. msgid "Maximum Fan Speed"
  1946. msgstr "Maximális hűtési sebesség"
  1947. #: fdmprinter.def.json
  1948. msgctxt "machine_max_acceleration_e label"
  1949. msgid "Maximum Filament Acceleration"
  1950. msgstr "Maximális E gyorsulás"
  1951. #: fdmprinter.def.json
  1952. msgctxt "conical_overhang_angle label"
  1953. msgid "Maximum Model Angle"
  1954. msgstr "Maximális túlnyúlási szög"
  1955. #: fdmprinter.def.json
  1956. msgctxt "conical_overhang_hole_size label"
  1957. msgid "Maximum Overhang Hole Area"
  1958. msgstr ""
  1959. #: fdmprinter.def.json
  1960. msgctxt "material_maximum_park_duration label"
  1961. msgid "Maximum Park Duration"
  1962. msgstr ""
  1963. #: fdmprinter.def.json
  1964. msgctxt "meshfix_maximum_resolution label"
  1965. msgid "Maximum Resolution"
  1966. msgstr "Maximális felbontás"
  1967. #: fdmprinter.def.json
  1968. msgctxt "retraction_count_max label"
  1969. msgid "Maximum Retraction Count"
  1970. msgstr "Visszahúzások maximális száma"
  1971. #: fdmprinter.def.json
  1972. msgctxt "max_skin_angle_for_expansion label"
  1973. msgid "Maximum Skin Angle for Expansion"
  1974. msgstr "A kéreg bővítés maximális szöge"
  1975. #: fdmprinter.def.json
  1976. msgctxt "machine_max_feedrate_e label"
  1977. msgid "Maximum Speed E"
  1978. msgstr ""
  1979. #: fdmprinter.def.json
  1980. msgctxt "machine_max_feedrate_x label"
  1981. msgid "Maximum Speed X"
  1982. msgstr "Maximum X sebesség"
  1983. #: fdmprinter.def.json
  1984. msgctxt "machine_max_feedrate_y label"
  1985. msgid "Maximum Speed Y"
  1986. msgstr "Maximum Y sebesség"
  1987. #: fdmprinter.def.json
  1988. msgctxt "machine_max_feedrate_z label"
  1989. msgid "Maximum Speed Z"
  1990. msgstr "Maximum Z sebesség"
  1991. #: fdmprinter.def.json
  1992. msgctxt "support_tower_maximum_supported_diameter label"
  1993. msgid "Maximum Tower-Supported Diameter"
  1994. msgstr "Maximális toronnyal támasztott átmérő"
  1995. #: fdmprinter.def.json
  1996. msgctxt "meshfix_maximum_travel_resolution label"
  1997. msgid "Maximum Travel Resolution"
  1998. msgstr "Maximális utazási felbontás"
  1999. #: fdmprinter.def.json
  2000. msgctxt "machine_max_acceleration_x description"
  2001. msgid "Maximum acceleration for the motor of the X-direction"
  2002. msgstr "Maximális gyorsulás az X tengelyen"
  2003. #: fdmprinter.def.json
  2004. msgctxt "machine_max_acceleration_y description"
  2005. msgid "Maximum acceleration for the motor of the Y-direction."
  2006. msgstr "Maximális gyorsulás az Y tengelyen."
  2007. #: fdmprinter.def.json
  2008. msgctxt "machine_max_acceleration_z description"
  2009. msgid "Maximum acceleration for the motor of the Z-direction."
  2010. msgstr "Maximális gyorsulás a Z tengelyen."
  2011. #: fdmprinter.def.json
  2012. msgctxt "machine_max_acceleration_e description"
  2013. msgid "Maximum acceleration for the motor of the filament."
  2014. msgstr "Maximális extrudálási gyorsulás."
  2015. #: fdmprinter.def.json
  2016. msgctxt "bridge_sparse_infill_max_density description"
  2017. 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."
  2018. msgstr ""
  2019. #: fdmprinter.def.json
  2020. msgctxt "support_tower_maximum_supported_diameter description"
  2021. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2022. msgstr "Annak a kis területnek a legnagyobb átmérője, amit speciális támasz toronnyalkell alátámasztani."
  2023. #: fdmprinter.def.json
  2024. msgctxt "max_extrusion_before_wipe description"
  2025. 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."
  2026. msgstr ""
  2027. #: fdmprinter.def.json
  2028. msgctxt "multiple_mesh_overlap label"
  2029. msgid "Merged Meshes Overlap"
  2030. msgstr "Átfedések egyesítése"
  2031. #: fdmprinter.def.json
  2032. msgctxt "meshfix label"
  2033. msgid "Mesh Fixes"
  2034. msgstr "Háló korrekciók"
  2035. #: fdmprinter.def.json
  2036. msgctxt "mesh_position_x label"
  2037. msgid "Mesh Position X"
  2038. msgstr "Háló X pozíció"
  2039. #: fdmprinter.def.json
  2040. msgctxt "mesh_position_y label"
  2041. msgid "Mesh Position Y"
  2042. msgstr "Háló Y pozíció"
  2043. #: fdmprinter.def.json
  2044. msgctxt "mesh_position_z label"
  2045. msgid "Mesh Position Z"
  2046. msgstr "Háló Z pozíció"
  2047. #: fdmprinter.def.json
  2048. msgctxt "infill_mesh_order label"
  2049. msgid "Mesh Processing Rank"
  2050. msgstr ""
  2051. #: fdmprinter.def.json
  2052. msgctxt "mesh_rotation_matrix label"
  2053. msgid "Mesh Rotation Matrix"
  2054. msgstr "Háló elforgatás mátrix"
  2055. #: fdmprinter.def.json
  2056. msgctxt "slicing_tolerance option middle"
  2057. msgid "Middle"
  2058. msgstr "Középső"
  2059. #: fdmprinter.def.json
  2060. msgctxt "mold_width label"
  2061. msgid "Minimal Mold Width"
  2062. msgstr "Minimális formaszélesség"
  2063. #: fdmprinter.def.json
  2064. msgctxt "machine_min_cool_heat_time_window label"
  2065. msgid "Minimal Time Standby Temperature"
  2066. msgstr "Minimális készenléti hőmérséklet idő"
  2067. #: fdmprinter.def.json
  2068. msgctxt "bridge_wall_min_length label"
  2069. msgid "Minimum Bridge Wall Length"
  2070. msgstr "Minimális híd falhossz"
  2071. #: fdmprinter.def.json
  2072. msgctxt "min_even_wall_line_width label"
  2073. msgid "Minimum Even Wall Line Width"
  2074. msgstr ""
  2075. #: fdmprinter.def.json
  2076. msgctxt "retraction_extrusion_window label"
  2077. msgid "Minimum Extrusion Distance Window"
  2078. msgstr "Minimális extrudálási távolság ablak"
  2079. #: fdmprinter.def.json
  2080. msgctxt "min_feature_size label"
  2081. msgid "Minimum Feature Size"
  2082. msgstr ""
  2083. #: fdmprinter.def.json
  2084. msgctxt "machine_minimum_feedrate label"
  2085. msgid "Minimum Feedrate"
  2086. msgstr "Minimális sebesség"
  2087. #: fdmprinter.def.json
  2088. msgctxt "support_tree_min_height_to_model label"
  2089. msgid "Minimum Height To Model"
  2090. msgstr ""
  2091. #: fdmprinter.def.json
  2092. msgctxt "min_infill_area label"
  2093. msgid "Minimum Infill Area"
  2094. msgstr "Minimális kitöltési terület"
  2095. #: fdmprinter.def.json
  2096. msgctxt "cool_min_layer_time label"
  2097. msgid "Minimum Layer Time"
  2098. msgstr "Minimális rétegidő"
  2099. #: fdmprinter.def.json
  2100. msgctxt "min_odd_wall_line_width label"
  2101. msgid "Minimum Odd Wall Line Width"
  2102. msgstr ""
  2103. #: fdmprinter.def.json
  2104. msgctxt "minimum_polygon_circumference label"
  2105. msgid "Minimum Polygon Circumference"
  2106. msgstr "Minimális sokszög kerület"
  2107. #: fdmprinter.def.json
  2108. msgctxt "min_skin_width_for_expansion label"
  2109. msgid "Minimum Skin Width for Expansion"
  2110. msgstr "A minimális kéregszélesség kibővítéshez"
  2111. #: fdmprinter.def.json
  2112. msgctxt "cool_min_speed label"
  2113. msgid "Minimum Speed"
  2114. msgstr "Minimális sebesség"
  2115. #: fdmprinter.def.json
  2116. msgctxt "minimum_support_area label"
  2117. msgid "Minimum Support Area"
  2118. msgstr "Minimális támasz terület"
  2119. #: fdmprinter.def.json
  2120. msgctxt "minimum_bottom_area label"
  2121. msgid "Minimum Support Floor Area"
  2122. msgstr "Minimális alsó interfész terület"
  2123. #: fdmprinter.def.json
  2124. msgctxt "minimum_interface_area label"
  2125. msgid "Minimum Support Interface Area"
  2126. msgstr "Minimális interfész terület"
  2127. #: fdmprinter.def.json
  2128. msgctxt "minimum_roof_area label"
  2129. msgid "Minimum Support Roof Area"
  2130. msgstr "Minimális felső interfész terület"
  2131. #: fdmprinter.def.json
  2132. msgctxt "support_xy_distance_overhang label"
  2133. msgid "Minimum Support X/Y Distance"
  2134. msgstr "Minimális támasz X/Y távolság"
  2135. #: fdmprinter.def.json
  2136. msgctxt "min_bead_width label"
  2137. msgid "Minimum Thin Wall Line Width"
  2138. msgstr ""
  2139. #: fdmprinter.def.json
  2140. msgctxt "coasting_min_volume label"
  2141. msgid "Minimum Volume Before Coasting"
  2142. msgstr "Minimális mennyiség a kifutás előtt"
  2143. #: fdmprinter.def.json
  2144. msgctxt "min_wall_line_width label"
  2145. msgid "Minimum Wall Line Width"
  2146. msgstr ""
  2147. #: fdmprinter.def.json
  2148. msgctxt "minimum_interface_area description"
  2149. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2150. msgstr ""
  2151. #: fdmprinter.def.json
  2152. msgctxt "minimum_support_area description"
  2153. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2154. msgstr "A támasz poligonok minimális területe. Ha ettől kisebb a terület, ottnem lesz támasz generálva."
  2155. #: fdmprinter.def.json
  2156. msgctxt "minimum_bottom_area description"
  2157. 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."
  2158. msgstr ""
  2159. #: fdmprinter.def.json
  2160. msgctxt "minimum_roof_area description"
  2161. 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."
  2162. msgstr ""
  2163. #: fdmprinter.def.json
  2164. msgctxt "min_feature_size description"
  2165. 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."
  2166. msgstr ""
  2167. #: fdmprinter.def.json
  2168. msgctxt "support_conical_min_width description"
  2169. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2170. 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."
  2171. #: fdmprinter.def.json
  2172. msgctxt "mold_enabled label"
  2173. msgid "Mold"
  2174. msgstr "Öntőforma"
  2175. #: fdmprinter.def.json
  2176. msgctxt "mold_angle label"
  2177. msgid "Mold Angle"
  2178. msgstr "Forma szög"
  2179. #: fdmprinter.def.json
  2180. msgctxt "mold_roof_height label"
  2181. msgid "Mold Roof Height"
  2182. msgstr "Forma fedél magasság"
  2183. #: fdmprinter.def.json
  2184. msgctxt "ironing_monotonic label"
  2185. msgid "Monotonic Ironing Order"
  2186. msgstr ""
  2187. #: fdmprinter.def.json
  2188. msgctxt "roofing_monotonic label"
  2189. msgid "Monotonic Top Surface Order"
  2190. msgstr ""
  2191. #: fdmprinter.def.json
  2192. msgctxt "skin_monotonic label"
  2193. msgid "Monotonic Top/Bottom Order"
  2194. msgstr ""
  2195. #: fdmprinter.def.json
  2196. msgctxt "skirt_line_count description"
  2197. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2198. 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."
  2199. #: fdmprinter.def.json
  2200. msgctxt "initial_layer_line_width_factor description"
  2201. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2202. 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."
  2203. #: fdmprinter.def.json
  2204. msgctxt "material_no_load_move_factor label"
  2205. msgid "No Load Move Factor"
  2206. msgstr ""
  2207. #: fdmprinter.def.json
  2208. msgctxt "skin_no_small_gaps_heuristic label"
  2209. msgid "No Skin in Z Gaps"
  2210. msgstr "Felület nélküli Z hézag"
  2211. #: fdmprinter.def.json
  2212. msgctxt "blackmagic description"
  2213. msgid "Non-traditional ways to print your models."
  2214. msgstr ""
  2215. #: fdmprinter.def.json
  2216. msgctxt "adhesion_type option none"
  2217. msgid "None"
  2218. msgstr "Nincs"
  2219. #: fdmprinter.def.json
  2220. msgctxt "z_seam_corner option z_seam_corner_none"
  2221. msgid "None"
  2222. msgstr "Nincs"
  2223. #: fdmprinter.def.json
  2224. msgctxt "magic_mesh_surface_mode option normal"
  2225. msgid "Normal"
  2226. msgstr "Normál"
  2227. #: fdmprinter.def.json
  2228. msgctxt "support_structure option normal"
  2229. msgid "Normal"
  2230. msgstr ""
  2231. #: fdmprinter.def.json
  2232. msgctxt "meshfix_keep_open_polygons description"
  2233. 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."
  2234. 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."
  2235. #: fdmprinter.def.json
  2236. msgctxt "retraction_combing option noskin"
  2237. msgid "Not in Skin"
  2238. msgstr "Felszínen nem"
  2239. #: fdmprinter.def.json
  2240. msgctxt "retraction_combing option no_outer_surfaces"
  2241. msgid "Not on Outer Surface"
  2242. msgstr ""
  2243. #: fdmprinter.def.json
  2244. msgctxt "machine_nozzle_expansion_angle label"
  2245. msgid "Nozzle Angle"
  2246. msgstr "Csúcsszög"
  2247. #: fdmprinter.def.json
  2248. msgctxt "machine_nozzle_size label"
  2249. msgid "Nozzle Diameter"
  2250. msgstr "Fúvóka átmérő"
  2251. #: fdmprinter.def.json
  2252. msgctxt "nozzle_disallowed_areas label"
  2253. msgid "Nozzle Disallowed Areas"
  2254. msgstr "Fúvóka tiltott területek"
  2255. #: fdmprinter.def.json
  2256. msgctxt "machine_nozzle_id label"
  2257. msgid "Nozzle ID"
  2258. msgstr "Fúvóka ID"
  2259. #: fdmprinter.def.json
  2260. msgctxt "machine_nozzle_head_distance label"
  2261. msgid "Nozzle Length"
  2262. msgstr "Fúvóka hossza"
  2263. #: fdmprinter.def.json
  2264. msgctxt "switch_extruder_extra_prime_amount label"
  2265. msgid "Nozzle Switch Extra Prime Amount"
  2266. msgstr "Fúvókaváltási extra visszatolt anyag"
  2267. #: fdmprinter.def.json
  2268. msgctxt "switch_extruder_prime_speed label"
  2269. msgid "Nozzle Switch Prime Speed"
  2270. msgstr "Fúvókaváltás visszatolási sebesség"
  2271. #: fdmprinter.def.json
  2272. msgctxt "switch_extruder_retraction_speed label"
  2273. msgid "Nozzle Switch Retract Speed"
  2274. msgstr "Fúvókaváltás visszahúzási sebesség"
  2275. #: fdmprinter.def.json
  2276. msgctxt "switch_extruder_retraction_amount label"
  2277. msgid "Nozzle Switch Retraction Distance"
  2278. msgstr "Fúvókaváltás visszahúzási távolság"
  2279. #: fdmprinter.def.json
  2280. msgctxt "switch_extruder_retraction_speeds label"
  2281. msgid "Nozzle Switch Retraction Speed"
  2282. msgstr "Fúvókaváltás visszahúzási sebesség"
  2283. #: fdmprinter.def.json
  2284. msgctxt "machine_extruder_count label"
  2285. msgid "Number of Extruders"
  2286. msgstr "Extruderek száma"
  2287. #: fdmprinter.def.json
  2288. msgctxt "extruders_enabled_count label"
  2289. msgid "Number of Extruders That Are Enabled"
  2290. msgstr "Engedélyezett extruderek száma"
  2291. #: fdmprinter.def.json
  2292. msgctxt "speed_slowdown_layers label"
  2293. msgid "Number of Slower Layers"
  2294. msgstr "Lassabb rétegek száma"
  2295. #: fdmprinter.def.json
  2296. msgctxt "extruders_enabled_count description"
  2297. msgid "Number of extruder trains that are enabled; automatically set in software"
  2298. msgstr "Az engedélyezett extruder szerelvények száma. Ez egy automatikus beállítás a szoftverből"
  2299. #: fdmprinter.def.json
  2300. msgctxt "machine_extruder_count description"
  2301. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2302. 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."
  2303. #: fdmprinter.def.json
  2304. msgctxt "wipe_repeat_count description"
  2305. msgid "Number of times to move the nozzle across the brush."
  2306. msgstr "A törlési mozgás ismétlésének száma, háynszor keresztezze a fej a kefét."
  2307. #: fdmprinter.def.json
  2308. msgctxt "gradual_infill_steps description"
  2309. 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."
  2310. 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."
  2311. #: fdmprinter.def.json
  2312. msgctxt "gradual_support_infill_steps description"
  2313. 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."
  2314. 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."
  2315. #: fdmprinter.def.json
  2316. msgctxt "infill_pattern option tetrahedral"
  2317. msgid "Octet"
  2318. msgstr "Oktett"
  2319. #: fdmprinter.def.json
  2320. msgctxt "retraction_combing option off"
  2321. msgid "Off"
  2322. msgstr "Ki"
  2323. #: fdmprinter.def.json
  2324. msgctxt "mesh_position_x description"
  2325. msgid "Offset applied to the object in the x direction."
  2326. msgstr "Az objektumra vonatkozó eltolás mértéke X irányban."
  2327. #: fdmprinter.def.json
  2328. msgctxt "mesh_position_y description"
  2329. msgid "Offset applied to the object in the y direction."
  2330. msgstr "Az objektumra vonatkozó eltolás mértéke Y irányban."
  2331. #: fdmprinter.def.json
  2332. msgctxt "mesh_position_z description"
  2333. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2334. msgstr "Az objektumra alkalmazott eltolás z irányban. Ezzel végrehajthatja azt, amit régen 'Object Sink' -nek hívtak."
  2335. #: fdmprinter.def.json
  2336. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2337. msgid "Offset with Extruder"
  2338. msgstr "Extruder eltolás"
  2339. #: fdmprinter.def.json
  2340. msgctxt "support_tree_rest_preference option graceful"
  2341. msgid "On Model If Necessary"
  2342. msgstr ""
  2343. #: fdmprinter.def.json
  2344. msgctxt "print_sequence option one_at_a_time"
  2345. msgid "One at a Time"
  2346. msgstr "Egyesével"
  2347. #: fdmprinter.def.json
  2348. msgctxt "retraction_hop_only_when_collides description"
  2349. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2350. msgstr "Csak akkor végez Z emelést, ha olyan nyomtatott részek felett mozog, amiket vízszintes mozgással nem lehet elkerülni."
  2351. #: fdmprinter.def.json
  2352. msgctxt "ironing_only_highest_layer description"
  2353. 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."
  2354. 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."
  2355. #: fdmprinter.def.json
  2356. msgctxt "brim_outside_only description"
  2357. 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."
  2358. 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."
  2359. #: fdmprinter.def.json
  2360. msgctxt "ooze_shield_angle label"
  2361. msgid "Ooze Shield Angle"
  2362. msgstr "Szivárgáspajzs szöge"
  2363. #: fdmprinter.def.json
  2364. msgctxt "ooze_shield_dist label"
  2365. msgid "Ooze Shield Distance"
  2366. msgstr "Szivárgáspajzs távolság"
  2367. #: fdmprinter.def.json
  2368. msgctxt "support_tree_branch_reach_limit label"
  2369. msgid "Optimal Branch Range"
  2370. msgstr ""
  2371. #: fdmprinter.def.json
  2372. msgctxt "optimize_wall_printing_order label"
  2373. msgid "Optimize Wall Printing Order"
  2374. msgstr "Optimalizálás a falnyomtatási sorrendre"
  2375. #: fdmprinter.def.json
  2376. msgctxt "optimize_wall_printing_order description"
  2377. 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."
  2378. 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."
  2379. #: fdmprinter.def.json
  2380. msgctxt "machine_nozzle_tip_outer_diameter label"
  2381. msgid "Outer Nozzle Diameter"
  2382. msgstr "Külső fúvóka átmérő"
  2383. #: fdmprinter.def.json
  2384. msgctxt "acceleration_wall_0 label"
  2385. msgid "Outer Wall Acceleration"
  2386. msgstr "Külső fal gyorsulás"
  2387. #: fdmprinter.def.json
  2388. msgctxt "wall_0_extruder_nr label"
  2389. msgid "Outer Wall Extruder"
  2390. msgstr "Külső fali extruder"
  2391. #: fdmprinter.def.json
  2392. msgctxt "wall_0_material_flow label"
  2393. msgid "Outer Wall Flow"
  2394. msgstr "Külső fal áramlás"
  2395. #: fdmprinter.def.json
  2396. msgctxt "wall_0_inset label"
  2397. msgid "Outer Wall Inset"
  2398. msgstr "Külső fal eltolás"
  2399. #: fdmprinter.def.json
  2400. msgctxt "jerk_wall_0 label"
  2401. msgid "Outer Wall Jerk"
  2402. msgstr "Külsö fal löket"
  2403. #: fdmprinter.def.json
  2404. msgctxt "wall_line_width_0 label"
  2405. msgid "Outer Wall Line Width"
  2406. msgstr "Külső falvonal szélessége"
  2407. #: fdmprinter.def.json
  2408. msgctxt "speed_wall_0 label"
  2409. msgid "Outer Wall Speed"
  2410. msgstr "Külső fal sebesség"
  2411. #: fdmprinter.def.json
  2412. msgctxt "wall_0_wipe_dist label"
  2413. msgid "Outer Wall Wipe Distance"
  2414. msgstr "Külső fal tisztítási távolság"
  2415. #: fdmprinter.def.json
  2416. msgctxt "inset_direction option outside_in"
  2417. msgid "Outside To Inside"
  2418. msgstr ""
  2419. #: fdmprinter.def.json
  2420. msgctxt "wall_overhang_angle label"
  2421. msgid "Overhanging Wall Angle"
  2422. msgstr "Falkinyúlások szöge"
  2423. #: fdmprinter.def.json
  2424. msgctxt "wall_overhang_speed_factor label"
  2425. msgid "Overhanging Wall Speed"
  2426. msgstr "Falkinyúlás sebessége"
  2427. #: fdmprinter.def.json
  2428. msgctxt "wall_overhang_speed_factor description"
  2429. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2430. msgstr "A kinyúló falak a normál nyomtatási sebesség százalékos arányában adjuk meg."
  2431. #: fdmprinter.def.json
  2432. msgctxt "wipe_pause description"
  2433. msgid "Pause after the unretract."
  2434. msgstr "Szünet a visszahúzás után."
  2435. #: fdmprinter.def.json
  2436. msgctxt "bridge_fan_speed description"
  2437. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2438. msgstr "A hűtőventillátor sebességének százalékos értéke hídfalak, és a felszíni rétegek nyomtatásakor."
  2439. #: fdmprinter.def.json
  2440. msgctxt "bridge_fan_speed_2 description"
  2441. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2442. msgstr "A második hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva."
  2443. #: fdmprinter.def.json
  2444. msgctxt "support_supported_skin_fan_speed description"
  2445. 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."
  2446. 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ó."
  2447. #: fdmprinter.def.json
  2448. msgctxt "bridge_fan_speed_3 description"
  2449. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2450. msgstr "A harmadik hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva."
  2451. #: fdmprinter.def.json
  2452. msgctxt "minimum_polygon_circumference description"
  2453. 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."
  2454. 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."
  2455. #: fdmprinter.def.json
  2456. msgctxt "support_tree_angle_slow label"
  2457. msgid "Preferred Branch Angle"
  2458. msgstr ""
  2459. #: fdmprinter.def.json
  2460. msgctxt "wall_transition_filter_deviation description"
  2461. 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."
  2462. msgstr ""
  2463. #: fdmprinter.def.json
  2464. msgctxt "acceleration_prime_tower label"
  2465. msgid "Prime Tower Acceleration"
  2466. msgstr "Előtorony gyorsulás"
  2467. #: fdmprinter.def.json
  2468. msgctxt "prime_tower_brim_enable label"
  2469. msgid "Prime Tower Brim"
  2470. msgstr "Előtorony perem"
  2471. #: fdmprinter.def.json
  2472. msgctxt "prime_tower_flow label"
  2473. msgid "Prime Tower Flow"
  2474. msgstr "Elő torony áramlás"
  2475. #: fdmprinter.def.json
  2476. msgctxt "jerk_prime_tower label"
  2477. msgid "Prime Tower Jerk"
  2478. msgstr "Előtorony löket"
  2479. #: fdmprinter.def.json
  2480. msgctxt "prime_tower_line_width label"
  2481. msgid "Prime Tower Line Width"
  2482. msgstr "Előtorony vonalszélesség"
  2483. #: fdmprinter.def.json
  2484. msgctxt "prime_tower_min_volume label"
  2485. msgid "Prime Tower Minimum Volume"
  2486. msgstr "Előtorony minimális térfogat"
  2487. #: fdmprinter.def.json
  2488. msgctxt "prime_tower_size label"
  2489. msgid "Prime Tower Size"
  2490. msgstr "Előtorony mérete"
  2491. #: fdmprinter.def.json
  2492. msgctxt "speed_prime_tower label"
  2493. msgid "Prime Tower Speed"
  2494. msgstr "Előtorony sebesség"
  2495. #: fdmprinter.def.json
  2496. msgctxt "prime_tower_position_x label"
  2497. msgid "Prime Tower X Position"
  2498. msgstr "Előtorony X helyzet"
  2499. #: fdmprinter.def.json
  2500. msgctxt "prime_tower_position_y label"
  2501. msgid "Prime Tower Y Position"
  2502. msgstr "Előtorony Y helyzet"
  2503. #: fdmprinter.def.json
  2504. msgctxt "prime_tower_brim_enable description"
  2505. 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."
  2506. 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."
  2507. #: fdmprinter.def.json
  2508. msgctxt "acceleration_print label"
  2509. msgid "Print Acceleration"
  2510. msgstr "Nyomtatási gyorsulás"
  2511. #: fdmprinter.def.json
  2512. msgctxt "jerk_print label"
  2513. msgid "Print Jerk"
  2514. msgstr "Nyomtatás löket"
  2515. #: fdmprinter.def.json
  2516. msgctxt "print_sequence label"
  2517. msgid "Print Sequence"
  2518. msgstr "Nyomtatási sorrend"
  2519. #: fdmprinter.def.json
  2520. msgctxt "speed_print label"
  2521. msgid "Print Speed"
  2522. msgstr "Nyomtatási sebesség"
  2523. #: fdmprinter.def.json
  2524. msgctxt "fill_outline_gaps label"
  2525. msgid "Print Thin Walls"
  2526. msgstr "Vékony falak nyomtatása"
  2527. #: fdmprinter.def.json
  2528. msgctxt "prime_tower_enable description"
  2529. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2530. 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."
  2531. #: fdmprinter.def.json
  2532. msgctxt "infill_support_enabled description"
  2533. 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."
  2534. 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."
  2535. #: fdmprinter.def.json
  2536. msgctxt "ironing_monotonic description"
  2537. 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."
  2538. msgstr ""
  2539. #: fdmprinter.def.json
  2540. msgctxt "mold_enabled description"
  2541. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2542. 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."
  2543. #: fdmprinter.def.json
  2544. msgctxt "fill_outline_gaps description"
  2545. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2546. msgstr "Nyomtassa a modell egyes részeit vékonyabbra a vízszintes síkon, mint a fúvóka mérete."
  2547. #: fdmprinter.def.json
  2548. msgctxt "bridge_skin_speed_2 description"
  2549. msgid "Print speed to use when printing the second bridge skin layer."
  2550. msgstr "Ha használunk második hídréteget, akkor az ezzel a sebességgel fog nyomtatódni."
  2551. #: fdmprinter.def.json
  2552. msgctxt "bridge_skin_speed_3 description"
  2553. msgid "Print speed to use when printing the third bridge skin layer."
  2554. msgstr "Ha használunk harmadik hídréteget, akkor az ezzel a sebességgel fog nyomtatódni."
  2555. #: fdmprinter.def.json
  2556. msgctxt "infill_before_walls description"
  2557. 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."
  2558. 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."
  2559. #: fdmprinter.def.json
  2560. msgctxt "roofing_monotonic description"
  2561. 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."
  2562. msgstr ""
  2563. #: fdmprinter.def.json
  2564. msgctxt "skin_monotonic description"
  2565. 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."
  2566. msgstr ""
  2567. #: fdmprinter.def.json
  2568. msgctxt "material_print_temperature label"
  2569. msgid "Printing Temperature"
  2570. msgstr "Nyomtatási hőmérséklet"
  2571. #: fdmprinter.def.json
  2572. msgctxt "material_print_temperature_layer_0 label"
  2573. msgid "Printing Temperature Initial Layer"
  2574. msgstr "Kezdő réteg nyomtatási hőmérséklete"
  2575. #: fdmprinter.def.json
  2576. msgctxt "skirt_height description"
  2577. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2578. msgstr ""
  2579. #: fdmprinter.def.json
  2580. msgctxt "alternate_extra_perimeter description"
  2581. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2582. 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."
  2583. #: fdmprinter.def.json
  2584. msgctxt "resolution label"
  2585. msgid "Quality"
  2586. msgstr "Minőség"
  2587. #: fdmprinter.def.json
  2588. msgctxt "infill_pattern option quarter_cubic"
  2589. msgid "Quarter Cubic"
  2590. msgstr "Negyed kocka"
  2591. #: fdmprinter.def.json
  2592. msgctxt "adhesion_type option raft"
  2593. msgid "Raft"
  2594. msgstr "Tutaj"
  2595. #: fdmprinter.def.json
  2596. msgctxt "raft_airgap label"
  2597. msgid "Raft Air Gap"
  2598. msgstr "Tutaj légrés"
  2599. #: fdmprinter.def.json
  2600. msgctxt "raft_base_extruder_nr label"
  2601. msgid "Raft Base Extruder"
  2602. msgstr ""
  2603. #: fdmprinter.def.json
  2604. msgctxt "raft_base_fan_speed label"
  2605. msgid "Raft Base Fan Speed"
  2606. msgstr "Tutajalap hűtés"
  2607. #: fdmprinter.def.json
  2608. msgctxt "raft_base_line_spacing label"
  2609. msgid "Raft Base Line Spacing"
  2610. msgstr "Tutajalap-vonalak közötti távolság"
  2611. #: fdmprinter.def.json
  2612. msgctxt "raft_base_line_width label"
  2613. msgid "Raft Base Line Width"
  2614. msgstr "Tutajalap vonal szélessége"
  2615. #: fdmprinter.def.json
  2616. msgctxt "raft_base_acceleration label"
  2617. msgid "Raft Base Print Acceleration"
  2618. msgstr "Tutajalap gyorsulás"
  2619. #: fdmprinter.def.json
  2620. msgctxt "raft_base_jerk label"
  2621. msgid "Raft Base Print Jerk"
  2622. msgstr "Tutajalap löket"
  2623. #: fdmprinter.def.json
  2624. msgctxt "raft_base_speed label"
  2625. msgid "Raft Base Print Speed"
  2626. msgstr "Tutajalap nyomtatási sebessége"
  2627. #: fdmprinter.def.json
  2628. msgctxt "raft_base_thickness label"
  2629. msgid "Raft Base Thickness"
  2630. msgstr "Tutajalap vastagsága"
  2631. #: fdmprinter.def.json
  2632. msgctxt "raft_base_wall_count label"
  2633. msgid "Raft Base Wall Count"
  2634. msgstr ""
  2635. #: fdmprinter.def.json
  2636. msgctxt "raft_margin label"
  2637. msgid "Raft Extra Margin"
  2638. msgstr "Tutaj extra margó"
  2639. #: fdmprinter.def.json
  2640. msgctxt "raft_fan_speed label"
  2641. msgid "Raft Fan Speed"
  2642. msgstr "Tutaj hűtés"
  2643. #: fdmprinter.def.json
  2644. msgctxt "raft_interface_extruder_nr label"
  2645. msgid "Raft Middle Extruder"
  2646. msgstr ""
  2647. #: fdmprinter.def.json
  2648. msgctxt "raft_interface_fan_speed label"
  2649. msgid "Raft Middle Fan Speed"
  2650. msgstr "Tutajközép hűtés"
  2651. #: fdmprinter.def.json
  2652. msgctxt "raft_interface_layers label"
  2653. msgid "Raft Middle Layers"
  2654. msgstr ""
  2655. #: fdmprinter.def.json
  2656. msgctxt "raft_interface_line_width label"
  2657. msgid "Raft Middle Line Width"
  2658. msgstr "Tutaj középső vonal szélessége"
  2659. #: fdmprinter.def.json
  2660. msgctxt "raft_interface_acceleration label"
  2661. msgid "Raft Middle Print Acceleration"
  2662. msgstr "Tutajközép gyorsulás"
  2663. #: fdmprinter.def.json
  2664. msgctxt "raft_interface_jerk label"
  2665. msgid "Raft Middle Print Jerk"
  2666. msgstr "Tutajközép löket"
  2667. #: fdmprinter.def.json
  2668. msgctxt "raft_interface_speed label"
  2669. msgid "Raft Middle Print Speed"
  2670. msgstr "Tutajközép nyomtatási sebesség"
  2671. #: fdmprinter.def.json
  2672. msgctxt "raft_interface_line_spacing label"
  2673. msgid "Raft Middle Spacing"
  2674. msgstr "Tutaj középső távolsága"
  2675. #: fdmprinter.def.json
  2676. msgctxt "raft_interface_thickness label"
  2677. msgid "Raft Middle Thickness"
  2678. msgstr "Tutaj közép vastagsága"
  2679. #: fdmprinter.def.json
  2680. msgctxt "raft_acceleration label"
  2681. msgid "Raft Print Acceleration"
  2682. msgstr "Tutaj gyorsulás"
  2683. #: fdmprinter.def.json
  2684. msgctxt "raft_jerk label"
  2685. msgid "Raft Print Jerk"
  2686. msgstr "Tutaj löket"
  2687. #: fdmprinter.def.json
  2688. msgctxt "raft_speed label"
  2689. msgid "Raft Print Speed"
  2690. msgstr "Tutaj nyomtatási sebesség"
  2691. #: fdmprinter.def.json
  2692. msgctxt "raft_smoothing label"
  2693. msgid "Raft Smoothing"
  2694. msgstr "Tutaj simítás"
  2695. #: fdmprinter.def.json
  2696. msgctxt "raft_surface_extruder_nr label"
  2697. msgid "Raft Top Extruder"
  2698. msgstr ""
  2699. #: fdmprinter.def.json
  2700. msgctxt "raft_surface_fan_speed label"
  2701. msgid "Raft Top Fan Speed"
  2702. msgstr "Tutajfedél hűtés"
  2703. #: fdmprinter.def.json
  2704. msgctxt "raft_surface_thickness label"
  2705. msgid "Raft Top Layer Thickness"
  2706. msgstr "Felső tutaj rétegvastagság"
  2707. #: fdmprinter.def.json
  2708. msgctxt "raft_surface_layers label"
  2709. msgid "Raft Top Layers"
  2710. msgstr "Felső tutaj rétegek"
  2711. #: fdmprinter.def.json
  2712. msgctxt "raft_surface_line_width label"
  2713. msgid "Raft Top Line Width"
  2714. msgstr "Tutaj felső vonalszélesség"
  2715. #: fdmprinter.def.json
  2716. msgctxt "raft_surface_acceleration label"
  2717. msgid "Raft Top Print Acceleration"
  2718. msgstr "Tutajfedél gyorsulás"
  2719. #: fdmprinter.def.json
  2720. msgctxt "raft_surface_jerk label"
  2721. msgid "Raft Top Print Jerk"
  2722. msgstr "Tutajfedél löket"
  2723. #: fdmprinter.def.json
  2724. msgctxt "raft_surface_speed label"
  2725. msgid "Raft Top Print Speed"
  2726. msgstr "Tutajfedél nyomtatási sebesség"
  2727. #: fdmprinter.def.json
  2728. msgctxt "raft_surface_line_spacing label"
  2729. msgid "Raft Top Spacing"
  2730. msgstr "Tutaj felső távolsága"
  2731. #: fdmprinter.def.json
  2732. msgctxt "z_seam_type option random"
  2733. msgid "Random"
  2734. msgstr "Véletlenszerű"
  2735. #: fdmprinter.def.json
  2736. msgctxt "infill_randomize_start_location label"
  2737. msgid "Randomize Infill Start"
  2738. msgstr "Véletlenszerű kitöltés kezdés"
  2739. #: fdmprinter.def.json
  2740. msgctxt "infill_randomize_start_location description"
  2741. 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."
  2742. 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."
  2743. #: fdmprinter.def.json
  2744. msgctxt "magic_fuzzy_skin_enabled description"
  2745. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2746. 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."
  2747. #: fdmprinter.def.json
  2748. msgctxt "machine_shape option rectangular"
  2749. msgid "Rectangular"
  2750. msgstr "Szögletes (négyszög)"
  2751. #: fdmprinter.def.json
  2752. msgctxt "cool_fan_speed_min label"
  2753. msgid "Regular Fan Speed"
  2754. msgstr "Normál hűtési sebesség"
  2755. #: fdmprinter.def.json
  2756. msgctxt "cool_fan_full_at_height label"
  2757. msgid "Regular Fan Speed at Height"
  2758. msgstr "Normál hűtési magasság"
  2759. #: fdmprinter.def.json
  2760. msgctxt "cool_fan_full_layer label"
  2761. msgid "Regular Fan Speed at Layer"
  2762. msgstr "Normál hűtési réteg"
  2763. #: fdmprinter.def.json
  2764. msgctxt "cool_min_layer_time_fan_speed_max label"
  2765. msgid "Regular/Maximum Fan Speed Threshold"
  2766. msgstr "Normál/Maximum ventillátor sebesség küszöb"
  2767. #: fdmprinter.def.json
  2768. msgctxt "relative_extrusion label"
  2769. msgid "Relative Extrusion"
  2770. msgstr "Relatív extrudálás"
  2771. #: fdmprinter.def.json
  2772. msgctxt "meshfix_union_all_remove_holes label"
  2773. msgid "Remove All Holes"
  2774. msgstr "Üregek eltávolítása"
  2775. #: fdmprinter.def.json
  2776. msgctxt "remove_empty_first_layers label"
  2777. msgid "Remove Empty First Layers"
  2778. msgstr "Üres első rétegek eltávolítása"
  2779. #: fdmprinter.def.json
  2780. msgctxt "carve_multiple_volumes label"
  2781. msgid "Remove Mesh Intersection"
  2782. msgstr "Keresztezések eltávolítása"
  2783. #: fdmprinter.def.json
  2784. msgctxt "raft_remove_inside_corners label"
  2785. msgid "Remove Raft Inside Corners"
  2786. msgstr ""
  2787. #: fdmprinter.def.json
  2788. msgctxt "carve_multiple_volumes description"
  2789. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2790. 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."
  2791. #: fdmprinter.def.json
  2792. msgctxt "remove_empty_first_layers description"
  2793. 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."
  2794. 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."
  2795. #: fdmprinter.def.json
  2796. msgctxt "raft_remove_inside_corners description"
  2797. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2798. msgstr ""
  2799. #: fdmprinter.def.json
  2800. msgctxt "meshfix_union_all_remove_holes description"
  2801. 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."
  2802. 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."
  2803. #: fdmprinter.def.json
  2804. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2805. msgid "RepRap"
  2806. msgstr "RepRap"
  2807. #: fdmprinter.def.json
  2808. msgctxt "machine_gcode_flavor option Repetier"
  2809. msgid "Repetier"
  2810. msgstr "Repetier"
  2811. #: fdmprinter.def.json
  2812. msgctxt "skin_outline_count description"
  2813. 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."
  2814. 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ó."
  2815. #: fdmprinter.def.json
  2816. msgctxt "support_tree_rest_preference label"
  2817. msgid "Rest Preference"
  2818. msgstr ""
  2819. #: fdmprinter.def.json
  2820. msgctxt "travel_retract_before_outer_wall label"
  2821. msgid "Retract Before Outer Wall"
  2822. msgstr "Visszahúzás külső fal előtt"
  2823. #: fdmprinter.def.json
  2824. msgctxt "retract_at_layer_change label"
  2825. msgid "Retract at Layer Change"
  2826. msgstr "Visszahúzás a rétegváltásnál"
  2827. #: fdmprinter.def.json
  2828. msgctxt "retraction_enable description"
  2829. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2830. msgstr ""
  2831. #: fdmprinter.def.json
  2832. msgctxt "wipe_retraction_enable description"
  2833. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2834. msgstr "A nyomtatószálat visszahúzza, mikor a fúvóka átmozog egy nem-nyomtatott területen."
  2835. #: fdmprinter.def.json
  2836. msgctxt "retract_at_layer_change description"
  2837. msgid "Retract the filament when the nozzle is moving to the next layer."
  2838. msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka a következő rétegre vált."
  2839. #: fdmprinter.def.json
  2840. msgctxt "retraction_amount label"
  2841. msgid "Retraction Distance"
  2842. msgstr "Visszahúzási távolság"
  2843. #: fdmprinter.def.json
  2844. msgctxt "retraction_extra_prime_amount label"
  2845. msgid "Retraction Extra Prime Amount"
  2846. msgstr "Előtolási plussz anyagmennyiség"
  2847. #: fdmprinter.def.json
  2848. msgctxt "retraction_min_travel label"
  2849. msgid "Retraction Minimum Travel"
  2850. msgstr "Minimum út visszahúzáshoz"
  2851. #: fdmprinter.def.json
  2852. msgctxt "retraction_prime_speed label"
  2853. msgid "Retraction Prime Speed"
  2854. msgstr "Visszahúzás előtolási sebesség"
  2855. #: fdmprinter.def.json
  2856. msgctxt "retraction_retract_speed label"
  2857. msgid "Retraction Retract Speed"
  2858. msgstr "Visszahúzás visszahúzási sebesség"
  2859. #: fdmprinter.def.json
  2860. msgctxt "retraction_speed label"
  2861. msgid "Retraction Speed"
  2862. msgstr "Visszahúzási sebesség"
  2863. #: fdmprinter.def.json
  2864. msgctxt "z_seam_position option right"
  2865. msgid "Right"
  2866. msgstr "Jobbra"
  2867. #: fdmprinter.def.json
  2868. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2869. msgid "Scale Fan Speed To 0-1"
  2870. msgstr ""
  2871. #: fdmprinter.def.json
  2872. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2873. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2874. msgstr ""
  2875. #: fdmprinter.def.json
  2876. msgctxt "material_shrinkage_percentage label"
  2877. msgid "Scaling Factor Shrinkage Compensation"
  2878. msgstr ""
  2879. #: fdmprinter.def.json
  2880. msgctxt "support_meshes_present label"
  2881. msgid "Scene Has Support Meshes"
  2882. msgstr ""
  2883. #: fdmprinter.def.json
  2884. msgctxt "z_seam_corner label"
  2885. msgid "Seam Corner Preference"
  2886. msgstr "Sarok varrat preferálás"
  2887. #: fdmprinter.def.json
  2888. msgctxt "draft_shield_height_limitation description"
  2889. 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."
  2890. 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."
  2891. #: fdmprinter.def.json
  2892. msgctxt "dual description"
  2893. msgid "Settings used for printing with multiple extruders."
  2894. msgstr "A több extrúderekkel rendelkező gépek nyomtatási beállításai."
  2895. #: fdmprinter.def.json
  2896. msgctxt "command_line_settings description"
  2897. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2898. msgstr "Beállítások, amelyeket csak akkor használunk, ha a CuraEngine nem hívható meg a Cura grafikus felületéről."
  2899. #: fdmprinter.def.json
  2900. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2901. msgid "Shared Nozzle Initial Retraction"
  2902. msgstr ""
  2903. #: fdmprinter.def.json
  2904. msgctxt "z_seam_type option sharpest_corner"
  2905. msgid "Sharpest Corner"
  2906. msgstr "Éles sarok"
  2907. #: fdmprinter.def.json
  2908. msgctxt "shell description"
  2909. msgid "Shell"
  2910. msgstr "Héj"
  2911. #: fdmprinter.def.json
  2912. msgctxt "z_seam_type option shortest"
  2913. msgid "Shortest"
  2914. msgstr "Legrövidebb"
  2915. #: fdmprinter.def.json
  2916. msgctxt "machine_show_variants label"
  2917. msgid "Show Machine Variants"
  2918. msgstr "Mutasd a gép változatait"
  2919. #: fdmprinter.def.json
  2920. msgctxt "skin_edge_support_layers label"
  2921. msgid "Skin Edge Support Layers"
  2922. msgstr ""
  2923. #: fdmprinter.def.json
  2924. msgctxt "skin_edge_support_thickness label"
  2925. msgid "Skin Edge Support Thickness"
  2926. msgstr ""
  2927. #: fdmprinter.def.json
  2928. msgctxt "expand_skins_expand_distance label"
  2929. msgid "Skin Expand Distance"
  2930. msgstr "Kéreg bővítési távolság"
  2931. #: fdmprinter.def.json
  2932. msgctxt "skin_overlap_mm label"
  2933. msgid "Skin Overlap"
  2934. msgstr "Kéreg átfedés"
  2935. #: fdmprinter.def.json
  2936. msgctxt "skin_overlap label"
  2937. msgid "Skin Overlap Percentage"
  2938. msgstr "Felület átlapolás százaléka"
  2939. #: fdmprinter.def.json
  2940. msgctxt "skin_preshrink label"
  2941. msgid "Skin Removal Width"
  2942. msgstr "Kéreg eltávolítás szélessége"
  2943. #: fdmprinter.def.json
  2944. msgctxt "min_skin_width_for_expansion description"
  2945. 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."
  2946. 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."
  2947. #: fdmprinter.def.json
  2948. msgctxt "support_zag_skip_count description"
  2949. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2950. msgstr "Ennyi kapcsolódó vonal után hagy ki egyet a törés könnyítése érdekében."
  2951. #: fdmprinter.def.json
  2952. msgctxt "support_skip_some_zags description"
  2953. 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."
  2954. 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."
  2955. #: fdmprinter.def.json
  2956. msgctxt "adhesion_type option skirt"
  2957. msgid "Skirt"
  2958. msgstr "Szoknya"
  2959. #: fdmprinter.def.json
  2960. msgctxt "skirt_gap label"
  2961. msgid "Skirt Distance"
  2962. msgstr "Szoknya távolság"
  2963. #: fdmprinter.def.json
  2964. msgctxt "skirt_height label"
  2965. msgid "Skirt Height"
  2966. msgstr ""
  2967. #: fdmprinter.def.json
  2968. msgctxt "skirt_line_count label"
  2969. msgid "Skirt Line Count"
  2970. msgstr "Szoknya vonalszám"
  2971. #: fdmprinter.def.json
  2972. msgctxt "acceleration_skirt_brim label"
  2973. msgid "Skirt/Brim Acceleration"
  2974. msgstr "Szoknya/perem gyorsulás"
  2975. #: fdmprinter.def.json
  2976. msgctxt "skirt_brim_extruder_nr label"
  2977. msgid "Skirt/Brim Extruder"
  2978. msgstr ""
  2979. #: fdmprinter.def.json
  2980. msgctxt "skirt_brim_material_flow label"
  2981. msgid "Skirt/Brim Flow"
  2982. msgstr "Szoknya/perem áramlás"
  2983. #: fdmprinter.def.json
  2984. msgctxt "jerk_skirt_brim label"
  2985. msgid "Skirt/Brim Jerk"
  2986. msgstr "Szoknya/perem löket"
  2987. #: fdmprinter.def.json
  2988. msgctxt "skirt_brim_line_width label"
  2989. msgid "Skirt/Brim Line Width"
  2990. msgstr "Szoknya/perem vonalszélesség"
  2991. #: fdmprinter.def.json
  2992. msgctxt "skirt_brim_minimal_length label"
  2993. msgid "Skirt/Brim Minimum Length"
  2994. msgstr "Szoknya/Perem minimális hossz"
  2995. #: fdmprinter.def.json
  2996. msgctxt "skirt_brim_speed label"
  2997. msgid "Skirt/Brim Speed"
  2998. msgstr "Szoknya/perem sebesség"
  2999. #: fdmprinter.def.json
  3000. msgctxt "slicing_tolerance label"
  3001. msgid "Slicing Tolerance"
  3002. msgstr "Szeletelési tűrés"
  3003. #: fdmprinter.def.json
  3004. msgctxt "small_feature_speed_factor_0 label"
  3005. msgid "Small Feature Initial Layer Speed"
  3006. msgstr ""
  3007. #: fdmprinter.def.json
  3008. msgctxt "small_feature_max_length label"
  3009. msgid "Small Feature Max Length"
  3010. msgstr "Kis funkció maximális hossza"
  3011. #: fdmprinter.def.json
  3012. msgctxt "small_feature_speed_factor label"
  3013. msgid "Small Feature Speed"
  3014. msgstr "Kis funkció sebesség"
  3015. #: fdmprinter.def.json
  3016. msgctxt "small_hole_max_size label"
  3017. msgid "Small Hole Max Size"
  3018. msgstr "Kis lyuk maximális mérete"
  3019. #: fdmprinter.def.json
  3020. #, fuzzy
  3021. msgctxt "cool_min_temperature label"
  3022. msgid "Small Layer Printing Temperature"
  3023. msgstr "Befejező nyomtatási hőmérséklet"
  3024. #: fdmprinter.def.json
  3025. msgctxt "small_skin_width label"
  3026. msgid "Small Top/Bottom Width"
  3027. msgstr ""
  3028. #: fdmprinter.def.json
  3029. msgctxt "small_feature_speed_factor_0 description"
  3030. 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."
  3031. msgstr ""
  3032. #: fdmprinter.def.json
  3033. msgctxt "small_feature_speed_factor description"
  3034. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3035. msgstr ""
  3036. #: fdmprinter.def.json
  3037. msgctxt "small_skin_width description"
  3038. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  3039. msgstr ""
  3040. #: fdmprinter.def.json
  3041. msgctxt "brim_smart_ordering label"
  3042. msgid "Smart Brim"
  3043. msgstr ""
  3044. #: fdmprinter.def.json
  3045. msgctxt "z_seam_corner option z_seam_corner_weighted"
  3046. msgid "Smart Hiding"
  3047. msgstr "Okos rejtés"
  3048. #: fdmprinter.def.json
  3049. msgctxt "smooth_spiralized_contours label"
  3050. msgid "Smooth Spiralized Contours"
  3051. msgstr "Sima, spirális kontúrok"
  3052. #: fdmprinter.def.json
  3053. msgctxt "smooth_spiralized_contours description"
  3054. 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."
  3055. 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."
  3056. #: fdmprinter.def.json
  3057. msgctxt "retraction_extra_prime_amount description"
  3058. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  3059. 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."
  3060. #: fdmprinter.def.json
  3061. msgctxt "wipe_retraction_extra_prime_amount description"
  3062. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  3063. msgstr "Valamennyi anyag elszivároghat a törlési művelet során, ami itt kompenzálható."
  3064. #: fdmprinter.def.json
  3065. msgctxt "blackmagic label"
  3066. msgid "Special Modes"
  3067. msgstr "Különleges módok"
  3068. #: fdmprinter.def.json
  3069. msgctxt "speed description"
  3070. msgid "Speed"
  3071. msgstr "Sebesség"
  3072. #: fdmprinter.def.json
  3073. msgctxt "speed label"
  3074. msgid "Speed"
  3075. msgstr "Sebesség"
  3076. #: fdmprinter.def.json
  3077. msgctxt "wipe_hop_speed description"
  3078. msgid "Speed to move the z-axis during the hop."
  3079. msgstr "Az emelési mozgáskor a Z tengely sebessége."
  3080. #: fdmprinter.def.json
  3081. msgctxt "magic_spiralize label"
  3082. msgid "Spiralize Outer Contour"
  3083. msgstr "Külső kontúr spiralizálása"
  3084. #: fdmprinter.def.json
  3085. msgctxt "magic_spiralize description"
  3086. 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."
  3087. 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."
  3088. #: fdmprinter.def.json
  3089. msgctxt "material_standby_temperature label"
  3090. msgid "Standby Temperature"
  3091. msgstr "Készenléti hőmérséklet"
  3092. #: fdmprinter.def.json
  3093. msgctxt "machine_start_gcode label"
  3094. msgid "Start G-code"
  3095. msgstr "Induló g-kód"
  3096. #: fdmprinter.def.json
  3097. msgctxt "z_seam_type description"
  3098. 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."
  3099. 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."
  3100. #: fdmprinter.def.json
  3101. msgctxt "machine_steps_per_mm_e label"
  3102. msgid "Steps per Millimeter (E)"
  3103. msgstr "Lépés per milliméter (E)"
  3104. #: fdmprinter.def.json
  3105. msgctxt "machine_steps_per_mm_x label"
  3106. msgid "Steps per Millimeter (X)"
  3107. msgstr "Lépés per milliméter (X)"
  3108. #: fdmprinter.def.json
  3109. msgctxt "machine_steps_per_mm_y label"
  3110. msgid "Steps per Millimeter (Y)"
  3111. msgstr "Lépés per milliméter (Y)"
  3112. #: fdmprinter.def.json
  3113. msgctxt "machine_steps_per_mm_z label"
  3114. msgid "Steps per Millimeter (Z)"
  3115. msgstr "Lépés per milliméter (Z)"
  3116. #: fdmprinter.def.json
  3117. msgctxt "support description"
  3118. msgid "Support"
  3119. msgstr "Támaszték"
  3120. #: fdmprinter.def.json
  3121. msgctxt "support label"
  3122. msgid "Support"
  3123. msgstr "Támaszték"
  3124. #: fdmprinter.def.json
  3125. msgctxt "acceleration_support label"
  3126. msgid "Support Acceleration"
  3127. msgstr "Támaszték gyorsulás"
  3128. #: fdmprinter.def.json
  3129. msgctxt "support_bottom_distance label"
  3130. msgid "Support Bottom Distance"
  3131. msgstr "Támasz alsó távolság"
  3132. #: fdmprinter.def.json
  3133. #, fuzzy
  3134. msgctxt "support_bottom_wall_count label"
  3135. msgid "Support Bottom Wall Line Count"
  3136. msgstr "Támasz falak száma"
  3137. #: fdmprinter.def.json
  3138. msgctxt "support_brim_line_count label"
  3139. msgid "Support Brim Line Count"
  3140. msgstr "Támasz perem vonalak száma"
  3141. #: fdmprinter.def.json
  3142. msgctxt "support_brim_width label"
  3143. msgid "Support Brim Width"
  3144. msgstr "Támasz perem szélesség"
  3145. #: fdmprinter.def.json
  3146. msgctxt "support_zag_skip_count label"
  3147. msgid "Support Chunk Line Count"
  3148. msgstr "Törésvonalak száma"
  3149. #: fdmprinter.def.json
  3150. msgctxt "support_skip_zag_per_mm label"
  3151. msgid "Support Chunk Size"
  3152. msgstr "Törés méret"
  3153. #: fdmprinter.def.json
  3154. msgctxt "support_infill_rate label"
  3155. msgid "Support Density"
  3156. msgstr "Támasz sűrűség"
  3157. #: fdmprinter.def.json
  3158. msgctxt "support_xy_overrides_z label"
  3159. msgid "Support Distance Priority"
  3160. msgstr "Támasz távolság elsődlegesség"
  3161. #: fdmprinter.def.json
  3162. msgctxt "support_extruder_nr label"
  3163. msgid "Support Extruder"
  3164. msgstr "Támasz extrúder"
  3165. #: fdmprinter.def.json
  3166. msgctxt "acceleration_support_bottom label"
  3167. msgid "Support Floor Acceleration"
  3168. msgstr "Támasz alapzat gyorsulás"
  3169. #: fdmprinter.def.json
  3170. msgctxt "support_bottom_density label"
  3171. msgid "Support Floor Density"
  3172. msgstr "Alsó interfész sűrűség"
  3173. #: fdmprinter.def.json
  3174. msgctxt "support_bottom_extruder_nr label"
  3175. msgid "Support Floor Extruder"
  3176. msgstr "Támasz fedél extruder"
  3177. #: fdmprinter.def.json
  3178. msgctxt "support_bottom_material_flow label"
  3179. msgid "Support Floor Flow"
  3180. msgstr "Támasz alsó áramlás"
  3181. #: fdmprinter.def.json
  3182. msgctxt "support_bottom_offset label"
  3183. msgid "Support Floor Horizontal Expansion"
  3184. msgstr "Interfészaljzat vízszintes bővítés"
  3185. #: fdmprinter.def.json
  3186. msgctxt "jerk_support_bottom label"
  3187. msgid "Support Floor Jerk"
  3188. msgstr "Támasz alapzat löket"
  3189. #: fdmprinter.def.json
  3190. msgctxt "support_bottom_angles label"
  3191. msgid "Support Floor Line Directions"
  3192. msgstr "Alsó interfész irány"
  3193. #: fdmprinter.def.json
  3194. msgctxt "support_bottom_line_distance label"
  3195. msgid "Support Floor Line Distance"
  3196. msgstr "Alsó interfész vonal távolság"
  3197. #: fdmprinter.def.json
  3198. msgctxt "support_bottom_line_width label"
  3199. msgid "Support Floor Line Width"
  3200. msgstr "Támasz padlóvonal szélesség"
  3201. #: fdmprinter.def.json
  3202. msgctxt "support_bottom_pattern label"
  3203. msgid "Support Floor Pattern"
  3204. msgstr "Alsó interfész minta"
  3205. #: fdmprinter.def.json
  3206. msgctxt "speed_support_bottom label"
  3207. msgid "Support Floor Speed"
  3208. msgstr "Támasz alapzat sebesség"
  3209. #: fdmprinter.def.json
  3210. msgctxt "support_bottom_height label"
  3211. msgid "Support Floor Thickness"
  3212. msgstr "Alsó interfész vastagság"
  3213. #: fdmprinter.def.json
  3214. msgctxt "support_material_flow label"
  3215. msgid "Support Flow"
  3216. msgstr "Támasz áramlás"
  3217. #: fdmprinter.def.json
  3218. msgctxt "support_offset label"
  3219. msgid "Support Horizontal Expansion"
  3220. msgstr "Vízszintes támasz bővítés"
  3221. #: fdmprinter.def.json
  3222. msgctxt "acceleration_support_infill label"
  3223. msgid "Support Infill Acceleration"
  3224. msgstr "Támasz kitöltés gyorsulás"
  3225. #: fdmprinter.def.json
  3226. msgctxt "support_infill_extruder_nr label"
  3227. msgid "Support Infill Extruder"
  3228. msgstr "Támasz kitöltés extruder"
  3229. #: fdmprinter.def.json
  3230. msgctxt "jerk_support_infill label"
  3231. msgid "Support Infill Jerk"
  3232. msgstr "Támasz kitöltés löket"
  3233. #: fdmprinter.def.json
  3234. msgctxt "support_infill_sparse_thickness label"
  3235. msgid "Support Infill Layer Thickness"
  3236. msgstr "Támasz kitöltési rétegvastagság"
  3237. #: fdmprinter.def.json
  3238. msgctxt "support_infill_angles label"
  3239. msgid "Support Infill Line Directions"
  3240. msgstr "Támasz kitöltés iránya"
  3241. #: fdmprinter.def.json
  3242. msgctxt "speed_support_infill label"
  3243. msgid "Support Infill Speed"
  3244. msgstr "Támasz kitöltési sebesség"
  3245. #: fdmprinter.def.json
  3246. msgctxt "acceleration_support_interface label"
  3247. msgid "Support Interface Acceleration"
  3248. msgstr "Támasz interfész gyorsulás"
  3249. #: fdmprinter.def.json
  3250. msgctxt "support_interface_density label"
  3251. msgid "Support Interface Density"
  3252. msgstr "Interfész sűrűség"
  3253. #: fdmprinter.def.json
  3254. msgctxt "support_interface_extruder_nr label"
  3255. msgid "Support Interface Extruder"
  3256. msgstr "Támasz interfész extruder"
  3257. #: fdmprinter.def.json
  3258. msgctxt "support_interface_material_flow label"
  3259. msgid "Support Interface Flow"
  3260. msgstr "Támasz interfész áramlás"
  3261. #: fdmprinter.def.json
  3262. msgctxt "support_interface_offset label"
  3263. msgid "Support Interface Horizontal Expansion"
  3264. msgstr "Támasz interfész vízszintes bővítés"
  3265. #: fdmprinter.def.json
  3266. msgctxt "jerk_support_interface label"
  3267. msgid "Support Interface Jerk"
  3268. msgstr "Támasz interfész löket"
  3269. #: fdmprinter.def.json
  3270. msgctxt "support_interface_angles label"
  3271. msgid "Support Interface Line Directions"
  3272. msgstr "Támaszinterfész vonal irány"
  3273. #: fdmprinter.def.json
  3274. msgctxt "support_interface_line_width label"
  3275. msgid "Support Interface Line Width"
  3276. msgstr "Támasz interfész vonalszélesség"
  3277. #: fdmprinter.def.json
  3278. msgctxt "support_interface_pattern label"
  3279. msgid "Support Interface Pattern"
  3280. msgstr "Interfész minta"
  3281. #: fdmprinter.def.json
  3282. msgctxt "support_interface_priority label"
  3283. msgid "Support Interface Priority"
  3284. msgstr ""
  3285. #: fdmprinter.def.json
  3286. msgctxt "support_interface_skip_height label"
  3287. msgid "Support Interface Resolution"
  3288. msgstr "Interfész felosztás"
  3289. #: fdmprinter.def.json
  3290. msgctxt "speed_support_interface label"
  3291. msgid "Support Interface Speed"
  3292. msgstr "Támasz interfész sebesség"
  3293. #: fdmprinter.def.json
  3294. msgctxt "support_interface_height label"
  3295. msgid "Support Interface Thickness"
  3296. msgstr "Interfész vastagság"
  3297. #: fdmprinter.def.json
  3298. #, fuzzy
  3299. msgctxt "support_interface_wall_count label"
  3300. msgid "Support Interface Wall Line Count"
  3301. msgstr "Támasz falak száma"
  3302. #: fdmprinter.def.json
  3303. msgctxt "jerk_support label"
  3304. msgid "Support Jerk"
  3305. msgstr "Támasz löket"
  3306. #: fdmprinter.def.json
  3307. msgctxt "support_join_distance label"
  3308. msgid "Support Join Distance"
  3309. msgstr "Támasz kapcsolódási távolság"
  3310. #: fdmprinter.def.json
  3311. msgctxt "support_line_distance label"
  3312. msgid "Support Line Distance"
  3313. msgstr "Támasz vonal távolság"
  3314. #: fdmprinter.def.json
  3315. msgctxt "support_line_width label"
  3316. msgid "Support Line Width"
  3317. msgstr "Támasz vonalszélesség"
  3318. #: fdmprinter.def.json
  3319. msgctxt "support_mesh label"
  3320. msgid "Support Mesh"
  3321. msgstr "Támasz háló"
  3322. #: fdmprinter.def.json
  3323. msgctxt "support_angle label"
  3324. msgid "Support Overhang Angle"
  3325. msgstr "Támasz túlnyúlási szög"
  3326. #: fdmprinter.def.json
  3327. msgctxt "support_pattern label"
  3328. msgid "Support Pattern"
  3329. msgstr "Támasz minta"
  3330. #: fdmprinter.def.json
  3331. msgctxt "support_type label"
  3332. msgid "Support Placement"
  3333. msgstr "Támasz elhelyezés"
  3334. #: fdmprinter.def.json
  3335. msgctxt "acceleration_support_roof label"
  3336. msgid "Support Roof Acceleration"
  3337. msgstr "Támasz fedél gyorsulás"
  3338. #: fdmprinter.def.json
  3339. msgctxt "support_roof_density label"
  3340. msgid "Support Roof Density"
  3341. msgstr "Felső interfész sűrűség"
  3342. #: fdmprinter.def.json
  3343. msgctxt "support_roof_extruder_nr label"
  3344. msgid "Support Roof Extruder"
  3345. msgstr "Támasz alapzat extruder"
  3346. #: fdmprinter.def.json
  3347. msgctxt "support_roof_material_flow label"
  3348. msgid "Support Roof Flow"
  3349. msgstr "Támasz felső áramlás"
  3350. #: fdmprinter.def.json
  3351. msgctxt "support_roof_offset label"
  3352. msgid "Support Roof Horizontal Expansion"
  3353. msgstr "Interfészfedél vízszintes bővítés"
  3354. #: fdmprinter.def.json
  3355. msgctxt "jerk_support_roof label"
  3356. msgid "Support Roof Jerk"
  3357. msgstr "Támasz fedél löket"
  3358. #: fdmprinter.def.json
  3359. msgctxt "support_roof_angles label"
  3360. msgid "Support Roof Line Directions"
  3361. msgstr "Felső interfész irány"
  3362. #: fdmprinter.def.json
  3363. msgctxt "support_roof_line_distance label"
  3364. msgid "Support Roof Line Distance"
  3365. msgstr "Felső interfész vonal távolság"
  3366. #: fdmprinter.def.json
  3367. msgctxt "support_roof_line_width label"
  3368. msgid "Support Roof Line Width"
  3369. msgstr "Támasz tetővonal szélesség"
  3370. #: fdmprinter.def.json
  3371. msgctxt "support_roof_pattern label"
  3372. msgid "Support Roof Pattern"
  3373. msgstr "Felső interfész minta"
  3374. #: fdmprinter.def.json
  3375. msgctxt "speed_support_roof label"
  3376. msgid "Support Roof Speed"
  3377. msgstr "Támasz fedél sebesség"
  3378. #: fdmprinter.def.json
  3379. msgctxt "support_roof_height label"
  3380. msgid "Support Roof Thickness"
  3381. msgstr "Felső interfész vastagság"
  3382. #: fdmprinter.def.json
  3383. #, fuzzy
  3384. msgctxt "support_roof_wall_count label"
  3385. msgid "Support Roof Wall Line Count"
  3386. msgstr "Támasz falak száma"
  3387. #: fdmprinter.def.json
  3388. msgctxt "speed_support label"
  3389. msgid "Support Speed"
  3390. msgstr "Támasz sebesség"
  3391. #: fdmprinter.def.json
  3392. msgctxt "support_bottom_stair_step_height label"
  3393. msgid "Support Stair Step Height"
  3394. msgstr "Támasz lépcső magasság"
  3395. #: fdmprinter.def.json
  3396. msgctxt "support_bottom_stair_step_width label"
  3397. msgid "Support Stair Step Maximum Width"
  3398. msgstr "Támasz lépcső maximális szélesség"
  3399. #: fdmprinter.def.json
  3400. msgctxt "support_bottom_stair_step_min_slope label"
  3401. msgid "Support Stair Step Minimum Slope Angle"
  3402. msgstr ""
  3403. #: fdmprinter.def.json
  3404. msgctxt "support_structure label"
  3405. msgid "Support Structure"
  3406. msgstr ""
  3407. #: fdmprinter.def.json
  3408. msgctxt "support_top_distance label"
  3409. msgid "Support Top Distance"
  3410. msgstr "Támasz felső távolság"
  3411. #: fdmprinter.def.json
  3412. msgctxt "support_wall_count label"
  3413. msgid "Support Wall Line Count"
  3414. msgstr "Támasz falak száma"
  3415. #: fdmprinter.def.json
  3416. msgctxt "support_xy_distance label"
  3417. msgid "Support X/Y Distance"
  3418. msgstr "Támasz X/Y távolság"
  3419. #: fdmprinter.def.json
  3420. msgctxt "support_z_distance label"
  3421. msgid "Support Z Distance"
  3422. msgstr "Támasz Z távolság"
  3423. #: fdmprinter.def.json
  3424. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  3425. msgid "Support lines preferred"
  3426. msgstr ""
  3427. #: fdmprinter.def.json
  3428. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  3429. msgid "Support preferred"
  3430. msgstr ""
  3431. #: fdmprinter.def.json
  3432. msgctxt "support_supported_skin_fan_speed label"
  3433. msgid "Supported Skin Fan Speed"
  3434. msgstr "Kéreghűtés sebesség támogatás"
  3435. #: fdmprinter.def.json
  3436. msgctxt "magic_mesh_surface_mode option surface"
  3437. msgid "Surface"
  3438. msgstr "Felület"
  3439. #: fdmprinter.def.json
  3440. msgctxt "material_surface_energy label"
  3441. msgid "Surface Energy"
  3442. msgstr "Felületi energia"
  3443. #: fdmprinter.def.json
  3444. msgctxt "magic_mesh_surface_mode label"
  3445. msgid "Surface Mode"
  3446. msgstr "Felszín mód"
  3447. #: fdmprinter.def.json
  3448. msgctxt "material_adhesion_tendency description"
  3449. msgid "Surface adhesion tendency."
  3450. msgstr "A felület tapadási jellemzője."
  3451. #: fdmprinter.def.json
  3452. msgctxt "material_surface_energy description"
  3453. msgid "Surface energy."
  3454. msgstr "Felületi energia."
  3455. #: fdmprinter.def.json
  3456. msgctxt "brim_smart_ordering description"
  3457. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3458. msgstr ""
  3459. #: fdmprinter.def.json
  3460. msgctxt "alternate_carve_order description"
  3461. 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."
  3462. 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."
  3463. #: fdmprinter.def.json
  3464. msgctxt "adaptive_layer_height_threshold description"
  3465. 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."
  3466. msgstr ""
  3467. #: fdmprinter.def.json
  3468. msgctxt "layer_start_x description"
  3469. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3470. msgstr "Az az X koordináta, melynek a közelében található a rétegek X nyomtatási kezdőpontja."
  3471. #: fdmprinter.def.json
  3472. msgctxt "z_seam_x description"
  3473. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3474. msgstr "Az az X koordináta, ahol a rétegek nyomtatását kezdeni fogja."
  3475. #: fdmprinter.def.json
  3476. msgctxt "extruder_prime_pos_x description"
  3477. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3478. 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."
  3479. #: fdmprinter.def.json
  3480. msgctxt "layer_start_y description"
  3481. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3482. msgstr "Az az Y koordináta, melynek a közelében található a rétegek Y nyomtatási kezdőpontja."
  3483. #: fdmprinter.def.json
  3484. msgctxt "z_seam_y description"
  3485. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3486. msgstr "Az az Y koordináta, ahol a rétegek nyomtatását kezdeni fogja."
  3487. #: fdmprinter.def.json
  3488. msgctxt "extruder_prime_pos_y description"
  3489. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3490. 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."
  3491. #: fdmprinter.def.json
  3492. msgctxt "extruder_prime_pos_z description"
  3493. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3494. msgstr "Az a Z koordináta pont, ahol a fej, illetve a fúvóka áll, a nyomtatási folyamat megkezdésekor."
  3495. #: fdmprinter.def.json
  3496. msgctxt "acceleration_print_layer_0 description"
  3497. msgid "The acceleration during the printing of the initial layer."
  3498. msgstr "Az a gyorsulási érték, amit az első réteg nyomtatása alatt használ."
  3499. #: fdmprinter.def.json
  3500. msgctxt "acceleration_layer_0 description"
  3501. msgid "The acceleration for the initial layer."
  3502. msgstr "A legelső rétegnél használt gyorsulási érték."
  3503. #: fdmprinter.def.json
  3504. msgctxt "acceleration_travel_layer_0 description"
  3505. msgid "The acceleration for travel moves in the initial layer."
  3506. msgstr "A kezdő réteg nyomtatása alatt, a fej utaztatásához használt gyorsulási érték."
  3507. #: fdmprinter.def.json
  3508. msgctxt "jerk_travel_layer_0 description"
  3509. msgid "The acceleration for travel moves in the initial layer."
  3510. msgstr "Az utazási mozgás gyorsítása a kezdő rétegnél."
  3511. #: fdmprinter.def.json
  3512. msgctxt "acceleration_wall_x description"
  3513. msgid "The acceleration with which all inner walls are printed."
  3514. msgstr "A belső falak nyomtatása alatt használt gyorsulás."
  3515. #: fdmprinter.def.json
  3516. msgctxt "acceleration_infill description"
  3517. msgid "The acceleration with which infill is printed."
  3518. msgstr "A kitöltés nyomtatása alatt használt gyorsulási érték."
  3519. #: fdmprinter.def.json
  3520. msgctxt "acceleration_ironing description"
  3521. msgid "The acceleration with which ironing is performed."
  3522. msgstr "A vasalás közben használt gyorsulási érték."
  3523. #: fdmprinter.def.json
  3524. msgctxt "acceleration_print description"
  3525. msgid "The acceleration with which printing happens."
  3526. msgstr "A nyomtatás közbeni gyorsulás."
  3527. #: fdmprinter.def.json
  3528. msgctxt "raft_base_acceleration description"
  3529. msgid "The acceleration with which the base raft layer is printed."
  3530. msgstr "A tutajalap nyomtatásához kapcsolódó gyorsulási érték."
  3531. #: fdmprinter.def.json
  3532. msgctxt "acceleration_support_bottom description"
  3533. 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."
  3534. 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."
  3535. #: fdmprinter.def.json
  3536. msgctxt "acceleration_support_infill description"
  3537. msgid "The acceleration with which the infill of support is printed."
  3538. msgstr "A támaszok kitöltésének nyomtatása alatt használt gyorsulás."
  3539. #: fdmprinter.def.json
  3540. msgctxt "raft_interface_acceleration description"
  3541. msgid "The acceleration with which the middle raft layer is printed."
  3542. msgstr "A tutaj középső rétegeinek nyomtatásához kapcsolódó gyorsulási érték."
  3543. #: fdmprinter.def.json
  3544. msgctxt "acceleration_wall_0 description"
  3545. msgid "The acceleration with which the outermost walls are printed."
  3546. msgstr "A külső falak nyomtatása alatt használt gyorsulás."
  3547. #: fdmprinter.def.json
  3548. msgctxt "acceleration_prime_tower description"
  3549. msgid "The acceleration with which the prime tower is printed."
  3550. msgstr "Az előtorony nyomtatása során használt gyorsulás."
  3551. #: fdmprinter.def.json
  3552. msgctxt "raft_acceleration description"
  3553. msgid "The acceleration with which the raft is printed."
  3554. msgstr "A tutaj nyomtatásához kapcsolódó gyorsulási érték."
  3555. #: fdmprinter.def.json
  3556. msgctxt "acceleration_support_interface description"
  3557. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3558. 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."
  3559. #: fdmprinter.def.json
  3560. msgctxt "acceleration_support_roof description"
  3561. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3562. 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."
  3563. #: fdmprinter.def.json
  3564. msgctxt "acceleration_skirt_brim description"
  3565. 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."
  3566. 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."
  3567. #: fdmprinter.def.json
  3568. msgctxt "acceleration_support description"
  3569. msgid "The acceleration with which the support structure is printed."
  3570. msgstr "A támaszok nyomtatása alatt használt gyorsulás."
  3571. #: fdmprinter.def.json
  3572. msgctxt "raft_surface_acceleration description"
  3573. msgid "The acceleration with which the top raft layers are printed."
  3574. msgstr "A tutajfedél nyomtatásához kapcsolódó gyorsulási érték."
  3575. #: fdmprinter.def.json
  3576. msgctxt "acceleration_wall description"
  3577. msgid "The acceleration with which the walls are printed."
  3578. msgstr "A falak nyomtatása alatt használt gyorsulás."
  3579. #: fdmprinter.def.json
  3580. msgctxt "acceleration_roofing description"
  3581. msgid "The acceleration with which top surface skin layers are printed."
  3582. msgstr "A legfelső, záró felületi rétegek nyomtatása alatt használt gyorsulás."
  3583. #: fdmprinter.def.json
  3584. msgctxt "acceleration_topbottom description"
  3585. msgid "The acceleration with which top/bottom layers are printed."
  3586. msgstr "Az alsó és felső rétegek nyomtatása alatt használt gyorsulás."
  3587. #: fdmprinter.def.json
  3588. msgctxt "acceleration_travel description"
  3589. msgid "The acceleration with which travel moves are made."
  3590. msgstr "A fej utaztatása során használt gyorsulás."
  3591. #: fdmprinter.def.json
  3592. msgctxt "ironing_flow description"
  3593. 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."
  3594. 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."
  3595. #: fdmprinter.def.json
  3596. msgctxt "infill_overlap description"
  3597. 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."
  3598. 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."
  3599. #: fdmprinter.def.json
  3600. msgctxt "infill_overlap_mm description"
  3601. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3602. 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."
  3603. #: fdmprinter.def.json
  3604. msgctxt "switch_extruder_retraction_amount description"
  3605. 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."
  3606. 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."
  3607. #: fdmprinter.def.json
  3608. msgctxt "machine_nozzle_expansion_angle description"
  3609. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3610. 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."
  3611. #: fdmprinter.def.json
  3612. msgctxt "support_tower_roof_angle description"
  3613. 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."
  3614. 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."
  3615. #: fdmprinter.def.json
  3616. msgctxt "mold_angle description"
  3617. 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."
  3618. 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."
  3619. #: fdmprinter.def.json
  3620. msgctxt "support_tree_branch_diameter_angle description"
  3621. 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."
  3622. 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."
  3623. #: fdmprinter.def.json
  3624. msgctxt "support_conical_angle description"
  3625. 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."
  3626. 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."
  3627. #: fdmprinter.def.json
  3628. msgctxt "magic_fuzzy_skin_point_density description"
  3629. 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."
  3630. 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."
  3631. #: fdmprinter.def.json
  3632. msgctxt "magic_fuzzy_skin_point_dist description"
  3633. 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."
  3634. 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."
  3635. #: fdmprinter.def.json
  3636. msgctxt "machine_acceleration description"
  3637. msgid "The default acceleration of print head movement."
  3638. msgstr "A nyomtatófej mozgásának alapértelmezett gyorsulása."
  3639. #: fdmprinter.def.json
  3640. msgctxt "default_material_print_temperature description"
  3641. 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"
  3642. 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"
  3643. #: fdmprinter.def.json
  3644. msgctxt "default_material_bed_temperature description"
  3645. 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"
  3646. 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"
  3647. #: fdmprinter.def.json
  3648. msgctxt "bridge_skin_density description"
  3649. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3650. 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."
  3651. #: fdmprinter.def.json
  3652. msgctxt "support_bottom_density description"
  3653. 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."
  3654. 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."
  3655. #: fdmprinter.def.json
  3656. msgctxt "support_roof_density description"
  3657. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3658. 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."
  3659. #: fdmprinter.def.json
  3660. msgctxt "bridge_skin_density_2 description"
  3661. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3662. 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."
  3663. #: fdmprinter.def.json
  3664. msgctxt "bridge_skin_density_3 description"
  3665. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3666. 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."
  3667. #: fdmprinter.def.json
  3668. msgctxt "machine_depth description"
  3669. msgid "The depth (Y-direction) of the printable area."
  3670. msgstr "A nyomtatási terület mélysége (Y-irány)."
  3671. #: fdmprinter.def.json
  3672. msgctxt "support_tower_diameter description"
  3673. msgid "The diameter of a special tower."
  3674. msgstr "A speciális támasz torony átméröje."
  3675. #: fdmprinter.def.json
  3676. msgctxt "support_tree_branch_diameter description"
  3677. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3678. 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."
  3679. #: fdmprinter.def.json
  3680. msgctxt "support_tree_tip_diameter description"
  3681. msgid "The diameter of the top of the tip of the branches of tree support."
  3682. msgstr ""
  3683. #: fdmprinter.def.json
  3684. msgctxt "machine_feeder_wheel_diameter description"
  3685. msgid "The diameter of the wheel that drives the material in the feeder."
  3686. msgstr "A nyomtatószál adagoló kerék átmérője az extruderben."
  3687. #: fdmprinter.def.json
  3688. msgctxt "support_tree_max_diameter description"
  3689. 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."
  3690. msgstr ""
  3691. #: fdmprinter.def.json
  3692. msgctxt "adaptive_layer_height_variation_step description"
  3693. msgid "The difference in height of the next layer height compared to the previous one."
  3694. msgstr "A következő réteg magasságának különbsége az előzőhöz képest."
  3695. #: fdmprinter.def.json
  3696. msgctxt "ironing_line_spacing description"
  3697. msgid "The distance between the lines of ironing."
  3698. msgstr "A vasalási vonalak közötti távolság."
  3699. #: fdmprinter.def.json
  3700. msgctxt "travel_avoid_distance description"
  3701. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3702. msgstr "A fúvóka és a már kinyomtatott részek közötti távolság, ha kerülő útvonalakat használunk."
  3703. #: fdmprinter.def.json
  3704. msgctxt "raft_base_line_spacing description"
  3705. 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."
  3706. 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."
  3707. #: fdmprinter.def.json
  3708. msgctxt "raft_interface_line_spacing description"
  3709. 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."
  3710. 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."
  3711. #: fdmprinter.def.json
  3712. msgctxt "raft_surface_line_spacing description"
  3713. 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."
  3714. 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."
  3715. #: fdmprinter.def.json
  3716. msgctxt "interlocking_depth description"
  3717. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3718. msgstr ""
  3719. #: fdmprinter.def.json
  3720. msgctxt "brim_width description"
  3721. 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."
  3722. 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."
  3723. #: fdmprinter.def.json
  3724. #, fuzzy
  3725. msgctxt "interlocking_boundary_avoidance description"
  3726. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3727. 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."
  3728. #: fdmprinter.def.json
  3729. msgctxt "machine_heat_zone_length description"
  3730. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3731. 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."
  3732. #: fdmprinter.def.json
  3733. msgctxt "bottom_skin_expand_distance description"
  3734. 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."
  3735. 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."
  3736. #: fdmprinter.def.json
  3737. msgctxt "expand_skins_expand_distance description"
  3738. 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."
  3739. 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."
  3740. #: fdmprinter.def.json
  3741. msgctxt "top_skin_expand_distance description"
  3742. 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."
  3743. 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."
  3744. #: fdmprinter.def.json
  3745. msgctxt "wipe_move_distance description"
  3746. msgid "The distance to move the head back and forth across the brush."
  3747. msgstr "A fej oda-vissza mozgatásának távolsága a kefén."
  3748. #: fdmprinter.def.json
  3749. msgctxt "lightning_infill_prune_angle description"
  3750. 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."
  3751. msgstr ""
  3752. #: fdmprinter.def.json
  3753. msgctxt "material_extrusion_cool_down_speed description"
  3754. 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."
  3755. 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."
  3756. #: fdmprinter.def.json
  3757. msgctxt "support_extruder_nr_layer_0 description"
  3758. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3759. 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."
  3760. #: fdmprinter.def.json
  3761. msgctxt "raft_base_extruder_nr description"
  3762. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3763. msgstr ""
  3764. #: fdmprinter.def.json
  3765. msgctxt "support_bottom_extruder_nr description"
  3766. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3767. msgstr "Az az extruder, ami a támaszok fedelét nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3768. #: fdmprinter.def.json
  3769. msgctxt "support_infill_extruder_nr description"
  3770. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3771. msgstr "Az az extruder szerelvény, amivel a támasztékok kitöltését nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk."
  3772. #: fdmprinter.def.json
  3773. msgctxt "raft_interface_extruder_nr description"
  3774. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3775. msgstr ""
  3776. #: fdmprinter.def.json
  3777. msgctxt "support_interface_extruder_nr description"
  3778. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3779. msgstr "Az az extruder, ami a támaszok alját és tetejét nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3780. #: fdmprinter.def.json
  3781. msgctxt "support_roof_extruder_nr description"
  3782. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3783. msgstr "Az az extruder, ami a támaszok alját nyomtatja.Ezt multi-extruderes gépeken használhatjuk."
  3784. #: fdmprinter.def.json
  3785. msgctxt "skirt_brim_extruder_nr description"
  3786. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3787. msgstr ""
  3788. #: fdmprinter.def.json
  3789. msgctxt "adhesion_extruder_nr description"
  3790. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3791. 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ó."
  3792. #: fdmprinter.def.json
  3793. msgctxt "support_extruder_nr description"
  3794. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3795. msgstr "Az az extruder szerelvény, amivel a támasztékokat nyomtatjuk. Ezt multi-extruderes gépeken használhatjuk."
  3796. #: fdmprinter.def.json
  3797. msgctxt "raft_surface_extruder_nr description"
  3798. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3799. msgstr ""
  3800. #: fdmprinter.def.json
  3801. msgctxt "infill_extruder_nr description"
  3802. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3803. msgstr "Az az extruder szerelvény, ami a kitöltést nyomtatja. Ez csak multi-extruderes nyomtatóknál használható."
  3804. #: fdmprinter.def.json
  3805. msgctxt "wall_x_extruder_nr description"
  3806. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3807. msgstr "Az az extruder, amit a belső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3808. #: fdmprinter.def.json
  3809. msgctxt "wall_0_extruder_nr description"
  3810. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3811. msgstr "Az az extruder, amit a külső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3812. #: fdmprinter.def.json
  3813. msgctxt "top_bottom_extruder_nr description"
  3814. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3815. 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."
  3816. #: fdmprinter.def.json
  3817. msgctxt "roofing_extruder_nr description"
  3818. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3819. 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."
  3820. #: fdmprinter.def.json
  3821. msgctxt "wall_extruder_nr description"
  3822. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3823. msgstr "Az az extruder, amit a falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk."
  3824. #: fdmprinter.def.json
  3825. msgctxt "raft_base_fan_speed description"
  3826. msgid "The fan speed for the base raft layer."
  3827. msgstr "A hűtőventillátor sebessége a tutajalap rétegeinek nyomtatásakor."
  3828. #: fdmprinter.def.json
  3829. msgctxt "raft_interface_fan_speed description"
  3830. msgid "The fan speed for the middle raft layer."
  3831. msgstr "A hűtőventillátor sebessége a tutaj középső rétegeinek nyomtatásakor."
  3832. #: fdmprinter.def.json
  3833. msgctxt "raft_fan_speed description"
  3834. msgid "The fan speed for the raft."
  3835. msgstr "A hűtőventillátor sebessége a tutaj nyomtatásakor."
  3836. #: fdmprinter.def.json
  3837. msgctxt "raft_surface_fan_speed description"
  3838. msgid "The fan speed for the top raft layers."
  3839. msgstr "A hűtőventillátor sebessége a tutaj felső rétegeinek nyomtatásakor."
  3840. #: fdmprinter.def.json
  3841. msgctxt "cross_infill_density_image description"
  3842. 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."
  3843. 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."
  3844. #: fdmprinter.def.json
  3845. msgctxt "cross_support_density_image description"
  3846. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3847. 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."
  3848. #: fdmprinter.def.json
  3849. msgctxt "speed_slowdown_layers description"
  3850. 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."
  3851. 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."
  3852. #: fdmprinter.def.json
  3853. msgctxt "raft_airgap description"
  3854. 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."
  3855. 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."
  3856. #: fdmprinter.def.json
  3857. msgctxt "machine_height description"
  3858. msgid "The height (Z-direction) of the printable area."
  3859. msgstr "A nyomtatási terület magassága (Z-irány)."
  3860. #: fdmprinter.def.json
  3861. msgctxt "mold_roof_height description"
  3862. msgid "The height above horizontal parts in your model which to print mold."
  3863. msgstr "A modell vízszintes részeinek feletti magasság, amelyet formaként nyomtatunk."
  3864. #: fdmprinter.def.json
  3865. msgctxt "cool_fan_full_at_height description"
  3866. 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."
  3867. 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."
  3868. #: fdmprinter.def.json
  3869. msgctxt "gantry_height description"
  3870. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3871. 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)"
  3872. #: fdmprinter.def.json
  3873. msgctxt "machine_nozzle_head_distance description"
  3874. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3875. 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."
  3876. #: fdmprinter.def.json
  3877. msgctxt "retraction_hop_after_extruder_switch_height description"
  3878. msgid "The height difference when performing a Z Hop after extruder switch."
  3879. msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely extruder váltás után."
  3880. #: fdmprinter.def.json
  3881. msgctxt "retraction_hop description"
  3882. msgid "The height difference when performing a Z Hop."
  3883. msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely."
  3884. #: fdmprinter.def.json
  3885. msgctxt "wipe_hop_amount description"
  3886. msgid "The height difference when performing a Z Hop."
  3887. msgstr "A magasság, amivel a Z tenhelyt megemeljük."
  3888. #: fdmprinter.def.json
  3889. msgctxt "layer_height description"
  3890. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3891. 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."
  3892. #: fdmprinter.def.json
  3893. msgctxt "gradual_infill_step_height description"
  3894. msgid "The height of infill of a given density before switching to half the density."
  3895. msgstr "Az a kitöltési magasság, amit elérve a kitöltési sűrűség lefeleződik."
  3896. #: fdmprinter.def.json
  3897. msgctxt "gradual_support_infill_step_height description"
  3898. msgid "The height of support infill of a given density before switching to half the density."
  3899. msgstr "A támaszkitöltés azon magassága, ahol a sűrűség feleződni fog."
  3900. #: fdmprinter.def.json
  3901. msgctxt "interlocking_beam_layer_count description"
  3902. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3903. msgstr ""
  3904. #: fdmprinter.def.json
  3905. msgctxt "interlocking_orientation description"
  3906. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3907. msgstr ""
  3908. #: fdmprinter.def.json
  3909. msgctxt "layer_height_0 description"
  3910. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3911. msgstr "A kezdő réteg magassága mm-ben. A vastagabb kezdőréteg megkönnyíti a tapadást a tárgyasztalhoz."
  3912. #: fdmprinter.def.json
  3913. msgctxt "support_bottom_stair_step_height description"
  3914. 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."
  3915. 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."
  3916. #: fdmprinter.def.json
  3917. msgctxt "brim_gap description"
  3918. 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."
  3919. msgstr ""
  3920. #: fdmprinter.def.json
  3921. msgctxt "skirt_gap description"
  3922. msgid ""
  3923. "The horizontal distance between the skirt and the first layer of the print.\n"
  3924. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3925. msgstr ""
  3926. "A szoknya vízszintes távolsága a modell első rétegének külső szélétől. \n"
  3927. "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."
  3928. #: fdmprinter.def.json
  3929. msgctxt "lightning_infill_straightening_angle description"
  3930. 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."
  3931. msgstr ""
  3932. #: fdmprinter.def.json
  3933. msgctxt "infill_offset_x description"
  3934. msgid "The infill pattern is moved this distance along the X axis."
  3935. msgstr "A kitöltési minta eltolása az X tengely mentén."
  3936. #: fdmprinter.def.json
  3937. msgctxt "infill_offset_y description"
  3938. msgid "The infill pattern is moved this distance along the Y axis."
  3939. msgstr "A kitöltési minta eltolása az Y tengely mentén."
  3940. #: fdmprinter.def.json
  3941. msgctxt "machine_nozzle_size description"
  3942. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3943. 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."
  3944. #: fdmprinter.def.json
  3945. msgctxt "raft_base_jerk description"
  3946. msgid "The jerk with which the base raft layer is printed."
  3947. msgstr "A tutajalap nyomtatásakor használt löket."
  3948. #: fdmprinter.def.json
  3949. msgctxt "raft_interface_jerk description"
  3950. msgid "The jerk with which the middle raft layer is printed."
  3951. msgstr "A tutaj középső rétegeinek nyomtatásakor használt löket."
  3952. #: fdmprinter.def.json
  3953. msgctxt "raft_jerk description"
  3954. msgid "The jerk with which the raft is printed."
  3955. msgstr "A tutaj nyomtatásakor használt löket."
  3956. #: fdmprinter.def.json
  3957. msgctxt "raft_surface_jerk description"
  3958. msgid "The jerk with which the top raft layers are printed."
  3959. msgstr "A tutajfedél nyomtatásakor használt löket."
  3960. #: fdmprinter.def.json
  3961. msgctxt "bottom_skin_preshrink description"
  3962. 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."
  3963. 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."
  3964. #: fdmprinter.def.json
  3965. msgctxt "skin_preshrink description"
  3966. 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."
  3967. 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."
  3968. #: fdmprinter.def.json
  3969. msgctxt "top_skin_preshrink description"
  3970. 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."
  3971. 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."
  3972. #: fdmprinter.def.json
  3973. msgctxt "cool_fan_full_layer description"
  3974. 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."
  3975. 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."
  3976. #: fdmprinter.def.json
  3977. msgctxt "cool_min_layer_time_fan_speed_max description"
  3978. 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."
  3979. 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é."
  3980. #: fdmprinter.def.json
  3981. msgctxt "retraction_amount description"
  3982. msgid "The length of material retracted during a retraction move."
  3983. msgstr "A visszahúzott anyag hossza visszahúzáskor."
  3984. #: fdmprinter.def.json
  3985. msgctxt "machine_buildplate_type description"
  3986. msgid "The material of the build plate installed on the printer."
  3987. msgstr "A gépre szerelt tárgyasztal anyaga."
  3988. #: fdmprinter.def.json
  3989. msgctxt "adaptive_layer_height_variation description"
  3990. msgid "The maximum allowed height different from the base layer height."
  3991. msgstr "Az alapréteg magasságától eltérő legnagyobb megengedett réteg magasság."
  3992. #: fdmprinter.def.json
  3993. msgctxt "ooze_shield_angle description"
  3994. 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."
  3995. 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."
  3996. #: fdmprinter.def.json
  3997. msgctxt "conical_overhang_angle description"
  3998. 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."
  3999. 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."
  4000. #: fdmprinter.def.json
  4001. msgctxt "support_tree_angle description"
  4002. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  4003. msgstr ""
  4004. #: fdmprinter.def.json
  4005. msgctxt "conical_overhang_hole_size description"
  4006. 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."
  4007. msgstr ""
  4008. #: fdmprinter.def.json
  4009. msgctxt "meshfix_maximum_deviation description"
  4010. 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."
  4011. 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ú."
  4012. #: fdmprinter.def.json
  4013. msgctxt "support_join_distance description"
  4014. 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."
  4015. 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."
  4016. #: fdmprinter.def.json
  4017. msgctxt "flow_rate_max_extrusion_offset description"
  4018. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4019. msgstr ""
  4020. #: fdmprinter.def.json
  4021. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4022. 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."
  4023. msgstr ""
  4024. #: fdmprinter.def.json
  4025. msgctxt "jerk_print_layer_0 description"
  4026. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  4027. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő réteg nyomtatása alatt."
  4028. #: fdmprinter.def.json
  4029. msgctxt "jerk_print description"
  4030. msgid "The maximum instantaneous velocity change of the print head."
  4031. msgstr "A maximális pillanatnyi sebességváltozás változtatása a nyomtatófej mozgására vonatkoztatva."
  4032. #: fdmprinter.def.json
  4033. msgctxt "jerk_ironing description"
  4034. msgid "The maximum instantaneous velocity change while performing ironing."
  4035. msgstr "A maximális löket, amivel megrántja a fejet vasalás közben."
  4036. #: fdmprinter.def.json
  4037. msgctxt "jerk_wall_x description"
  4038. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  4039. msgstr "A maximális pillanatnyi sebességváltozás változtatása a belső falak nyomtatása alatt."
  4040. #: fdmprinter.def.json
  4041. msgctxt "jerk_infill description"
  4042. msgid "The maximum instantaneous velocity change with which infill is printed."
  4043. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kitöltés nyomtatása alatt."
  4044. #: fdmprinter.def.json
  4045. msgctxt "jerk_support_bottom description"
  4046. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  4047. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó felületének nyomtatása alatt."
  4048. #: fdmprinter.def.json
  4049. msgctxt "jerk_support_infill description"
  4050. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  4051. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok kitöltésének nyomtatása alatt."
  4052. #: fdmprinter.def.json
  4053. msgctxt "jerk_wall_0 description"
  4054. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  4055. msgstr "A maximális pillanatnyi sebességváltozás változtatása a külső falak nyomtatása alatt."
  4056. #: fdmprinter.def.json
  4057. msgctxt "jerk_prime_tower description"
  4058. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  4059. msgstr "A maximális pillanatnyi sebességváltozás változtatása az előtorony nyomtatása alatt."
  4060. #: fdmprinter.def.json
  4061. msgctxt "jerk_support_interface description"
  4062. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  4063. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó és felső felületének nyomtatása alatt."
  4064. #: fdmprinter.def.json
  4065. msgctxt "jerk_support_roof description"
  4066. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  4067. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok felső felületének nyomtatása alatt."
  4068. #: fdmprinter.def.json
  4069. msgctxt "jerk_skirt_brim description"
  4070. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  4071. msgstr "A maximális pillanatnyi sebességváltozás változtatása a szoknya és a perem nyomtatása alatt."
  4072. #: fdmprinter.def.json
  4073. msgctxt "jerk_support description"
  4074. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  4075. msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok nyomtatása alatt."
  4076. #: fdmprinter.def.json
  4077. msgctxt "jerk_wall description"
  4078. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4079. msgstr "A maximális pillanatnyi sebességváltozás változtatása a falak nyomtatása alatt."
  4080. #: fdmprinter.def.json
  4081. msgctxt "jerk_roofing description"
  4082. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4083. msgstr "A maximális pillanatnyi sebességváltozás változtatása a felső záró felület nyomtatása alatt."
  4084. #: fdmprinter.def.json
  4085. msgctxt "jerk_topbottom description"
  4086. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4087. msgstr "A maximális pillanatnyi sebességváltozás változtatása az alsó/felső felületek nyomtatása alatt."
  4088. #: fdmprinter.def.json
  4089. msgctxt "jerk_travel description"
  4090. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4091. msgstr "A maximális pillanatnyi sebességváltozás változtatása a fej utazási mozgása alatt."
  4092. #: fdmprinter.def.json
  4093. msgctxt "machine_max_feedrate_x description"
  4094. msgid "The maximum speed for the motor of the X-direction."
  4095. msgstr "Az X motor maximális sebessége."
  4096. #: fdmprinter.def.json
  4097. msgctxt "machine_max_feedrate_y description"
  4098. msgid "The maximum speed for the motor of the Y-direction."
  4099. msgstr "Az Y motor maximális sebessége."
  4100. #: fdmprinter.def.json
  4101. msgctxt "machine_max_feedrate_z description"
  4102. msgid "The maximum speed for the motor of the Z-direction."
  4103. msgstr "A Z motor maximális sebessége."
  4104. #: fdmprinter.def.json
  4105. msgctxt "machine_max_feedrate_e description"
  4106. msgid "The maximum speed of the filament."
  4107. msgstr "A nyomtatószál maximális adagolási sebessége."
  4108. #: fdmprinter.def.json
  4109. msgctxt "support_bottom_stair_step_width description"
  4110. 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."
  4111. 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."
  4112. #: fdmprinter.def.json
  4113. msgctxt "mold_width description"
  4114. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4115. msgstr ""
  4116. #: fdmprinter.def.json
  4117. msgctxt "machine_minimum_feedrate description"
  4118. msgid "The minimal movement speed of the print head."
  4119. msgstr "A nyomtatófej minimális mozgási sebessége."
  4120. #: fdmprinter.def.json
  4121. msgctxt "material_initial_print_temperature description"
  4122. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4123. msgstr "Az a minimális hőmérséklet, ameddig fel kell melegedni a fejnek a nyomtatás megkezdéséhez."
  4124. #: fdmprinter.def.json
  4125. msgctxt "machine_min_cool_heat_time_window description"
  4126. 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."
  4127. 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."
  4128. #: fdmprinter.def.json
  4129. msgctxt "infill_support_angle description"
  4130. 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."
  4131. 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."
  4132. #: fdmprinter.def.json
  4133. msgctxt "support_angle description"
  4134. 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."
  4135. 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."
  4136. #: fdmprinter.def.json
  4137. msgctxt "retraction_min_travel description"
  4138. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4139. 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."
  4140. #: fdmprinter.def.json
  4141. msgctxt "skirt_brim_minimal_length description"
  4142. 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."
  4143. 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."
  4144. #: fdmprinter.def.json
  4145. msgctxt "min_odd_wall_line_width description"
  4146. 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."
  4147. msgstr ""
  4148. #: fdmprinter.def.json
  4149. msgctxt "min_even_wall_line_width description"
  4150. 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."
  4151. msgstr ""
  4152. #: fdmprinter.def.json
  4153. msgctxt "cool_min_speed description"
  4154. 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."
  4155. 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."
  4156. #: fdmprinter.def.json
  4157. msgctxt "meshfix_maximum_resolution description"
  4158. 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."
  4159. 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."
  4160. #: fdmprinter.def.json
  4161. msgctxt "meshfix_maximum_travel_resolution description"
  4162. 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."
  4163. 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."
  4164. #: fdmprinter.def.json
  4165. msgctxt "support_bottom_stair_step_min_slope description"
  4166. 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."
  4167. msgstr ""
  4168. #: fdmprinter.def.json
  4169. msgctxt "cool_min_layer_time description"
  4170. 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."
  4171. 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."
  4172. #: fdmprinter.def.json
  4173. msgctxt "prime_tower_min_volume description"
  4174. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4175. 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."
  4176. #: fdmprinter.def.json
  4177. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  4178. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  4179. msgstr ""
  4180. #: fdmprinter.def.json
  4181. msgctxt "machine_name description"
  4182. msgid "The name of your 3D printer model."
  4183. msgstr "A 3D nyomtatód neve."
  4184. #: fdmprinter.def.json
  4185. msgctxt "machine_nozzle_id description"
  4186. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4187. msgstr "Az extruder szerelvény fúvóka azonosítója, például \"AA 0.4\" és \"BB 0.8\"."
  4188. #: fdmprinter.def.json
  4189. msgctxt "travel_avoid_other_parts description"
  4190. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4191. 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."
  4192. #: fdmprinter.def.json
  4193. msgctxt "travel_avoid_supports description"
  4194. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4195. 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."
  4196. #: fdmprinter.def.json
  4197. msgctxt "bottom_layers description"
  4198. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4199. 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."
  4200. #: fdmprinter.def.json
  4201. msgctxt "raft_base_wall_count description"
  4202. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4203. msgstr ""
  4204. #: fdmprinter.def.json
  4205. msgctxt "skin_edge_support_layers description"
  4206. msgid "The number of infill layers that supports skin edges."
  4207. msgstr ""
  4208. #: fdmprinter.def.json
  4209. msgctxt "initial_bottom_layers description"
  4210. 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."
  4211. msgstr ""
  4212. #: fdmprinter.def.json
  4213. msgctxt "raft_interface_layers description"
  4214. 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."
  4215. msgstr ""
  4216. #: fdmprinter.def.json
  4217. msgctxt "brim_line_count description"
  4218. 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."
  4219. 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."
  4220. #: fdmprinter.def.json
  4221. msgctxt "support_brim_line_count description"
  4222. 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."
  4223. 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."
  4224. #: fdmprinter.def.json
  4225. msgctxt "raft_surface_layers description"
  4226. 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."
  4227. 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."
  4228. #: fdmprinter.def.json
  4229. msgctxt "top_layers description"
  4230. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4231. 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."
  4232. #: fdmprinter.def.json
  4233. msgctxt "roofing_layer_count description"
  4234. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4235. 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."
  4236. #: fdmprinter.def.json
  4237. msgctxt "support_wall_count description"
  4238. 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."
  4239. 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."
  4240. #: fdmprinter.def.json
  4241. #, fuzzy
  4242. msgctxt "support_bottom_wall_count description"
  4243. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4244. 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."
  4245. #: fdmprinter.def.json
  4246. #, fuzzy
  4247. msgctxt "support_roof_wall_count description"
  4248. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4249. 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."
  4250. #: fdmprinter.def.json
  4251. #, fuzzy
  4252. msgctxt "support_interface_wall_count description"
  4253. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  4254. 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."
  4255. #: fdmprinter.def.json
  4256. msgctxt "wall_distribution_count description"
  4257. 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."
  4258. msgstr ""
  4259. #: fdmprinter.def.json
  4260. msgctxt "wall_line_count description"
  4261. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4262. msgstr "A nyomtatandó falak száma. A falvastagság alapján számított és kerekített érték."
  4263. #: fdmprinter.def.json
  4264. msgctxt "machine_nozzle_tip_outer_diameter description"
  4265. msgid "The outer diameter of the tip of the nozzle."
  4266. msgstr "A fúvóka hegyének külső átmérője."
  4267. #: fdmprinter.def.json
  4268. msgctxt "infill_pattern description"
  4269. 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."
  4270. msgstr ""
  4271. #: fdmprinter.def.json
  4272. msgctxt "support_pattern description"
  4273. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4274. 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."
  4275. #: fdmprinter.def.json
  4276. msgctxt "roofing_pattern description"
  4277. msgid "The pattern of the top most layers."
  4278. msgstr "A legfelső rétegeken lévő mintázat."
  4279. #: fdmprinter.def.json
  4280. msgctxt "top_bottom_pattern description"
  4281. msgid "The pattern of the top/bottom layers."
  4282. msgstr "Az alsó/felső rétegek mintázata."
  4283. #: fdmprinter.def.json
  4284. msgctxt "top_bottom_pattern_0 description"
  4285. msgid "The pattern on the bottom of the print on the first layer."
  4286. msgstr "A legalsóbb, kezdő réteg mintázata."
  4287. #: fdmprinter.def.json
  4288. msgctxt "ironing_pattern description"
  4289. msgid "The pattern to use for ironing top surfaces."
  4290. msgstr "A felső felületek vasalásához használt minta."
  4291. #: fdmprinter.def.json
  4292. msgctxt "support_bottom_pattern description"
  4293. msgid "The pattern with which the floors of the support are printed."
  4294. msgstr "A támasz interfész alsó felületének kialakítási mintája."
  4295. #: fdmprinter.def.json
  4296. msgctxt "support_interface_pattern description"
  4297. msgid "The pattern with which the interface of the support with the model is printed."
  4298. msgstr "A támasz interfész kialakítási mintája."
  4299. #: fdmprinter.def.json
  4300. msgctxt "support_roof_pattern description"
  4301. msgid "The pattern with which the roofs of the support are printed."
  4302. msgstr "A támasz interfész felső felületének kialakítási mintája."
  4303. #: fdmprinter.def.json
  4304. msgctxt "z_seam_position description"
  4305. msgid "The position near where to start printing each part in a layer."
  4306. msgstr "Az a pont, ahol az egyes rétegek nyomtatását kezdeni fogja."
  4307. #: fdmprinter.def.json
  4308. msgctxt "support_tree_angle_slow description"
  4309. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  4310. msgstr ""
  4311. #: fdmprinter.def.json
  4312. msgctxt "support_tree_rest_preference description"
  4313. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  4314. msgstr ""
  4315. #: fdmprinter.def.json
  4316. msgctxt "jerk_layer_0 description"
  4317. msgid "The print maximum instantaneous velocity change for the initial layer."
  4318. msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő rétegen."
  4319. #: fdmprinter.def.json
  4320. msgctxt "machine_shape description"
  4321. msgid "The shape of the build plate without taking unprintable areas into account."
  4322. msgstr "A tárgyasztal alakja anélkül, hogy a ténylegesen nem használható területeket figyelembe vennénk."
  4323. #: fdmprinter.def.json
  4324. msgctxt "machine_head_with_fans_polygon description"
  4325. 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."
  4326. msgstr ""
  4327. #: fdmprinter.def.json
  4328. msgctxt "cross_infill_pocket_size description"
  4329. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4330. 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."
  4331. #: fdmprinter.def.json
  4332. msgctxt "coasting_min_volume description"
  4333. 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."
  4334. 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."
  4335. #: fdmprinter.def.json
  4336. msgctxt "machine_nozzle_cool_down_speed description"
  4337. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4338. 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."
  4339. #: fdmprinter.def.json
  4340. msgctxt "machine_nozzle_heat_up_speed description"
  4341. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4342. 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."
  4343. #: fdmprinter.def.json
  4344. msgctxt "speed_wall_x description"
  4345. 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."
  4346. 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."
  4347. #: fdmprinter.def.json
  4348. msgctxt "bridge_skin_speed description"
  4349. msgid "The speed at which bridge skin regions are printed."
  4350. msgstr "A hidak felszíni rétegeinek nyomtatási sebessége."
  4351. #: fdmprinter.def.json
  4352. msgctxt "speed_infill description"
  4353. msgid "The speed at which infill is printed."
  4354. msgstr "Az a sebesség, amivel a kitöltés nyomtatódik."
  4355. #: fdmprinter.def.json
  4356. msgctxt "speed_print description"
  4357. msgid "The speed at which printing happens."
  4358. msgstr "Az a sebesség, amivel a nyomtatás történik."
  4359. #: fdmprinter.def.json
  4360. msgctxt "raft_base_speed description"
  4361. 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."
  4362. 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."
  4363. #: fdmprinter.def.json
  4364. msgctxt "bridge_wall_speed description"
  4365. msgid "The speed at which the bridge walls are printed."
  4366. msgstr "Hidak falainak nyomtatási sebessége."
  4367. #: fdmprinter.def.json
  4368. msgctxt "cool_fan_speed_0 description"
  4369. 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."
  4370. 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."
  4371. #: fdmprinter.def.json
  4372. msgctxt "cool_fan_speed_min description"
  4373. 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."
  4374. 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."
  4375. #: fdmprinter.def.json
  4376. msgctxt "cool_fan_speed_max description"
  4377. 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."
  4378. 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."
  4379. #: fdmprinter.def.json
  4380. msgctxt "retraction_prime_speed description"
  4381. msgid "The speed at which the filament is primed during a retraction move."
  4382. msgstr "A nyomtatószál visszahúzás sebessége szál előtolási mozgáskor."
  4383. #: fdmprinter.def.json
  4384. msgctxt "wipe_retraction_prime_speed description"
  4385. msgid "The speed at which the filament is primed during a wipe retraction move."
  4386. msgstr "Az a sebesség, amivel a nyomtatószál visszatöltődik a fejbe."
  4387. #: fdmprinter.def.json
  4388. msgctxt "switch_extruder_prime_speed description"
  4389. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4390. msgstr "Az a sebesség, amivel a nyomtatószálat visszatoljuk a fejbe fúvókaváltás után."
  4391. #: fdmprinter.def.json
  4392. msgctxt "retraction_speed description"
  4393. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4394. msgstr "A nyomtatószál sebessége visszahúzáskor, és előtoláskor."
  4395. #: fdmprinter.def.json
  4396. msgctxt "wipe_retraction_speed description"
  4397. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4398. 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."
  4399. #: fdmprinter.def.json
  4400. msgctxt "switch_extruder_retraction_speed description"
  4401. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4402. msgstr "Az a sebesség, amivel a szál visszahúzásra kerül a fúvókaváltás során."
  4403. #: fdmprinter.def.json
  4404. msgctxt "retraction_retract_speed description"
  4405. msgid "The speed at which the filament is retracted during a retraction move."
  4406. msgstr "Az a sebesség, amellyel a nyomtatószál visszahúzódik egy visszahúzási mozgás során."
  4407. #: fdmprinter.def.json
  4408. msgctxt "wipe_retraction_retract_speed description"
  4409. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4410. msgstr "Az a sebesség, amivel a nyomtatószál visszahúzódik."
  4411. #: fdmprinter.def.json
  4412. msgctxt "switch_extruder_retraction_speeds description"
  4413. 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."
  4414. 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."
  4415. #: fdmprinter.def.json
  4416. msgctxt "speed_support_bottom description"
  4417. 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."
  4418. 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."
  4419. #: fdmprinter.def.json
  4420. msgctxt "speed_support_infill description"
  4421. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4422. 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."
  4423. #: fdmprinter.def.json
  4424. msgctxt "raft_interface_speed description"
  4425. 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."
  4426. 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."
  4427. #: fdmprinter.def.json
  4428. msgctxt "speed_wall_0 description"
  4429. 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."
  4430. 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."
  4431. #: fdmprinter.def.json
  4432. msgctxt "speed_prime_tower description"
  4433. 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."
  4434. 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."
  4435. #: fdmprinter.def.json
  4436. msgctxt "cool_fan_speed description"
  4437. msgid "The speed at which the print cooling fans spin."
  4438. msgstr "Az a sebesség, amivel a ventillátorok pörögnek."
  4439. #: fdmprinter.def.json
  4440. msgctxt "raft_speed description"
  4441. msgid "The speed at which the raft is printed."
  4442. msgstr "A tutaj nyomtatási sebessége."
  4443. #: fdmprinter.def.json
  4444. msgctxt "speed_support_interface description"
  4445. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4446. 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."
  4447. #: fdmprinter.def.json
  4448. msgctxt "speed_support_roof description"
  4449. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4450. 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."
  4451. #: fdmprinter.def.json
  4452. msgctxt "skirt_brim_speed description"
  4453. 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."
  4454. 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."
  4455. #: fdmprinter.def.json
  4456. msgctxt "speed_support description"
  4457. 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."
  4458. 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."
  4459. #: fdmprinter.def.json
  4460. msgctxt "raft_surface_speed description"
  4461. 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."
  4462. 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."
  4463. #: fdmprinter.def.json
  4464. msgctxt "speed_z_hop description"
  4465. 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."
  4466. 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."
  4467. #: fdmprinter.def.json
  4468. msgctxt "speed_wall description"
  4469. msgid "The speed at which the walls are printed."
  4470. msgstr "A falak nyomtatási sebessége."
  4471. #: fdmprinter.def.json
  4472. msgctxt "speed_ironing description"
  4473. msgid "The speed at which to pass over the top surface."
  4474. msgstr "A felső felületen való áthaladási sebesség."
  4475. #: fdmprinter.def.json
  4476. msgctxt "material_break_speed description"
  4477. msgid "The speed at which to retract the filament in order to break it cleanly."
  4478. msgstr "Milyen gyorsan kell visszahúzni a nyomtatószálat, hogy az tisztán megszakadjon."
  4479. #: fdmprinter.def.json
  4480. msgctxt "speed_roofing description"
  4481. msgid "The speed at which top surface skin layers are printed."
  4482. msgstr "A felső záró kéreg felületi rétegnek a nyomtatási sebessége."
  4483. #: fdmprinter.def.json
  4484. msgctxt "speed_topbottom description"
  4485. msgid "The speed at which top/bottom layers are printed."
  4486. msgstr "Az alsó/felső réteg nyomtatási sebessége."
  4487. #: fdmprinter.def.json
  4488. msgctxt "speed_travel description"
  4489. msgid "The speed at which travel moves are made."
  4490. msgstr "A fej üresben történő pozícióváltásának sebessége."
  4491. #: fdmprinter.def.json
  4492. msgctxt "coasting_speed description"
  4493. 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."
  4494. 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."
  4495. #: fdmprinter.def.json
  4496. msgctxt "speed_layer_0 description"
  4497. 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."
  4498. msgstr ""
  4499. #: fdmprinter.def.json
  4500. msgctxt "speed_print_layer_0 description"
  4501. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4502. msgstr "A kezdő réteg nyomtatási sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz."
  4503. #: fdmprinter.def.json
  4504. msgctxt "speed_travel_layer_0 description"
  4505. 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."
  4506. 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."
  4507. #: fdmprinter.def.json
  4508. msgctxt "material_break_temperature description"
  4509. msgid "The temperature at which the filament is broken for a clean break."
  4510. msgstr "Az a hőmérséklet, ahol a nyomtatószál tisztán meg tud szakadni."
  4511. #: fdmprinter.def.json
  4512. msgctxt "build_volume_temperature description"
  4513. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4514. 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."
  4515. #: fdmprinter.def.json
  4516. msgctxt "material_standby_temperature description"
  4517. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4518. msgstr "Az adott fúvóka hőmérséklete, amikor éppen egy másik fúvókát használnak nyomtatáshoz."
  4519. #: fdmprinter.def.json
  4520. msgctxt "material_final_print_temperature description"
  4521. msgid "The temperature to which to already start cooling down just before the end of printing."
  4522. msgstr "Az a hőmérséklet, ahová a fejnek vissza kell hűlnie a nyomtatás befejezése előtt."
  4523. #: fdmprinter.def.json
  4524. msgctxt "material_print_temperature_layer_0 description"
  4525. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4526. 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."
  4527. #: fdmprinter.def.json
  4528. msgctxt "material_print_temperature description"
  4529. msgid "The temperature used for printing."
  4530. msgstr "A nyomtatáshoz használt hőmérséklet."
  4531. #: fdmprinter.def.json
  4532. msgctxt "material_bed_temperature_layer_0 description"
  4533. 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."
  4534. msgstr ""
  4535. #: fdmprinter.def.json
  4536. msgctxt "material_bed_temperature description"
  4537. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4538. msgstr ""
  4539. #: fdmprinter.def.json
  4540. msgctxt "material_break_preparation_temperature description"
  4541. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4542. msgstr ""
  4543. #: fdmprinter.def.json
  4544. msgctxt "bottom_thickness description"
  4545. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4546. 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."
  4547. #: fdmprinter.def.json
  4548. msgctxt "skin_edge_support_thickness description"
  4549. msgid "The thickness of the extra infill that supports skin edges."
  4550. msgstr ""
  4551. #: fdmprinter.def.json
  4552. msgctxt "support_interface_height description"
  4553. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4554. 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."
  4555. #: fdmprinter.def.json
  4556. msgctxt "support_bottom_height description"
  4557. 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."
  4558. msgstr "A támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz aljára nyomtat."
  4559. #: fdmprinter.def.json
  4560. msgctxt "support_roof_height description"
  4561. 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."
  4562. msgstr "A támasz átmeneti, a modellt érintő csatlakozó felületének a vastagsága, amit a támasz tetejére nyomtat."
  4563. #: fdmprinter.def.json
  4564. msgctxt "top_thickness description"
  4565. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4566. 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."
  4567. #: fdmprinter.def.json
  4568. msgctxt "top_bottom_thickness description"
  4569. 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."
  4570. 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."
  4571. #: fdmprinter.def.json
  4572. msgctxt "wall_thickness description"
  4573. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4574. 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."
  4575. #: fdmprinter.def.json
  4576. msgctxt "infill_sparse_thickness description"
  4577. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4578. 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."
  4579. #: fdmprinter.def.json
  4580. msgctxt "support_infill_sparse_thickness description"
  4581. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4582. 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."
  4583. #: fdmprinter.def.json
  4584. msgctxt "machine_gcode_flavor description"
  4585. msgid "The type of g-code to be generated."
  4586. msgstr "A létrehozandó g-kód típusa."
  4587. #: fdmprinter.def.json
  4588. msgctxt "coasting_volume description"
  4589. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4590. 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."
  4591. #: fdmprinter.def.json
  4592. msgctxt "machine_width description"
  4593. msgid "The width (X-direction) of the printable area."
  4594. msgstr "A nyomtatási terület szélessége (X-irány)."
  4595. #: fdmprinter.def.json
  4596. msgctxt "support_brim_width description"
  4597. 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."
  4598. 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."
  4599. #: fdmprinter.def.json
  4600. #, fuzzy
  4601. msgctxt "interlocking_beam_width description"
  4602. msgid "The width of the interlocking structure beams."
  4603. msgstr "Az előtorony szélessége."
  4604. #: fdmprinter.def.json
  4605. msgctxt "prime_tower_size description"
  4606. msgid "The width of the prime tower."
  4607. msgstr "Az előtorony szélessége."
  4608. #: fdmprinter.def.json
  4609. msgctxt "magic_fuzzy_skin_thickness description"
  4610. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4611. 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."
  4612. #: fdmprinter.def.json
  4613. msgctxt "retraction_extrusion_window description"
  4614. 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."
  4615. 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."
  4616. #: fdmprinter.def.json
  4617. msgctxt "prime_tower_position_x description"
  4618. msgid "The x coordinate of the position of the prime tower."
  4619. msgstr "Az előtorony nyomtatási X koordinátája."
  4620. #: fdmprinter.def.json
  4621. msgctxt "prime_tower_position_y description"
  4622. msgid "The y coordinate of the position of the prime tower."
  4623. msgstr "Az előtorony nyomtatási Y koordinátája."
  4624. #: fdmprinter.def.json
  4625. msgctxt "support_meshes_present description"
  4626. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4627. msgstr ""
  4628. #: fdmprinter.def.json
  4629. msgctxt "bridge_wall_coast description"
  4630. 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."
  4631. 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."
  4632. #: fdmprinter.def.json
  4633. msgctxt "raft_smoothing description"
  4634. 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."
  4635. 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."
  4636. #: fdmprinter.def.json
  4637. msgctxt "retraction_count_max description"
  4638. 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."
  4639. 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."
  4640. #: fdmprinter.def.json
  4641. msgctxt "draft_shield_enabled description"
  4642. 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."
  4643. 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."
  4644. #: fdmprinter.def.json
  4645. msgctxt "support_tree_tip_diameter label"
  4646. msgid "Tip Diameter"
  4647. msgstr ""
  4648. #: fdmprinter.def.json
  4649. msgctxt "material_shrinkage_percentage_xy description"
  4650. 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)."
  4651. msgstr ""
  4652. #: fdmprinter.def.json
  4653. msgctxt "material_shrinkage_percentage_z description"
  4654. 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)."
  4655. msgstr ""
  4656. #: fdmprinter.def.json
  4657. msgctxt "material_shrinkage_percentage description"
  4658. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4659. msgstr ""
  4660. #: fdmprinter.def.json
  4661. msgctxt "top_layers label"
  4662. msgid "Top Layers"
  4663. msgstr "Felső rétegek"
  4664. #: fdmprinter.def.json
  4665. msgctxt "top_skin_expand_distance label"
  4666. msgid "Top Skin Expand Distance"
  4667. msgstr "Felső kéreg bővítési távolság"
  4668. #: fdmprinter.def.json
  4669. msgctxt "top_skin_preshrink label"
  4670. msgid "Top Skin Removal Width"
  4671. msgstr "Felső kéreg eltávolítási szélesség"
  4672. #: fdmprinter.def.json
  4673. msgctxt "acceleration_roofing label"
  4674. msgid "Top Surface Skin Acceleration"
  4675. msgstr "Felső felületi gyorsulás"
  4676. #: fdmprinter.def.json
  4677. msgctxt "roofing_extruder_nr label"
  4678. msgid "Top Surface Skin Extruder"
  4679. msgstr "Felső és külső felületi extruder"
  4680. #: fdmprinter.def.json
  4681. msgctxt "roofing_material_flow label"
  4682. msgid "Top Surface Skin Flow"
  4683. msgstr "Felső kéregfelület áramlás"
  4684. #: fdmprinter.def.json
  4685. msgctxt "jerk_roofing label"
  4686. msgid "Top Surface Skin Jerk"
  4687. msgstr "Felső felület löket"
  4688. #: fdmprinter.def.json
  4689. msgctxt "roofing_layer_count label"
  4690. msgid "Top Surface Skin Layers"
  4691. msgstr "Felső kéreg rétegek"
  4692. #: fdmprinter.def.json
  4693. msgctxt "roofing_angles label"
  4694. msgid "Top Surface Skin Line Directions"
  4695. msgstr "Felső kéregvonal irányok"
  4696. #: fdmprinter.def.json
  4697. msgctxt "roofing_line_width label"
  4698. msgid "Top Surface Skin Line Width"
  4699. msgstr "Felső felszíni kéregvonal szélesség"
  4700. #: fdmprinter.def.json
  4701. msgctxt "roofing_pattern label"
  4702. msgid "Top Surface Skin Pattern"
  4703. msgstr "Felső felszíni kéregminta"
  4704. #: fdmprinter.def.json
  4705. msgctxt "speed_roofing label"
  4706. msgid "Top Surface Skin Speed"
  4707. msgstr "Felső záró felületi sebesség"
  4708. #: fdmprinter.def.json
  4709. msgctxt "top_thickness label"
  4710. msgid "Top Thickness"
  4711. msgstr "Felső vastagság"
  4712. #: fdmprinter.def.json
  4713. msgctxt "max_skin_angle_for_expansion description"
  4714. 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."
  4715. msgstr ""
  4716. #: fdmprinter.def.json
  4717. msgctxt "top_bottom description"
  4718. msgid "Top/Bottom"
  4719. msgstr ""
  4720. #: fdmprinter.def.json
  4721. msgctxt "top_bottom label"
  4722. msgid "Top/Bottom"
  4723. msgstr ""
  4724. #: fdmprinter.def.json
  4725. msgctxt "acceleration_topbottom label"
  4726. msgid "Top/Bottom Acceleration"
  4727. msgstr "Alsó/felső gyorsulás"
  4728. #: fdmprinter.def.json
  4729. msgctxt "top_bottom_extruder_nr label"
  4730. msgid "Top/Bottom Extruder"
  4731. msgstr "Alsó/felső extruder"
  4732. #: fdmprinter.def.json
  4733. msgctxt "skin_material_flow label"
  4734. msgid "Top/Bottom Flow"
  4735. msgstr "Alsó/felső áramlás"
  4736. #: fdmprinter.def.json
  4737. msgctxt "jerk_topbottom label"
  4738. msgid "Top/Bottom Jerk"
  4739. msgstr "Alsó/felső löket"
  4740. #: fdmprinter.def.json
  4741. msgctxt "skin_angles label"
  4742. msgid "Top/Bottom Line Directions"
  4743. msgstr "Alsó/felső vonal irányok"
  4744. #: fdmprinter.def.json
  4745. msgctxt "skin_line_width label"
  4746. msgid "Top/Bottom Line Width"
  4747. msgstr "Alsó/felső vonalszélessége"
  4748. #: fdmprinter.def.json
  4749. msgctxt "top_bottom_pattern label"
  4750. msgid "Top/Bottom Pattern"
  4751. msgstr "Alsó/felső mintázat"
  4752. #: fdmprinter.def.json
  4753. msgctxt "speed_topbottom label"
  4754. msgid "Top/Bottom Speed"
  4755. msgstr "Alsó/felső sebesség"
  4756. #: fdmprinter.def.json
  4757. msgctxt "top_bottom_thickness label"
  4758. msgid "Top/Bottom Thickness"
  4759. msgstr "Alsó/felső vastagság"
  4760. #: fdmprinter.def.json
  4761. msgctxt "support_type option buildplate"
  4762. msgid "Touching Buildplate"
  4763. msgstr "Asztalt érintse"
  4764. #: fdmprinter.def.json
  4765. msgctxt "support_tower_diameter label"
  4766. msgid "Tower Diameter"
  4767. msgstr "Torony átmérő"
  4768. #: fdmprinter.def.json
  4769. msgctxt "support_tower_roof_angle label"
  4770. msgid "Tower Roof Angle"
  4771. msgstr "Torony fedél szög"
  4772. #: fdmprinter.def.json
  4773. msgctxt "mesh_rotation_matrix description"
  4774. msgid "Transformation matrix to be applied to the model when loading it from file."
  4775. msgstr "A modellre alkalmazandó átalakítási mátrix, amikor azt fájlból tölti be."
  4776. #: fdmprinter.def.json
  4777. msgctxt "travel label"
  4778. msgid "Travel"
  4779. msgstr "Utazás"
  4780. #: fdmprinter.def.json
  4781. msgctxt "acceleration_travel label"
  4782. msgid "Travel Acceleration"
  4783. msgstr "Utaztatási gyorsulás"
  4784. #: fdmprinter.def.json
  4785. msgctxt "travel_avoid_distance label"
  4786. msgid "Travel Avoid Distance"
  4787. msgstr "Elkerülő utazási távolság"
  4788. #: fdmprinter.def.json
  4789. msgctxt "jerk_travel label"
  4790. msgid "Travel Jerk"
  4791. msgstr "Utazás löket"
  4792. #: fdmprinter.def.json
  4793. msgctxt "speed_travel label"
  4794. msgid "Travel Speed"
  4795. msgstr "Utazási sebesség"
  4796. #: fdmprinter.def.json
  4797. msgctxt "magic_mesh_surface_mode description"
  4798. 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."
  4799. 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."
  4800. #: fdmprinter.def.json
  4801. msgctxt "support_structure option tree"
  4802. msgid "Tree"
  4803. msgstr ""
  4804. #: fdmprinter.def.json
  4805. msgctxt "infill_pattern option trihexagon"
  4806. msgid "Tri-Hexagon"
  4807. msgstr "Három-hatszög"
  4808. #: fdmprinter.def.json
  4809. msgctxt "infill_pattern option triangles"
  4810. msgid "Triangles"
  4811. msgstr "Háromszög"
  4812. #: fdmprinter.def.json
  4813. msgctxt "support_bottom_pattern option triangles"
  4814. msgid "Triangles"
  4815. msgstr "Háromszögek"
  4816. #: fdmprinter.def.json
  4817. msgctxt "support_interface_pattern option triangles"
  4818. msgid "Triangles"
  4819. msgstr "Háromszögek"
  4820. #: fdmprinter.def.json
  4821. msgctxt "support_pattern option triangles"
  4822. msgid "Triangles"
  4823. msgstr "Háromszög"
  4824. #: fdmprinter.def.json
  4825. msgctxt "support_roof_pattern option triangles"
  4826. msgid "Triangles"
  4827. msgstr "Háromszögek"
  4828. #: fdmprinter.def.json
  4829. msgctxt "support_tree_max_diameter label"
  4830. msgid "Trunk Diameter"
  4831. msgstr ""
  4832. #: fdmprinter.def.json
  4833. msgctxt "machine_gcode_flavor option UltiGCode"
  4834. msgid "Ultimaker 2"
  4835. msgstr "Ultimaker 2"
  4836. #: fdmprinter.def.json
  4837. msgctxt "meshfix_union_all label"
  4838. msgid "Union Overlapping Volumes"
  4839. msgstr "Szintátfedések egyesítése"
  4840. #: fdmprinter.def.json
  4841. msgctxt "bridge_wall_min_length description"
  4842. 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."
  4843. 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."
  4844. #: fdmprinter.def.json
  4845. msgctxt "adaptive_layer_height_enabled label"
  4846. msgid "Use Adaptive Layers"
  4847. msgstr "Adaptív rétegek használata"
  4848. #: fdmprinter.def.json
  4849. msgctxt "support_use_towers label"
  4850. msgid "Use Towers"
  4851. msgstr "Tornyok használata"
  4852. #: fdmprinter.def.json
  4853. msgctxt "acceleration_travel_enabled description"
  4854. 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."
  4855. msgstr ""
  4856. #: fdmprinter.def.json
  4857. msgctxt "jerk_travel_enabled description"
  4858. 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."
  4859. msgstr ""
  4860. #: fdmprinter.def.json
  4861. msgctxt "relative_extrusion description"
  4862. 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."
  4863. 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."
  4864. #: fdmprinter.def.json
  4865. msgctxt "support_use_towers description"
  4866. 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."
  4867. 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."
  4868. #: fdmprinter.def.json
  4869. msgctxt "infill_mesh description"
  4870. 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."
  4871. 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."
  4872. #: fdmprinter.def.json
  4873. msgctxt "support_mesh description"
  4874. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4875. 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."
  4876. #: fdmprinter.def.json
  4877. msgctxt "anti_overhang_mesh description"
  4878. 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."
  4879. 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."
  4880. #: fdmprinter.def.json
  4881. msgctxt "z_seam_type option back"
  4882. msgid "User Specified"
  4883. msgstr "Felhasználói megadás"
  4884. #: fdmprinter.def.json
  4885. msgctxt "material_shrinkage_percentage_z label"
  4886. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4887. msgstr ""
  4888. #: fdmprinter.def.json
  4889. msgctxt "slicing_tolerance description"
  4890. 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."
  4891. msgstr ""
  4892. #: fdmprinter.def.json
  4893. msgctxt "material_bed_temp_wait label"
  4894. msgid "Wait for Build Plate Heatup"
  4895. msgstr "Várakozás a tárgyasztal felfűtésére"
  4896. #: fdmprinter.def.json
  4897. msgctxt "material_print_temp_wait label"
  4898. msgid "Wait for Nozzle Heatup"
  4899. msgstr "Várakozás a fej felfűtésére"
  4900. #: fdmprinter.def.json
  4901. msgctxt "acceleration_wall label"
  4902. msgid "Wall Acceleration"
  4903. msgstr "Fal gyorsulás"
  4904. #: fdmprinter.def.json
  4905. msgctxt "wall_distribution_count label"
  4906. msgid "Wall Distribution Count"
  4907. msgstr ""
  4908. #: fdmprinter.def.json
  4909. msgctxt "wall_extruder_nr label"
  4910. msgid "Wall Extruder"
  4911. msgstr "Fali extruder"
  4912. #: fdmprinter.def.json
  4913. msgctxt "wall_material_flow label"
  4914. msgid "Wall Flow"
  4915. msgstr "Fal áramlás"
  4916. #: fdmprinter.def.json
  4917. msgctxt "jerk_wall label"
  4918. msgid "Wall Jerk"
  4919. msgstr "Fal löket"
  4920. #: fdmprinter.def.json
  4921. msgctxt "wall_line_count label"
  4922. msgid "Wall Line Count"
  4923. msgstr "Falvonalak száma"
  4924. #: fdmprinter.def.json
  4925. msgctxt "wall_line_width label"
  4926. msgid "Wall Line Width"
  4927. msgstr "Fali vonal szélessége"
  4928. #: fdmprinter.def.json
  4929. msgctxt "inset_direction label"
  4930. msgid "Wall Ordering"
  4931. msgstr ""
  4932. #: fdmprinter.def.json
  4933. msgctxt "speed_wall label"
  4934. msgid "Wall Speed"
  4935. msgstr "Fal sebesség"
  4936. #: fdmprinter.def.json
  4937. msgctxt "wall_thickness label"
  4938. msgid "Wall Thickness"
  4939. msgstr "Falvastagság"
  4940. #: fdmprinter.def.json
  4941. msgctxt "wall_transition_length label"
  4942. msgid "Wall Transition Length"
  4943. msgstr ""
  4944. #: fdmprinter.def.json
  4945. msgctxt "wall_transition_filter_distance label"
  4946. msgid "Wall Transitioning Filter Distance"
  4947. msgstr ""
  4948. #: fdmprinter.def.json
  4949. msgctxt "wall_transition_filter_deviation label"
  4950. msgid "Wall Transitioning Filter Margin"
  4951. msgstr ""
  4952. #: fdmprinter.def.json
  4953. msgctxt "wall_transition_angle label"
  4954. msgid "Wall Transitioning Threshold Angle"
  4955. msgstr ""
  4956. #: fdmprinter.def.json
  4957. msgctxt "shell label"
  4958. msgid "Walls"
  4959. msgstr ""
  4960. #: fdmprinter.def.json
  4961. msgctxt "wall_overhang_angle description"
  4962. 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."
  4963. msgstr ""
  4964. #: fdmprinter.def.json
  4965. msgctxt "support_interface_skip_height description"
  4966. 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."
  4967. 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."
  4968. #: fdmprinter.def.json
  4969. msgctxt "infill_enable_travel_optimization description"
  4970. 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."
  4971. 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."
  4972. #: fdmprinter.def.json
  4973. msgctxt "support_fan_enable description"
  4974. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4975. 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."
  4976. #: fdmprinter.def.json
  4977. msgctxt "z_seam_relative description"
  4978. 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."
  4979. 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."
  4980. #: fdmprinter.def.json
  4981. msgctxt "retraction_combing_max_distance description"
  4982. 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."
  4983. msgstr ""
  4984. #: fdmprinter.def.json
  4985. msgctxt "hole_xy_offset_max_diameter description"
  4986. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4987. msgstr ""
  4988. #: fdmprinter.def.json
  4989. msgctxt "bridge_skin_material_flow description"
  4990. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4991. msgstr "A hídfelszínek nyomtatásakor az extrudált anyagmennyiséget meg kell szorozni ezzel az értékkel."
  4992. #: fdmprinter.def.json
  4993. msgctxt "bridge_wall_material_flow description"
  4994. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4995. msgstr "A hídfalak nyomtatásakor az extrudált anyag mennyiségét meg kell szorozni ezzel az értékkel."
  4996. #: fdmprinter.def.json
  4997. msgctxt "bridge_skin_material_flow_2 description"
  4998. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4999. msgstr "A második hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  5000. #: fdmprinter.def.json
  5001. msgctxt "bridge_skin_material_flow_3 description"
  5002. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  5003. msgstr "A harmadik hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel."
  5004. #: fdmprinter.def.json
  5005. msgctxt "cool_lift_head description"
  5006. 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."
  5007. 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."
  5008. #: fdmprinter.def.json
  5009. msgctxt "skin_no_small_gaps_heuristic description"
  5010. 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."
  5011. 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."
  5012. #: fdmprinter.def.json
  5013. msgctxt "wall_transition_angle description"
  5014. 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."
  5015. msgstr ""
  5016. #: fdmprinter.def.json
  5017. msgctxt "wall_transition_length description"
  5018. 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."
  5019. msgstr ""
  5020. #: fdmprinter.def.json
  5021. msgctxt "wipe_hop_enable description"
  5022. 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."
  5023. msgstr ""
  5024. #: fdmprinter.def.json
  5025. msgctxt "retraction_hop_enabled description"
  5026. 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."
  5027. 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."
  5028. #: fdmprinter.def.json
  5029. msgctxt "support_xy_overrides_z description"
  5030. 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."
  5031. 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."
  5032. #: fdmprinter.def.json
  5033. msgctxt "machine_center_is_zero description"
  5034. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5035. msgstr "Ez a beállítás, az X és Y nullpontot a nyomtatási terület középpontjába helyezi."
  5036. #: fdmprinter.def.json
  5037. msgctxt "machine_endstop_positive_direction_x description"
  5038. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5039. 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)"
  5040. #: fdmprinter.def.json
  5041. msgctxt "machine_endstop_positive_direction_y description"
  5042. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5043. 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)"
  5044. #: fdmprinter.def.json
  5045. msgctxt "machine_endstop_positive_direction_z description"
  5046. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5047. 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)"
  5048. #: fdmprinter.def.json
  5049. msgctxt "machine_extruders_share_heater description"
  5050. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5051. msgstr ""
  5052. #: fdmprinter.def.json
  5053. msgctxt "machine_extruders_share_nozzle description"
  5054. 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."
  5055. msgstr ""
  5056. #: fdmprinter.def.json
  5057. msgctxt "machine_heated_bed description"
  5058. msgid "Whether the machine has a heated build plate present."
  5059. 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."
  5060. #: fdmprinter.def.json
  5061. msgctxt "machine_heated_build_volume description"
  5062. msgid "Whether the machine is able to stabilize the build volume temperature."
  5063. msgstr "Azt határozza meg, hogy a gép képes-e szabályozni a nyomtatási tér hőmérsékletét."
  5064. #: fdmprinter.def.json
  5065. msgctxt "center_object description"
  5066. 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."
  5067. 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."
  5068. #: fdmprinter.def.json
  5069. msgctxt "machine_nozzle_temp_enabled description"
  5070. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5071. 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."
  5072. #: fdmprinter.def.json
  5073. msgctxt "material_bed_temp_prepend description"
  5074. 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."
  5075. 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."
  5076. #: fdmprinter.def.json
  5077. msgctxt "material_print_temp_prepend description"
  5078. 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."
  5079. 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."
  5080. #: fdmprinter.def.json
  5081. msgctxt "clean_between_layers description"
  5082. 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."
  5083. msgstr ""
  5084. #: fdmprinter.def.json
  5085. msgctxt "material_bed_temp_wait description"
  5086. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5087. 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."
  5088. #: fdmprinter.def.json
  5089. msgctxt "prime_blob_enable description"
  5090. 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."
  5091. 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."
  5092. #: fdmprinter.def.json
  5093. msgctxt "print_sequence description"
  5094. 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."
  5095. msgstr ""
  5096. #: fdmprinter.def.json
  5097. msgctxt "machine_show_variants description"
  5098. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5099. msgstr "Megmutatja-e ennek a gépnek a különféle json-fájlokban leírt változatait."
  5100. #: fdmprinter.def.json
  5101. msgctxt "machine_firmware_retract description"
  5102. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5103. 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."
  5104. #: fdmprinter.def.json
  5105. msgctxt "material_print_temp_wait description"
  5106. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5107. msgstr "Várakozás addig, amíg a nyomtatófej el nem éri a beállított célhőmérsékletet."
  5108. #: fdmprinter.def.json
  5109. msgctxt "infill_line_width description"
  5110. msgid "Width of a single infill line."
  5111. msgstr "Egyetlen kitöltési vonalszélesség."
  5112. #: fdmprinter.def.json
  5113. msgctxt "support_interface_line_width description"
  5114. msgid "Width of a single line of support roof or floor."
  5115. msgstr "A padló vagy a tető egyetlen vonalszélessége."
  5116. #: fdmprinter.def.json
  5117. msgctxt "roofing_line_width description"
  5118. msgid "Width of a single line of the areas at the top of the print."
  5119. msgstr "A nyomtatás tetjén lévő területek egyetlen sorának szélessége."
  5120. #: fdmprinter.def.json
  5121. msgctxt "line_width description"
  5122. 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."
  5123. 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."
  5124. #: fdmprinter.def.json
  5125. msgctxt "prime_tower_line_width description"
  5126. msgid "Width of a single prime tower line."
  5127. msgstr "Egyetlen előtorony vonalszélesség."
  5128. #: fdmprinter.def.json
  5129. msgctxt "skirt_brim_line_width description"
  5130. msgid "Width of a single skirt or brim line."
  5131. msgstr "Egyetlen szoknya/perem vonalszélesség."
  5132. #: fdmprinter.def.json
  5133. msgctxt "support_bottom_line_width description"
  5134. msgid "Width of a single support floor line."
  5135. msgstr "Egyetlen támasz padlóvonal szélesség."
  5136. #: fdmprinter.def.json
  5137. msgctxt "support_roof_line_width description"
  5138. msgid "Width of a single support roof line."
  5139. msgstr "Egyetlen támasz tetővonal szélesség."
  5140. #: fdmprinter.def.json
  5141. msgctxt "support_line_width description"
  5142. msgid "Width of a single support structure line."
  5143. msgstr "Egyetlen támasz vonalszélesség."
  5144. #: fdmprinter.def.json
  5145. msgctxt "skin_line_width description"
  5146. msgid "Width of a single top/bottom line."
  5147. msgstr "Egyetlen alsó/felső sorszélessége."
  5148. #: fdmprinter.def.json
  5149. msgctxt "wall_line_width_x description"
  5150. msgid "Width of a single wall line for all wall lines except the outermost one."
  5151. msgstr "Egyetlen falvonal szélessége az összes fali vonalhoz, a legkülső fal kivételével."
  5152. #: fdmprinter.def.json
  5153. msgctxt "wall_line_width description"
  5154. msgid "Width of a single wall line."
  5155. msgstr "Egy fal vonalának szélessége."
  5156. #: fdmprinter.def.json
  5157. msgctxt "raft_base_line_width description"
  5158. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5159. 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."
  5160. #: fdmprinter.def.json
  5161. msgctxt "raft_interface_line_width description"
  5162. 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."
  5163. 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."
  5164. #: fdmprinter.def.json
  5165. msgctxt "raft_surface_line_width description"
  5166. 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."
  5167. msgstr "A vonalak szélessége a tutaj felső felületén. Ezek lehetnek vékony vonalak, így a tutaj teteje sima lesz."
  5168. #: fdmprinter.def.json
  5169. msgctxt "wall_line_width_0 description"
  5170. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5171. msgstr "A külső falvonal szélessége. Ennek az értéknek a csökkentésével nagyobb szintű részletesség érhető el."
  5172. #: fdmprinter.def.json
  5173. msgctxt "min_bead_width description"
  5174. 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."
  5175. msgstr ""
  5176. #: fdmprinter.def.json
  5177. msgctxt "wipe_brush_pos_x label"
  5178. msgid "Wipe Brush X Position"
  5179. msgstr "Törlési pont (kefe) X helyzete"
  5180. #: fdmprinter.def.json
  5181. msgctxt "wipe_hop_speed label"
  5182. msgid "Wipe Hop Speed"
  5183. msgstr "Z emelés sebesség"
  5184. #: fdmprinter.def.json
  5185. msgctxt "prime_tower_wipe_enabled label"
  5186. msgid "Wipe Inactive Nozzle on Prime Tower"
  5187. msgstr "Inaktív fúvóka tisztítása az előtornyon"
  5188. #: fdmprinter.def.json
  5189. msgctxt "wipe_move_distance label"
  5190. msgid "Wipe Move Distance"
  5191. msgstr "Törlési mozgás távolsága"
  5192. #: fdmprinter.def.json
  5193. msgctxt "clean_between_layers label"
  5194. msgid "Wipe Nozzle Between Layers"
  5195. msgstr "Fúvóka tisztítás rétegek között"
  5196. #: fdmprinter.def.json
  5197. msgctxt "wipe_pause label"
  5198. msgid "Wipe Pause"
  5199. msgstr "Törlés szünet"
  5200. #: fdmprinter.def.json
  5201. msgctxt "wipe_repeat_count label"
  5202. msgid "Wipe Repeat Count"
  5203. msgstr "Törlés ismétlés száma"
  5204. #: fdmprinter.def.json
  5205. msgctxt "wipe_retraction_amount label"
  5206. msgid "Wipe Retraction Distance"
  5207. msgstr "Törlés visszahúzás távolság"
  5208. #: fdmprinter.def.json
  5209. msgctxt "wipe_retraction_enable label"
  5210. msgid "Wipe Retraction Enable"
  5211. msgstr "Törlés visszahúzás engedélyezése"
  5212. #: fdmprinter.def.json
  5213. msgctxt "wipe_retraction_extra_prime_amount label"
  5214. msgid "Wipe Retraction Extra Prime Amount"
  5215. msgstr "Törlés visszahúzás anyag kompenzáció"
  5216. #: fdmprinter.def.json
  5217. msgctxt "wipe_retraction_prime_speed label"
  5218. msgid "Wipe Retraction Prime Speed"
  5219. msgstr ""
  5220. #: fdmprinter.def.json
  5221. msgctxt "wipe_retraction_retract_speed label"
  5222. msgid "Wipe Retraction Retract Speed"
  5223. msgstr "Visszahúzási sebesség"
  5224. #: fdmprinter.def.json
  5225. msgctxt "wipe_retraction_speed label"
  5226. msgid "Wipe Retraction Speed"
  5227. msgstr "Törlés visszahúzás sebesség"
  5228. #: fdmprinter.def.json
  5229. msgctxt "wipe_hop_enable label"
  5230. msgid "Wipe Z Hop"
  5231. msgstr ""
  5232. #: fdmprinter.def.json
  5233. msgctxt "wipe_hop_amount label"
  5234. msgid "Wipe Z Hop Height"
  5235. msgstr "Z emelés magasság"
  5236. #: fdmprinter.def.json
  5237. msgctxt "retraction_combing option infill"
  5238. msgid "Within Infill"
  5239. msgstr "Kitöltésen belül"
  5240. #: fdmprinter.def.json
  5241. msgctxt "machine_always_write_active_tool description"
  5242. 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."
  5243. msgstr ""
  5244. #: fdmprinter.def.json
  5245. msgctxt "machine_endstop_positive_direction_x label"
  5246. msgid "X Endstop in Positive Direction"
  5247. msgstr "X végállás pozitív irányban"
  5248. #: fdmprinter.def.json
  5249. msgctxt "wipe_brush_pos_x description"
  5250. msgid "X location where wipe script will start."
  5251. msgstr "Az az X helyzet, ahol a törlési szkript elindul."
  5252. #: fdmprinter.def.json
  5253. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5254. msgid "X/Y overrides Z"
  5255. msgstr "X/Y felülbírálás Z-re"
  5256. #: fdmprinter.def.json
  5257. msgctxt "machine_endstop_positive_direction_y label"
  5258. msgid "Y Endstop in Positive Direction"
  5259. msgstr "Y végállás pozitív irányban"
  5260. #: fdmprinter.def.json
  5261. msgctxt "machine_endstop_positive_direction_z label"
  5262. msgid "Z Endstop in Positive Direction"
  5263. msgstr "Z végállás pozitív irányban"
  5264. #: fdmprinter.def.json
  5265. msgctxt "retraction_hop_after_extruder_switch label"
  5266. msgid "Z Hop After Extruder Switch"
  5267. msgstr "Z emelés extruder váltás után"
  5268. #: fdmprinter.def.json
  5269. msgctxt "retraction_hop_after_extruder_switch_height label"
  5270. msgid "Z Hop After Extruder Switch Height"
  5271. msgstr "Z emelés magassága extruder váltás után"
  5272. #: fdmprinter.def.json
  5273. msgctxt "retraction_hop label"
  5274. msgid "Z Hop Height"
  5275. msgstr "Z emelés magasság"
  5276. #: fdmprinter.def.json
  5277. msgctxt "retraction_hop_only_when_collides label"
  5278. msgid "Z Hop Only Over Printed Parts"
  5279. msgstr "Z emelés nyomtatott részeknél"
  5280. #: fdmprinter.def.json
  5281. msgctxt "speed_z_hop label"
  5282. msgid "Z Hop Speed"
  5283. msgstr "Z emelés sebesség"
  5284. #: fdmprinter.def.json
  5285. msgctxt "retraction_hop_enabled label"
  5286. msgid "Z Hop When Retracted"
  5287. msgstr "Z emelés visszahúzáskor"
  5288. #: fdmprinter.def.json
  5289. msgctxt "z_seam_type label"
  5290. msgid "Z Seam Alignment"
  5291. msgstr "Z varrat igazítás"
  5292. #: fdmprinter.def.json
  5293. msgctxt "z_seam_position label"
  5294. msgid "Z Seam Position"
  5295. msgstr "Z varrat helyzet"
  5296. #: fdmprinter.def.json
  5297. msgctxt "z_seam_relative label"
  5298. msgid "Z Seam Relative"
  5299. msgstr "Relatív Z varrat"
  5300. #: fdmprinter.def.json
  5301. msgctxt "z_seam_x label"
  5302. msgid "Z Seam X"
  5303. msgstr "Z varrat X"
  5304. #: fdmprinter.def.json
  5305. msgctxt "z_seam_y label"
  5306. msgid "Z Seam Y"
  5307. msgstr "Z varrat Y"
  5308. #: fdmprinter.def.json
  5309. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5310. msgid "Z overrides X/Y"
  5311. msgstr "Z felülbírálás X/Y-ra"
  5312. #: fdmprinter.def.json
  5313. msgctxt "infill_pattern option zigzag"
  5314. msgid "Zig Zag"
  5315. msgstr "Cikcakk"
  5316. #: fdmprinter.def.json
  5317. msgctxt "ironing_pattern option zigzag"
  5318. msgid "Zig Zag"
  5319. msgstr "Cikcakk"
  5320. #: fdmprinter.def.json
  5321. msgctxt "roofing_pattern option zigzag"
  5322. msgid "Zig Zag"
  5323. msgstr "Cikcakk"
  5324. #: fdmprinter.def.json
  5325. msgctxt "support_bottom_pattern option zigzag"
  5326. msgid "Zig Zag"
  5327. msgstr "Cikcakk"
  5328. #: fdmprinter.def.json
  5329. msgctxt "support_interface_pattern option zigzag"
  5330. msgid "Zig Zag"
  5331. msgstr "Cikcakk"
  5332. #: fdmprinter.def.json
  5333. msgctxt "support_pattern option zigzag"
  5334. msgid "Zig Zag"
  5335. msgstr "Cikcakk"
  5336. #: fdmprinter.def.json
  5337. msgctxt "support_roof_pattern option zigzag"
  5338. msgid "Zig Zag"
  5339. msgstr "Cikcakk"
  5340. #: fdmprinter.def.json
  5341. msgctxt "top_bottom_pattern option zigzag"
  5342. msgid "Zig Zag"
  5343. msgstr "Cikcakk"
  5344. #: fdmprinter.def.json
  5345. msgctxt "top_bottom_pattern_0 option zigzag"
  5346. msgid "Zig Zag"
  5347. msgstr "Cikcakk"
  5348. #: fdmprinter.def.json
  5349. msgctxt "travel description"
  5350. msgid "travel"
  5351. msgstr "fej átpozícionálás"
  5352. #~ msgctxt "machine_head_polygon description"
  5353. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5354. #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátor nélkül)."
  5355. #~ msgctxt "machine_head_with_fans_polygon description"
  5356. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5357. #~ msgstr "A nyomtatófej 2D -s árnyéka (ventillátorral együtt)."
  5358. #~ msgctxt "spaghetti_infill_extra_volume description"
  5359. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5360. #~ msgstr "Ez egy korrekció, amivel a spagetti kitöltéskor az extrudált teljes mennyiség beállítható."
  5361. #~ msgctxt "adaptive_layer_height_threshold label"
  5362. #~ msgid "Adaptive Layers Threshold"
  5363. #~ msgstr "Küszöbérték"
  5364. #~ msgctxt "spaghetti_flow description"
  5365. #~ 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."
  5366. #~ 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."
  5367. #~ msgctxt "skin_alternate_rotation label"
  5368. #~ msgid "Alternate Skin Rotation"
  5369. #~ msgstr "Alternatív felületi forgás"
  5370. #~ msgctxt "skin_alternate_rotation description"
  5371. #~ 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."
  5372. #~ 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."
  5373. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5374. #~ msgid "Apply the extruder offset to the coordinate system."
  5375. #~ msgstr "Alkalmazza az extruder eltolását a koordinátarendszerre vonatkoztatva."
  5376. #~ msgctxt "material_flow_dependent_temperature label"
  5377. #~ msgid "Auto Temperature"
  5378. #~ msgstr "Automatikus hőfok"
  5379. #~ msgctxt "material_flow_dependent_temperature description"
  5380. #~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  5381. #~ 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."
  5382. #~ msgctxt "wireframe_strategy option compensate"
  5383. #~ msgid "Compensate"
  5384. #~ msgstr "Kompenzáció"
  5385. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5386. #~ msgid "Compensate Inner Wall Overlaps"
  5387. #~ msgstr "Kompenzálja a belső fal átfedéseit"
  5388. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5389. #~ msgid "Compensate Outer Wall Overlaps"
  5390. #~ msgstr "Kompenzálja a külső fal átfedéseit"
  5391. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5392. #~ msgid "Compensate Wall Overlaps"
  5393. #~ msgstr "Fali átlapolások kompenzálása"
  5394. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5395. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5396. #~ msgstr "Kompenzálja a száladagolást a fal azon részeinél, ahol az már elkészült."
  5397. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5398. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5399. #~ msgstr "Kompenzálja a száladagolást a belső fal azon részeinél, ahol az már elkészült."
  5400. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5401. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5402. #~ msgstr "Kompenzálja a száladagolást a külső fal azon részeinél, ahol az már elkészült."
  5403. #~ msgctxt "wireframe_top_jump description"
  5404. #~ 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."
  5405. #~ 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."
  5406. #~ msgctxt "wireframe_bottom_delay description"
  5407. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  5408. #~ 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."
  5409. #~ msgctxt "wireframe_top_delay description"
  5410. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  5411. #~ 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."
  5412. #~ msgctxt "wireframe_flat_delay description"
  5413. #~ 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."
  5414. #~ 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."
  5415. #~ msgctxt "infill_mesh_order description"
  5416. #~ 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."
  5417. #~ 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."
  5418. #~ msgctxt "wireframe_nozzle_clearance description"
  5419. #~ 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."
  5420. #~ 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."
  5421. #~ msgctxt "wireframe_up_half_speed description"
  5422. #~ msgid ""
  5423. #~ "Distance of an upward move which is extruded with half speed.\n"
  5424. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  5425. #~ 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."
  5426. #~ msgctxt "support_xy_distance_overhang description"
  5427. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5428. #~ msgstr "A támasz X/Y távolsága az alátamasztott kinyúlástól. "
  5429. #~ msgctxt "wireframe_fall_down description"
  5430. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5431. #~ 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."
  5432. #~ msgctxt "wireframe_drag_along description"
  5433. #~ 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."
  5434. #~ 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."
  5435. #~ msgctxt "speed_equalize_flow_enabled label"
  5436. #~ msgid "Equalize Filament Flow"
  5437. #~ msgstr "Adagolás kiegyenlítés"
  5438. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5439. #~ msgid "Everywhere"
  5440. #~ msgstr "Mindenhol"
  5441. #~ msgctxt "machine_filament_park_distance label"
  5442. #~ msgid "Filament Park Distance"
  5443. #~ msgstr "Nyomtatószál park távolsága"
  5444. #~ msgctxt "fill_perimeter_gaps label"
  5445. #~ msgid "Fill Gaps Between Walls"
  5446. #~ msgstr "Falak közötti rések kitöltése"
  5447. #~ msgctxt "fill_perimeter_gaps description"
  5448. #~ msgid "Fills the gaps between walls where no walls fit."
  5449. #~ msgstr "Tölti ki a falak között azokat a réseket, ahol a falak nem találkoznak."
  5450. #~ msgctxt "filter_out_tiny_gaps label"
  5451. #~ msgid "Filter Out Tiny Gaps"
  5452. #~ msgstr "Apró hézagok kiszűrése"
  5453. #~ msgctxt "filter_out_tiny_gaps description"
  5454. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  5455. #~ msgstr "Szűrje ki az apró hézagokat, hogy csökkentse a hibák megjelenését a modell külsején."
  5456. #~ msgctxt "small_feature_speed_factor_0 label"
  5457. #~ msgid "First Layer Speed"
  5458. #~ msgstr "Első réteg sebesség"
  5459. #~ msgctxt "wireframe_flow_connection description"
  5460. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  5461. #~ msgstr "Ádagoláskompenzáció felfelé vagy lefelé irányban haladva. Csak a huzalnyomásra vonatkozik."
  5462. #~ msgctxt "wireframe_flow_flat description"
  5463. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  5464. #~ msgstr "Ádagoláskompenzáció vízszintes vonalak nyomtatásakor. Csak a huzalnyomásra vonatkozik."
  5465. #~ msgctxt "wireframe_flow description"
  5466. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  5467. #~ msgstr "Ádagoláskompenzáció: az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel. Csak a huzalnyomásra vonatkozik."
  5468. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5469. #~ msgid "Flow rate compensation factor"
  5470. #~ msgstr "Adagoláskompenzáció faktor"
  5471. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5472. #~ msgid "Flow rate compensation max extrusion offset"
  5473. #~ msgstr "Maximális extrudálási eltolás adagoláskompenzáció"
  5474. #~ msgctxt "material_guid description"
  5475. #~ msgid "GUID of the material. This is set automatically. "
  5476. #~ msgstr "Az alapanyag GUID -je. Ez egy automatikus beállítás. "
  5477. #~ msgctxt "support_tree_enable description"
  5478. #~ 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."
  5479. #~ 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."
  5480. #~ msgctxt "support_tree_branch_distance description"
  5481. #~ 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."
  5482. #~ 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."
  5483. #~ msgctxt "machine_steps_per_mm_e description"
  5484. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5485. #~ 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."
  5486. #~ msgctxt "slicing_tolerance description"
  5487. #~ 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."
  5488. #~ 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."
  5489. #~ msgctxt "wall_min_flow_retract description"
  5490. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  5491. #~ 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."
  5492. #~ msgctxt "infill_mesh_order label"
  5493. #~ msgid "Infill Mesh Order"
  5494. #~ msgstr "Kitöltés háló rend"
  5495. #~ msgctxt "wireframe_strategy option knot"
  5496. #~ msgid "Knot"
  5497. #~ msgstr "Csomó"
  5498. #~ msgctxt "limit_support_retractions label"
  5499. #~ msgid "Limit Support Retractions"
  5500. #~ msgstr "Támasz visszahúzás korlátozása"
  5501. #~ msgctxt "machine_head_polygon label"
  5502. #~ msgid "Machine Head Polygon"
  5503. #~ msgstr "A nyomtatófej ábrázolása"
  5504. #~ msgctxt "machine_max_feedrate_e label"
  5505. #~ msgid "Maximum Feedrate"
  5506. #~ msgstr "Adagolás maximum"
  5507. #~ msgctxt "speed_equalize_flow_max label"
  5508. #~ msgid "Maximum Speed for Flow Equalization"
  5509. #~ msgstr "Maximális adagolás kompenzáció sebesség"
  5510. #~ msgctxt "max_extrusion_before_wipe description"
  5511. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5512. #~ msgstr "A maximális anyagmennyiség, amit ki tudunk extrudálni mielőtt a fűvókatörlés végre lesz hajtva."
  5513. #~ msgctxt "speed_equalize_flow_max description"
  5514. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5515. #~ msgstr "A maximális nyomtatási sebesség, amire a nyomtató kompenzálni tudja az adagolást."
  5516. #~ msgctxt "wall_min_flow label"
  5517. #~ msgid "Minimum Wall Flow"
  5518. #~ msgstr "Minimális fal adagolás"
  5519. #~ msgctxt "wall_min_flow description"
  5520. #~ 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."
  5521. #~ 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."
  5522. #~ msgctxt "minimum_interface_area description"
  5523. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5524. #~ 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."
  5525. #~ msgctxt "minimum_bottom_area description"
  5526. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5527. #~ 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."
  5528. #~ msgctxt "minimum_roof_area description"
  5529. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5530. #~ 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."
  5531. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5532. #~ msgid "Nowhere"
  5533. #~ msgstr "Seholsem"
  5534. #~ msgctxt "limit_support_retractions description"
  5535. #~ 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."
  5536. #~ 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."
  5537. #~ msgctxt "outer_inset_first label"
  5538. #~ msgid "Outer Before Inner Walls"
  5539. #~ msgstr "Külső falak a belsők előtt"
  5540. #~ msgctxt "wireframe_straight_before_down description"
  5541. #~ 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."
  5542. #~ 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."
  5543. #~ msgctxt "wall_min_flow_retract label"
  5544. #~ msgid "Prefer Retract"
  5545. #~ msgstr "Visszahúzás preferálása"
  5546. #~ msgctxt "wireframe_enabled description"
  5547. #~ 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."
  5548. #~ 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."
  5549. #~ msgctxt "spaghetti_infill_enabled description"
  5550. #~ 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."
  5551. #~ 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."
  5552. #~ msgctxt "speed_equalize_flow_enabled description"
  5553. #~ 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."
  5554. #~ 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."
  5555. #~ msgctxt "outer_inset_first description"
  5556. #~ 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."
  5557. #~ 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."
  5558. #~ msgctxt "support_tree_collision_resolution description"
  5559. #~ 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."
  5560. #~ 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."
  5561. #~ msgctxt "wireframe_strategy option retract"
  5562. #~ msgid "Retract"
  5563. #~ msgstr "Visszahúzás"
  5564. #~ msgctxt "retraction_enable description"
  5565. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5566. #~ msgstr "Visszahúzza a nyomtatószálat, amikor a fúvóka mozog azon a területek felett, ahol nincs nyomtatás. "
  5567. #~ msgctxt "wipe_retraction_prime_speed label"
  5568. #~ msgid "Retraction Prime Speed"
  5569. #~ msgstr "Visszatöltési sebesség"
  5570. #~ msgctxt "shell label"
  5571. #~ msgid "Shell"
  5572. #~ msgstr "Héj"
  5573. #~ msgctxt "material_shrinkage_percentage label"
  5574. #~ msgid "Shrinkage Ratio"
  5575. #~ msgstr "Zsugorodási arány"
  5576. #~ msgctxt "material_shrinkage_percentage description"
  5577. #~ msgid "Shrinkage ratio in percentage."
  5578. #~ msgstr "ZSugorodási arány százalékban megadva."
  5579. #~ msgctxt "small_feature_speed_factor_0 description"
  5580. #~ 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."
  5581. #~ 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."
  5582. #~ msgctxt "small_feature_speed_factor description"
  5583. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5584. #~ 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."
  5585. #~ msgctxt "spaghetti_flow label"
  5586. #~ msgid "Spaghetti Flow"
  5587. #~ msgstr "Spagetti adagolás"
  5588. #~ msgctxt "spaghetti_infill_enabled label"
  5589. #~ msgid "Spaghetti Infill"
  5590. #~ msgstr "Spagetti kitöltés"
  5591. #~ msgctxt "spaghetti_infill_extra_volume label"
  5592. #~ msgid "Spaghetti Infill Extra Volume"
  5593. #~ msgstr "Extra kitöltési térfogat"
  5594. #~ msgctxt "spaghetti_max_height label"
  5595. #~ msgid "Spaghetti Infill Maximum Height"
  5596. #~ msgstr "Kitöltés maximum magasság"
  5597. #~ msgctxt "spaghetti_infill_stepped label"
  5598. #~ msgid "Spaghetti Infill Stepping"
  5599. #~ msgstr "Lépésenkénti kitöltés"
  5600. #~ msgctxt "spaghetti_inset label"
  5601. #~ msgid "Spaghetti Inset"
  5602. #~ msgstr "Spagetti berakás"
  5603. #~ msgctxt "spaghetti_max_infill_angle label"
  5604. #~ msgid "Spaghetti Maximum Infill Angle"
  5605. #~ msgstr "Maximális kitöltési szög"
  5606. #~ msgctxt "wireframe_printspeed description"
  5607. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  5608. #~ msgstr "A fúvóka mozgásának sebessége az anyag extrudálásakor. Csak a huzalnyomtatásra vonatkozik."
  5609. #~ msgctxt "wireframe_printspeed_down description"
  5610. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  5611. #~ msgstr "A vonalak lefelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik."
  5612. #~ msgctxt "wireframe_printspeed_up description"
  5613. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  5614. #~ msgstr "A vonalak felfelé, Z irányban 'a levegőben' történő nyomtatási sebessége. Csak a huzalnyomásra vonatkozik."
  5615. #~ msgctxt "wireframe_printspeed_bottom description"
  5616. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  5617. #~ 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."
  5618. #~ msgctxt "wireframe_printspeed_flat description"
  5619. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  5620. #~ msgstr "A modell kontúrjának vizszintes irnyban történő nyomtatási sebessége.Csak a huzalnyomásra vonatkozik."
  5621. #~ msgctxt "wireframe_strategy description"
  5622. #~ 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."
  5623. #~ 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."
  5624. #~ msgctxt "support_tree_angle description"
  5625. #~ 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."
  5626. #~ 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."
  5627. #~ msgctxt "wireframe_roof_inset description"
  5628. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  5629. #~ msgstr "A beépített távolság, amikor a tetőtől körvonalakat bekapcsolnak. Csak a huzalnyomásra vonatkozik."
  5630. #~ msgctxt "wireframe_roof_drag_along description"
  5631. #~ 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."
  5632. #~ 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."
  5633. #~ msgctxt "wireframe_roof_fall_down description"
  5634. #~ 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."
  5635. #~ 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."
  5636. #~ msgctxt "wireframe_height description"
  5637. #~ 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."
  5638. #~ 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."
  5639. #~ msgctxt "spaghetti_max_infill_angle description"
  5640. #~ 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."
  5641. #~ 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."
  5642. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5643. #~ msgid "The maximum distance in mm to compensate."
  5644. #~ msgstr "A maximális távolság mm -ben történő kompenzációja."
  5645. #~ msgctxt "spaghetti_max_height description"
  5646. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5647. #~ msgstr "A belső tér maximális magassága, amelyet felülről ki lehet tölteni."
  5648. #~ msgctxt "mold_width description"
  5649. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5650. #~ msgstr "Az öntőforma külseje és a modell külső héja közötti minimális távolság."
  5651. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5652. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5653. #~ msgstr "Az adagolási sebesség szorzótényezője -> távolságtranszláció."
  5654. #~ msgctxt "support_tree_wall_count description"
  5655. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5656. #~ msgstr "A faágak falainak száma. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen."
  5657. #~ msgctxt "spaghetti_inset description"
  5658. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5659. #~ msgstr "Az eltolás a falaktól, ahonnan a spagetti kitöltés kinyomtatásra kerül."
  5660. #~ msgctxt "infill_pattern description"
  5661. #~ 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."
  5662. #~ 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."
  5663. #~ msgctxt "speed_layer_0 description"
  5664. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5665. #~ msgstr "A kezdő réteg sebessége. Az alacsonyabb érték segít növelni a tapadást a tárgyasztalhoz."
  5666. #~ msgctxt "material_bed_temperature_layer_0 description"
  5667. #~ msgid "The temperature used for the heated build plate at the first layer."
  5668. #~ msgstr "A tárgyasztal erre a hőmérsékletre fűt fel az első réteg nyomtatásához."
  5669. #~ msgctxt "material_bed_temperature description"
  5670. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5671. #~ 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."
  5672. #~ msgctxt "support_tree_wall_thickness description"
  5673. #~ 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."
  5674. #~ msgstr "A faágak falainak vastagsága. A vastagabb falak nyomtatása hosszabb ideig tart, de nem törik le olyan könnyen."
  5675. #~ msgctxt "adaptive_layer_height_threshold description"
  5676. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5677. #~ 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."
  5678. #~ msgctxt "wireframe_roof_outer_delay description"
  5679. #~ 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."
  5680. #~ 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."
  5681. #~ msgctxt "max_skin_angle_for_expansion description"
  5682. #~ 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."
  5683. #~ 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."
  5684. #~ msgctxt "support_tree_enable label"
  5685. #~ msgid "Tree Support"
  5686. #~ msgstr "Fa támasz"
  5687. #~ msgctxt "support_tree_angle label"
  5688. #~ msgid "Tree Support Branch Angle"
  5689. #~ msgstr "Támaszágak szöge"
  5690. #~ msgctxt "support_tree_branch_diameter label"
  5691. #~ msgid "Tree Support Branch Diameter"
  5692. #~ msgstr "Támaszágak átmérője"
  5693. #~ msgctxt "support_tree_branch_diameter_angle label"
  5694. #~ msgid "Tree Support Branch Diameter Angle"
  5695. #~ msgstr "Támaszágak átmérő szög"
  5696. #~ msgctxt "support_tree_branch_distance label"
  5697. #~ msgid "Tree Support Branch Distance"
  5698. #~ msgstr "Támaszágak távolsága"
  5699. #~ msgctxt "support_tree_collision_resolution label"
  5700. #~ msgid "Tree Support Collision Resolution"
  5701. #~ msgstr "Ütközés felbontás"
  5702. #~ msgctxt "support_tree_wall_count label"
  5703. #~ msgid "Tree Support Wall Line Count"
  5704. #~ msgstr "Fal vonal szám"
  5705. #~ msgctxt "support_tree_wall_thickness label"
  5706. #~ msgid "Tree Support Wall Thickness"
  5707. #~ msgstr "Fal vastagság"
  5708. #~ msgctxt "wireframe_bottom_delay label"
  5709. #~ msgid "WP Bottom Delay"
  5710. #~ msgstr "Alsó késleltetés"
  5711. #~ msgctxt "wireframe_printspeed_bottom label"
  5712. #~ msgid "WP Bottom Printing Speed"
  5713. #~ msgstr "Aljzat nyomtatási sebesség"
  5714. #~ msgctxt "wireframe_flow_connection label"
  5715. #~ msgid "WP Connection Flow"
  5716. #~ msgstr "Kapcsolódási adagolás"
  5717. #~ msgctxt "wireframe_height label"
  5718. #~ msgid "WP Connection Height"
  5719. #~ msgstr "Kapcsolódási magasság"
  5720. #~ msgctxt "wireframe_printspeed_down label"
  5721. #~ msgid "WP Downward Printing Speed"
  5722. #~ msgstr "Lefelé nyomtatási sebesség"
  5723. #~ msgctxt "wireframe_drag_along label"
  5724. #~ msgid "WP Drag Along"
  5725. #~ msgstr "Húzási távolság"
  5726. #~ msgctxt "wireframe_up_half_speed label"
  5727. #~ msgid "WP Ease Upward"
  5728. #~ msgstr "Emelés távolság"
  5729. #~ msgctxt "wireframe_fall_down label"
  5730. #~ msgid "WP Fall Down"
  5731. #~ msgstr "Ejtés távolság"
  5732. #~ msgctxt "wireframe_flat_delay label"
  5733. #~ msgid "WP Flat Delay"
  5734. #~ msgstr "Vízszintes késleltetés"
  5735. #~ msgctxt "wireframe_flow_flat label"
  5736. #~ msgid "WP Flat Flow"
  5737. #~ msgstr "Vízszintes adagolás"
  5738. #~ msgctxt "wireframe_flow label"
  5739. #~ msgid "WP Flow"
  5740. #~ msgstr "Adagolás"
  5741. #~ msgctxt "wireframe_printspeed_flat label"
  5742. #~ msgid "WP Horizontal Printing Speed"
  5743. #~ msgstr "Vízszintes nyomtatási sebesség"
  5744. #~ msgctxt "wireframe_top_jump label"
  5745. #~ msgid "WP Knot Size"
  5746. #~ msgstr "Csomó méret"
  5747. #~ msgctxt "wireframe_nozzle_clearance label"
  5748. #~ msgid "WP Nozzle Clearance"
  5749. #~ msgstr "Fúvúka hézag"
  5750. #~ msgctxt "wireframe_roof_drag_along label"
  5751. #~ msgid "WP Roof Drag Along"
  5752. #~ msgstr "Fedél húzás"
  5753. #~ msgctxt "wireframe_roof_fall_down label"
  5754. #~ msgid "WP Roof Fall Down"
  5755. #~ msgstr "Fedél ejtés"
  5756. #~ msgctxt "wireframe_roof_inset label"
  5757. #~ msgid "WP Roof Inset Distance"
  5758. #~ msgstr "Fedél betét távolság"
  5759. #~ msgctxt "wireframe_roof_outer_delay label"
  5760. #~ msgid "WP Roof Outer Delay"
  5761. #~ msgstr "Fedél külső késleltetése"
  5762. #~ msgctxt "wireframe_printspeed label"
  5763. #~ msgid "WP Speed"
  5764. #~ msgstr "Sebesség"
  5765. #~ msgctxt "wireframe_straight_before_down label"
  5766. #~ msgid "WP Straighten Downward Lines"
  5767. #~ msgstr "Vonal egyenesítés lefelé"
  5768. #~ msgctxt "wireframe_strategy label"
  5769. #~ msgid "WP Strategy"
  5770. #~ msgstr "Startégia"
  5771. #~ msgctxt "wireframe_top_delay label"
  5772. #~ msgid "WP Top Delay"
  5773. #~ msgstr "Felső késleltetés"
  5774. #~ msgctxt "wireframe_printspeed_up label"
  5775. #~ msgid "WP Upward Printing Speed"
  5776. #~ msgstr "Felfelé nyomtatási sebesség"
  5777. #~ msgctxt "wall_overhang_angle description"
  5778. #~ 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."
  5779. #~ 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."
  5780. #~ msgctxt "retraction_combing_max_distance description"
  5781. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5782. #~ 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."
  5783. #~ msgctxt "wipe_hop_enable description"
  5784. #~ 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."
  5785. #~ 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."
  5786. #~ msgctxt "clean_between_layers description"
  5787. #~ 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."
  5788. #~ 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."
  5789. #~ msgctxt "print_sequence description"
  5790. #~ 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."
  5791. #~ 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."
  5792. #~ msgctxt "spaghetti_infill_stepped description"
  5793. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5794. #~ 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)"
  5795. #~ msgctxt "wipe_hop_enable label"
  5796. #~ msgid "Wipe Z Hop When Retracted"
  5797. #~ msgstr "Törlési Z emelés visszahúzáskor"
  5798. #~ msgctxt "wireframe_enabled label"
  5799. #~ msgid "Wire Printing"
  5800. #~ msgstr "Huzalváz nyomtatás"
  5801. #~ msgctxt "blackmagic description"
  5802. #~ msgid "category_blackmagic"
  5803. #~ msgstr "fekete mágia kategória"
  5804. #~ msgctxt "meshfix description"
  5805. #~ msgid "category_fixes"
  5806. #~ msgstr "korrekció kategóriák"
  5807. #~ msgctxt "experimental description"
  5808. #~ msgid "experimental!"
  5809. #~ msgstr "ezek még kísérleti stádiumban lévő funkciók!"