fdmprinter.def.json.po 305 KB

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