fdmprinter.def.json.po 308 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594
  1. # Cura JSON setting files
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2023-04-28 10:03+0000\n"
  10. "PO-Revision-Date: 2022-07-15 11:17+0200\n"
  11. "Last-Translator: Bothof <info@bothof.nl>\n"
  12. "Language-Team: Finnish\n"
  13. "Language: fi_FI\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 3.1.1\n"
  18. #: fdmprinter.def.json
  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 "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa."
  22. #: fdmprinter.def.json
  23. msgctxt "material_no_load_move_factor description"
  24. 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."
  25. msgstr ""
  26. #: fdmprinter.def.json
  27. msgctxt "roofing_angles description"
  28. 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)."
  29. msgstr "Luettelo käytettävistä linjojen kokonaislukusuunnista, kun yläpinnan pintakalvokerroksilla käytetään linja- tai siksak-kuviota. Tämän luettelon elementtejä käytetään järjestyksessä kerrosten edetessä, ja kun luettelon loppu saavutetaan, aloitetaan taas alusta. Luettelon kohteet on erotettu pilkuilla, ja koko luettelo on hakasulkeiden sisällä. Oletusarvo on tyhjä luettelo, jolloin käytetään perinteisiä oletuskulmia (45 ja 135 astetta)."
  30. #: fdmprinter.def.json
  31. msgctxt "skin_angles description"
  32. 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)."
  33. msgstr "Luettelo käytettävistä linjojen kokonaislukusuunnista, kun ylimmällä/alimmalla kerroksella käytetään linja- tai siksak-kuviota. Tämän luettelon elementtejä käytetään järjestyksessä kerrosten edetessä, ja kun luettelon loppu saavutetaan, aloitetaan taas alusta. Luettelon kohteet on erotettu pilkuilla, ja koko luettelo on hakasulkeiden sisällä. Oletusarvo on tyhjä luettelo, jolloin käytetään perinteisiä oletuskulmia (45 ja 135 astetta)."
  34. #: fdmprinter.def.json
  35. msgctxt "support_infill_angles description"
  36. 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."
  37. msgstr ""
  38. #: fdmprinter.def.json
  39. msgctxt "support_bottom_angles description"
  40. 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)."
  41. msgstr ""
  42. #: fdmprinter.def.json
  43. msgctxt "support_interface_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 default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  45. msgstr ""
  46. #: fdmprinter.def.json
  47. msgctxt "support_roof_angles description"
  48. 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)."
  49. msgstr ""
  50. #: fdmprinter.def.json
  51. msgctxt "infill_angles description"
  52. 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)."
  53. msgstr "Luettelo käytettävistä linjojen kokonaislukusuunnista. Tämän luettelon elementtejä käytetään järjestyksessä kerrosten edetessä, ja kun luettelon loppu saavutetaan, aloitetaan taas alusta. Luettelon kohteet on erotettu pilkuilla, ja koko luettelo on hakasulkeiden sisällä. Oletusarvo on tyhjä luettelo, jolloin käytetään perinteisiä oletuskulmia (45 ja 135 astetta linja- ja siksak-kuvioille ja 45 astetta muille kuvioille)."
  54. #: fdmprinter.def.json
  55. msgctxt "nozzle_disallowed_areas description"
  56. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  57. msgstr "Monikulmioluettelo, jossa on alueet, joihin suutin ei saa siirtyä."
  58. #: fdmprinter.def.json
  59. msgctxt "machine_disallowed_areas description"
  60. msgid "A list of polygons with areas the print head is not allowed to enter."
  61. msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä."
  62. #: fdmprinter.def.json
  63. msgctxt "brim_inside_margin description"
  64. 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."
  65. msgstr ""
  66. #: fdmprinter.def.json
  67. msgctxt "support_tree_branch_reach_limit description"
  68. 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) "
  69. msgstr ""
  70. #: fdmprinter.def.json
  71. msgctxt "extruder_prime_pos_abs label"
  72. msgid "Absolute Extruder Prime Position"
  73. msgstr "Absoluuttinen suulakkeen esitäytön sijainti"
  74. #: fdmprinter.def.json
  75. msgctxt "adaptive_layer_height_variation label"
  76. msgid "Adaptive Layers Maximum Variation"
  77. msgstr ""
  78. #: fdmprinter.def.json
  79. msgctxt "adaptive_layer_height_threshold label"
  80. msgid "Adaptive Layers Topography Size"
  81. msgstr ""
  82. #: fdmprinter.def.json
  83. msgctxt "adaptive_layer_height_variation_step label"
  84. msgid "Adaptive Layers Variation Step Size"
  85. msgstr ""
  86. #: fdmprinter.def.json
  87. msgctxt "adaptive_layer_height_enabled description"
  88. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  89. msgstr ""
  90. #: fdmprinter.def.json
  91. msgctxt "infill_wall_line_count description"
  92. msgid ""
  93. "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"
  94. "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."
  95. msgstr ""
  96. #: fdmprinter.def.json
  97. msgctxt "platform_adhesion description"
  98. msgid "Adhesion"
  99. msgstr "Tarttuvuus"
  100. #: fdmprinter.def.json
  101. msgctxt "material_adhesion_tendency label"
  102. msgid "Adhesion Tendency"
  103. msgstr ""
  104. #: fdmprinter.def.json
  105. msgctxt "skin_overlap description"
  106. 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."
  107. msgstr ""
  108. #: fdmprinter.def.json
  109. msgctxt "skin_overlap_mm description"
  110. 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."
  111. msgstr ""
  112. #: fdmprinter.def.json
  113. msgctxt "infill_sparse_density description"
  114. msgid "Adjusts the density of infill of the print."
  115. msgstr "Säätää tulostuksen täytön tiheyttä."
  116. #: fdmprinter.def.json
  117. msgctxt "support_interface_density description"
  118. 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."
  119. msgstr "Säätää tukirakenteen kattojen ja lattioiden tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  120. #: fdmprinter.def.json
  121. msgctxt "support_tree_top_rate description"
  122. 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."
  123. msgstr ""
  124. #: fdmprinter.def.json
  125. msgctxt "support_infill_rate description"
  126. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  127. msgstr "Säätää tukirakenteen tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  128. #: fdmprinter.def.json
  129. msgctxt "material_diameter description"
  130. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  131. msgstr "Säätää käytetyn tulostuslangan halkaisijaa. Määritä tämä arvo vastaamaan käytetyn tulostuslangan halkaisijaa."
  132. #: fdmprinter.def.json
  133. msgctxt "support_type description"
  134. 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."
  135. msgstr "Säädä tukirakenteiden sijoittelua. Sijoituspaikka voidaan asettaa alustaa koskettavaksi tai kaikkialle. Kaikkialla-asetuksella tukirakenteet tulostetaan myös malliin."
  136. #: fdmprinter.def.json
  137. msgctxt "prime_tower_wipe_enabled description"
  138. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  139. msgstr "Kun esitäyttötorni on tulostettu yhdellä suuttimella, pyyhi toisesta suuttimesta tihkunut materiaali pois esitäyttötornissa."
  140. #: fdmprinter.def.json
  141. msgctxt "retraction_hop_after_extruder_switch description"
  142. 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."
  143. msgstr "Alustaa lasketaan koneen vaihdettua yhdestä suulakkeesta toiseen, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suutinta jättämästä tihkunutta ainetta tulosteen ulkopuolelle."
  144. #: fdmprinter.def.json
  145. msgctxt "retraction_combing option all"
  146. msgid "All"
  147. msgstr "Kaikki"
  148. #: fdmprinter.def.json
  149. msgctxt "print_sequence option all_at_once"
  150. msgid "All at Once"
  151. msgstr "Kaikki kerralla"
  152. #: fdmprinter.def.json
  153. msgctxt "resolution description"
  154. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  155. msgstr "Kaikki tulostuksen resoluutioon vaikuttavat asetukset. Näillä asetuksilla on suuri vaikutus laatuun (ja tulostusaikaan)."
  156. #: fdmprinter.def.json
  157. msgctxt "alternate_extra_perimeter label"
  158. msgid "Alternate Extra Wall"
  159. msgstr "Vuoroittainen lisäseinämä"
  160. #: fdmprinter.def.json
  161. msgctxt "alternate_carve_order label"
  162. msgid "Alternate Mesh Removal"
  163. msgstr "Vuoroittainen verkon poisto"
  164. #: fdmprinter.def.json
  165. msgctxt "material_alternate_walls label"
  166. msgid "Alternate Wall Directions"
  167. msgstr ""
  168. #: fdmprinter.def.json
  169. msgctxt "material_alternate_walls description"
  170. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  171. msgstr ""
  172. #: fdmprinter.def.json
  173. msgctxt "machine_buildplate_type option aluminum"
  174. msgid "Aluminum"
  175. msgstr ""
  176. #: fdmprinter.def.json
  177. msgctxt "machine_always_write_active_tool label"
  178. msgid "Always Write Active Tool"
  179. msgstr ""
  180. #: fdmprinter.def.json
  181. msgctxt "travel_retract_before_outer_wall description"
  182. msgid "Always retract when moving to start an outer wall."
  183. msgstr "Vedä aina takaisin, kun siirrytään ulkoseinämän aloittamista varten."
  184. #: fdmprinter.def.json
  185. msgctxt "hole_xy_offset description"
  186. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  187. msgstr ""
  188. #: fdmprinter.def.json
  189. msgctxt "xy_offset description"
  190. 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."
  191. msgstr "Kaikkia monikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla kompensoidaan liian suuria aukkoja ja negatiivisilla arvoilla kompensoidaan liian pieniä aukkoja."
  192. #: fdmprinter.def.json
  193. msgctxt "xy_offset_layer_0 description"
  194. 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\"."
  195. msgstr "Kaikkia monikulmioita ensimmäisessä kerroksessa koskeva siirtymien määrä. Negatiivisella arvolla kompensoidaan ensimmäisen kerroksen litistymistä, joka tunnetaan \"elefantin jalkana\"."
  196. #: fdmprinter.def.json
  197. msgctxt "support_offset description"
  198. 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."
  199. msgstr "Kaikkia tukimonikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla tasoitetaan tukialueita ja saadaan aikaan vankempi tuki."
  200. #: fdmprinter.def.json
  201. msgctxt "support_bottom_offset description"
  202. msgid "Amount of offset applied to the floors of the support."
  203. msgstr ""
  204. #: fdmprinter.def.json
  205. msgctxt "support_roof_offset description"
  206. msgid "Amount of offset applied to the roofs of the support."
  207. msgstr ""
  208. #: fdmprinter.def.json
  209. msgctxt "support_interface_offset description"
  210. msgid "Amount of offset applied to the support interface polygons."
  211. msgstr ""
  212. #: fdmprinter.def.json
  213. msgctxt "wipe_retraction_amount description"
  214. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  215. msgstr ""
  216. #: fdmprinter.def.json
  217. msgctxt "sub_div_rad_add description"
  218. 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."
  219. msgstr "Lisäys säteeseen kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat paksumman kuoren pienempiin kuutioihin mallin rajojen lähellä."
  220. #: fdmprinter.def.json
  221. msgctxt "anti_overhang_mesh label"
  222. msgid "Anti Overhang Mesh"
  223. msgstr "Verkko ulokkeiden estoon"
  224. #: fdmprinter.def.json
  225. msgctxt "material_anti_ooze_retracted_position label"
  226. msgid "Anti-ooze Retracted Position"
  227. msgstr ""
  228. #: fdmprinter.def.json
  229. msgctxt "material_anti_ooze_retraction_speed label"
  230. msgid "Anti-ooze Retraction Speed"
  231. msgstr ""
  232. #: fdmprinter.def.json
  233. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  234. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  235. msgstr ""
  236. #: fdmprinter.def.json
  237. msgctxt "interlocking_enable description"
  238. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  239. msgstr ""
  240. #: fdmprinter.def.json
  241. msgctxt "travel_avoid_other_parts label"
  242. msgid "Avoid Printed Parts When Traveling"
  243. msgstr "Vältä tulostettuja osia siirtoliikkeen yhteydessä"
  244. #: fdmprinter.def.json
  245. msgctxt "travel_avoid_supports label"
  246. msgid "Avoid Supports When Traveling"
  247. msgstr ""
  248. #: fdmprinter.def.json
  249. msgctxt "z_seam_position option back"
  250. msgid "Back"
  251. msgstr ""
  252. #: fdmprinter.def.json
  253. msgctxt "z_seam_position option backleft"
  254. msgid "Back Left"
  255. msgstr ""
  256. #: fdmprinter.def.json
  257. msgctxt "z_seam_position option backright"
  258. msgid "Back Right"
  259. msgstr ""
  260. #: fdmprinter.def.json
  261. msgctxt "machine_gcode_flavor option BFB"
  262. msgid "Bits from Bytes"
  263. msgstr "Bits from Bytes"
  264. #: fdmprinter.def.json
  265. msgctxt "magic_mesh_surface_mode option both"
  266. msgid "Both"
  267. msgstr "Molemmat"
  268. #: fdmprinter.def.json
  269. msgctxt "support_interface_priority option nothing"
  270. msgid "Both overlap"
  271. msgstr ""
  272. #: fdmprinter.def.json
  273. msgctxt "bottom_layers label"
  274. msgid "Bottom Layers"
  275. msgstr "Alakerrokset"
  276. #: fdmprinter.def.json
  277. msgctxt "top_bottom_pattern_0 label"
  278. msgid "Bottom Pattern Initial Layer"
  279. msgstr "Alaosan kuvio, alkukerros"
  280. #: fdmprinter.def.json
  281. msgctxt "bottom_skin_expand_distance label"
  282. msgid "Bottom Skin Expand Distance"
  283. msgstr "Alapintakalvon laajennuksen etäisyys"
  284. #: fdmprinter.def.json
  285. msgctxt "bottom_skin_preshrink label"
  286. msgid "Bottom Skin Removal Width"
  287. msgstr "Alapintakalvon poistoleveys"
  288. #: fdmprinter.def.json
  289. msgctxt "bottom_thickness label"
  290. msgid "Bottom Thickness"
  291. msgstr "Alaosan paksuus"
  292. #: fdmprinter.def.json
  293. msgctxt "support_tree_top_rate label"
  294. msgid "Branch Density"
  295. msgstr ""
  296. #: fdmprinter.def.json
  297. msgctxt "support_tree_branch_diameter label"
  298. msgid "Branch Diameter"
  299. msgstr ""
  300. #: fdmprinter.def.json
  301. msgctxt "support_tree_branch_diameter_angle label"
  302. msgid "Branch Diameter Angle"
  303. msgstr ""
  304. #: fdmprinter.def.json
  305. msgctxt "material_break_preparation_retracted_position label"
  306. msgid "Break Preparation Retracted Position"
  307. msgstr ""
  308. #: fdmprinter.def.json
  309. msgctxt "material_break_preparation_speed label"
  310. msgid "Break Preparation Retraction Speed"
  311. msgstr ""
  312. #: fdmprinter.def.json
  313. msgctxt "material_break_preparation_temperature label"
  314. msgid "Break Preparation Temperature"
  315. msgstr ""
  316. #: fdmprinter.def.json
  317. msgctxt "material_break_retracted_position label"
  318. msgid "Break Retracted Position"
  319. msgstr ""
  320. #: fdmprinter.def.json
  321. msgctxt "material_break_speed label"
  322. msgid "Break Retraction Speed"
  323. msgstr ""
  324. #: fdmprinter.def.json
  325. msgctxt "material_break_temperature label"
  326. msgid "Break Temperature"
  327. msgstr ""
  328. #: fdmprinter.def.json
  329. msgctxt "support_skip_some_zags label"
  330. msgid "Break Up Support In Chunks"
  331. msgstr "Riko tuki lohkoihin"
  332. #: fdmprinter.def.json
  333. msgctxt "bridge_fan_speed label"
  334. msgid "Bridge Fan Speed"
  335. msgstr ""
  336. #: fdmprinter.def.json
  337. msgctxt "bridge_enable_more_layers label"
  338. msgid "Bridge Has Multiple Layers"
  339. msgstr ""
  340. #: fdmprinter.def.json
  341. msgctxt "bridge_skin_density_2 label"
  342. msgid "Bridge Second Skin Density"
  343. msgstr ""
  344. #: fdmprinter.def.json
  345. msgctxt "bridge_fan_speed_2 label"
  346. msgid "Bridge Second Skin Fan Speed"
  347. msgstr ""
  348. #: fdmprinter.def.json
  349. msgctxt "bridge_skin_material_flow_2 label"
  350. msgid "Bridge Second Skin Flow"
  351. msgstr ""
  352. #: fdmprinter.def.json
  353. msgctxt "bridge_skin_speed_2 label"
  354. msgid "Bridge Second Skin Speed"
  355. msgstr ""
  356. #: fdmprinter.def.json
  357. msgctxt "bridge_skin_density label"
  358. msgid "Bridge Skin Density"
  359. msgstr ""
  360. #: fdmprinter.def.json
  361. msgctxt "bridge_skin_material_flow label"
  362. msgid "Bridge Skin Flow"
  363. msgstr ""
  364. #: fdmprinter.def.json
  365. msgctxt "bridge_skin_speed label"
  366. msgid "Bridge Skin Speed"
  367. msgstr ""
  368. #: fdmprinter.def.json
  369. msgctxt "bridge_skin_support_threshold label"
  370. msgid "Bridge Skin Support Threshold"
  371. msgstr ""
  372. #: fdmprinter.def.json
  373. msgctxt "bridge_sparse_infill_max_density label"
  374. msgid "Bridge Sparse Infill Max Density"
  375. msgstr ""
  376. #: fdmprinter.def.json
  377. msgctxt "bridge_skin_density_3 label"
  378. msgid "Bridge Third Skin Density"
  379. msgstr ""
  380. #: fdmprinter.def.json
  381. msgctxt "bridge_fan_speed_3 label"
  382. msgid "Bridge Third Skin Fan Speed"
  383. msgstr ""
  384. #: fdmprinter.def.json
  385. msgctxt "bridge_skin_material_flow_3 label"
  386. msgid "Bridge Third Skin Flow"
  387. msgstr ""
  388. #: fdmprinter.def.json
  389. msgctxt "bridge_skin_speed_3 label"
  390. msgid "Bridge Third Skin Speed"
  391. msgstr ""
  392. #: fdmprinter.def.json
  393. msgctxt "bridge_wall_coast label"
  394. msgid "Bridge Wall Coasting"
  395. msgstr ""
  396. #: fdmprinter.def.json
  397. msgctxt "bridge_wall_material_flow label"
  398. msgid "Bridge Wall Flow"
  399. msgstr ""
  400. #: fdmprinter.def.json
  401. msgctxt "bridge_wall_speed label"
  402. msgid "Bridge Wall Speed"
  403. msgstr ""
  404. #: fdmprinter.def.json
  405. msgctxt "adhesion_type option brim"
  406. msgid "Brim"
  407. msgstr "Reunus"
  408. #: fdmprinter.def.json
  409. msgctxt "brim_gap label"
  410. msgid "Brim Distance"
  411. msgstr ""
  412. #: fdmprinter.def.json
  413. msgctxt "brim_inside_margin label"
  414. msgid "Brim Inside Avoid Margin"
  415. msgstr ""
  416. #: fdmprinter.def.json
  417. msgctxt "brim_line_count label"
  418. msgid "Brim Line Count"
  419. msgstr "Reunuksen linjaluku"
  420. #: fdmprinter.def.json
  421. msgctxt "brim_outside_only label"
  422. msgid "Brim Only on Outside"
  423. msgstr "Reunus vain ulkopuolella"
  424. #: fdmprinter.def.json
  425. msgctxt "brim_replaces_support label"
  426. msgid "Brim Replaces Support"
  427. msgstr ""
  428. #: fdmprinter.def.json
  429. msgctxt "brim_width label"
  430. msgid "Brim Width"
  431. msgstr "Reunuksen leveys"
  432. #: fdmprinter.def.json
  433. msgctxt "platform_adhesion label"
  434. msgid "Build Plate Adhesion"
  435. msgstr "Alustan tarttuvuus"
  436. #: fdmprinter.def.json
  437. msgctxt "adhesion_extruder_nr label"
  438. msgid "Build Plate Adhesion Extruder"
  439. msgstr "Alustan tarttuvuuden suulake"
  440. #: fdmprinter.def.json
  441. msgctxt "adhesion_type label"
  442. msgid "Build Plate Adhesion Type"
  443. msgstr "Alustan tarttuvuustyyppi"
  444. #: fdmprinter.def.json
  445. msgctxt "machine_buildplate_type label"
  446. msgid "Build Plate Material"
  447. msgstr ""
  448. #: fdmprinter.def.json
  449. msgctxt "machine_shape label"
  450. msgid "Build Plate Shape"
  451. msgstr "Alustan muoto"
  452. #: fdmprinter.def.json
  453. msgctxt "material_bed_temperature label"
  454. msgid "Build Plate Temperature"
  455. msgstr "Alustan lämpötila"
  456. #: fdmprinter.def.json
  457. msgctxt "material_bed_temperature_layer_0 label"
  458. msgid "Build Plate Temperature Initial Layer"
  459. msgstr "Alustan lämpötila (alkukerros)"
  460. #: fdmprinter.def.json
  461. msgctxt "build_volume_temperature label"
  462. msgid "Build Volume Temperature"
  463. msgstr ""
  464. #: fdmprinter.def.json
  465. msgctxt "center_object label"
  466. msgid "Center Object"
  467. msgstr ""
  468. #: fdmprinter.def.json
  469. msgctxt "conical_overhang_enabled description"
  470. 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."
  471. msgstr "Muuttaa tulostettavan mallin geometriaa niin, että tarvitaan mahdollisimman vähän tukea. Jyrkistä ulokkeista tulee matalia ulokkeita. Ulokkeiset alueet putoavat alas, ja niistä tulee pystysuorempia."
  472. #: fdmprinter.def.json
  473. msgctxt "support_structure description"
  474. 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."
  475. msgstr ""
  476. #: fdmprinter.def.json
  477. msgctxt "coasting_speed label"
  478. msgid "Coasting Speed"
  479. msgstr "Vapaaliukunopeus"
  480. #: fdmprinter.def.json
  481. msgctxt "coasting_volume label"
  482. msgid "Coasting Volume"
  483. msgstr "Vapaaliu'un ainemäärä"
  484. #: fdmprinter.def.json
  485. msgctxt "coasting_enable description"
  486. 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."
  487. msgstr "Vapaaliu'ulla siirtoreitti korvaa pursotusreitin viimeisen osan. Tihkuvalla aineella tulostetaan pursotusreitin viimeinen osuus rihmoittumisen vähentämiseksi."
  488. #: fdmprinter.def.json
  489. msgctxt "retraction_combing label"
  490. msgid "Combing Mode"
  491. msgstr "Pyyhkäisytila"
  492. #: fdmprinter.def.json
  493. msgctxt "retraction_combing description"
  494. 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."
  495. msgstr ""
  496. #: fdmprinter.def.json
  497. msgctxt "command_line_settings label"
  498. msgid "Command Line Settings"
  499. msgstr "Komentorivin asetukset"
  500. #: fdmprinter.def.json
  501. msgctxt "infill_pattern option concentric"
  502. msgid "Concentric"
  503. msgstr "Samankeskinen"
  504. #: fdmprinter.def.json
  505. msgctxt "ironing_pattern option concentric"
  506. msgid "Concentric"
  507. msgstr "Samankeskinen"
  508. #: fdmprinter.def.json
  509. msgctxt "roofing_pattern option concentric"
  510. msgid "Concentric"
  511. msgstr "Samankeskinen"
  512. #: fdmprinter.def.json
  513. msgctxt "support_bottom_pattern option concentric"
  514. msgid "Concentric"
  515. msgstr "Samankeskinen"
  516. #: fdmprinter.def.json
  517. msgctxt "support_interface_pattern option concentric"
  518. msgid "Concentric"
  519. msgstr "Samankeskinen"
  520. #: fdmprinter.def.json
  521. msgctxt "support_pattern option concentric"
  522. msgid "Concentric"
  523. msgstr "Samankeskinen"
  524. #: fdmprinter.def.json
  525. msgctxt "support_roof_pattern option concentric"
  526. msgid "Concentric"
  527. msgstr "Samankeskinen"
  528. #: fdmprinter.def.json
  529. msgctxt "top_bottom_pattern option concentric"
  530. msgid "Concentric"
  531. msgstr "Samankeskinen"
  532. #: fdmprinter.def.json
  533. msgctxt "top_bottom_pattern_0 option concentric"
  534. msgid "Concentric"
  535. msgstr "Samankeskinen"
  536. #: fdmprinter.def.json
  537. msgctxt "support_conical_angle label"
  538. msgid "Conical Support Angle"
  539. msgstr "Kartiomaisen tuen kulma"
  540. #: fdmprinter.def.json
  541. msgctxt "support_conical_min_width label"
  542. msgid "Conical Support Minimum Width"
  543. msgstr "Kartioimaisen tuen minimileveys"
  544. #: fdmprinter.def.json
  545. msgctxt "zig_zaggify_infill label"
  546. msgid "Connect Infill Lines"
  547. msgstr "Yhdistä täyttölinjat"
  548. #: fdmprinter.def.json
  549. msgctxt "connect_infill_polygons label"
  550. msgid "Connect Infill Polygons"
  551. msgstr ""
  552. #: fdmprinter.def.json
  553. msgctxt "zig_zaggify_support label"
  554. msgid "Connect Support Lines"
  555. msgstr ""
  556. #: fdmprinter.def.json
  557. msgctxt "support_connect_zigzags label"
  558. msgid "Connect Support ZigZags"
  559. msgstr "Yhdistä tuki-siksakit"
  560. #: fdmprinter.def.json
  561. msgctxt "connect_skin_polygons label"
  562. msgid "Connect Top/Bottom Polygons"
  563. msgstr ""
  564. #: fdmprinter.def.json
  565. msgctxt "connect_infill_polygons description"
  566. 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."
  567. msgstr ""
  568. #: fdmprinter.def.json
  569. msgctxt "support_connect_zigzags description"
  570. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  571. msgstr "Yhdistä siksakit. Tämä lisää siksak-tukirakenteen lujuutta."
  572. #: fdmprinter.def.json
  573. msgctxt "zig_zaggify_support description"
  574. 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."
  575. msgstr ""
  576. #: fdmprinter.def.json
  577. msgctxt "zig_zaggify_infill description"
  578. 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."
  579. msgstr ""
  580. #: fdmprinter.def.json
  581. msgctxt "connect_skin_polygons description"
  582. 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."
  583. msgstr ""
  584. #: fdmprinter.def.json
  585. msgctxt "z_seam_corner description"
  586. 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."
  587. msgstr ""
  588. #: fdmprinter.def.json
  589. msgctxt "infill_multiplier description"
  590. 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."
  591. msgstr ""
  592. #: fdmprinter.def.json
  593. msgctxt "machine_nozzle_cool_down_speed label"
  594. msgid "Cool Down Speed"
  595. msgstr ""
  596. #: fdmprinter.def.json
  597. msgctxt "cooling description"
  598. msgid "Cooling"
  599. msgstr "Jäähdytys"
  600. #: fdmprinter.def.json
  601. msgctxt "cooling label"
  602. msgid "Cooling"
  603. msgstr "Jäähdytys"
  604. #: fdmprinter.def.json
  605. msgctxt "infill_pattern option cross"
  606. msgid "Cross"
  607. msgstr "Risti"
  608. #: fdmprinter.def.json
  609. msgctxt "support_pattern option cross"
  610. msgid "Cross"
  611. msgstr "Risti"
  612. #: fdmprinter.def.json
  613. msgctxt "infill_pattern option cross_3d"
  614. msgid "Cross 3D"
  615. msgstr "Risti 3D"
  616. #: fdmprinter.def.json
  617. msgctxt "cross_infill_pocket_size label"
  618. msgid "Cross 3D Pocket Size"
  619. msgstr "Risti 3D:n taskujen koko"
  620. #: fdmprinter.def.json
  621. msgctxt "cross_support_density_image label"
  622. msgid "Cross Fill Density Image for Support"
  623. msgstr ""
  624. #: fdmprinter.def.json
  625. msgctxt "cross_infill_density_image label"
  626. msgid "Cross Infill Density Image"
  627. msgstr ""
  628. #: fdmprinter.def.json
  629. msgctxt "material_crystallinity label"
  630. msgid "Crystalline Material"
  631. msgstr ""
  632. #: fdmprinter.def.json
  633. msgctxt "infill_pattern option cubic"
  634. msgid "Cubic"
  635. msgstr "Kuutio"
  636. #: fdmprinter.def.json
  637. msgctxt "infill_pattern option cubicsubdiv"
  638. msgid "Cubic Subdivision"
  639. msgstr "Kuution alajako"
  640. #: fdmprinter.def.json
  641. msgctxt "sub_div_rad_add label"
  642. msgid "Cubic Subdivision Shell"
  643. msgstr "Kuution alajakokuori"
  644. #: fdmprinter.def.json
  645. msgctxt "cutting_mesh label"
  646. msgid "Cutting Mesh"
  647. msgstr "Leikkaava verkko"
  648. #: fdmprinter.def.json
  649. msgctxt "material_flow_temp_graph description"
  650. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  651. msgstr "Tiedot, jotka yhdistävät materiaalivirran (mm3 sekunnissa) lämpötilaan (celsiusastetta)."
  652. #: fdmprinter.def.json
  653. msgctxt "machine_acceleration label"
  654. msgid "Default Acceleration"
  655. msgstr "Oletuskiihtyvyys"
  656. #: fdmprinter.def.json
  657. msgctxt "default_material_bed_temperature label"
  658. msgid "Default Build Plate Temperature"
  659. msgstr ""
  660. #: fdmprinter.def.json
  661. msgctxt "machine_max_jerk_e label"
  662. msgid "Default Filament Jerk"
  663. msgstr "Oletusarvoinen tulostuslangan nykäisy"
  664. #: fdmprinter.def.json
  665. msgctxt "default_material_print_temperature label"
  666. msgid "Default Printing Temperature"
  667. msgstr "Oletustulostuslämpötila"
  668. #: fdmprinter.def.json
  669. msgctxt "machine_max_jerk_xy label"
  670. msgid "Default X-Y Jerk"
  671. msgstr "Oletusarvoinen X-Y-nykäisy"
  672. #: fdmprinter.def.json
  673. msgctxt "machine_max_jerk_z label"
  674. msgid "Default Z Jerk"
  675. msgstr "Oletusarvoinen Z-nykäisy"
  676. #: fdmprinter.def.json
  677. msgctxt "machine_max_jerk_xy description"
  678. msgid "Default jerk for movement in the horizontal plane."
  679. msgstr "Vaakatasoisen liikkeen oletusnykäisy."
  680. #: fdmprinter.def.json
  681. msgctxt "machine_max_jerk_z description"
  682. msgid "Default jerk for the motor of the Z-direction."
  683. msgstr "Z-suunnan moottorin oletusnykäisy."
  684. #: fdmprinter.def.json
  685. msgctxt "machine_max_jerk_e description"
  686. msgid "Default jerk for the motor of the filament."
  687. msgstr "Tulostuslangan moottorin oletusnykäisy."
  688. #: fdmprinter.def.json
  689. msgctxt "bridge_settings_enabled description"
  690. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  691. msgstr ""
  692. #: fdmprinter.def.json
  693. msgctxt "inset_direction description"
  694. 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."
  695. msgstr ""
  696. #: fdmprinter.def.json
  697. msgctxt "infill_mesh_order description"
  698. 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."
  699. msgstr ""
  700. #: fdmprinter.def.json
  701. msgctxt "lightning_infill_support_angle description"
  702. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  703. msgstr ""
  704. #: fdmprinter.def.json
  705. msgctxt "lightning_infill_overhang_angle description"
  706. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  707. msgstr ""
  708. #: fdmprinter.def.json
  709. msgctxt "material_diameter label"
  710. msgid "Diameter"
  711. msgstr "Läpimitta"
  712. #: fdmprinter.def.json
  713. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  714. msgid "Diameter Increase To Model"
  715. msgstr ""
  716. #: fdmprinter.def.json
  717. msgctxt "support_tree_bp_diameter description"
  718. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  719. msgstr ""
  720. #: fdmprinter.def.json
  721. msgctxt "adhesion_type description"
  722. 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."
  723. msgstr "Erilaisia vaihtoehtoja, jotka auttavat pursotuksen esitäytössä ja mallin kiinnityksessä alustaan. Reunus lisää mallin pohjan ympärille yksittäisen tasaisen alueen, joka estää vääntymistä. Pohjaristikko lisää paksun, katolla varustetun ristikon mallin alle. Helma on mallin ympärille piirrettävä viiva, joka ei kosketa mallia."
  724. #: fdmprinter.def.json
  725. msgctxt "machine_disallowed_areas label"
  726. msgid "Disallowed Areas"
  727. msgstr ""
  728. #: fdmprinter.def.json
  729. msgctxt "infill_line_distance description"
  730. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  731. msgstr "Etäisyys tulostettujen täyttölinjojen välillä. Tämä asetus lasketaan täytön tiheydestä ja täyttölinjan leveydestä."
  732. #: fdmprinter.def.json
  733. msgctxt "support_initial_layer_line_distance description"
  734. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  735. msgstr ""
  736. #: fdmprinter.def.json
  737. msgctxt "support_bottom_line_distance description"
  738. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  739. msgstr "Tulostettujen tukilattialinjojen välinen etäisyys. Tämä asetus lasketaan tukilattian tiheysarvosta, mutta sitä voidaan säätää erikseen."
  740. #: fdmprinter.def.json
  741. msgctxt "support_roof_line_distance description"
  742. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  743. msgstr "Tulostettujen tukikattolinjojen välinen etäisyys. Tämä asetus lasketaan tukikaton tiheysarvosta, mutta sitä voidaan säätää erikseen."
  744. #: fdmprinter.def.json
  745. msgctxt "support_line_distance description"
  746. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  747. msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella."
  748. #: fdmprinter.def.json
  749. msgctxt "support_bottom_distance description"
  750. msgid "Distance from the print to the bottom of the support."
  751. msgstr "Etäisyys tulosteesta tuen alaosaan."
  752. #: fdmprinter.def.json
  753. msgctxt "support_top_distance description"
  754. msgid "Distance from the top of the support to the print."
  755. msgstr "Etäisyys tuen yläosasta tulosteeseen."
  756. #: fdmprinter.def.json
  757. msgctxt "support_z_distance description"
  758. 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."
  759. msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään ylöspäin kerroksen korkeuden kerrannaiseksi."
  760. #: fdmprinter.def.json
  761. msgctxt "infill_wipe_dist description"
  762. 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."
  763. msgstr "Siirtoliikkeen pituus jokaisen täyttölinjan jälkeen, jotta täyttö tarttuu seinämiin paremmin. Tämä vaihtoehto on samanlainen kuin täytön limitys, mutta ilman pursotusta ja tapahtuu vain toisessa päässä täyttölinjaa."
  764. #: fdmprinter.def.json
  765. msgctxt "wall_0_wipe_dist description"
  766. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  767. msgstr "Siirtoliikkeen etäisyys ulkoseinämän jälkeen Z-sauman piilottamiseksi paremmin."
  768. #: fdmprinter.def.json
  769. msgctxt "draft_shield_dist description"
  770. msgid "Distance of the draft shield from the print, in the X/Y directions."
  771. msgstr "Vetosuojuksen etäisyys tulosteesta X-/Y-suunnissa."
  772. #: fdmprinter.def.json
  773. msgctxt "ooze_shield_dist description"
  774. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  775. msgstr "Tihkusuojuksen etäisyys tulosteesta X-/Y-suunnissa."
  776. #: fdmprinter.def.json
  777. msgctxt "support_xy_distance_overhang description"
  778. msgid "Distance of the support structure from the overhang in the X/Y directions."
  779. msgstr ""
  780. #: fdmprinter.def.json
  781. msgctxt "support_xy_distance description"
  782. msgid "Distance of the support structure from the print in the X/Y directions."
  783. msgstr "Tukirakenteen etäisyys tulosteesta X-/Y-suunnissa."
  784. #: fdmprinter.def.json
  785. msgctxt "min_infill_area description"
  786. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  787. msgstr "Älä muodosta tätä pienempiä täyttöalueita (käytä sen sijaan pintakalvoa)."
  788. #: fdmprinter.def.json
  789. msgctxt "draft_shield_height label"
  790. msgid "Draft Shield Height"
  791. msgstr "Vetosuojuksen korkeus"
  792. #: fdmprinter.def.json
  793. msgctxt "draft_shield_height_limitation label"
  794. msgid "Draft Shield Limitation"
  795. msgstr "Vetosuojuksen rajoitus"
  796. #: fdmprinter.def.json
  797. msgctxt "draft_shield_dist label"
  798. msgid "Draft Shield X/Y Distance"
  799. msgstr "Vetosuojuksen X/Y-etäisyys"
  800. #: fdmprinter.def.json
  801. msgctxt "support_mesh_drop_down label"
  802. msgid "Drop Down Support Mesh"
  803. msgstr "Tukiverkon pudottaminen alaspäin"
  804. #: fdmprinter.def.json
  805. msgctxt "dual label"
  806. msgid "Dual Extrusion"
  807. msgstr "Kaksoispursotus"
  808. #: fdmprinter.def.json
  809. msgctxt "machine_shape option elliptic"
  810. msgid "Elliptic"
  811. msgstr "Soikea"
  812. #: fdmprinter.def.json
  813. msgctxt "acceleration_enabled label"
  814. msgid "Enable Acceleration Control"
  815. msgstr "Ota kiihtyvyyden hallinta käyttöön"
  816. #: fdmprinter.def.json
  817. msgctxt "bridge_settings_enabled label"
  818. msgid "Enable Bridge Settings"
  819. msgstr ""
  820. #: fdmprinter.def.json
  821. msgctxt "coasting_enable label"
  822. msgid "Enable Coasting"
  823. msgstr "Ota vapaaliuku käyttöön"
  824. #: fdmprinter.def.json
  825. msgctxt "support_conical_enabled label"
  826. msgid "Enable Conical Support"
  827. msgstr "Ota kartiomainen tuki käyttöön"
  828. #: fdmprinter.def.json
  829. msgctxt "draft_shield_enabled label"
  830. msgid "Enable Draft Shield"
  831. msgstr "Ota vetosuojus käyttöön"
  832. #: fdmprinter.def.json
  833. msgctxt "ironing_enabled label"
  834. msgid "Enable Ironing"
  835. msgstr "Ota silitys käyttöön"
  836. #: fdmprinter.def.json
  837. msgctxt "jerk_enabled label"
  838. msgid "Enable Jerk Control"
  839. msgstr "Ota nykäisyn hallinta käyttöön"
  840. #: fdmprinter.def.json
  841. msgctxt "machine_nozzle_temp_enabled label"
  842. msgid "Enable Nozzle Temperature Control"
  843. msgstr "Ota suuttimen lämpötilan hallinta käyttöön"
  844. #: fdmprinter.def.json
  845. msgctxt "ooze_shield_enabled label"
  846. msgid "Enable Ooze Shield"
  847. msgstr "Ota tihkusuojus käyttöön"
  848. #: fdmprinter.def.json
  849. msgctxt "prime_blob_enable label"
  850. msgid "Enable Prime Blob"
  851. msgstr "Ota esitäyttöpisara käyttöön"
  852. #: fdmprinter.def.json
  853. msgctxt "prime_tower_enable label"
  854. msgid "Enable Prime Tower"
  855. msgstr "Ota esitäyttötorni käyttöön"
  856. #: fdmprinter.def.json
  857. msgctxt "cool_fan_enabled label"
  858. msgid "Enable Print Cooling"
  859. msgstr "Ota tulostuksen jäähdytys käyttöön"
  860. #: fdmprinter.def.json
  861. msgctxt "retraction_enable label"
  862. msgid "Enable Retraction"
  863. msgstr "Ota takaisinveto käyttöön"
  864. #: fdmprinter.def.json
  865. msgctxt "support_brim_enable label"
  866. msgid "Enable Support Brim"
  867. msgstr ""
  868. #: fdmprinter.def.json
  869. msgctxt "support_bottom_enable label"
  870. msgid "Enable Support Floor"
  871. msgstr "Ota tukilattia käyttöön"
  872. #: fdmprinter.def.json
  873. msgctxt "support_interface_enable label"
  874. msgid "Enable Support Interface"
  875. msgstr "Ota tukiliittymä käyttöön"
  876. #: fdmprinter.def.json
  877. msgctxt "support_roof_enable label"
  878. msgid "Enable Support Roof"
  879. msgstr "Ota tukikatto käyttöön"
  880. #: fdmprinter.def.json
  881. msgctxt "acceleration_travel_enabled label"
  882. msgid "Enable Travel Acceleration"
  883. msgstr ""
  884. #: fdmprinter.def.json
  885. msgctxt "jerk_travel_enabled label"
  886. msgid "Enable Travel Jerk"
  887. msgstr ""
  888. #: fdmprinter.def.json
  889. msgctxt "ooze_shield_enabled description"
  890. 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."
  891. msgstr "Ottaa ulkoisen tihkusuojuksen käyttöön. Tämä luo mallin ympärille kuoren, joka pyyhkii todennäköisesti toisen suuttimen, jos se on samalla korkeudella kuin ensimmäinen suutin."
  892. #: fdmprinter.def.json
  893. msgctxt "jerk_enabled description"
  894. 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."
  895. msgstr "Ottaa tulostuspään nykäisyn säädön käyttöön X- tai Y-akselin nopeuden muuttuessa. Nykäisyn suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella."
  896. #: fdmprinter.def.json
  897. msgctxt "acceleration_enabled description"
  898. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  899. msgstr "Ottaa tulostuspään kiihtyvyyden säädön käyttöön. Kiihtyvyyksien suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella."
  900. #: fdmprinter.def.json
  901. msgctxt "cool_fan_enabled description"
  902. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  903. msgstr "Ottaa tulostuksen jäähdytystuulettimet käyttöön tulostettaessa. Tuulettimet parantavat tulostuslaatua kerroksilla, joilla on lyhyet kerrosajat ja tukisiltoja/ulokkeita."
  904. #: fdmprinter.def.json
  905. msgctxt "machine_end_gcode label"
  906. msgid "End G-code"
  907. msgstr ""
  908. #: fdmprinter.def.json
  909. msgctxt "material_end_of_filament_purge_length label"
  910. msgid "End of Filament Purge Length"
  911. msgstr ""
  912. #: fdmprinter.def.json
  913. msgctxt "material_end_of_filament_purge_speed label"
  914. msgid "End of Filament Purge Speed"
  915. msgstr ""
  916. #: fdmprinter.def.json
  917. msgctxt "brim_replaces_support description"
  918. 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."
  919. msgstr ""
  920. #: fdmprinter.def.json
  921. msgctxt "support_type option everywhere"
  922. msgid "Everywhere"
  923. msgstr "Kaikkialla"
  924. #: fdmprinter.def.json
  925. msgctxt "slicing_tolerance option exclusive"
  926. msgid "Exclusive"
  927. msgstr ""
  928. #: fdmprinter.def.json
  929. msgctxt "experimental label"
  930. msgid "Experimental"
  931. msgstr "Kokeellinen"
  932. #: fdmprinter.def.json
  933. msgctxt "z_seam_corner option z_seam_corner_outer"
  934. msgid "Expose Seam"
  935. msgstr "Paljasta sauma"
  936. #: fdmprinter.def.json
  937. msgctxt "meshfix_extensive_stitching label"
  938. msgid "Extensive Stitching"
  939. msgstr "Laaja silmukointi"
  940. #: fdmprinter.def.json
  941. msgctxt "meshfix_extensive_stitching description"
  942. 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."
  943. msgstr "Laaja silmukointi yrittää peittää avonaisia reikiä verkosta sulkemalla reiän toisiaan koskettavilla monikulmioilla. Tämä vaihtoehto voi kuluttaa paljon prosessointiaikaa."
  944. #: fdmprinter.def.json
  945. msgctxt "infill_wall_line_count label"
  946. msgid "Extra Infill Wall Count"
  947. msgstr ""
  948. #: fdmprinter.def.json
  949. msgctxt "skin_outline_count label"
  950. msgid "Extra Skin Wall Count"
  951. msgstr "Pintakalvojen ulkopuolisten lisäseinämien määrä"
  952. #: fdmprinter.def.json
  953. msgctxt "switch_extruder_extra_prime_amount description"
  954. msgid "Extra material to prime after nozzle switching."
  955. msgstr ""
  956. #: fdmprinter.def.json
  957. msgctxt "extruder_prime_pos_x label"
  958. msgid "Extruder Prime X Position"
  959. msgstr "Suulakkeen esitäytön X-sijainti"
  960. #: fdmprinter.def.json
  961. msgctxt "extruder_prime_pos_y label"
  962. msgid "Extruder Prime Y Position"
  963. msgstr "Suulakkeen esitäytön Y-sijainti"
  964. #: fdmprinter.def.json
  965. msgctxt "extruder_prime_pos_z label"
  966. msgid "Extruder Prime Z Position"
  967. msgstr "Suulakkeen esitäytön Z-sijainti"
  968. #: fdmprinter.def.json
  969. msgctxt "machine_extruders_share_heater label"
  970. msgid "Extruders Share Heater"
  971. msgstr ""
  972. #: fdmprinter.def.json
  973. msgctxt "machine_extruders_share_nozzle label"
  974. msgid "Extruders Share Nozzle"
  975. msgstr ""
  976. #: fdmprinter.def.json
  977. msgctxt "material_extrusion_cool_down_speed label"
  978. msgid "Extrusion Cool Down Speed Modifier"
  979. msgstr "Pursotuksen jäähtymisnopeuden lisämääre"
  980. #: fdmprinter.def.json
  981. msgctxt "speed_equalize_flow_width_factor description"
  982. 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."
  983. msgstr ""
  984. #: fdmprinter.def.json
  985. msgctxt "cool_fan_speed label"
  986. msgid "Fan Speed"
  987. msgstr "Tuulettimen nopeus"
  988. #: fdmprinter.def.json
  989. msgctxt "support_fan_enable label"
  990. msgid "Fan Speed Override"
  991. msgstr ""
  992. #: fdmprinter.def.json
  993. msgctxt "small_feature_max_length description"
  994. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  995. msgstr ""
  996. #: fdmprinter.def.json
  997. msgctxt "experimental description"
  998. msgid "Features that haven't completely been fleshed out yet."
  999. msgstr ""
  1000. #: fdmprinter.def.json
  1001. msgctxt "machine_feeder_wheel_diameter label"
  1002. msgid "Feeder Wheel Diameter"
  1003. msgstr ""
  1004. #: fdmprinter.def.json
  1005. msgctxt "material_final_print_temperature label"
  1006. msgid "Final Printing Temperature"
  1007. msgstr "Tulostuslämpötila lopussa"
  1008. #: fdmprinter.def.json
  1009. msgctxt "machine_firmware_retract label"
  1010. msgid "Firmware Retraction"
  1011. msgstr ""
  1012. #: fdmprinter.def.json
  1013. msgctxt "support_extruder_nr_layer_0 label"
  1014. msgid "First Layer Support Extruder"
  1015. msgstr "Tuen ensimmäisen kerroksen suulake"
  1016. #: fdmprinter.def.json
  1017. msgctxt "material_flow label"
  1018. msgid "Flow"
  1019. msgstr "Virtaus"
  1020. #: fdmprinter.def.json
  1021. msgctxt "speed_equalize_flow_width_factor label"
  1022. msgid "Flow Equalization Ratio"
  1023. msgstr ""
  1024. #: fdmprinter.def.json
  1025. msgctxt "flow_rate_extrusion_offset_factor label"
  1026. msgid "Flow Rate Compensation Factor"
  1027. msgstr ""
  1028. #: fdmprinter.def.json
  1029. msgctxt "flow_rate_max_extrusion_offset label"
  1030. msgid "Flow Rate Compensation Max Extrusion Offset"
  1031. msgstr ""
  1032. #: fdmprinter.def.json
  1033. msgctxt "material_flow_temp_graph label"
  1034. msgid "Flow Temperature Graph"
  1035. msgstr "Virtauksen lämpötilakaavio"
  1036. #: fdmprinter.def.json
  1037. msgctxt "material_flow_layer_0 description"
  1038. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1039. msgstr ""
  1040. #: fdmprinter.def.json
  1041. msgctxt "skin_material_flow_layer_0 description"
  1042. msgid "Flow compensation on bottom lines of the first layer"
  1043. msgstr ""
  1044. #: fdmprinter.def.json
  1045. msgctxt "infill_material_flow description"
  1046. msgid "Flow compensation on infill lines."
  1047. msgstr ""
  1048. #: fdmprinter.def.json
  1049. msgctxt "support_interface_material_flow description"
  1050. msgid "Flow compensation on lines of support roof or floor."
  1051. msgstr ""
  1052. #: fdmprinter.def.json
  1053. msgctxt "roofing_material_flow description"
  1054. msgid "Flow compensation on lines of the areas at the top of the print."
  1055. msgstr ""
  1056. #: fdmprinter.def.json
  1057. msgctxt "prime_tower_flow description"
  1058. msgid "Flow compensation on prime tower lines."
  1059. msgstr ""
  1060. #: fdmprinter.def.json
  1061. msgctxt "skirt_brim_material_flow description"
  1062. msgid "Flow compensation on skirt or brim lines."
  1063. msgstr ""
  1064. #: fdmprinter.def.json
  1065. msgctxt "support_bottom_material_flow description"
  1066. msgid "Flow compensation on support floor lines."
  1067. msgstr ""
  1068. #: fdmprinter.def.json
  1069. msgctxt "support_roof_material_flow description"
  1070. msgid "Flow compensation on support roof lines."
  1071. msgstr ""
  1072. #: fdmprinter.def.json
  1073. msgctxt "support_material_flow description"
  1074. msgid "Flow compensation on support structure lines."
  1075. msgstr ""
  1076. #: fdmprinter.def.json
  1077. msgctxt "wall_0_material_flow_layer_0 description"
  1078. msgid "Flow compensation on the outermost wall line of the first layer."
  1079. msgstr ""
  1080. #: fdmprinter.def.json
  1081. msgctxt "wall_0_material_flow description"
  1082. msgid "Flow compensation on the outermost wall line."
  1083. msgstr ""
  1084. #: fdmprinter.def.json
  1085. msgctxt "skin_material_flow description"
  1086. msgid "Flow compensation on top/bottom lines."
  1087. msgstr ""
  1088. #: fdmprinter.def.json
  1089. msgctxt "wall_x_material_flow_layer_0 description"
  1090. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1091. msgstr ""
  1092. #: fdmprinter.def.json
  1093. msgctxt "wall_x_material_flow description"
  1094. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1095. msgstr ""
  1096. #: fdmprinter.def.json
  1097. msgctxt "wall_material_flow description"
  1098. msgid "Flow compensation on wall lines."
  1099. msgstr ""
  1100. #: fdmprinter.def.json
  1101. msgctxt "material_flow description"
  1102. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1103. msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla."
  1104. #: fdmprinter.def.json
  1105. msgctxt "material_flush_purge_length label"
  1106. msgid "Flush Purge Length"
  1107. msgstr ""
  1108. #: fdmprinter.def.json
  1109. msgctxt "material_flush_purge_speed label"
  1110. msgid "Flush Purge Speed"
  1111. msgstr ""
  1112. #: fdmprinter.def.json
  1113. msgctxt "min_wall_line_width description"
  1114. 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."
  1115. msgstr ""
  1116. #: fdmprinter.def.json
  1117. msgctxt "support_tree_rest_preference option buildplate"
  1118. msgid "Force Only Buildplate"
  1119. msgstr ""
  1120. #: fdmprinter.def.json
  1121. msgctxt "z_seam_position option front"
  1122. msgid "Front"
  1123. msgstr ""
  1124. #: fdmprinter.def.json
  1125. msgctxt "z_seam_position option frontleft"
  1126. msgid "Front Left"
  1127. msgstr ""
  1128. #: fdmprinter.def.json
  1129. msgctxt "z_seam_position option frontright"
  1130. msgid "Front Right"
  1131. msgstr ""
  1132. #: fdmprinter.def.json
  1133. msgctxt "draft_shield_height_limitation option full"
  1134. msgid "Full"
  1135. msgstr "Täysi"
  1136. #: fdmprinter.def.json
  1137. msgctxt "magic_fuzzy_skin_enabled label"
  1138. msgid "Fuzzy Skin"
  1139. msgstr "Karhea pintakalvo"
  1140. #: fdmprinter.def.json
  1141. msgctxt "magic_fuzzy_skin_point_density label"
  1142. msgid "Fuzzy Skin Density"
  1143. msgstr "Karhean pintakalvon tiheys"
  1144. #: fdmprinter.def.json
  1145. msgctxt "magic_fuzzy_skin_outside_only label"
  1146. msgid "Fuzzy Skin Outside Only"
  1147. msgstr ""
  1148. #: fdmprinter.def.json
  1149. msgctxt "magic_fuzzy_skin_point_dist label"
  1150. msgid "Fuzzy Skin Point Distance"
  1151. msgstr "Karhean pintakalvon piste-etäisyys"
  1152. #: fdmprinter.def.json
  1153. msgctxt "magic_fuzzy_skin_thickness label"
  1154. msgid "Fuzzy Skin Thickness"
  1155. msgstr "Karhean pintakalvon paksuus"
  1156. #: fdmprinter.def.json
  1157. msgctxt "machine_gcode_flavor label"
  1158. msgid "G-code Flavor"
  1159. msgstr ""
  1160. #: fdmprinter.def.json
  1161. msgctxt "machine_end_gcode description"
  1162. msgid ""
  1163. "G-code commands to be executed at the very end - separated by \n"
  1164. "."
  1165. msgstr ""
  1166. #: fdmprinter.def.json
  1167. msgctxt "machine_start_gcode description"
  1168. msgid ""
  1169. "G-code commands to be executed at the very start - separated by \n"
  1170. "."
  1171. msgstr ""
  1172. #: fdmprinter.def.json
  1173. msgctxt "material_guid description"
  1174. msgid "GUID of the material. This is set automatically."
  1175. msgstr ""
  1176. #: fdmprinter.def.json
  1177. msgctxt "gantry_height label"
  1178. msgid "Gantry Height"
  1179. msgstr ""
  1180. #: fdmprinter.def.json
  1181. msgctxt "interlocking_enable label"
  1182. msgid "Generate Interlocking Structure"
  1183. msgstr ""
  1184. #: fdmprinter.def.json
  1185. msgctxt "support_enable label"
  1186. msgid "Generate Support"
  1187. msgstr "Muodosta tuki"
  1188. #: fdmprinter.def.json
  1189. msgctxt "support_brim_enable description"
  1190. 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."
  1191. msgstr ""
  1192. #: fdmprinter.def.json
  1193. msgctxt "support_interface_enable description"
  1194. 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."
  1195. msgstr "Muodostaa tiheän liittymän mallin ja tuen väliin. Tällä luodaan pintakalvo tulostettavan mallin tuen yläosaan ja alaosaan, jossa se lepää mallin päällä."
  1196. #: fdmprinter.def.json
  1197. msgctxt "support_bottom_enable description"
  1198. 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."
  1199. msgstr "Muodosta tiheä materiaalilaatta tuen alaosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille."
  1200. #: fdmprinter.def.json
  1201. msgctxt "support_roof_enable description"
  1202. 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."
  1203. msgstr "Muodosta tiheä materiaalilaatta tuen yläosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille."
  1204. #: fdmprinter.def.json
  1205. msgctxt "support_enable description"
  1206. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  1207. msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana."
  1208. #: fdmprinter.def.json
  1209. msgctxt "machine_buildplate_type option glass"
  1210. msgid "Glass"
  1211. msgstr ""
  1212. #: fdmprinter.def.json
  1213. msgctxt "ironing_enabled description"
  1214. 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."
  1215. msgstr ""
  1216. #: fdmprinter.def.json
  1217. msgctxt "gradual_infill_step_height label"
  1218. msgid "Gradual Infill Step Height"
  1219. msgstr "Asteittaisen täyttöarvon korkeus"
  1220. #: fdmprinter.def.json
  1221. msgctxt "gradual_infill_steps label"
  1222. msgid "Gradual Infill Steps"
  1223. msgstr "Asteittainen täyttöarvo"
  1224. #: fdmprinter.def.json
  1225. msgctxt "gradual_support_infill_step_height label"
  1226. msgid "Gradual Support Infill Step Height"
  1227. msgstr "Asteittaisen tuen täyttöarvon korkeus"
  1228. #: fdmprinter.def.json
  1229. msgctxt "gradual_support_infill_steps label"
  1230. msgid "Gradual Support Infill Steps"
  1231. msgstr "Asteittainen tuen täyttöarvo"
  1232. #: fdmprinter.def.json
  1233. msgctxt "cool_min_temperature description"
  1234. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  1235. msgstr ""
  1236. #: fdmprinter.def.json
  1237. msgctxt "infill_pattern option grid"
  1238. msgid "Grid"
  1239. msgstr "Ristikko"
  1240. #: fdmprinter.def.json
  1241. msgctxt "support_bottom_pattern option grid"
  1242. msgid "Grid"
  1243. msgstr "Ristikko"
  1244. #: fdmprinter.def.json
  1245. msgctxt "support_interface_pattern option grid"
  1246. msgid "Grid"
  1247. msgstr "Ristikko"
  1248. #: fdmprinter.def.json
  1249. msgctxt "support_pattern option grid"
  1250. msgid "Grid"
  1251. msgstr "Ristikko"
  1252. #: fdmprinter.def.json
  1253. msgctxt "support_roof_pattern option grid"
  1254. msgid "Grid"
  1255. msgstr "Ristikko"
  1256. #: fdmprinter.def.json
  1257. msgctxt "machine_gcode_flavor option Griffin"
  1258. msgid "Griffin"
  1259. msgstr "Griffin"
  1260. #: fdmprinter.def.json
  1261. msgctxt "infill_pattern option gyroid"
  1262. msgid "Gyroid"
  1263. msgstr ""
  1264. #: fdmprinter.def.json
  1265. msgctxt "support_pattern option gyroid"
  1266. msgid "Gyroid"
  1267. msgstr ""
  1268. #: fdmprinter.def.json
  1269. msgctxt "machine_heated_build_volume label"
  1270. msgid "Has Build Volume Temperature Stabilization"
  1271. msgstr ""
  1272. #: fdmprinter.def.json
  1273. msgctxt "machine_heated_bed label"
  1274. msgid "Has Heated Build Plate"
  1275. msgstr "Sisältää lämmitettävän alustan"
  1276. #: fdmprinter.def.json
  1277. msgctxt "machine_nozzle_heat_up_speed label"
  1278. msgid "Heat Up Speed"
  1279. msgstr ""
  1280. #: fdmprinter.def.json
  1281. msgctxt "machine_heat_zone_length label"
  1282. msgid "Heat Zone Length"
  1283. msgstr ""
  1284. #: fdmprinter.def.json
  1285. msgctxt "draft_shield_height description"
  1286. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1287. msgstr "Vetosuojuksen korkeusrajoitus. Tämän korkeuden ylittävälle osalle ei tulosteta vetosuojusta."
  1288. #: fdmprinter.def.json
  1289. msgctxt "z_seam_corner option z_seam_corner_inner"
  1290. msgid "Hide Seam"
  1291. msgstr "Piilota sauma"
  1292. #: fdmprinter.def.json
  1293. msgctxt "z_seam_corner option z_seam_corner_any"
  1294. msgid "Hide or Expose Seam"
  1295. msgstr "Piilota tai paljasta sauma"
  1296. #: fdmprinter.def.json
  1297. msgctxt "hole_xy_offset label"
  1298. msgid "Hole Horizontal Expansion"
  1299. msgstr ""
  1300. #: fdmprinter.def.json
  1301. msgctxt "hole_xy_offset_max_diameter label"
  1302. msgid "Hole Horizontal Expansion Max Diameter"
  1303. msgstr ""
  1304. #: fdmprinter.def.json
  1305. msgctxt "small_hole_max_size description"
  1306. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1307. msgstr ""
  1308. #: fdmprinter.def.json
  1309. msgctxt "xy_offset label"
  1310. msgid "Horizontal Expansion"
  1311. msgstr "Vaakalaajennus"
  1312. #: fdmprinter.def.json
  1313. msgctxt "material_shrinkage_percentage_xy label"
  1314. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1315. msgstr ""
  1316. #: fdmprinter.def.json
  1317. msgctxt "material_break_preparation_retracted_position description"
  1318. msgid "How far the filament can be stretched before it breaks, while heated."
  1319. msgstr ""
  1320. #: fdmprinter.def.json
  1321. msgctxt "material_anti_ooze_retracted_position description"
  1322. msgid "How far the material needs to be retracted before it stops oozing."
  1323. msgstr ""
  1324. #: fdmprinter.def.json
  1325. msgctxt "flow_rate_extrusion_offset_factor description"
  1326. 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."
  1327. msgstr ""
  1328. #: fdmprinter.def.json
  1329. msgctxt "material_break_retracted_position description"
  1330. msgid "How far to retract the filament in order to break it cleanly."
  1331. msgstr ""
  1332. #: fdmprinter.def.json
  1333. msgctxt "material_break_preparation_speed description"
  1334. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1335. msgstr ""
  1336. #: fdmprinter.def.json
  1337. msgctxt "material_anti_ooze_retraction_speed description"
  1338. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1339. msgstr ""
  1340. #: fdmprinter.def.json
  1341. msgctxt "material_end_of_filament_purge_speed description"
  1342. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1343. msgstr ""
  1344. #: fdmprinter.def.json
  1345. msgctxt "material_flush_purge_speed description"
  1346. msgid "How fast to prime the material after switching to a different material."
  1347. msgstr ""
  1348. #: fdmprinter.def.json
  1349. msgctxt "material_maximum_park_duration description"
  1350. msgid "How long the material can be kept out of dry storage safely."
  1351. msgstr ""
  1352. #: fdmprinter.def.json
  1353. msgctxt "machine_steps_per_mm_x description"
  1354. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1355. msgstr ""
  1356. #: fdmprinter.def.json
  1357. msgctxt "machine_steps_per_mm_y description"
  1358. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1359. msgstr ""
  1360. #: fdmprinter.def.json
  1361. msgctxt "machine_steps_per_mm_z description"
  1362. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1363. msgstr ""
  1364. #: fdmprinter.def.json
  1365. msgctxt "machine_steps_per_mm_e description"
  1366. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1367. msgstr ""
  1368. #: fdmprinter.def.json
  1369. msgctxt "material_end_of_filament_purge_length description"
  1370. 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."
  1371. msgstr ""
  1372. #: fdmprinter.def.json
  1373. msgctxt "material_flush_purge_length description"
  1374. 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."
  1375. msgstr ""
  1376. #: fdmprinter.def.json
  1377. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1378. 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."
  1379. msgstr ""
  1380. #: fdmprinter.def.json
  1381. msgctxt "support_interface_priority description"
  1382. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1383. msgstr ""
  1384. #: fdmprinter.def.json
  1385. msgctxt "support_tree_min_height_to_model description"
  1386. 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."
  1387. msgstr ""
  1388. #: fdmprinter.def.json
  1389. msgctxt "bridge_skin_support_threshold description"
  1390. 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."
  1391. msgstr ""
  1392. #: fdmprinter.def.json
  1393. msgctxt "bridge_enable_more_layers description"
  1394. 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."
  1395. msgstr ""
  1396. #: fdmprinter.def.json
  1397. msgctxt "wall_transition_filter_distance description"
  1398. 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."
  1399. msgstr ""
  1400. #: fdmprinter.def.json
  1401. msgctxt "raft_margin description"
  1402. 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."
  1403. msgstr "Jos pohjaristikko on otettu käyttöön, tämä on ylimääräinen ristikkoalue malli ympärillä, jolle myös annetaan pohjaristikko. Tämän marginaalin kasvattaminen vahvistaa pohjaristikkoa, jolloin käytetään enemmän materiaalia ja tulosteelle jää vähemmän tilaa."
  1404. #: fdmprinter.def.json
  1405. msgctxt "meshfix_union_all description"
  1406. 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."
  1407. msgstr "Jätetään limittyvistä ainemääristä koostuva verkon sisäinen geometria huomiotta ja tulostetaan ainemäärät yhtenä. Tämä saattaa poistaa tahattomia sisäisiä onkaloita."
  1408. #: fdmprinter.def.json
  1409. msgctxt "material_bed_temp_prepend label"
  1410. msgid "Include Build Plate Temperature"
  1411. msgstr "Sisällytä alustan lämpötila"
  1412. #: fdmprinter.def.json
  1413. msgctxt "material_print_temp_prepend label"
  1414. msgid "Include Material Temperatures"
  1415. msgstr "Sisällytä materiaalilämpötilat"
  1416. #: fdmprinter.def.json
  1417. msgctxt "slicing_tolerance option inclusive"
  1418. msgid "Inclusive"
  1419. msgstr ""
  1420. #: fdmprinter.def.json
  1421. msgctxt "infill description"
  1422. msgid "Infill"
  1423. msgstr "Täyttö"
  1424. #: fdmprinter.def.json
  1425. msgctxt "infill label"
  1426. msgid "Infill"
  1427. msgstr "Täyttö"
  1428. #: fdmprinter.def.json
  1429. msgctxt "acceleration_infill label"
  1430. msgid "Infill Acceleration"
  1431. msgstr "Täytön kiihtyvyys"
  1432. #: fdmprinter.def.json
  1433. msgctxt "infill_before_walls label"
  1434. msgid "Infill Before Walls"
  1435. msgstr "Täyttö ennen seinämiä"
  1436. #: fdmprinter.def.json
  1437. msgctxt "infill_sparse_density label"
  1438. msgid "Infill Density"
  1439. msgstr "Täytön tiheys"
  1440. #: fdmprinter.def.json
  1441. msgctxt "infill_extruder_nr label"
  1442. msgid "Infill Extruder"
  1443. msgstr "Täytön suulake"
  1444. #: fdmprinter.def.json
  1445. msgctxt "infill_material_flow label"
  1446. msgid "Infill Flow"
  1447. msgstr ""
  1448. #: fdmprinter.def.json
  1449. msgctxt "jerk_infill label"
  1450. msgid "Infill Jerk"
  1451. msgstr "Täytön nykäisy"
  1452. #: fdmprinter.def.json
  1453. msgctxt "infill_sparse_thickness label"
  1454. msgid "Infill Layer Thickness"
  1455. msgstr "Täyttökerroksen paksuus"
  1456. #: fdmprinter.def.json
  1457. msgctxt "infill_angles label"
  1458. msgid "Infill Line Directions"
  1459. msgstr "Täyttölinjojen suunnat"
  1460. #: fdmprinter.def.json
  1461. msgctxt "infill_line_distance label"
  1462. msgid "Infill Line Distance"
  1463. msgstr "Täyttölinjan etäisyys"
  1464. #: fdmprinter.def.json
  1465. msgctxt "infill_multiplier label"
  1466. msgid "Infill Line Multiplier"
  1467. msgstr ""
  1468. #: fdmprinter.def.json
  1469. msgctxt "infill_line_width label"
  1470. msgid "Infill Line Width"
  1471. msgstr "Täyttölinjan leveys"
  1472. #: fdmprinter.def.json
  1473. msgctxt "infill_mesh label"
  1474. msgid "Infill Mesh"
  1475. msgstr "Täyttöverkko"
  1476. #: fdmprinter.def.json
  1477. msgctxt "infill_support_angle label"
  1478. msgid "Infill Overhang Angle"
  1479. msgstr ""
  1480. #: fdmprinter.def.json
  1481. msgctxt "infill_overlap_mm label"
  1482. msgid "Infill Overlap"
  1483. msgstr "Täytön limitys"
  1484. #: fdmprinter.def.json
  1485. msgctxt "infill_overlap label"
  1486. msgid "Infill Overlap Percentage"
  1487. msgstr "Täytön limityksen prosentti"
  1488. #: fdmprinter.def.json
  1489. msgctxt "infill_pattern label"
  1490. msgid "Infill Pattern"
  1491. msgstr "Täyttökuvio"
  1492. #: fdmprinter.def.json
  1493. msgctxt "speed_infill label"
  1494. msgid "Infill Speed"
  1495. msgstr "Täyttönopeus"
  1496. #: fdmprinter.def.json
  1497. msgctxt "infill_support_enabled label"
  1498. msgid "Infill Support"
  1499. msgstr ""
  1500. #: fdmprinter.def.json
  1501. msgctxt "infill_enable_travel_optimization label"
  1502. msgid "Infill Travel Optimization"
  1503. msgstr ""
  1504. #: fdmprinter.def.json
  1505. msgctxt "infill_wipe_dist label"
  1506. msgid "Infill Wipe Distance"
  1507. msgstr "Täyttöliikkeen etäisyys"
  1508. #: fdmprinter.def.json
  1509. msgctxt "infill_offset_x label"
  1510. msgid "Infill X Offset"
  1511. msgstr ""
  1512. #: fdmprinter.def.json
  1513. msgctxt "infill_offset_y label"
  1514. msgid "Infill Y Offset"
  1515. msgstr ""
  1516. #: fdmprinter.def.json
  1517. msgctxt "initial_bottom_layers label"
  1518. msgid "Initial Bottom Layers"
  1519. msgstr ""
  1520. #: fdmprinter.def.json
  1521. msgctxt "cool_fan_speed_0 label"
  1522. msgid "Initial Fan Speed"
  1523. msgstr "Tuulettimen nopeus alussa"
  1524. #: fdmprinter.def.json
  1525. msgctxt "acceleration_layer_0 label"
  1526. msgid "Initial Layer Acceleration"
  1527. msgstr "Alkukerroksen kiihtyvyys"
  1528. #: fdmprinter.def.json
  1529. msgctxt "skin_material_flow_layer_0 label"
  1530. msgid "Initial Layer Bottom Flow"
  1531. msgstr ""
  1532. #: fdmprinter.def.json
  1533. msgctxt "support_tree_bp_diameter label"
  1534. msgid "Initial Layer Diameter"
  1535. msgstr ""
  1536. #: fdmprinter.def.json
  1537. msgctxt "material_flow_layer_0 label"
  1538. msgid "Initial Layer Flow"
  1539. msgstr ""
  1540. #: fdmprinter.def.json
  1541. msgctxt "layer_height_0 label"
  1542. msgid "Initial Layer Height"
  1543. msgstr "Alkukerroksen korkeus"
  1544. #: fdmprinter.def.json
  1545. msgctxt "xy_offset_layer_0 label"
  1546. msgid "Initial Layer Horizontal Expansion"
  1547. msgstr "Alkukerroksen vaakalaajennus"
  1548. #: fdmprinter.def.json
  1549. msgctxt "wall_x_material_flow_layer_0 label"
  1550. msgid "Initial Layer Inner Wall Flow"
  1551. msgstr ""
  1552. #: fdmprinter.def.json
  1553. msgctxt "jerk_layer_0 label"
  1554. msgid "Initial Layer Jerk"
  1555. msgstr "Alkukerroksen nykäisy"
  1556. #: fdmprinter.def.json
  1557. msgctxt "initial_layer_line_width_factor label"
  1558. msgid "Initial Layer Line Width"
  1559. msgstr "Alkukerroksen linjaleveys"
  1560. #: fdmprinter.def.json
  1561. msgctxt "wall_0_material_flow_layer_0 label"
  1562. msgid "Initial Layer Outer Wall Flow"
  1563. msgstr ""
  1564. #: fdmprinter.def.json
  1565. msgctxt "acceleration_print_layer_0 label"
  1566. msgid "Initial Layer Print Acceleration"
  1567. msgstr "Alkukerroksen tulostuksen kiihtyvyys"
  1568. #: fdmprinter.def.json
  1569. msgctxt "jerk_print_layer_0 label"
  1570. msgid "Initial Layer Print Jerk"
  1571. msgstr "Alkukerroksen tulostuksen nykäisy"
  1572. #: fdmprinter.def.json
  1573. msgctxt "speed_print_layer_0 label"
  1574. msgid "Initial Layer Print Speed"
  1575. msgstr "Alkukerroksen tulostusnopeus"
  1576. #: fdmprinter.def.json
  1577. msgctxt "speed_layer_0 label"
  1578. msgid "Initial Layer Speed"
  1579. msgstr "Alkukerroksen nopeus"
  1580. #: fdmprinter.def.json
  1581. msgctxt "support_initial_layer_line_distance label"
  1582. msgid "Initial Layer Support Line Distance"
  1583. msgstr ""
  1584. #: fdmprinter.def.json
  1585. msgctxt "acceleration_travel_layer_0 label"
  1586. msgid "Initial Layer Travel Acceleration"
  1587. msgstr "Alkukerroksen siirtoliikkeen kiihtyvyys"
  1588. #: fdmprinter.def.json
  1589. msgctxt "jerk_travel_layer_0 label"
  1590. msgid "Initial Layer Travel Jerk"
  1591. msgstr "Alkukerroksen siirtoliikkeen nykäisy"
  1592. #: fdmprinter.def.json
  1593. msgctxt "speed_travel_layer_0 label"
  1594. msgid "Initial Layer Travel Speed"
  1595. msgstr "Alkukerroksen siirtoliikkeen nopeus"
  1596. #: fdmprinter.def.json
  1597. msgctxt "layer_0_z_overlap label"
  1598. msgid "Initial Layer Z Overlap"
  1599. msgstr "Z Päällekkäisyys Alkukerroksen"
  1600. #: fdmprinter.def.json
  1601. msgctxt "material_initial_print_temperature label"
  1602. msgid "Initial Printing Temperature"
  1603. msgstr "Tulostuslämpötila alussa"
  1604. #: fdmprinter.def.json
  1605. msgctxt "acceleration_wall_x label"
  1606. msgid "Inner Wall Acceleration"
  1607. msgstr "Sisäseinämän kiihtyvyys"
  1608. #: fdmprinter.def.json
  1609. msgctxt "wall_x_extruder_nr label"
  1610. msgid "Inner Wall Extruder"
  1611. msgstr ""
  1612. #: fdmprinter.def.json
  1613. msgctxt "jerk_wall_x label"
  1614. msgid "Inner Wall Jerk"
  1615. msgstr "Sisäseinämän nykäisy"
  1616. #: fdmprinter.def.json
  1617. msgctxt "speed_wall_x label"
  1618. msgid "Inner Wall Speed"
  1619. msgstr "Sisäseinämänopeus"
  1620. #: fdmprinter.def.json
  1621. msgctxt "wall_x_material_flow label"
  1622. msgid "Inner Wall(s) Flow"
  1623. msgstr ""
  1624. #: fdmprinter.def.json
  1625. msgctxt "wall_line_width_x label"
  1626. msgid "Inner Wall(s) Line Width"
  1627. msgstr "Sisäseinämien linjaleveys"
  1628. #: fdmprinter.def.json
  1629. msgctxt "wall_0_inset description"
  1630. 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."
  1631. msgstr "Ulkoseinämän reitille asetettu liitos. Jos ulkoseinämä on pienempi kuin suutin ja se tulostetaan sisäseinämien jälkeen, tällä siirtymällä saadaan suuttimen reikä limittymään sisäseinämiin mallin ulkopuolen sijaan."
  1632. #: fdmprinter.def.json
  1633. msgctxt "inset_direction option inside_out"
  1634. msgid "Inside To Outside"
  1635. msgstr ""
  1636. #: fdmprinter.def.json
  1637. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1638. msgid "Interface lines preferred"
  1639. msgstr ""
  1640. #: fdmprinter.def.json
  1641. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1642. msgid "Interface preferred"
  1643. msgstr ""
  1644. #: fdmprinter.def.json
  1645. msgctxt "interlocking_beam_layer_count label"
  1646. msgid "Interlocking Beam Layer Count"
  1647. msgstr ""
  1648. #: fdmprinter.def.json
  1649. msgctxt "interlocking_beam_width label"
  1650. msgid "Interlocking Beam Width"
  1651. msgstr ""
  1652. #: fdmprinter.def.json
  1653. msgctxt "interlocking_boundary_avoidance label"
  1654. msgid "Interlocking Boundary Avoidance"
  1655. msgstr ""
  1656. #: fdmprinter.def.json
  1657. msgctxt "interlocking_depth label"
  1658. msgid "Interlocking Depth"
  1659. msgstr ""
  1660. #: fdmprinter.def.json
  1661. msgctxt "interlocking_orientation label"
  1662. msgid "Interlocking Structure Orientation"
  1663. msgstr ""
  1664. #: fdmprinter.def.json
  1665. msgctxt "ironing_only_highest_layer label"
  1666. msgid "Iron Only Highest Layer"
  1667. msgstr "Silitä vain korkein kerros"
  1668. #: fdmprinter.def.json
  1669. msgctxt "acceleration_ironing label"
  1670. msgid "Ironing Acceleration"
  1671. msgstr "Silityksen kiihtyvyys"
  1672. #: fdmprinter.def.json
  1673. msgctxt "ironing_flow label"
  1674. msgid "Ironing Flow"
  1675. msgstr "Silitysvirtaus"
  1676. #: fdmprinter.def.json
  1677. msgctxt "ironing_inset label"
  1678. msgid "Ironing Inset"
  1679. msgstr "Silitysliitos"
  1680. #: fdmprinter.def.json
  1681. msgctxt "jerk_ironing label"
  1682. msgid "Ironing Jerk"
  1683. msgstr "Silityksen nykäisy"
  1684. #: fdmprinter.def.json
  1685. msgctxt "ironing_line_spacing label"
  1686. msgid "Ironing Line Spacing"
  1687. msgstr "Silityksen linjajako"
  1688. #: fdmprinter.def.json
  1689. msgctxt "ironing_pattern label"
  1690. msgid "Ironing Pattern"
  1691. msgstr "Silityskuvio"
  1692. #: fdmprinter.def.json
  1693. msgctxt "speed_ironing label"
  1694. msgid "Ironing Speed"
  1695. msgstr "Silitysnopeus"
  1696. #: fdmprinter.def.json
  1697. msgctxt "machine_center_is_zero label"
  1698. msgid "Is Center Origin"
  1699. msgstr "On keskikohdassa"
  1700. #: fdmprinter.def.json
  1701. msgctxt "material_crystallinity description"
  1702. 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)?"
  1703. msgstr ""
  1704. #: fdmprinter.def.json
  1705. msgctxt "magic_fuzzy_skin_outside_only description"
  1706. msgid "Jitter only the parts' outlines and not the parts' holes."
  1707. msgstr ""
  1708. #: fdmprinter.def.json
  1709. msgctxt "meshfix_keep_open_polygons label"
  1710. msgid "Keep Disconnected Faces"
  1711. msgstr "Pidä erilliset pinnat"
  1712. #: fdmprinter.def.json
  1713. msgctxt "layer_height label"
  1714. msgid "Layer Height"
  1715. msgstr "Kerroksen korkeus"
  1716. #: fdmprinter.def.json
  1717. msgctxt "layer_start_x label"
  1718. msgid "Layer Start X"
  1719. msgstr "Kerroksen X-aloitus"
  1720. #: fdmprinter.def.json
  1721. msgctxt "layer_start_y label"
  1722. msgid "Layer Start Y"
  1723. msgstr "Kerroksen Y-aloitus"
  1724. #: fdmprinter.def.json
  1725. msgctxt "raft_base_thickness description"
  1726. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1727. msgstr "Pohjaristikon pohjakerroksen kerrospaksuus. Tämän tulisi olla paksu kerros, joka tarttuu lujasti tulostimen alustaan."
  1728. #: fdmprinter.def.json
  1729. msgctxt "raft_interface_thickness description"
  1730. msgid "Layer thickness of the middle raft layer."
  1731. msgstr "Pohjaristikon keskikerroksen kerrospaksuus."
  1732. #: fdmprinter.def.json
  1733. msgctxt "raft_surface_thickness description"
  1734. msgid "Layer thickness of the top raft layers."
  1735. msgstr "Pohjaristikon pintakerrosten kerrospaksuus."
  1736. #: fdmprinter.def.json
  1737. msgctxt "support_skip_zag_per_mm description"
  1738. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1739. msgstr "Jätä tukilinjojen välinen yhdistäminen pois joka N. millimetri, jotta tukirakenne on helpompi rikkoa."
  1740. #: fdmprinter.def.json
  1741. msgctxt "z_seam_position option left"
  1742. msgid "Left"
  1743. msgstr ""
  1744. #: fdmprinter.def.json
  1745. msgctxt "cool_lift_head label"
  1746. msgid "Lift Head"
  1747. msgstr "Tulostuspään nosto"
  1748. #: fdmprinter.def.json
  1749. msgctxt "infill_pattern option lightning"
  1750. msgid "Lightning"
  1751. msgstr ""
  1752. #: fdmprinter.def.json
  1753. msgctxt "lightning_infill_overhang_angle label"
  1754. msgid "Lightning Infill Overhang Angle"
  1755. msgstr ""
  1756. #: fdmprinter.def.json
  1757. msgctxt "lightning_infill_prune_angle label"
  1758. msgid "Lightning Infill Prune Angle"
  1759. msgstr ""
  1760. #: fdmprinter.def.json
  1761. msgctxt "lightning_infill_straightening_angle label"
  1762. msgid "Lightning Infill Straightening Angle"
  1763. msgstr ""
  1764. #: fdmprinter.def.json
  1765. msgctxt "lightning_infill_support_angle label"
  1766. msgid "Lightning Infill Support Angle"
  1767. msgstr ""
  1768. #: fdmprinter.def.json
  1769. msgctxt "support_tree_limit_branch_reach label"
  1770. msgid "Limit Branch Reach"
  1771. msgstr ""
  1772. #: fdmprinter.def.json
  1773. msgctxt "support_tree_limit_branch_reach description"
  1774. 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)"
  1775. msgstr ""
  1776. #: fdmprinter.def.json
  1777. msgctxt "cutting_mesh description"
  1778. 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."
  1779. msgstr "Rajoita tämän verkon laajuus muiden verkkojen alueelle. Tällä voit määrittää tietyt yhden verkon alueet tulostumaan eri asetuksilla ja täysin eri suulakkeella."
  1780. #: fdmprinter.def.json
  1781. msgctxt "draft_shield_height_limitation option limited"
  1782. msgid "Limited"
  1783. msgstr "Rajoitettu"
  1784. #: fdmprinter.def.json
  1785. msgctxt "line_width label"
  1786. msgid "Line Width"
  1787. msgstr "Linjan leveys"
  1788. #: fdmprinter.def.json
  1789. msgctxt "infill_pattern option lines"
  1790. msgid "Lines"
  1791. msgstr "Linjat"
  1792. #: fdmprinter.def.json
  1793. msgctxt "roofing_pattern option lines"
  1794. msgid "Lines"
  1795. msgstr "Linjat"
  1796. #: fdmprinter.def.json
  1797. msgctxt "support_bottom_pattern option lines"
  1798. msgid "Lines"
  1799. msgstr "Linjat"
  1800. #: fdmprinter.def.json
  1801. msgctxt "support_interface_pattern option lines"
  1802. msgid "Lines"
  1803. msgstr "Linjat"
  1804. #: fdmprinter.def.json
  1805. msgctxt "support_pattern option lines"
  1806. msgid "Lines"
  1807. msgstr "Linjat"
  1808. #: fdmprinter.def.json
  1809. msgctxt "support_roof_pattern option lines"
  1810. msgid "Lines"
  1811. msgstr "Linjat"
  1812. #: fdmprinter.def.json
  1813. msgctxt "top_bottom_pattern option lines"
  1814. msgid "Lines"
  1815. msgstr "Linjat"
  1816. #: fdmprinter.def.json
  1817. msgctxt "top_bottom_pattern_0 option lines"
  1818. msgid "Lines"
  1819. msgstr "Linjat"
  1820. #: fdmprinter.def.json
  1821. msgctxt "machine_gcode_flavor option MACH3"
  1822. msgid "Mach3"
  1823. msgstr "Mach3"
  1824. #: fdmprinter.def.json
  1825. msgctxt "machine_settings label"
  1826. msgid "Machine"
  1827. msgstr "Laite"
  1828. #: fdmprinter.def.json
  1829. msgctxt "machine_depth label"
  1830. msgid "Machine Depth"
  1831. msgstr "Laitteen syvyys"
  1832. #: fdmprinter.def.json
  1833. msgctxt "machine_head_with_fans_polygon label"
  1834. msgid "Machine Head & Fan Polygon"
  1835. msgstr ""
  1836. #: fdmprinter.def.json
  1837. msgctxt "machine_height label"
  1838. msgid "Machine Height"
  1839. msgstr "Laitteen korkeus"
  1840. #: fdmprinter.def.json
  1841. msgctxt "machine_name label"
  1842. msgid "Machine Type"
  1843. msgstr "Laitteen tyyppi"
  1844. #: fdmprinter.def.json
  1845. msgctxt "machine_width label"
  1846. msgid "Machine Width"
  1847. msgstr "Laitteen leveys"
  1848. #: fdmprinter.def.json
  1849. msgctxt "machine_settings description"
  1850. msgid "Machine specific settings"
  1851. msgstr "Laitekohtaiset asetukset"
  1852. #: fdmprinter.def.json
  1853. msgctxt "conical_overhang_enabled label"
  1854. msgid "Make Overhang Printable"
  1855. msgstr "Tee ulokkeesta tulostettava"
  1856. #: fdmprinter.def.json
  1857. msgctxt "multiple_mesh_overlap description"
  1858. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1859. msgstr "Toisiinsa kosketuksissa olevat verkot limittyvät hieman. Tämä sitoo ne paremmin yhteen."
  1860. #: fdmprinter.def.json
  1861. msgctxt "support_conical_enabled description"
  1862. msgid "Make support areas smaller at the bottom than at the overhang."
  1863. msgstr ""
  1864. #: fdmprinter.def.json
  1865. msgctxt "support_mesh_drop_down description"
  1866. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1867. msgstr "Muodosta tukea kaikkialle tukiverkon alla, niin ettei tukiverkossa ole ulokkeita."
  1868. #: fdmprinter.def.json
  1869. msgctxt "extruder_prime_pos_abs description"
  1870. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1871. msgstr "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
  1872. #: fdmprinter.def.json
  1873. msgctxt "layer_0_z_overlap description"
  1874. 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."
  1875. msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän."
  1876. #: fdmprinter.def.json
  1877. msgctxt "meshfix description"
  1878. msgid "Make the meshes more suited for 3D printing."
  1879. msgstr ""
  1880. #: fdmprinter.def.json
  1881. msgctxt "machine_gcode_flavor option Makerbot"
  1882. msgid "Makerbot"
  1883. msgstr "Makerbot"
  1884. #: fdmprinter.def.json
  1885. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1886. msgid "Marlin"
  1887. msgstr "Marlin"
  1888. #: fdmprinter.def.json
  1889. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1890. msgid "Marlin (Volumetric)"
  1891. msgstr "Marlin (volymetrinen)"
  1892. #: fdmprinter.def.json
  1893. msgctxt "material description"
  1894. msgid "Material"
  1895. msgstr "Materiaali"
  1896. #: fdmprinter.def.json
  1897. msgctxt "material label"
  1898. msgid "Material"
  1899. msgstr "Materiaali"
  1900. #: fdmprinter.def.json
  1901. msgctxt "material_guid label"
  1902. msgid "Material GUID"
  1903. msgstr "Materiaalin GUID"
  1904. #: fdmprinter.def.json
  1905. msgctxt "max_extrusion_before_wipe label"
  1906. msgid "Material Volume Between Wipes"
  1907. msgstr ""
  1908. #: fdmprinter.def.json
  1909. msgctxt "retraction_combing_max_distance label"
  1910. msgid "Max Comb Distance With No Retract"
  1911. msgstr ""
  1912. #: fdmprinter.def.json
  1913. msgctxt "machine_max_acceleration_x label"
  1914. msgid "Maximum Acceleration X"
  1915. msgstr "Maksimikiihtyvyys X"
  1916. #: fdmprinter.def.json
  1917. msgctxt "machine_max_acceleration_y label"
  1918. msgid "Maximum Acceleration Y"
  1919. msgstr "Maksimikiihtyvyys Y"
  1920. #: fdmprinter.def.json
  1921. msgctxt "machine_max_acceleration_z label"
  1922. msgid "Maximum Acceleration Z"
  1923. msgstr "Maksimikiihtyvyys Z"
  1924. #: fdmprinter.def.json
  1925. msgctxt "support_tree_angle label"
  1926. msgid "Maximum Branch Angle"
  1927. msgstr ""
  1928. #: fdmprinter.def.json
  1929. msgctxt "meshfix_maximum_deviation label"
  1930. msgid "Maximum Deviation"
  1931. msgstr ""
  1932. #: fdmprinter.def.json
  1933. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1934. msgid "Maximum Extrusion Area Deviation"
  1935. msgstr ""
  1936. #: fdmprinter.def.json
  1937. msgctxt "cool_fan_speed_max label"
  1938. msgid "Maximum Fan Speed"
  1939. msgstr "Tuulettimen maksiminopeus"
  1940. #: fdmprinter.def.json
  1941. msgctxt "machine_max_acceleration_e label"
  1942. msgid "Maximum Filament Acceleration"
  1943. msgstr "Tulostuslangan maksimikiihtyvyys"
  1944. #: fdmprinter.def.json
  1945. msgctxt "conical_overhang_angle label"
  1946. msgid "Maximum Model Angle"
  1947. msgstr "Mallin maksimikulma"
  1948. #: fdmprinter.def.json
  1949. msgctxt "conical_overhang_hole_size label"
  1950. msgid "Maximum Overhang Hole Area"
  1951. msgstr ""
  1952. #: fdmprinter.def.json
  1953. msgctxt "material_maximum_park_duration label"
  1954. msgid "Maximum Park Duration"
  1955. msgstr ""
  1956. #: fdmprinter.def.json
  1957. msgctxt "meshfix_maximum_resolution label"
  1958. msgid "Maximum Resolution"
  1959. msgstr ""
  1960. #: fdmprinter.def.json
  1961. msgctxt "retraction_count_max label"
  1962. msgid "Maximum Retraction Count"
  1963. msgstr "Takaisinvedon maksimiluku"
  1964. #: fdmprinter.def.json
  1965. msgctxt "max_skin_angle_for_expansion label"
  1966. msgid "Maximum Skin Angle for Expansion"
  1967. msgstr "Pintakalvon maksimikulma laajennuksessa"
  1968. #: fdmprinter.def.json
  1969. msgctxt "machine_max_feedrate_e label"
  1970. msgid "Maximum Speed E"
  1971. msgstr ""
  1972. #: fdmprinter.def.json
  1973. msgctxt "machine_max_feedrate_x label"
  1974. msgid "Maximum Speed X"
  1975. msgstr "Maksiminopeus X"
  1976. #: fdmprinter.def.json
  1977. msgctxt "machine_max_feedrate_y label"
  1978. msgid "Maximum Speed Y"
  1979. msgstr "Maksiminopeus Y"
  1980. #: fdmprinter.def.json
  1981. msgctxt "machine_max_feedrate_z label"
  1982. msgid "Maximum Speed Z"
  1983. msgstr "Maksiminopeus Z"
  1984. #: fdmprinter.def.json
  1985. msgctxt "support_tower_maximum_supported_diameter label"
  1986. msgid "Maximum Tower-Supported Diameter"
  1987. msgstr ""
  1988. #: fdmprinter.def.json
  1989. msgctxt "meshfix_maximum_travel_resolution label"
  1990. msgid "Maximum Travel Resolution"
  1991. msgstr ""
  1992. #: fdmprinter.def.json
  1993. msgctxt "machine_max_acceleration_x description"
  1994. msgid "Maximum acceleration for the motor of the X-direction"
  1995. msgstr "X-suunnan moottorin maksimikiihtyvyys"
  1996. #: fdmprinter.def.json
  1997. msgctxt "machine_max_acceleration_y description"
  1998. msgid "Maximum acceleration for the motor of the Y-direction."
  1999. msgstr "Y-suunnan moottorin maksimikiihtyvyys."
  2000. #: fdmprinter.def.json
  2001. msgctxt "machine_max_acceleration_z description"
  2002. msgid "Maximum acceleration for the motor of the Z-direction."
  2003. msgstr "Z-suunnan moottorin maksimikiihtyvyys."
  2004. #: fdmprinter.def.json
  2005. msgctxt "machine_max_acceleration_e description"
  2006. msgid "Maximum acceleration for the motor of the filament."
  2007. msgstr "Tulostuslangan moottorin maksimikiihtyvyys."
  2008. #: fdmprinter.def.json
  2009. msgctxt "bridge_sparse_infill_max_density description"
  2010. 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."
  2011. msgstr ""
  2012. #: fdmprinter.def.json
  2013. msgctxt "support_tower_maximum_supported_diameter description"
  2014. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2015. msgstr ""
  2016. #: fdmprinter.def.json
  2017. msgctxt "max_extrusion_before_wipe description"
  2018. 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."
  2019. msgstr ""
  2020. #: fdmprinter.def.json
  2021. msgctxt "multiple_mesh_overlap label"
  2022. msgid "Merged Meshes Overlap"
  2023. msgstr "Yhdistettyjen verkkojen limitys"
  2024. #: fdmprinter.def.json
  2025. msgctxt "meshfix label"
  2026. msgid "Mesh Fixes"
  2027. msgstr "Verkkokorjaukset"
  2028. #: fdmprinter.def.json
  2029. msgctxt "mesh_position_x label"
  2030. msgid "Mesh Position X"
  2031. msgstr ""
  2032. #: fdmprinter.def.json
  2033. msgctxt "mesh_position_y label"
  2034. msgid "Mesh Position Y"
  2035. msgstr ""
  2036. #: fdmprinter.def.json
  2037. msgctxt "mesh_position_z label"
  2038. msgid "Mesh Position Z"
  2039. msgstr ""
  2040. #: fdmprinter.def.json
  2041. msgctxt "infill_mesh_order label"
  2042. msgid "Mesh Processing Rank"
  2043. msgstr ""
  2044. #: fdmprinter.def.json
  2045. msgctxt "mesh_rotation_matrix label"
  2046. msgid "Mesh Rotation Matrix"
  2047. msgstr "Verkon pyöritysmatriisi"
  2048. #: fdmprinter.def.json
  2049. msgctxt "slicing_tolerance option middle"
  2050. msgid "Middle"
  2051. msgstr ""
  2052. #: fdmprinter.def.json
  2053. msgctxt "mold_width label"
  2054. msgid "Minimal Mold Width"
  2055. msgstr "Muotin vähimmäisleveys"
  2056. #: fdmprinter.def.json
  2057. msgctxt "machine_min_cool_heat_time_window label"
  2058. msgid "Minimal Time Standby Temperature"
  2059. msgstr "Valmiuslämpötilan minimiaika"
  2060. #: fdmprinter.def.json
  2061. msgctxt "bridge_wall_min_length label"
  2062. msgid "Minimum Bridge Wall Length"
  2063. msgstr ""
  2064. #: fdmprinter.def.json
  2065. msgctxt "min_even_wall_line_width label"
  2066. msgid "Minimum Even Wall Line Width"
  2067. msgstr ""
  2068. #: fdmprinter.def.json
  2069. msgctxt "retraction_extrusion_window label"
  2070. msgid "Minimum Extrusion Distance Window"
  2071. msgstr "Pursotuksen minimietäisyyden ikkuna"
  2072. #: fdmprinter.def.json
  2073. msgctxt "min_feature_size label"
  2074. msgid "Minimum Feature Size"
  2075. msgstr ""
  2076. #: fdmprinter.def.json
  2077. msgctxt "machine_minimum_feedrate label"
  2078. msgid "Minimum Feedrate"
  2079. msgstr "Minimisyöttönopeus"
  2080. #: fdmprinter.def.json
  2081. msgctxt "support_tree_min_height_to_model label"
  2082. msgid "Minimum Height To Model"
  2083. msgstr ""
  2084. #: fdmprinter.def.json
  2085. msgctxt "min_infill_area label"
  2086. msgid "Minimum Infill Area"
  2087. msgstr "Minimitäyttöalue"
  2088. #: fdmprinter.def.json
  2089. msgctxt "cool_min_layer_time label"
  2090. msgid "Minimum Layer Time"
  2091. msgstr "Kerroksen minimiaika"
  2092. #: fdmprinter.def.json
  2093. msgctxt "min_odd_wall_line_width label"
  2094. msgid "Minimum Odd Wall Line Width"
  2095. msgstr ""
  2096. #: fdmprinter.def.json
  2097. msgctxt "minimum_polygon_circumference label"
  2098. msgid "Minimum Polygon Circumference"
  2099. msgstr ""
  2100. #: fdmprinter.def.json
  2101. msgctxt "min_skin_width_for_expansion label"
  2102. msgid "Minimum Skin Width for Expansion"
  2103. msgstr "Pintakalvon minimileveys laajennuksessa"
  2104. #: fdmprinter.def.json
  2105. msgctxt "cool_min_speed label"
  2106. msgid "Minimum Speed"
  2107. msgstr "Miniminopeus"
  2108. #: fdmprinter.def.json
  2109. msgctxt "minimum_support_area label"
  2110. msgid "Minimum Support Area"
  2111. msgstr ""
  2112. #: fdmprinter.def.json
  2113. msgctxt "minimum_bottom_area label"
  2114. msgid "Minimum Support Floor Area"
  2115. msgstr ""
  2116. #: fdmprinter.def.json
  2117. msgctxt "minimum_interface_area label"
  2118. msgid "Minimum Support Interface Area"
  2119. msgstr ""
  2120. #: fdmprinter.def.json
  2121. msgctxt "minimum_roof_area label"
  2122. msgid "Minimum Support Roof Area"
  2123. msgstr ""
  2124. #: fdmprinter.def.json
  2125. msgctxt "support_xy_distance_overhang label"
  2126. msgid "Minimum Support X/Y Distance"
  2127. msgstr "Tuen X-/Y-minimietäisyys"
  2128. #: fdmprinter.def.json
  2129. msgctxt "min_bead_width label"
  2130. msgid "Minimum Thin Wall Line Width"
  2131. msgstr ""
  2132. #: fdmprinter.def.json
  2133. msgctxt "coasting_min_volume label"
  2134. msgid "Minimum Volume Before Coasting"
  2135. msgstr "Vähimmäisainemäärä ennen vapaaliukua"
  2136. #: fdmprinter.def.json
  2137. msgctxt "min_wall_line_width label"
  2138. msgid "Minimum Wall Line Width"
  2139. msgstr ""
  2140. #: fdmprinter.def.json
  2141. msgctxt "minimum_interface_area description"
  2142. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2143. msgstr ""
  2144. #: fdmprinter.def.json
  2145. msgctxt "minimum_support_area description"
  2146. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2147. msgstr ""
  2148. #: fdmprinter.def.json
  2149. msgctxt "minimum_bottom_area description"
  2150. 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."
  2151. msgstr ""
  2152. #: fdmprinter.def.json
  2153. msgctxt "minimum_roof_area description"
  2154. 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."
  2155. msgstr ""
  2156. #: fdmprinter.def.json
  2157. msgctxt "min_feature_size description"
  2158. 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."
  2159. msgstr ""
  2160. #: fdmprinter.def.json
  2161. msgctxt "support_conical_min_width description"
  2162. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  2163. msgstr "Minimileveys, johon kartiomaisen tukialueen perusta pienennetään. Pienet leveydet voivat johtaa epävakaisiin tukirakenteisiin."
  2164. #: fdmprinter.def.json
  2165. msgctxt "mold_enabled label"
  2166. msgid "Mold"
  2167. msgstr "Muotti"
  2168. #: fdmprinter.def.json
  2169. msgctxt "mold_angle label"
  2170. msgid "Mold Angle"
  2171. msgstr "Muotin kulma"
  2172. #: fdmprinter.def.json
  2173. msgctxt "mold_roof_height label"
  2174. msgid "Mold Roof Height"
  2175. msgstr "Muotin katon korkeus"
  2176. #: fdmprinter.def.json
  2177. msgctxt "ironing_monotonic label"
  2178. msgid "Monotonic Ironing Order"
  2179. msgstr ""
  2180. #: fdmprinter.def.json
  2181. msgctxt "roofing_monotonic label"
  2182. msgid "Monotonic Top Surface Order"
  2183. msgstr ""
  2184. #: fdmprinter.def.json
  2185. msgctxt "skin_monotonic label"
  2186. msgid "Monotonic Top/Bottom Order"
  2187. msgstr ""
  2188. #: fdmprinter.def.json
  2189. msgctxt "skirt_line_count description"
  2190. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2191. msgstr "Useammat helmalinjat auttavat pursotuksen esitäytössä pienillä malleilla. Helma poistetaan käytöstä, jos arvoksi asetetaan 0."
  2192. #: fdmprinter.def.json
  2193. msgctxt "initial_layer_line_width_factor description"
  2194. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  2195. msgstr "Ensimmäisen kerroksen linjaleveyden kerroin. Sen suurentaminen voi parantaa tarttuvuutta pöytään."
  2196. #: fdmprinter.def.json
  2197. msgctxt "material_no_load_move_factor label"
  2198. msgid "No Load Move Factor"
  2199. msgstr ""
  2200. #: fdmprinter.def.json
  2201. msgctxt "skin_no_small_gaps_heuristic label"
  2202. msgid "No Skin in Z Gaps"
  2203. msgstr ""
  2204. #: fdmprinter.def.json
  2205. msgctxt "blackmagic description"
  2206. msgid "Non-traditional ways to print your models."
  2207. msgstr ""
  2208. #: fdmprinter.def.json
  2209. msgctxt "adhesion_type option none"
  2210. msgid "None"
  2211. msgstr "Ei mikään"
  2212. #: fdmprinter.def.json
  2213. msgctxt "z_seam_corner option z_seam_corner_none"
  2214. msgid "None"
  2215. msgstr "Ei mitään"
  2216. #: fdmprinter.def.json
  2217. msgctxt "magic_mesh_surface_mode option normal"
  2218. msgid "Normal"
  2219. msgstr "Normaali"
  2220. #: fdmprinter.def.json
  2221. msgctxt "support_structure option normal"
  2222. msgid "Normal"
  2223. msgstr ""
  2224. #: fdmprinter.def.json
  2225. msgctxt "meshfix_keep_open_polygons description"
  2226. 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."
  2227. msgstr ""
  2228. #: fdmprinter.def.json
  2229. msgctxt "retraction_combing option noskin"
  2230. msgid "Not in Skin"
  2231. msgstr ""
  2232. #: fdmprinter.def.json
  2233. msgctxt "retraction_combing option no_outer_surfaces"
  2234. msgid "Not on Outer Surface"
  2235. msgstr ""
  2236. #: fdmprinter.def.json
  2237. msgctxt "machine_nozzle_expansion_angle label"
  2238. msgid "Nozzle Angle"
  2239. msgstr ""
  2240. #: fdmprinter.def.json
  2241. msgctxt "machine_nozzle_size label"
  2242. msgid "Nozzle Diameter"
  2243. msgstr "Suuttimen läpimitta"
  2244. #: fdmprinter.def.json
  2245. msgctxt "nozzle_disallowed_areas label"
  2246. msgid "Nozzle Disallowed Areas"
  2247. msgstr "Suuttimen kielletyt alueet"
  2248. #: fdmprinter.def.json
  2249. msgctxt "machine_nozzle_id label"
  2250. msgid "Nozzle ID"
  2251. msgstr "Suuttimen tunnus"
  2252. #: fdmprinter.def.json
  2253. msgctxt "machine_nozzle_head_distance label"
  2254. msgid "Nozzle Length"
  2255. msgstr ""
  2256. #: fdmprinter.def.json
  2257. msgctxt "switch_extruder_extra_prime_amount label"
  2258. msgid "Nozzle Switch Extra Prime Amount"
  2259. msgstr ""
  2260. #: fdmprinter.def.json
  2261. msgctxt "switch_extruder_prime_speed label"
  2262. msgid "Nozzle Switch Prime Speed"
  2263. msgstr "Suuttimen vaihdon esitäyttönopeus"
  2264. #: fdmprinter.def.json
  2265. msgctxt "switch_extruder_retraction_speed label"
  2266. msgid "Nozzle Switch Retract Speed"
  2267. msgstr "Suuttimen vaihdon takaisinvetonopeus"
  2268. #: fdmprinter.def.json
  2269. msgctxt "switch_extruder_retraction_amount label"
  2270. msgid "Nozzle Switch Retraction Distance"
  2271. msgstr "Suuttimen vaihdon takaisinvetoetäisyys"
  2272. #: fdmprinter.def.json
  2273. msgctxt "switch_extruder_retraction_speeds label"
  2274. msgid "Nozzle Switch Retraction Speed"
  2275. msgstr "Suuttimen vaihdon takaisinvetonopeus"
  2276. #: fdmprinter.def.json
  2277. msgctxt "machine_extruder_count label"
  2278. msgid "Number of Extruders"
  2279. msgstr "Suulakkeiden määrä"
  2280. #: fdmprinter.def.json
  2281. msgctxt "extruders_enabled_count label"
  2282. msgid "Number of Extruders That Are Enabled"
  2283. msgstr ""
  2284. #: fdmprinter.def.json
  2285. msgctxt "speed_slowdown_layers label"
  2286. msgid "Number of Slower Layers"
  2287. msgstr "Hitaampien kerrosten määrä"
  2288. #: fdmprinter.def.json
  2289. msgctxt "extruders_enabled_count description"
  2290. msgid "Number of extruder trains that are enabled; automatically set in software"
  2291. msgstr ""
  2292. #: fdmprinter.def.json
  2293. msgctxt "machine_extruder_count description"
  2294. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  2295. msgstr "Suulakeryhmien määrä. Suulakeryhmä on syöttölaitteen, Bowden-putken ja suuttimen yhdistelmä."
  2296. #: fdmprinter.def.json
  2297. msgctxt "wipe_repeat_count description"
  2298. msgid "Number of times to move the nozzle across the brush."
  2299. msgstr ""
  2300. #: fdmprinter.def.json
  2301. msgctxt "gradual_infill_steps description"
  2302. 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."
  2303. msgstr "Määrä kertoja, joilla täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään täytön tiheyden arvoon asti."
  2304. #: fdmprinter.def.json
  2305. msgctxt "gradual_support_infill_steps description"
  2306. 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."
  2307. msgstr "Määrä kertoja, joilla tuen täytön tiheyttä vähennetään puolella kauemmaksi yläpintojen alle siirryttäessä. Yläpintoja lähempänä olevista alueista tulee tiheämpiä enintään tuen täytön tiheyden arvoon asti."
  2308. #: fdmprinter.def.json
  2309. msgctxt "infill_pattern option tetrahedral"
  2310. msgid "Octet"
  2311. msgstr "Oktetti"
  2312. #: fdmprinter.def.json
  2313. msgctxt "retraction_combing option off"
  2314. msgid "Off"
  2315. msgstr "Pois"
  2316. #: fdmprinter.def.json
  2317. msgctxt "mesh_position_x description"
  2318. msgid "Offset applied to the object in the x direction."
  2319. msgstr "Siirtymää sovelletaan kohteeseen X-suunnassa."
  2320. #: fdmprinter.def.json
  2321. msgctxt "mesh_position_y description"
  2322. msgid "Offset applied to the object in the y direction."
  2323. msgstr "Siirtymää sovelletaan kohteeseen Y-suunnassa."
  2324. #: fdmprinter.def.json
  2325. msgctxt "mesh_position_z description"
  2326. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  2327. msgstr "Kappaleessa käytetty siirtymä z-suunnassa. Tällä toiminnolla voit suorittaa aiemmin ”kappaleen upotukseksi” kutsutun toiminnon."
  2328. #: fdmprinter.def.json
  2329. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  2330. msgid "Offset with Extruder"
  2331. msgstr ""
  2332. #: fdmprinter.def.json
  2333. msgctxt "support_tree_rest_preference option graceful"
  2334. msgid "On Model If Necessary"
  2335. msgstr ""
  2336. #: fdmprinter.def.json
  2337. msgctxt "print_sequence option one_at_a_time"
  2338. msgid "One at a Time"
  2339. msgstr "Yksi kerrallaan"
  2340. #: fdmprinter.def.json
  2341. msgctxt "retraction_hop_only_when_collides description"
  2342. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2343. msgstr "Suorita Z-hyppy vain siirryttäessä sellaisten tulostettujen osien yli, jota ei voi välttää vaakaliikkeellä toiminnolla ”Vältä tulostettuja osia siirtoliikkeen yhteydessä”."
  2344. #: fdmprinter.def.json
  2345. msgctxt "ironing_only_highest_layer description"
  2346. 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."
  2347. msgstr "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä."
  2348. #: fdmprinter.def.json
  2349. msgctxt "brim_outside_only description"
  2350. 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."
  2351. msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta."
  2352. #: fdmprinter.def.json
  2353. msgctxt "ooze_shield_angle label"
  2354. msgid "Ooze Shield Angle"
  2355. msgstr "Tihkusuojuksen kulma"
  2356. #: fdmprinter.def.json
  2357. msgctxt "ooze_shield_dist label"
  2358. msgid "Ooze Shield Distance"
  2359. msgstr "Tihkusuojuksen etäisyys"
  2360. #: fdmprinter.def.json
  2361. msgctxt "support_tree_branch_reach_limit label"
  2362. msgid "Optimal Branch Range"
  2363. msgstr ""
  2364. #: fdmprinter.def.json
  2365. msgctxt "optimize_wall_printing_order label"
  2366. msgid "Optimize Wall Printing Order"
  2367. msgstr "Optimoi seinämien tulostusjärjestys"
  2368. #: fdmprinter.def.json
  2369. msgctxt "optimize_wall_printing_order description"
  2370. 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."
  2371. msgstr ""
  2372. #: fdmprinter.def.json
  2373. msgctxt "machine_nozzle_tip_outer_diameter label"
  2374. msgid "Outer Nozzle Diameter"
  2375. msgstr ""
  2376. #: fdmprinter.def.json
  2377. msgctxt "acceleration_wall_0 label"
  2378. msgid "Outer Wall Acceleration"
  2379. msgstr "Ulkoseinämän kiihtyvyys"
  2380. #: fdmprinter.def.json
  2381. msgctxt "wall_0_extruder_nr label"
  2382. msgid "Outer Wall Extruder"
  2383. msgstr "Ulkoseinämän suulake"
  2384. #: fdmprinter.def.json
  2385. msgctxt "wall_0_material_flow label"
  2386. msgid "Outer Wall Flow"
  2387. msgstr ""
  2388. #: fdmprinter.def.json
  2389. msgctxt "wall_0_inset label"
  2390. msgid "Outer Wall Inset"
  2391. msgstr "Ulkoseinämän liitos"
  2392. #: fdmprinter.def.json
  2393. msgctxt "jerk_wall_0 label"
  2394. msgid "Outer Wall Jerk"
  2395. msgstr "Ulkoseinämän nykäisy"
  2396. #: fdmprinter.def.json
  2397. msgctxt "wall_line_width_0 label"
  2398. msgid "Outer Wall Line Width"
  2399. msgstr "Ulkoseinämän linjaleveys"
  2400. #: fdmprinter.def.json
  2401. msgctxt "speed_wall_0 label"
  2402. msgid "Outer Wall Speed"
  2403. msgstr "Ulkoseinämänopeus"
  2404. #: fdmprinter.def.json
  2405. msgctxt "wall_0_wipe_dist label"
  2406. msgid "Outer Wall Wipe Distance"
  2407. msgstr "Ulkoseinämän täyttöliikkeen etäisyys"
  2408. #: fdmprinter.def.json
  2409. msgctxt "inset_direction option outside_in"
  2410. msgid "Outside To Inside"
  2411. msgstr ""
  2412. #: fdmprinter.def.json
  2413. msgctxt "wall_overhang_angle label"
  2414. msgid "Overhanging Wall Angle"
  2415. msgstr ""
  2416. #: fdmprinter.def.json
  2417. msgctxt "wall_overhang_speed_factor label"
  2418. msgid "Overhanging Wall Speed"
  2419. msgstr ""
  2420. #: fdmprinter.def.json
  2421. msgctxt "wall_overhang_speed_factor description"
  2422. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  2423. msgstr ""
  2424. #: fdmprinter.def.json
  2425. msgctxt "wipe_pause description"
  2426. msgid "Pause after the unretract."
  2427. msgstr ""
  2428. #: fdmprinter.def.json
  2429. msgctxt "bridge_fan_speed description"
  2430. msgid "Percentage fan speed to use when printing bridge walls and skin."
  2431. msgstr ""
  2432. #: fdmprinter.def.json
  2433. msgctxt "bridge_fan_speed_2 description"
  2434. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  2435. msgstr ""
  2436. #: fdmprinter.def.json
  2437. msgctxt "support_supported_skin_fan_speed description"
  2438. 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."
  2439. msgstr ""
  2440. #: fdmprinter.def.json
  2441. msgctxt "bridge_fan_speed_3 description"
  2442. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  2443. msgstr ""
  2444. #: fdmprinter.def.json
  2445. msgctxt "minimum_polygon_circumference description"
  2446. 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."
  2447. msgstr ""
  2448. #: fdmprinter.def.json
  2449. msgctxt "support_tree_angle_slow label"
  2450. msgid "Preferred Branch Angle"
  2451. msgstr ""
  2452. #: fdmprinter.def.json
  2453. msgctxt "wall_transition_filter_deviation description"
  2454. 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."
  2455. msgstr ""
  2456. #: fdmprinter.def.json
  2457. msgctxt "acceleration_prime_tower label"
  2458. msgid "Prime Tower Acceleration"
  2459. msgstr "Esitäyttötornin kiihtyvyys"
  2460. #: fdmprinter.def.json
  2461. msgctxt "prime_tower_brim_enable label"
  2462. msgid "Prime Tower Brim"
  2463. msgstr ""
  2464. #: fdmprinter.def.json
  2465. msgctxt "prime_tower_flow label"
  2466. msgid "Prime Tower Flow"
  2467. msgstr "Esitäyttötornin virtaus"
  2468. #: fdmprinter.def.json
  2469. msgctxt "jerk_prime_tower label"
  2470. msgid "Prime Tower Jerk"
  2471. msgstr "Esitäyttötornin nykäisy"
  2472. #: fdmprinter.def.json
  2473. msgctxt "prime_tower_line_width label"
  2474. msgid "Prime Tower Line Width"
  2475. msgstr "Esitäyttötornin linjan leveys"
  2476. #: fdmprinter.def.json
  2477. msgctxt "prime_tower_min_volume label"
  2478. msgid "Prime Tower Minimum Volume"
  2479. msgstr "Esitäyttötornin minimiainemäärä"
  2480. #: fdmprinter.def.json
  2481. msgctxt "prime_tower_size label"
  2482. msgid "Prime Tower Size"
  2483. msgstr "Esitäyttötornin koko"
  2484. #: fdmprinter.def.json
  2485. msgctxt "speed_prime_tower label"
  2486. msgid "Prime Tower Speed"
  2487. msgstr "Esitäyttötornin nopeus"
  2488. #: fdmprinter.def.json
  2489. msgctxt "prime_tower_position_x label"
  2490. msgid "Prime Tower X Position"
  2491. msgstr "Esitäyttötornin X-sijainti"
  2492. #: fdmprinter.def.json
  2493. msgctxt "prime_tower_position_y label"
  2494. msgid "Prime Tower Y Position"
  2495. msgstr "Esitäyttötornin Y-sijainti"
  2496. #: fdmprinter.def.json
  2497. msgctxt "prime_tower_brim_enable description"
  2498. 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."
  2499. msgstr ""
  2500. #: fdmprinter.def.json
  2501. msgctxt "acceleration_print label"
  2502. msgid "Print Acceleration"
  2503. msgstr "Tulostuksen kiihtyvyys"
  2504. #: fdmprinter.def.json
  2505. msgctxt "jerk_print label"
  2506. msgid "Print Jerk"
  2507. msgstr "Tulostuksen nykäisy"
  2508. #: fdmprinter.def.json
  2509. msgctxt "print_sequence label"
  2510. msgid "Print Sequence"
  2511. msgstr "Tulostusjärjestys"
  2512. #: fdmprinter.def.json
  2513. msgctxt "speed_print label"
  2514. msgid "Print Speed"
  2515. msgstr "Tulostusnopeus"
  2516. #: fdmprinter.def.json
  2517. msgctxt "fill_outline_gaps label"
  2518. msgid "Print Thin Walls"
  2519. msgstr "Tulosta ohuet seinämät"
  2520. #: fdmprinter.def.json
  2521. msgctxt "prime_tower_enable description"
  2522. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2523. msgstr "Tulosta tulosteen viereen torni, jolla materiaali esitäytetään aina suuttimen vaihdon jälkeen."
  2524. #: fdmprinter.def.json
  2525. msgctxt "infill_support_enabled description"
  2526. 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."
  2527. msgstr ""
  2528. #: fdmprinter.def.json
  2529. msgctxt "ironing_monotonic description"
  2530. 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."
  2531. msgstr ""
  2532. #: fdmprinter.def.json
  2533. msgctxt "mold_enabled description"
  2534. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2535. msgstr "Tulosta malleja muotteina, jotka voidaan valaa niin, että saadaan alustalla olevia malleja muistuttava malli."
  2536. #: fdmprinter.def.json
  2537. msgctxt "fill_outline_gaps description"
  2538. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2539. msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia."
  2540. #: fdmprinter.def.json
  2541. msgctxt "bridge_skin_speed_2 description"
  2542. msgid "Print speed to use when printing the second bridge skin layer."
  2543. msgstr ""
  2544. #: fdmprinter.def.json
  2545. msgctxt "bridge_skin_speed_3 description"
  2546. msgid "Print speed to use when printing the third bridge skin layer."
  2547. msgstr ""
  2548. #: fdmprinter.def.json
  2549. msgctxt "infill_before_walls description"
  2550. 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."
  2551. msgstr "Tulostetaan täyttö ennen seinien tulostamista. Seinien tulostaminen ensin saattaa johtaa tarkempiin seiniin, mutta ulokkeet tulostuvat huonommin. Täytön tulostaminen ensin johtaa tukevampiin seiniin, mutta täyttökuvio saattaa joskus näkyä pinnan läpi."
  2552. #: fdmprinter.def.json
  2553. msgctxt "roofing_monotonic description"
  2554. 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."
  2555. msgstr ""
  2556. #: fdmprinter.def.json
  2557. msgctxt "skin_monotonic description"
  2558. 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."
  2559. msgstr ""
  2560. #: fdmprinter.def.json
  2561. msgctxt "material_print_temperature label"
  2562. msgid "Printing Temperature"
  2563. msgstr "Tulostuslämpötila"
  2564. #: fdmprinter.def.json
  2565. msgctxt "material_print_temperature_layer_0 label"
  2566. msgid "Printing Temperature Initial Layer"
  2567. msgstr "Alkukerroksen tulostuslämpötila"
  2568. #: fdmprinter.def.json
  2569. msgctxt "skirt_height description"
  2570. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2571. msgstr ""
  2572. #: fdmprinter.def.json
  2573. msgctxt "alternate_extra_perimeter description"
  2574. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2575. msgstr "Tulostaa ylimääräisen seinämän joka toiseen kerrokseen. Näin täyttömateriaali jää kiinni näiden lisäseinämien väliin, mikä johtaa vahvempiin tulosteisiin."
  2576. #: fdmprinter.def.json
  2577. msgctxt "resolution label"
  2578. msgid "Quality"
  2579. msgstr "Laatu"
  2580. #: fdmprinter.def.json
  2581. msgctxt "infill_pattern option quarter_cubic"
  2582. msgid "Quarter Cubic"
  2583. msgstr "Neljänneskuutio"
  2584. #: fdmprinter.def.json
  2585. msgctxt "adhesion_type option raft"
  2586. msgid "Raft"
  2587. msgstr "Pohjaristikko"
  2588. #: fdmprinter.def.json
  2589. msgctxt "raft_airgap label"
  2590. msgid "Raft Air Gap"
  2591. msgstr "Pohjaristikon ilmarako"
  2592. #: fdmprinter.def.json
  2593. msgctxt "raft_base_extruder_nr label"
  2594. msgid "Raft Base Extruder"
  2595. msgstr ""
  2596. #: fdmprinter.def.json
  2597. msgctxt "raft_base_fan_speed label"
  2598. msgid "Raft Base Fan Speed"
  2599. msgstr "Pohjaristikon pohjan tuulettimen nopeus"
  2600. #: fdmprinter.def.json
  2601. msgctxt "raft_base_line_spacing label"
  2602. msgid "Raft Base Line Spacing"
  2603. msgstr ""
  2604. #: fdmprinter.def.json
  2605. msgctxt "raft_base_line_width label"
  2606. msgid "Raft Base Line Width"
  2607. msgstr "Pohjaristikon pohjan linjaleveys"
  2608. #: fdmprinter.def.json
  2609. msgctxt "raft_base_acceleration label"
  2610. msgid "Raft Base Print Acceleration"
  2611. msgstr "Pohjaristikon pohjan tulostuksen kiihtyvyys"
  2612. #: fdmprinter.def.json
  2613. msgctxt "raft_base_jerk label"
  2614. msgid "Raft Base Print Jerk"
  2615. msgstr "Pohjaristikon pohjan tulostuksen nykäisy"
  2616. #: fdmprinter.def.json
  2617. msgctxt "raft_base_speed label"
  2618. msgid "Raft Base Print Speed"
  2619. msgstr "Pohjaristikon pohjan tulostusnopeus"
  2620. #: fdmprinter.def.json
  2621. msgctxt "raft_base_thickness label"
  2622. msgid "Raft Base Thickness"
  2623. msgstr "Pohjaristikon pohjan paksuus"
  2624. #: fdmprinter.def.json
  2625. msgctxt "raft_base_wall_count label"
  2626. msgid "Raft Base Wall Count"
  2627. msgstr ""
  2628. #: fdmprinter.def.json
  2629. msgctxt "raft_margin label"
  2630. msgid "Raft Extra Margin"
  2631. msgstr "Pohjaristikon lisämarginaali"
  2632. #: fdmprinter.def.json
  2633. msgctxt "raft_fan_speed label"
  2634. msgid "Raft Fan Speed"
  2635. msgstr "Pohjaristikon tuulettimen nopeus"
  2636. #: fdmprinter.def.json
  2637. msgctxt "raft_interface_extruder_nr label"
  2638. msgid "Raft Middle Extruder"
  2639. msgstr ""
  2640. #: fdmprinter.def.json
  2641. msgctxt "raft_interface_fan_speed label"
  2642. msgid "Raft Middle Fan Speed"
  2643. msgstr "Pohjaristikon keskikerroksen tuulettimen nopeus"
  2644. #: fdmprinter.def.json
  2645. msgctxt "raft_interface_layers label"
  2646. msgid "Raft Middle Layers"
  2647. msgstr ""
  2648. #: fdmprinter.def.json
  2649. msgctxt "raft_interface_line_width label"
  2650. msgid "Raft Middle Line Width"
  2651. msgstr "Pohjaristikon keskikerroksen linjaleveys"
  2652. #: fdmprinter.def.json
  2653. msgctxt "raft_interface_acceleration label"
  2654. msgid "Raft Middle Print Acceleration"
  2655. msgstr "Pohjaristikon keskikerroksen tulostuksen kiihtyvyys"
  2656. #: fdmprinter.def.json
  2657. msgctxt "raft_interface_jerk label"
  2658. msgid "Raft Middle Print Jerk"
  2659. msgstr "Pohjaristikon keskikerroksen tulostuksen nykäisy"
  2660. #: fdmprinter.def.json
  2661. msgctxt "raft_interface_speed label"
  2662. msgid "Raft Middle Print Speed"
  2663. msgstr "Pohjaristikon keskikerroksen tulostusnopeus"
  2664. #: fdmprinter.def.json
  2665. msgctxt "raft_interface_line_spacing label"
  2666. msgid "Raft Middle Spacing"
  2667. msgstr "Pohjaristikon keskikerroksen linjajako"
  2668. #: fdmprinter.def.json
  2669. msgctxt "raft_interface_thickness label"
  2670. msgid "Raft Middle Thickness"
  2671. msgstr "Pohjaristikon keskikerroksen paksuus"
  2672. #: fdmprinter.def.json
  2673. msgctxt "raft_acceleration label"
  2674. msgid "Raft Print Acceleration"
  2675. msgstr "Pohjaristikon tulostuksen kiihtyvyys"
  2676. #: fdmprinter.def.json
  2677. msgctxt "raft_jerk label"
  2678. msgid "Raft Print Jerk"
  2679. msgstr "Pohjaristikon tulostuksen nykäisy"
  2680. #: fdmprinter.def.json
  2681. msgctxt "raft_speed label"
  2682. msgid "Raft Print Speed"
  2683. msgstr "Pohjaristikon tulostusnopeus"
  2684. #: fdmprinter.def.json
  2685. msgctxt "raft_smoothing label"
  2686. msgid "Raft Smoothing"
  2687. msgstr "Pohjaristikon tasoitus"
  2688. #: fdmprinter.def.json
  2689. msgctxt "raft_surface_extruder_nr label"
  2690. msgid "Raft Top Extruder"
  2691. msgstr ""
  2692. #: fdmprinter.def.json
  2693. msgctxt "raft_surface_fan_speed label"
  2694. msgid "Raft Top Fan Speed"
  2695. msgstr "Pohjaristikon pinnan tuulettimen nopeus"
  2696. #: fdmprinter.def.json
  2697. msgctxt "raft_surface_thickness label"
  2698. msgid "Raft Top Layer Thickness"
  2699. msgstr "Pohjaristikon pintakerroksen paksuus"
  2700. #: fdmprinter.def.json
  2701. msgctxt "raft_surface_layers label"
  2702. msgid "Raft Top Layers"
  2703. msgstr "Pohjaristikon pintakerrokset"
  2704. #: fdmprinter.def.json
  2705. msgctxt "raft_surface_line_width label"
  2706. msgid "Raft Top Line Width"
  2707. msgstr "Pohjaristikon pinnan linjaleveys"
  2708. #: fdmprinter.def.json
  2709. msgctxt "raft_surface_acceleration label"
  2710. msgid "Raft Top Print Acceleration"
  2711. msgstr "Pohjaristikon pinnan tulostuksen kiihtyvyys"
  2712. #: fdmprinter.def.json
  2713. msgctxt "raft_surface_jerk label"
  2714. msgid "Raft Top Print Jerk"
  2715. msgstr "Pohjaristikon pinnan tulostuksen nykäisy"
  2716. #: fdmprinter.def.json
  2717. msgctxt "raft_surface_speed label"
  2718. msgid "Raft Top Print Speed"
  2719. msgstr "Pohjaristikon pinnan tulostusnopeus"
  2720. #: fdmprinter.def.json
  2721. msgctxt "raft_surface_line_spacing label"
  2722. msgid "Raft Top Spacing"
  2723. msgstr "Pohjaristikon pinnan linjajako"
  2724. #: fdmprinter.def.json
  2725. msgctxt "z_seam_type option random"
  2726. msgid "Random"
  2727. msgstr "Satunnainen"
  2728. #: fdmprinter.def.json
  2729. msgctxt "infill_randomize_start_location label"
  2730. msgid "Randomize Infill Start"
  2731. msgstr ""
  2732. #: fdmprinter.def.json
  2733. msgctxt "infill_randomize_start_location description"
  2734. 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."
  2735. msgstr ""
  2736. #: fdmprinter.def.json
  2737. msgctxt "magic_fuzzy_skin_enabled description"
  2738. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2739. msgstr "Satunnainen värinä tulostettaessa ulkoseinämää, jotta pinta näyttää viimeistelemättömältä ja karhealta."
  2740. #: fdmprinter.def.json
  2741. msgctxt "machine_shape option rectangular"
  2742. msgid "Rectangular"
  2743. msgstr "Suorakulmainen"
  2744. #: fdmprinter.def.json
  2745. msgctxt "cool_fan_speed_min label"
  2746. msgid "Regular Fan Speed"
  2747. msgstr "Normaali tuulettimen nopeus"
  2748. #: fdmprinter.def.json
  2749. msgctxt "cool_fan_full_at_height label"
  2750. msgid "Regular Fan Speed at Height"
  2751. msgstr "Normaali tuulettimen nopeus korkeudella"
  2752. #: fdmprinter.def.json
  2753. msgctxt "cool_fan_full_layer label"
  2754. msgid "Regular Fan Speed at Layer"
  2755. msgstr "Normaali tuulettimen nopeus kerroksessa"
  2756. #: fdmprinter.def.json
  2757. msgctxt "cool_min_layer_time_fan_speed_max label"
  2758. msgid "Regular/Maximum Fan Speed Threshold"
  2759. msgstr "Tuulettimen normaali-/maksiminopeuden raja-arvo"
  2760. #: fdmprinter.def.json
  2761. msgctxt "relative_extrusion label"
  2762. msgid "Relative Extrusion"
  2763. msgstr "Suhteellinen pursotus"
  2764. #: fdmprinter.def.json
  2765. msgctxt "meshfix_union_all_remove_holes label"
  2766. msgid "Remove All Holes"
  2767. msgstr "Poista kaikki reiät"
  2768. #: fdmprinter.def.json
  2769. msgctxt "remove_empty_first_layers label"
  2770. msgid "Remove Empty First Layers"
  2771. msgstr ""
  2772. #: fdmprinter.def.json
  2773. msgctxt "carve_multiple_volumes label"
  2774. msgid "Remove Mesh Intersection"
  2775. msgstr "Poista verkon leikkauspiste"
  2776. #: fdmprinter.def.json
  2777. msgctxt "raft_remove_inside_corners label"
  2778. msgid "Remove Raft Inside Corners"
  2779. msgstr ""
  2780. #: fdmprinter.def.json
  2781. msgctxt "carve_multiple_volumes description"
  2782. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2783. msgstr "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa."
  2784. #: fdmprinter.def.json
  2785. msgctxt "remove_empty_first_layers description"
  2786. 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."
  2787. msgstr ""
  2788. #: fdmprinter.def.json
  2789. msgctxt "raft_remove_inside_corners description"
  2790. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2791. msgstr ""
  2792. #: fdmprinter.def.json
  2793. msgctxt "meshfix_union_all_remove_holes description"
  2794. 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."
  2795. msgstr "Poistaa kaikki reiät kustakin kerroksesta ja pitää vain ulkopuolisen muodon. Tällä jätetään näkymätön sisäinen geometria huomiotta. Se kuitenkin jättää huomiotta myös kerrosten reiät, jotka voidaan nähdä ylä- tai alapuolelta."
  2796. #: fdmprinter.def.json
  2797. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2798. msgid "RepRap"
  2799. msgstr "RepRap"
  2800. #: fdmprinter.def.json
  2801. msgctxt "machine_gcode_flavor option Repetier"
  2802. msgid "Repetier"
  2803. msgstr "Repetier"
  2804. #: fdmprinter.def.json
  2805. msgctxt "skin_outline_count description"
  2806. 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."
  2807. msgstr "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä."
  2808. #: fdmprinter.def.json
  2809. msgctxt "support_tree_rest_preference label"
  2810. msgid "Rest Preference"
  2811. msgstr ""
  2812. #: fdmprinter.def.json
  2813. msgctxt "travel_retract_before_outer_wall label"
  2814. msgid "Retract Before Outer Wall"
  2815. msgstr "Vedä takaisin ennen ulkoseinämää"
  2816. #: fdmprinter.def.json
  2817. msgctxt "retract_at_layer_change label"
  2818. msgid "Retract at Layer Change"
  2819. msgstr "Takaisinveto kerroksen muuttuessa"
  2820. #: fdmprinter.def.json
  2821. msgctxt "retraction_enable description"
  2822. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2823. msgstr ""
  2824. #: fdmprinter.def.json
  2825. msgctxt "wipe_retraction_enable description"
  2826. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2827. msgstr ""
  2828. #: fdmprinter.def.json
  2829. msgctxt "retract_at_layer_change description"
  2830. msgid "Retract the filament when the nozzle is moving to the next layer."
  2831. msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen."
  2832. #: fdmprinter.def.json
  2833. msgctxt "retraction_amount label"
  2834. msgid "Retraction Distance"
  2835. msgstr "Takaisinvetoetäisyys"
  2836. #: fdmprinter.def.json
  2837. msgctxt "retraction_extra_prime_amount label"
  2838. msgid "Retraction Extra Prime Amount"
  2839. msgstr "Takaisinvedon esitäytön lisäys"
  2840. #: fdmprinter.def.json
  2841. msgctxt "retraction_min_travel label"
  2842. msgid "Retraction Minimum Travel"
  2843. msgstr "Takaisinvedon minimiliike"
  2844. #: fdmprinter.def.json
  2845. msgctxt "retraction_prime_speed label"
  2846. msgid "Retraction Prime Speed"
  2847. msgstr "Takaisinvedon esitäyttönopeus"
  2848. #: fdmprinter.def.json
  2849. msgctxt "retraction_retract_speed label"
  2850. msgid "Retraction Retract Speed"
  2851. msgstr "Takaisinvedon vetonopeus"
  2852. #: fdmprinter.def.json
  2853. msgctxt "retraction_speed label"
  2854. msgid "Retraction Speed"
  2855. msgstr "Takaisinvetonopeus"
  2856. #: fdmprinter.def.json
  2857. msgctxt "z_seam_position option right"
  2858. msgid "Right"
  2859. msgstr ""
  2860. #: fdmprinter.def.json
  2861. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2862. msgid "Scale Fan Speed To 0-1"
  2863. msgstr ""
  2864. #: fdmprinter.def.json
  2865. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2866. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2867. msgstr ""
  2868. #: fdmprinter.def.json
  2869. msgctxt "material_shrinkage_percentage label"
  2870. msgid "Scaling Factor Shrinkage Compensation"
  2871. msgstr ""
  2872. #: fdmprinter.def.json
  2873. msgctxt "support_meshes_present label"
  2874. msgid "Scene Has Support Meshes"
  2875. msgstr ""
  2876. #: fdmprinter.def.json
  2877. msgctxt "z_seam_corner label"
  2878. msgid "Seam Corner Preference"
  2879. msgstr "Saumakulmien asetus"
  2880. #: fdmprinter.def.json
  2881. msgctxt "draft_shield_height_limitation description"
  2882. 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."
  2883. msgstr "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena."
  2884. #: fdmprinter.def.json
  2885. msgctxt "dual description"
  2886. msgid "Settings used for printing with multiple extruders."
  2887. msgstr "Asetukset, joita käytetään monilla suulakkeilla tulostukseen."
  2888. #: fdmprinter.def.json
  2889. msgctxt "command_line_settings description"
  2890. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2891. msgstr "Asetukset, joita käytetään vain jos CuraEnginea ei kutsuta Cura-edustaohjelmasta."
  2892. #: fdmprinter.def.json
  2893. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2894. msgid "Shared Nozzle Initial Retraction"
  2895. msgstr ""
  2896. #: fdmprinter.def.json
  2897. msgctxt "z_seam_type option sharpest_corner"
  2898. msgid "Sharpest Corner"
  2899. msgstr "Terävin kulma"
  2900. #: fdmprinter.def.json
  2901. msgctxt "shell description"
  2902. msgid "Shell"
  2903. msgstr "Kuori"
  2904. #: fdmprinter.def.json
  2905. msgctxt "z_seam_type option shortest"
  2906. msgid "Shortest"
  2907. msgstr "Lyhin"
  2908. #: fdmprinter.def.json
  2909. msgctxt "machine_show_variants label"
  2910. msgid "Show Machine Variants"
  2911. msgstr "Näytä laitteen variantit"
  2912. #: fdmprinter.def.json
  2913. msgctxt "skin_edge_support_layers label"
  2914. msgid "Skin Edge Support Layers"
  2915. msgstr ""
  2916. #: fdmprinter.def.json
  2917. msgctxt "skin_edge_support_thickness label"
  2918. msgid "Skin Edge Support Thickness"
  2919. msgstr ""
  2920. #: fdmprinter.def.json
  2921. msgctxt "expand_skins_expand_distance label"
  2922. msgid "Skin Expand Distance"
  2923. msgstr "Pintakalvon laajennuksen etäisyys"
  2924. #: fdmprinter.def.json
  2925. msgctxt "skin_overlap_mm label"
  2926. msgid "Skin Overlap"
  2927. msgstr "Pintakalvon limitys"
  2928. #: fdmprinter.def.json
  2929. msgctxt "skin_overlap label"
  2930. msgid "Skin Overlap Percentage"
  2931. msgstr "Pintakalvon limityksen prosentti"
  2932. #: fdmprinter.def.json
  2933. msgctxt "skin_preshrink label"
  2934. msgid "Skin Removal Width"
  2935. msgstr "Pintakalvon poistoleveys"
  2936. #: fdmprinter.def.json
  2937. msgctxt "min_skin_width_for_expansion description"
  2938. 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."
  2939. msgstr "Tätä kapeampia pintakalvoja ei laajenneta. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on rinne lähellä pystysuoraa osuutta."
  2940. #: fdmprinter.def.json
  2941. msgctxt "support_zag_skip_count description"
  2942. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2943. msgstr "Ohita joka N. yhdistämislinja, jotta tukirakenne on helpompi rikkoa."
  2944. #: fdmprinter.def.json
  2945. msgctxt "support_skip_some_zags description"
  2946. 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."
  2947. msgstr "Ohita jotkin tukilinjojen yhdistämiset, jotta tukirakenne on helpompi rikkoa. Tämä asetus soveltuu siksak-tukitäyttökuvioon."
  2948. #: fdmprinter.def.json
  2949. msgctxt "adhesion_type option skirt"
  2950. msgid "Skirt"
  2951. msgstr "Helma"
  2952. #: fdmprinter.def.json
  2953. msgctxt "skirt_gap label"
  2954. msgid "Skirt Distance"
  2955. msgstr "Helman etäisyys"
  2956. #: fdmprinter.def.json
  2957. msgctxt "skirt_height label"
  2958. msgid "Skirt Height"
  2959. msgstr ""
  2960. #: fdmprinter.def.json
  2961. msgctxt "skirt_line_count label"
  2962. msgid "Skirt Line Count"
  2963. msgstr "Helman linjaluku"
  2964. #: fdmprinter.def.json
  2965. msgctxt "acceleration_skirt_brim label"
  2966. msgid "Skirt/Brim Acceleration"
  2967. msgstr "Helman/reunuksen kiihtyvyys"
  2968. #: fdmprinter.def.json
  2969. msgctxt "skirt_brim_extruder_nr label"
  2970. msgid "Skirt/Brim Extruder"
  2971. msgstr ""
  2972. #: fdmprinter.def.json
  2973. msgctxt "skirt_brim_material_flow label"
  2974. msgid "Skirt/Brim Flow"
  2975. msgstr ""
  2976. #: fdmprinter.def.json
  2977. msgctxt "jerk_skirt_brim label"
  2978. msgid "Skirt/Brim Jerk"
  2979. msgstr "Helman/reunuksen nykäisy"
  2980. #: fdmprinter.def.json
  2981. msgctxt "skirt_brim_line_width label"
  2982. msgid "Skirt/Brim Line Width"
  2983. msgstr "Helma-/reunuslinjan leveys"
  2984. #: fdmprinter.def.json
  2985. msgctxt "skirt_brim_minimal_length label"
  2986. msgid "Skirt/Brim Minimum Length"
  2987. msgstr "Helman/reunuksen minimipituus"
  2988. #: fdmprinter.def.json
  2989. msgctxt "skirt_brim_speed label"
  2990. msgid "Skirt/Brim Speed"
  2991. msgstr "Helman/reunuksen nopeus"
  2992. #: fdmprinter.def.json
  2993. msgctxt "slicing_tolerance label"
  2994. msgid "Slicing Tolerance"
  2995. msgstr ""
  2996. #: fdmprinter.def.json
  2997. msgctxt "small_feature_speed_factor_0 label"
  2998. msgid "Small Feature Initial Layer Speed"
  2999. msgstr ""
  3000. #: fdmprinter.def.json
  3001. msgctxt "small_feature_max_length label"
  3002. msgid "Small Feature Max Length"
  3003. msgstr ""
  3004. #: fdmprinter.def.json
  3005. msgctxt "small_feature_speed_factor label"
  3006. msgid "Small Feature Speed"
  3007. msgstr ""
  3008. #: fdmprinter.def.json
  3009. msgctxt "small_hole_max_size label"
  3010. msgid "Small Hole Max Size"
  3011. msgstr ""
  3012. #: fdmprinter.def.json
  3013. #, fuzzy
  3014. msgctxt "cool_min_temperature label"
  3015. msgid "Small Layer Printing Temperature"
  3016. msgstr "Tulostuslämpötila lopussa"
  3017. #: fdmprinter.def.json
  3018. msgctxt "small_skin_width label"
  3019. msgid "Small Top/Bottom Width"
  3020. msgstr ""
  3021. #: fdmprinter.def.json
  3022. msgctxt "small_feature_speed_factor_0 description"
  3023. 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."
  3024. msgstr ""
  3025. #: fdmprinter.def.json
  3026. msgctxt "small_feature_speed_factor description"
  3027. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  3028. msgstr ""
  3029. #: fdmprinter.def.json
  3030. msgctxt "small_skin_width description"
  3031. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  3032. msgstr ""
  3033. #: fdmprinter.def.json
  3034. msgctxt "brim_smart_ordering label"
  3035. msgid "Smart Brim"
  3036. msgstr ""
  3037. #: fdmprinter.def.json
  3038. msgctxt "z_seam_corner option z_seam_corner_weighted"
  3039. msgid "Smart Hiding"
  3040. msgstr ""
  3041. #: fdmprinter.def.json
  3042. msgctxt "smooth_spiralized_contours label"
  3043. msgid "Smooth Spiralized Contours"
  3044. msgstr "Kierukoitujen ääriviivojen tasoittaminen"
  3045. #: fdmprinter.def.json
  3046. msgctxt "smooth_spiralized_contours description"
  3047. 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."
  3048. msgstr ""
  3049. #: fdmprinter.def.json
  3050. msgctxt "retraction_extra_prime_amount description"
  3051. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  3052. msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä."
  3053. #: fdmprinter.def.json
  3054. msgctxt "wipe_retraction_extra_prime_amount description"
  3055. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  3056. msgstr ""
  3057. #: fdmprinter.def.json
  3058. msgctxt "blackmagic label"
  3059. msgid "Special Modes"
  3060. msgstr "Erikoistilat"
  3061. #: fdmprinter.def.json
  3062. msgctxt "speed description"
  3063. msgid "Speed"
  3064. msgstr "Nopeus"
  3065. #: fdmprinter.def.json
  3066. msgctxt "speed label"
  3067. msgid "Speed"
  3068. msgstr "Nopeus"
  3069. #: fdmprinter.def.json
  3070. msgctxt "wipe_hop_speed description"
  3071. msgid "Speed to move the z-axis during the hop."
  3072. msgstr ""
  3073. #: fdmprinter.def.json
  3074. msgctxt "magic_spiralize label"
  3075. msgid "Spiralize Outer Contour"
  3076. msgstr "Kierukoi ulompi ääriviiva"
  3077. #: fdmprinter.def.json
  3078. msgctxt "magic_spiralize description"
  3079. 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."
  3080. msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Tämä toiminto kannattaa ottaa käyttöön vain, jos jokaisessa kerroksessa on vain yksi osa."
  3081. #: fdmprinter.def.json
  3082. msgctxt "material_standby_temperature label"
  3083. msgid "Standby Temperature"
  3084. msgstr "Valmiuslämpötila"
  3085. #: fdmprinter.def.json
  3086. msgctxt "machine_start_gcode label"
  3087. msgid "Start G-code"
  3088. msgstr ""
  3089. #: fdmprinter.def.json
  3090. msgctxt "z_seam_type description"
  3091. 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."
  3092. msgstr "Kerroksen kunkin reitin aloituskohta. Kun peräkkäisissä kerroksissa olevat reitit alkavat samasta kohdasta, tulosteessa saattaa näkyä pystysauma. Kun nämä kohdistetaan lähelle käyttäjän määrittämää kohtaa, sauma on helpompi poistaa. Satunnaisesti sijoittuneina reitin aloituskohdan epätarkkuudet ovat vähemmän silmiinpistäviä. Lyhintä reittiä käyttäen tulostus on nopeampaa."
  3093. #: fdmprinter.def.json
  3094. msgctxt "machine_steps_per_mm_e label"
  3095. msgid "Steps per Millimeter (E)"
  3096. msgstr ""
  3097. #: fdmprinter.def.json
  3098. msgctxt "machine_steps_per_mm_x label"
  3099. msgid "Steps per Millimeter (X)"
  3100. msgstr ""
  3101. #: fdmprinter.def.json
  3102. msgctxt "machine_steps_per_mm_y label"
  3103. msgid "Steps per Millimeter (Y)"
  3104. msgstr ""
  3105. #: fdmprinter.def.json
  3106. msgctxt "machine_steps_per_mm_z label"
  3107. msgid "Steps per Millimeter (Z)"
  3108. msgstr ""
  3109. #: fdmprinter.def.json
  3110. msgctxt "support description"
  3111. msgid "Support"
  3112. msgstr "Tuki"
  3113. #: fdmprinter.def.json
  3114. msgctxt "support label"
  3115. msgid "Support"
  3116. msgstr "Tuki"
  3117. #: fdmprinter.def.json
  3118. msgctxt "acceleration_support label"
  3119. msgid "Support Acceleration"
  3120. msgstr "Tuen kiihtyvyys"
  3121. #: fdmprinter.def.json
  3122. msgctxt "support_bottom_distance label"
  3123. msgid "Support Bottom Distance"
  3124. msgstr "Tuen alaosan etäisyys"
  3125. #: fdmprinter.def.json
  3126. #, fuzzy
  3127. msgctxt "support_bottom_wall_count label"
  3128. msgid "Support Bottom Wall Line Count"
  3129. msgstr "Tukilohkolinjaluku"
  3130. #: fdmprinter.def.json
  3131. msgctxt "support_brim_line_count label"
  3132. msgid "Support Brim Line Count"
  3133. msgstr ""
  3134. #: fdmprinter.def.json
  3135. msgctxt "support_brim_width label"
  3136. msgid "Support Brim Width"
  3137. msgstr ""
  3138. #: fdmprinter.def.json
  3139. msgctxt "support_zag_skip_count label"
  3140. msgid "Support Chunk Line Count"
  3141. msgstr "Tukilohkolinjaluku"
  3142. #: fdmprinter.def.json
  3143. msgctxt "support_skip_zag_per_mm label"
  3144. msgid "Support Chunk Size"
  3145. msgstr "Tukilohkon koko"
  3146. #: fdmprinter.def.json
  3147. msgctxt "support_infill_rate label"
  3148. msgid "Support Density"
  3149. msgstr "Tuen tiheys"
  3150. #: fdmprinter.def.json
  3151. msgctxt "support_xy_overrides_z label"
  3152. msgid "Support Distance Priority"
  3153. msgstr "Tuen etäisyyden prioriteetti"
  3154. #: fdmprinter.def.json
  3155. msgctxt "support_extruder_nr label"
  3156. msgid "Support Extruder"
  3157. msgstr "Tuen suulake"
  3158. #: fdmprinter.def.json
  3159. msgctxt "acceleration_support_bottom label"
  3160. msgid "Support Floor Acceleration"
  3161. msgstr "Tukilattian kiihtyvyys"
  3162. #: fdmprinter.def.json
  3163. msgctxt "support_bottom_density label"
  3164. msgid "Support Floor Density"
  3165. msgstr "Tukilattian tiheys"
  3166. #: fdmprinter.def.json
  3167. msgctxt "support_bottom_extruder_nr label"
  3168. msgid "Support Floor Extruder"
  3169. msgstr "Tukilattian suulake"
  3170. #: fdmprinter.def.json
  3171. msgctxt "support_bottom_material_flow label"
  3172. msgid "Support Floor Flow"
  3173. msgstr ""
  3174. #: fdmprinter.def.json
  3175. msgctxt "support_bottom_offset label"
  3176. msgid "Support Floor Horizontal Expansion"
  3177. msgstr ""
  3178. #: fdmprinter.def.json
  3179. msgctxt "jerk_support_bottom label"
  3180. msgid "Support Floor Jerk"
  3181. msgstr "Tukilattian nykäisy"
  3182. #: fdmprinter.def.json
  3183. msgctxt "support_bottom_angles label"
  3184. msgid "Support Floor Line Directions"
  3185. msgstr ""
  3186. #: fdmprinter.def.json
  3187. msgctxt "support_bottom_line_distance label"
  3188. msgid "Support Floor Line Distance"
  3189. msgstr "Tukilattian linjaetäisyys"
  3190. #: fdmprinter.def.json
  3191. msgctxt "support_bottom_line_width label"
  3192. msgid "Support Floor Line Width"
  3193. msgstr "Tukilattian linjaleveys"
  3194. #: fdmprinter.def.json
  3195. msgctxt "support_bottom_pattern label"
  3196. msgid "Support Floor Pattern"
  3197. msgstr "Tukilattian kuvio"
  3198. #: fdmprinter.def.json
  3199. msgctxt "speed_support_bottom label"
  3200. msgid "Support Floor Speed"
  3201. msgstr "Tukilattian nopeus"
  3202. #: fdmprinter.def.json
  3203. msgctxt "support_bottom_height label"
  3204. msgid "Support Floor Thickness"
  3205. msgstr "Tukilattian paksuus"
  3206. #: fdmprinter.def.json
  3207. msgctxt "support_material_flow label"
  3208. msgid "Support Flow"
  3209. msgstr ""
  3210. #: fdmprinter.def.json
  3211. msgctxt "support_offset label"
  3212. msgid "Support Horizontal Expansion"
  3213. msgstr "Tuen vaakalaajennus"
  3214. #: fdmprinter.def.json
  3215. msgctxt "acceleration_support_infill label"
  3216. msgid "Support Infill Acceleration"
  3217. msgstr "Tuen täytön kiihtyvyys"
  3218. #: fdmprinter.def.json
  3219. msgctxt "support_infill_extruder_nr label"
  3220. msgid "Support Infill Extruder"
  3221. msgstr "Tuen täytön suulake"
  3222. #: fdmprinter.def.json
  3223. msgctxt "jerk_support_infill label"
  3224. msgid "Support Infill Jerk"
  3225. msgstr "Tuen täytön nykäisy"
  3226. #: fdmprinter.def.json
  3227. msgctxt "support_infill_sparse_thickness label"
  3228. msgid "Support Infill Layer Thickness"
  3229. msgstr "Tuen täyttökerroksen paksuus"
  3230. #: fdmprinter.def.json
  3231. msgctxt "support_infill_angles label"
  3232. msgid "Support Infill Line Directions"
  3233. msgstr ""
  3234. #: fdmprinter.def.json
  3235. msgctxt "speed_support_infill label"
  3236. msgid "Support Infill Speed"
  3237. msgstr "Tuen täytön nopeus"
  3238. #: fdmprinter.def.json
  3239. msgctxt "acceleration_support_interface label"
  3240. msgid "Support Interface Acceleration"
  3241. msgstr "Tukiliittymän kiihtyvyys"
  3242. #: fdmprinter.def.json
  3243. msgctxt "support_interface_density label"
  3244. msgid "Support Interface Density"
  3245. msgstr "Tukiliittymän tiheys"
  3246. #: fdmprinter.def.json
  3247. msgctxt "support_interface_extruder_nr label"
  3248. msgid "Support Interface Extruder"
  3249. msgstr "Tukiliittymän suulake"
  3250. #: fdmprinter.def.json
  3251. msgctxt "support_interface_material_flow label"
  3252. msgid "Support Interface Flow"
  3253. msgstr ""
  3254. #: fdmprinter.def.json
  3255. msgctxt "support_interface_offset label"
  3256. msgid "Support Interface Horizontal Expansion"
  3257. msgstr ""
  3258. #: fdmprinter.def.json
  3259. msgctxt "jerk_support_interface label"
  3260. msgid "Support Interface Jerk"
  3261. msgstr "Tukiliittymän nykäisy"
  3262. #: fdmprinter.def.json
  3263. msgctxt "support_interface_angles label"
  3264. msgid "Support Interface Line Directions"
  3265. msgstr ""
  3266. #: fdmprinter.def.json
  3267. msgctxt "support_interface_line_width label"
  3268. msgid "Support Interface Line Width"
  3269. msgstr "Tukiliittymän linjan leveys"
  3270. #: fdmprinter.def.json
  3271. msgctxt "support_interface_pattern label"
  3272. msgid "Support Interface Pattern"
  3273. msgstr "Tukiliittymän kuvio"
  3274. #: fdmprinter.def.json
  3275. msgctxt "support_interface_priority label"
  3276. msgid "Support Interface Priority"
  3277. msgstr ""
  3278. #: fdmprinter.def.json
  3279. msgctxt "support_interface_skip_height label"
  3280. msgid "Support Interface Resolution"
  3281. msgstr "Tukiliittymän resoluutio"
  3282. #: fdmprinter.def.json
  3283. msgctxt "speed_support_interface label"
  3284. msgid "Support Interface Speed"
  3285. msgstr "Tukiliittymän nopeus"
  3286. #: fdmprinter.def.json
  3287. msgctxt "support_interface_height label"
  3288. msgid "Support Interface Thickness"
  3289. msgstr "Tukiliittymän paksuus"
  3290. #: fdmprinter.def.json
  3291. #, fuzzy
  3292. msgctxt "support_interface_wall_count label"
  3293. msgid "Support Interface Wall Line Count"
  3294. msgstr "Tukiliittymän linjan leveys"
  3295. #: fdmprinter.def.json
  3296. msgctxt "jerk_support label"
  3297. msgid "Support Jerk"
  3298. msgstr "Tuen nykäisy"
  3299. #: fdmprinter.def.json
  3300. msgctxt "support_join_distance label"
  3301. msgid "Support Join Distance"
  3302. msgstr "Tuen liitosetäisyys"
  3303. #: fdmprinter.def.json
  3304. msgctxt "support_line_distance label"
  3305. msgid "Support Line Distance"
  3306. msgstr "Tukilinjojen etäisyys"
  3307. #: fdmprinter.def.json
  3308. msgctxt "support_line_width label"
  3309. msgid "Support Line Width"
  3310. msgstr "Tukilinjan leveys"
  3311. #: fdmprinter.def.json
  3312. msgctxt "support_mesh label"
  3313. msgid "Support Mesh"
  3314. msgstr "Tukiverkko"
  3315. #: fdmprinter.def.json
  3316. msgctxt "support_angle label"
  3317. msgid "Support Overhang Angle"
  3318. msgstr "Tuen ulokkeen kulma"
  3319. #: fdmprinter.def.json
  3320. msgctxt "support_pattern label"
  3321. msgid "Support Pattern"
  3322. msgstr "Tukikuvio"
  3323. #: fdmprinter.def.json
  3324. msgctxt "support_type label"
  3325. msgid "Support Placement"
  3326. msgstr "Tuen sijoittelu"
  3327. #: fdmprinter.def.json
  3328. msgctxt "acceleration_support_roof label"
  3329. msgid "Support Roof Acceleration"
  3330. msgstr "Tukikaton kiihtyvyys"
  3331. #: fdmprinter.def.json
  3332. msgctxt "support_roof_density label"
  3333. msgid "Support Roof Density"
  3334. msgstr "Tukikaton tiheys"
  3335. #: fdmprinter.def.json
  3336. msgctxt "support_roof_extruder_nr label"
  3337. msgid "Support Roof Extruder"
  3338. msgstr "Tukikaton suulake"
  3339. #: fdmprinter.def.json
  3340. msgctxt "support_roof_material_flow label"
  3341. msgid "Support Roof Flow"
  3342. msgstr ""
  3343. #: fdmprinter.def.json
  3344. msgctxt "support_roof_offset label"
  3345. msgid "Support Roof Horizontal Expansion"
  3346. msgstr ""
  3347. #: fdmprinter.def.json
  3348. msgctxt "jerk_support_roof label"
  3349. msgid "Support Roof Jerk"
  3350. msgstr "Tukikaton nykäisy"
  3351. #: fdmprinter.def.json
  3352. msgctxt "support_roof_angles label"
  3353. msgid "Support Roof Line Directions"
  3354. msgstr ""
  3355. #: fdmprinter.def.json
  3356. msgctxt "support_roof_line_distance label"
  3357. msgid "Support Roof Line Distance"
  3358. msgstr "Tukikaton linjaetäisyys"
  3359. #: fdmprinter.def.json
  3360. msgctxt "support_roof_line_width label"
  3361. msgid "Support Roof Line Width"
  3362. msgstr "Tukikaton linjaleveys"
  3363. #: fdmprinter.def.json
  3364. msgctxt "support_roof_pattern label"
  3365. msgid "Support Roof Pattern"
  3366. msgstr "Tukikaton kuvio"
  3367. #: fdmprinter.def.json
  3368. msgctxt "speed_support_roof label"
  3369. msgid "Support Roof Speed"
  3370. msgstr "Tukikaton nopeus"
  3371. #: fdmprinter.def.json
  3372. msgctxt "support_roof_height label"
  3373. msgid "Support Roof Thickness"
  3374. msgstr "Tukikaton paksuus"
  3375. #: fdmprinter.def.json
  3376. #, fuzzy
  3377. msgctxt "support_roof_wall_count label"
  3378. msgid "Support Roof Wall Line Count"
  3379. msgstr "Tukikaton linjaleveys"
  3380. #: fdmprinter.def.json
  3381. msgctxt "speed_support label"
  3382. msgid "Support Speed"
  3383. msgstr "Tukirakenteen nopeus"
  3384. #: fdmprinter.def.json
  3385. msgctxt "support_bottom_stair_step_height label"
  3386. msgid "Support Stair Step Height"
  3387. msgstr "Tuen porrasnousun korkeus"
  3388. #: fdmprinter.def.json
  3389. msgctxt "support_bottom_stair_step_width label"
  3390. msgid "Support Stair Step Maximum Width"
  3391. msgstr "Tukiportaiden askelman enimmäisleveys"
  3392. #: fdmprinter.def.json
  3393. msgctxt "support_bottom_stair_step_min_slope label"
  3394. msgid "Support Stair Step Minimum Slope Angle"
  3395. msgstr ""
  3396. #: fdmprinter.def.json
  3397. msgctxt "support_structure label"
  3398. msgid "Support Structure"
  3399. msgstr ""
  3400. #: fdmprinter.def.json
  3401. msgctxt "support_top_distance label"
  3402. msgid "Support Top Distance"
  3403. msgstr "Tuen yläosan etäisyys"
  3404. #: fdmprinter.def.json
  3405. msgctxt "support_wall_count label"
  3406. msgid "Support Wall Line Count"
  3407. msgstr ""
  3408. #: fdmprinter.def.json
  3409. msgctxt "support_xy_distance label"
  3410. msgid "Support X/Y Distance"
  3411. msgstr "Tuen X-/Y-etäisyys"
  3412. #: fdmprinter.def.json
  3413. msgctxt "support_z_distance label"
  3414. msgid "Support Z Distance"
  3415. msgstr "Tuen Z-etäisyys"
  3416. #: fdmprinter.def.json
  3417. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  3418. msgid "Support lines preferred"
  3419. msgstr ""
  3420. #: fdmprinter.def.json
  3421. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  3422. msgid "Support preferred"
  3423. msgstr ""
  3424. #: fdmprinter.def.json
  3425. msgctxt "support_supported_skin_fan_speed label"
  3426. msgid "Supported Skin Fan Speed"
  3427. msgstr ""
  3428. #: fdmprinter.def.json
  3429. msgctxt "magic_mesh_surface_mode option surface"
  3430. msgid "Surface"
  3431. msgstr "Pinta"
  3432. #: fdmprinter.def.json
  3433. msgctxt "material_surface_energy label"
  3434. msgid "Surface Energy"
  3435. msgstr ""
  3436. #: fdmprinter.def.json
  3437. msgctxt "magic_mesh_surface_mode label"
  3438. msgid "Surface Mode"
  3439. msgstr "Pintatila"
  3440. #: fdmprinter.def.json
  3441. msgctxt "material_adhesion_tendency description"
  3442. msgid "Surface adhesion tendency."
  3443. msgstr ""
  3444. #: fdmprinter.def.json
  3445. msgctxt "material_surface_energy description"
  3446. msgid "Surface energy."
  3447. msgstr ""
  3448. #: fdmprinter.def.json
  3449. msgctxt "brim_smart_ordering description"
  3450. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3451. msgstr ""
  3452. #: fdmprinter.def.json
  3453. msgctxt "alternate_carve_order description"
  3454. 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."
  3455. msgstr "Määrittää, mitkä verkon leikkaustilavuudet kuuluvat jokaiseen kerrokseen, jotta limittäiset verkot yhdistetään. Jos tämä asetus poistetaan käytöstä, yksi verkoista saa kaiken tilavuuden limityksessä, ja verkko poistetaan muista verkoista."
  3456. #: fdmprinter.def.json
  3457. msgctxt "adaptive_layer_height_threshold description"
  3458. 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."
  3459. msgstr ""
  3460. #: fdmprinter.def.json
  3461. msgctxt "layer_start_x description"
  3462. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  3463. msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus."
  3464. #: fdmprinter.def.json
  3465. msgctxt "z_seam_x description"
  3466. msgid "The X coordinate of the position near where to start printing each part in a layer."
  3467. msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus."
  3468. #: fdmprinter.def.json
  3469. msgctxt "extruder_prime_pos_x description"
  3470. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3471. msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  3472. #: fdmprinter.def.json
  3473. msgctxt "layer_start_y description"
  3474. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  3475. msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus."
  3476. #: fdmprinter.def.json
  3477. msgctxt "z_seam_y description"
  3478. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  3479. msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus."
  3480. #: fdmprinter.def.json
  3481. msgctxt "extruder_prime_pos_y description"
  3482. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3483. msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  3484. #: fdmprinter.def.json
  3485. msgctxt "extruder_prime_pos_z description"
  3486. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  3487. msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  3488. #: fdmprinter.def.json
  3489. msgctxt "acceleration_print_layer_0 description"
  3490. msgid "The acceleration during the printing of the initial layer."
  3491. msgstr "Alkukerroksen tulostuksen aikainen kiihtyvyys."
  3492. #: fdmprinter.def.json
  3493. msgctxt "acceleration_layer_0 description"
  3494. msgid "The acceleration for the initial layer."
  3495. msgstr "Alkukerroksen kiihtyvyys."
  3496. #: fdmprinter.def.json
  3497. msgctxt "acceleration_travel_layer_0 description"
  3498. msgid "The acceleration for travel moves in the initial layer."
  3499. msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys."
  3500. #: fdmprinter.def.json
  3501. msgctxt "jerk_travel_layer_0 description"
  3502. msgid "The acceleration for travel moves in the initial layer."
  3503. msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys."
  3504. #: fdmprinter.def.json
  3505. msgctxt "acceleration_wall_x description"
  3506. msgid "The acceleration with which all inner walls are printed."
  3507. msgstr "Kiihtyvyys, jolla kaikki sisäseinämät tulostetaan."
  3508. #: fdmprinter.def.json
  3509. msgctxt "acceleration_infill description"
  3510. msgid "The acceleration with which infill is printed."
  3511. msgstr "Kiihtyvyys, jolla täyttö tulostetaan."
  3512. #: fdmprinter.def.json
  3513. msgctxt "acceleration_ironing description"
  3514. msgid "The acceleration with which ironing is performed."
  3515. msgstr "Kiihtyvyys, jolla silitys suoritetaan."
  3516. #: fdmprinter.def.json
  3517. msgctxt "acceleration_print description"
  3518. msgid "The acceleration with which printing happens."
  3519. msgstr "Kiihtyvyys, jolla tulostetaan."
  3520. #: fdmprinter.def.json
  3521. msgctxt "raft_base_acceleration description"
  3522. msgid "The acceleration with which the base raft layer is printed."
  3523. msgstr "Kiihtyvyys, jolla pohjaristikon pohjakerros tulostetaan."
  3524. #: fdmprinter.def.json
  3525. msgctxt "acceleration_support_bottom description"
  3526. 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."
  3527. msgstr "Kiihtyvyys, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa mallin yläosan tuen kiinnittymistä."
  3528. #: fdmprinter.def.json
  3529. msgctxt "acceleration_support_infill description"
  3530. msgid "The acceleration with which the infill of support is printed."
  3531. msgstr "Kiihtyvyys, jolla tuen täyttö tulostetaan."
  3532. #: fdmprinter.def.json
  3533. msgctxt "raft_interface_acceleration description"
  3534. msgid "The acceleration with which the middle raft layer is printed."
  3535. msgstr "Kiihtyvyys, jolla pohjaristikon keskikerros tulostetaan."
  3536. #: fdmprinter.def.json
  3537. msgctxt "acceleration_wall_0 description"
  3538. msgid "The acceleration with which the outermost walls are printed."
  3539. msgstr "Kiihtyvyys, jolla ulkoseinämät tulostetaan."
  3540. #: fdmprinter.def.json
  3541. msgctxt "acceleration_prime_tower description"
  3542. msgid "The acceleration with which the prime tower is printed."
  3543. msgstr "Kiihtyvyys, jolla esitäyttötorni tulostetaan."
  3544. #: fdmprinter.def.json
  3545. msgctxt "raft_acceleration description"
  3546. msgid "The acceleration with which the raft is printed."
  3547. msgstr "Kiihtyvyys, jolla pohjaristikko tulostetaan."
  3548. #: fdmprinter.def.json
  3549. msgctxt "acceleration_support_interface description"
  3550. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  3551. msgstr "Kiihtyvyys, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua."
  3552. #: fdmprinter.def.json
  3553. msgctxt "acceleration_support_roof description"
  3554. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  3555. msgstr "Kiihtyvyys, jolla tuen katot tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua."
  3556. #: fdmprinter.def.json
  3557. msgctxt "acceleration_skirt_brim description"
  3558. 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."
  3559. msgstr "Kiihtyvyys, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen kiihtyvyydellä. Joskus helma tai reunus halutaan kuitenkin tulostaa eri kiihtyvyydellä."
  3560. #: fdmprinter.def.json
  3561. msgctxt "acceleration_support description"
  3562. msgid "The acceleration with which the support structure is printed."
  3563. msgstr "Kiihtyvyys, jolla tukirakenne tulostetaan."
  3564. #: fdmprinter.def.json
  3565. msgctxt "raft_surface_acceleration description"
  3566. msgid "The acceleration with which the top raft layers are printed."
  3567. msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan."
  3568. #: fdmprinter.def.json
  3569. msgctxt "acceleration_wall description"
  3570. msgid "The acceleration with which the walls are printed."
  3571. msgstr "Kiihtyvyys, jolla seinämät tulostetaan."
  3572. #: fdmprinter.def.json
  3573. msgctxt "acceleration_roofing description"
  3574. msgid "The acceleration with which top surface skin layers are printed."
  3575. msgstr "Kiihtyvyys, jolla yläpinnan pintakalvokerrokset tulostetaan."
  3576. #: fdmprinter.def.json
  3577. msgctxt "acceleration_topbottom description"
  3578. msgid "The acceleration with which top/bottom layers are printed."
  3579. msgstr "Kiihtyvyys, jolla ylä-/alakerrokset tulostetaan."
  3580. #: fdmprinter.def.json
  3581. msgctxt "acceleration_travel description"
  3582. msgid "The acceleration with which travel moves are made."
  3583. msgstr "Kiihtyvyys, jolla siirtoliikkeet tehdään."
  3584. #: fdmprinter.def.json
  3585. msgctxt "ironing_flow description"
  3586. 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."
  3587. msgstr "Silityksen aikana pursotettavan materiaalin määrä suhteessa normaaliin pintakalvon linjaan. Suuttimen pitäminen täytettynä auttaa joidenkin yläpinnan halkeamien täyttämisessä, mutta liiallinen määrä johtaa ylipursotukseen ja täpliin pinnan sivulla."
  3588. #: fdmprinter.def.json
  3589. msgctxt "infill_overlap description"
  3590. 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."
  3591. msgstr ""
  3592. #: fdmprinter.def.json
  3593. msgctxt "infill_overlap_mm description"
  3594. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  3595. msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön."
  3596. #: fdmprinter.def.json
  3597. msgctxt "switch_extruder_retraction_amount description"
  3598. 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."
  3599. msgstr ""
  3600. #: fdmprinter.def.json
  3601. msgctxt "machine_nozzle_expansion_angle description"
  3602. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  3603. msgstr "Vaakatason ja suuttimen kärjen yllä olevan kartiomaisen osan välinen kulma."
  3604. #: fdmprinter.def.json
  3605. msgctxt "support_tower_roof_angle description"
  3606. 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."
  3607. msgstr "Tornin katon kulma. Korkeampi arvo johtaa teräväkärkisiin tornien kattoihin, matalampi arvo litteämpiin tornien kattoihin."
  3608. #: fdmprinter.def.json
  3609. msgctxt "mold_angle description"
  3610. 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."
  3611. msgstr "Muottia varten luotujen ulkoseinämien ulokkeiden kulma. 0° tekee muotin ulkokuoresta pystysuoran ja 90° saa muotin ulkopuolen seuraamaan mallin muotoja."
  3612. #: fdmprinter.def.json
  3613. msgctxt "support_tree_branch_diameter_angle description"
  3614. 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."
  3615. msgstr ""
  3616. #: fdmprinter.def.json
  3617. msgctxt "support_conical_angle description"
  3618. 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."
  3619. msgstr "Kartiomaisen tuen kallistuskulma. 0 astetta on pystysuora ja 90 astetta on vaakasuora. Pienemmillä kulmilla tuki on tukevampi, mutta siihen käytetään enemmän materiaalia. Negatiivisilla kulmilla tuen perusta on leveämpi kuin yläosa."
  3620. #: fdmprinter.def.json
  3621. msgctxt "magic_fuzzy_skin_point_density description"
  3622. 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."
  3623. msgstr "Kerroksen kuhunkin monikulmioon tehtävien pisteiden keskimääräinen tiheys. Huomaa, että monikulmion alkuperäiset pisteet poistetaan käytöstä, joten pieni tiheys alentaa resoluutiota."
  3624. #: fdmprinter.def.json
  3625. msgctxt "magic_fuzzy_skin_point_dist description"
  3626. 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."
  3627. msgstr "Keskimääräinen etäisyys kunkin linjasegmentin satunnaisten pisteiden välillä. Huomaa, että alkuperäiset monikulmion pisteet poistetaan käytöstä, joten korkea sileysarvo alentaa resoluutiota. Tämän arvon täytyy olla suurempi kuin puolet karhean pintakalvon paksuudesta."
  3628. #: fdmprinter.def.json
  3629. msgctxt "machine_acceleration description"
  3630. msgid "The default acceleration of print head movement."
  3631. msgstr "Tulostuspään liikkeen oletuskiihtyvyys."
  3632. #: fdmprinter.def.json
  3633. msgctxt "default_material_print_temperature description"
  3634. 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"
  3635. msgstr "Tulostuksessa käytettävä oletuslämpötila. Tämän tulee olla materiaalin ”pohjalämpötila”. Kaikkien muiden tulostuslämpötilojen tulee käyttää tähän arvoon perustuvia siirtymiä"
  3636. #: fdmprinter.def.json
  3637. msgctxt "default_material_bed_temperature description"
  3638. 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"
  3639. msgstr ""
  3640. #: fdmprinter.def.json
  3641. msgctxt "bridge_skin_density description"
  3642. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3643. msgstr ""
  3644. #: fdmprinter.def.json
  3645. msgctxt "support_bottom_density description"
  3646. 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."
  3647. msgstr "Tukirakenteen lattioiden tiheys. Korkeammalla arvolla mallin yläosan tuki kiinnittyy paremmin."
  3648. #: fdmprinter.def.json
  3649. msgctxt "support_roof_density description"
  3650. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3651. msgstr "Tukirakenteen lattian tiheys. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  3652. #: fdmprinter.def.json
  3653. msgctxt "bridge_skin_density_2 description"
  3654. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3655. msgstr ""
  3656. #: fdmprinter.def.json
  3657. msgctxt "bridge_skin_density_3 description"
  3658. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  3659. msgstr ""
  3660. #: fdmprinter.def.json
  3661. msgctxt "machine_depth description"
  3662. msgid "The depth (Y-direction) of the printable area."
  3663. msgstr "Tulostettavan alueen syvyys (Y-suunta)."
  3664. #: fdmprinter.def.json
  3665. msgctxt "support_tower_diameter description"
  3666. msgid "The diameter of a special tower."
  3667. msgstr "Erityistornin läpimitta."
  3668. #: fdmprinter.def.json
  3669. msgctxt "support_tree_branch_diameter description"
  3670. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3671. msgstr ""
  3672. #: fdmprinter.def.json
  3673. msgctxt "support_tree_tip_diameter description"
  3674. msgid "The diameter of the top of the tip of the branches of tree support."
  3675. msgstr ""
  3676. #: fdmprinter.def.json
  3677. msgctxt "machine_feeder_wheel_diameter description"
  3678. msgid "The diameter of the wheel that drives the material in the feeder."
  3679. msgstr ""
  3680. #: fdmprinter.def.json
  3681. msgctxt "support_tree_max_diameter description"
  3682. 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."
  3683. msgstr ""
  3684. #: fdmprinter.def.json
  3685. msgctxt "adaptive_layer_height_variation_step description"
  3686. msgid "The difference in height of the next layer height compared to the previous one."
  3687. msgstr ""
  3688. #: fdmprinter.def.json
  3689. msgctxt "ironing_line_spacing description"
  3690. msgid "The distance between the lines of ironing."
  3691. msgstr "Silityslinjojen välinen etäisyys."
  3692. #: fdmprinter.def.json
  3693. msgctxt "travel_avoid_distance description"
  3694. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  3695. msgstr "Suuttimen ja aiemmin tulostetun osan välinen etäisyys siirtoliikkeiden yhteydessä."
  3696. #: fdmprinter.def.json
  3697. msgctxt "raft_base_line_spacing description"
  3698. 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."
  3699. msgstr "Pohjaristikon pohjakerroksen linjojen välinen etäisyys. Leveä linjajako helpottaa pohjaristikon poistoa alustalta."
  3700. #: fdmprinter.def.json
  3701. msgctxt "raft_interface_line_spacing description"
  3702. 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."
  3703. msgstr "Pohjaristikon keskikerroksen linjojen välinen etäisyys. Keskikerroksen linjajaon tulisi olla melko leveä ja samalla riittävän tiheä, jotta se tukee pohjaristikon pintakerroksia."
  3704. #: fdmprinter.def.json
  3705. msgctxt "raft_surface_line_spacing description"
  3706. 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."
  3707. msgstr "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä."
  3708. #: fdmprinter.def.json
  3709. msgctxt "interlocking_depth description"
  3710. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3711. msgstr ""
  3712. #: fdmprinter.def.json
  3713. msgctxt "brim_width description"
  3714. 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."
  3715. msgstr "Etäisyys mallista ulommaiseen reunuslinjaan. Suurempi reunus parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta."
  3716. #: fdmprinter.def.json
  3717. #, fuzzy
  3718. msgctxt "interlocking_boundary_avoidance description"
  3719. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3720. msgstr "Suuttimen kärjestä mitattu etäisyys, jonka päähän tulostuslanka asetetaan säilytykseen, kun suulaketta ei enää käytetä."
  3721. #: fdmprinter.def.json
  3722. msgctxt "machine_heat_zone_length description"
  3723. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3724. msgstr "Suuttimen kärjestä mitattu etäisyys, jonka suuttimen lämpö siirtyy tulostuslankaan."
  3725. #: fdmprinter.def.json
  3726. msgctxt "bottom_skin_expand_distance description"
  3727. 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."
  3728. msgstr "Etäisyys, jonka verran alapintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja tarttumaan paremmin alla olevan kerroksen seinämiin. Pienemmät arvot vähentävät käytettävän materiaalin määrää."
  3729. #: fdmprinter.def.json
  3730. msgctxt "expand_skins_expand_distance description"
  3731. 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."
  3732. msgstr "Etäisyys, jonka verran pintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja viereisten kerrosten seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää."
  3733. #: fdmprinter.def.json
  3734. msgctxt "top_skin_expand_distance description"
  3735. 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."
  3736. msgstr "Etäisyys, jonka verran yläpintakalvot laajentuvat täyttöön. Suuremmat arvot saavat pintakalvon kiinnittymään paremmin täyttökuvioon ja yllä olevan kerroksen seinämät tarttumaan paremmin pintakalvoon. Pienemmät arvot vähentävät käytettävän materiaalin määrää."
  3737. #: fdmprinter.def.json
  3738. msgctxt "wipe_move_distance description"
  3739. msgid "The distance to move the head back and forth across the brush."
  3740. msgstr ""
  3741. #: fdmprinter.def.json
  3742. msgctxt "lightning_infill_prune_angle description"
  3743. 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."
  3744. msgstr ""
  3745. #: fdmprinter.def.json
  3746. msgctxt "material_extrusion_cool_down_speed description"
  3747. 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."
  3748. msgstr "Lisänopeus, jonka verran suutin jäähtyy pursotuksen aikana. Samaa arvoa käytetään merkitsemään menetettyä kuumentumisnopeutta pursotuksen aikaisen kuumennuksen aikana."
  3749. #: fdmprinter.def.json
  3750. msgctxt "support_extruder_nr_layer_0 description"
  3751. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3752. msgstr "Tuen täytön ensimmäisen kerroksen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3753. #: fdmprinter.def.json
  3754. msgctxt "raft_base_extruder_nr description"
  3755. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3756. msgstr ""
  3757. #: fdmprinter.def.json
  3758. msgctxt "support_bottom_extruder_nr description"
  3759. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3760. msgstr "Tuen lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3761. #: fdmprinter.def.json
  3762. msgctxt "support_infill_extruder_nr description"
  3763. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3764. msgstr "Tuen täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3765. #: fdmprinter.def.json
  3766. msgctxt "raft_interface_extruder_nr description"
  3767. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3768. msgstr ""
  3769. #: fdmprinter.def.json
  3770. msgctxt "support_interface_extruder_nr description"
  3771. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3772. msgstr "Tuen kattojen ja lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3773. #: fdmprinter.def.json
  3774. msgctxt "support_roof_extruder_nr description"
  3775. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3776. msgstr "Tuen kattojen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3777. #: fdmprinter.def.json
  3778. msgctxt "skirt_brim_extruder_nr description"
  3779. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3780. msgstr ""
  3781. #: fdmprinter.def.json
  3782. msgctxt "adhesion_extruder_nr description"
  3783. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3784. msgstr "Helman/reunuksen/pohjaristikon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3785. #: fdmprinter.def.json
  3786. msgctxt "support_extruder_nr description"
  3787. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3788. msgstr "Tuen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3789. #: fdmprinter.def.json
  3790. msgctxt "raft_surface_extruder_nr description"
  3791. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3792. msgstr ""
  3793. #: fdmprinter.def.json
  3794. msgctxt "infill_extruder_nr description"
  3795. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3796. msgstr "Täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3797. #: fdmprinter.def.json
  3798. msgctxt "wall_x_extruder_nr description"
  3799. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3800. msgstr "Sisäseinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3801. #: fdmprinter.def.json
  3802. msgctxt "wall_0_extruder_nr description"
  3803. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3804. msgstr "Ulkoseinämän tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3805. #: fdmprinter.def.json
  3806. msgctxt "top_bottom_extruder_nr description"
  3807. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3808. msgstr "Ylä- ja alapuolen pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3809. #: fdmprinter.def.json
  3810. msgctxt "roofing_extruder_nr description"
  3811. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3812. msgstr "Ylimmän pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3813. #: fdmprinter.def.json
  3814. msgctxt "wall_extruder_nr description"
  3815. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3816. msgstr "Seinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3817. #: fdmprinter.def.json
  3818. msgctxt "raft_base_fan_speed description"
  3819. msgid "The fan speed for the base raft layer."
  3820. msgstr "Tuulettimen nopeus pohjaristikon pohjakerrosta varten."
  3821. #: fdmprinter.def.json
  3822. msgctxt "raft_interface_fan_speed description"
  3823. msgid "The fan speed for the middle raft layer."
  3824. msgstr "Tuulettimen nopeus pohjaristikon keskikerrosta varten."
  3825. #: fdmprinter.def.json
  3826. msgctxt "raft_fan_speed description"
  3827. msgid "The fan speed for the raft."
  3828. msgstr "Pohjaristikon tuulettimen nopeus."
  3829. #: fdmprinter.def.json
  3830. msgctxt "raft_surface_fan_speed description"
  3831. msgid "The fan speed for the top raft layers."
  3832. msgstr "Tuulettimen nopeus pohjaristikon pintakerroksia varten."
  3833. #: fdmprinter.def.json
  3834. msgctxt "cross_infill_density_image description"
  3835. 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."
  3836. msgstr ""
  3837. #: fdmprinter.def.json
  3838. msgctxt "cross_support_density_image description"
  3839. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3840. msgstr ""
  3841. #: fdmprinter.def.json
  3842. msgctxt "speed_slowdown_layers description"
  3843. 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."
  3844. msgstr "Muutama ensimmäinen kerros tulostetaan hitaammin kuin loput mallista, jolloin saadaan parempi tarttuvuus alustaan ja parannetaan tulosteiden yleistä onnistumista. Näiden kerrosten jälkeen nopeutta lisätään asteittain."
  3845. #: fdmprinter.def.json
  3846. msgctxt "raft_airgap description"
  3847. 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."
  3848. msgstr "Rako pohjaristikon viimeisen kerroksen ja mallin ensimmäisen kerroksen välillä. Vain ensimmäistä kerrosta nostetaan tällä määrällä pohjaristikkokerroksen ja mallin välisen sidoksen vähentämiseksi. Se helpottaa pohjaristikon irti kuorimista."
  3849. #: fdmprinter.def.json
  3850. msgctxt "machine_height description"
  3851. msgid "The height (Z-direction) of the printable area."
  3852. msgstr "Tulostettavan alueen korkeus (Z-suunta)."
  3853. #: fdmprinter.def.json
  3854. msgctxt "mold_roof_height description"
  3855. msgid "The height above horizontal parts in your model which to print mold."
  3856. msgstr "Mallin vaakasuuntaisten osien yläpuolinen korkeus, jonka mukaan muotti tulostetaan."
  3857. #: fdmprinter.def.json
  3858. msgctxt "cool_fan_full_at_height description"
  3859. 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."
  3860. msgstr "Korkeus, jolla tuulettimet pyörivät normaalilla nopeudella. Alemmilla kerroksilla tuulettimen nopeus kasvaa asteittain tuulettimen nopeudesta alussa normaaliin tuulettimen nopeuteen."
  3861. #: fdmprinter.def.json
  3862. msgctxt "gantry_height description"
  3863. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3864. msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero."
  3865. #: fdmprinter.def.json
  3866. msgctxt "machine_nozzle_head_distance description"
  3867. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3868. msgstr "Suuttimen kärjen ja tulostuspään alimman osan välinen korkeusero."
  3869. #: fdmprinter.def.json
  3870. msgctxt "retraction_hop_after_extruder_switch_height description"
  3871. msgid "The height difference when performing a Z Hop after extruder switch."
  3872. msgstr ""
  3873. #: fdmprinter.def.json
  3874. msgctxt "retraction_hop description"
  3875. msgid "The height difference when performing a Z Hop."
  3876. msgstr "Z-hypyn suorituksen korkeusero."
  3877. #: fdmprinter.def.json
  3878. msgctxt "wipe_hop_amount description"
  3879. msgid "The height difference when performing a Z Hop."
  3880. msgstr ""
  3881. #: fdmprinter.def.json
  3882. msgctxt "layer_height description"
  3883. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3884. msgstr "Kunkin kerroksen korkeus milleinä. Korkeammat arvot tuottavat nopeampia tulosteita alhaisemmalla resoluutiolla, alemmat arvot tuottavat hitaampia tulosteita korkeammalla resoluutiolla."
  3885. #: fdmprinter.def.json
  3886. msgctxt "gradual_infill_step_height description"
  3887. msgid "The height of infill of a given density before switching to half the density."
  3888. msgstr "Tietyn tiheysarvon täytön korkeus ennen puoleen tiheyteen vaihtamista."
  3889. #: fdmprinter.def.json
  3890. msgctxt "gradual_support_infill_step_height description"
  3891. msgid "The height of support infill of a given density before switching to half the density."
  3892. msgstr "Tietyn tiheysarvon tuen täytön korkeus ennen puoleen tiheyteen vaihtamista."
  3893. #: fdmprinter.def.json
  3894. msgctxt "interlocking_beam_layer_count description"
  3895. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3896. msgstr ""
  3897. #: fdmprinter.def.json
  3898. msgctxt "interlocking_orientation description"
  3899. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3900. msgstr ""
  3901. #: fdmprinter.def.json
  3902. msgctxt "layer_height_0 description"
  3903. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3904. msgstr "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä."
  3905. #: fdmprinter.def.json
  3906. msgctxt "support_bottom_stair_step_height description"
  3907. 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."
  3908. msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin. Poista porrasmainen ominaisuus käytöstä valitsemalla asetukseksi nolla."
  3909. #: fdmprinter.def.json
  3910. msgctxt "brim_gap description"
  3911. 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."
  3912. msgstr ""
  3913. #: fdmprinter.def.json
  3914. msgctxt "skirt_gap description"
  3915. msgid ""
  3916. "The horizontal distance between the skirt and the first layer of the print.\n"
  3917. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3918. msgstr ""
  3919. #: fdmprinter.def.json
  3920. msgctxt "lightning_infill_straightening_angle description"
  3921. 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."
  3922. msgstr ""
  3923. #: fdmprinter.def.json
  3924. msgctxt "infill_offset_x description"
  3925. msgid "The infill pattern is moved this distance along the X axis."
  3926. msgstr ""
  3927. #: fdmprinter.def.json
  3928. msgctxt "infill_offset_y description"
  3929. msgid "The infill pattern is moved this distance along the Y axis."
  3930. msgstr ""
  3931. #: fdmprinter.def.json
  3932. msgctxt "machine_nozzle_size description"
  3933. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3934. msgstr "Suuttimen sisäläpimitta. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin."
  3935. #: fdmprinter.def.json
  3936. msgctxt "raft_base_jerk description"
  3937. msgid "The jerk with which the base raft layer is printed."
  3938. msgstr "Nykäisy, jolla pohjaristikon pohjakerros tulostetaan."
  3939. #: fdmprinter.def.json
  3940. msgctxt "raft_interface_jerk description"
  3941. msgid "The jerk with which the middle raft layer is printed."
  3942. msgstr "Nykäisy, jolla pohjaristikon keskikerros tulostetaan."
  3943. #: fdmprinter.def.json
  3944. msgctxt "raft_jerk description"
  3945. msgid "The jerk with which the raft is printed."
  3946. msgstr "Nykäisy, jolla pohjaristikko tulostetaan."
  3947. #: fdmprinter.def.json
  3948. msgctxt "raft_surface_jerk description"
  3949. msgid "The jerk with which the top raft layers are printed."
  3950. msgstr "Nykäisy, jolla pohjaristikon pintakerrokset tulostetaan."
  3951. #: fdmprinter.def.json
  3952. msgctxt "bottom_skin_preshrink description"
  3953. 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."
  3954. msgstr "Suurin poistettavien alapintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa."
  3955. #: fdmprinter.def.json
  3956. msgctxt "skin_preshrink description"
  3957. 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."
  3958. msgstr "Suurin poistettavien pintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen ylä-/alapintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa."
  3959. #: fdmprinter.def.json
  3960. msgctxt "top_skin_preshrink description"
  3961. 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."
  3962. msgstr "Suurin poistettavien yläpintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen yläpintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa."
  3963. #: fdmprinter.def.json
  3964. msgctxt "cool_fan_full_layer description"
  3965. 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."
  3966. msgstr "Kerros, jolla tuulettimet pyörivät normaalilla nopeudella. Jos normaali tuulettimen nopeus korkeudella on asetettu, tämä arvo lasketaan ja pyöristetään kokonaislukuun."
  3967. #: fdmprinter.def.json
  3968. msgctxt "cool_min_layer_time_fan_speed_max description"
  3969. 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."
  3970. msgstr "Kerrosaika, joka määrittää tuulettimen normaalin nopeuden ja maksiminopeuden välisen raja-arvon. Kerrokset, jotka tulostuvat tätä hitaammin käyttävät normaalia tuulettimen nopeutta. Nopeammilla kerroksilla tuulettimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta."
  3971. #: fdmprinter.def.json
  3972. msgctxt "retraction_amount description"
  3973. msgid "The length of material retracted during a retraction move."
  3974. msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus."
  3975. #: fdmprinter.def.json
  3976. msgctxt "machine_buildplate_type description"
  3977. msgid "The material of the build plate installed on the printer."
  3978. msgstr ""
  3979. #: fdmprinter.def.json
  3980. msgctxt "adaptive_layer_height_variation description"
  3981. msgid "The maximum allowed height different from the base layer height."
  3982. msgstr ""
  3983. #: fdmprinter.def.json
  3984. msgctxt "ooze_shield_angle description"
  3985. 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."
  3986. msgstr "Tihkusuojuksen osan maksimikulma. 0 astetta tarkoittaa pystysuuntaa ja 90 astetta vaakasuuntaa. Pienempi kulma vähentää tihkusuojusten epäonnistumisia mutta lisää materiaalia."
  3987. #: fdmprinter.def.json
  3988. msgctxt "conical_overhang_angle description"
  3989. 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."
  3990. msgstr "Ulokkeiden maksimikulma, kun niistä on tehty tulostettavia. 0 asteessa kaikki ulokkeet korvataan mallikappaleella, joka on yhdistetty alustaan. 90 asteessa mallia ei muuteta millään tavalla."
  3991. #: fdmprinter.def.json
  3992. msgctxt "support_tree_angle description"
  3993. 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."
  3994. msgstr ""
  3995. #: fdmprinter.def.json
  3996. msgctxt "conical_overhang_hole_size description"
  3997. 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."
  3998. msgstr ""
  3999. #: fdmprinter.def.json
  4000. msgctxt "meshfix_maximum_deviation description"
  4001. 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."
  4002. msgstr ""
  4003. #: fdmprinter.def.json
  4004. msgctxt "support_join_distance description"
  4005. 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."
  4006. msgstr ""
  4007. #: fdmprinter.def.json
  4008. msgctxt "flow_rate_max_extrusion_offset description"
  4009. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4010. msgstr ""
  4011. #: fdmprinter.def.json
  4012. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4013. 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."
  4014. msgstr ""
  4015. #: fdmprinter.def.json
  4016. msgctxt "jerk_print_layer_0 description"
  4017. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  4018. msgstr "Alkukerroksen tulostuksen aikainen nopeuden hetkellinen maksimimuutos."
  4019. #: fdmprinter.def.json
  4020. msgctxt "jerk_print description"
  4021. msgid "The maximum instantaneous velocity change of the print head."
  4022. msgstr "Tulostuspään nopeuden hetkellinen maksimimuutos."
  4023. #: fdmprinter.def.json
  4024. msgctxt "jerk_ironing description"
  4025. msgid "The maximum instantaneous velocity change while performing ironing."
  4026. msgstr "Silityksen aikainen nopeuden hetkellinen maksimimuutos."
  4027. #: fdmprinter.def.json
  4028. msgctxt "jerk_wall_x description"
  4029. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  4030. msgstr "Kaikkien sisäseinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  4031. #: fdmprinter.def.json
  4032. msgctxt "jerk_infill description"
  4033. msgid "The maximum instantaneous velocity change with which infill is printed."
  4034. msgstr "Täytön tulostuksen nopeuden hetkellinen maksimimuutos."
  4035. #: fdmprinter.def.json
  4036. msgctxt "jerk_support_bottom description"
  4037. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  4038. msgstr "Tuen lattioiden tulostuksen nopeuden hetkellinen maksimimuutos."
  4039. #: fdmprinter.def.json
  4040. msgctxt "jerk_support_infill description"
  4041. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  4042. msgstr "Tuen täytön tulostuksen nopeuden hetkellinen maksimimuutos."
  4043. #: fdmprinter.def.json
  4044. msgctxt "jerk_wall_0 description"
  4045. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  4046. msgstr "Ulkoseinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  4047. #: fdmprinter.def.json
  4048. msgctxt "jerk_prime_tower description"
  4049. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  4050. msgstr "Esitäyttötornin tulostuksen nopeuden hetkellinen maksimimuutos."
  4051. #: fdmprinter.def.json
  4052. msgctxt "jerk_support_interface description"
  4053. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  4054. msgstr "Tuen kattojen ja lattioiden tulostuksen nopeuden hetkellinen maksimimuutos."
  4055. #: fdmprinter.def.json
  4056. msgctxt "jerk_support_roof description"
  4057. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  4058. msgstr "Tuen kattojen tulostuksen nopeuden hetkellinen maksimimuutos."
  4059. #: fdmprinter.def.json
  4060. msgctxt "jerk_skirt_brim description"
  4061. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  4062. msgstr "Helman ja reunuksen tulostuksen nopeuden hetkellinen maksimimuutos."
  4063. #: fdmprinter.def.json
  4064. msgctxt "jerk_support description"
  4065. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  4066. msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos."
  4067. #: fdmprinter.def.json
  4068. msgctxt "jerk_wall description"
  4069. msgid "The maximum instantaneous velocity change with which the walls are printed."
  4070. msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  4071. #: fdmprinter.def.json
  4072. msgctxt "jerk_roofing description"
  4073. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  4074. msgstr "Yläpinnan pintakalvokerrosten tulostuksen nopeuden hetkellinen maksimimuutos."
  4075. #: fdmprinter.def.json
  4076. msgctxt "jerk_topbottom description"
  4077. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  4078. msgstr "Ylä-/alakerrosten tulostuksen nopeuden hetkellinen maksimimuutos."
  4079. #: fdmprinter.def.json
  4080. msgctxt "jerk_travel description"
  4081. msgid "The maximum instantaneous velocity change with which travel moves are made."
  4082. msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos."
  4083. #: fdmprinter.def.json
  4084. msgctxt "machine_max_feedrate_x description"
  4085. msgid "The maximum speed for the motor of the X-direction."
  4086. msgstr "X-suunnan moottorin maksiminopeus."
  4087. #: fdmprinter.def.json
  4088. msgctxt "machine_max_feedrate_y description"
  4089. msgid "The maximum speed for the motor of the Y-direction."
  4090. msgstr "Y-suunnan moottorin maksiminopeus."
  4091. #: fdmprinter.def.json
  4092. msgctxt "machine_max_feedrate_z description"
  4093. msgid "The maximum speed for the motor of the Z-direction."
  4094. msgstr "Z-suunnan moottorin maksiminopeus."
  4095. #: fdmprinter.def.json
  4096. msgctxt "machine_max_feedrate_e description"
  4097. msgid "The maximum speed of the filament."
  4098. msgstr "Tulostuslangan maksiminopeus."
  4099. #: fdmprinter.def.json
  4100. msgctxt "support_bottom_stair_step_width description"
  4101. 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."
  4102. msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden enimmäisleveys. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin."
  4103. #: fdmprinter.def.json
  4104. msgctxt "mold_width description"
  4105. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4106. msgstr ""
  4107. #: fdmprinter.def.json
  4108. msgctxt "machine_minimum_feedrate description"
  4109. msgid "The minimal movement speed of the print head."
  4110. msgstr "Tulostuspään liikkeen miniminopeus."
  4111. #: fdmprinter.def.json
  4112. msgctxt "material_initial_print_temperature description"
  4113. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  4114. msgstr "Minimilämpötila lämmitettäessä tulostuslämpötilaan, jossa tulostus voidaan aloittaa."
  4115. #: fdmprinter.def.json
  4116. msgctxt "machine_min_cool_heat_time_window description"
  4117. 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."
  4118. msgstr "Minimiaika, jonka suulakkeen on oltava ei-aktiivinen, ennen kuin suutin jäähdytetään. Suulakkeen annetaan jäähtyä valmiustilaan vain, kun sitä ei käytetä tätä aikaa kauemmin."
  4119. #: fdmprinter.def.json
  4120. msgctxt "infill_support_angle description"
  4121. 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."
  4122. msgstr ""
  4123. #: fdmprinter.def.json
  4124. msgctxt "support_angle description"
  4125. 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."
  4126. msgstr "Ulokkeen minimikulma, jonka jälkeen tuki lisätään. Arvolla 0 ° kaikki ulokkeet tuetaan, asetuksella 90 ° tukia ei tuoteta."
  4127. #: fdmprinter.def.json
  4128. msgctxt "retraction_min_travel description"
  4129. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  4130. msgstr "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella."
  4131. #: fdmprinter.def.json
  4132. msgctxt "skirt_brim_minimal_length description"
  4133. 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."
  4134. msgstr "Helman tai reunuksen minimipituus. Jos kaikki helma- tai reunuslinjat yhdessä eivät saavuta tätä minimipituutta, lisätään useampia helma- tai reunuslinjoja, jotta tähän minimipituuteen päästään. Huomaa: jos linjalukuna on 0, tämä jätetään huomiotta."
  4135. #: fdmprinter.def.json
  4136. msgctxt "min_odd_wall_line_width description"
  4137. 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."
  4138. msgstr ""
  4139. #: fdmprinter.def.json
  4140. msgctxt "min_even_wall_line_width description"
  4141. 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."
  4142. msgstr ""
  4143. #: fdmprinter.def.json
  4144. msgctxt "cool_min_speed description"
  4145. 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."
  4146. msgstr "Tulostuksen miniminopeus riippumatta kerroksen minimiajan aiheuttamasta hidastuksesta. Jos tulostin hidastaisi liikaa, paine suuttimessa olisi liian alhainen ja tulostuksen laatu kärsisi."
  4147. #: fdmprinter.def.json
  4148. msgctxt "meshfix_maximum_resolution description"
  4149. 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."
  4150. msgstr ""
  4151. #: fdmprinter.def.json
  4152. msgctxt "meshfix_maximum_travel_resolution description"
  4153. 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."
  4154. msgstr ""
  4155. #: fdmprinter.def.json
  4156. msgctxt "support_bottom_stair_step_min_slope description"
  4157. 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."
  4158. msgstr ""
  4159. #: fdmprinter.def.json
  4160. msgctxt "cool_min_layer_time description"
  4161. 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."
  4162. msgstr "Kerrokseen käytetty minimiaika. Tämä pakottaa tulostimen hidastamaan ja käyttämään vähintään tässä määritellyn ajan yhdellä kerroksella. Näin tulostettu materiaali saa jäähtyä kunnolla ennen seuraavan kerroksen tulostamista. Kerrosten tulostus saattaa silti tapahtua minimikerrosnopeutta nopeammin, jos tulostuspään nosto ei ole käytössä ja jos miniminopeuden käyttäminen edellyttää tätä."
  4163. #: fdmprinter.def.json
  4164. msgctxt "prime_tower_min_volume description"
  4165. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4166. msgstr "Esitäyttötornin kunkin kerroksen minimitilavuus, jotta voidaan poistaa riittävästi materiaalia."
  4167. #: fdmprinter.def.json
  4168. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  4169. 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"
  4170. msgstr ""
  4171. #: fdmprinter.def.json
  4172. msgctxt "machine_name description"
  4173. msgid "The name of your 3D printer model."
  4174. msgstr "3D-tulostinmallin nimi."
  4175. #: fdmprinter.def.json
  4176. msgctxt "machine_nozzle_id description"
  4177. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  4178. msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"."
  4179. #: fdmprinter.def.json
  4180. msgctxt "travel_avoid_other_parts description"
  4181. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  4182. msgstr "Suutin välttää aiemmin tulostettuja osia siirtoliikkeiden yhteydessä. Tämä vaihtoehto on valittavissa vain, kun pyyhkäisy on käytössä."
  4183. #: fdmprinter.def.json
  4184. msgctxt "travel_avoid_supports description"
  4185. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  4186. msgstr ""
  4187. #: fdmprinter.def.json
  4188. msgctxt "bottom_layers description"
  4189. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  4190. msgstr "Alakerrosten lukumäärä. Kun se lasketaan alaosan paksuudesta, arvo pyöristetään kokonaislukuun."
  4191. #: fdmprinter.def.json
  4192. msgctxt "raft_base_wall_count description"
  4193. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  4194. msgstr ""
  4195. #: fdmprinter.def.json
  4196. msgctxt "skin_edge_support_layers description"
  4197. msgid "The number of infill layers that supports skin edges."
  4198. msgstr ""
  4199. #: fdmprinter.def.json
  4200. msgctxt "initial_bottom_layers description"
  4201. 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."
  4202. msgstr ""
  4203. #: fdmprinter.def.json
  4204. msgctxt "raft_interface_layers description"
  4205. 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."
  4206. msgstr ""
  4207. #: fdmprinter.def.json
  4208. msgctxt "brim_line_count description"
  4209. 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."
  4210. msgstr "Reunukseen käytettävien linjojen lukumäärä. Useampi reunuslinja parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta."
  4211. #: fdmprinter.def.json
  4212. msgctxt "support_brim_line_count description"
  4213. 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."
  4214. msgstr ""
  4215. #: fdmprinter.def.json
  4216. msgctxt "raft_surface_layers description"
  4217. 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."
  4218. msgstr "Pohjaristikon toisen kerroksen päällä olevien pintakerrosten lukumäärä. Ne ovat täysin täytettyjä kerroksia, joilla malli lepää. Kaksi kerrosta tuottaa sileämmän pinnan kuin yksi kerros."
  4219. #: fdmprinter.def.json
  4220. msgctxt "top_layers description"
  4221. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  4222. msgstr "Yläkerrosten lukumäärä. Kun se lasketaan yläosan paksuudesta, arvo pyöristetään kokonaislukuun."
  4223. #: fdmprinter.def.json
  4224. msgctxt "roofing_layer_count description"
  4225. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  4226. msgstr "Ylimpien pintakalvokerrosten määrä. Yleensä vain yksi ylin kerros riittää tuottamaan korkeampilaatuisia yläpintoja."
  4227. #: fdmprinter.def.json
  4228. msgctxt "support_wall_count description"
  4229. 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."
  4230. msgstr ""
  4231. #: fdmprinter.def.json
  4232. msgctxt "support_bottom_wall_count description"
  4233. 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."
  4234. msgstr ""
  4235. #: fdmprinter.def.json
  4236. msgctxt "support_roof_wall_count description"
  4237. 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."
  4238. msgstr ""
  4239. #: fdmprinter.def.json
  4240. msgctxt "support_interface_wall_count description"
  4241. 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."
  4242. msgstr ""
  4243. #: fdmprinter.def.json
  4244. msgctxt "wall_distribution_count description"
  4245. 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."
  4246. msgstr ""
  4247. #: fdmprinter.def.json
  4248. msgctxt "wall_line_count description"
  4249. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  4250. msgstr "Seinämien lukumäärä. Kun se lasketaan seinämän paksuudesta, arvo pyöristetään kokonaislukuun."
  4251. #: fdmprinter.def.json
  4252. msgctxt "machine_nozzle_tip_outer_diameter description"
  4253. msgid "The outer diameter of the tip of the nozzle."
  4254. msgstr "Suuttimen kärjen ulkoläpimitta."
  4255. #: fdmprinter.def.json
  4256. msgctxt "infill_pattern description"
  4257. 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."
  4258. msgstr ""
  4259. #: fdmprinter.def.json
  4260. msgctxt "support_pattern description"
  4261. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  4262. msgstr "Tukirakenteiden tulostuskuvio. Eri vaihtoehdot tuottavat jämäköitä tai helposti poistettavia tukia."
  4263. #: fdmprinter.def.json
  4264. msgctxt "roofing_pattern description"
  4265. msgid "The pattern of the top most layers."
  4266. msgstr "Ylimpien kerrosten kuvio."
  4267. #: fdmprinter.def.json
  4268. msgctxt "top_bottom_pattern description"
  4269. msgid "The pattern of the top/bottom layers."
  4270. msgstr "Ylä-/alakerrosten kuvio."
  4271. #: fdmprinter.def.json
  4272. msgctxt "top_bottom_pattern_0 description"
  4273. msgid "The pattern on the bottom of the print on the first layer."
  4274. msgstr "Tulosteen alaosan kuvio ensimmäisellä kerroksella."
  4275. #: fdmprinter.def.json
  4276. msgctxt "ironing_pattern description"
  4277. msgid "The pattern to use for ironing top surfaces."
  4278. msgstr "Yläpintojen silitykseen käytettävä kuvio."
  4279. #: fdmprinter.def.json
  4280. msgctxt "support_bottom_pattern description"
  4281. msgid "The pattern with which the floors of the support are printed."
  4282. msgstr "Tuen lattioiden tulostuskuvio."
  4283. #: fdmprinter.def.json
  4284. msgctxt "support_interface_pattern description"
  4285. msgid "The pattern with which the interface of the support with the model is printed."
  4286. msgstr "Kuvio, jolla tuen ja mallin liittymä tulostetaan."
  4287. #: fdmprinter.def.json
  4288. msgctxt "support_roof_pattern description"
  4289. msgid "The pattern with which the roofs of the support are printed."
  4290. msgstr "Tuen kattojen tulostuskuvio."
  4291. #: fdmprinter.def.json
  4292. msgctxt "z_seam_position description"
  4293. msgid "The position near where to start printing each part in a layer."
  4294. msgstr ""
  4295. #: fdmprinter.def.json
  4296. msgctxt "support_tree_angle_slow description"
  4297. 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."
  4298. msgstr ""
  4299. #: fdmprinter.def.json
  4300. msgctxt "support_tree_rest_preference description"
  4301. 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."
  4302. msgstr ""
  4303. #: fdmprinter.def.json
  4304. msgctxt "jerk_layer_0 description"
  4305. msgid "The print maximum instantaneous velocity change for the initial layer."
  4306. msgstr "Alkukerroksen tulostuksen nopeuden hetkellinen maksimimuutos."
  4307. #: fdmprinter.def.json
  4308. msgctxt "machine_shape description"
  4309. msgid "The shape of the build plate without taking unprintable areas into account."
  4310. msgstr "Alustan muoto ottamatta huomioon alueita, joihin ei voi tulostaa."
  4311. #: fdmprinter.def.json
  4312. msgctxt "machine_head_with_fans_polygon description"
  4313. 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."
  4314. msgstr ""
  4315. #: fdmprinter.def.json
  4316. msgctxt "cross_infill_pocket_size description"
  4317. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4318. msgstr "Taskujen koko nelisuuntaisissa risteyksissä risti 3D -kuviossa korkeuksissa, joissa kuvio koskettaa itseään."
  4319. #: fdmprinter.def.json
  4320. msgctxt "coasting_min_volume description"
  4321. 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."
  4322. msgstr "Pienin ainemäärä, joka pursotusreitillä tulisi olla ennen kuin vapaaliuku sallitaan. Lyhyemmillä pursotusreiteillä Bowden-putkeen on muodostunut vähemmän painetta, joten vapaaliu'un ainemäärää skaalataan lineaarisesti. Tämän arvon on aina oltava suurempi kuin vapaaliu'un ainemäärä."
  4323. #: fdmprinter.def.json
  4324. msgctxt "machine_nozzle_cool_down_speed description"
  4325. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  4326. msgstr "Nopeus (°C/s), jolla suutin jäähtyy, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta."
  4327. #: fdmprinter.def.json
  4328. msgctxt "machine_nozzle_heat_up_speed description"
  4329. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  4330. msgstr "Nopeus (°C/s), jolla suutin lämpenee, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta."
  4331. #: fdmprinter.def.json
  4332. msgctxt "speed_wall_x description"
  4333. 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."
  4334. msgstr "Nopeus, jolla kaikki sisäseinämät tulostetaan. Sisäseinämän tulostus ulkoseinämää nopeammin lyhentää tulostusaikaa. Tämä arvo kannattaa asettaa ulkoseinämän nopeuden ja täyttönopeuden väliin."
  4335. #: fdmprinter.def.json
  4336. msgctxt "bridge_skin_speed description"
  4337. msgid "The speed at which bridge skin regions are printed."
  4338. msgstr ""
  4339. #: fdmprinter.def.json
  4340. msgctxt "speed_infill description"
  4341. msgid "The speed at which infill is printed."
  4342. msgstr "Täytön tulostamiseen käytettävä nopeus."
  4343. #: fdmprinter.def.json
  4344. msgctxt "speed_print description"
  4345. msgid "The speed at which printing happens."
  4346. msgstr "Tulostamiseen käytettävä nopeus."
  4347. #: fdmprinter.def.json
  4348. msgctxt "raft_base_speed description"
  4349. 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."
  4350. msgstr "Nopeus, jolla pohjaristikon pohjakerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri."
  4351. #: fdmprinter.def.json
  4352. msgctxt "bridge_wall_speed description"
  4353. msgid "The speed at which the bridge walls are printed."
  4354. msgstr ""
  4355. #: fdmprinter.def.json
  4356. msgctxt "cool_fan_speed_0 description"
  4357. 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."
  4358. msgstr "Tuulettimien pyörimisnopeus tulostuksen alussa. Seuraavilla kerroksilla tuulettimen nopeus kasvaa asteittain, kunnes saavutetaan kerros, joka vastaa Normaali tuulettimen nopeus korkeudella -arvoa."
  4359. #: fdmprinter.def.json
  4360. msgctxt "cool_fan_speed_min description"
  4361. 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."
  4362. msgstr "Nopeus, jolla tuuletin pyörii ennen raja-arvon tavoittamista. Jos kerros tulostuu nopeammin kuin raja-arvo, tulostimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta."
  4363. #: fdmprinter.def.json
  4364. msgctxt "cool_fan_speed_max description"
  4365. 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."
  4366. msgstr "Nopeus, jolla tuuletin pyörii kerroksen minimiaikana. Tuulettimen nopeus kasvaa asteittain normaalin ja maksiminopeuden välillä, kun raja-arvo ohitetaan."
  4367. #: fdmprinter.def.json
  4368. msgctxt "retraction_prime_speed description"
  4369. msgid "The speed at which the filament is primed during a retraction move."
  4370. msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä."
  4371. #: fdmprinter.def.json
  4372. msgctxt "wipe_retraction_prime_speed description"
  4373. msgid "The speed at which the filament is primed during a wipe retraction move."
  4374. msgstr ""
  4375. #: fdmprinter.def.json
  4376. msgctxt "switch_extruder_prime_speed description"
  4377. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4378. msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen."
  4379. #: fdmprinter.def.json
  4380. msgctxt "retraction_speed description"
  4381. msgid "The speed at which the filament is retracted and primed during a retraction move."
  4382. msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä."
  4383. #: fdmprinter.def.json
  4384. msgctxt "wipe_retraction_speed description"
  4385. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4386. msgstr ""
  4387. #: fdmprinter.def.json
  4388. msgctxt "switch_extruder_retraction_speed description"
  4389. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4390. msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä."
  4391. #: fdmprinter.def.json
  4392. msgctxt "retraction_retract_speed description"
  4393. msgid "The speed at which the filament is retracted during a retraction move."
  4394. msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä."
  4395. #: fdmprinter.def.json
  4396. msgctxt "wipe_retraction_retract_speed description"
  4397. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4398. msgstr ""
  4399. #: fdmprinter.def.json
  4400. msgctxt "switch_extruder_retraction_speeds description"
  4401. 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."
  4402. msgstr "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa."
  4403. #: fdmprinter.def.json
  4404. msgctxt "speed_support_bottom description"
  4405. 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."
  4406. msgstr "Nopeus, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa mallin yläosan tuen kiinnittymistä."
  4407. #: fdmprinter.def.json
  4408. msgctxt "speed_support_infill description"
  4409. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  4410. msgstr "Nopeus, jolla tuen täyttö tulostetaan. Täytön tulostus hitaammilla nopeuksilla parantaa vakautta."
  4411. #: fdmprinter.def.json
  4412. msgctxt "raft_interface_speed description"
  4413. 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."
  4414. msgstr "Nopeus, jolla pohjaristikon keskikerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri."
  4415. #: fdmprinter.def.json
  4416. msgctxt "speed_wall_0 description"
  4417. 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."
  4418. msgstr "Nopeus, jolla uloimmat seinämät tulostetaan. Ulkoseinämien tulostus hitaammalla nopeudella parantaa lopullisen pintakalvon laatua. Jos sisäseinämän ja ulkoseinämän nopeuden välillä on kuitenkin suuri ero, se vaikuttaa negatiivisesti laatuun."
  4419. #: fdmprinter.def.json
  4420. msgctxt "speed_prime_tower description"
  4421. 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."
  4422. msgstr "Nopeus, jolla esitäyttötorni tulostetaan. Esitäyttötornin tulostus hitaammin saattaa tehdä siitä vakaamman, jos eri tulostuslankojen tarttuvuus ei ole paras mahdollinen."
  4423. #: fdmprinter.def.json
  4424. msgctxt "cool_fan_speed description"
  4425. msgid "The speed at which the print cooling fans spin."
  4426. msgstr "Tulostuksen jäähdytystuulettimien käyntinopeus."
  4427. #: fdmprinter.def.json
  4428. msgctxt "raft_speed description"
  4429. msgid "The speed at which the raft is printed."
  4430. msgstr "Nopeus, jolla pohjaristikko tulostetaan."
  4431. #: fdmprinter.def.json
  4432. msgctxt "speed_support_interface description"
  4433. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  4434. msgstr "Nopeus, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua."
  4435. #: fdmprinter.def.json
  4436. msgctxt "speed_support_roof description"
  4437. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  4438. msgstr "Nopeus, jolla tuen katot tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua."
  4439. #: fdmprinter.def.json
  4440. msgctxt "skirt_brim_speed description"
  4441. 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."
  4442. msgstr "Nopeus, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen nopeudella. Joskus helma tai reunus halutaan kuitenkin tulostaa eri nopeudella."
  4443. #: fdmprinter.def.json
  4444. msgctxt "speed_support description"
  4445. 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."
  4446. msgstr "Nopeus, jolla tukirakenne tulostetaan. Tukirakenteiden tulostus korkeammilla nopeuksilla voi lyhentää tulostusaikaa merkittävästi. Tukirakenteen pinnan laadulla ei ole merkitystä, koska rakenne poistetaan tulostuksen jälkeen."
  4447. #: fdmprinter.def.json
  4448. msgctxt "raft_surface_speed description"
  4449. 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."
  4450. msgstr "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja."
  4451. #: fdmprinter.def.json
  4452. msgctxt "speed_z_hop description"
  4453. 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."
  4454. msgstr ""
  4455. #: fdmprinter.def.json
  4456. msgctxt "speed_wall description"
  4457. msgid "The speed at which the walls are printed."
  4458. msgstr "Seinämien tulostamiseen käytettävä nopeus."
  4459. #: fdmprinter.def.json
  4460. msgctxt "speed_ironing description"
  4461. msgid "The speed at which to pass over the top surface."
  4462. msgstr "Yläpinnan ylikulkuun käytettävä nopeus."
  4463. #: fdmprinter.def.json
  4464. msgctxt "material_break_speed description"
  4465. msgid "The speed at which to retract the filament in order to break it cleanly."
  4466. msgstr ""
  4467. #: fdmprinter.def.json
  4468. msgctxt "speed_roofing description"
  4469. msgid "The speed at which top surface skin layers are printed."
  4470. msgstr "Yläpinnan pintakalvokerrosten tulostamiseen käytettävä nopeus."
  4471. #: fdmprinter.def.json
  4472. msgctxt "speed_topbottom description"
  4473. msgid "The speed at which top/bottom layers are printed."
  4474. msgstr "Ylä-/alakerrosten tulostamiseen käytettävä nopeus."
  4475. #: fdmprinter.def.json
  4476. msgctxt "speed_travel description"
  4477. msgid "The speed at which travel moves are made."
  4478. msgstr "Nopeus, jolla siirtoliikkeet tehdään."
  4479. #: fdmprinter.def.json
  4480. msgctxt "coasting_speed description"
  4481. 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."
  4482. msgstr "Nopeus, jolla siirrytään vapaaliu'un aikana, suhteessa pursotusreitin nopeuteen. Arvoksi suositellaan hieman alle 100 %, sillä vapaaliukusiirron aikana paine Bowden-putkessa laskee."
  4483. #: fdmprinter.def.json
  4484. msgctxt "speed_layer_0 description"
  4485. 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."
  4486. msgstr ""
  4487. #: fdmprinter.def.json
  4488. msgctxt "speed_print_layer_0 description"
  4489. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  4490. msgstr "Alkukerroksen tulostusnopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi."
  4491. #: fdmprinter.def.json
  4492. msgctxt "speed_travel_layer_0 description"
  4493. 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."
  4494. msgstr "Alkukerroksen siirtoliikkeiden nopeus. Alhaisempi arvo on suositeltava, jotta aikaisemmin tulostettuja osia ei vedetä pois alustasta. Tämän asetuksen arvo voidaan laskea automaattisesti siirtoliikkeen nopeuden ja tulostusnopeuden suhteen perusteella."
  4495. #: fdmprinter.def.json
  4496. msgctxt "material_break_temperature description"
  4497. msgid "The temperature at which the filament is broken for a clean break."
  4498. msgstr ""
  4499. #: fdmprinter.def.json
  4500. msgctxt "build_volume_temperature description"
  4501. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  4502. msgstr ""
  4503. #: fdmprinter.def.json
  4504. msgctxt "material_standby_temperature description"
  4505. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  4506. msgstr "Suuttimen lämpötila, kun toista suutinta käytetään tulostukseen."
  4507. #: fdmprinter.def.json
  4508. msgctxt "material_final_print_temperature description"
  4509. msgid "The temperature to which to already start cooling down just before the end of printing."
  4510. msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista."
  4511. #: fdmprinter.def.json
  4512. msgctxt "material_print_temperature_layer_0 description"
  4513. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  4514. msgstr "Ensimmäisen kerroksen tulostuksessa käytettävä lämpötila. Aseta arvoon 0, jos et halua käyttää alkukerroksen erikoiskäsittelyä."
  4515. #: fdmprinter.def.json
  4516. msgctxt "material_print_temperature description"
  4517. msgid "The temperature used for printing."
  4518. msgstr "Tulostukseen käytettävä lämpötila."
  4519. #: fdmprinter.def.json
  4520. msgctxt "material_bed_temperature_layer_0 description"
  4521. 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."
  4522. msgstr ""
  4523. #: fdmprinter.def.json
  4524. msgctxt "material_bed_temperature description"
  4525. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  4526. msgstr ""
  4527. #: fdmprinter.def.json
  4528. msgctxt "material_break_preparation_temperature description"
  4529. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  4530. msgstr ""
  4531. #: fdmprinter.def.json
  4532. msgctxt "bottom_thickness description"
  4533. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  4534. msgstr "Alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää alakerrosten lukumäärän."
  4535. #: fdmprinter.def.json
  4536. msgctxt "skin_edge_support_thickness description"
  4537. msgid "The thickness of the extra infill that supports skin edges."
  4538. msgstr ""
  4539. #: fdmprinter.def.json
  4540. msgctxt "support_interface_height description"
  4541. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  4542. msgstr "Tukiliittymän paksuus kohdassa, jossa se koskettaa mallia ylä- tai alaosassa."
  4543. #: fdmprinter.def.json
  4544. msgctxt "support_bottom_height description"
  4545. 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."
  4546. msgstr "Tuen lattioiden paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle."
  4547. #: fdmprinter.def.json
  4548. msgctxt "support_roof_height description"
  4549. 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."
  4550. msgstr "Tukikattojen paksuus. Tällä hallitaan tiheiden kerrosten määrää sen tuen päällä, jolla malli lepää."
  4551. #: fdmprinter.def.json
  4552. msgctxt "top_thickness description"
  4553. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  4554. msgstr "Yläkerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää yläkerrosten lukumäärän."
  4555. #: fdmprinter.def.json
  4556. msgctxt "top_bottom_thickness description"
  4557. 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."
  4558. msgstr "Ylä-/alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää ylä-/alakerrosten lukumäärän."
  4559. #: fdmprinter.def.json
  4560. msgctxt "wall_thickness description"
  4561. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4562. msgstr "Seinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän."
  4563. #: fdmprinter.def.json
  4564. msgctxt "infill_sparse_thickness description"
  4565. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4566. msgstr "Täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulisi aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään."
  4567. #: fdmprinter.def.json
  4568. msgctxt "support_infill_sparse_thickness description"
  4569. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  4570. msgstr "Tuen täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulee aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään."
  4571. #: fdmprinter.def.json
  4572. msgctxt "machine_gcode_flavor description"
  4573. msgid "The type of g-code to be generated."
  4574. msgstr ""
  4575. #: fdmprinter.def.json
  4576. msgctxt "coasting_volume description"
  4577. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4578. msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon."
  4579. #: fdmprinter.def.json
  4580. msgctxt "machine_width description"
  4581. msgid "The width (X-direction) of the printable area."
  4582. msgstr "Tulostettavan alueen leveys (X-suunta)."
  4583. #: fdmprinter.def.json
  4584. msgctxt "support_brim_width description"
  4585. 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."
  4586. msgstr ""
  4587. #: fdmprinter.def.json
  4588. #, fuzzy
  4589. msgctxt "interlocking_beam_width description"
  4590. msgid "The width of the interlocking structure beams."
  4591. msgstr "Esitäyttötornin leveys."
  4592. #: fdmprinter.def.json
  4593. msgctxt "prime_tower_size description"
  4594. msgid "The width of the prime tower."
  4595. msgstr "Esitäyttötornin leveys."
  4596. #: fdmprinter.def.json
  4597. msgctxt "magic_fuzzy_skin_thickness description"
  4598. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4599. msgstr "Leveys, jolla värinä tapahtuu. Tämä suositellaan pidettäväksi ulkoseinämän leveyttä pienempänä, koska sisäseinämiä ei muuteta."
  4600. #: fdmprinter.def.json
  4601. msgctxt "retraction_extrusion_window description"
  4602. 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."
  4603. msgstr "Ikkuna, jossa takaisinvedon maksimiluku otetaan käyttöön. Tämän ikkunan tulisi olla suunnilleen takaisinvetoetäisyyden kokoinen, jotta saman kohdan sivuuttavien takaisinvetojen lukumäärää saadaan rajoitettua."
  4604. #: fdmprinter.def.json
  4605. msgctxt "prime_tower_position_x description"
  4606. msgid "The x coordinate of the position of the prime tower."
  4607. msgstr "Esitäyttötornin sijainnin X-koordinaatti."
  4608. #: fdmprinter.def.json
  4609. msgctxt "prime_tower_position_y description"
  4610. msgid "The y coordinate of the position of the prime tower."
  4611. msgstr "Esitäyttötornin sijainnin Y-koordinaatti."
  4612. #: fdmprinter.def.json
  4613. msgctxt "support_meshes_present description"
  4614. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  4615. msgstr ""
  4616. #: fdmprinter.def.json
  4617. msgctxt "bridge_wall_coast description"
  4618. 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."
  4619. msgstr ""
  4620. #: fdmprinter.def.json
  4621. msgctxt "raft_smoothing description"
  4622. 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."
  4623. msgstr ""
  4624. #: fdmprinter.def.json
  4625. msgctxt "retraction_count_max description"
  4626. 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."
  4627. msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia."
  4628. #: fdmprinter.def.json
  4629. msgctxt "draft_shield_enabled description"
  4630. 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."
  4631. msgstr "Tämä luo mallin ympärille seinämän, joka pidättää (kuumaa) ilmaa ja suojaa ulkoiselta ilmavirtaukselta. Erityisen käyttökelpoinen materiaaleilla, jotka vääntyvät helposti."
  4632. #: fdmprinter.def.json
  4633. msgctxt "support_tree_tip_diameter label"
  4634. msgid "Tip Diameter"
  4635. msgstr ""
  4636. #: fdmprinter.def.json
  4637. msgctxt "material_shrinkage_percentage_xy description"
  4638. 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)."
  4639. msgstr ""
  4640. #: fdmprinter.def.json
  4641. msgctxt "material_shrinkage_percentage_z description"
  4642. 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)."
  4643. msgstr ""
  4644. #: fdmprinter.def.json
  4645. msgctxt "material_shrinkage_percentage description"
  4646. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  4647. msgstr ""
  4648. #: fdmprinter.def.json
  4649. msgctxt "top_layers label"
  4650. msgid "Top Layers"
  4651. msgstr "Yläkerrokset"
  4652. #: fdmprinter.def.json
  4653. msgctxt "top_skin_expand_distance label"
  4654. msgid "Top Skin Expand Distance"
  4655. msgstr "Yläpintakalvon laajennuksen etäisyys"
  4656. #: fdmprinter.def.json
  4657. msgctxt "top_skin_preshrink label"
  4658. msgid "Top Skin Removal Width"
  4659. msgstr "Yläpintakalvon poistoleveys"
  4660. #: fdmprinter.def.json
  4661. msgctxt "acceleration_roofing label"
  4662. msgid "Top Surface Skin Acceleration"
  4663. msgstr "Yläpinnan pintakalvon kiihtyvyys"
  4664. #: fdmprinter.def.json
  4665. msgctxt "roofing_extruder_nr label"
  4666. msgid "Top Surface Skin Extruder"
  4667. msgstr "Yläpinnan pintakalvon suulake"
  4668. #: fdmprinter.def.json
  4669. msgctxt "roofing_material_flow label"
  4670. msgid "Top Surface Skin Flow"
  4671. msgstr ""
  4672. #: fdmprinter.def.json
  4673. msgctxt "jerk_roofing label"
  4674. msgid "Top Surface Skin Jerk"
  4675. msgstr "Yläpinnan pintakalvon nykäisy"
  4676. #: fdmprinter.def.json
  4677. msgctxt "roofing_layer_count label"
  4678. msgid "Top Surface Skin Layers"
  4679. msgstr "Yläpinnan pintakalvokerrokset"
  4680. #: fdmprinter.def.json
  4681. msgctxt "roofing_angles label"
  4682. msgid "Top Surface Skin Line Directions"
  4683. msgstr "Yläpinnan pintakalvon linjojen suunnat"
  4684. #: fdmprinter.def.json
  4685. msgctxt "roofing_line_width label"
  4686. msgid "Top Surface Skin Line Width"
  4687. msgstr "Yläpinnan pintakalvon linjan leveys"
  4688. #: fdmprinter.def.json
  4689. msgctxt "roofing_pattern label"
  4690. msgid "Top Surface Skin Pattern"
  4691. msgstr "Yläpinnan pintakalvokuvio"
  4692. #: fdmprinter.def.json
  4693. msgctxt "speed_roofing label"
  4694. msgid "Top Surface Skin Speed"
  4695. msgstr "Yläpinnan pintakalvonopeus"
  4696. #: fdmprinter.def.json
  4697. msgctxt "top_thickness label"
  4698. msgid "Top Thickness"
  4699. msgstr "Yläosan paksuus"
  4700. #: fdmprinter.def.json
  4701. msgctxt "max_skin_angle_for_expansion description"
  4702. 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."
  4703. msgstr ""
  4704. #: fdmprinter.def.json
  4705. msgctxt "top_bottom description"
  4706. msgid "Top/Bottom"
  4707. msgstr ""
  4708. #: fdmprinter.def.json
  4709. msgctxt "top_bottom label"
  4710. msgid "Top/Bottom"
  4711. msgstr ""
  4712. #: fdmprinter.def.json
  4713. msgctxt "acceleration_topbottom label"
  4714. msgid "Top/Bottom Acceleration"
  4715. msgstr "Ylä-/alakerrosten kiihtyvyys"
  4716. #: fdmprinter.def.json
  4717. msgctxt "top_bottom_extruder_nr label"
  4718. msgid "Top/Bottom Extruder"
  4719. msgstr "Ylä- ja alapuolen suulake"
  4720. #: fdmprinter.def.json
  4721. msgctxt "skin_material_flow label"
  4722. msgid "Top/Bottom Flow"
  4723. msgstr ""
  4724. #: fdmprinter.def.json
  4725. msgctxt "jerk_topbottom label"
  4726. msgid "Top/Bottom Jerk"
  4727. msgstr "Ylä-/alaosan nykäisy"
  4728. #: fdmprinter.def.json
  4729. msgctxt "skin_angles label"
  4730. msgid "Top/Bottom Line Directions"
  4731. msgstr "Yläosan/alaosan linjojen suunnat"
  4732. #: fdmprinter.def.json
  4733. msgctxt "skin_line_width label"
  4734. msgid "Top/Bottom Line Width"
  4735. msgstr "Ylä-/alalinjan leveys"
  4736. #: fdmprinter.def.json
  4737. msgctxt "top_bottom_pattern label"
  4738. msgid "Top/Bottom Pattern"
  4739. msgstr "Ylä-/alaosan kuvio"
  4740. #: fdmprinter.def.json
  4741. msgctxt "speed_topbottom label"
  4742. msgid "Top/Bottom Speed"
  4743. msgstr "Ylä-/alaosan nopeus"
  4744. #: fdmprinter.def.json
  4745. msgctxt "top_bottom_thickness label"
  4746. msgid "Top/Bottom Thickness"
  4747. msgstr "Ylä-/alaosan paksuus"
  4748. #: fdmprinter.def.json
  4749. msgctxt "support_type option buildplate"
  4750. msgid "Touching Buildplate"
  4751. msgstr "Alustaa koskettava"
  4752. #: fdmprinter.def.json
  4753. msgctxt "support_tower_diameter label"
  4754. msgid "Tower Diameter"
  4755. msgstr "Tornin läpimitta"
  4756. #: fdmprinter.def.json
  4757. msgctxt "support_tower_roof_angle label"
  4758. msgid "Tower Roof Angle"
  4759. msgstr "Tornin kattokulma"
  4760. #: fdmprinter.def.json
  4761. msgctxt "mesh_rotation_matrix description"
  4762. msgid "Transformation matrix to be applied to the model when loading it from file."
  4763. msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta."
  4764. #: fdmprinter.def.json
  4765. msgctxt "travel label"
  4766. msgid "Travel"
  4767. msgstr "Siirtoliike"
  4768. #: fdmprinter.def.json
  4769. msgctxt "acceleration_travel label"
  4770. msgid "Travel Acceleration"
  4771. msgstr "Siirtoliikkeen kiihtyvyys"
  4772. #: fdmprinter.def.json
  4773. msgctxt "travel_avoid_distance label"
  4774. msgid "Travel Avoid Distance"
  4775. msgstr "Siirtoliikkeen vältettävä etäisyys"
  4776. #: fdmprinter.def.json
  4777. msgctxt "jerk_travel label"
  4778. msgid "Travel Jerk"
  4779. msgstr "Siirtoliikkeen nykäisy"
  4780. #: fdmprinter.def.json
  4781. msgctxt "speed_travel label"
  4782. msgid "Travel Speed"
  4783. msgstr "Siirtoliikkeen nopeus"
  4784. #: fdmprinter.def.json
  4785. msgctxt "magic_mesh_surface_mode description"
  4786. 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."
  4787. msgstr "Käsittelee mallia vain pintana, ainemääränä tai löysillä pinnoilla varustettuina ainemäärinä. Normaali tulostustila tulostaa vain suljetut ainemäärät. Pinta-tila tulostaa yhden verkkopintaa seuraavan seinämän ilman täyttöä ja ilman ylä-/alapintakalvoa. Molemmat-tila tulostaa suljetut ainemäärät normaalisti ja jäljellä olevat monikulmiot pintoina."
  4788. #: fdmprinter.def.json
  4789. msgctxt "support_structure option tree"
  4790. msgid "Tree"
  4791. msgstr ""
  4792. #: fdmprinter.def.json
  4793. msgctxt "infill_pattern option trihexagon"
  4794. msgid "Tri-Hexagon"
  4795. msgstr ""
  4796. #: fdmprinter.def.json
  4797. msgctxt "infill_pattern option triangles"
  4798. msgid "Triangles"
  4799. msgstr "Kolmiot"
  4800. #: fdmprinter.def.json
  4801. msgctxt "support_bottom_pattern option triangles"
  4802. msgid "Triangles"
  4803. msgstr "Kolmiot"
  4804. #: fdmprinter.def.json
  4805. msgctxt "support_interface_pattern option triangles"
  4806. msgid "Triangles"
  4807. msgstr "Kolmiot"
  4808. #: fdmprinter.def.json
  4809. msgctxt "support_pattern option triangles"
  4810. msgid "Triangles"
  4811. msgstr "Kolmiot"
  4812. #: fdmprinter.def.json
  4813. msgctxt "support_roof_pattern option triangles"
  4814. msgid "Triangles"
  4815. msgstr "Kolmiot"
  4816. #: fdmprinter.def.json
  4817. msgctxt "support_tree_max_diameter label"
  4818. msgid "Trunk Diameter"
  4819. msgstr ""
  4820. #: fdmprinter.def.json
  4821. msgctxt "machine_gcode_flavor option UltiGCode"
  4822. msgid "Ultimaker 2"
  4823. msgstr "Ultimaker 2"
  4824. #: fdmprinter.def.json
  4825. msgctxt "meshfix_union_all label"
  4826. msgid "Union Overlapping Volumes"
  4827. msgstr "Yhdistä limittyvät ainemäärät"
  4828. #: fdmprinter.def.json
  4829. msgctxt "bridge_wall_min_length description"
  4830. 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."
  4831. msgstr ""
  4832. #: fdmprinter.def.json
  4833. msgctxt "adaptive_layer_height_enabled label"
  4834. msgid "Use Adaptive Layers"
  4835. msgstr ""
  4836. #: fdmprinter.def.json
  4837. msgctxt "support_use_towers label"
  4838. msgid "Use Towers"
  4839. msgstr "Käytä torneja"
  4840. #: fdmprinter.def.json
  4841. msgctxt "acceleration_travel_enabled description"
  4842. 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."
  4843. msgstr ""
  4844. #: fdmprinter.def.json
  4845. msgctxt "jerk_travel_enabled description"
  4846. 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."
  4847. msgstr ""
  4848. #: fdmprinter.def.json
  4849. msgctxt "relative_extrusion description"
  4850. 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."
  4851. msgstr ""
  4852. #: fdmprinter.def.json
  4853. msgctxt "support_use_towers description"
  4854. 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."
  4855. msgstr "Pieniä ulokealueita tuetaan erityisillä torneilla. Näiden tornien läpimitta on niiden tukemaa aluetta suurempi. Ulokkeen lähellä tornien läpimitta pienenee muodostaen katon."
  4856. #: fdmprinter.def.json
  4857. msgctxt "infill_mesh description"
  4858. 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."
  4859. msgstr "Tällä verkolla muokataan sen kanssa limittyvien toisten verkkojen täyttöä. Asetuksella korvataan toisten verkkojen täyttöalueet tämän verkon alueilla. Tälle verkolle on suositeltavaa tulostaa vain yksi seinämä ja ei ylä-/alapintakalvoa."
  4860. #: fdmprinter.def.json
  4861. msgctxt "support_mesh description"
  4862. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4863. msgstr "Käytä tätä verkkoa tukialueiden valintaan. Sen avulla voidaan luoda tukirakenne."
  4864. #: fdmprinter.def.json
  4865. msgctxt "anti_overhang_mesh description"
  4866. 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."
  4867. msgstr "Käytä tätä verkkoa määrittääksesi, missä mitään mallin osaa ei tule tunnistaa ulokkeeksi. Tätä toimintoa voidaan käyttää ei-toivotun tukirakenteen poistamiseksi."
  4868. #: fdmprinter.def.json
  4869. msgctxt "z_seam_type option back"
  4870. msgid "User Specified"
  4871. msgstr "Käyttäjän määrittämä"
  4872. #: fdmprinter.def.json
  4873. msgctxt "material_shrinkage_percentage_z label"
  4874. msgid "Vertical Scaling Factor Shrinkage Compensation"
  4875. msgstr ""
  4876. #: fdmprinter.def.json
  4877. msgctxt "slicing_tolerance description"
  4878. 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."
  4879. msgstr ""
  4880. #: fdmprinter.def.json
  4881. msgctxt "material_bed_temp_wait label"
  4882. msgid "Wait for Build Plate Heatup"
  4883. msgstr "Odota alustan lämpenemistä"
  4884. #: fdmprinter.def.json
  4885. msgctxt "material_print_temp_wait label"
  4886. msgid "Wait for Nozzle Heatup"
  4887. msgstr "Odota suuttimen lämpenemistä"
  4888. #: fdmprinter.def.json
  4889. msgctxt "acceleration_wall label"
  4890. msgid "Wall Acceleration"
  4891. msgstr "Seinämän kiihtyvyys"
  4892. #: fdmprinter.def.json
  4893. msgctxt "wall_distribution_count label"
  4894. msgid "Wall Distribution Count"
  4895. msgstr ""
  4896. #: fdmprinter.def.json
  4897. msgctxt "wall_extruder_nr label"
  4898. msgid "Wall Extruder"
  4899. msgstr "Seinämien suulake"
  4900. #: fdmprinter.def.json
  4901. msgctxt "wall_material_flow label"
  4902. msgid "Wall Flow"
  4903. msgstr ""
  4904. #: fdmprinter.def.json
  4905. msgctxt "jerk_wall label"
  4906. msgid "Wall Jerk"
  4907. msgstr "Seinämän nykäisy"
  4908. #: fdmprinter.def.json
  4909. msgctxt "wall_line_count label"
  4910. msgid "Wall Line Count"
  4911. msgstr "Seinämälinjaluku"
  4912. #: fdmprinter.def.json
  4913. msgctxt "wall_line_width label"
  4914. msgid "Wall Line Width"
  4915. msgstr "Seinämälinjan leveys"
  4916. #: fdmprinter.def.json
  4917. msgctxt "inset_direction label"
  4918. msgid "Wall Ordering"
  4919. msgstr ""
  4920. #: fdmprinter.def.json
  4921. msgctxt "speed_wall label"
  4922. msgid "Wall Speed"
  4923. msgstr "Seinämänopeus"
  4924. #: fdmprinter.def.json
  4925. msgctxt "wall_thickness label"
  4926. msgid "Wall Thickness"
  4927. msgstr "Seinämän paksuus"
  4928. #: fdmprinter.def.json
  4929. msgctxt "wall_transition_length label"
  4930. msgid "Wall Transition Length"
  4931. msgstr ""
  4932. #: fdmprinter.def.json
  4933. msgctxt "wall_transition_filter_distance label"
  4934. msgid "Wall Transitioning Filter Distance"
  4935. msgstr ""
  4936. #: fdmprinter.def.json
  4937. msgctxt "wall_transition_filter_deviation label"
  4938. msgid "Wall Transitioning Filter Margin"
  4939. msgstr ""
  4940. #: fdmprinter.def.json
  4941. msgctxt "wall_transition_angle label"
  4942. msgid "Wall Transitioning Threshold Angle"
  4943. msgstr ""
  4944. #: fdmprinter.def.json
  4945. msgctxt "shell label"
  4946. msgid "Walls"
  4947. msgstr ""
  4948. #: fdmprinter.def.json
  4949. msgctxt "wall_overhang_angle description"
  4950. 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."
  4951. msgstr ""
  4952. #: fdmprinter.def.json
  4953. msgctxt "support_interface_skip_height description"
  4954. 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."
  4955. msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä."
  4956. #: fdmprinter.def.json
  4957. msgctxt "infill_enable_travel_optimization description"
  4958. 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."
  4959. msgstr ""
  4960. #: fdmprinter.def.json
  4961. msgctxt "support_fan_enable description"
  4962. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4963. msgstr ""
  4964. #: fdmprinter.def.json
  4965. msgctxt "z_seam_relative description"
  4966. 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."
  4967. msgstr "Kun tämä on käytössä, Z-sauman koordinaatit ovat suhteessa kunkin osan keskikohtaan. Kun asetus on pois käytöstä, koordinaatit määrittävät absoluuttisen sijainnin alustalla."
  4968. #: fdmprinter.def.json
  4969. msgctxt "retraction_combing_max_distance description"
  4970. 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."
  4971. msgstr ""
  4972. #: fdmprinter.def.json
  4973. msgctxt "hole_xy_offset_max_diameter description"
  4974. 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."
  4975. msgstr ""
  4976. #: fdmprinter.def.json
  4977. msgctxt "bridge_skin_material_flow description"
  4978. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4979. msgstr ""
  4980. #: fdmprinter.def.json
  4981. msgctxt "bridge_wall_material_flow description"
  4982. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4983. msgstr ""
  4984. #: fdmprinter.def.json
  4985. msgctxt "bridge_skin_material_flow_2 description"
  4986. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4987. msgstr ""
  4988. #: fdmprinter.def.json
  4989. msgctxt "bridge_skin_material_flow_3 description"
  4990. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4991. msgstr ""
  4992. #: fdmprinter.def.json
  4993. msgctxt "cool_lift_head description"
  4994. 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."
  4995. msgstr "Kun miniminopeuteen päädytään kerroksen minimiajan johdosta, nosta pää pois tulosteesta ja odota, kunnes kerroksen minimiaika täyttyy."
  4996. #: fdmprinter.def.json
  4997. msgctxt "skin_no_small_gaps_heuristic description"
  4998. 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."
  4999. msgstr ""
  5000. #: fdmprinter.def.json
  5001. msgctxt "wall_transition_angle description"
  5002. 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."
  5003. msgstr ""
  5004. #: fdmprinter.def.json
  5005. msgctxt "wall_transition_length description"
  5006. 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."
  5007. msgstr ""
  5008. #: fdmprinter.def.json
  5009. msgctxt "wipe_hop_enable description"
  5010. 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."
  5011. msgstr ""
  5012. #: fdmprinter.def.json
  5013. msgctxt "retraction_hop_enabled description"
  5014. 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."
  5015. msgstr "Alustaa lasketaan aina kun takaisinveto tehdään, jotta suuttimen ja tulosteen väliin jää tilaa. Tämä estää suuttimen osumisen tulosteeseen siirtoliikkeen yhteydessä ja vähentää näin sen vaaraa, että tuloste työnnetään pois alustalta."
  5016. #: fdmprinter.def.json
  5017. msgctxt "support_xy_overrides_z description"
  5018. 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."
  5019. msgstr "Kumoaako tuen X-/Y-etäisyys tuen Z-etäisyyden vai päinvastoin. Kun X/Y kumoaa Z:n, X-/Y-etäisyys saattaa työntää tuen pois mallista, mikä vaikuttaa todelliseen Z-etäisyyteen ulokkeeseen. Tämä voidaan estää poistamalla X-/Y-etäisyyden käyttö ulokkeiden lähellä."
  5020. #: fdmprinter.def.json
  5021. msgctxt "machine_center_is_zero description"
  5022. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  5023. msgstr "Ovatko tulostimen nollasijainnin X-/Y-koordinaatit tulostettavan alueen keskellä."
  5024. #: fdmprinter.def.json
  5025. msgctxt "machine_endstop_positive_direction_x description"
  5026. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  5027. msgstr ""
  5028. #: fdmprinter.def.json
  5029. msgctxt "machine_endstop_positive_direction_y description"
  5030. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  5031. msgstr ""
  5032. #: fdmprinter.def.json
  5033. msgctxt "machine_endstop_positive_direction_z description"
  5034. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  5035. msgstr ""
  5036. #: fdmprinter.def.json
  5037. msgctxt "machine_extruders_share_heater description"
  5038. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  5039. msgstr ""
  5040. #: fdmprinter.def.json
  5041. msgctxt "machine_extruders_share_nozzle description"
  5042. 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."
  5043. msgstr ""
  5044. #: fdmprinter.def.json
  5045. msgctxt "machine_heated_bed description"
  5046. msgid "Whether the machine has a heated build plate present."
  5047. msgstr "Sisältääkö laite lämmitettävän alustan."
  5048. #: fdmprinter.def.json
  5049. msgctxt "machine_heated_build_volume description"
  5050. msgid "Whether the machine is able to stabilize the build volume temperature."
  5051. msgstr ""
  5052. #: fdmprinter.def.json
  5053. msgctxt "center_object description"
  5054. 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."
  5055. msgstr "Määrittää, keskitetäänkö kappale alustan keskelle (0,0) sen sijasta, että käytettäisiin koordinaattijärjestelmää, jolla kappale on tallennettu."
  5056. #: fdmprinter.def.json
  5057. msgctxt "machine_nozzle_temp_enabled description"
  5058. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  5059. msgstr "Lämpötilan hallinta Curan kautta. Kytke tämä pois, niin voit hallita suuttimen lämpötilaa Curan ulkopuolella."
  5060. #: fdmprinter.def.json
  5061. msgctxt "material_bed_temp_prepend description"
  5062. 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."
  5063. msgstr "Sisällytetäänkö alustan lämpötilakomennot GCoden alkuun. Kun aloitus-GCode sisältää jo alustan lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä."
  5064. #: fdmprinter.def.json
  5065. msgctxt "material_print_temp_prepend description"
  5066. 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."
  5067. msgstr "Sisällytetäänkö suuttimen lämpötilakomennot GCoden alkuun. Kun start_gcode sisältää jo suuttimen lämpötilakomennot, Cura-edustaohjelma poistaa tämän asetuksen automaattisesti käytöstä."
  5068. #: fdmprinter.def.json
  5069. msgctxt "clean_between_layers description"
  5070. 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."
  5071. msgstr ""
  5072. #: fdmprinter.def.json
  5073. msgctxt "material_bed_temp_wait description"
  5074. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  5075. msgstr "Lisätäänkö komento, jolla odotetaan alustan lämpötilan saavuttamista alussa."
  5076. #: fdmprinter.def.json
  5077. msgctxt "prime_blob_enable description"
  5078. 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."
  5079. msgstr "Tulostuslangan esitäyttö materiaalipisaralla ennen tulostusta. Tämän asetuksen käyttöönotolla varmistat, että suulakkeen suuttimessa on materiaalia valmiina ennen tulostusta. Myös helman tai reunuksen tulostaminen voi toimia esitäyttönä, jolloin tämän asetuksen käytöstä poisto säästää hieman aikaa."
  5080. #: fdmprinter.def.json
  5081. msgctxt "print_sequence description"
  5082. 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."
  5083. msgstr ""
  5084. #: fdmprinter.def.json
  5085. msgctxt "machine_show_variants description"
  5086. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  5087. msgstr "Näytetäänkö laitteen eri variantit, jotka kuvataan erillisissä json-tiedostoissa."
  5088. #: fdmprinter.def.json
  5089. msgctxt "machine_firmware_retract description"
  5090. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  5091. msgstr ""
  5092. #: fdmprinter.def.json
  5093. msgctxt "material_print_temp_wait description"
  5094. msgid "Whether to wait until the nozzle temperature is reached at the start."
  5095. msgstr "Odotetaanko suuttimen lämpötilan saavuttamista alussa."
  5096. #: fdmprinter.def.json
  5097. msgctxt "infill_line_width description"
  5098. msgid "Width of a single infill line."
  5099. msgstr "Yhden täyttölinjan leveys."
  5100. #: fdmprinter.def.json
  5101. msgctxt "support_interface_line_width description"
  5102. msgid "Width of a single line of support roof or floor."
  5103. msgstr "Tukikaton tai -lattian yhden linjan leveys."
  5104. #: fdmprinter.def.json
  5105. msgctxt "roofing_line_width description"
  5106. msgid "Width of a single line of the areas at the top of the print."
  5107. msgstr "Tulosteen yläosan alueiden yhden linjan leveys."
  5108. #: fdmprinter.def.json
  5109. msgctxt "line_width description"
  5110. 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."
  5111. msgstr "Yhden linjan leveys. Yleensä kunkin linjan leveyden tulisi vastata suuttimen leveyttä. Pienentämällä tätä arvoa hiukan voidaan kuitenkin mahdollisesti tuottaa parempia tulosteita."
  5112. #: fdmprinter.def.json
  5113. msgctxt "prime_tower_line_width description"
  5114. msgid "Width of a single prime tower line."
  5115. msgstr "Yhden esitäyttötornin linjan leveys."
  5116. #: fdmprinter.def.json
  5117. msgctxt "skirt_brim_line_width description"
  5118. msgid "Width of a single skirt or brim line."
  5119. msgstr "Yhden helma- tai reunuslinjan leveys."
  5120. #: fdmprinter.def.json
  5121. msgctxt "support_bottom_line_width description"
  5122. msgid "Width of a single support floor line."
  5123. msgstr "Tukilattian yhden linjan leveys."
  5124. #: fdmprinter.def.json
  5125. msgctxt "support_roof_line_width description"
  5126. msgid "Width of a single support roof line."
  5127. msgstr "Tukikaton yhden linjan leveys."
  5128. #: fdmprinter.def.json
  5129. msgctxt "support_line_width description"
  5130. msgid "Width of a single support structure line."
  5131. msgstr "Yhden tukirakenteen linjan leveys."
  5132. #: fdmprinter.def.json
  5133. msgctxt "skin_line_width description"
  5134. msgid "Width of a single top/bottom line."
  5135. msgstr "Yhden ylä-/alalinjan leveys."
  5136. #: fdmprinter.def.json
  5137. msgctxt "wall_line_width_x description"
  5138. msgid "Width of a single wall line for all wall lines except the outermost one."
  5139. msgstr "Yhden seinämälinjan leveys. Koskee kaikkia muita paitsi ulommaista seinämää."
  5140. #: fdmprinter.def.json
  5141. msgctxt "wall_line_width description"
  5142. msgid "Width of a single wall line."
  5143. msgstr "Yhden seinämälinjan leveys."
  5144. #: fdmprinter.def.json
  5145. msgctxt "raft_base_line_width description"
  5146. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  5147. msgstr "Pohjaristikon pohjakerroksen linjojen leveys. Näiden tulisi olla paksuja linjoja auttamassa tarttuvuutta alustaan."
  5148. #: fdmprinter.def.json
  5149. msgctxt "raft_interface_line_width description"
  5150. 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."
  5151. msgstr "Pohjaristikon keskikerroksen linjojen leveys. Pursottamalla toiseen kerrokseen enemmän saa linjat tarttumaan alustaan."
  5152. #: fdmprinter.def.json
  5153. msgctxt "raft_surface_line_width description"
  5154. 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."
  5155. msgstr "Pohjaristikon pintakerrosten linjojen leveys. Näiden tulisi olla ohuita linjoja, jotta pohjaristikon yläosasta tulee sileä."
  5156. #: fdmprinter.def.json
  5157. msgctxt "wall_line_width_0 description"
  5158. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  5159. msgstr "Ulommaisen seinämälinjan leveys. Tätä arvoa pienentämällä voidaan tulostaa tarkempia yksityiskohtia."
  5160. #: fdmprinter.def.json
  5161. msgctxt "min_bead_width description"
  5162. 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."
  5163. msgstr ""
  5164. #: fdmprinter.def.json
  5165. msgctxt "wipe_brush_pos_x label"
  5166. msgid "Wipe Brush X Position"
  5167. msgstr ""
  5168. #: fdmprinter.def.json
  5169. msgctxt "wipe_hop_speed label"
  5170. msgid "Wipe Hop Speed"
  5171. msgstr ""
  5172. #: fdmprinter.def.json
  5173. msgctxt "prime_tower_wipe_enabled label"
  5174. msgid "Wipe Inactive Nozzle on Prime Tower"
  5175. msgstr "Pyyhi esitäyttötornin ei-aktiivinen suutin"
  5176. #: fdmprinter.def.json
  5177. msgctxt "wipe_move_distance label"
  5178. msgid "Wipe Move Distance"
  5179. msgstr ""
  5180. #: fdmprinter.def.json
  5181. msgctxt "clean_between_layers label"
  5182. msgid "Wipe Nozzle Between Layers"
  5183. msgstr ""
  5184. #: fdmprinter.def.json
  5185. msgctxt "wipe_pause label"
  5186. msgid "Wipe Pause"
  5187. msgstr ""
  5188. #: fdmprinter.def.json
  5189. msgctxt "wipe_repeat_count label"
  5190. msgid "Wipe Repeat Count"
  5191. msgstr ""
  5192. #: fdmprinter.def.json
  5193. msgctxt "wipe_retraction_amount label"
  5194. msgid "Wipe Retraction Distance"
  5195. msgstr ""
  5196. #: fdmprinter.def.json
  5197. msgctxt "wipe_retraction_enable label"
  5198. msgid "Wipe Retraction Enable"
  5199. msgstr ""
  5200. #: fdmprinter.def.json
  5201. msgctxt "wipe_retraction_extra_prime_amount label"
  5202. msgid "Wipe Retraction Extra Prime Amount"
  5203. msgstr ""
  5204. #: fdmprinter.def.json
  5205. msgctxt "wipe_retraction_prime_speed label"
  5206. msgid "Wipe Retraction Prime Speed"
  5207. msgstr ""
  5208. #: fdmprinter.def.json
  5209. msgctxt "wipe_retraction_retract_speed label"
  5210. msgid "Wipe Retraction Retract Speed"
  5211. msgstr ""
  5212. #: fdmprinter.def.json
  5213. msgctxt "wipe_retraction_speed label"
  5214. msgid "Wipe Retraction Speed"
  5215. msgstr ""
  5216. #: fdmprinter.def.json
  5217. msgctxt "wipe_hop_enable label"
  5218. msgid "Wipe Z Hop"
  5219. msgstr ""
  5220. #: fdmprinter.def.json
  5221. msgctxt "wipe_hop_amount label"
  5222. msgid "Wipe Z Hop Height"
  5223. msgstr ""
  5224. #: fdmprinter.def.json
  5225. msgctxt "retraction_combing option infill"
  5226. msgid "Within Infill"
  5227. msgstr ""
  5228. #: fdmprinter.def.json
  5229. msgctxt "machine_always_write_active_tool description"
  5230. 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."
  5231. msgstr ""
  5232. #: fdmprinter.def.json
  5233. msgctxt "machine_endstop_positive_direction_x label"
  5234. msgid "X Endstop in Positive Direction"
  5235. msgstr ""
  5236. #: fdmprinter.def.json
  5237. msgctxt "wipe_brush_pos_x description"
  5238. msgid "X location where wipe script will start."
  5239. msgstr ""
  5240. #: fdmprinter.def.json
  5241. msgctxt "support_xy_overrides_z option xy_overrides_z"
  5242. msgid "X/Y overrides Z"
  5243. msgstr "X/Y kumoaa Z:n"
  5244. #: fdmprinter.def.json
  5245. msgctxt "machine_endstop_positive_direction_y label"
  5246. msgid "Y Endstop in Positive Direction"
  5247. msgstr ""
  5248. #: fdmprinter.def.json
  5249. msgctxt "machine_endstop_positive_direction_z label"
  5250. msgid "Z Endstop in Positive Direction"
  5251. msgstr ""
  5252. #: fdmprinter.def.json
  5253. msgctxt "retraction_hop_after_extruder_switch label"
  5254. msgid "Z Hop After Extruder Switch"
  5255. msgstr "Z-hyppy suulakkeen vaihdon jälkeen"
  5256. #: fdmprinter.def.json
  5257. msgctxt "retraction_hop_after_extruder_switch_height label"
  5258. msgid "Z Hop After Extruder Switch Height"
  5259. msgstr ""
  5260. #: fdmprinter.def.json
  5261. msgctxt "retraction_hop label"
  5262. msgid "Z Hop Height"
  5263. msgstr "Z-hypyn korkeus"
  5264. #: fdmprinter.def.json
  5265. msgctxt "retraction_hop_only_when_collides label"
  5266. msgid "Z Hop Only Over Printed Parts"
  5267. msgstr "Z-hyppy vain tulostettujen osien yli"
  5268. #: fdmprinter.def.json
  5269. msgctxt "speed_z_hop label"
  5270. msgid "Z Hop Speed"
  5271. msgstr ""
  5272. #: fdmprinter.def.json
  5273. msgctxt "retraction_hop_enabled label"
  5274. msgid "Z Hop When Retracted"
  5275. msgstr "Z-hyppy takaisinvedon yhteydessä"
  5276. #: fdmprinter.def.json
  5277. msgctxt "z_seam_type label"
  5278. msgid "Z Seam Alignment"
  5279. msgstr "Z-sauman kohdistus"
  5280. #: fdmprinter.def.json
  5281. msgctxt "z_seam_position label"
  5282. msgid "Z Seam Position"
  5283. msgstr ""
  5284. #: fdmprinter.def.json
  5285. msgctxt "z_seam_relative label"
  5286. msgid "Z Seam Relative"
  5287. msgstr "Z-sauma suhteellinen"
  5288. #: fdmprinter.def.json
  5289. msgctxt "z_seam_x label"
  5290. msgid "Z Seam X"
  5291. msgstr "Z-sauma X"
  5292. #: fdmprinter.def.json
  5293. msgctxt "z_seam_y label"
  5294. msgid "Z Seam Y"
  5295. msgstr "Z-sauma Y"
  5296. #: fdmprinter.def.json
  5297. msgctxt "support_xy_overrides_z option z_overrides_xy"
  5298. msgid "Z overrides X/Y"
  5299. msgstr "Z kumoaa X/Y:n"
  5300. #: fdmprinter.def.json
  5301. msgctxt "infill_pattern option zigzag"
  5302. msgid "Zig Zag"
  5303. msgstr "Siksak"
  5304. #: fdmprinter.def.json
  5305. msgctxt "ironing_pattern option zigzag"
  5306. msgid "Zig Zag"
  5307. msgstr "Siksak"
  5308. #: fdmprinter.def.json
  5309. msgctxt "roofing_pattern option zigzag"
  5310. msgid "Zig Zag"
  5311. msgstr "Siksak"
  5312. #: fdmprinter.def.json
  5313. msgctxt "support_bottom_pattern option zigzag"
  5314. msgid "Zig Zag"
  5315. msgstr "Siksak"
  5316. #: fdmprinter.def.json
  5317. msgctxt "support_interface_pattern option zigzag"
  5318. msgid "Zig Zag"
  5319. msgstr "Siksak"
  5320. #: fdmprinter.def.json
  5321. msgctxt "support_pattern option zigzag"
  5322. msgid "Zig Zag"
  5323. msgstr "Siksak"
  5324. #: fdmprinter.def.json
  5325. msgctxt "support_roof_pattern option zigzag"
  5326. msgid "Zig Zag"
  5327. msgstr "Siksak"
  5328. #: fdmprinter.def.json
  5329. msgctxt "top_bottom_pattern option zigzag"
  5330. msgid "Zig Zag"
  5331. msgstr "Siksak"
  5332. #: fdmprinter.def.json
  5333. msgctxt "top_bottom_pattern_0 option zigzag"
  5334. msgid "Zig Zag"
  5335. msgstr "Siksak"
  5336. #: fdmprinter.def.json
  5337. msgctxt "travel description"
  5338. msgid "travel"
  5339. msgstr "siirtoliike"
  5340. #~ msgctxt "machine_head_polygon description"
  5341. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5342. #~ msgstr "2D-siluetti tulostuspäästä (tuulettimen kannattimet pois lukien)"
  5343. #~ msgctxt "machine_head_with_fans_polygon description"
  5344. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5345. #~ msgstr "2D-siluetti tulostuspäästä (tuulettimen päät mukaan lukien)"
  5346. #~ msgctxt "spaghetti_infill_extra_volume description"
  5347. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5348. #~ msgstr "Korjausehto pursotettavan aineen kokonaismäärän säätöön jokaisen spagettitäytön aikana."
  5349. #~ msgctxt "sub_div_rad_mult description"
  5350. #~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes."
  5351. #~ msgstr "Säteen kerroin kunkin kuution keskipisteestä mallin rajojen tarkistamiseksi. Näin määritetään, tuleeko kuutioon tehdä alajako. Suuremmat arvot tuottavat enemmän alajakoja eli enemmän pieniä kuutioita."
  5352. #~ msgctxt "support_interface_density description"
  5353. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  5354. #~ msgstr "Säätää tukirakenteen kattojen ja alaosien tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  5355. #~ msgctxt "spaghetti_flow description"
  5356. #~ 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."
  5357. #~ msgstr "Säätää spagettitäytön tiheyttä. Huomaa, että täyttötiheys hallitsee vain täyttökuvion linjojen välien suuruutta, ei spagettitäytön pursotusmäärää."
  5358. #~ msgctxt "dual_pre_wipe description"
  5359. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5360. #~ msgstr "Pyyhi suuttimen vaihdon jälkeen tihkunut materiaali pois suuttimesta, kun ensimmäinen kappale on tulostettu. Näin saadaan aikaan turvallinen ja hidas pyyhkäisyliike kohdassa, jossa tihkunut materiaali vaurioittaa mahdollisimman vähän tulostuksen pinnan laatua."
  5361. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5362. #~ msgid "Alternate Cross 3D Pockets"
  5363. #~ msgstr "Vuoroittaiset risti 3D -taskut"
  5364. #~ msgctxt "skin_alternate_rotation label"
  5365. #~ msgid "Alternate Skin Rotation"
  5366. #~ msgstr "Vuorottele pintakalvon pyöritystä"
  5367. #~ msgctxt "skin_alternate_rotation description"
  5368. #~ 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."
  5369. #~ msgstr "Muuttaa ylä-/alakerrosten tulostussuuntaa. Normaalisti ne tulostetaan vain vinottain. Tämä asetus lisää vain X- ja vain Y -suunnat."
  5370. #~ msgctxt "prime_tower_purge_volume description"
  5371. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5372. #~ msgstr "Poistettavan tulostuslangan määrä esitäyttötornia pyyhittäessä. Poisto on hyödyllinen menetetyn tulostuslangan kompensointiin, silloin kun sitä tihkuu suuttimen ollessa ei-aktiivinen."
  5373. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5374. #~ msgid "Apply the extruder offset to the coordinate system."
  5375. #~ msgstr "Käytä suulakkeen siirtymää koordinaattijärjestelmään."
  5376. #~ msgctxt "material_flow_dependent_temperature label"
  5377. #~ msgid "Auto Temperature"
  5378. #~ msgstr "Automaattinen lämpötila"
  5379. #~ msgctxt "z_seam_type option back"
  5380. #~ msgid "Back"
  5381. #~ msgstr "Taakse"
  5382. #~ msgctxt "machine_shape label"
  5383. #~ msgid "Build plate shape"
  5384. #~ msgstr "Alustan muoto"
  5385. #~ msgctxt "center_object label"
  5386. #~ msgid "Center object"
  5387. #~ msgstr "Keskitä kappale"
  5388. #~ msgctxt "material_flow_dependent_temperature description"
  5389. #~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  5390. #~ msgstr "Muuta kunkin kerroksen lämpötilaa automaattisesti kyseisen kerroksen keskimääräisen virtausnopeuden mukaan."
  5391. #~ msgctxt "retraction_combing description"
  5392. #~ 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 by combing within the infill only."
  5393. #~ msgstr "Pyyhkäisy pitää suuttimen aiemmin tulostetuilla alueilla siirtoliikkeitä tehtäessä. Tämä johtaa hieman pidempiin siirtoliikkeisiin, mutta vähentää takaisinvedon tarvetta. Jos pyyhkäisy on poistettu käytöstä, materiaalille tehdään takaisinveto ja suutin liikkuu suoraan seuraavaan pisteeseen. On myös mahdollista välttää pyyhkäisy ylä- tai alapintakalvojen yli pyyhkäisemällä vain täytössä."
  5394. #~ msgctxt "wireframe_strategy option compensate"
  5395. #~ msgid "Compensate"
  5396. #~ msgstr "Kompensoi"
  5397. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5398. #~ msgid "Compensate Inner Wall Overlaps"
  5399. #~ msgstr "Kompensoi sisäseinämän limityksiä"
  5400. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5401. #~ msgid "Compensate Outer Wall Overlaps"
  5402. #~ msgstr "Kompensoi ulkoseinämän limityksiä"
  5403. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5404. #~ msgid "Compensate Wall Overlaps"
  5405. #~ msgstr "Kompensoi seinämän limityksiä"
  5406. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5407. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5408. #~ msgstr "Kompensoi tulostettaessa virtausta niiden seinämien osien kohdalla, joissa on jo olemassa seinämä."
  5409. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5410. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5411. #~ msgstr "Kompensoi tulostettaessa virtausta niiden sisäseinämien osien kohdalla, joissa on jo olemassa seinämä."
  5412. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5413. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5414. #~ msgstr "Kompensoi tulostettaessa virtausta niiden ulkoseinämien osien kohdalla, joissa on jo olemassa seinämä."
  5415. #~ msgctxt "infill_pattern option concentric_3d"
  5416. #~ msgid "Concentric 3D"
  5417. #~ msgstr "Samankeskinen 3D"
  5418. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5419. #~ msgid "Concentric 3D"
  5420. #~ msgstr "Samankeskinen 3D"
  5421. #~ msgctxt "support_interface_pattern option concentric_3d"
  5422. #~ msgid "Concentric 3D"
  5423. #~ msgstr "Samankeskinen 3D"
  5424. #~ msgctxt "support_pattern option concentric_3d"
  5425. #~ msgid "Concentric 3D"
  5426. #~ msgstr "Samankeskinen 3D"
  5427. #~ msgctxt "support_roof_pattern option concentric_3d"
  5428. #~ msgid "Concentric 3D"
  5429. #~ msgstr "Samankeskinen 3D"
  5430. #~ msgctxt "zig_zaggify_infill description"
  5431. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5432. #~ msgstr "Yhdistä päät, joissa täyttökuvio kohtaa sisäseinämän käyttämällä linjoja, jotka seuraavat sisäseinämän muotoa. Tämän asetuksen ottaminen käyttöön voi saada täytön tarttumaan seinämiin paremmin ja vähentää täytön vaikutusta pystypintojen laatuun. Tämän asetuksen poistaminen käytöstä vähentää käytettävän materiaalin määrää."
  5433. #~ msgctxt "z_seam_corner description"
  5434. #~ 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."
  5435. #~ msgstr "Määritä, vaikuttavatko mallin ulkolinjan kulmat sauman sijaintiin. Ei mitään tarkoittaa, että kulmilla ei ole vaikutusta sauman sijaintiin. Piilota sauma -valinnalla sauman sijainti sisäkulmassa on todennäköisempää. Paljasta sauma -valinnalla sauman sijainti ulkokulmassa on todennäköisempää. Piilota tai paljasta sauma -valinnalla sauman sijainti sisä- tai ulkokulmassa on todennäköisempää."
  5436. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5437. #~ msgid "Cool down speed"
  5438. #~ msgstr "Jäähdytysnopeus"
  5439. #~ msgctxt "wireframe_top_jump description"
  5440. #~ 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."
  5441. #~ msgstr "Tekee pienen solmun nousulinjan yläpäähän, jotta seuraava vaakasuora kerros pystyy paremmin liittymään siihen. Koskee vain rautalankamallin tulostusta."
  5442. #~ msgctxt "sub_div_rad_mult label"
  5443. #~ msgid "Cubic Subdivision Radius"
  5444. #~ msgstr "Kuution alajaon säde"
  5445. #~ msgctxt "wireframe_bottom_delay description"
  5446. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  5447. #~ msgstr "Viive laskuliikkeen jälkeen. Koskee vain rautalankamallin tulostusta."
  5448. #~ msgctxt "wireframe_top_delay description"
  5449. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  5450. #~ msgstr "Viive nousuliikkeen jälkeen, jotta linja voi kovettua. Koskee vain rautalankamallin tulostusta."
  5451. #~ msgctxt "wireframe_flat_delay description"
  5452. #~ 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."
  5453. #~ msgstr "Viive kahden vaakasuoran segmentin välillä. Tämän viiveen käyttöönotto voi parantaa tarttuvuutta edellisiin kerroksiin liitoskohdissa, mutta liian suuret viiveet aiheuttavat riippumista. Koskee vain rautalankamallin tulostusta."
  5454. #~ msgctxt "infill_mesh_order description"
  5455. #~ 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."
  5456. #~ msgstr "Määrittää, mikä täyttöverkko on toisen täyttöverkon täytön sisällä. Korkeamman järjestyksen täyttöverkko muokkaa pienemmän järjestyksen täyttöverkkojen ja normaalien verkkojen täyttöä."
  5457. #~ msgctxt "machine_disallowed_areas label"
  5458. #~ msgid "Disallowed areas"
  5459. #~ msgstr "Kielletyt alueet"
  5460. #~ msgctxt "wireframe_nozzle_clearance description"
  5461. #~ 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."
  5462. #~ msgstr "Suuttimen ja vaakasuoraan laskevien linjojen välinen etäisyys. Suurempi väli aiheuttaa vähemmän jyrkän kulman diagonaalisesti laskeviin linjoihin, mikä puolestaan johtaa harvempiin yläliitoksiin seuraavan kerroksen kanssa. Koskee vain rautalankamallin tulostusta."
  5463. #~ msgctxt "support_interface_line_distance description"
  5464. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  5465. #~ msgstr "Tulostettujen tukiliittymän linjojen välinen etäisyys. Tämä asetus lasketaan tukiliittymän tiheysarvosta, mutta sitä voidaan säätää erikseen."
  5466. #~ msgctxt "support_z_distance description"
  5467. #~ 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 down to a multiple of the layer height."
  5468. #~ msgstr "Tukirakenteen etäisyys tulosteesta ylä-/alasuunnassa. Tämä rako sallii tukien poistamisen mallin tulostuksen jälkeen. Tämä arvo pyöristetään alaspäin kerroksen korkeuden kerrannaiseksi."
  5469. #~ msgctxt "wireframe_up_half_speed description"
  5470. #~ msgid ""
  5471. #~ "Distance of an upward move which is extruded with half speed.\n"
  5472. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  5473. #~ msgstr ""
  5474. #~ "Puolella nopeudella pursotetun nousuliikkeen etäisyys.\n"
  5475. #~ "Se voi parantaa tarttuvuutta edellisiin kerroksiin kuumentamatta materiaalia liikaa kyseisissä kerroksissa. Koskee vain rautalankamallin tulostusta."
  5476. #~ msgctxt "support_xy_distance_overhang description"
  5477. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5478. #~ msgstr "Tukirakenteen etäisyys ulokkeesta X-/Y-suunnissa. "
  5479. #~ msgctxt "wireframe_fall_down description"
  5480. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  5481. #~ msgstr "Etäisyys, jonka materiaali putoaa ylöspäin menevän pursotuksen jälkeen. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta."
  5482. #~ msgctxt "wireframe_drag_along description"
  5483. #~ 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."
  5484. #~ msgstr "Etäisyys, jonka ylöspäin pursotettu materiaali laahautuu diagonaalisen laskevan pursotuksen mukana. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta."
  5485. #~ msgctxt "multiple_mesh_overlap label"
  5486. #~ msgid "Dual Extrusion Overlap"
  5487. #~ msgstr "Kaksoispursotuksen limitys"
  5488. #~ msgctxt "support_enable label"
  5489. #~ msgid "Enable Support"
  5490. #~ msgstr "Ota tuki käyttöön"
  5491. #~ msgctxt "support_enable description"
  5492. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5493. #~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita."
  5494. #~ msgctxt "machine_end_gcode label"
  5495. #~ msgid "End GCode"
  5496. #~ msgstr "Lopetus-GCode"
  5497. #~ msgctxt "speed_equalize_flow_enabled label"
  5498. #~ msgid "Equalize Filament Flow"
  5499. #~ msgstr "Yhdenmukaista tulostuslangan virtaus"
  5500. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5501. #~ msgid "Everywhere"
  5502. #~ msgstr "Kaikkialla"
  5503. #~ msgctxt "expand_lower_skins label"
  5504. #~ msgid "Expand Bottom Skins Into Infill"
  5505. #~ msgstr "Alimpien pintakalvojen laajennus täyttöalueelle"
  5506. #~ msgctxt "expand_lower_skins label"
  5507. #~ msgid "Expand Lower Skins"
  5508. #~ msgstr "Laajenna alemmat pintakalvot"
  5509. #~ msgctxt "expand_skins_into_infill label"
  5510. #~ msgid "Expand Skins Into Infill"
  5511. #~ msgstr "Laajenna pintakalvot täyttöalueelle"
  5512. #~ msgctxt "expand_upper_skins label"
  5513. #~ msgid "Expand Top Skins Into Infill"
  5514. #~ msgstr "Ylimpien pintakalvojen laajennus täyttöalueelle"
  5515. #~ msgctxt "expand_upper_skins label"
  5516. #~ msgid "Expand Upper Skins"
  5517. #~ msgstr "Laajenna ylemmät pintakalvot"
  5518. #~ msgctxt "expand_lower_skins description"
  5519. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5520. #~ msgstr "Laajenna alemmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne."
  5521. #~ msgctxt "expand_skins_into_infill description"
  5522. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5523. #~ msgstr "Laajenna tasaisten pintojen ylä- ja/tai alapuolen pintakalvot. Oletuksena pintakalvot päättyvät täyttöalueen ympäröivien seinämälinjojen alla, mutta tämä voi aiheuttaa reikiä, kun täyttöalueen tiheys on alhainen. Tämä asetus laajentaa pintakalvot seinämälinjoja pidemmälle niin, että seuraavan kerroksen täyttöalue lepää pintakalvon päällä."
  5524. #~ msgctxt "expand_lower_skins description"
  5525. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5526. #~ msgstr "Laajenna alimmat pintakalvot (alueet, joiden alapuolella on ilmaa) niin, että ylä- ja alapuoliset täyttökerrokset ankkuroivat ne."
  5527. #~ msgctxt "expand_upper_skins description"
  5528. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5529. #~ msgstr "Laajenna ylimmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta."
  5530. #~ msgctxt "expand_upper_skins description"
  5531. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  5532. #~ msgstr "Laajenna ylemmät pintakalvot (alueet, joiden yläpuolella on ilmaa) niin, että ne tukevat yläpuolista täyttöaluetta."
  5533. #~ msgctxt "support_conical_enabled description"
  5534. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5535. #~ msgstr "Kokeellinen ominaisuus: tekee tukialueet pienemmiksi alaosassa verrattuna ulokkeeseen."
  5536. #~ msgctxt "machine_filament_park_distance label"
  5537. #~ msgid "Filament Park Distance"
  5538. #~ msgstr "Tulostuslangan säilytysetäisyys"
  5539. #~ msgctxt "fill_perimeter_gaps label"
  5540. #~ msgid "Fill Gaps Between Walls"
  5541. #~ msgstr "Täytä seinämien väliset raot"
  5542. #~ msgctxt "fill_perimeter_gaps description"
  5543. #~ msgid "Fills the gaps between walls where no walls fit."
  5544. #~ msgstr "Täyttää raot seinämien välissä, kun seinämät eivät ole sopivia."
  5545. #~ msgctxt "wireframe_flow_connection description"
  5546. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  5547. #~ msgstr "Virtauksen kompensointi ylös tai alas mentäessä. Koskee vain rautalankamallin tulostusta."
  5548. #~ msgctxt "wireframe_flow_flat description"
  5549. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  5550. #~ msgstr "Virtauksen kompensointi tulostettaessa latteita linjoja. Koskee vain rautalankamallin tulostusta."
  5551. #~ msgctxt "prime_tower_flow description"
  5552. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5553. #~ msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla."
  5554. #~ msgctxt "wireframe_flow description"
  5555. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  5556. #~ msgstr "Virtauksen kompensointi: Pursotetun materiaalin määrä kerrotaan tällä arvolla. Koskee vain rautalankamallin tulostusta."
  5557. #~ msgctxt "material_guid description"
  5558. #~ msgid "GUID of the material. This is set automatically. "
  5559. #~ msgstr "Materiaalin GUID. Tämä määritetään automaattisesti. "
  5560. #~ msgctxt "gantry_height label"
  5561. #~ msgid "Gantry height"
  5562. #~ msgstr "Korokkeen korkeus"
  5563. #~ msgctxt "machine_end_gcode description"
  5564. #~ msgid ""
  5565. #~ "Gcode commands to be executed at the very end - separated by \n"
  5566. #~ "."
  5567. #~ msgstr ""
  5568. #~ "GCode-komennot, jotka suoritetaan aivan lopussa – eroteltuina merkillä \n"
  5569. #~ "."
  5570. #~ msgctxt "machine_start_gcode description"
  5571. #~ msgid ""
  5572. #~ "Gcode commands to be executed at the very start - separated by \n"
  5573. #~ "."
  5574. #~ msgstr ""
  5575. #~ "GCode-komennot, jotka suoritetaan aivan alussa – eroteltuina merkillä \n"
  5576. #~ "."
  5577. #~ msgctxt "machine_gcode_flavor label"
  5578. #~ msgid "Gcode flavour"
  5579. #~ msgstr "GCode-tyyppi"
  5580. #~ msgctxt "ironing_enabled description"
  5581. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5582. #~ msgstr "Yläpinnan läpikäynti yhden ylimääräisen kerran ilman materiaalin pursotusta. Tämän tarkoitus on sulattaa yläosan muovia enemmän, jolloin saadaan sileämpi pinta."
  5583. #~ msgctxt "machine_heated_bed label"
  5584. #~ msgid "Has heated build plate"
  5585. #~ msgstr "Sisältää lämmitettävän alustan"
  5586. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5587. #~ msgid "Heat up speed"
  5588. #~ msgstr "Lämpenemisnopeus"
  5589. #~ msgctxt "machine_heat_zone_length label"
  5590. #~ msgid "Heat zone length"
  5591. #~ msgstr "Lämpöalueen pituus"
  5592. #~ msgctxt "infill_hollow label"
  5593. #~ msgid "Hollow Out Objects"
  5594. #~ msgstr "Kappaleiden tekeminen ontoiksi"
  5595. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5596. #~ msgid "Ignore Small Z Gaps"
  5597. #~ msgstr "Ohita pienet Z-raot"
  5598. #~ msgctxt "start_layers_at_same_position description"
  5599. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5600. #~ msgstr "Aloita tulostus jokaisessa kerroksessa tulostamalla kappale, joka on lähellä samaa pistettä, jotta uutta kerrosta ei aloiteta tulostamalla kappaletta, johon edellinen kerros päättyi. Näin saadaan aikaan paremmat ulokkeet ja pienet osat, mutta tulostus kestää kauemmin."
  5601. #~ msgctxt "material_bed_temp_prepend label"
  5602. #~ msgid "Include build plate temperature"
  5603. #~ msgstr "Sisällytä alustan lämpötila"
  5604. #~ msgctxt "material_print_temp_prepend label"
  5605. #~ msgid "Include material temperatures"
  5606. #~ msgstr "Sisällytä materiaalilämpötilat"
  5607. #~ msgctxt "infill_mesh_order label"
  5608. #~ msgid "Infill Mesh Order"
  5609. #~ msgstr "Täyttöverkkojärjestys"
  5610. #~ msgctxt "z_offset_layer_0 label"
  5611. #~ msgid "Initial Layer Z Offset"
  5612. #~ msgstr "Alkukerroksen Z-siirtymä"
  5613. #~ msgctxt "wall_x_extruder_nr label"
  5614. #~ msgid "Inner Walls Extruder"
  5615. #~ msgstr "Sisäseinämien suulake"
  5616. #~ msgctxt "machine_center_is_zero label"
  5617. #~ msgid "Is center origin"
  5618. #~ msgstr "On keskikohdassa"
  5619. #~ msgctxt "wireframe_strategy option knot"
  5620. #~ msgid "Knot"
  5621. #~ msgstr "Solmu"
  5622. #~ msgctxt "machine_depth label"
  5623. #~ msgid "Machine depth"
  5624. #~ msgstr "Laitteen syvyys"
  5625. #~ msgctxt "machine_head_with_fans_polygon label"
  5626. #~ msgid "Machine head & Fan polygon"
  5627. #~ msgstr "Laiteen pään ja tuulettimen monikulmio"
  5628. #~ msgctxt "machine_head_polygon label"
  5629. #~ msgid "Machine head polygon"
  5630. #~ msgstr "Laiteen pään monikulmio"
  5631. #~ msgctxt "machine_height label"
  5632. #~ msgid "Machine height"
  5633. #~ msgstr "Laitteen korkeus"
  5634. #~ msgctxt "machine_width label"
  5635. #~ msgid "Machine width"
  5636. #~ msgstr "Laitteen leveys"
  5637. #~ msgctxt "machine_max_feedrate_e label"
  5638. #~ msgid "Maximum Feedrate"
  5639. #~ msgstr "Maksimisyöttönopeus"
  5640. #~ msgctxt "speed_equalize_flow_max label"
  5641. #~ msgid "Maximum Speed for Flow Equalization"
  5642. #~ msgstr "Virtauksen yhdenmukaistamisen maksiminopeus"
  5643. #~ msgctxt "max_feedrate_z_override label"
  5644. #~ msgid "Maximum Z Speed"
  5645. #~ msgstr "Z:n maksiminopeus"
  5646. #~ msgctxt "speed_equalize_flow_max description"
  5647. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5648. #~ msgstr "Tulostuksen maksiminopeus, kun tulostusnopeutta säädetään virtauksen yhdenmukaistamista varten."
  5649. #~ msgctxt "mesh_position_x label"
  5650. #~ msgid "Mesh position x"
  5651. #~ msgstr "Verkon x-sijainti"
  5652. #~ msgctxt "mesh_position_y label"
  5653. #~ msgid "Mesh position y"
  5654. #~ msgstr "Verkon y-sijainti"
  5655. #~ msgctxt "mesh_position_z label"
  5656. #~ msgid "Mesh position z"
  5657. #~ msgstr "Verkon z-sijainti"
  5658. #~ msgctxt "support_minimal_diameter label"
  5659. #~ msgid "Minimum Diameter"
  5660. #~ msgstr "Minimiläpimitta"
  5661. #~ msgctxt "support_minimal_diameter description"
  5662. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5663. #~ msgstr "Erityisellä tukitornilla tuettavan pienen alueen minimiläpimitta X- ja Y-suunnissa."
  5664. #~ msgctxt "retraction_combing option noskin"
  5665. #~ msgid "No Skin"
  5666. #~ msgstr "Ei pintakalvoa"
  5667. #~ msgctxt "meshfix_keep_open_polygons description"
  5668. #~ 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 GCode."
  5669. #~ msgstr "Normaalisti Cura yrittää silmukoida umpeen pieniä reikiä verkosta ja poistaa kerroksesta osat, joissa on isoja reikiä. Tämän vaihtoehdon käyttöönotto pitää ne osat, joita ei voida silmukoida. Tätä tulisi pitää viimeisenä vaihtoehtona, kun millään muulla ei saada aikaan kunnollista GCodea."
  5670. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5671. #~ msgid "Nowhere"
  5672. #~ msgstr "Ei missään"
  5673. #~ msgctxt "machine_nozzle_expansion_angle label"
  5674. #~ msgid "Nozzle angle"
  5675. #~ msgstr "Suuttimen kulma"
  5676. #~ msgctxt "machine_nozzle_head_distance label"
  5677. #~ msgid "Nozzle length"
  5678. #~ msgstr "Suuttimen pituus"
  5679. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5680. #~ msgid "Offset With Extruder"
  5681. #~ msgstr "Suulakkeen siirtymä"
  5682. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5683. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5684. #~ msgstr "Käytä taskuja vain puolessa nelisuuntaisista risteyksistä risti 3D -kuviossa ja vuorottele taskujen sijainnit sellaisten korkeuksien välillä, joissa kuvio koskettaa itseään."
  5685. #~ msgctxt "optimize_wall_printing_order description"
  5686. #~ 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."
  5687. #~ msgstr "Optimoi seinämien tulostusjärjestys takaisinvetojen ja kuljetun etäisyyden vähentämiseksi. Useimmat osat hyötyvät tämän asetuksen käytöstä, mutta joissakin saattaa kestää kauemmin, joten vertaa tulostusajan arvioita optimointia käytettäessä ja ilman sitä."
  5688. #~ msgctxt "outer_inset_first label"
  5689. #~ msgid "Outer Before Inner Walls"
  5690. #~ msgstr "Ulkoseinämät ennen sisäseinämiä"
  5691. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5692. #~ msgid "Outer nozzle diameter"
  5693. #~ msgstr "Suuttimen ulkoläpimitta"
  5694. #~ msgctxt "wireframe_straight_before_down description"
  5695. #~ 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."
  5696. #~ msgstr "Prosenttiluku diagonaalisesti laskevasta linjasta, jota peittää vaakalinjan pätkä. Tämä voi estää nousulinjojen ylimmän kohdan riippumista. Koskee vain rautalankamallin tulostusta."
  5697. #~ msgctxt "prime_tower_purge_volume label"
  5698. #~ msgid "Prime Tower Purge Volume"
  5699. #~ msgstr "Esitäyttötornin poistoainemäärä"
  5700. #~ msgctxt "prime_tower_wall_thickness label"
  5701. #~ msgid "Prime Tower Thickness"
  5702. #~ msgstr "Esitäyttötornin paksuus"
  5703. #~ msgctxt "wireframe_enabled description"
  5704. #~ 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."
  5705. #~ msgstr "Tulostetaan vain ulkopinta harvalla verkkorakenteella eli tulostetaan \"suoraan ilmaan\". Tämä toteutetaan tulostamalla mallin ääriviivat vaakasuoraan tietyin Z-välein, jotka yhdistetään ylöspäin menevillä linjoilla ja alaspäin menevillä diagonaalilinjoilla."
  5706. #~ msgctxt "spaghetti_infill_enabled description"
  5707. #~ 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."
  5708. #~ msgstr "Tulostaa täytön silloin tällöin, niin että tulostuslanka kiertyy sattumanvaraisesti kappaleen sisälle. Tämä lyhentää tulostusaikaa, mutta toimintatapa on melko arvaamaton."
  5709. #~ msgctxt "speed_equalize_flow_enabled description"
  5710. #~ 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."
  5711. #~ msgstr "Normaaleja ohuempien linjojen tulostus nopeammin niin, että pursotetun materiaalin määrä sekunnissa pysyy samana. Mallin ohuet kappaleet saattavat edellyttää asetuksia pienemmällä linjan leveydellä tulostettuja linjoja. Tällä asetuksella hallitaan tällaisten linjojen nopeuden muutoksia."
  5712. #~ msgctxt "outer_inset_first description"
  5713. #~ 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."
  5714. #~ msgstr "Seinämät tulostetaan ulkoa sisäänpäin, kun tämä on käytössä. Asetuksella voidaan auttaa parantamaan X:n ja Y:n dimensiotarkkuutta ABS:n kaltaista korkeaviskoosista muovia käytettäessä. Se voi kuitenkin heikentää ulkopinnan tulostuslaatua etenkin ulokkeissa."
  5715. #~ msgctxt "raft_base_line_spacing label"
  5716. #~ msgid "Raft Line Spacing"
  5717. #~ msgstr "Pohjaristikon linjajako"
  5718. #~ msgctxt "infill_hollow description"
  5719. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5720. #~ msgstr "Poistaa kaikki täytöt, jotta kappaletta voidaan käyttää tukena."
  5721. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5722. #~ msgid "RepRap (Marlin/Sprinter)"
  5723. #~ msgstr "RepRap (Marlin/Sprinter)"
  5724. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5725. #~ msgid "RepRap (Volumetric)"
  5726. #~ msgstr "RepRap (volymetrinen)"
  5727. #~ msgctxt "wireframe_strategy option retract"
  5728. #~ msgid "Retract"
  5729. #~ msgstr "Takaisinveto"
  5730. #~ msgctxt "retraction_enable description"
  5731. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5732. #~ msgstr "Vedä tulostuslanka takaisin, kun suutin liikkuu sellaisen alueen yli, jota ei tulosteta. "
  5733. #~ msgctxt "shell label"
  5734. #~ msgid "Shell"
  5735. #~ msgstr "Kuori"
  5736. #~ msgctxt "machine_show_variants label"
  5737. #~ msgid "Show machine variants"
  5738. #~ msgstr "Näytä laitteen variantit"
  5739. #~ msgctxt "support_skip_some_zags label"
  5740. #~ msgid "Skip Some ZigZags Connections"
  5741. #~ msgstr "Ohita jotkin siksakien yhdistämiset"
  5742. #~ msgctxt "support_zag_skip_count description"
  5743. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5744. #~ msgstr "Ohita yksi jokaisesta N-yhdistämislinjasta, jotta tukirakenne on helpompi rikkoa."
  5745. #~ msgctxt "support_skip_some_zags description"
  5746. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5747. #~ msgstr "Ohita jotkin siksakien yhdistämiset, jotta tukirakenne on helpompi rikkoa."
  5748. #~ msgctxt "smooth_spiralized_contours description"
  5749. #~ 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."
  5750. #~ msgstr "Vähennä Z-sauman näkyvyyttä tasoittamalla kierukoidut ääriviivat (Z-sauman pitäisi olla lähes näkymätön tulosteessa, mutta kerrosnäkymässä sen voi edelleen havaita). Ota huomioon, että tasoittaminen usein sumentaa pinnan pieniä yksityiskohtia."
  5751. #~ msgctxt "spaghetti_flow label"
  5752. #~ msgid "Spaghetti Flow"
  5753. #~ msgstr "Spagettivirtaus"
  5754. #~ msgctxt "spaghetti_infill_enabled label"
  5755. #~ msgid "Spaghetti Infill"
  5756. #~ msgstr "Spagettitäyttö"
  5757. #~ msgctxt "spaghetti_infill_extra_volume label"
  5758. #~ msgid "Spaghetti Infill Extra Volume"
  5759. #~ msgstr "Spagettitäytön ylimääräinen ainemäärä"
  5760. #~ msgctxt "spaghetti_max_height label"
  5761. #~ msgid "Spaghetti Infill Maximum Height"
  5762. #~ msgstr "Spagettitäytön enimmäiskorkeus"
  5763. #~ msgctxt "spaghetti_infill_stepped label"
  5764. #~ msgid "Spaghetti Infill Stepping"
  5765. #~ msgstr "Spagettitäyttö vaiheittain"
  5766. #~ msgctxt "spaghetti_inset label"
  5767. #~ msgid "Spaghetti Inset"
  5768. #~ msgstr "Spagettiliitos"
  5769. #~ msgctxt "spaghetti_max_infill_angle label"
  5770. #~ msgid "Spaghetti Maximum Infill Angle"
  5771. #~ msgstr "Spagettitäytön enimmäiskulma"
  5772. #~ msgctxt "wireframe_printspeed description"
  5773. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  5774. #~ msgstr "Nopeus, jolla suutin liikkuu materiaalia pursottaessaan. Koskee vain rautalankamallin tulostusta."
  5775. #~ msgctxt "wireframe_printspeed_down description"
  5776. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  5777. #~ msgstr "Nopeus, jolla tulostetaan linja diagonaalisesti alaspäin. Koskee vain rautalankamallin tulostusta."
  5778. #~ msgctxt "wireframe_printspeed_up description"
  5779. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  5780. #~ msgstr "Nopeus, jolla tulostetaan linja ylöspäin \"suoraan ilmaan\". Koskee vain rautalankamallin tulostusta."
  5781. #~ msgctxt "wireframe_printspeed_bottom description"
  5782. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  5783. #~ msgstr "Nopeus, jolla tulostetaan ensimmäinen kerros, joka on ainoa alustaa koskettava kerros. Koskee vain rautalankamallin tulostusta."
  5784. #~ msgctxt "wireframe_printspeed_flat description"
  5785. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  5786. #~ msgstr "Nopeus, jolla tulostetaan mallin vaakasuorat ääriviivat. Koskee vain rautalankamallin tulostusta."
  5787. #~ msgctxt "magic_spiralize description"
  5788. #~ 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 used to be called Joris in older versions."
  5789. #~ msgstr "Kierukointi pehmentää ulkoreunan Z-liikettä. Se muodostaa tasaisen Z-lisän koko tulosteelle. Tämä toiminto muuttaa umpinaisen mallin yksiseinäiseksi tulosteeksi, jossa on umpinainen pohja. Vanhemmissa versioissa tätä toimintoa kutsuttiin nimellä Joris."
  5790. #~ msgctxt "machine_start_gcode label"
  5791. #~ msgid "Start GCode"
  5792. #~ msgstr "Aloitus-GCode"
  5793. #~ msgctxt "start_layers_at_same_position label"
  5794. #~ msgid "Start Layers with the Same Part"
  5795. #~ msgstr "Aloita kerrokset samalla osalla"
  5796. #~ msgctxt "wireframe_strategy description"
  5797. #~ 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."
  5798. #~ msgstr "Strategia, jolla varmistetaan, että kaksi peräkkäistä kerrosta liittyy toisiinsa kussakin liitoskohdassa. Takaisinveto antaa nousulinjojen kovettua oikeaan asentoon, mutta voi aiheuttaa tulostuslangan hiertymistä. Solmu voidaan tehdä nousulinjan päähän, jolloin siihen liittyminen helpottuu ja linja jäähtyy, mutta se voi vaatia hitaampia tulostusnopeuksia. Toisena strategiana on kompensoida nousulinjan yläpään riippumista, mutta linjat eivät aina putoa ennustettavalla tavalla."
  5799. #~ msgctxt "support_bottom_height label"
  5800. #~ msgid "Support Bottom Thickness"
  5801. #~ msgstr "Tuen alaosan paksuus"
  5802. #~ msgctxt "support_interface_line_distance label"
  5803. #~ msgid "Support Interface Line Distance"
  5804. #~ msgstr "Tukiliittymän linjaetäisyys"
  5805. #~ msgctxt "infill_pattern option tetrahedral"
  5806. #~ msgid "Tetrahedral"
  5807. #~ msgstr "Nelitaho"
  5808. #~ msgctxt "acceleration_support_interface description"
  5809. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  5810. #~ msgstr "Kiihtyvyys, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla kiihtyvyyksillä voi parantaa ulokkeen laatua."
  5811. #~ msgctxt "infill_overlap description"
  5812. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5813. #~ msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön."
  5814. #~ msgctxt "skin_overlap description"
  5815. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5816. #~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä linjaleveyden prosenttina. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon. Tämä on pintakalvon linjojen ja sisimmän seinämän keskimääräisten linjaleveyksien prosenttiluku."
  5817. #~ msgctxt "skin_overlap description"
  5818. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5819. #~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon."
  5820. #~ msgctxt "skin_overlap_mm description"
  5821. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5822. #~ msgstr "Limityksen määrä pintakalvon ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti pintakalvoon."
  5823. #~ msgctxt "switch_extruder_retraction_amount description"
  5824. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5825. #~ msgstr "Takaisinvedon määrä: 0 tarkoittaa, että takaisinvetoa ei ole lainkaan. Tämän on yleensä oltava sama kuin lämpöalueen pituus."
  5826. #~ msgctxt "wireframe_roof_inset description"
  5827. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  5828. #~ msgstr "Etäisyys, jolla tehdään liitos katon ääriviivalta sisäänpäin. Koskee vain rautalankamallin tulostusta."
  5829. #~ msgctxt "wireframe_roof_drag_along description"
  5830. #~ 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."
  5831. #~ msgstr "Sisäpuolisen linjan päätyosan etäisyys ko. linjan laahautuessa mukana, kun mennään takaisin katon ulommalle ulkolinjalle. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta."
  5832. #~ msgctxt "expand_skins_expand_distance description"
  5833. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5834. #~ msgstr "Pintakalvojen laajennusetäisyys täyttöalueelle. Oletusetäisyys riittää kuromaan umpeen täyttölinjojen väliset raot, ja se estää reikien ilmestymisen pintakalvoon seinämän liitoskohdassa, kun täytön tiheys on alhainen."
  5835. #~ msgctxt "wireframe_roof_fall_down description"
  5836. #~ 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."
  5837. #~ msgstr "Etäisyys, jonka \"suoraan ilmaan\" tulostetut vaakasuorat kattolinjat roikkuvat tulostettaessa. Tämä etäisyys kompensoidaan. Koskee vain rautalankamallin tulostusta."
  5838. #~ msgctxt "z_offset_layer_0 description"
  5839. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5840. #~ msgstr "Suulaketta siirretään ensimmäisen kerroksen normaalista korkeudesta tällä määrällä. Se voi olla positiivinen (nostettu) tai negatiivinen (laskettu). Jotkin tulostuslankatyypit tarttuvat alustaan paremmin, jos suulaketta nostetaan hieman."
  5841. #~ msgctxt "support_interface_extruder_nr description"
  5842. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  5843. #~ msgstr "Tuen kattojen ja alaosien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  5844. #~ msgctxt "support_bottom_stair_step_height description"
  5845. #~ 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."
  5846. #~ msgstr "Mallin päällä olevan porrasmaisen tuen pohjan portaiden korkeus. Matala arvo tekee tuesta vaikeamman poistaa, mutta liian korkeat arvot voivat johtaa epävakaisiin tukirakenteisiin."
  5847. #~ msgctxt "wireframe_height description"
  5848. #~ 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."
  5849. #~ msgstr "Kahden vaakaosan välisen nousulinjan ja laskevan diagonaalilinjan korkeus. Tämä määrää verkkorakenteen kokonaistiheyden. Koskee vain rautalankamallin tulostusta."
  5850. #~ msgctxt "skirt_gap description"
  5851. #~ msgid ""
  5852. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5853. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5854. #~ msgstr ""
  5855. #~ "Vaakasuora etäisyys helman ja tulosteen ensimmäisen kerroksen välillä.\n"
  5856. #~ "Tämä on minimietäisyys; useampia helmalinjoja käytettäessä ne ulottuvat tämän etäisyyden ulkopuolelle."
  5857. #~ msgctxt "spaghetti_max_infill_angle description"
  5858. #~ 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."
  5859. #~ msgstr "Tulosteen sisustan suurin mahdollinen kulma Z-akseliin nähden alueilla, jotka täytetään myöhemmin spagettitäytöllä. Tämän arvon alentaminen johtaa siihen, että useampia mallin vinottaisia osia täytetään jokaisessa kerroksessa."
  5860. #~ msgctxt "support_join_distance description"
  5861. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5862. #~ msgstr "Tukirakenteiden maksimietäisyys toisistaan X-/Y-suunnissa. Kun erilliset rakenteet ovat tätä arvoa lähempänä toisiaan, rakenteet sulautuvat toisiinsa."
  5863. #~ msgctxt "spaghetti_max_height description"
  5864. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5865. #~ msgstr "Yhdistettävän ja yläpuolelta täytettävän sisätilan enimmäiskorkeus."
  5866. #~ msgctxt "jerk_support_interface description"
  5867. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  5868. #~ msgstr "Tuen kattojen ja alaosien tulostuksen nopeuden hetkellinen maksimimuutos."
  5869. #~ msgctxt "max_feedrate_z_override description"
  5870. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5871. #~ msgstr "Maksiminopeus, jolla alustaa liikutetaan. Jos tämä määritetään nollaan, tulostuksessa käytetään laiteohjelmiston oletusasetuksia Z:n maksiminopeudelle."
  5872. #~ msgctxt "mold_width description"
  5873. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5874. #~ msgstr "Muotin ulkoseinän ja mallin ulkoseinän välinen vähimmäisetäisyys."
  5875. #~ msgctxt "spaghetti_inset description"
  5876. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5877. #~ msgstr "Siirtymä seinämistä, joista spagettitäyttö tulostetaan."
  5878. #~ msgctxt "infill_pattern description"
  5879. #~ 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, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5880. #~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, oktetti-, neljänneskuutio- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio-, neljänneskuutio- ja oktettitäytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa."
  5881. #~ msgctxt "infill_pattern description"
  5882. #~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5883. #~ msgstr "Tulostettava täyttömateriaalin kuvio. Linja- ja siksak-täytöt vaihtavat suuntaa kerrosten välillä, mikä vähentää materiaalikustannuksia. Ristikko-, kolmio-, kuutio-, nelitaho- ja samankeskinen-kuviot tulostetaan kokonaisuudessaan kuhunkin kerrokseen. Kuutio- ja nelitaho-täytöt muuttuvat kerroksittain, jotta vahvuus jakautuu tasaisemmin kussakin suunnassa."
  5884. #~ msgctxt "speed_support_interface description"
  5885. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  5886. #~ msgstr "Nopeus, jolla tuen katot ja alaosat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua."
  5887. #~ msgctxt "speed_layer_0 description"
  5888. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5889. #~ msgstr "Alkukerroksen nopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi."
  5890. #~ msgctxt "material_print_temperature description"
  5891. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  5892. #~ msgstr "Tulostuksessa käytettävä lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti."
  5893. #~ msgctxt "material_bed_temperature_layer_0 description"
  5894. #~ msgid "The temperature used for the heated build plate at the first layer."
  5895. #~ msgstr "Lämmitettävän alustan lämpötila ensimmäistä kerrosta tulostettaessa."
  5896. #~ msgctxt "material_bed_temperature description"
  5897. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5898. #~ msgstr "Lämmitettävän alustan lämpötila. Jos tämä on 0, pöytä ei lämpene tätä tulostusta varten."
  5899. #~ msgctxt "material_bed_temperature description"
  5900. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  5901. #~ msgstr "Lämmitettävän alustan lämpötila. Aseta arvoon 0 esilämmittääksesi tulostimen manuaalisesti."
  5902. #~ msgctxt "prime_tower_wall_thickness description"
  5903. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5904. #~ msgstr "Onton esitäyttötornin paksuus. Jos paksuus ylittää puolet esitäyttötornin minimitilavuudesta, tuloksena on tiheä esitäyttötorni."
  5905. #~ msgctxt "wall_thickness description"
  5906. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5907. #~ msgstr "Ulkoseinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän."
  5908. #~ msgctxt "support_bottom_height description"
  5909. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  5910. #~ msgstr "Tuen alaosien paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle."
  5911. #~ msgctxt "machine_gcode_flavor description"
  5912. #~ msgid "The type of gcode to be generated."
  5913. #~ msgstr "Luotavan GCoden tyyppi."
  5914. #~ msgctxt "raft_smoothing description"
  5915. #~ msgid "This setting control 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."
  5916. #~ msgstr "Tällä asetuksella säädetään, kuinka paljon pohjaristikon ulkolinjan sisäkulmia pyöristetään. Sisäpuoliset kulmat pyöristetään puoliympyräksi, jonka säde on yhtä suuri kuin tässä annettu arvo. Asetuksella myös poistetaan pohjaristikon ulkolinjan reiät, jotka ovat pienempiä kuin tällainen ympyrä."
  5917. #~ msgctxt "wireframe_roof_outer_delay description"
  5918. #~ 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."
  5919. #~ msgstr "Katoksi tulevan aukon ulkoreunoihin käytetty aika. Pitemmät ajat varmistavat paremman liitoksen. Koskee vain rautalankamallin tulostusta."
  5920. #~ msgctxt "max_skin_angle_for_expansion description"
  5921. #~ 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."
  5922. #~ msgstr "Kappaleesi ylä- ja/tai alapinnan ylä- ja alapintakalvoja ei laajenneta, jos niiden kulma on suurempi kuin tämä asetus. Tällä vältetään laajentamasta kapeita pintakalvoja, jotka syntyvät, kun mallin pinnalla on lähes pystysuora rinne. 0 °:n kulma on vaakasuora ja 90 °:n kulma on pystysuora."
  5923. #~ msgctxt "relative_extrusion description"
  5924. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output."
  5925. #~ msgstr "Käytä suhteellista pursotusta absoluuttisen pursotuksen sijaan. Suhteellisten E-askelten käyttö helpottaa Gcoden jälkikäsittelyä. Kaikki tulostimet eivät kuitenkaan tue sitä, ja se saattaa aiheuttaa hyvin vähäisiä poikkeamia materiaalin määrässä absoluuttisiin E-askeliin verrattuna. Tästä asetuksesta riippumatta pursotustila on aina absoluuttinen, ennen kuin mitään Gcode-komentosarjaa tuotetaan."
  5926. #~ msgctxt "wireframe_bottom_delay label"
  5927. #~ msgid "WP Bottom Delay"
  5928. #~ msgstr "Rautalankatulostuksen viive alhaalla"
  5929. #~ msgctxt "wireframe_printspeed_bottom label"
  5930. #~ msgid "WP Bottom Printing Speed"
  5931. #~ msgstr "Rautalankapohjan tulostusnopeus"
  5932. #~ msgctxt "wireframe_flow_connection label"
  5933. #~ msgid "WP Connection Flow"
  5934. #~ msgstr "Rautalankatulostuksen liitosvirtaus"
  5935. #~ msgctxt "wireframe_height label"
  5936. #~ msgid "WP Connection Height"
  5937. #~ msgstr "Rautalankatulostuksen liitoskorkeus"
  5938. #~ msgctxt "wireframe_printspeed_down label"
  5939. #~ msgid "WP Downward Printing Speed"
  5940. #~ msgstr "Rautalangan tulostusnopeus alaspäin"
  5941. #~ msgctxt "wireframe_drag_along label"
  5942. #~ msgid "WP Drag Along"
  5943. #~ msgstr "Rautalankatulostuksen laahaus"
  5944. #~ msgctxt "wireframe_up_half_speed label"
  5945. #~ msgid "WP Ease Upward"
  5946. #~ msgstr "Rautalankatulostuksen hidas liike ylöspäin"
  5947. #~ msgctxt "wireframe_fall_down label"
  5948. #~ msgid "WP Fall Down"
  5949. #~ msgstr "Rautalankatulostuksen pudotus"
  5950. #~ msgctxt "wireframe_flat_delay label"
  5951. #~ msgid "WP Flat Delay"
  5952. #~ msgstr "Rautalankatulostuksen lattea viive"
  5953. #~ msgctxt "wireframe_flow_flat label"
  5954. #~ msgid "WP Flat Flow"
  5955. #~ msgstr "Rautalangan lattea virtaus"
  5956. #~ msgctxt "wireframe_flow label"
  5957. #~ msgid "WP Flow"
  5958. #~ msgstr "Rautalankatulostuksen virtaus"
  5959. #~ msgctxt "wireframe_printspeed_flat label"
  5960. #~ msgid "WP Horizontal Printing Speed"
  5961. #~ msgstr "Rautalangan tulostusnopeus vaakasuoraan"
  5962. #~ msgctxt "wireframe_top_jump label"
  5963. #~ msgid "WP Knot Size"
  5964. #~ msgstr "Rautalankatulostuksen solmukoko"
  5965. #~ msgctxt "wireframe_nozzle_clearance label"
  5966. #~ msgid "WP Nozzle Clearance"
  5967. #~ msgstr "Rautalankatulostuksen suutinväli"
  5968. #~ msgctxt "wireframe_roof_drag_along label"
  5969. #~ msgid "WP Roof Drag Along"
  5970. #~ msgstr "Rautalankatulostuksen katon laahaus"
  5971. #~ msgctxt "wireframe_roof_fall_down label"
  5972. #~ msgid "WP Roof Fall Down"
  5973. #~ msgstr "Rautalankatulostuksen katon pudotus"
  5974. #~ msgctxt "wireframe_roof_inset label"
  5975. #~ msgid "WP Roof Inset Distance"
  5976. #~ msgstr "Rautalankatulostuksen katon liitosetäisyys"
  5977. #~ msgctxt "wireframe_roof_outer_delay label"
  5978. #~ msgid "WP Roof Outer Delay"
  5979. #~ msgstr "Rautalankatulostuksen katon ulompi viive"
  5980. #~ msgctxt "wireframe_printspeed label"
  5981. #~ msgid "WP Speed"
  5982. #~ msgstr "Rautalankatulostuksen nopeus"
  5983. #~ msgctxt "wireframe_straight_before_down label"
  5984. #~ msgid "WP Straighten Downward Lines"
  5985. #~ msgstr "Rautalankatulostuksen laskulinjojen suoristus"
  5986. #~ msgctxt "wireframe_strategy label"
  5987. #~ msgid "WP Strategy"
  5988. #~ msgstr "Rautalankatulostuksen strategia"
  5989. #~ msgctxt "wireframe_top_delay label"
  5990. #~ msgid "WP Top Delay"
  5991. #~ msgstr "Rautalankatulostuksen viive ylhäällä"
  5992. #~ msgctxt "wireframe_printspeed_up label"
  5993. #~ msgid "WP Upward Printing Speed"
  5994. #~ msgstr "Rautalangan tulostusnopeus ylöspäin"
  5995. #~ msgctxt "material_bed_temp_wait label"
  5996. #~ msgid "Wait for build plate heatup"
  5997. #~ msgstr "Odota alustan lämpenemistä"
  5998. #~ msgctxt "material_print_temp_wait label"
  5999. #~ msgid "Wait for nozzle heatup"
  6000. #~ msgstr "Odota suuttimen lämpenemistä"
  6001. #~ msgctxt "support_interface_skip_height description"
  6002. #~ msgid "When checking where there's model above 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."
  6003. #~ msgstr "Kun tarkistat mallia tuen päällä, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä."
  6004. #~ msgctxt "z_offset_taper_layers description"
  6005. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  6006. #~ msgstr "Kun tämä ei ole nolla, Z-siirtymä pienenee nollaan niin monen kerroksen matkalla. Kun arvo on 0, Z-siirtymä pysyy vakiona kaikille tulostuksen kerroksille."
  6007. #~ msgctxt "skin_no_small_gaps_heuristic description"
  6008. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  6009. #~ msgstr "Kun mallissa on pieniä pystyrakoja, ylä- ja alapuolen pintakalvon tekemiseen näihin kapeisiin paikkoihin voi kulua noin 5 % ylimääräistä laskenta-aikaa. Poista siinä tapauksessa tämä asetus käytöstä."
  6010. #~ msgctxt "print_sequence description"
  6011. #~ 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."
  6012. #~ msgstr "Tulostetaanko kaikki mallit kerros kerrallaan vai odotetaanko yhden mallin valmistumista ennen kuin siirrytään seuraavaan. Yksi kerrallaan -tila on mahdollinen vain silloin, jos kaikki mallit ovat erillään siten, että koko tulostuspää voi siirtyä niiden välillä ja kaikki mallit ovat suuttimen ja X-/Y-akselien välistä etäisyyttä alempana."
  6013. #~ msgctxt "spaghetti_infill_stepped description"
  6014. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  6015. #~ msgstr "Spagettitäytön tulostus vaiheittain vai kaiken täyttötulostuslangan pursotus tulostuksen lopussa."
  6016. #~ msgctxt "support_interface_line_width description"
  6017. #~ msgid "Width of a single support interface line."
  6018. #~ msgstr "Yhden tukiliittymän linjan leveys."
  6019. #~ msgctxt "dual_pre_wipe label"
  6020. #~ msgid "Wipe Nozzle After Switch"
  6021. #~ msgstr "Pyyhi suutin vaihdon jälkeen"
  6022. #~ msgctxt "wireframe_enabled label"
  6023. #~ msgid "Wire Printing"
  6024. #~ msgstr "Rautalankatulostus"
  6025. #~ msgctxt "z_offset_taper_layers label"
  6026. #~ msgid "Z Offset Taper Layers"
  6027. #~ msgstr "Z-siirtymän kapenevat kerrokset"
  6028. #~ msgctxt "support_zag_skip_count label"
  6029. #~ msgid "ZigZag Connection Skip Count"
  6030. #~ msgstr "Siksakien yhdistämisten ohitusten määrä"
  6031. #~ msgctxt "blackmagic description"
  6032. #~ msgid "category_blackmagic"
  6033. #~ msgstr "category_blackmagic"
  6034. #~ msgctxt "meshfix description"
  6035. #~ msgid "category_fixes"
  6036. #~ msgstr "category_fixes"
  6037. #~ msgctxt "experimental description"
  6038. #~ msgid "experimental!"
  6039. #~ msgstr "kokeellinen!"