fdmprinter.def.json.po 287 KB

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