fdmprinter.def.json.po 298 KB

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