fdmprinter.def.json.po 236 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731
  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: 2024-03-12 15:10+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. msgctxt "prime_tower_mode description"
  19. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  20. msgstr ""
  21. msgctxt "brim_inside_margin description"
  22. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  23. msgstr ""
  24. msgctxt "ironing_inset description"
  25. 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."
  26. msgstr "Etäisyys mallin reunoihin. Silitys verkon reunoihin saakka voi johtaa rosoiseen reunaan tulosteessa."
  27. msgctxt "material_no_load_move_factor description"
  28. 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."
  29. msgstr ""
  30. msgctxt "roofing_angles description"
  31. 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)."
  32. 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)."
  33. msgctxt "skin_angles description"
  34. 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)."
  35. 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)."
  36. msgctxt "support_infill_angles description"
  37. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  38. msgstr ""
  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. msgctxt "support_interface_angles description"
  43. 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)."
  44. msgstr ""
  45. msgctxt "support_roof_angles description"
  46. 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)."
  47. msgstr ""
  48. msgctxt "infill_angles description"
  49. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  50. 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)."
  51. msgctxt "nozzle_disallowed_areas description"
  52. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  53. msgstr "Monikulmioluettelo, jossa on alueet, joihin suutin ei saa siirtyä."
  54. msgctxt "machine_disallowed_areas description"
  55. msgid "A list of polygons with areas the print head is not allowed to enter."
  56. msgstr "Monikulmioluettelo, jossa on alueet, joihin tulostuspää ei saa siirtyä."
  57. msgctxt "support_tree_branch_reach_limit description"
  58. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  59. msgstr ""
  60. msgctxt "extruder_prime_pos_abs label"
  61. msgid "Absolute Extruder Prime Position"
  62. msgstr "Absoluuttinen suulakkeen esitäytön sijainti"
  63. msgctxt "adaptive_layer_height_variation label"
  64. msgid "Adaptive Layers Maximum Variation"
  65. msgstr ""
  66. msgctxt "adaptive_layer_height_threshold label"
  67. msgid "Adaptive Layers Topography Size"
  68. msgstr ""
  69. msgctxt "adaptive_layer_height_variation_step label"
  70. msgid "Adaptive Layers Variation Step Size"
  71. msgstr ""
  72. msgctxt "adaptive_layer_height_enabled description"
  73. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  74. msgstr ""
  75. msgctxt "infill_wall_line_count description"
  76. msgid ""
  77. "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"
  78. "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."
  79. msgstr ""
  80. msgctxt "platform_adhesion description"
  81. msgid "Adhesion"
  82. msgstr "Tarttuvuus"
  83. msgctxt "material_adhesion_tendency label"
  84. msgid "Adhesion Tendency"
  85. msgstr ""
  86. msgctxt "skin_overlap description"
  87. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  88. msgstr ""
  89. msgctxt "skin_overlap_mm description"
  90. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  91. msgstr ""
  92. msgctxt "infill_sparse_density description"
  93. msgid "Adjusts the density of infill of the print."
  94. msgstr "Säätää tulostuksen täytön tiheyttä."
  95. msgctxt "support_interface_density description"
  96. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  97. msgstr "Säätää tukirakenteen kattojen ja lattioiden tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  98. msgctxt "support_tree_top_rate description"
  99. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  100. msgstr ""
  101. msgctxt "support_infill_rate description"
  102. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  103. msgstr "Säätää tukirakenteen tiheyttä. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  104. msgctxt "material_diameter description"
  105. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  106. msgstr "Säätää käytetyn tulostuslangan halkaisijaa. Määritä tämä arvo vastaamaan käytetyn tulostuslangan halkaisijaa."
  107. msgctxt "support_type description"
  108. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  109. msgstr "Säädä tukirakenteiden sijoittelua. Sijoituspaikka voidaan asettaa alustaa koskettavaksi tai kaikkialle. Kaikkialla-asetuksella tukirakenteet tulostetaan myös malliin."
  110. msgctxt "prime_tower_wipe_enabled description"
  111. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  112. msgstr "Kun esitäyttötorni on tulostettu yhdellä suuttimella, pyyhi toisesta suuttimesta tihkunut materiaali pois esitäyttötornissa."
  113. msgctxt "retraction_hop_after_extruder_switch description"
  114. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  115. msgstr "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."
  116. msgctxt "retraction_combing option all"
  117. msgid "All"
  118. msgstr "Kaikki"
  119. msgctxt "print_sequence option all_at_once"
  120. msgid "All at Once"
  121. msgstr "Kaikki kerralla"
  122. msgctxt "resolution description"
  123. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  124. msgstr "Kaikki tulostuksen resoluutioon vaikuttavat asetukset. Näillä asetuksilla on suuri vaikutus laatuun (ja tulostusaikaan)."
  125. msgctxt "user_defined_print_order_enabled description"
  126. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  127. msgstr ""
  128. msgctxt "alternate_extra_perimeter label"
  129. msgid "Alternate Extra Wall"
  130. msgstr "Vuoroittainen lisäseinämä"
  131. msgctxt "alternate_carve_order label"
  132. msgid "Alternate Mesh Removal"
  133. msgstr "Vuoroittainen verkon poisto"
  134. msgctxt "material_alternate_walls label"
  135. msgid "Alternate Wall Directions"
  136. msgstr ""
  137. msgctxt "material_alternate_walls description"
  138. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  139. msgstr ""
  140. msgctxt "machine_buildplate_type option aluminum"
  141. msgid "Aluminum"
  142. msgstr ""
  143. msgctxt "machine_always_write_active_tool label"
  144. msgid "Always Write Active Tool"
  145. msgstr ""
  146. msgctxt "travel_retract_before_outer_wall description"
  147. msgid "Always retract when moving to start an outer wall."
  148. msgstr "Vedä aina takaisin, kun siirrytään ulkoseinämän aloittamista varten."
  149. msgctxt "xy_offset description"
  150. 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."
  151. msgstr "Kaikkia monikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla kompensoidaan liian suuria aukkoja ja negatiivisilla arvoilla kompensoidaan liian pieniä aukkoja."
  152. msgctxt "xy_offset_layer_0 description"
  153. 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\"."
  154. msgstr "Kaikkia monikulmioita ensimmäisessä kerroksessa koskeva siirtymien määrä. Negatiivisella arvolla kompensoidaan ensimmäisen kerroksen litistymistä, joka tunnetaan \"elefantin jalkana\"."
  155. msgctxt "support_offset description"
  156. 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."
  157. msgstr "Kaikkia tukimonikulmioita kussakin kerroksessa koskeva siirtymien määrä. Positiivisilla arvoilla tasoitetaan tukialueita ja saadaan aikaan vankempi tuki."
  158. msgctxt "support_bottom_offset description"
  159. msgid "Amount of offset applied to the floors of the support."
  160. msgstr ""
  161. msgctxt "support_roof_offset description"
  162. msgid "Amount of offset applied to the roofs of the support."
  163. msgstr ""
  164. msgctxt "support_interface_offset description"
  165. msgid "Amount of offset applied to the support interface polygons."
  166. msgstr ""
  167. msgctxt "wipe_retraction_amount description"
  168. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  169. msgstr ""
  170. msgctxt "sub_div_rad_add description"
  171. 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."
  172. 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ä."
  173. msgctxt "anti_overhang_mesh label"
  174. msgid "Anti Overhang Mesh"
  175. msgstr "Verkko ulokkeiden estoon"
  176. msgctxt "material_anti_ooze_retracted_position label"
  177. msgid "Anti-ooze Retracted Position"
  178. msgstr ""
  179. msgctxt "material_anti_ooze_retraction_speed label"
  180. msgid "Anti-ooze Retraction Speed"
  181. msgstr ""
  182. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  183. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  184. msgstr ""
  185. msgctxt "interlocking_enable description"
  186. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  187. msgstr ""
  188. msgctxt "travel_avoid_other_parts label"
  189. msgid "Avoid Printed Parts When Traveling"
  190. msgstr "Vältä tulostettuja osia siirtoliikkeen yhteydessä"
  191. msgctxt "travel_avoid_supports label"
  192. msgid "Avoid Supports When Traveling"
  193. msgstr ""
  194. msgctxt "z_seam_position option back"
  195. msgid "Back"
  196. msgstr ""
  197. msgctxt "z_seam_position option backleft"
  198. msgid "Back Left"
  199. msgstr ""
  200. msgctxt "z_seam_position option backright"
  201. msgid "Back Right"
  202. msgstr ""
  203. msgctxt "machine_gcode_flavor option BFB"
  204. msgid "Bits from Bytes"
  205. msgstr "Bits from Bytes"
  206. msgctxt "magic_mesh_surface_mode option both"
  207. msgid "Both"
  208. msgstr "Molemmat"
  209. msgctxt "support_interface_priority option nothing"
  210. msgid "Both overlap"
  211. msgstr ""
  212. msgctxt "bottom_layers label"
  213. msgid "Bottom Layers"
  214. msgstr "Alakerrokset"
  215. msgctxt "top_bottom_pattern_0 label"
  216. msgid "Bottom Pattern Initial Layer"
  217. msgstr "Alaosan kuvio, alkukerros"
  218. msgctxt "bottom_skin_expand_distance label"
  219. msgid "Bottom Skin Expand Distance"
  220. msgstr "Alapintakalvon laajennuksen etäisyys"
  221. msgctxt "bottom_skin_preshrink label"
  222. msgid "Bottom Skin Removal Width"
  223. msgstr "Alapintakalvon poistoleveys"
  224. msgctxt "bottom_thickness label"
  225. msgid "Bottom Thickness"
  226. msgstr "Alaosan paksuus"
  227. msgctxt "support_tree_top_rate label"
  228. msgid "Branch Density"
  229. msgstr ""
  230. msgctxt "support_tree_branch_diameter label"
  231. msgid "Branch Diameter"
  232. msgstr ""
  233. msgctxt "support_tree_branch_diameter_angle label"
  234. msgid "Branch Diameter Angle"
  235. msgstr ""
  236. msgctxt "material_break_preparation_retracted_position label"
  237. msgid "Break Preparation Retracted Position"
  238. msgstr ""
  239. msgctxt "material_break_preparation_speed label"
  240. msgid "Break Preparation Retraction Speed"
  241. msgstr ""
  242. msgctxt "material_break_preparation_temperature label"
  243. msgid "Break Preparation Temperature"
  244. msgstr ""
  245. msgctxt "material_break_retracted_position label"
  246. msgid "Break Retracted Position"
  247. msgstr ""
  248. msgctxt "material_break_speed label"
  249. msgid "Break Retraction Speed"
  250. msgstr ""
  251. msgctxt "material_break_temperature label"
  252. msgid "Break Temperature"
  253. msgstr ""
  254. msgctxt "support_skip_some_zags label"
  255. msgid "Break Up Support In Chunks"
  256. msgstr "Riko tuki lohkoihin"
  257. msgctxt "bridge_fan_speed label"
  258. msgid "Bridge Fan Speed"
  259. msgstr ""
  260. msgctxt "bridge_enable_more_layers label"
  261. msgid "Bridge Has Multiple Layers"
  262. msgstr ""
  263. msgctxt "bridge_skin_density_2 label"
  264. msgid "Bridge Second Skin Density"
  265. msgstr ""
  266. msgctxt "bridge_fan_speed_2 label"
  267. msgid "Bridge Second Skin Fan Speed"
  268. msgstr ""
  269. msgctxt "bridge_skin_material_flow_2 label"
  270. msgid "Bridge Second Skin Flow"
  271. msgstr ""
  272. msgctxt "bridge_skin_speed_2 label"
  273. msgid "Bridge Second Skin Speed"
  274. msgstr ""
  275. msgctxt "bridge_skin_density label"
  276. msgid "Bridge Skin Density"
  277. msgstr ""
  278. msgctxt "bridge_skin_material_flow label"
  279. msgid "Bridge Skin Flow"
  280. msgstr ""
  281. msgctxt "bridge_skin_speed label"
  282. msgid "Bridge Skin Speed"
  283. msgstr ""
  284. msgctxt "bridge_skin_support_threshold label"
  285. msgid "Bridge Skin Support Threshold"
  286. msgstr ""
  287. msgctxt "bridge_sparse_infill_max_density label"
  288. msgid "Bridge Sparse Infill Max Density"
  289. msgstr ""
  290. msgctxt "bridge_skin_density_3 label"
  291. msgid "Bridge Third Skin Density"
  292. msgstr ""
  293. msgctxt "bridge_fan_speed_3 label"
  294. msgid "Bridge Third Skin Fan Speed"
  295. msgstr ""
  296. msgctxt "bridge_skin_material_flow_3 label"
  297. msgid "Bridge Third Skin Flow"
  298. msgstr ""
  299. msgctxt "bridge_skin_speed_3 label"
  300. msgid "Bridge Third Skin Speed"
  301. msgstr ""
  302. msgctxt "bridge_wall_coast label"
  303. msgid "Bridge Wall Coasting"
  304. msgstr ""
  305. msgctxt "bridge_wall_material_flow label"
  306. msgid "Bridge Wall Flow"
  307. msgstr ""
  308. msgctxt "bridge_wall_speed label"
  309. msgid "Bridge Wall Speed"
  310. msgstr ""
  311. msgctxt "adhesion_type option brim"
  312. msgid "Brim"
  313. msgstr "Reunus"
  314. msgctxt "brim_inside_margin label"
  315. msgid "Brim Avoid Margin"
  316. msgstr ""
  317. msgctxt "brim_gap label"
  318. msgid "Brim Distance"
  319. msgstr ""
  320. msgctxt "brim_line_count label"
  321. msgid "Brim Line Count"
  322. msgstr "Reunuksen linjaluku"
  323. msgctxt "brim_location label"
  324. msgid "Brim Location"
  325. msgstr ""
  326. msgctxt "brim_replaces_support label"
  327. msgid "Brim Replaces Support"
  328. msgstr ""
  329. msgctxt "brim_width label"
  330. msgid "Brim Width"
  331. msgstr "Reunuksen leveys"
  332. msgctxt "platform_adhesion label"
  333. msgid "Build Plate Adhesion"
  334. msgstr "Alustan tarttuvuus"
  335. msgctxt "adhesion_extruder_nr label"
  336. msgid "Build Plate Adhesion Extruder"
  337. msgstr "Alustan tarttuvuuden suulake"
  338. msgctxt "adhesion_type label"
  339. msgid "Build Plate Adhesion Type"
  340. msgstr "Alustan tarttuvuustyyppi"
  341. msgctxt "machine_buildplate_type label"
  342. msgid "Build Plate Material"
  343. msgstr ""
  344. msgctxt "machine_shape label"
  345. msgid "Build Plate Shape"
  346. msgstr "Alustan muoto"
  347. msgctxt "material_bed_temperature label"
  348. msgid "Build Plate Temperature"
  349. msgstr "Alustan lämpötila"
  350. msgctxt "material_bed_temperature_layer_0 label"
  351. msgid "Build Plate Temperature Initial Layer"
  352. msgstr "Alustan lämpötila (alkukerros)"
  353. msgctxt "build_volume_temperature label"
  354. msgid "Build Volume Temperature"
  355. msgstr ""
  356. msgctxt "bv_temp_anomaly_limit label"
  357. msgid "Build Volume temperature Limit"
  358. msgstr ""
  359. msgctxt "bv_temp_warn_limit label"
  360. msgid "Build Volume temperature Warning"
  361. msgstr ""
  362. msgctxt "prime_tower_brim_enable description"
  363. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  364. msgstr ""
  365. msgctxt "center_object label"
  366. msgid "Center Object"
  367. msgstr ""
  368. msgctxt "conical_overhang_enabled description"
  369. 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."
  370. 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."
  371. msgctxt "support_structure description"
  372. 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."
  373. msgstr ""
  374. msgctxt "coasting_speed label"
  375. msgid "Coasting Speed"
  376. msgstr "Vapaaliukunopeus"
  377. msgctxt "coasting_volume label"
  378. msgid "Coasting Volume"
  379. msgstr "Vapaaliu'un ainemäärä"
  380. msgctxt "coasting_enable description"
  381. 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."
  382. msgstr "Vapaaliu'ulla siirtoreitti korvaa pursotusreitin viimeisen osan. Tihkuvalla aineella tulostetaan pursotusreitin viimeinen osuus rihmoittumisen vähentämiseksi."
  383. msgctxt "retraction_combing label"
  384. msgid "Combing Mode"
  385. msgstr "Pyyhkäisytila"
  386. msgctxt "retraction_combing description"
  387. 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."
  388. msgstr ""
  389. msgctxt "command_line_settings label"
  390. msgid "Command Line Settings"
  391. msgstr "Komentorivin asetukset"
  392. msgctxt "infill_pattern option concentric"
  393. msgid "Concentric"
  394. msgstr "Samankeskinen"
  395. msgctxt "ironing_pattern option concentric"
  396. msgid "Concentric"
  397. msgstr "Samankeskinen"
  398. msgctxt "roofing_pattern option concentric"
  399. msgid "Concentric"
  400. msgstr "Samankeskinen"
  401. msgctxt "support_bottom_pattern option concentric"
  402. msgid "Concentric"
  403. msgstr "Samankeskinen"
  404. msgctxt "support_interface_pattern option concentric"
  405. msgid "Concentric"
  406. msgstr "Samankeskinen"
  407. msgctxt "support_pattern option concentric"
  408. msgid "Concentric"
  409. msgstr "Samankeskinen"
  410. msgctxt "support_roof_pattern option concentric"
  411. msgid "Concentric"
  412. msgstr "Samankeskinen"
  413. msgctxt "top_bottom_pattern option concentric"
  414. msgid "Concentric"
  415. msgstr "Samankeskinen"
  416. msgctxt "top_bottom_pattern_0 option concentric"
  417. msgid "Concentric"
  418. msgstr "Samankeskinen"
  419. msgctxt "support_conical_angle label"
  420. msgid "Conical Support Angle"
  421. msgstr "Kartiomaisen tuen kulma"
  422. msgctxt "support_conical_min_width label"
  423. msgid "Conical Support Minimum Width"
  424. msgstr "Kartioimaisen tuen minimileveys"
  425. msgctxt "zig_zaggify_infill label"
  426. msgid "Connect Infill Lines"
  427. msgstr "Yhdistä täyttölinjat"
  428. msgctxt "connect_infill_polygons label"
  429. msgid "Connect Infill Polygons"
  430. msgstr ""
  431. msgctxt "zig_zaggify_support label"
  432. msgid "Connect Support Lines"
  433. msgstr ""
  434. msgctxt "support_connect_zigzags label"
  435. msgid "Connect Support ZigZags"
  436. msgstr "Yhdistä tuki-siksakit"
  437. msgctxt "connect_skin_polygons label"
  438. msgid "Connect Top/Bottom Polygons"
  439. msgstr ""
  440. msgctxt "connect_infill_polygons description"
  441. 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."
  442. msgstr ""
  443. msgctxt "support_connect_zigzags description"
  444. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  445. msgstr "Yhdistä siksakit. Tämä lisää siksak-tukirakenteen lujuutta."
  446. msgctxt "zig_zaggify_support description"
  447. 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."
  448. msgstr ""
  449. msgctxt "zig_zaggify_infill description"
  450. 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."
  451. msgstr ""
  452. msgctxt "connect_skin_polygons description"
  453. 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."
  454. msgstr ""
  455. msgctxt "z_seam_corner description"
  456. 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."
  457. msgstr ""
  458. msgctxt "infill_multiplier description"
  459. 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."
  460. msgstr ""
  461. msgctxt "machine_nozzle_cool_down_speed label"
  462. msgid "Cool Down Speed"
  463. msgstr ""
  464. msgctxt "cooling description"
  465. msgid "Cooling"
  466. msgstr "Jäähdytys"
  467. msgctxt "cooling label"
  468. msgid "Cooling"
  469. msgstr "Jäähdytys"
  470. msgctxt "infill_pattern option cross"
  471. msgid "Cross"
  472. msgstr "Risti"
  473. msgctxt "support_pattern option cross"
  474. msgid "Cross"
  475. msgstr "Risti"
  476. msgctxt "infill_pattern option cross_3d"
  477. msgid "Cross 3D"
  478. msgstr "Risti 3D"
  479. msgctxt "cross_infill_pocket_size label"
  480. msgid "Cross 3D Pocket Size"
  481. msgstr "Risti 3D:n taskujen koko"
  482. msgctxt "cross_support_density_image label"
  483. msgid "Cross Fill Density Image for Support"
  484. msgstr ""
  485. msgctxt "cross_infill_density_image label"
  486. msgid "Cross Infill Density Image"
  487. msgstr ""
  488. msgctxt "material_crystallinity label"
  489. msgid "Crystalline Material"
  490. msgstr ""
  491. msgctxt "infill_pattern option cubic"
  492. msgid "Cubic"
  493. msgstr "Kuutio"
  494. msgctxt "infill_pattern option cubicsubdiv"
  495. msgid "Cubic Subdivision"
  496. msgstr "Kuution alajako"
  497. msgctxt "sub_div_rad_add label"
  498. msgid "Cubic Subdivision Shell"
  499. msgstr "Kuution alajakokuori"
  500. msgctxt "cutting_mesh label"
  501. msgid "Cutting Mesh"
  502. msgstr "Leikkaava verkko"
  503. msgctxt "material_flow_temp_graph description"
  504. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  505. msgstr "Tiedot, jotka yhdistävät materiaalivirran (mm3 sekunnissa) lämpötilaan (celsiusastetta)."
  506. msgctxt "machine_acceleration label"
  507. msgid "Default Acceleration"
  508. msgstr "Oletuskiihtyvyys"
  509. msgctxt "default_material_bed_temperature label"
  510. msgid "Default Build Plate Temperature"
  511. msgstr ""
  512. msgctxt "machine_max_jerk_e label"
  513. msgid "Default Filament Jerk"
  514. msgstr "Oletusarvoinen tulostuslangan nykäisy"
  515. msgctxt "default_material_print_temperature label"
  516. msgid "Default Printing Temperature"
  517. msgstr "Oletustulostuslämpötila"
  518. msgctxt "machine_max_jerk_xy label"
  519. msgid "Default X-Y Jerk"
  520. msgstr "Oletusarvoinen X-Y-nykäisy"
  521. msgctxt "machine_max_jerk_z label"
  522. msgid "Default Z Jerk"
  523. msgstr "Oletusarvoinen Z-nykäisy"
  524. msgctxt "machine_max_jerk_xy description"
  525. msgid "Default jerk for movement in the horizontal plane."
  526. msgstr "Vaakatasoisen liikkeen oletusnykäisy."
  527. msgctxt "machine_max_jerk_z description"
  528. msgid "Default jerk for the motor of the Z-direction."
  529. msgstr "Z-suunnan moottorin oletusnykäisy."
  530. msgctxt "machine_max_jerk_e description"
  531. msgid "Default jerk for the motor of the filament."
  532. msgstr "Tulostuslangan moottorin oletusnykäisy."
  533. msgctxt "bridge_settings_enabled description"
  534. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  535. msgstr ""
  536. msgctxt "inset_direction description"
  537. 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."
  538. msgstr ""
  539. msgctxt "infill_mesh_order description"
  540. 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."
  541. msgstr ""
  542. msgctxt "lightning_infill_support_angle description"
  543. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  544. msgstr ""
  545. msgctxt "lightning_infill_overhang_angle description"
  546. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  547. msgstr ""
  548. msgctxt "material_diameter label"
  549. msgid "Diameter"
  550. msgstr "Läpimitta"
  551. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  552. msgid "Diameter Increase To Model"
  553. msgstr ""
  554. msgctxt "support_tree_bp_diameter description"
  555. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  556. msgstr ""
  557. msgctxt "adhesion_type description"
  558. 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."
  559. 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."
  560. msgctxt "machine_disallowed_areas label"
  561. msgid "Disallowed Areas"
  562. msgstr ""
  563. msgctxt "infill_line_distance description"
  564. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  565. msgstr "Etäisyys tulostettujen täyttölinjojen välillä. Tämä asetus lasketaan täytön tiheydestä ja täyttölinjan leveydestä."
  566. msgctxt "support_initial_layer_line_distance description"
  567. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  568. msgstr ""
  569. msgctxt "support_bottom_line_distance description"
  570. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  571. msgstr "Tulostettujen tukilattialinjojen välinen etäisyys. Tämä asetus lasketaan tukilattian tiheysarvosta, mutta sitä voidaan säätää erikseen."
  572. msgctxt "support_roof_line_distance description"
  573. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  574. msgstr "Tulostettujen tukikattolinjojen välinen etäisyys. Tämä asetus lasketaan tukikaton tiheysarvosta, mutta sitä voidaan säätää erikseen."
  575. msgctxt "support_line_distance description"
  576. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  577. msgstr "Tulostettujen tukirakenteiden linjojen välinen etäisyys. Tämä asetus lasketaan tuen tiheyden perusteella."
  578. msgctxt "support_bottom_distance description"
  579. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  580. msgstr ""
  581. msgctxt "support_top_distance description"
  582. msgid "Distance from the top of the support to the print."
  583. msgstr "Etäisyys tuen yläosasta tulosteeseen."
  584. msgctxt "support_z_distance description"
  585. 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. The topmost support layer below the model might be a fraction of regular layers."
  586. msgstr ""
  587. msgctxt "infill_wipe_dist description"
  588. 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."
  589. 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."
  590. msgctxt "wall_0_wipe_dist description"
  591. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  592. msgstr "Siirtoliikkeen etäisyys ulkoseinämän jälkeen Z-sauman piilottamiseksi paremmin."
  593. msgctxt "draft_shield_dist description"
  594. msgid "Distance of the draft shield from the print, in the X/Y directions."
  595. msgstr "Vetosuojuksen etäisyys tulosteesta X-/Y-suunnissa."
  596. msgctxt "ooze_shield_dist description"
  597. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  598. msgstr "Tihkusuojuksen etäisyys tulosteesta X-/Y-suunnissa."
  599. msgctxt "support_xy_distance_overhang description"
  600. msgid "Distance of the support structure from the overhang in the X/Y directions."
  601. msgstr ""
  602. msgctxt "support_xy_distance description"
  603. msgid "Distance of the support structure from the print in the X/Y directions."
  604. msgstr "Tukirakenteen etäisyys tulosteesta X-/Y-suunnissa."
  605. msgctxt "meshfix_fluid_motion_shift_distance description"
  606. msgid "Distance points are shifted to smooth the path"
  607. msgstr ""
  608. msgctxt "meshfix_fluid_motion_small_distance description"
  609. msgid "Distance points are shifted to smooth the path"
  610. msgstr ""
  611. msgctxt "min_infill_area description"
  612. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  613. msgstr "Älä muodosta tätä pienempiä täyttöalueita (käytä sen sijaan pintakalvoa)."
  614. msgctxt "draft_shield_height label"
  615. msgid "Draft Shield Height"
  616. msgstr "Vetosuojuksen korkeus"
  617. msgctxt "draft_shield_height_limitation label"
  618. msgid "Draft Shield Limitation"
  619. msgstr "Vetosuojuksen rajoitus"
  620. msgctxt "draft_shield_dist label"
  621. msgid "Draft Shield X/Y Distance"
  622. msgstr "Vetosuojuksen X/Y-etäisyys"
  623. msgctxt "support_mesh_drop_down label"
  624. msgid "Drop Down Support Mesh"
  625. msgstr "Tukiverkon pudottaminen alaspäin"
  626. msgctxt "dual label"
  627. msgid "Dual Extrusion"
  628. msgstr "Kaksoispursotus"
  629. msgctxt "machine_shape option elliptic"
  630. msgid "Elliptic"
  631. msgstr "Soikea"
  632. msgctxt "acceleration_enabled label"
  633. msgid "Enable Acceleration Control"
  634. msgstr "Ota kiihtyvyyden hallinta käyttöön"
  635. msgctxt "bridge_settings_enabled label"
  636. msgid "Enable Bridge Settings"
  637. msgstr ""
  638. msgctxt "coasting_enable label"
  639. msgid "Enable Coasting"
  640. msgstr "Ota vapaaliuku käyttöön"
  641. msgctxt "support_conical_enabled label"
  642. msgid "Enable Conical Support"
  643. msgstr "Ota kartiomainen tuki käyttöön"
  644. msgctxt "draft_shield_enabled label"
  645. msgid "Enable Draft Shield"
  646. msgstr "Ota vetosuojus käyttöön"
  647. msgctxt "meshfix_fluid_motion_enabled label"
  648. msgid "Enable Fluid Motion"
  649. msgstr ""
  650. msgctxt "ironing_enabled label"
  651. msgid "Enable Ironing"
  652. msgstr "Ota silitys käyttöön"
  653. msgctxt "jerk_enabled label"
  654. msgid "Enable Jerk Control"
  655. msgstr "Ota nykäisyn hallinta käyttöön"
  656. msgctxt "machine_nozzle_temp_enabled label"
  657. msgid "Enable Nozzle Temperature Control"
  658. msgstr "Ota suuttimen lämpötilan hallinta käyttöön"
  659. msgctxt "ooze_shield_enabled label"
  660. msgid "Enable Ooze Shield"
  661. msgstr "Ota tihkusuojus käyttöön"
  662. msgctxt "prime_blob_enable label"
  663. msgid "Enable Prime Blob"
  664. msgstr "Ota esitäyttöpisara käyttöön"
  665. msgctxt "prime_tower_enable label"
  666. msgid "Enable Prime Tower"
  667. msgstr "Ota esitäyttötorni käyttöön"
  668. msgctxt "cool_fan_enabled label"
  669. msgid "Enable Print Cooling"
  670. msgstr "Ota tulostuksen jäähdytys käyttöön"
  671. msgctxt "ppr_enable label"
  672. msgid "Enable Print Process Reporting"
  673. msgstr ""
  674. msgctxt "retraction_enable label"
  675. msgid "Enable Retraction"
  676. msgstr "Ota takaisinveto käyttöön"
  677. msgctxt "support_brim_enable label"
  678. msgid "Enable Support Brim"
  679. msgstr ""
  680. msgctxt "support_bottom_enable label"
  681. msgid "Enable Support Floor"
  682. msgstr "Ota tukilattia käyttöön"
  683. msgctxt "support_interface_enable label"
  684. msgid "Enable Support Interface"
  685. msgstr "Ota tukiliittymä käyttöön"
  686. msgctxt "support_roof_enable label"
  687. msgid "Enable Support Roof"
  688. msgstr "Ota tukikatto käyttöön"
  689. msgctxt "acceleration_travel_enabled label"
  690. msgid "Enable Travel Acceleration"
  691. msgstr ""
  692. msgctxt "jerk_travel_enabled label"
  693. msgid "Enable Travel Jerk"
  694. msgstr ""
  695. msgctxt "ooze_shield_enabled description"
  696. 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."
  697. 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."
  698. msgctxt "ppr_enable description"
  699. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  700. msgstr ""
  701. msgctxt "small_skin_on_surface description"
  702. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  703. msgstr ""
  704. msgctxt "jerk_enabled description"
  705. 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."
  706. 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."
  707. msgctxt "acceleration_enabled description"
  708. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  709. msgstr "Ottaa tulostuspään kiihtyvyyden säädön käyttöön. Kiihtyvyyksien suurentaminen saattaa vähentää tulostusaikaa tulostuslaadun kustannuksella."
  710. msgctxt "cool_fan_enabled description"
  711. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  712. msgstr "Ottaa tulostuksen jäähdytystuulettimet käyttöön tulostettaessa. Tuulettimet parantavat tulostuslaatua kerroksilla, joilla on lyhyet kerrosajat ja tukisiltoja/ulokkeita."
  713. msgctxt "machine_end_gcode label"
  714. msgid "End G-code"
  715. msgstr ""
  716. msgctxt "material_end_of_filament_purge_length label"
  717. msgid "End of Filament Purge Length"
  718. msgstr ""
  719. msgctxt "material_end_of_filament_purge_speed label"
  720. msgid "End of Filament Purge Speed"
  721. msgstr ""
  722. msgctxt "brim_replaces_support description"
  723. 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."
  724. msgstr ""
  725. msgctxt "brim_location option everywhere"
  726. msgid "Everywhere"
  727. msgstr ""
  728. msgctxt "support_type option everywhere"
  729. msgid "Everywhere"
  730. msgstr "Kaikkialla"
  731. msgctxt "slicing_tolerance option exclusive"
  732. msgid "Exclusive"
  733. msgstr ""
  734. msgctxt "experimental label"
  735. msgid "Experimental"
  736. msgstr "Kokeellinen"
  737. msgctxt "z_seam_corner option z_seam_corner_outer"
  738. msgid "Expose Seam"
  739. msgstr "Paljasta sauma"
  740. msgctxt "meshfix_extensive_stitching label"
  741. msgid "Extensive Stitching"
  742. msgstr "Laaja silmukointi"
  743. msgctxt "meshfix_extensive_stitching description"
  744. 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."
  745. msgstr "Laaja silmukointi yrittää peittää avonaisia reikiä verkosta sulkemalla reiän toisiaan koskettavilla monikulmioilla. Tämä vaihtoehto voi kuluttaa paljon prosessointiaikaa."
  746. msgctxt "infill_wall_line_count label"
  747. msgid "Extra Infill Wall Count"
  748. msgstr ""
  749. msgctxt "skin_outline_count label"
  750. msgid "Extra Skin Wall Count"
  751. msgstr "Pintakalvojen ulkopuolisten lisäseinämien määrä"
  752. msgctxt "switch_extruder_extra_prime_amount description"
  753. msgid "Extra material to prime after nozzle switching."
  754. msgstr ""
  755. msgctxt "extruder_prime_pos_x label"
  756. msgid "Extruder Prime X Position"
  757. msgstr "Suulakkeen esitäytön X-sijainti"
  758. msgctxt "extruder_prime_pos_y label"
  759. msgid "Extruder Prime Y Position"
  760. msgstr "Suulakkeen esitäytön Y-sijainti"
  761. msgctxt "extruder_prime_pos_z label"
  762. msgid "Extruder Prime Z Position"
  763. msgstr "Suulakkeen esitäytön Z-sijainti"
  764. msgctxt "machine_extruders_share_heater label"
  765. msgid "Extruders Share Heater"
  766. msgstr ""
  767. msgctxt "machine_extruders_share_nozzle label"
  768. msgid "Extruders Share Nozzle"
  769. msgstr ""
  770. msgctxt "material_extrusion_cool_down_speed label"
  771. msgid "Extrusion Cool Down Speed Modifier"
  772. msgstr "Pursotuksen jäähtymisnopeuden lisämääre"
  773. msgctxt "speed_equalize_flow_width_factor description"
  774. 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."
  775. msgstr ""
  776. msgctxt "cool_fan_speed label"
  777. msgid "Fan Speed"
  778. msgstr "Tuulettimen nopeus"
  779. msgctxt "support_fan_enable label"
  780. msgid "Fan Speed Override"
  781. msgstr ""
  782. msgctxt "small_feature_max_length description"
  783. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  784. msgstr ""
  785. msgctxt "experimental description"
  786. msgid "Features that haven't completely been fleshed out yet."
  787. msgstr ""
  788. msgctxt "machine_feeder_wheel_diameter label"
  789. msgid "Feeder Wheel Diameter"
  790. msgstr ""
  791. msgctxt "material_final_print_temperature label"
  792. msgid "Final Printing Temperature"
  793. msgstr "Tulostuslämpötila lopussa"
  794. msgctxt "machine_firmware_retract label"
  795. msgid "Firmware Retraction"
  796. msgstr ""
  797. msgctxt "support_extruder_nr_layer_0 label"
  798. msgid "First Layer Support Extruder"
  799. msgstr "Tuen ensimmäisen kerroksen suulake"
  800. msgctxt "material_flow label"
  801. msgid "Flow"
  802. msgstr "Virtaus"
  803. msgctxt "speed_equalize_flow_width_factor label"
  804. msgid "Flow Equalization Ratio"
  805. msgstr ""
  806. msgctxt "flow_anomaly_limit label"
  807. msgid "Flow Limit"
  808. msgstr ""
  809. msgctxt "flow_rate_extrusion_offset_factor label"
  810. msgid "Flow Rate Compensation Factor"
  811. msgstr ""
  812. msgctxt "flow_rate_max_extrusion_offset label"
  813. msgid "Flow Rate Compensation Max Extrusion Offset"
  814. msgstr ""
  815. msgctxt "material_flow_temp_graph label"
  816. msgid "Flow Temperature Graph"
  817. msgstr "Virtauksen lämpötilakaavio"
  818. msgctxt "flow_warn_limit label"
  819. msgid "Flow Warning"
  820. msgstr ""
  821. msgctxt "material_flow_layer_0 description"
  822. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  823. msgstr ""
  824. msgctxt "skin_material_flow_layer_0 description"
  825. msgid "Flow compensation on bottom lines of the first layer"
  826. msgstr ""
  827. msgctxt "infill_material_flow description"
  828. msgid "Flow compensation on infill lines."
  829. msgstr ""
  830. msgctxt "support_interface_material_flow description"
  831. msgid "Flow compensation on lines of support roof or floor."
  832. msgstr ""
  833. msgctxt "roofing_material_flow description"
  834. msgid "Flow compensation on lines of the areas at the top of the print."
  835. msgstr ""
  836. msgctxt "prime_tower_flow description"
  837. msgid "Flow compensation on prime tower lines."
  838. msgstr ""
  839. msgctxt "skirt_brim_material_flow description"
  840. msgid "Flow compensation on skirt or brim lines."
  841. msgstr ""
  842. msgctxt "support_bottom_material_flow description"
  843. msgid "Flow compensation on support floor lines."
  844. msgstr ""
  845. msgctxt "support_roof_material_flow description"
  846. msgid "Flow compensation on support roof lines."
  847. msgstr ""
  848. msgctxt "support_material_flow description"
  849. msgid "Flow compensation on support structure lines."
  850. msgstr ""
  851. msgctxt "wall_0_material_flow_layer_0 description"
  852. msgid "Flow compensation on the outermost wall line of the first layer."
  853. msgstr ""
  854. msgctxt "wall_0_material_flow description"
  855. msgid "Flow compensation on the outermost wall line."
  856. msgstr ""
  857. msgctxt "wall_0_material_flow_roofing description"
  858. msgid "Flow compensation on the top surface outermost wall line."
  859. msgstr "Virtauksen kompensointi yläpinnan uloimman seinän linjalla."
  860. msgctxt "wall_x_material_flow_roofing description"
  861. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  862. msgstr "Virtauksen kompensointi yläpinnan seinälinjoilla kaikille seinälinjoille paitsi uloimman linjalle."
  863. msgctxt "skin_material_flow description"
  864. msgid "Flow compensation on top/bottom lines."
  865. msgstr ""
  866. msgctxt "wall_x_material_flow_layer_0 description"
  867. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  868. msgstr ""
  869. msgctxt "wall_x_material_flow description"
  870. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  871. msgstr ""
  872. msgctxt "wall_material_flow description"
  873. msgid "Flow compensation on wall lines."
  874. msgstr ""
  875. msgctxt "material_flow description"
  876. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  877. msgstr "Virtauksen kompensointi: pursotetun materiaalin määrä kerrotaan tällä arvolla."
  878. msgctxt "meshfix_fluid_motion_angle label"
  879. msgid "Fluid Motion Angle"
  880. msgstr ""
  881. msgctxt "meshfix_fluid_motion_shift_distance label"
  882. msgid "Fluid Motion Shift Distance"
  883. msgstr ""
  884. msgctxt "meshfix_fluid_motion_small_distance label"
  885. msgid "Fluid Motion Small Distance"
  886. msgstr ""
  887. msgctxt "material_flush_purge_length label"
  888. msgid "Flush Purge Length"
  889. msgstr ""
  890. msgctxt "material_flush_purge_speed label"
  891. msgid "Flush Purge Speed"
  892. msgstr ""
  893. msgctxt "min_wall_line_width description"
  894. 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."
  895. msgstr ""
  896. msgctxt "z_seam_position option front"
  897. msgid "Front"
  898. msgstr ""
  899. msgctxt "z_seam_position option frontleft"
  900. msgid "Front Left"
  901. msgstr ""
  902. msgctxt "z_seam_position option frontright"
  903. msgid "Front Right"
  904. msgstr ""
  905. msgctxt "draft_shield_height_limitation option full"
  906. msgid "Full"
  907. msgstr "Täysi"
  908. msgctxt "magic_fuzzy_skin_enabled label"
  909. msgid "Fuzzy Skin"
  910. msgstr "Karhea pintakalvo"
  911. msgctxt "magic_fuzzy_skin_point_density label"
  912. msgid "Fuzzy Skin Density"
  913. msgstr "Karhean pintakalvon tiheys"
  914. msgctxt "magic_fuzzy_skin_outside_only label"
  915. msgid "Fuzzy Skin Outside Only"
  916. msgstr ""
  917. msgctxt "magic_fuzzy_skin_point_dist label"
  918. msgid "Fuzzy Skin Point Distance"
  919. msgstr "Karhean pintakalvon piste-etäisyys"
  920. msgctxt "magic_fuzzy_skin_thickness label"
  921. msgid "Fuzzy Skin Thickness"
  922. msgstr "Karhean pintakalvon paksuus"
  923. msgctxt "machine_gcode_flavor label"
  924. msgid "G-code Flavor"
  925. msgstr ""
  926. msgctxt "machine_end_gcode description"
  927. msgid ""
  928. "G-code commands to be executed at the very end - separated by \n"
  929. "."
  930. msgstr ""
  931. msgctxt "machine_start_gcode description"
  932. msgid ""
  933. "G-code commands to be executed at the very start - separated by \n"
  934. "."
  935. msgstr ""
  936. msgctxt "material_guid description"
  937. msgid "GUID of the material. This is set automatically."
  938. msgstr ""
  939. msgctxt "gantry_height label"
  940. msgid "Gantry Height"
  941. msgstr ""
  942. msgctxt "interlocking_enable label"
  943. msgid "Generate Interlocking Structure"
  944. msgstr ""
  945. msgctxt "support_enable label"
  946. msgid "Generate Support"
  947. msgstr "Muodosta tuki"
  948. msgctxt "support_brim_enable description"
  949. 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."
  950. msgstr ""
  951. msgctxt "support_interface_enable description"
  952. 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."
  953. 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ä."
  954. msgctxt "support_bottom_enable description"
  955. 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."
  956. msgstr "Muodosta tiheä materiaalilaatta tuen alaosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille."
  957. msgctxt "support_roof_enable description"
  958. 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."
  959. msgstr "Muodosta tiheä materiaalilaatta tuen yläosan ja mallin välille. Se luo pintakalvon mallin ja tuen välille."
  960. msgctxt "support_enable description"
  961. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  962. msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana."
  963. msgctxt "machine_buildplate_type option glass"
  964. msgid "Glass"
  965. msgstr ""
  966. msgctxt "ironing_enabled description"
  967. 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."
  968. msgstr ""
  969. msgctxt "gradual_infill_step_height label"
  970. msgid "Gradual Infill Step Height"
  971. msgstr "Asteittaisen täyttöarvon korkeus"
  972. msgctxt "gradual_infill_steps label"
  973. msgid "Gradual Infill Steps"
  974. msgstr "Asteittainen täyttöarvo"
  975. msgctxt "gradual_support_infill_step_height label"
  976. msgid "Gradual Support Infill Step Height"
  977. msgstr "Asteittaisen tuen täyttöarvon korkeus"
  978. msgctxt "gradual_support_infill_steps label"
  979. msgid "Gradual Support Infill Steps"
  980. msgstr "Asteittainen tuen täyttöarvo"
  981. msgctxt "cool_min_temperature description"
  982. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  983. msgstr ""
  984. msgctxt "infill_pattern option grid"
  985. msgid "Grid"
  986. msgstr "Ristikko"
  987. msgctxt "support_bottom_pattern option grid"
  988. msgid "Grid"
  989. msgstr "Ristikko"
  990. msgctxt "support_interface_pattern option grid"
  991. msgid "Grid"
  992. msgstr "Ristikko"
  993. msgctxt "support_pattern option grid"
  994. msgid "Grid"
  995. msgstr "Ristikko"
  996. msgctxt "support_roof_pattern option grid"
  997. msgid "Grid"
  998. msgstr "Ristikko"
  999. msgctxt "machine_gcode_flavor option Griffin"
  1000. msgid "Griffin"
  1001. msgstr "Griffin"
  1002. msgctxt "group_outer_walls label"
  1003. msgid "Group Outer Walls"
  1004. msgstr "Ryhmittele ulkoseinät"
  1005. msgctxt "infill_pattern option gyroid"
  1006. msgid "Gyroid"
  1007. msgstr ""
  1008. msgctxt "support_pattern option gyroid"
  1009. msgid "Gyroid"
  1010. msgstr ""
  1011. msgctxt "machine_heated_build_volume label"
  1012. msgid "Has Build Volume Temperature Stabilization"
  1013. msgstr ""
  1014. msgctxt "machine_heated_bed label"
  1015. msgid "Has Heated Build Plate"
  1016. msgstr "Sisältää lämmitettävän alustan"
  1017. msgctxt "machine_nozzle_heat_up_speed label"
  1018. msgid "Heat Up Speed"
  1019. msgstr ""
  1020. msgctxt "machine_heat_zone_length label"
  1021. msgid "Heat Zone Length"
  1022. msgstr ""
  1023. msgctxt "draft_shield_height description"
  1024. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1025. msgstr "Vetosuojuksen korkeusrajoitus. Tämän korkeuden ylittävälle osalle ei tulosteta vetosuojusta."
  1026. msgctxt "z_seam_corner option z_seam_corner_inner"
  1027. msgid "Hide Seam"
  1028. msgstr "Piilota sauma"
  1029. msgctxt "z_seam_corner option z_seam_corner_any"
  1030. msgid "Hide or Expose Seam"
  1031. msgstr "Piilota tai paljasta sauma"
  1032. msgctxt "hole_xy_offset label"
  1033. msgid "Hole Horizontal Expansion"
  1034. msgstr ""
  1035. msgctxt "hole_xy_offset_max_diameter label"
  1036. msgid "Hole Horizontal Expansion Max Diameter"
  1037. msgstr ""
  1038. msgctxt "small_hole_max_size description"
  1039. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1040. msgstr ""
  1041. msgctxt "xy_offset label"
  1042. msgid "Horizontal Expansion"
  1043. msgstr "Vaakalaajennus"
  1044. msgctxt "material_shrinkage_percentage_xy label"
  1045. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1046. msgstr ""
  1047. msgctxt "material_break_preparation_retracted_position description"
  1048. msgid "How far the filament can be stretched before it breaks, while heated."
  1049. msgstr ""
  1050. msgctxt "material_anti_ooze_retracted_position description"
  1051. msgid "How far the material needs to be retracted before it stops oozing."
  1052. msgstr ""
  1053. msgctxt "flow_rate_extrusion_offset_factor description"
  1054. 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."
  1055. msgstr ""
  1056. msgctxt "material_break_retracted_position description"
  1057. msgid "How far to retract the filament in order to break it cleanly."
  1058. msgstr ""
  1059. msgctxt "material_break_preparation_speed description"
  1060. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1061. msgstr ""
  1062. msgctxt "material_anti_ooze_retraction_speed description"
  1063. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1064. msgstr ""
  1065. msgctxt "material_end_of_filament_purge_speed description"
  1066. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1067. msgstr ""
  1068. msgctxt "material_flush_purge_speed description"
  1069. msgid "How fast to prime the material after switching to a different material."
  1070. msgstr ""
  1071. msgctxt "material_maximum_park_duration description"
  1072. msgid "How long the material can be kept out of dry storage safely."
  1073. msgstr ""
  1074. msgctxt "machine_steps_per_mm_x description"
  1075. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1076. msgstr ""
  1077. msgctxt "machine_steps_per_mm_y description"
  1078. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1079. msgstr ""
  1080. msgctxt "machine_steps_per_mm_z description"
  1081. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1082. msgstr ""
  1083. msgctxt "machine_steps_per_mm_e description"
  1084. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1085. msgstr ""
  1086. msgctxt "material_end_of_filament_purge_length description"
  1087. 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."
  1088. msgstr ""
  1089. msgctxt "material_flush_purge_length description"
  1090. 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."
  1091. msgstr ""
  1092. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1093. 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."
  1094. msgstr ""
  1095. msgctxt "support_interface_priority description"
  1096. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1097. msgstr ""
  1098. msgctxt "support_tree_min_height_to_model description"
  1099. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1100. msgstr ""
  1101. msgctxt "bridge_skin_support_threshold description"
  1102. 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."
  1103. msgstr ""
  1104. msgctxt "meshfix_fluid_motion_angle description"
  1105. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1106. msgstr ""
  1107. msgctxt "bridge_enable_more_layers description"
  1108. 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."
  1109. msgstr ""
  1110. msgctxt "wall_transition_filter_distance description"
  1111. 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."
  1112. msgstr ""
  1113. msgctxt "raft_base_margin description"
  1114. msgid "If the raft base 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."
  1115. msgstr ""
  1116. msgctxt "raft_margin description"
  1117. 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."
  1118. 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."
  1119. msgctxt "raft_interface_margin description"
  1120. msgid "If the raft middle 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."
  1121. msgstr ""
  1122. msgctxt "raft_surface_margin description"
  1123. msgid "If the raft top 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."
  1124. msgstr ""
  1125. msgctxt "meshfix_union_all description"
  1126. 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."
  1127. 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."
  1128. msgctxt "material_bed_temp_prepend label"
  1129. msgid "Include Build Plate Temperature"
  1130. msgstr "Sisällytä alustan lämpötila"
  1131. msgctxt "material_print_temp_prepend label"
  1132. msgid "Include Material Temperatures"
  1133. msgstr "Sisällytä materiaalilämpötilat"
  1134. msgctxt "slicing_tolerance option inclusive"
  1135. msgid "Inclusive"
  1136. msgstr ""
  1137. msgctxt "infill description"
  1138. msgid "Infill"
  1139. msgstr "Täyttö"
  1140. msgctxt "infill label"
  1141. msgid "Infill"
  1142. msgstr "Täyttö"
  1143. msgctxt "acceleration_infill label"
  1144. msgid "Infill Acceleration"
  1145. msgstr "Täytön kiihtyvyys"
  1146. msgctxt "infill_before_walls label"
  1147. msgid "Infill Before Walls"
  1148. msgstr "Täyttö ennen seinämiä"
  1149. msgctxt "infill_sparse_density label"
  1150. msgid "Infill Density"
  1151. msgstr "Täytön tiheys"
  1152. msgctxt "infill_extruder_nr label"
  1153. msgid "Infill Extruder"
  1154. msgstr "Täytön suulake"
  1155. msgctxt "infill_material_flow label"
  1156. msgid "Infill Flow"
  1157. msgstr ""
  1158. msgctxt "jerk_infill label"
  1159. msgid "Infill Jerk"
  1160. msgstr "Täytön nykäisy"
  1161. msgctxt "infill_sparse_thickness label"
  1162. msgid "Infill Layer Thickness"
  1163. msgstr "Täyttökerroksen paksuus"
  1164. msgctxt "infill_angles label"
  1165. msgid "Infill Line Directions"
  1166. msgstr "Täyttölinjojen suunnat"
  1167. msgctxt "infill_line_distance label"
  1168. msgid "Infill Line Distance"
  1169. msgstr "Täyttölinjan etäisyys"
  1170. msgctxt "infill_multiplier label"
  1171. msgid "Infill Line Multiplier"
  1172. msgstr ""
  1173. msgctxt "infill_line_width label"
  1174. msgid "Infill Line Width"
  1175. msgstr "Täyttölinjan leveys"
  1176. msgctxt "infill_mesh label"
  1177. msgid "Infill Mesh"
  1178. msgstr "Täyttöverkko"
  1179. msgctxt "infill_support_angle label"
  1180. msgid "Infill Overhang Angle"
  1181. msgstr ""
  1182. msgctxt "infill_overlap_mm label"
  1183. msgid "Infill Overlap"
  1184. msgstr "Täytön limitys"
  1185. msgctxt "infill_overlap label"
  1186. msgid "Infill Overlap Percentage"
  1187. msgstr "Täytön limityksen prosentti"
  1188. msgctxt "infill_pattern label"
  1189. msgid "Infill Pattern"
  1190. msgstr "Täyttökuvio"
  1191. msgctxt "speed_infill label"
  1192. msgid "Infill Speed"
  1193. msgstr "Täyttönopeus"
  1194. msgctxt "infill_support_enabled label"
  1195. msgid "Infill Support"
  1196. msgstr ""
  1197. msgctxt "infill_enable_travel_optimization label"
  1198. msgid "Infill Travel Optimization"
  1199. msgstr ""
  1200. msgctxt "infill_wipe_dist label"
  1201. msgid "Infill Wipe Distance"
  1202. msgstr "Täyttöliikkeen etäisyys"
  1203. msgctxt "infill_offset_x label"
  1204. msgid "Infill X Offset"
  1205. msgstr ""
  1206. msgctxt "infill_offset_y label"
  1207. msgid "Infill Y Offset"
  1208. msgstr ""
  1209. msgctxt "initial_bottom_layers label"
  1210. msgid "Initial Bottom Layers"
  1211. msgstr ""
  1212. msgctxt "cool_fan_speed_0 label"
  1213. msgid "Initial Fan Speed"
  1214. msgstr "Tuulettimen nopeus alussa"
  1215. msgctxt "acceleration_layer_0 label"
  1216. msgid "Initial Layer Acceleration"
  1217. msgstr "Alkukerroksen kiihtyvyys"
  1218. msgctxt "skin_material_flow_layer_0 label"
  1219. msgid "Initial Layer Bottom Flow"
  1220. msgstr ""
  1221. msgctxt "support_tree_bp_diameter label"
  1222. msgid "Initial Layer Diameter"
  1223. msgstr ""
  1224. msgctxt "material_flow_layer_0 label"
  1225. msgid "Initial Layer Flow"
  1226. msgstr ""
  1227. msgctxt "layer_height_0 label"
  1228. msgid "Initial Layer Height"
  1229. msgstr "Alkukerroksen korkeus"
  1230. msgctxt "xy_offset_layer_0 label"
  1231. msgid "Initial Layer Horizontal Expansion"
  1232. msgstr "Alkukerroksen vaakalaajennus"
  1233. msgctxt "wall_x_material_flow_layer_0 label"
  1234. msgid "Initial Layer Inner Wall Flow"
  1235. msgstr ""
  1236. msgctxt "jerk_layer_0 label"
  1237. msgid "Initial Layer Jerk"
  1238. msgstr "Alkukerroksen nykäisy"
  1239. msgctxt "initial_layer_line_width_factor label"
  1240. msgid "Initial Layer Line Width"
  1241. msgstr "Alkukerroksen linjaleveys"
  1242. msgctxt "wall_0_material_flow_layer_0 label"
  1243. msgid "Initial Layer Outer Wall Flow"
  1244. msgstr ""
  1245. msgctxt "acceleration_print_layer_0 label"
  1246. msgid "Initial Layer Print Acceleration"
  1247. msgstr "Alkukerroksen tulostuksen kiihtyvyys"
  1248. msgctxt "jerk_print_layer_0 label"
  1249. msgid "Initial Layer Print Jerk"
  1250. msgstr "Alkukerroksen tulostuksen nykäisy"
  1251. msgctxt "speed_print_layer_0 label"
  1252. msgid "Initial Layer Print Speed"
  1253. msgstr "Alkukerroksen tulostusnopeus"
  1254. msgctxt "speed_layer_0 label"
  1255. msgid "Initial Layer Speed"
  1256. msgstr "Alkukerroksen nopeus"
  1257. msgctxt "support_initial_layer_line_distance label"
  1258. msgid "Initial Layer Support Line Distance"
  1259. msgstr ""
  1260. msgctxt "acceleration_travel_layer_0 label"
  1261. msgid "Initial Layer Travel Acceleration"
  1262. msgstr "Alkukerroksen siirtoliikkeen kiihtyvyys"
  1263. msgctxt "jerk_travel_layer_0 label"
  1264. msgid "Initial Layer Travel Jerk"
  1265. msgstr "Alkukerroksen siirtoliikkeen nykäisy"
  1266. msgctxt "speed_travel_layer_0 label"
  1267. msgid "Initial Layer Travel Speed"
  1268. msgstr "Alkukerroksen siirtoliikkeen nopeus"
  1269. msgctxt "layer_0_z_overlap label"
  1270. msgid "Initial Layer Z Overlap"
  1271. msgstr "Z Päällekkäisyys Alkukerroksen"
  1272. msgctxt "material_initial_print_temperature label"
  1273. msgid "Initial Printing Temperature"
  1274. msgstr "Tulostuslämpötila alussa"
  1275. msgctxt "acceleration_wall_x label"
  1276. msgid "Inner Wall Acceleration"
  1277. msgstr "Sisäseinämän kiihtyvyys"
  1278. msgctxt "wall_x_extruder_nr label"
  1279. msgid "Inner Wall Extruder"
  1280. msgstr ""
  1281. msgctxt "jerk_wall_x label"
  1282. msgid "Inner Wall Jerk"
  1283. msgstr "Sisäseinämän nykäisy"
  1284. msgctxt "speed_wall_x label"
  1285. msgid "Inner Wall Speed"
  1286. msgstr "Sisäseinämänopeus"
  1287. msgctxt "wall_x_material_flow label"
  1288. msgid "Inner Wall(s) Flow"
  1289. msgstr ""
  1290. msgctxt "wall_line_width_x label"
  1291. msgid "Inner Wall(s) Line Width"
  1292. msgstr "Sisäseinämien linjaleveys"
  1293. msgctxt "wall_0_inset description"
  1294. 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."
  1295. 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."
  1296. msgctxt "brim_location option inside"
  1297. msgid "Inside Only"
  1298. msgstr ""
  1299. msgctxt "inset_direction option inside_out"
  1300. msgid "Inside To Outside"
  1301. msgstr ""
  1302. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1303. msgid "Interface lines preferred"
  1304. msgstr ""
  1305. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1306. msgid "Interface preferred"
  1307. msgstr ""
  1308. msgctxt "prime_tower_mode option interleaved"
  1309. msgid "Interleaved"
  1310. msgstr ""
  1311. msgctxt "interlocking_beam_layer_count label"
  1312. msgid "Interlocking Beam Layer Count"
  1313. msgstr ""
  1314. msgctxt "interlocking_beam_width label"
  1315. msgid "Interlocking Beam Width"
  1316. msgstr ""
  1317. msgctxt "interlocking_boundary_avoidance label"
  1318. msgid "Interlocking Boundary Avoidance"
  1319. msgstr ""
  1320. msgctxt "interlocking_depth label"
  1321. msgid "Interlocking Depth"
  1322. msgstr ""
  1323. msgctxt "interlocking_orientation label"
  1324. msgid "Interlocking Structure Orientation"
  1325. msgstr ""
  1326. msgctxt "ironing_only_highest_layer label"
  1327. msgid "Iron Only Highest Layer"
  1328. msgstr "Silitä vain korkein kerros"
  1329. msgctxt "acceleration_ironing label"
  1330. msgid "Ironing Acceleration"
  1331. msgstr "Silityksen kiihtyvyys"
  1332. msgctxt "ironing_flow label"
  1333. msgid "Ironing Flow"
  1334. msgstr "Silitysvirtaus"
  1335. msgctxt "ironing_inset label"
  1336. msgid "Ironing Inset"
  1337. msgstr "Silitysliitos"
  1338. msgctxt "jerk_ironing label"
  1339. msgid "Ironing Jerk"
  1340. msgstr "Silityksen nykäisy"
  1341. msgctxt "ironing_line_spacing label"
  1342. msgid "Ironing Line Spacing"
  1343. msgstr "Silityksen linjajako"
  1344. msgctxt "ironing_pattern label"
  1345. msgid "Ironing Pattern"
  1346. msgstr "Silityskuvio"
  1347. msgctxt "speed_ironing label"
  1348. msgid "Ironing Speed"
  1349. msgstr "Silitysnopeus"
  1350. msgctxt "machine_center_is_zero label"
  1351. msgid "Is Center Origin"
  1352. msgstr "On keskikohdassa"
  1353. msgctxt "material_is_support_material label"
  1354. msgid "Is support material"
  1355. msgstr ""
  1356. msgctxt "material_crystallinity description"
  1357. 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)?"
  1358. msgstr ""
  1359. msgctxt "material_is_support_material description"
  1360. msgid "Is this material typically used as a support material during printing."
  1361. msgstr ""
  1362. msgctxt "magic_fuzzy_skin_outside_only description"
  1363. msgid "Jitter only the parts' outlines and not the parts' holes."
  1364. msgstr ""
  1365. msgctxt "meshfix_keep_open_polygons label"
  1366. msgid "Keep Disconnected Faces"
  1367. msgstr "Pidä erilliset pinnat"
  1368. msgctxt "layer_height label"
  1369. msgid "Layer Height"
  1370. msgstr "Kerroksen korkeus"
  1371. msgctxt "layer_start_x label"
  1372. msgid "Layer Start X"
  1373. msgstr "Kerroksen X-aloitus"
  1374. msgctxt "layer_start_y label"
  1375. msgid "Layer Start Y"
  1376. msgstr "Kerroksen Y-aloitus"
  1377. msgctxt "raft_base_thickness description"
  1378. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1379. msgstr "Pohjaristikon pohjakerroksen kerrospaksuus. Tämän tulisi olla paksu kerros, joka tarttuu lujasti tulostimen alustaan."
  1380. msgctxt "raft_interface_thickness description"
  1381. msgid "Layer thickness of the middle raft layer."
  1382. msgstr "Pohjaristikon keskikerroksen kerrospaksuus."
  1383. msgctxt "raft_surface_thickness description"
  1384. msgid "Layer thickness of the top raft layers."
  1385. msgstr "Pohjaristikon pintakerrosten kerrospaksuus."
  1386. msgctxt "support_skip_zag_per_mm description"
  1387. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1388. msgstr "Jätä tukilinjojen välinen yhdistäminen pois joka N. millimetri, jotta tukirakenne on helpompi rikkoa."
  1389. msgctxt "z_seam_position option left"
  1390. msgid "Left"
  1391. msgstr ""
  1392. msgctxt "cool_lift_head label"
  1393. msgid "Lift Head"
  1394. msgstr "Tulostuspään nosto"
  1395. msgctxt "infill_pattern option lightning"
  1396. msgid "Lightning"
  1397. msgstr ""
  1398. msgctxt "lightning_infill_overhang_angle label"
  1399. msgid "Lightning Infill Overhang Angle"
  1400. msgstr ""
  1401. msgctxt "lightning_infill_prune_angle label"
  1402. msgid "Lightning Infill Prune Angle"
  1403. msgstr ""
  1404. msgctxt "lightning_infill_straightening_angle label"
  1405. msgid "Lightning Infill Straightening Angle"
  1406. msgstr ""
  1407. msgctxt "lightning_infill_support_angle label"
  1408. msgid "Lightning Infill Support Angle"
  1409. msgstr ""
  1410. msgctxt "support_tree_limit_branch_reach label"
  1411. msgid "Limit Branch Reach"
  1412. msgstr ""
  1413. msgctxt "support_tree_limit_branch_reach description"
  1414. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1415. msgstr ""
  1416. msgctxt "bv_temp_warn_limit description"
  1417. msgid "Limit on Build Volume Temperature warning for detection."
  1418. msgstr ""
  1419. msgctxt "bv_temp_anomaly_limit description"
  1420. msgid "Limit on Build Volume temperature Anomaly for detection."
  1421. msgstr ""
  1422. msgctxt "print_temp_anomaly_limit description"
  1423. msgid "Limit on Print Temperature anomaly for detection."
  1424. msgstr ""
  1425. msgctxt "print_temp_warn_limit description"
  1426. msgid "Limit on Print temperature warning for detection."
  1427. msgstr ""
  1428. msgctxt "flow_anomaly_limit description"
  1429. msgid "Limit on flow anomaly for detection."
  1430. msgstr ""
  1431. msgctxt "flow_warn_limit description"
  1432. msgid "Limit on the flow warning for detection."
  1433. msgstr ""
  1434. msgctxt "cutting_mesh description"
  1435. 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."
  1436. 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."
  1437. msgctxt "draft_shield_height_limitation option limited"
  1438. msgid "Limited"
  1439. msgstr "Rajoitettu"
  1440. msgctxt "line_width label"
  1441. msgid "Line Width"
  1442. msgstr "Linjan leveys"
  1443. msgctxt "infill_pattern option lines"
  1444. msgid "Lines"
  1445. msgstr "Linjat"
  1446. msgctxt "roofing_pattern option lines"
  1447. msgid "Lines"
  1448. msgstr "Linjat"
  1449. msgctxt "support_bottom_pattern option lines"
  1450. msgid "Lines"
  1451. msgstr "Linjat"
  1452. msgctxt "support_interface_pattern option lines"
  1453. msgid "Lines"
  1454. msgstr "Linjat"
  1455. msgctxt "support_pattern option lines"
  1456. msgid "Lines"
  1457. msgstr "Linjat"
  1458. msgctxt "support_roof_pattern option lines"
  1459. msgid "Lines"
  1460. msgstr "Linjat"
  1461. msgctxt "top_bottom_pattern option lines"
  1462. msgid "Lines"
  1463. msgstr "Linjat"
  1464. msgctxt "top_bottom_pattern_0 option lines"
  1465. msgid "Lines"
  1466. msgstr "Linjat"
  1467. msgctxt "machine_gcode_flavor option MACH3"
  1468. msgid "Mach3"
  1469. msgstr "Mach3"
  1470. msgctxt "machine_settings label"
  1471. msgid "Machine"
  1472. msgstr "Laite"
  1473. msgctxt "machine_depth label"
  1474. msgid "Machine Depth"
  1475. msgstr "Laitteen syvyys"
  1476. msgctxt "machine_head_with_fans_polygon label"
  1477. msgid "Machine Head & Fan Polygon"
  1478. msgstr ""
  1479. msgctxt "machine_height label"
  1480. msgid "Machine Height"
  1481. msgstr "Laitteen korkeus"
  1482. msgctxt "machine_name label"
  1483. msgid "Machine Type"
  1484. msgstr "Laitteen tyyppi"
  1485. msgctxt "machine_width label"
  1486. msgid "Machine Width"
  1487. msgstr "Laitteen leveys"
  1488. msgctxt "machine_settings description"
  1489. msgid "Machine specific settings"
  1490. msgstr "Laitekohtaiset asetukset"
  1491. msgctxt "conical_overhang_enabled label"
  1492. msgid "Make Overhang Printable"
  1493. msgstr "Tee ulokkeesta tulostettava"
  1494. msgctxt "multiple_mesh_overlap description"
  1495. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1496. msgstr "Toisiinsa kosketuksissa olevat verkot limittyvät hieman. Tämä sitoo ne paremmin yhteen."
  1497. msgctxt "support_conical_enabled description"
  1498. msgid "Make support areas smaller at the bottom than at the overhang."
  1499. msgstr ""
  1500. msgctxt "support_mesh_drop_down description"
  1501. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1502. msgstr "Muodosta tukea kaikkialle tukiverkon alla, niin ettei tukiverkossa ole ulokkeita."
  1503. msgctxt "extruder_prime_pos_abs description"
  1504. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1505. msgstr "Tekee suulakkeen esitäyttösijainnista absoluuttisen eikä suhteellisen viimeksi tunnettuun pään sijaintiin nähden."
  1506. msgctxt "layer_0_z_overlap description"
  1507. msgid ""
  1508. "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.\n"
  1509. "It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  1510. msgstr ""
  1511. msgctxt "meshfix description"
  1512. msgid "Make the meshes more suited for 3D printing."
  1513. msgstr ""
  1514. msgctxt "machine_gcode_flavor option Makerbot"
  1515. msgid "Makerbot"
  1516. msgstr "Makerbot"
  1517. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1518. msgid "Marlin"
  1519. msgstr "Marlin"
  1520. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1521. msgid "Marlin (Volumetric)"
  1522. msgstr "Marlin (volymetrinen)"
  1523. msgctxt "material description"
  1524. msgid "Material"
  1525. msgstr "Materiaali"
  1526. msgctxt "material label"
  1527. msgid "Material"
  1528. msgstr "Materiaali"
  1529. msgctxt "material_brand label"
  1530. msgid "Material Brand"
  1531. msgstr ""
  1532. msgctxt "material_guid label"
  1533. msgid "Material GUID"
  1534. msgstr "Materiaalin GUID"
  1535. msgctxt "material_type label"
  1536. msgid "Material Type"
  1537. msgstr ""
  1538. msgctxt "max_extrusion_before_wipe label"
  1539. msgid "Material Volume Between Wipes"
  1540. msgstr ""
  1541. msgctxt "retraction_combing_max_distance label"
  1542. msgid "Max Comb Distance With No Retract"
  1543. msgstr ""
  1544. msgctxt "machine_max_acceleration_x label"
  1545. msgid "Maximum Acceleration X"
  1546. msgstr "Maksimikiihtyvyys X"
  1547. msgctxt "machine_max_acceleration_y label"
  1548. msgid "Maximum Acceleration Y"
  1549. msgstr "Maksimikiihtyvyys Y"
  1550. msgctxt "machine_max_acceleration_z label"
  1551. msgid "Maximum Acceleration Z"
  1552. msgstr "Maksimikiihtyvyys Z"
  1553. msgctxt "support_tree_angle label"
  1554. msgid "Maximum Branch Angle"
  1555. msgstr ""
  1556. msgctxt "meshfix_maximum_deviation label"
  1557. msgid "Maximum Deviation"
  1558. msgstr ""
  1559. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1560. msgid "Maximum Extrusion Area Deviation"
  1561. msgstr ""
  1562. msgctxt "cool_fan_speed_max label"
  1563. msgid "Maximum Fan Speed"
  1564. msgstr "Tuulettimen maksiminopeus"
  1565. msgctxt "machine_max_acceleration_e label"
  1566. msgid "Maximum Filament Acceleration"
  1567. msgstr "Tulostuslangan maksimikiihtyvyys"
  1568. msgctxt "conical_overhang_angle label"
  1569. msgid "Maximum Model Angle"
  1570. msgstr "Mallin maksimikulma"
  1571. msgctxt "conical_overhang_hole_size label"
  1572. msgid "Maximum Overhang Hole Area"
  1573. msgstr ""
  1574. msgctxt "material_maximum_park_duration label"
  1575. msgid "Maximum Park Duration"
  1576. msgstr ""
  1577. msgctxt "meshfix_maximum_resolution label"
  1578. msgid "Maximum Resolution"
  1579. msgstr ""
  1580. msgctxt "retraction_count_max label"
  1581. msgid "Maximum Retraction Count"
  1582. msgstr "Takaisinvedon maksimiluku"
  1583. msgctxt "max_skin_angle_for_expansion label"
  1584. msgid "Maximum Skin Angle for Expansion"
  1585. msgstr "Pintakalvon maksimikulma laajennuksessa"
  1586. msgctxt "machine_max_feedrate_e label"
  1587. msgid "Maximum Speed E"
  1588. msgstr ""
  1589. msgctxt "machine_max_feedrate_x label"
  1590. msgid "Maximum Speed X"
  1591. msgstr "Maksiminopeus X"
  1592. msgctxt "machine_max_feedrate_y label"
  1593. msgid "Maximum Speed Y"
  1594. msgstr "Maksiminopeus Y"
  1595. msgctxt "machine_max_feedrate_z label"
  1596. msgid "Maximum Speed Z"
  1597. msgstr "Maksiminopeus Z"
  1598. msgctxt "support_tower_maximum_supported_diameter label"
  1599. msgid "Maximum Tower-Supported Diameter"
  1600. msgstr ""
  1601. msgctxt "meshfix_maximum_travel_resolution label"
  1602. msgid "Maximum Travel Resolution"
  1603. msgstr ""
  1604. msgctxt "machine_max_acceleration_x description"
  1605. msgid "Maximum acceleration for the motor of the X-direction"
  1606. msgstr "X-suunnan moottorin maksimikiihtyvyys"
  1607. msgctxt "machine_max_acceleration_y description"
  1608. msgid "Maximum acceleration for the motor of the Y-direction."
  1609. msgstr "Y-suunnan moottorin maksimikiihtyvyys."
  1610. msgctxt "machine_max_acceleration_z description"
  1611. msgid "Maximum acceleration for the motor of the Z-direction."
  1612. msgstr "Z-suunnan moottorin maksimikiihtyvyys."
  1613. msgctxt "machine_max_acceleration_e description"
  1614. msgid "Maximum acceleration for the motor of the filament."
  1615. msgstr "Tulostuslangan moottorin maksimikiihtyvyys."
  1616. msgctxt "bridge_sparse_infill_max_density description"
  1617. 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."
  1618. msgstr ""
  1619. msgctxt "support_tower_maximum_supported_diameter description"
  1620. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1621. msgstr ""
  1622. msgctxt "max_extrusion_before_wipe description"
  1623. 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."
  1624. msgstr ""
  1625. msgctxt "multiple_mesh_overlap label"
  1626. msgid "Merged Meshes Overlap"
  1627. msgstr "Yhdistettyjen verkkojen limitys"
  1628. msgctxt "meshfix label"
  1629. msgid "Mesh Fixes"
  1630. msgstr "Verkkokorjaukset"
  1631. msgctxt "mesh_position_x label"
  1632. msgid "Mesh Position X"
  1633. msgstr ""
  1634. msgctxt "mesh_position_y label"
  1635. msgid "Mesh Position Y"
  1636. msgstr ""
  1637. msgctxt "mesh_position_z label"
  1638. msgid "Mesh Position Z"
  1639. msgstr ""
  1640. msgctxt "infill_mesh_order label"
  1641. msgid "Mesh Processing Rank"
  1642. msgstr ""
  1643. msgctxt "mesh_rotation_matrix label"
  1644. msgid "Mesh Rotation Matrix"
  1645. msgstr "Verkon pyöritysmatriisi"
  1646. msgctxt "slicing_tolerance option middle"
  1647. msgid "Middle"
  1648. msgstr ""
  1649. msgctxt "mold_width label"
  1650. msgid "Minimal Mold Width"
  1651. msgstr "Muotin vähimmäisleveys"
  1652. msgctxt "machine_min_cool_heat_time_window label"
  1653. msgid "Minimal Time Standby Temperature"
  1654. msgstr "Valmiuslämpötilan minimiaika"
  1655. msgctxt "bridge_wall_min_length label"
  1656. msgid "Minimum Bridge Wall Length"
  1657. msgstr ""
  1658. msgctxt "min_even_wall_line_width label"
  1659. msgid "Minimum Even Wall Line Width"
  1660. msgstr ""
  1661. msgctxt "retraction_extrusion_window label"
  1662. msgid "Minimum Extrusion Distance Window"
  1663. msgstr "Pursotuksen minimietäisyyden ikkuna"
  1664. msgctxt "min_feature_size label"
  1665. msgid "Minimum Feature Size"
  1666. msgstr ""
  1667. msgctxt "machine_minimum_feedrate label"
  1668. msgid "Minimum Feedrate"
  1669. msgstr "Minimisyöttönopeus"
  1670. msgctxt "support_tree_min_height_to_model label"
  1671. msgid "Minimum Height To Model"
  1672. msgstr ""
  1673. msgctxt "min_infill_area label"
  1674. msgid "Minimum Infill Area"
  1675. msgstr "Minimitäyttöalue"
  1676. msgctxt "cool_min_layer_time label"
  1677. msgid "Minimum Layer Time"
  1678. msgstr "Kerroksen minimiaika"
  1679. msgctxt "min_odd_wall_line_width label"
  1680. msgid "Minimum Odd Wall Line Width"
  1681. msgstr ""
  1682. msgctxt "minimum_polygon_circumference label"
  1683. msgid "Minimum Polygon Circumference"
  1684. msgstr ""
  1685. msgctxt "min_skin_width_for_expansion label"
  1686. msgid "Minimum Skin Width for Expansion"
  1687. msgstr "Pintakalvon minimileveys laajennuksessa"
  1688. msgctxt "cool_min_speed label"
  1689. msgid "Minimum Speed"
  1690. msgstr "Miniminopeus"
  1691. msgctxt "minimum_support_area label"
  1692. msgid "Minimum Support Area"
  1693. msgstr ""
  1694. msgctxt "minimum_bottom_area label"
  1695. msgid "Minimum Support Floor Area"
  1696. msgstr ""
  1697. msgctxt "minimum_interface_area label"
  1698. msgid "Minimum Support Interface Area"
  1699. msgstr ""
  1700. msgctxt "minimum_roof_area label"
  1701. msgid "Minimum Support Roof Area"
  1702. msgstr ""
  1703. msgctxt "support_xy_distance_overhang label"
  1704. msgid "Minimum Support X/Y Distance"
  1705. msgstr "Tuen X-/Y-minimietäisyys"
  1706. msgctxt "min_bead_width label"
  1707. msgid "Minimum Thin Wall Line Width"
  1708. msgstr ""
  1709. msgctxt "coasting_min_volume label"
  1710. msgid "Minimum Volume Before Coasting"
  1711. msgstr "Vähimmäisainemäärä ennen vapaaliukua"
  1712. msgctxt "min_wall_line_width label"
  1713. msgid "Minimum Wall Line Width"
  1714. msgstr ""
  1715. msgctxt "minimum_interface_area description"
  1716. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1717. msgstr ""
  1718. msgctxt "minimum_support_area description"
  1719. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1720. msgstr ""
  1721. msgctxt "minimum_bottom_area description"
  1722. 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."
  1723. msgstr ""
  1724. msgctxt "minimum_roof_area description"
  1725. 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."
  1726. msgstr ""
  1727. msgctxt "min_feature_size description"
  1728. 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."
  1729. msgstr ""
  1730. msgctxt "support_conical_min_width description"
  1731. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1732. msgstr "Minimileveys, johon kartiomaisen tukialueen perusta pienennetään. Pienet leveydet voivat johtaa epävakaisiin tukirakenteisiin."
  1733. msgctxt "mold_enabled label"
  1734. msgid "Mold"
  1735. msgstr "Muotti"
  1736. msgctxt "mold_angle label"
  1737. msgid "Mold Angle"
  1738. msgstr "Muotin kulma"
  1739. msgctxt "mold_roof_height label"
  1740. msgid "Mold Roof Height"
  1741. msgstr "Muotin katon korkeus"
  1742. msgctxt "ironing_monotonic label"
  1743. msgid "Monotonic Ironing Order"
  1744. msgstr ""
  1745. msgctxt "raft_surface_monotonic label"
  1746. msgid "Monotonic Raft Top Surface Order"
  1747. msgstr ""
  1748. msgctxt "roofing_monotonic label"
  1749. msgid "Monotonic Top Surface Order"
  1750. msgstr ""
  1751. msgctxt "skin_monotonic label"
  1752. msgid "Monotonic Top/Bottom Order"
  1753. msgstr ""
  1754. msgctxt "skirt_line_count description"
  1755. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1756. msgstr "Useammat helmalinjat auttavat pursotuksen esitäytössä pienillä malleilla. Helma poistetaan käytöstä, jos arvoksi asetetaan 0."
  1757. msgctxt "initial_layer_line_width_factor description"
  1758. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1759. msgstr "Ensimmäisen kerroksen linjaleveyden kerroin. Sen suurentaminen voi parantaa tarttuvuutta pöytään."
  1760. msgctxt "material_no_load_move_factor label"
  1761. msgid "No Load Move Factor"
  1762. msgstr ""
  1763. msgctxt "skin_no_small_gaps_heuristic label"
  1764. msgid "No Skin in Z Gaps"
  1765. msgstr ""
  1766. msgctxt "blackmagic description"
  1767. msgid "Non-traditional ways to print your models."
  1768. msgstr ""
  1769. msgctxt "adhesion_type option none"
  1770. msgid "None"
  1771. msgstr "Ei mikään"
  1772. msgctxt "z_seam_corner option z_seam_corner_none"
  1773. msgid "None"
  1774. msgstr "Ei mitään"
  1775. msgctxt "magic_mesh_surface_mode option normal"
  1776. msgid "Normal"
  1777. msgstr "Normaali"
  1778. msgctxt "prime_tower_mode option normal"
  1779. msgid "Normal"
  1780. msgstr ""
  1781. msgctxt "support_structure option normal"
  1782. msgid "Normal"
  1783. msgstr ""
  1784. msgctxt "meshfix_keep_open_polygons description"
  1785. 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."
  1786. msgstr ""
  1787. msgctxt "retraction_combing option noskin"
  1788. msgid "Not in Skin"
  1789. msgstr ""
  1790. msgctxt "retraction_combing option no_outer_surfaces"
  1791. msgid "Not on Outer Surface"
  1792. msgstr ""
  1793. msgctxt "machine_nozzle_expansion_angle label"
  1794. msgid "Nozzle Angle"
  1795. msgstr ""
  1796. msgctxt "machine_nozzle_size label"
  1797. msgid "Nozzle Diameter"
  1798. msgstr "Suuttimen läpimitta"
  1799. msgctxt "nozzle_disallowed_areas label"
  1800. msgid "Nozzle Disallowed Areas"
  1801. msgstr "Suuttimen kielletyt alueet"
  1802. msgctxt "machine_nozzle_id label"
  1803. msgid "Nozzle ID"
  1804. msgstr "Suuttimen tunnus"
  1805. msgctxt "machine_nozzle_head_distance label"
  1806. msgid "Nozzle Length"
  1807. msgstr ""
  1808. msgctxt "switch_extruder_extra_prime_amount label"
  1809. msgid "Nozzle Switch Extra Prime Amount"
  1810. msgstr ""
  1811. msgctxt "switch_extruder_prime_speed label"
  1812. msgid "Nozzle Switch Prime Speed"
  1813. msgstr "Suuttimen vaihdon esitäyttönopeus"
  1814. msgctxt "switch_extruder_retraction_speed label"
  1815. msgid "Nozzle Switch Retract Speed"
  1816. msgstr "Suuttimen vaihdon takaisinvetonopeus"
  1817. msgctxt "switch_extruder_retraction_amount label"
  1818. msgid "Nozzle Switch Retraction Distance"
  1819. msgstr "Suuttimen vaihdon takaisinvetoetäisyys"
  1820. msgctxt "switch_extruder_retraction_speeds label"
  1821. msgid "Nozzle Switch Retraction Speed"
  1822. msgstr "Suuttimen vaihdon takaisinvetonopeus"
  1823. msgctxt "machine_extruder_count label"
  1824. msgid "Number of Extruders"
  1825. msgstr "Suulakkeiden määrä"
  1826. msgctxt "extruders_enabled_count label"
  1827. msgid "Number of Extruders That Are Enabled"
  1828. msgstr ""
  1829. msgctxt "speed_slowdown_layers label"
  1830. msgid "Number of Slower Layers"
  1831. msgstr "Hitaampien kerrosten määrä"
  1832. msgctxt "extruders_enabled_count description"
  1833. msgid "Number of extruder trains that are enabled; automatically set in software"
  1834. msgstr ""
  1835. msgctxt "machine_extruder_count description"
  1836. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1837. msgstr "Suulakeryhmien määrä. Suulakeryhmä on syöttölaitteen, Bowden-putken ja suuttimen yhdistelmä."
  1838. msgctxt "wipe_repeat_count description"
  1839. msgid "Number of times to move the nozzle across the brush."
  1840. msgstr ""
  1841. msgctxt "gradual_infill_steps description"
  1842. 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."
  1843. 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."
  1844. msgctxt "gradual_support_infill_steps description"
  1845. 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."
  1846. 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."
  1847. msgctxt "infill_pattern option tetrahedral"
  1848. msgid "Octet"
  1849. msgstr "Oktetti"
  1850. msgctxt "retraction_combing option off"
  1851. msgid "Off"
  1852. msgstr "Pois"
  1853. msgctxt "mesh_position_x description"
  1854. msgid "Offset applied to the object in the x direction."
  1855. msgstr "Siirtymää sovelletaan kohteeseen X-suunnassa."
  1856. msgctxt "mesh_position_y description"
  1857. msgid "Offset applied to the object in the y direction."
  1858. msgstr "Siirtymää sovelletaan kohteeseen Y-suunnassa."
  1859. msgctxt "mesh_position_z description"
  1860. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1861. msgstr "Kappaleessa käytetty siirtymä z-suunnassa. Tällä toiminnolla voit suorittaa aiemmin ”kappaleen upotukseksi” kutsutun toiminnon."
  1862. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1863. msgid "Offset with Extruder"
  1864. msgstr ""
  1865. msgctxt "support_tree_rest_preference option buildplate"
  1866. msgid "On buildplate when possible"
  1867. msgstr ""
  1868. msgctxt "support_tree_rest_preference option graceful"
  1869. msgid "On model if required"
  1870. msgstr ""
  1871. msgctxt "print_sequence option one_at_a_time"
  1872. msgid "One at a Time"
  1873. msgstr "Yksi kerrallaan"
  1874. msgctxt "retraction_hop_only_when_collides description"
  1875. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1876. msgstr "Suorita Z-hyppy vain siirryttäessä sellaisten tulostettujen osien yli, jota ei voi välttää vaakaliikkeellä toiminnolla ”Vältä tulostettuja osia siirtoliikkeen yhteydessä”."
  1877. msgctxt "ironing_only_highest_layer description"
  1878. 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."
  1879. msgstr "Suorita silitys vain verkon viimeisessä kerroksessa. Tämä säästää aikaa, jos alemmat kerrokset eivät edellytä sileää pintaviimeistelyä."
  1880. msgctxt "ooze_shield_angle label"
  1881. msgid "Ooze Shield Angle"
  1882. msgstr "Tihkusuojuksen kulma"
  1883. msgctxt "ooze_shield_dist label"
  1884. msgid "Ooze Shield Distance"
  1885. msgstr "Tihkusuojuksen etäisyys"
  1886. msgctxt "support_tree_branch_reach_limit label"
  1887. msgid "Optimal Branch Range"
  1888. msgstr ""
  1889. msgctxt "optimize_wall_printing_order label"
  1890. msgid "Optimize Wall Printing Order"
  1891. msgstr "Optimoi seinämien tulostusjärjestys"
  1892. msgctxt "optimize_wall_printing_order description"
  1893. 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."
  1894. msgstr ""
  1895. msgctxt "machine_nozzle_tip_outer_diameter label"
  1896. msgid "Outer Nozzle Diameter"
  1897. msgstr ""
  1898. msgctxt "acceleration_wall_0 label"
  1899. msgid "Outer Wall Acceleration"
  1900. msgstr "Ulkoseinämän kiihtyvyys"
  1901. msgctxt "wall_0_extruder_nr label"
  1902. msgid "Outer Wall Extruder"
  1903. msgstr "Ulkoseinämän suulake"
  1904. msgctxt "wall_0_material_flow label"
  1905. msgid "Outer Wall Flow"
  1906. msgstr ""
  1907. msgctxt "wall_0_inset label"
  1908. msgid "Outer Wall Inset"
  1909. msgstr "Ulkoseinämän liitos"
  1910. msgctxt "jerk_wall_0 label"
  1911. msgid "Outer Wall Jerk"
  1912. msgstr "Ulkoseinämän nykäisy"
  1913. msgctxt "wall_line_width_0 label"
  1914. msgid "Outer Wall Line Width"
  1915. msgstr "Ulkoseinämän linjaleveys"
  1916. msgctxt "speed_wall_0 label"
  1917. msgid "Outer Wall Speed"
  1918. msgstr "Ulkoseinämänopeus"
  1919. msgctxt "wall_0_wipe_dist label"
  1920. msgid "Outer Wall Wipe Distance"
  1921. msgstr "Ulkoseinämän täyttöliikkeen etäisyys"
  1922. msgctxt "group_outer_walls description"
  1923. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  1924. msgstr "Samaan kerrokseen kuuluvat eri saarten ulkoseinät tulostetaan peräkkäin. Kun toiminto on käytössä, virtauksen muutosten määrä on rajoitettu, koska seinät tulostetaan yksi kerrallaan. Kun toiminto on pois päältä, matkojen määrä saarten välillä vähenee, koska saman saaren seinät ryhmitellään."
  1925. msgctxt "brim_location option outside"
  1926. msgid "Outside Only"
  1927. msgstr ""
  1928. msgctxt "inset_direction option outside_in"
  1929. msgid "Outside To Inside"
  1930. msgstr ""
  1931. msgctxt "wall_overhang_angle label"
  1932. msgid "Overhanging Wall Angle"
  1933. msgstr ""
  1934. msgctxt "wall_overhang_speed_factor label"
  1935. msgid "Overhanging Wall Speed"
  1936. msgstr ""
  1937. msgctxt "wall_overhang_speed_factor description"
  1938. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1939. msgstr ""
  1940. msgctxt "wipe_pause description"
  1941. msgid "Pause after the unretract."
  1942. msgstr ""
  1943. msgctxt "bridge_fan_speed description"
  1944. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1945. msgstr ""
  1946. msgctxt "bridge_fan_speed_2 description"
  1947. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1948. msgstr ""
  1949. msgctxt "support_supported_skin_fan_speed description"
  1950. 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."
  1951. msgstr ""
  1952. msgctxt "bridge_fan_speed_3 description"
  1953. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1954. msgstr ""
  1955. msgctxt "minimum_polygon_circumference description"
  1956. 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."
  1957. msgstr ""
  1958. msgctxt "support_tree_angle_slow label"
  1959. msgid "Preferred Branch Angle"
  1960. msgstr ""
  1961. msgctxt "wall_transition_filter_deviation description"
  1962. 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."
  1963. msgstr ""
  1964. msgctxt "acceleration_prime_tower label"
  1965. msgid "Prime Tower Acceleration"
  1966. msgstr "Esitäyttötornin kiihtyvyys"
  1967. msgctxt "prime_tower_brim_enable label"
  1968. msgid "Prime Tower Base"
  1969. msgstr ""
  1970. msgctxt "prime_tower_base_height label"
  1971. msgid "Prime Tower Base Height"
  1972. msgstr ""
  1973. msgctxt "prime_tower_base_size label"
  1974. msgid "Prime Tower Base Size"
  1975. msgstr ""
  1976. msgctxt "prime_tower_base_curve_magnitude label"
  1977. msgid "Prime Tower Base Slope"
  1978. msgstr ""
  1979. msgctxt "prime_tower_flow label"
  1980. msgid "Prime Tower Flow"
  1981. msgstr "Esitäyttötornin virtaus"
  1982. msgctxt "jerk_prime_tower label"
  1983. msgid "Prime Tower Jerk"
  1984. msgstr "Esitäyttötornin nykäisy"
  1985. msgctxt "prime_tower_line_width label"
  1986. msgid "Prime Tower Line Width"
  1987. msgstr "Esitäyttötornin linjan leveys"
  1988. msgctxt "prime_tower_max_bridging_distance label"
  1989. msgid "Prime Tower Maximum Bridging Distance"
  1990. msgstr ""
  1991. msgctxt "prime_tower_min_volume label"
  1992. msgid "Prime Tower Minimum Volume"
  1993. msgstr "Esitäyttötornin minimiainemäärä"
  1994. msgctxt "prime_tower_raft_base_line_spacing label"
  1995. msgid "Prime Tower Raft Line Spacing"
  1996. msgstr ""
  1997. msgctxt "prime_tower_size label"
  1998. msgid "Prime Tower Size"
  1999. msgstr "Esitäyttötornin koko"
  2000. msgctxt "speed_prime_tower label"
  2001. msgid "Prime Tower Speed"
  2002. msgstr "Esitäyttötornin nopeus"
  2003. msgctxt "prime_tower_mode label"
  2004. msgid "Prime Tower Type"
  2005. msgstr ""
  2006. msgctxt "prime_tower_position_x label"
  2007. msgid "Prime Tower X Position"
  2008. msgstr "Esitäyttötornin X-sijainti"
  2009. msgctxt "prime_tower_position_y label"
  2010. msgid "Prime Tower Y Position"
  2011. msgstr "Esitäyttötornin Y-sijainti"
  2012. msgctxt "acceleration_print label"
  2013. msgid "Print Acceleration"
  2014. msgstr "Tulostuksen kiihtyvyys"
  2015. msgctxt "jerk_print label"
  2016. msgid "Print Jerk"
  2017. msgstr "Tulostuksen nykäisy"
  2018. msgctxt "ppr label"
  2019. msgid "Print Process Reporting"
  2020. msgstr ""
  2021. msgctxt "print_sequence label"
  2022. msgid "Print Sequence"
  2023. msgstr "Tulostusjärjestys"
  2024. msgctxt "speed_print label"
  2025. msgid "Print Speed"
  2026. msgstr "Tulostusnopeus"
  2027. msgctxt "fill_outline_gaps label"
  2028. msgid "Print Thin Walls"
  2029. msgstr "Tulosta ohuet seinämät"
  2030. msgctxt "brim_location description"
  2031. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  2032. msgstr ""
  2033. msgctxt "prime_tower_enable description"
  2034. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2035. msgstr "Tulosta tulosteen viereen torni, jolla materiaali esitäytetään aina suuttimen vaihdon jälkeen."
  2036. msgctxt "infill_support_enabled description"
  2037. 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."
  2038. msgstr ""
  2039. msgctxt "ironing_monotonic description"
  2040. 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."
  2041. msgstr ""
  2042. msgctxt "mold_enabled description"
  2043. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2044. msgstr "Tulosta malleja muotteina, jotka voidaan valaa niin, että saadaan alustalla olevia malleja muistuttava malli."
  2045. msgctxt "fill_outline_gaps description"
  2046. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2047. msgstr "Tulostaa mallin kohtia, jotka ovat vaakasuunnassa suuttimen kokoa ohuempia."
  2048. msgctxt "raft_surface_monotonic description"
  2049. msgid "Print raft 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 the surface look more consistent, which is also visible on the model bottom surface."
  2050. msgstr ""
  2051. msgctxt "bridge_skin_speed_2 description"
  2052. msgid "Print speed to use when printing the second bridge skin layer."
  2053. msgstr ""
  2054. msgctxt "bridge_skin_speed_3 description"
  2055. msgid "Print speed to use when printing the third bridge skin layer."
  2056. msgstr ""
  2057. msgctxt "print_temp_anomaly_limit label"
  2058. msgid "Print temperature Limit"
  2059. msgstr ""
  2060. msgctxt "print_temp_warn_limit label"
  2061. msgid "Print temperature Warning"
  2062. msgstr ""
  2063. msgctxt "infill_before_walls description"
  2064. 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."
  2065. 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."
  2066. msgctxt "roofing_monotonic description"
  2067. 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."
  2068. msgstr ""
  2069. msgctxt "skin_monotonic description"
  2070. 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."
  2071. msgstr ""
  2072. msgctxt "material_print_temperature label"
  2073. msgid "Printing Temperature"
  2074. msgstr "Tulostuslämpötila"
  2075. msgctxt "material_print_temperature_layer_0 label"
  2076. msgid "Printing Temperature Initial Layer"
  2077. msgstr "Alkukerroksen tulostuslämpötila"
  2078. msgctxt "skirt_height description"
  2079. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2080. msgstr ""
  2081. msgctxt "alternate_extra_perimeter description"
  2082. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2083. 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."
  2084. msgctxt "resolution label"
  2085. msgid "Quality"
  2086. msgstr "Laatu"
  2087. msgctxt "infill_pattern option quarter_cubic"
  2088. msgid "Quarter Cubic"
  2089. msgstr "Neljänneskuutio"
  2090. msgctxt "adhesion_type option raft"
  2091. msgid "Raft"
  2092. msgstr "Pohjaristikko"
  2093. msgctxt "raft_airgap label"
  2094. msgid "Raft Air Gap"
  2095. msgstr "Pohjaristikon ilmarako"
  2096. msgctxt "raft_base_margin label"
  2097. msgid "Raft Base Extra Margin"
  2098. msgstr ""
  2099. msgctxt "raft_base_extruder_nr label"
  2100. msgid "Raft Base Extruder"
  2101. msgstr ""
  2102. msgctxt "raft_base_fan_speed label"
  2103. msgid "Raft Base Fan Speed"
  2104. msgstr "Pohjaristikon pohjan tuulettimen nopeus"
  2105. msgctxt "raft_base_line_spacing label"
  2106. msgid "Raft Base Line Spacing"
  2107. msgstr ""
  2108. msgctxt "raft_base_line_width label"
  2109. msgid "Raft Base Line Width"
  2110. msgstr "Pohjaristikon pohjan linjaleveys"
  2111. msgctxt "raft_base_acceleration label"
  2112. msgid "Raft Base Print Acceleration"
  2113. msgstr "Pohjaristikon pohjan tulostuksen kiihtyvyys"
  2114. msgctxt "raft_base_jerk label"
  2115. msgid "Raft Base Print Jerk"
  2116. msgstr "Pohjaristikon pohjan tulostuksen nykäisy"
  2117. msgctxt "raft_base_speed label"
  2118. msgid "Raft Base Print Speed"
  2119. msgstr "Pohjaristikon pohjan tulostusnopeus"
  2120. msgctxt "raft_base_smoothing label"
  2121. msgid "Raft Base Smoothing"
  2122. msgstr ""
  2123. msgctxt "raft_base_thickness label"
  2124. msgid "Raft Base Thickness"
  2125. msgstr "Pohjaristikon pohjan paksuus"
  2126. msgctxt "raft_base_wall_count label"
  2127. msgid "Raft Base Wall Count"
  2128. msgstr ""
  2129. msgctxt "raft_margin label"
  2130. msgid "Raft Extra Margin"
  2131. msgstr "Pohjaristikon lisämarginaali"
  2132. msgctxt "raft_fan_speed label"
  2133. msgid "Raft Fan Speed"
  2134. msgstr "Pohjaristikon tuulettimen nopeus"
  2135. msgctxt "raft_interface_margin label"
  2136. msgid "Raft Middle Extra Margin"
  2137. msgstr ""
  2138. msgctxt "raft_interface_extruder_nr label"
  2139. msgid "Raft Middle Extruder"
  2140. msgstr ""
  2141. msgctxt "raft_interface_fan_speed label"
  2142. msgid "Raft Middle Fan Speed"
  2143. msgstr "Pohjaristikon keskikerroksen tuulettimen nopeus"
  2144. msgctxt "raft_interface_layers label"
  2145. msgid "Raft Middle Layers"
  2146. msgstr ""
  2147. msgctxt "raft_interface_line_width label"
  2148. msgid "Raft Middle Line Width"
  2149. msgstr "Pohjaristikon keskikerroksen linjaleveys"
  2150. msgctxt "raft_interface_acceleration label"
  2151. msgid "Raft Middle Print Acceleration"
  2152. msgstr "Pohjaristikon keskikerroksen tulostuksen kiihtyvyys"
  2153. msgctxt "raft_interface_jerk label"
  2154. msgid "Raft Middle Print Jerk"
  2155. msgstr "Pohjaristikon keskikerroksen tulostuksen nykäisy"
  2156. msgctxt "raft_interface_speed label"
  2157. msgid "Raft Middle Print Speed"
  2158. msgstr "Pohjaristikon keskikerroksen tulostusnopeus"
  2159. msgctxt "raft_interface_smoothing label"
  2160. msgid "Raft Middle Smoothing"
  2161. msgstr ""
  2162. msgctxt "raft_interface_line_spacing label"
  2163. msgid "Raft Middle Spacing"
  2164. msgstr "Pohjaristikon keskikerroksen linjajako"
  2165. msgctxt "raft_interface_thickness label"
  2166. msgid "Raft Middle Thickness"
  2167. msgstr "Pohjaristikon keskikerroksen paksuus"
  2168. msgctxt "raft_interface_wall_count label"
  2169. msgid "Raft Middle Wall Count"
  2170. msgstr ""
  2171. msgctxt "raft_acceleration label"
  2172. msgid "Raft Print Acceleration"
  2173. msgstr "Pohjaristikon tulostuksen kiihtyvyys"
  2174. msgctxt "raft_jerk label"
  2175. msgid "Raft Print Jerk"
  2176. msgstr "Pohjaristikon tulostuksen nykäisy"
  2177. msgctxt "raft_speed label"
  2178. msgid "Raft Print Speed"
  2179. msgstr "Pohjaristikon tulostusnopeus"
  2180. msgctxt "raft_smoothing label"
  2181. msgid "Raft Smoothing"
  2182. msgstr "Pohjaristikon tasoitus"
  2183. msgctxt "raft_surface_margin label"
  2184. msgid "Raft Top Extra Margin"
  2185. msgstr ""
  2186. msgctxt "raft_surface_extruder_nr label"
  2187. msgid "Raft Top Extruder"
  2188. msgstr ""
  2189. msgctxt "raft_surface_fan_speed label"
  2190. msgid "Raft Top Fan Speed"
  2191. msgstr "Pohjaristikon pinnan tuulettimen nopeus"
  2192. msgctxt "raft_surface_thickness label"
  2193. msgid "Raft Top Layer Thickness"
  2194. msgstr "Pohjaristikon pintakerroksen paksuus"
  2195. msgctxt "raft_surface_layers label"
  2196. msgid "Raft Top Layers"
  2197. msgstr "Pohjaristikon pintakerrokset"
  2198. msgctxt "raft_surface_line_width label"
  2199. msgid "Raft Top Line Width"
  2200. msgstr "Pohjaristikon pinnan linjaleveys"
  2201. msgctxt "raft_surface_acceleration label"
  2202. msgid "Raft Top Print Acceleration"
  2203. msgstr "Pohjaristikon pinnan tulostuksen kiihtyvyys"
  2204. msgctxt "raft_surface_jerk label"
  2205. msgid "Raft Top Print Jerk"
  2206. msgstr "Pohjaristikon pinnan tulostuksen nykäisy"
  2207. msgctxt "raft_surface_speed label"
  2208. msgid "Raft Top Print Speed"
  2209. msgstr "Pohjaristikon pinnan tulostusnopeus"
  2210. msgctxt "raft_surface_smoothing label"
  2211. msgid "Raft Top Smoothing"
  2212. msgstr ""
  2213. msgctxt "raft_surface_line_spacing label"
  2214. msgid "Raft Top Spacing"
  2215. msgstr "Pohjaristikon pinnan linjajako"
  2216. msgctxt "raft_surface_wall_count label"
  2217. msgid "Raft Top Wall Count"
  2218. msgstr ""
  2219. msgctxt "raft_wall_count label"
  2220. msgid "Raft Wall Count"
  2221. msgstr ""
  2222. msgctxt "z_seam_type option random"
  2223. msgid "Random"
  2224. msgstr "Satunnainen"
  2225. msgctxt "infill_randomize_start_location label"
  2226. msgid "Randomize Infill Start"
  2227. msgstr ""
  2228. msgctxt "infill_randomize_start_location description"
  2229. 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."
  2230. msgstr ""
  2231. msgctxt "magic_fuzzy_skin_enabled description"
  2232. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2233. msgstr "Satunnainen värinä tulostettaessa ulkoseinämää, jotta pinta näyttää viimeistelemättömältä ja karhealta."
  2234. msgctxt "machine_shape option rectangular"
  2235. msgid "Rectangular"
  2236. msgstr "Suorakulmainen"
  2237. msgctxt "cool_fan_speed_min label"
  2238. msgid "Regular Fan Speed"
  2239. msgstr "Normaali tuulettimen nopeus"
  2240. msgctxt "cool_fan_full_at_height label"
  2241. msgid "Regular Fan Speed at Height"
  2242. msgstr "Normaali tuulettimen nopeus korkeudella"
  2243. msgctxt "cool_fan_full_layer label"
  2244. msgid "Regular Fan Speed at Layer"
  2245. msgstr "Normaali tuulettimen nopeus kerroksessa"
  2246. msgctxt "cool_min_layer_time_fan_speed_max label"
  2247. msgid "Regular/Maximum Fan Speed Threshold"
  2248. msgstr "Tuulettimen normaali-/maksiminopeuden raja-arvo"
  2249. msgctxt "relative_extrusion label"
  2250. msgid "Relative Extrusion"
  2251. msgstr "Suhteellinen pursotus"
  2252. msgctxt "meshfix_union_all_remove_holes label"
  2253. msgid "Remove All Holes"
  2254. msgstr "Poista kaikki reiät"
  2255. msgctxt "remove_empty_first_layers label"
  2256. msgid "Remove Empty First Layers"
  2257. msgstr ""
  2258. msgctxt "carve_multiple_volumes label"
  2259. msgid "Remove Mesh Intersection"
  2260. msgstr "Poista verkon leikkauspiste"
  2261. msgctxt "raft_base_remove_inside_corners label"
  2262. msgid "Remove Raft Base Inside Corners"
  2263. msgstr ""
  2264. msgctxt "raft_remove_inside_corners label"
  2265. msgid "Remove Raft Inside Corners"
  2266. msgstr ""
  2267. msgctxt "raft_interface_remove_inside_corners label"
  2268. msgid "Remove Raft Middle Inside Corners"
  2269. msgstr ""
  2270. msgctxt "raft_surface_remove_inside_corners label"
  2271. msgid "Remove Raft Top Inside Corners"
  2272. msgstr ""
  2273. msgctxt "carve_multiple_volumes description"
  2274. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2275. msgstr "Poistaa alueet, joissa useat verkot ovat limittäin toistensa kanssa. Tätä voidaan käyttää, jos yhdistetyt kaksoismateriaalikappaleet ovat limittäin toistensa kanssa."
  2276. msgctxt "remove_empty_first_layers description"
  2277. 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."
  2278. msgstr ""
  2279. msgctxt "raft_base_remove_inside_corners description"
  2280. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  2281. msgstr ""
  2282. msgctxt "raft_interface_remove_inside_corners description"
  2283. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  2284. msgstr ""
  2285. msgctxt "raft_surface_remove_inside_corners description"
  2286. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  2287. msgstr ""
  2288. msgctxt "raft_remove_inside_corners description"
  2289. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2290. msgstr ""
  2291. msgctxt "meshfix_union_all_remove_holes description"
  2292. 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."
  2293. 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."
  2294. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2295. msgid "RepRap"
  2296. msgstr "RepRap"
  2297. msgctxt "machine_gcode_flavor option Repetier"
  2298. msgid "Repetier"
  2299. msgstr "Repetier"
  2300. msgctxt "skin_outline_count description"
  2301. 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."
  2302. msgstr "Korvaa ylä-/alakuvion uloimman osan samankeskisillä linjoilla. Yhden tai kahden linjan käyttäminen parantaa kattoja, jotka alkavat täyttömateriaalin keskeltä."
  2303. msgctxt "ppr description"
  2304. msgid "Reporting events that go out of set thresholds"
  2305. msgstr ""
  2306. msgctxt "support_tree_rest_preference label"
  2307. msgid "Rest Preference"
  2308. msgstr ""
  2309. msgctxt "travel_retract_before_outer_wall label"
  2310. msgid "Retract Before Outer Wall"
  2311. msgstr "Vedä takaisin ennen ulkoseinämää"
  2312. msgctxt "retract_at_layer_change label"
  2313. msgid "Retract at Layer Change"
  2314. msgstr "Takaisinveto kerroksen muuttuessa"
  2315. msgctxt "retraction_enable description"
  2316. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2317. msgstr ""
  2318. msgctxt "wipe_retraction_enable description"
  2319. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2320. msgstr ""
  2321. msgctxt "retract_at_layer_change description"
  2322. msgid "Retract the filament when the nozzle is moving to the next layer."
  2323. msgstr "Vedä tulostuslanka takaisin, kun suutin on siirtymässä seuraavaan kerrokseen."
  2324. msgctxt "retraction_amount label"
  2325. msgid "Retraction Distance"
  2326. msgstr "Takaisinvetoetäisyys"
  2327. msgctxt "retraction_extra_prime_amount label"
  2328. msgid "Retraction Extra Prime Amount"
  2329. msgstr "Takaisinvedon esitäytön lisäys"
  2330. msgctxt "retraction_min_travel label"
  2331. msgid "Retraction Minimum Travel"
  2332. msgstr "Takaisinvedon minimiliike"
  2333. msgctxt "retraction_prime_speed label"
  2334. msgid "Retraction Prime Speed"
  2335. msgstr "Takaisinvedon esitäyttönopeus"
  2336. msgctxt "retraction_retract_speed label"
  2337. msgid "Retraction Retract Speed"
  2338. msgstr "Takaisinvedon vetonopeus"
  2339. msgctxt "retraction_speed label"
  2340. msgid "Retraction Speed"
  2341. msgstr "Takaisinvetonopeus"
  2342. msgctxt "z_seam_position option right"
  2343. msgid "Right"
  2344. msgstr ""
  2345. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2346. msgid "Scale Fan Speed To 0-1"
  2347. msgstr ""
  2348. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2349. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2350. msgstr ""
  2351. msgctxt "material_shrinkage_percentage label"
  2352. msgid "Scaling Factor Shrinkage Compensation"
  2353. msgstr ""
  2354. msgctxt "support_meshes_present label"
  2355. msgid "Scene Has Support Meshes"
  2356. msgstr ""
  2357. msgctxt "z_seam_corner label"
  2358. msgid "Seam Corner Preference"
  2359. msgstr "Saumakulmien asetus"
  2360. msgctxt "user_defined_print_order_enabled label"
  2361. msgid "Set Print Sequence Manually"
  2362. msgstr "Aseta tulostusjärjestys manuaalisesti"
  2363. msgctxt "draft_shield_height_limitation description"
  2364. 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."
  2365. msgstr "Aseta vetosuojuksen korkeus. Valitse, tulostetaanko vetosuojus koko mallin korkuisena vai rajoitetun korkuisena."
  2366. msgctxt "dual description"
  2367. msgid "Settings used for printing with multiple extruders."
  2368. msgstr "Asetukset, joita käytetään monilla suulakkeilla tulostukseen."
  2369. msgctxt "command_line_settings description"
  2370. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2371. msgstr "Asetukset, joita käytetään vain jos CuraEnginea ei kutsuta Cura-edustaohjelmasta."
  2372. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2373. msgid "Shared Nozzle Initial Retraction"
  2374. msgstr ""
  2375. msgctxt "z_seam_type option sharpest_corner"
  2376. msgid "Sharpest Corner"
  2377. msgstr "Terävin kulma"
  2378. msgctxt "shell description"
  2379. msgid "Shell"
  2380. msgstr "Kuori"
  2381. msgctxt "z_seam_type option shortest"
  2382. msgid "Shortest"
  2383. msgstr "Lyhin"
  2384. msgctxt "machine_show_variants label"
  2385. msgid "Show Machine Variants"
  2386. msgstr "Näytä laitteen variantit"
  2387. msgctxt "skin_edge_support_layers label"
  2388. msgid "Skin Edge Support Layers"
  2389. msgstr ""
  2390. msgctxt "skin_edge_support_thickness label"
  2391. msgid "Skin Edge Support Thickness"
  2392. msgstr ""
  2393. msgctxt "expand_skins_expand_distance label"
  2394. msgid "Skin Expand Distance"
  2395. msgstr "Pintakalvon laajennuksen etäisyys"
  2396. msgctxt "skin_overlap_mm label"
  2397. msgid "Skin Overlap"
  2398. msgstr "Pintakalvon limitys"
  2399. msgctxt "skin_overlap label"
  2400. msgid "Skin Overlap Percentage"
  2401. msgstr "Pintakalvon limityksen prosentti"
  2402. msgctxt "skin_preshrink label"
  2403. msgid "Skin Removal Width"
  2404. msgstr "Pintakalvon poistoleveys"
  2405. msgctxt "min_skin_width_for_expansion description"
  2406. 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."
  2407. 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."
  2408. msgctxt "support_zag_skip_count description"
  2409. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2410. msgstr "Ohita joka N. yhdistämislinja, jotta tukirakenne on helpompi rikkoa."
  2411. msgctxt "support_skip_some_zags description"
  2412. 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."
  2413. msgstr "Ohita jotkin tukilinjojen yhdistämiset, jotta tukirakenne on helpompi rikkoa. Tämä asetus soveltuu siksak-tukitäyttökuvioon."
  2414. msgctxt "adhesion_type option skirt"
  2415. msgid "Skirt"
  2416. msgstr "Helma"
  2417. msgctxt "skirt_gap label"
  2418. msgid "Skirt Distance"
  2419. msgstr "Helman etäisyys"
  2420. msgctxt "skirt_height label"
  2421. msgid "Skirt Height"
  2422. msgstr ""
  2423. msgctxt "skirt_line_count label"
  2424. msgid "Skirt Line Count"
  2425. msgstr "Helman linjaluku"
  2426. msgctxt "acceleration_skirt_brim label"
  2427. msgid "Skirt/Brim Acceleration"
  2428. msgstr "Helman/reunuksen kiihtyvyys"
  2429. msgctxt "skirt_brim_extruder_nr label"
  2430. msgid "Skirt/Brim Extruder"
  2431. msgstr ""
  2432. msgctxt "skirt_brim_material_flow label"
  2433. msgid "Skirt/Brim Flow"
  2434. msgstr ""
  2435. msgctxt "jerk_skirt_brim label"
  2436. msgid "Skirt/Brim Jerk"
  2437. msgstr "Helman/reunuksen nykäisy"
  2438. msgctxt "skirt_brim_line_width label"
  2439. msgid "Skirt/Brim Line Width"
  2440. msgstr "Helma-/reunuslinjan leveys"
  2441. msgctxt "skirt_brim_minimal_length label"
  2442. msgid "Skirt/Brim Minimum Length"
  2443. msgstr "Helman/reunuksen minimipituus"
  2444. msgctxt "skirt_brim_speed label"
  2445. msgid "Skirt/Brim Speed"
  2446. msgstr "Helman/reunuksen nopeus"
  2447. msgctxt "slicing_tolerance label"
  2448. msgid "Slicing Tolerance"
  2449. msgstr ""
  2450. msgctxt "small_feature_speed_factor_0 label"
  2451. msgid "Small Feature Initial Layer Speed"
  2452. msgstr ""
  2453. msgctxt "small_feature_max_length label"
  2454. msgid "Small Feature Max Length"
  2455. msgstr ""
  2456. msgctxt "small_feature_speed_factor label"
  2457. msgid "Small Feature Speed"
  2458. msgstr ""
  2459. msgctxt "small_hole_max_size label"
  2460. msgid "Small Hole Max Size"
  2461. msgstr ""
  2462. msgctxt "cool_min_temperature label"
  2463. msgid "Small Layer Printing Temperature"
  2464. msgstr "Tulostuslämpötila lopussa"
  2465. msgctxt "small_skin_on_surface label"
  2466. msgid "Small Top/Bottom On Surface"
  2467. msgstr ""
  2468. msgctxt "small_skin_width label"
  2469. msgid "Small Top/Bottom Width"
  2470. msgstr ""
  2471. msgctxt "small_feature_speed_factor_0 description"
  2472. 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."
  2473. msgstr ""
  2474. msgctxt "small_feature_speed_factor description"
  2475. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2476. msgstr ""
  2477. msgctxt "small_skin_width description"
  2478. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  2479. msgstr ""
  2480. msgctxt "brim_smart_ordering label"
  2481. msgid "Smart Brim"
  2482. msgstr ""
  2483. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2484. msgid "Smart Hiding"
  2485. msgstr ""
  2486. msgctxt "smooth_spiralized_contours label"
  2487. msgid "Smooth Spiralized Contours"
  2488. msgstr "Kierukoitujen ääriviivojen tasoittaminen"
  2489. msgctxt "smooth_spiralized_contours description"
  2490. 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."
  2491. msgstr ""
  2492. msgctxt "retraction_extra_prime_amount description"
  2493. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2494. msgstr "Siirtoliikkeen yhteydessä materiaalia voi tihkua pois. Sitä voidaan kompensoida tässä."
  2495. msgctxt "wipe_retraction_extra_prime_amount description"
  2496. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2497. msgstr ""
  2498. msgctxt "blackmagic label"
  2499. msgid "Special Modes"
  2500. msgstr "Erikoistilat"
  2501. msgctxt "speed description"
  2502. msgid "Speed"
  2503. msgstr "Nopeus"
  2504. msgctxt "speed label"
  2505. msgid "Speed"
  2506. msgstr "Nopeus"
  2507. msgctxt "wipe_hop_speed description"
  2508. msgid "Speed to move the z-axis during the hop."
  2509. msgstr ""
  2510. msgctxt "magic_spiralize label"
  2511. msgid "Spiralize Outer Contour"
  2512. msgstr "Kierukoi ulompi ääriviiva"
  2513. msgctxt "magic_spiralize description"
  2514. 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."
  2515. 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."
  2516. msgctxt "material_standby_temperature label"
  2517. msgid "Standby Temperature"
  2518. msgstr "Valmiuslämpötila"
  2519. msgctxt "machine_start_gcode label"
  2520. msgid "Start G-code"
  2521. msgstr ""
  2522. msgctxt "z_seam_type description"
  2523. 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."
  2524. 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."
  2525. msgctxt "machine_steps_per_mm_e label"
  2526. msgid "Steps per Millimeter (E)"
  2527. msgstr ""
  2528. msgctxt "machine_steps_per_mm_x label"
  2529. msgid "Steps per Millimeter (X)"
  2530. msgstr ""
  2531. msgctxt "machine_steps_per_mm_y label"
  2532. msgid "Steps per Millimeter (Y)"
  2533. msgstr ""
  2534. msgctxt "machine_steps_per_mm_z label"
  2535. msgid "Steps per Millimeter (Z)"
  2536. msgstr ""
  2537. msgctxt "support description"
  2538. msgid "Support"
  2539. msgstr "Tuki"
  2540. msgctxt "support label"
  2541. msgid "Support"
  2542. msgstr "Tuki"
  2543. msgctxt "acceleration_support label"
  2544. msgid "Support Acceleration"
  2545. msgstr "Tuen kiihtyvyys"
  2546. msgctxt "support_bottom_distance label"
  2547. msgid "Support Bottom Distance"
  2548. msgstr "Tuen alaosan etäisyys"
  2549. msgctxt "support_bottom_wall_count label"
  2550. msgid "Support Bottom Wall Line Count"
  2551. msgstr "Tukilohkolinjaluku"
  2552. msgctxt "support_brim_line_count label"
  2553. msgid "Support Brim Line Count"
  2554. msgstr ""
  2555. msgctxt "support_brim_width label"
  2556. msgid "Support Brim Width"
  2557. msgstr ""
  2558. msgctxt "support_zag_skip_count label"
  2559. msgid "Support Chunk Line Count"
  2560. msgstr "Tukilohkolinjaluku"
  2561. msgctxt "support_skip_zag_per_mm label"
  2562. msgid "Support Chunk Size"
  2563. msgstr "Tukilohkon koko"
  2564. msgctxt "support_infill_rate label"
  2565. msgid "Support Density"
  2566. msgstr "Tuen tiheys"
  2567. msgctxt "support_xy_overrides_z label"
  2568. msgid "Support Distance Priority"
  2569. msgstr "Tuen etäisyyden prioriteetti"
  2570. msgctxt "support_extruder_nr label"
  2571. msgid "Support Extruder"
  2572. msgstr "Tuen suulake"
  2573. msgctxt "acceleration_support_bottom label"
  2574. msgid "Support Floor Acceleration"
  2575. msgstr "Tukilattian kiihtyvyys"
  2576. msgctxt "support_bottom_density label"
  2577. msgid "Support Floor Density"
  2578. msgstr "Tukilattian tiheys"
  2579. msgctxt "support_bottom_extruder_nr label"
  2580. msgid "Support Floor Extruder"
  2581. msgstr "Tukilattian suulake"
  2582. msgctxt "support_bottom_material_flow label"
  2583. msgid "Support Floor Flow"
  2584. msgstr ""
  2585. msgctxt "support_bottom_offset label"
  2586. msgid "Support Floor Horizontal Expansion"
  2587. msgstr ""
  2588. msgctxt "jerk_support_bottom label"
  2589. msgid "Support Floor Jerk"
  2590. msgstr "Tukilattian nykäisy"
  2591. msgctxt "support_bottom_angles label"
  2592. msgid "Support Floor Line Directions"
  2593. msgstr ""
  2594. msgctxt "support_bottom_line_distance label"
  2595. msgid "Support Floor Line Distance"
  2596. msgstr "Tukilattian linjaetäisyys"
  2597. msgctxt "support_bottom_line_width label"
  2598. msgid "Support Floor Line Width"
  2599. msgstr "Tukilattian linjaleveys"
  2600. msgctxt "support_bottom_pattern label"
  2601. msgid "Support Floor Pattern"
  2602. msgstr "Tukilattian kuvio"
  2603. msgctxt "speed_support_bottom label"
  2604. msgid "Support Floor Speed"
  2605. msgstr "Tukilattian nopeus"
  2606. msgctxt "support_bottom_height label"
  2607. msgid "Support Floor Thickness"
  2608. msgstr "Tukilattian paksuus"
  2609. msgctxt "support_material_flow label"
  2610. msgid "Support Flow"
  2611. msgstr ""
  2612. msgctxt "support_offset label"
  2613. msgid "Support Horizontal Expansion"
  2614. msgstr "Tuen vaakalaajennus"
  2615. msgctxt "acceleration_support_infill label"
  2616. msgid "Support Infill Acceleration"
  2617. msgstr "Tuen täytön kiihtyvyys"
  2618. msgctxt "support_infill_extruder_nr label"
  2619. msgid "Support Infill Extruder"
  2620. msgstr "Tuen täytön suulake"
  2621. msgctxt "jerk_support_infill label"
  2622. msgid "Support Infill Jerk"
  2623. msgstr "Tuen täytön nykäisy"
  2624. msgctxt "support_infill_sparse_thickness label"
  2625. msgid "Support Infill Layer Thickness"
  2626. msgstr "Tuen täyttökerroksen paksuus"
  2627. msgctxt "support_infill_angles label"
  2628. msgid "Support Infill Line Directions"
  2629. msgstr ""
  2630. msgctxt "speed_support_infill label"
  2631. msgid "Support Infill Speed"
  2632. msgstr "Tuen täytön nopeus"
  2633. msgctxt "acceleration_support_interface label"
  2634. msgid "Support Interface Acceleration"
  2635. msgstr "Tukiliittymän kiihtyvyys"
  2636. msgctxt "support_interface_density label"
  2637. msgid "Support Interface Density"
  2638. msgstr "Tukiliittymän tiheys"
  2639. msgctxt "support_interface_extruder_nr label"
  2640. msgid "Support Interface Extruder"
  2641. msgstr "Tukiliittymän suulake"
  2642. msgctxt "support_interface_material_flow label"
  2643. msgid "Support Interface Flow"
  2644. msgstr ""
  2645. msgctxt "support_interface_offset label"
  2646. msgid "Support Interface Horizontal Expansion"
  2647. msgstr ""
  2648. msgctxt "jerk_support_interface label"
  2649. msgid "Support Interface Jerk"
  2650. msgstr "Tukiliittymän nykäisy"
  2651. msgctxt "support_interface_angles label"
  2652. msgid "Support Interface Line Directions"
  2653. msgstr ""
  2654. msgctxt "support_interface_line_width label"
  2655. msgid "Support Interface Line Width"
  2656. msgstr "Tukiliittymän linjan leveys"
  2657. msgctxt "support_interface_pattern label"
  2658. msgid "Support Interface Pattern"
  2659. msgstr "Tukiliittymän kuvio"
  2660. msgctxt "support_interface_priority label"
  2661. msgid "Support Interface Priority"
  2662. msgstr ""
  2663. msgctxt "speed_support_interface label"
  2664. msgid "Support Interface Speed"
  2665. msgstr "Tukiliittymän nopeus"
  2666. msgctxt "support_interface_height label"
  2667. msgid "Support Interface Thickness"
  2668. msgstr "Tukiliittymän paksuus"
  2669. msgctxt "support_interface_wall_count label"
  2670. msgid "Support Interface Wall Line Count"
  2671. msgstr "Tukiliittymän linjan leveys"
  2672. msgctxt "jerk_support label"
  2673. msgid "Support Jerk"
  2674. msgstr "Tuen nykäisy"
  2675. msgctxt "support_join_distance label"
  2676. msgid "Support Join Distance"
  2677. msgstr "Tuen liitosetäisyys"
  2678. msgctxt "support_line_distance label"
  2679. msgid "Support Line Distance"
  2680. msgstr "Tukilinjojen etäisyys"
  2681. msgctxt "support_line_width label"
  2682. msgid "Support Line Width"
  2683. msgstr "Tukilinjan leveys"
  2684. msgctxt "support_mesh label"
  2685. msgid "Support Mesh"
  2686. msgstr "Tukiverkko"
  2687. msgctxt "support_angle label"
  2688. msgid "Support Overhang Angle"
  2689. msgstr "Tuen ulokkeen kulma"
  2690. msgctxt "support_pattern label"
  2691. msgid "Support Pattern"
  2692. msgstr "Tukikuvio"
  2693. msgctxt "support_type label"
  2694. msgid "Support Placement"
  2695. msgstr "Tuen sijoittelu"
  2696. msgctxt "acceleration_support_roof label"
  2697. msgid "Support Roof Acceleration"
  2698. msgstr "Tukikaton kiihtyvyys"
  2699. msgctxt "support_roof_density label"
  2700. msgid "Support Roof Density"
  2701. msgstr "Tukikaton tiheys"
  2702. msgctxt "support_roof_extruder_nr label"
  2703. msgid "Support Roof Extruder"
  2704. msgstr "Tukikaton suulake"
  2705. msgctxt "support_roof_material_flow label"
  2706. msgid "Support Roof Flow"
  2707. msgstr ""
  2708. msgctxt "support_roof_offset label"
  2709. msgid "Support Roof Horizontal Expansion"
  2710. msgstr ""
  2711. msgctxt "jerk_support_roof label"
  2712. msgid "Support Roof Jerk"
  2713. msgstr "Tukikaton nykäisy"
  2714. msgctxt "support_roof_angles label"
  2715. msgid "Support Roof Line Directions"
  2716. msgstr ""
  2717. msgctxt "support_roof_line_distance label"
  2718. msgid "Support Roof Line Distance"
  2719. msgstr "Tukikaton linjaetäisyys"
  2720. msgctxt "support_roof_line_width label"
  2721. msgid "Support Roof Line Width"
  2722. msgstr "Tukikaton linjaleveys"
  2723. msgctxt "support_roof_pattern label"
  2724. msgid "Support Roof Pattern"
  2725. msgstr "Tukikaton kuvio"
  2726. msgctxt "speed_support_roof label"
  2727. msgid "Support Roof Speed"
  2728. msgstr "Tukikaton nopeus"
  2729. msgctxt "support_roof_height label"
  2730. msgid "Support Roof Thickness"
  2731. msgstr "Tukikaton paksuus"
  2732. msgctxt "support_roof_wall_count label"
  2733. msgid "Support Roof Wall Line Count"
  2734. msgstr "Tukikaton linjaleveys"
  2735. msgctxt "speed_support label"
  2736. msgid "Support Speed"
  2737. msgstr "Tukirakenteen nopeus"
  2738. msgctxt "support_bottom_stair_step_height label"
  2739. msgid "Support Stair Step Height"
  2740. msgstr "Tuen porrasnousun korkeus"
  2741. msgctxt "support_bottom_stair_step_width label"
  2742. msgid "Support Stair Step Maximum Width"
  2743. msgstr "Tukiportaiden askelman enimmäisleveys"
  2744. msgctxt "support_bottom_stair_step_min_slope label"
  2745. msgid "Support Stair Step Minimum Slope Angle"
  2746. msgstr ""
  2747. msgctxt "support_structure label"
  2748. msgid "Support Structure"
  2749. msgstr ""
  2750. msgctxt "support_top_distance label"
  2751. msgid "Support Top Distance"
  2752. msgstr "Tuen yläosan etäisyys"
  2753. msgctxt "support_wall_count label"
  2754. msgid "Support Wall Line Count"
  2755. msgstr ""
  2756. msgctxt "support_xy_distance label"
  2757. msgid "Support X/Y Distance"
  2758. msgstr "Tuen X-/Y-etäisyys"
  2759. msgctxt "support_z_distance label"
  2760. msgid "Support Z Distance"
  2761. msgstr "Tuen Z-etäisyys"
  2762. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2763. msgid "Support lines preferred"
  2764. msgstr ""
  2765. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2766. msgid "Support preferred"
  2767. msgstr ""
  2768. msgctxt "support_supported_skin_fan_speed label"
  2769. msgid "Supported Skin Fan Speed"
  2770. msgstr ""
  2771. msgctxt "magic_mesh_surface_mode option surface"
  2772. msgid "Surface"
  2773. msgstr "Pinta"
  2774. msgctxt "material_surface_energy label"
  2775. msgid "Surface Energy"
  2776. msgstr ""
  2777. msgctxt "magic_mesh_surface_mode label"
  2778. msgid "Surface Mode"
  2779. msgstr "Pintatila"
  2780. msgctxt "material_adhesion_tendency description"
  2781. msgid "Surface adhesion tendency."
  2782. msgstr ""
  2783. msgctxt "material_surface_energy description"
  2784. msgid "Surface energy."
  2785. msgstr ""
  2786. msgctxt "brim_smart_ordering description"
  2787. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2788. msgstr ""
  2789. msgctxt "alternate_carve_order description"
  2790. 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."
  2791. 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."
  2792. msgctxt "adaptive_layer_height_threshold description"
  2793. 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."
  2794. msgstr ""
  2795. msgctxt "layer_start_x description"
  2796. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2797. msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus."
  2798. msgctxt "z_seam_x description"
  2799. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2800. msgstr "X-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus."
  2801. msgctxt "extruder_prime_pos_x description"
  2802. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2803. msgstr "X-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  2804. msgctxt "layer_start_y description"
  2805. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2806. msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen tulostus."
  2807. msgctxt "z_seam_y description"
  2808. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2809. msgstr "Y-koordinaatti kohdalle, jonka läheltä aloitetaan kunkin kerroksen osuuden tulostus."
  2810. msgctxt "extruder_prime_pos_y description"
  2811. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2812. msgstr "Y-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  2813. msgctxt "extruder_prime_pos_z description"
  2814. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2815. msgstr "Z-koordinaatti sijainnille, jossa suutin esitäytetään tulostusta aloitettaessa."
  2816. msgctxt "acceleration_print_layer_0 description"
  2817. msgid "The acceleration during the printing of the initial layer."
  2818. msgstr "Alkukerroksen tulostuksen aikainen kiihtyvyys."
  2819. msgctxt "acceleration_layer_0 description"
  2820. msgid "The acceleration for the initial layer."
  2821. msgstr "Alkukerroksen kiihtyvyys."
  2822. msgctxt "acceleration_travel_layer_0 description"
  2823. msgid "The acceleration for travel moves in the initial layer."
  2824. msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys."
  2825. msgctxt "jerk_travel_layer_0 description"
  2826. msgid "The acceleration for travel moves in the initial layer."
  2827. msgstr "Alkukerroksen siirtoliikkeiden kiihtyvyys."
  2828. msgctxt "acceleration_wall_x description"
  2829. msgid "The acceleration with which all inner walls are printed."
  2830. msgstr "Kiihtyvyys, jolla kaikki sisäseinämät tulostetaan."
  2831. msgctxt "acceleration_infill description"
  2832. msgid "The acceleration with which infill is printed."
  2833. msgstr "Kiihtyvyys, jolla täyttö tulostetaan."
  2834. msgctxt "acceleration_ironing description"
  2835. msgid "The acceleration with which ironing is performed."
  2836. msgstr "Kiihtyvyys, jolla silitys suoritetaan."
  2837. msgctxt "acceleration_print description"
  2838. msgid "The acceleration with which printing happens."
  2839. msgstr "Kiihtyvyys, jolla tulostetaan."
  2840. msgctxt "raft_base_acceleration description"
  2841. msgid "The acceleration with which the base raft layer is printed."
  2842. msgstr "Kiihtyvyys, jolla pohjaristikon pohjakerros tulostetaan."
  2843. msgctxt "acceleration_support_bottom description"
  2844. 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."
  2845. msgstr "Kiihtyvyys, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa mallin yläosan tuen kiinnittymistä."
  2846. msgctxt "acceleration_support_infill description"
  2847. msgid "The acceleration with which the infill of support is printed."
  2848. msgstr "Kiihtyvyys, jolla tuen täyttö tulostetaan."
  2849. msgctxt "raft_interface_acceleration description"
  2850. msgid "The acceleration with which the middle raft layer is printed."
  2851. msgstr "Kiihtyvyys, jolla pohjaristikon keskikerros tulostetaan."
  2852. msgctxt "acceleration_wall_0 description"
  2853. msgid "The acceleration with which the outermost walls are printed."
  2854. msgstr "Kiihtyvyys, jolla ulkoseinämät tulostetaan."
  2855. msgctxt "acceleration_prime_tower description"
  2856. msgid "The acceleration with which the prime tower is printed."
  2857. msgstr "Kiihtyvyys, jolla esitäyttötorni tulostetaan."
  2858. msgctxt "raft_acceleration description"
  2859. msgid "The acceleration with which the raft is printed."
  2860. msgstr "Kiihtyvyys, jolla pohjaristikko tulostetaan."
  2861. msgctxt "acceleration_support_interface description"
  2862. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2863. msgstr "Kiihtyvyys, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua."
  2864. msgctxt "acceleration_support_roof description"
  2865. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2866. msgstr "Kiihtyvyys, jolla tuen katot tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa ulokkeen laatua."
  2867. msgctxt "acceleration_skirt_brim description"
  2868. 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."
  2869. msgstr "Kiihtyvyys, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen kiihtyvyydellä. Joskus helma tai reunus halutaan kuitenkin tulostaa eri kiihtyvyydellä."
  2870. msgctxt "acceleration_support description"
  2871. msgid "The acceleration with which the support structure is printed."
  2872. msgstr "Kiihtyvyys, jolla tukirakenne tulostetaan."
  2873. msgctxt "raft_surface_acceleration description"
  2874. msgid "The acceleration with which the top raft layers are printed."
  2875. msgstr "Kiihtyvyys, jolla pohjaristikon pintakerrokset tulostetaan."
  2876. msgctxt "acceleration_wall_x_roofing description"
  2877. msgid "The acceleration with which the top surface inner walls are printed."
  2878. msgstr "Yläpinnan sisäseinien tulostamisen kiihtyvyys."
  2879. msgctxt "acceleration_wall_0_roofing description"
  2880. msgid "The acceleration with which the top surface outermost walls are printed."
  2881. msgstr "Yläpinnan uloimpien seinien tulostamisen kiihtyvyys."
  2882. msgctxt "acceleration_wall description"
  2883. msgid "The acceleration with which the walls are printed."
  2884. msgstr "Kiihtyvyys, jolla seinämät tulostetaan."
  2885. msgctxt "acceleration_roofing description"
  2886. msgid "The acceleration with which top surface skin layers are printed."
  2887. msgstr "Kiihtyvyys, jolla yläpinnan pintakalvokerrokset tulostetaan."
  2888. msgctxt "acceleration_topbottom description"
  2889. msgid "The acceleration with which top/bottom layers are printed."
  2890. msgstr "Kiihtyvyys, jolla ylä-/alakerrokset tulostetaan."
  2891. msgctxt "acceleration_travel description"
  2892. msgid "The acceleration with which travel moves are made."
  2893. msgstr "Kiihtyvyys, jolla siirtoliikkeet tehdään."
  2894. msgctxt "ironing_flow description"
  2895. 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."
  2896. 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."
  2897. msgctxt "infill_overlap description"
  2898. 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."
  2899. msgstr ""
  2900. msgctxt "infill_overlap_mm description"
  2901. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2902. msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön."
  2903. msgctxt "switch_extruder_retraction_amount description"
  2904. 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."
  2905. msgstr ""
  2906. msgctxt "machine_nozzle_expansion_angle description"
  2907. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2908. msgstr "Vaakatason ja suuttimen kärjen yllä olevan kartiomaisen osan välinen kulma."
  2909. msgctxt "support_tower_roof_angle description"
  2910. 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."
  2911. msgstr "Tornin katon kulma. Korkeampi arvo johtaa teräväkärkisiin tornien kattoihin, matalampi arvo litteämpiin tornien kattoihin."
  2912. msgctxt "mold_angle description"
  2913. 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."
  2914. msgstr "Muottia varten luotujen ulkoseinämien ulokkeiden kulma. 0° tekee muotin ulkokuoresta pystysuoran ja 90° saa muotin ulkopuolen seuraamaan mallin muotoja."
  2915. msgctxt "support_tree_branch_diameter_angle description"
  2916. 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."
  2917. msgstr ""
  2918. msgctxt "support_conical_angle description"
  2919. 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."
  2920. 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."
  2921. msgctxt "magic_fuzzy_skin_point_density description"
  2922. 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."
  2923. 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."
  2924. msgctxt "magic_fuzzy_skin_point_dist description"
  2925. 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."
  2926. 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."
  2927. msgctxt "material_brand description"
  2928. msgid "The brand of material used."
  2929. msgstr ""
  2930. msgctxt "machine_acceleration description"
  2931. msgid "The default acceleration of print head movement."
  2932. msgstr "Tulostuspään liikkeen oletuskiihtyvyys."
  2933. msgctxt "default_material_print_temperature description"
  2934. 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"
  2935. 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ä"
  2936. msgctxt "default_material_bed_temperature description"
  2937. 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"
  2938. msgstr ""
  2939. msgctxt "bridge_skin_density description"
  2940. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2941. msgstr ""
  2942. msgctxt "support_bottom_density description"
  2943. 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."
  2944. msgstr "Tukirakenteen lattioiden tiheys. Korkeammalla arvolla mallin yläosan tuki kiinnittyy paremmin."
  2945. msgctxt "support_roof_density description"
  2946. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2947. msgstr "Tukirakenteen lattian tiheys. Korkeammat arvot tuottavat parempia ulokkeita, mutta tuet on vaikeampi poistaa."
  2948. msgctxt "bridge_skin_density_2 description"
  2949. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2950. msgstr ""
  2951. msgctxt "bridge_skin_density_3 description"
  2952. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2953. msgstr ""
  2954. msgctxt "machine_depth description"
  2955. msgid "The depth (Y-direction) of the printable area."
  2956. msgstr "Tulostettavan alueen syvyys (Y-suunta)."
  2957. msgctxt "support_tower_diameter description"
  2958. msgid "The diameter of a special tower."
  2959. msgstr "Erityistornin läpimitta."
  2960. msgctxt "support_tree_branch_diameter description"
  2961. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2962. msgstr ""
  2963. msgctxt "support_tree_tip_diameter description"
  2964. msgid "The diameter of the top of the tip of the branches of tree support."
  2965. msgstr ""
  2966. msgctxt "machine_feeder_wheel_diameter description"
  2967. msgid "The diameter of the wheel that drives the material in the feeder."
  2968. msgstr ""
  2969. msgctxt "support_tree_max_diameter description"
  2970. 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."
  2971. msgstr ""
  2972. msgctxt "adaptive_layer_height_variation_step description"
  2973. msgid "The difference in height of the next layer height compared to the previous one."
  2974. msgstr ""
  2975. msgctxt "ironing_line_spacing description"
  2976. msgid "The distance between the lines of ironing."
  2977. msgstr "Silityslinjojen välinen etäisyys."
  2978. msgctxt "travel_avoid_distance description"
  2979. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2980. msgstr "Suuttimen ja aiemmin tulostetun osan välinen etäisyys siirtoliikkeiden yhteydessä."
  2981. msgctxt "raft_base_line_spacing description"
  2982. 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."
  2983. msgstr "Pohjaristikon pohjakerroksen linjojen välinen etäisyys. Leveä linjajako helpottaa pohjaristikon poistoa alustalta."
  2984. msgctxt "raft_interface_line_spacing description"
  2985. 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."
  2986. 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."
  2987. msgctxt "raft_surface_line_spacing description"
  2988. 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."
  2989. msgstr "Pohjaristikon pintakerrosten linjojen välinen etäisyys. Linjajaon tulisi olla sama kuin linjaleveys, jotta pinta on kiinteä."
  2990. msgctxt "prime_tower_raft_base_line_spacing description"
  2991. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  2992. msgstr ""
  2993. msgctxt "interlocking_depth description"
  2994. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  2995. msgstr ""
  2996. msgctxt "brim_width description"
  2997. 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."
  2998. msgstr "Etäisyys mallista ulommaiseen reunuslinjaan. Suurempi reunus parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta."
  2999. msgctxt "interlocking_boundary_avoidance description"
  3000. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3001. msgstr "Suuttimen kärjestä mitattu etäisyys, jonka päähän tulostuslanka asetetaan säilytykseen, kun suulaketta ei enää käytetä."
  3002. msgctxt "machine_heat_zone_length description"
  3003. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3004. msgstr "Suuttimen kärjestä mitattu etäisyys, jonka suuttimen lämpö siirtyy tulostuslankaan."
  3005. msgctxt "bottom_skin_expand_distance description"
  3006. 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."
  3007. 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ää."
  3008. msgctxt "expand_skins_expand_distance description"
  3009. 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."
  3010. 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ää."
  3011. msgctxt "top_skin_expand_distance description"
  3012. 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."
  3013. 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ää."
  3014. msgctxt "wipe_move_distance description"
  3015. msgid "The distance to move the head back and forth across the brush."
  3016. msgstr ""
  3017. msgctxt "lightning_infill_prune_angle description"
  3018. 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."
  3019. msgstr ""
  3020. msgctxt "material_extrusion_cool_down_speed description"
  3021. 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."
  3022. msgstr "Lisänopeus, jonka verran suutin jäähtyy pursotuksen aikana. Samaa arvoa käytetään merkitsemään menetettyä kuumentumisnopeutta pursotuksen aikaisen kuumennuksen aikana."
  3023. msgctxt "support_extruder_nr_layer_0 description"
  3024. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3025. msgstr "Tuen täytön ensimmäisen kerroksen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3026. msgctxt "raft_base_extruder_nr description"
  3027. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3028. msgstr ""
  3029. msgctxt "support_bottom_extruder_nr description"
  3030. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3031. msgstr "Tuen lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3032. msgctxt "support_infill_extruder_nr description"
  3033. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3034. msgstr "Tuen täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3035. msgctxt "raft_interface_extruder_nr description"
  3036. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3037. msgstr ""
  3038. msgctxt "support_interface_extruder_nr description"
  3039. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3040. msgstr "Tuen kattojen ja lattioiden tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3041. msgctxt "support_roof_extruder_nr description"
  3042. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3043. msgstr "Tuen kattojen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3044. msgctxt "skirt_brim_extruder_nr description"
  3045. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3046. msgstr ""
  3047. msgctxt "adhesion_extruder_nr description"
  3048. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3049. msgstr "Helman/reunuksen/pohjaristikon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3050. msgctxt "support_extruder_nr description"
  3051. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3052. msgstr "Tuen tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3053. msgctxt "raft_surface_extruder_nr description"
  3054. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3055. msgstr ""
  3056. msgctxt "infill_extruder_nr description"
  3057. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3058. msgstr "Täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3059. msgctxt "wall_x_extruder_nr description"
  3060. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3061. msgstr "Sisäseinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3062. msgctxt "wall_0_extruder_nr description"
  3063. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3064. msgstr "Ulkoseinämän tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3065. msgctxt "top_bottom_extruder_nr description"
  3066. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3067. msgstr "Ylä- ja alapuolen pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3068. msgctxt "roofing_extruder_nr description"
  3069. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3070. msgstr "Ylimmän pintakalvon tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3071. msgctxt "wall_extruder_nr description"
  3072. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3073. msgstr "Seinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa."
  3074. msgctxt "raft_base_fan_speed description"
  3075. msgid "The fan speed for the base raft layer."
  3076. msgstr "Tuulettimen nopeus pohjaristikon pohjakerrosta varten."
  3077. msgctxt "raft_interface_fan_speed description"
  3078. msgid "The fan speed for the middle raft layer."
  3079. msgstr "Tuulettimen nopeus pohjaristikon keskikerrosta varten."
  3080. msgctxt "raft_fan_speed description"
  3081. msgid "The fan speed for the raft."
  3082. msgstr "Pohjaristikon tuulettimen nopeus."
  3083. msgctxt "raft_surface_fan_speed description"
  3084. msgid "The fan speed for the top raft layers."
  3085. msgstr "Tuulettimen nopeus pohjaristikon pintakerroksia varten."
  3086. msgctxt "cross_infill_density_image description"
  3087. 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."
  3088. msgstr ""
  3089. msgctxt "cross_support_density_image description"
  3090. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3091. msgstr ""
  3092. msgctxt "speed_slowdown_layers description"
  3093. 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."
  3094. 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."
  3095. msgctxt "raft_airgap description"
  3096. 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."
  3097. 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."
  3098. msgctxt "machine_height description"
  3099. msgid "The height (Z-direction) of the printable area."
  3100. msgstr "Tulostettavan alueen korkeus (Z-suunta)."
  3101. msgctxt "mold_roof_height description"
  3102. msgid "The height above horizontal parts in your model which to print mold."
  3103. msgstr "Mallin vaakasuuntaisten osien yläpuolinen korkeus, jonka mukaan muotti tulostetaan."
  3104. msgctxt "cool_fan_full_at_height description"
  3105. 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."
  3106. msgstr "Korkeus, jolla tuulettimet pyörivät normaalilla nopeudella. Alemmilla kerroksilla tuulettimen nopeus kasvaa asteittain tuulettimen nopeudesta alussa normaaliin tuulettimen nopeuteen."
  3107. msgctxt "gantry_height description"
  3108. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3109. msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero."
  3110. msgctxt "machine_nozzle_head_distance description"
  3111. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3112. msgstr "Suuttimen kärjen ja tulostuspään alimman osan välinen korkeusero."
  3113. msgctxt "retraction_hop_after_extruder_switch_height description"
  3114. msgid "The height difference when performing a Z Hop after extruder switch."
  3115. msgstr ""
  3116. msgctxt "retraction_hop description"
  3117. msgid "The height difference when performing a Z Hop."
  3118. msgstr "Z-hypyn suorituksen korkeusero."
  3119. msgctxt "wipe_hop_amount description"
  3120. msgid "The height difference when performing a Z Hop."
  3121. msgstr ""
  3122. msgctxt "layer_height description"
  3123. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3124. msgstr "Kunkin kerroksen korkeus milleinä. Korkeammat arvot tuottavat nopeampia tulosteita alhaisemmalla resoluutiolla, alemmat arvot tuottavat hitaampia tulosteita korkeammalla resoluutiolla."
  3125. msgctxt "gradual_infill_step_height description"
  3126. msgid "The height of infill of a given density before switching to half the density."
  3127. msgstr "Tietyn tiheysarvon täytön korkeus ennen puoleen tiheyteen vaihtamista."
  3128. msgctxt "gradual_support_infill_step_height description"
  3129. msgid "The height of support infill of a given density before switching to half the density."
  3130. msgstr "Tietyn tiheysarvon tuen täytön korkeus ennen puoleen tiheyteen vaihtamista."
  3131. msgctxt "interlocking_beam_layer_count description"
  3132. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3133. msgstr ""
  3134. msgctxt "interlocking_orientation description"
  3135. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3136. msgstr ""
  3137. msgctxt "layer_height_0 description"
  3138. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3139. msgstr "Alkukerroksen korkeus milleinä. Paksumpi alkukerros helpottaa alustaan kiinnittymistä."
  3140. msgctxt "prime_tower_base_height description"
  3141. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3142. msgstr ""
  3143. msgctxt "support_bottom_stair_step_height description"
  3144. 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."
  3145. 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."
  3146. msgctxt "brim_gap description"
  3147. 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."
  3148. msgstr ""
  3149. msgctxt "skirt_gap description"
  3150. msgid ""
  3151. "The horizontal distance between the skirt and the first layer of the print.\n"
  3152. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3153. msgstr ""
  3154. msgctxt "lightning_infill_straightening_angle description"
  3155. 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."
  3156. msgstr ""
  3157. msgctxt "infill_offset_x description"
  3158. msgid "The infill pattern is moved this distance along the X axis."
  3159. msgstr ""
  3160. msgctxt "infill_offset_y description"
  3161. msgid "The infill pattern is moved this distance along the Y axis."
  3162. msgstr ""
  3163. msgctxt "machine_nozzle_size description"
  3164. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3165. msgstr "Suuttimen sisäläpimitta. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin."
  3166. msgctxt "raft_base_jerk description"
  3167. msgid "The jerk with which the base raft layer is printed."
  3168. msgstr "Nykäisy, jolla pohjaristikon pohjakerros tulostetaan."
  3169. msgctxt "raft_interface_jerk description"
  3170. msgid "The jerk with which the middle raft layer is printed."
  3171. msgstr "Nykäisy, jolla pohjaristikon keskikerros tulostetaan."
  3172. msgctxt "raft_jerk description"
  3173. msgid "The jerk with which the raft is printed."
  3174. msgstr "Nykäisy, jolla pohjaristikko tulostetaan."
  3175. msgctxt "raft_surface_jerk description"
  3176. msgid "The jerk with which the top raft layers are printed."
  3177. msgstr "Nykäisy, jolla pohjaristikon pintakerrokset tulostetaan."
  3178. msgctxt "bottom_skin_preshrink description"
  3179. 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."
  3180. 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."
  3181. msgctxt "skin_preshrink description"
  3182. 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."
  3183. 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."
  3184. msgctxt "top_skin_preshrink description"
  3185. 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."
  3186. 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."
  3187. msgctxt "cool_fan_full_layer description"
  3188. 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."
  3189. 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."
  3190. msgctxt "cool_min_layer_time_fan_speed_max description"
  3191. 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."
  3192. 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."
  3193. msgctxt "retraction_amount description"
  3194. msgid "The length of material retracted during a retraction move."
  3195. msgstr "Takaisinvedon yhteydessä sisään vedettävän materiaalin pituus."
  3196. msgctxt "prime_tower_base_curve_magnitude description"
  3197. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3198. msgstr ""
  3199. msgctxt "machine_buildplate_type description"
  3200. msgid "The material of the build plate installed on the printer."
  3201. msgstr ""
  3202. msgctxt "adaptive_layer_height_variation description"
  3203. msgid "The maximum allowed height different from the base layer height."
  3204. msgstr ""
  3205. msgctxt "ooze_shield_angle description"
  3206. 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."
  3207. msgstr "Tihkusuojuksen osan maksimikulma. 0 astetta tarkoittaa pystysuuntaa ja 90 astetta vaakasuuntaa. Pienempi kulma vähentää tihkusuojusten epäonnistumisia mutta lisää materiaalia."
  3208. msgctxt "conical_overhang_angle description"
  3209. 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."
  3210. 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."
  3211. msgctxt "support_tree_angle description"
  3212. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3213. msgstr ""
  3214. msgctxt "conical_overhang_hole_size description"
  3215. 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."
  3216. msgstr ""
  3217. msgctxt "meshfix_maximum_deviation description"
  3218. 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."
  3219. msgstr ""
  3220. msgctxt "support_join_distance description"
  3221. 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."
  3222. msgstr ""
  3223. msgctxt "flow_rate_max_extrusion_offset description"
  3224. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3225. msgstr ""
  3226. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3227. 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."
  3228. msgstr ""
  3229. msgctxt "jerk_print_layer_0 description"
  3230. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3231. msgstr "Alkukerroksen tulostuksen aikainen nopeuden hetkellinen maksimimuutos."
  3232. msgctxt "jerk_print description"
  3233. msgid "The maximum instantaneous velocity change of the print head."
  3234. msgstr "Tulostuspään nopeuden hetkellinen maksimimuutos."
  3235. msgctxt "jerk_ironing description"
  3236. msgid "The maximum instantaneous velocity change while performing ironing."
  3237. msgstr "Silityksen aikainen nopeuden hetkellinen maksimimuutos."
  3238. msgctxt "jerk_wall_x description"
  3239. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3240. msgstr "Kaikkien sisäseinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  3241. msgctxt "jerk_infill description"
  3242. msgid "The maximum instantaneous velocity change with which infill is printed."
  3243. msgstr "Täytön tulostuksen nopeuden hetkellinen maksimimuutos."
  3244. msgctxt "jerk_support_bottom description"
  3245. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3246. msgstr "Tuen lattioiden tulostuksen nopeuden hetkellinen maksimimuutos."
  3247. msgctxt "jerk_support_infill description"
  3248. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3249. msgstr "Tuen täytön tulostuksen nopeuden hetkellinen maksimimuutos."
  3250. msgctxt "jerk_wall_0 description"
  3251. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3252. msgstr "Ulkoseinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  3253. msgctxt "jerk_prime_tower description"
  3254. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3255. msgstr "Esitäyttötornin tulostuksen nopeuden hetkellinen maksimimuutos."
  3256. msgctxt "jerk_support_interface description"
  3257. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3258. msgstr "Tuen kattojen ja lattioiden tulostuksen nopeuden hetkellinen maksimimuutos."
  3259. msgctxt "jerk_support_roof description"
  3260. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3261. msgstr "Tuen kattojen tulostuksen nopeuden hetkellinen maksimimuutos."
  3262. msgctxt "jerk_skirt_brim description"
  3263. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3264. msgstr "Helman ja reunuksen tulostuksen nopeuden hetkellinen maksimimuutos."
  3265. msgctxt "jerk_support description"
  3266. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3267. msgstr "Tukirakenteen tulostuksen nopeuden hetkellinen maksimimuutos."
  3268. msgctxt "jerk_wall_x_roofing description"
  3269. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  3270. msgstr "Yläpinnan uloimman seinän tulostuksessa tapahtuva suurin välitön nopeuden muutos."
  3271. msgctxt "jerk_wall_0_roofing description"
  3272. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  3273. msgstr "Yläpinnan sisäseinien tulostuksessa tapahtuva suurin välitön nopeuden muutos."
  3274. msgctxt "jerk_wall description"
  3275. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3276. msgstr "Seinämien tulostuksen nopeuden hetkellinen maksimimuutos."
  3277. msgctxt "jerk_roofing description"
  3278. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3279. msgstr "Yläpinnan pintakalvokerrosten tulostuksen nopeuden hetkellinen maksimimuutos."
  3280. msgctxt "jerk_topbottom description"
  3281. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3282. msgstr "Ylä-/alakerrosten tulostuksen nopeuden hetkellinen maksimimuutos."
  3283. msgctxt "jerk_travel description"
  3284. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3285. msgstr "Siirtoliikkeiden nopeuden hetkellinen maksimimuutos."
  3286. msgctxt "prime_tower_max_bridging_distance description"
  3287. msgid "The maximum length of the branches which may be printed over the air."
  3288. msgstr ""
  3289. msgctxt "machine_max_feedrate_x description"
  3290. msgid "The maximum speed for the motor of the X-direction."
  3291. msgstr "X-suunnan moottorin maksiminopeus."
  3292. msgctxt "machine_max_feedrate_y description"
  3293. msgid "The maximum speed for the motor of the Y-direction."
  3294. msgstr "Y-suunnan moottorin maksiminopeus."
  3295. msgctxt "machine_max_feedrate_z description"
  3296. msgid "The maximum speed for the motor of the Z-direction."
  3297. msgstr "Z-suunnan moottorin maksiminopeus."
  3298. msgctxt "machine_max_feedrate_e description"
  3299. msgid "The maximum speed of the filament."
  3300. msgstr "Tulostuslangan maksiminopeus."
  3301. msgctxt "support_bottom_stair_step_width description"
  3302. 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."
  3303. 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."
  3304. msgctxt "mold_width description"
  3305. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3306. msgstr ""
  3307. msgctxt "machine_minimum_feedrate description"
  3308. msgid "The minimal movement speed of the print head."
  3309. msgstr "Tulostuspään liikkeen miniminopeus."
  3310. msgctxt "material_initial_print_temperature description"
  3311. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3312. msgstr "Minimilämpötila lämmitettäessä tulostuslämpötilaan, jossa tulostus voidaan aloittaa."
  3313. msgctxt "machine_min_cool_heat_time_window description"
  3314. 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."
  3315. 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."
  3316. msgctxt "infill_support_angle description"
  3317. 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."
  3318. msgstr ""
  3319. msgctxt "support_angle description"
  3320. 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."
  3321. msgstr "Ulokkeen minimikulma, jonka jälkeen tuki lisätään. Arvolla 0 ° kaikki ulokkeet tuetaan, asetuksella 90 ° tukia ei tuoteta."
  3322. msgctxt "retraction_min_travel description"
  3323. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3324. msgstr "Tarvittavan siirtoliikkeen minimietäisyys, jotta takaisinveto yleensäkin tapahtuu. Tällä varmistetaan, ettei takaisinvetoja tapahdu runsaasti pienellä alueella."
  3325. msgctxt "skirt_brim_minimal_length description"
  3326. 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."
  3327. 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."
  3328. msgctxt "min_odd_wall_line_width description"
  3329. 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."
  3330. msgstr ""
  3331. msgctxt "min_even_wall_line_width description"
  3332. 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."
  3333. msgstr ""
  3334. msgctxt "cool_min_speed description"
  3335. 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."
  3336. msgstr "Tulostuksen miniminopeus riippumatta kerroksen minimiajan aiheuttamasta hidastuksesta. Jos tulostin hidastaisi liikaa, paine suuttimessa olisi liian alhainen ja tulostuksen laatu kärsisi."
  3337. msgctxt "meshfix_maximum_resolution description"
  3338. 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."
  3339. msgstr ""
  3340. msgctxt "meshfix_maximum_travel_resolution description"
  3341. 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."
  3342. msgstr ""
  3343. msgctxt "support_bottom_stair_step_min_slope description"
  3344. 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."
  3345. msgstr ""
  3346. msgctxt "cool_min_layer_time description"
  3347. 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."
  3348. 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ä."
  3349. msgctxt "prime_tower_min_volume description"
  3350. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3351. msgstr "Esitäyttötornin kunkin kerroksen minimitilavuus, jotta voidaan poistaa riittävästi materiaalia."
  3352. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3353. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  3354. msgstr ""
  3355. msgctxt "machine_name description"
  3356. msgid "The name of your 3D printer model."
  3357. msgstr "3D-tulostinmallin nimi."
  3358. msgctxt "machine_nozzle_id description"
  3359. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3360. msgstr "Suulakeryhmän suulakkeen tunnus, kuten \"AA 0.4\" ja \"BB 0.8\"."
  3361. msgctxt "travel_avoid_other_parts description"
  3362. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3363. msgstr "Suutin välttää aiemmin tulostettuja osia siirtoliikkeiden yhteydessä. Tämä vaihtoehto on valittavissa vain, kun pyyhkäisy on käytössä."
  3364. msgctxt "travel_avoid_supports description"
  3365. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3366. msgstr ""
  3367. msgctxt "bottom_layers description"
  3368. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3369. msgstr "Alakerrosten lukumäärä. Kun se lasketaan alaosan paksuudesta, arvo pyöristetään kokonaislukuun."
  3370. msgctxt "raft_base_wall_count description"
  3371. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3372. msgstr ""
  3373. msgctxt "raft_interface_wall_count description"
  3374. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3375. msgstr ""
  3376. msgctxt "raft_surface_wall_count description"
  3377. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3378. msgstr ""
  3379. msgctxt "raft_wall_count description"
  3380. msgid "The number of contours to print around the linear pattern of the raft."
  3381. msgstr ""
  3382. msgctxt "skin_edge_support_layers description"
  3383. msgid "The number of infill layers that supports skin edges."
  3384. msgstr ""
  3385. msgctxt "initial_bottom_layers description"
  3386. 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."
  3387. msgstr ""
  3388. msgctxt "raft_interface_layers description"
  3389. 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."
  3390. msgstr ""
  3391. msgctxt "brim_line_count description"
  3392. 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."
  3393. msgstr "Reunukseen käytettävien linjojen lukumäärä. Useampi reunuslinja parantaa kiinnitystä alustaan, mutta rajoittaa tehokasta tulostusaluetta."
  3394. msgctxt "support_brim_line_count description"
  3395. 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."
  3396. msgstr ""
  3397. msgctxt "raft_surface_layers description"
  3398. 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."
  3399. 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."
  3400. msgctxt "top_layers description"
  3401. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3402. msgstr "Yläkerrosten lukumäärä. Kun se lasketaan yläosan paksuudesta, arvo pyöristetään kokonaislukuun."
  3403. msgctxt "roofing_layer_count description"
  3404. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3405. msgstr "Ylimpien pintakalvokerrosten määrä. Yleensä vain yksi ylin kerros riittää tuottamaan korkeampilaatuisia yläpintoja."
  3406. msgctxt "support_wall_count description"
  3407. 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."
  3408. msgstr ""
  3409. msgctxt "support_bottom_wall_count description"
  3410. 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."
  3411. msgstr ""
  3412. msgctxt "support_roof_wall_count description"
  3413. 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."
  3414. msgstr ""
  3415. msgctxt "support_interface_wall_count description"
  3416. 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."
  3417. msgstr ""
  3418. msgctxt "wall_distribution_count description"
  3419. 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."
  3420. msgstr ""
  3421. msgctxt "wall_line_count description"
  3422. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3423. msgstr "Seinämien lukumäärä. Kun se lasketaan seinämän paksuudesta, arvo pyöristetään kokonaislukuun."
  3424. msgctxt "machine_nozzle_tip_outer_diameter description"
  3425. msgid "The outer diameter of the tip of the nozzle."
  3426. msgstr "Suuttimen kärjen ulkoläpimitta."
  3427. msgctxt "infill_pattern description"
  3428. 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."
  3429. msgstr ""
  3430. msgctxt "support_pattern description"
  3431. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3432. msgstr "Tukirakenteiden tulostuskuvio. Eri vaihtoehdot tuottavat jämäköitä tai helposti poistettavia tukia."
  3433. msgctxt "roofing_pattern description"
  3434. msgid "The pattern of the top most layers."
  3435. msgstr "Ylimpien kerrosten kuvio."
  3436. msgctxt "top_bottom_pattern description"
  3437. msgid "The pattern of the top/bottom layers."
  3438. msgstr "Ylä-/alakerrosten kuvio."
  3439. msgctxt "top_bottom_pattern_0 description"
  3440. msgid "The pattern on the bottom of the print on the first layer."
  3441. msgstr "Tulosteen alaosan kuvio ensimmäisellä kerroksella."
  3442. msgctxt "ironing_pattern description"
  3443. msgid "The pattern to use for ironing top surfaces."
  3444. msgstr "Yläpintojen silitykseen käytettävä kuvio."
  3445. msgctxt "support_bottom_pattern description"
  3446. msgid "The pattern with which the floors of the support are printed."
  3447. msgstr "Tuen lattioiden tulostuskuvio."
  3448. msgctxt "support_interface_pattern description"
  3449. msgid "The pattern with which the interface of the support with the model is printed."
  3450. msgstr "Kuvio, jolla tuen ja mallin liittymä tulostetaan."
  3451. msgctxt "support_roof_pattern description"
  3452. msgid "The pattern with which the roofs of the support are printed."
  3453. msgstr "Tuen kattojen tulostuskuvio."
  3454. msgctxt "z_seam_position description"
  3455. msgid "The position near where to start printing each part in a layer."
  3456. msgstr ""
  3457. msgctxt "support_tree_angle_slow description"
  3458. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  3459. msgstr ""
  3460. msgctxt "support_tree_rest_preference description"
  3461. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  3462. msgstr ""
  3463. msgctxt "jerk_layer_0 description"
  3464. msgid "The print maximum instantaneous velocity change for the initial layer."
  3465. msgstr "Alkukerroksen tulostuksen nopeuden hetkellinen maksimimuutos."
  3466. msgctxt "machine_shape description"
  3467. msgid "The shape of the build plate without taking unprintable areas into account."
  3468. msgstr "Alustan muoto ottamatta huomioon alueita, joihin ei voi tulostaa."
  3469. msgctxt "machine_head_with_fans_polygon description"
  3470. 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."
  3471. msgstr ""
  3472. msgctxt "cross_infill_pocket_size description"
  3473. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3474. msgstr "Taskujen koko nelisuuntaisissa risteyksissä risti 3D -kuviossa korkeuksissa, joissa kuvio koskettaa itseään."
  3475. msgctxt "coasting_min_volume description"
  3476. 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."
  3477. 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ä."
  3478. msgctxt "machine_nozzle_cool_down_speed description"
  3479. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3480. msgstr "Nopeus (°C/s), jolla suutin jäähtyy, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta."
  3481. msgctxt "machine_nozzle_heat_up_speed description"
  3482. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3483. msgstr "Nopeus (°C/s), jolla suutin lämpenee, mitattuna keskiarvona normaaleista tulostuslämpötiloista ja valmiuslämpötilasta."
  3484. msgctxt "speed_wall_x description"
  3485. 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."
  3486. 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."
  3487. msgctxt "bridge_skin_speed description"
  3488. msgid "The speed at which bridge skin regions are printed."
  3489. msgstr ""
  3490. msgctxt "speed_infill description"
  3491. msgid "The speed at which infill is printed."
  3492. msgstr "Täytön tulostamiseen käytettävä nopeus."
  3493. msgctxt "speed_print description"
  3494. msgid "The speed at which printing happens."
  3495. msgstr "Tulostamiseen käytettävä nopeus."
  3496. msgctxt "raft_base_speed description"
  3497. 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."
  3498. msgstr "Nopeus, jolla pohjaristikon pohjakerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri."
  3499. msgctxt "bridge_wall_speed description"
  3500. msgid "The speed at which the bridge walls are printed."
  3501. msgstr ""
  3502. msgctxt "cool_fan_speed_0 description"
  3503. 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."
  3504. msgstr "Tuulettimien pyörimisnopeus tulostuksen alussa. Seuraavilla kerroksilla tuulettimen nopeus kasvaa asteittain, kunnes saavutetaan kerros, joka vastaa Normaali tuulettimen nopeus korkeudella -arvoa."
  3505. msgctxt "cool_fan_speed_min description"
  3506. 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."
  3507. msgstr "Nopeus, jolla tuuletin pyörii ennen raja-arvon tavoittamista. Jos kerros tulostuu nopeammin kuin raja-arvo, tulostimen nopeus nousee asteittain kohti tuulettimen maksiminopeutta."
  3508. msgctxt "cool_fan_speed_max description"
  3509. 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."
  3510. msgstr "Nopeus, jolla tuuletin pyörii kerroksen minimiaikana. Tuulettimen nopeus kasvaa asteittain normaalin ja maksiminopeuden välillä, kun raja-arvo ohitetaan."
  3511. msgctxt "retraction_prime_speed description"
  3512. msgid "The speed at which the filament is primed during a retraction move."
  3513. msgstr "Nopeus, jolla tulostuslanka esitäytetään takaisinvedon yhteydessä."
  3514. msgctxt "wipe_retraction_prime_speed description"
  3515. msgid "The speed at which the filament is primed during a wipe retraction move."
  3516. msgstr ""
  3517. msgctxt "switch_extruder_prime_speed description"
  3518. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3519. msgstr "Nopeus, jolla tulostuslanka työnnetään takaisin suuttimen vaihdon takaisinvedon jälkeen."
  3520. msgctxt "retraction_speed description"
  3521. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3522. msgstr "Nopeus, jolla tulostuslanka vedetään sisään ja esitäytetään takaisinvedon yhteydessä."
  3523. msgctxt "wipe_retraction_speed description"
  3524. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3525. msgstr ""
  3526. msgctxt "switch_extruder_retraction_speed description"
  3527. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3528. msgstr "Nopeus, jolla tulostuslanka vedetään sisään suuttimen vaihdon takaisinvedon yhteydessä."
  3529. msgctxt "retraction_retract_speed description"
  3530. msgid "The speed at which the filament is retracted during a retraction move."
  3531. msgstr "Nopeus, jolla tulostuslanka vedetään sisään takaisinvedon yhteydessä."
  3532. msgctxt "wipe_retraction_retract_speed description"
  3533. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3534. msgstr ""
  3535. msgctxt "switch_extruder_retraction_speeds description"
  3536. 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."
  3537. msgstr "Nopeus, jolla tulostuslanka vedetään sisään. Suurempi takaisinvetonopeus toimii paremmin, mutta erittäin suuri takaisinvetonopeus saattaa hiertää tulostuslankaa."
  3538. msgctxt "speed_support_bottom description"
  3539. 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."
  3540. msgstr "Nopeus, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa mallin yläosan tuen kiinnittymistä."
  3541. msgctxt "speed_support_infill description"
  3542. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3543. msgstr "Nopeus, jolla tuen täyttö tulostetaan. Täytön tulostus hitaammilla nopeuksilla parantaa vakautta."
  3544. msgctxt "raft_interface_speed description"
  3545. 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."
  3546. msgstr "Nopeus, jolla pohjaristikon keskikerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri."
  3547. msgctxt "speed_wall_0 description"
  3548. 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."
  3549. 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."
  3550. msgctxt "speed_prime_tower description"
  3551. 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."
  3552. msgstr "Nopeus, jolla esitäyttötorni tulostetaan. Esitäyttötornin tulostus hitaammin saattaa tehdä siitä vakaamman, jos eri tulostuslankojen tarttuvuus ei ole paras mahdollinen."
  3553. msgctxt "cool_fan_speed description"
  3554. msgid "The speed at which the print cooling fans spin."
  3555. msgstr "Tulostuksen jäähdytystuulettimien käyntinopeus."
  3556. msgctxt "raft_speed description"
  3557. msgid "The speed at which the raft is printed."
  3558. msgstr "Nopeus, jolla pohjaristikko tulostetaan."
  3559. msgctxt "speed_support_interface description"
  3560. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3561. msgstr "Nopeus, jolla tuen katot ja lattiat tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua."
  3562. msgctxt "speed_support_roof description"
  3563. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3564. msgstr "Nopeus, jolla tuen katot tulostetaan. Niiden tulostus hitaammilla nopeuksilla voi parantaa ulokkeen laatua."
  3565. msgctxt "skirt_brim_speed description"
  3566. 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."
  3567. msgstr "Nopeus, jolla helma ja reunus tulostetaan. Yleensä se tehdään alkukerroksen nopeudella. Joskus helma tai reunus halutaan kuitenkin tulostaa eri nopeudella."
  3568. msgctxt "speed_support description"
  3569. 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."
  3570. 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."
  3571. msgctxt "raft_surface_speed description"
  3572. 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."
  3573. msgstr "Nopeus, jolla pohjaristikon pintakerrokset tulostetaan. Nämä tulisi tulostaa hieman hitaammin, jotta suutin voi hitaasti tasoittaa vierekkäisiä pintalinjoja."
  3574. msgctxt "speed_wall_x_roofing description"
  3575. msgid "The speed at which the top surface inner walls are printed."
  3576. msgstr "Yläpinnan sisäseinien tulostusnopeus."
  3577. msgctxt "speed_wall_0_roofing description"
  3578. msgid "The speed at which the top surface outermost wall is printed."
  3579. msgstr "Yläpinnan uloimpien seinien tulostusnopeus."
  3580. msgctxt "speed_z_hop description"
  3581. 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."
  3582. msgstr ""
  3583. msgctxt "speed_wall description"
  3584. msgid "The speed at which the walls are printed."
  3585. msgstr "Seinämien tulostamiseen käytettävä nopeus."
  3586. msgctxt "speed_ironing description"
  3587. msgid "The speed at which to pass over the top surface."
  3588. msgstr "Yläpinnan ylikulkuun käytettävä nopeus."
  3589. msgctxt "material_break_speed description"
  3590. msgid "The speed at which to retract the filament in order to break it cleanly."
  3591. msgstr ""
  3592. msgctxt "speed_roofing description"
  3593. msgid "The speed at which top surface skin layers are printed."
  3594. msgstr "Yläpinnan pintakalvokerrosten tulostamiseen käytettävä nopeus."
  3595. msgctxt "speed_topbottom description"
  3596. msgid "The speed at which top/bottom layers are printed."
  3597. msgstr "Ylä-/alakerrosten tulostamiseen käytettävä nopeus."
  3598. msgctxt "speed_travel description"
  3599. msgid "The speed at which travel moves are made."
  3600. msgstr "Nopeus, jolla siirtoliikkeet tehdään."
  3601. msgctxt "coasting_speed description"
  3602. 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."
  3603. msgstr "Nopeus, jolla siirrytään vapaaliu'un aikana, suhteessa pursotusreitin nopeuteen. Arvoksi suositellaan hieman alle 100 %, sillä vapaaliukusiirron aikana paine Bowden-putkessa laskee."
  3604. msgctxt "speed_layer_0 description"
  3605. 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."
  3606. msgstr ""
  3607. msgctxt "speed_print_layer_0 description"
  3608. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3609. msgstr "Alkukerroksen tulostusnopeus. Alhaisempi arvo on suositeltava, jotta tarttuvuus alustaan on parempi."
  3610. msgctxt "speed_travel_layer_0 description"
  3611. 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."
  3612. 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."
  3613. msgctxt "material_break_temperature description"
  3614. msgid "The temperature at which the filament is broken for a clean break."
  3615. msgstr ""
  3616. msgctxt "build_volume_temperature description"
  3617. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3618. msgstr ""
  3619. msgctxt "material_standby_temperature description"
  3620. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3621. msgstr "Suuttimen lämpötila, kun toista suutinta käytetään tulostukseen."
  3622. msgctxt "material_final_print_temperature description"
  3623. msgid "The temperature to which to already start cooling down just before the end of printing."
  3624. msgstr "Lämpötila, johon jäähdytetään jo ennen tulostuksen loppumista."
  3625. msgctxt "material_print_temperature_layer_0 description"
  3626. msgid "The temperature used for printing the first layer."
  3627. msgstr ""
  3628. msgctxt "material_print_temperature description"
  3629. msgid "The temperature used for printing."
  3630. msgstr "Tulostukseen käytettävä lämpötila."
  3631. msgctxt "material_bed_temperature_layer_0 description"
  3632. 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."
  3633. msgstr ""
  3634. msgctxt "material_bed_temperature description"
  3635. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3636. msgstr ""
  3637. msgctxt "material_break_preparation_temperature description"
  3638. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3639. msgstr ""
  3640. msgctxt "bottom_thickness description"
  3641. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3642. msgstr "Alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää alakerrosten lukumäärän."
  3643. msgctxt "skin_edge_support_thickness description"
  3644. msgid "The thickness of the extra infill that supports skin edges."
  3645. msgstr ""
  3646. msgctxt "support_interface_height description"
  3647. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3648. msgstr "Tukiliittymän paksuus kohdassa, jossa se koskettaa mallia ylä- tai alaosassa."
  3649. msgctxt "support_bottom_height description"
  3650. 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."
  3651. msgstr "Tuen lattioiden paksuus. Tällä hallitaan sellaisten tiheiden kerrosten määrää, jotka tulostetaan mallin tukea kannattelevien kohtien päälle."
  3652. msgctxt "support_roof_height description"
  3653. 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."
  3654. msgstr "Tukikattojen paksuus. Tällä hallitaan tiheiden kerrosten määrää sen tuen päällä, jolla malli lepää."
  3655. msgctxt "top_thickness description"
  3656. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3657. msgstr "Yläkerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää yläkerrosten lukumäärän."
  3658. msgctxt "top_bottom_thickness description"
  3659. 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."
  3660. msgstr "Ylä-/alakerrosten paksuus tulosteessa. Tämä arvo jaettuna kerroksen korkeusarvolla määrittää ylä-/alakerrosten lukumäärän."
  3661. msgctxt "wall_thickness description"
  3662. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3663. msgstr "Seinämien paksuus vaakatasossa. Tämä arvo jaettuna seinämälinjan leveysarvolla määrittää seinämien lukumäärän."
  3664. msgctxt "infill_sparse_thickness description"
  3665. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3666. msgstr "Täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulisi aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään."
  3667. msgctxt "support_infill_sparse_thickness description"
  3668. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3669. msgstr "Tuen täyttömateriaalin paksuus kerrosta kohti. Tämän arvon tulee aina olla kerroksen korkeuden kerrannainen. Muissa tapauksissa se pyöristetään."
  3670. msgctxt "machine_gcode_flavor description"
  3671. msgid "The type of g-code to be generated."
  3672. msgstr ""
  3673. msgctxt "material_type description"
  3674. msgid "The type of material used."
  3675. msgstr ""
  3676. msgctxt "coasting_volume description"
  3677. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3678. msgstr "Aineen määrä, joka muutoin on tihkunut. Tämän arvon tulisi yleensä olla lähellä suuttimen läpimittaa korotettuna kuutioon."
  3679. msgctxt "machine_width description"
  3680. msgid "The width (X-direction) of the printable area."
  3681. msgstr "Tulostettavan alueen leveys (X-suunta)."
  3682. msgctxt "support_brim_width description"
  3683. 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."
  3684. msgstr ""
  3685. msgctxt "interlocking_beam_width description"
  3686. msgid "The width of the interlocking structure beams."
  3687. msgstr "Esitäyttötornin leveys."
  3688. msgctxt "prime_tower_base_size description"
  3689. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3690. msgstr ""
  3691. msgctxt "prime_tower_size description"
  3692. msgid "The width of the prime tower."
  3693. msgstr "Esitäyttötornin leveys."
  3694. msgctxt "magic_fuzzy_skin_thickness description"
  3695. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3696. msgstr "Leveys, jolla värinä tapahtuu. Tämä suositellaan pidettäväksi ulkoseinämän leveyttä pienempänä, koska sisäseinämiä ei muuteta."
  3697. msgctxt "retraction_extrusion_window description"
  3698. 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."
  3699. 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."
  3700. msgctxt "prime_tower_position_x description"
  3701. msgid "The x coordinate of the position of the prime tower."
  3702. msgstr "Esitäyttötornin sijainnin X-koordinaatti."
  3703. msgctxt "prime_tower_position_y description"
  3704. msgid "The y coordinate of the position of the prime tower."
  3705. msgstr "Esitäyttötornin sijainnin Y-koordinaatti."
  3706. msgctxt "support_meshes_present description"
  3707. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3708. msgstr ""
  3709. msgctxt "bridge_wall_coast description"
  3710. 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."
  3711. msgstr ""
  3712. msgctxt "raft_base_smoothing description"
  3713. msgid "This setting controls how much inner corners in the raft base 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."
  3714. msgstr ""
  3715. msgctxt "raft_interface_smoothing description"
  3716. msgid "This setting controls how much inner corners in the raft middle 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."
  3717. msgstr ""
  3718. msgctxt "raft_smoothing description"
  3719. 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."
  3720. msgstr ""
  3721. msgctxt "raft_surface_smoothing description"
  3722. msgid "This setting controls how much inner corners in the raft top 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."
  3723. msgstr ""
  3724. msgctxt "retraction_count_max description"
  3725. 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."
  3726. 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."
  3727. msgctxt "draft_shield_enabled description"
  3728. 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."
  3729. 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."
  3730. msgctxt "support_tree_tip_diameter label"
  3731. msgid "Tip Diameter"
  3732. msgstr ""
  3733. msgctxt "material_shrinkage_percentage_xy description"
  3734. 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)."
  3735. msgstr ""
  3736. msgctxt "material_shrinkage_percentage_z description"
  3737. 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)."
  3738. msgstr ""
  3739. msgctxt "material_shrinkage_percentage description"
  3740. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3741. msgstr ""
  3742. msgctxt "top_layers label"
  3743. msgid "Top Layers"
  3744. msgstr "Yläkerrokset"
  3745. msgctxt "top_skin_expand_distance label"
  3746. msgid "Top Skin Expand Distance"
  3747. msgstr "Yläpintakalvon laajennuksen etäisyys"
  3748. msgctxt "top_skin_preshrink label"
  3749. msgid "Top Skin Removal Width"
  3750. msgstr "Yläpintakalvon poistoleveys"
  3751. msgctxt "acceleration_wall_x_roofing label"
  3752. msgid "Top Surface Inner Wall Acceleration"
  3753. msgstr "Yläpinnan sisäseinän kiihtyvyys"
  3754. msgctxt "jerk_wall_x_roofing label"
  3755. msgid "Top Surface Inner Wall Jerk"
  3756. msgstr "Yläpinnan uloimman seinän nykäys"
  3757. msgctxt "speed_wall_x_roofing label"
  3758. msgid "Top Surface Inner Wall Speed"
  3759. msgstr "Yläpinnan sisäseinän nopeus"
  3760. msgctxt "wall_x_material_flow_roofing label"
  3761. msgid "Top Surface Inner Wall(s) Flow"
  3762. msgstr "Yläpinnan sisäseinän virtaus"
  3763. msgctxt "acceleration_wall_0_roofing label"
  3764. msgid "Top Surface Outer Wall Acceleration"
  3765. msgstr "Yläpinnan ulkoseinän kiihtyvyys"
  3766. msgctxt "wall_0_material_flow_roofing label"
  3767. msgid "Top Surface Outer Wall Flow"
  3768. msgstr "Yläpinnan uloimman seinän virtaus"
  3769. msgctxt "jerk_wall_0_roofing label"
  3770. msgid "Top Surface Outer Wall Jerk"
  3771. msgstr "Yläpinnan sisäseinän nykäys"
  3772. msgctxt "speed_wall_0_roofing label"
  3773. msgid "Top Surface Outer Wall Speed"
  3774. msgstr ""
  3775. msgctxt "acceleration_roofing label"
  3776. msgid "Top Surface Skin Acceleration"
  3777. msgstr "Yläpinnan pintakalvon kiihtyvyys"
  3778. msgctxt "roofing_extruder_nr label"
  3779. msgid "Top Surface Skin Extruder"
  3780. msgstr "Yläpinnan pintakalvon suulake"
  3781. msgctxt "roofing_material_flow label"
  3782. msgid "Top Surface Skin Flow"
  3783. msgstr ""
  3784. msgctxt "jerk_roofing label"
  3785. msgid "Top Surface Skin Jerk"
  3786. msgstr "Yläpinnan pintakalvon nykäisy"
  3787. msgctxt "roofing_layer_count label"
  3788. msgid "Top Surface Skin Layers"
  3789. msgstr "Yläpinnan pintakalvokerrokset"
  3790. msgctxt "roofing_angles label"
  3791. msgid "Top Surface Skin Line Directions"
  3792. msgstr "Yläpinnan pintakalvon linjojen suunnat"
  3793. msgctxt "roofing_line_width label"
  3794. msgid "Top Surface Skin Line Width"
  3795. msgstr "Yläpinnan pintakalvon linjan leveys"
  3796. msgctxt "roofing_pattern label"
  3797. msgid "Top Surface Skin Pattern"
  3798. msgstr "Yläpinnan pintakalvokuvio"
  3799. msgctxt "speed_roofing label"
  3800. msgid "Top Surface Skin Speed"
  3801. msgstr "Yläpinnan pintakalvonopeus"
  3802. msgctxt "top_thickness label"
  3803. msgid "Top Thickness"
  3804. msgstr "Yläosan paksuus"
  3805. msgctxt "max_skin_angle_for_expansion description"
  3806. 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."
  3807. msgstr ""
  3808. msgctxt "top_bottom description"
  3809. msgid "Top/Bottom"
  3810. msgstr ""
  3811. msgctxt "top_bottom label"
  3812. msgid "Top/Bottom"
  3813. msgstr ""
  3814. msgctxt "acceleration_topbottom label"
  3815. msgid "Top/Bottom Acceleration"
  3816. msgstr "Ylä-/alakerrosten kiihtyvyys"
  3817. msgctxt "top_bottom_extruder_nr label"
  3818. msgid "Top/Bottom Extruder"
  3819. msgstr "Ylä- ja alapuolen suulake"
  3820. msgctxt "skin_material_flow label"
  3821. msgid "Top/Bottom Flow"
  3822. msgstr ""
  3823. msgctxt "jerk_topbottom label"
  3824. msgid "Top/Bottom Jerk"
  3825. msgstr "Ylä-/alaosan nykäisy"
  3826. msgctxt "skin_angles label"
  3827. msgid "Top/Bottom Line Directions"
  3828. msgstr "Yläosan/alaosan linjojen suunnat"
  3829. msgctxt "skin_line_width label"
  3830. msgid "Top/Bottom Line Width"
  3831. msgstr "Ylä-/alalinjan leveys"
  3832. msgctxt "top_bottom_pattern label"
  3833. msgid "Top/Bottom Pattern"
  3834. msgstr "Ylä-/alaosan kuvio"
  3835. msgctxt "speed_topbottom label"
  3836. msgid "Top/Bottom Speed"
  3837. msgstr "Ylä-/alaosan nopeus"
  3838. msgctxt "top_bottom_thickness label"
  3839. msgid "Top/Bottom Thickness"
  3840. msgstr "Ylä-/alaosan paksuus"
  3841. msgctxt "support_type option buildplate"
  3842. msgid "Touching Buildplate"
  3843. msgstr "Alustaa koskettava"
  3844. msgctxt "support_tower_diameter label"
  3845. msgid "Tower Diameter"
  3846. msgstr "Tornin läpimitta"
  3847. msgctxt "support_tower_roof_angle label"
  3848. msgid "Tower Roof Angle"
  3849. msgstr "Tornin kattokulma"
  3850. msgctxt "mesh_rotation_matrix description"
  3851. msgid "Transformation matrix to be applied to the model when loading it from file."
  3852. msgstr "Mallissa käytettävä muunnosmatriisi, kun malli ladataan tiedostosta."
  3853. msgctxt "travel label"
  3854. msgid "Travel"
  3855. msgstr "Siirtoliike"
  3856. msgctxt "acceleration_travel label"
  3857. msgid "Travel Acceleration"
  3858. msgstr "Siirtoliikkeen kiihtyvyys"
  3859. msgctxt "travel_avoid_distance label"
  3860. msgid "Travel Avoid Distance"
  3861. msgstr "Siirtoliikkeen vältettävä etäisyys"
  3862. msgctxt "jerk_travel label"
  3863. msgid "Travel Jerk"
  3864. msgstr "Siirtoliikkeen nykäisy"
  3865. msgctxt "speed_travel label"
  3866. msgid "Travel Speed"
  3867. msgstr "Siirtoliikkeen nopeus"
  3868. msgctxt "magic_mesh_surface_mode description"
  3869. 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."
  3870. 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."
  3871. msgctxt "support_structure option tree"
  3872. msgid "Tree"
  3873. msgstr ""
  3874. msgctxt "infill_pattern option trihexagon"
  3875. msgid "Tri-Hexagon"
  3876. msgstr ""
  3877. msgctxt "infill_pattern option triangles"
  3878. msgid "Triangles"
  3879. msgstr "Kolmiot"
  3880. msgctxt "support_bottom_pattern option triangles"
  3881. msgid "Triangles"
  3882. msgstr "Kolmiot"
  3883. msgctxt "support_interface_pattern option triangles"
  3884. msgid "Triangles"
  3885. msgstr "Kolmiot"
  3886. msgctxt "support_pattern option triangles"
  3887. msgid "Triangles"
  3888. msgstr "Kolmiot"
  3889. msgctxt "support_roof_pattern option triangles"
  3890. msgid "Triangles"
  3891. msgstr "Kolmiot"
  3892. msgctxt "support_tree_max_diameter label"
  3893. msgid "Trunk Diameter"
  3894. msgstr ""
  3895. msgctxt "machine_gcode_flavor option UltiGCode"
  3896. msgid "Ultimaker 2"
  3897. msgstr "Ultimaker 2"
  3898. msgctxt "meshfix_union_all label"
  3899. msgid "Union Overlapping Volumes"
  3900. msgstr "Yhdistä limittyvät ainemäärät"
  3901. msgctxt "bridge_wall_min_length description"
  3902. 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."
  3903. msgstr ""
  3904. msgctxt "adaptive_layer_height_enabled label"
  3905. msgid "Use Adaptive Layers"
  3906. msgstr ""
  3907. msgctxt "support_use_towers label"
  3908. msgid "Use Towers"
  3909. msgstr "Käytä torneja"
  3910. msgctxt "acceleration_travel_enabled description"
  3911. 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."
  3912. msgstr ""
  3913. msgctxt "jerk_travel_enabled description"
  3914. 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."
  3915. msgstr ""
  3916. msgctxt "relative_extrusion description"
  3917. 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."
  3918. msgstr ""
  3919. msgctxt "support_use_towers description"
  3920. 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."
  3921. 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."
  3922. msgctxt "infill_mesh description"
  3923. 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."
  3924. 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."
  3925. msgctxt "support_mesh description"
  3926. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3927. msgstr "Käytä tätä verkkoa tukialueiden valintaan. Sen avulla voidaan luoda tukirakenne."
  3928. msgctxt "anti_overhang_mesh description"
  3929. 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."
  3930. 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."
  3931. msgctxt "z_seam_type option back"
  3932. msgid "User Specified"
  3933. msgstr "Käyttäjän määrittämä"
  3934. msgctxt "material_shrinkage_percentage_z label"
  3935. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3936. msgstr ""
  3937. msgctxt "slicing_tolerance description"
  3938. 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."
  3939. msgstr ""
  3940. msgctxt "material_bed_temp_wait label"
  3941. msgid "Wait for Build Plate Heatup"
  3942. msgstr "Odota alustan lämpenemistä"
  3943. msgctxt "material_print_temp_wait label"
  3944. msgid "Wait for Nozzle Heatup"
  3945. msgstr "Odota suuttimen lämpenemistä"
  3946. msgctxt "acceleration_wall label"
  3947. msgid "Wall Acceleration"
  3948. msgstr "Seinämän kiihtyvyys"
  3949. msgctxt "wall_distribution_count label"
  3950. msgid "Wall Distribution Count"
  3951. msgstr ""
  3952. msgctxt "wall_extruder_nr label"
  3953. msgid "Wall Extruder"
  3954. msgstr "Seinämien suulake"
  3955. msgctxt "wall_material_flow label"
  3956. msgid "Wall Flow"
  3957. msgstr ""
  3958. msgctxt "jerk_wall label"
  3959. msgid "Wall Jerk"
  3960. msgstr "Seinämän nykäisy"
  3961. msgctxt "wall_line_count label"
  3962. msgid "Wall Line Count"
  3963. msgstr "Seinämälinjaluku"
  3964. msgctxt "wall_line_width label"
  3965. msgid "Wall Line Width"
  3966. msgstr "Seinämälinjan leveys"
  3967. msgctxt "inset_direction label"
  3968. msgid "Wall Ordering"
  3969. msgstr ""
  3970. msgctxt "speed_wall label"
  3971. msgid "Wall Speed"
  3972. msgstr "Seinämänopeus"
  3973. msgctxt "wall_thickness label"
  3974. msgid "Wall Thickness"
  3975. msgstr "Seinämän paksuus"
  3976. msgctxt "wall_transition_length label"
  3977. msgid "Wall Transition Length"
  3978. msgstr ""
  3979. msgctxt "wall_transition_filter_distance label"
  3980. msgid "Wall Transitioning Filter Distance"
  3981. msgstr ""
  3982. msgctxt "wall_transition_filter_deviation label"
  3983. msgid "Wall Transitioning Filter Margin"
  3984. msgstr ""
  3985. msgctxt "wall_transition_angle label"
  3986. msgid "Wall Transitioning Threshold Angle"
  3987. msgstr ""
  3988. msgctxt "shell label"
  3989. msgid "Walls"
  3990. msgstr ""
  3991. msgctxt "wall_overhang_angle description"
  3992. 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."
  3993. msgstr ""
  3994. msgctxt "meshfix_fluid_motion_enabled description"
  3995. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3996. msgstr ""
  3997. msgctxt "infill_enable_travel_optimization description"
  3998. 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."
  3999. msgstr ""
  4000. msgctxt "support_fan_enable description"
  4001. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4002. msgstr ""
  4003. msgctxt "z_seam_relative description"
  4004. 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."
  4005. 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."
  4006. msgctxt "retraction_combing_max_distance description"
  4007. 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."
  4008. msgstr ""
  4009. msgctxt "hole_xy_offset_max_diameter description"
  4010. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4011. msgstr ""
  4012. msgctxt "hole_xy_offset description"
  4013. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  4014. msgstr ""
  4015. msgctxt "bridge_skin_material_flow description"
  4016. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4017. msgstr ""
  4018. msgctxt "bridge_wall_material_flow description"
  4019. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4020. msgstr ""
  4021. msgctxt "bridge_skin_material_flow_2 description"
  4022. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4023. msgstr ""
  4024. msgctxt "bridge_skin_material_flow_3 description"
  4025. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4026. msgstr ""
  4027. msgctxt "cool_lift_head description"
  4028. 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."
  4029. msgstr "Kun miniminopeuteen päädytään kerroksen minimiajan johdosta, nosta pää pois tulosteesta ja odota, kunnes kerroksen minimiaika täyttyy."
  4030. msgctxt "skin_no_small_gaps_heuristic description"
  4031. 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."
  4032. msgstr ""
  4033. msgctxt "wall_transition_angle description"
  4034. 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."
  4035. msgstr ""
  4036. msgctxt "wall_transition_length description"
  4037. 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."
  4038. msgstr ""
  4039. msgctxt "wipe_hop_enable description"
  4040. 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."
  4041. msgstr ""
  4042. msgctxt "retraction_hop_enabled description"
  4043. 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."
  4044. 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."
  4045. msgctxt "support_xy_overrides_z description"
  4046. 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."
  4047. 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ä."
  4048. msgctxt "machine_center_is_zero description"
  4049. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  4050. msgstr "Ovatko tulostimen nollasijainnin X-/Y-koordinaatit tulostettavan alueen keskellä."
  4051. msgctxt "machine_endstop_positive_direction_x description"
  4052. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  4053. msgstr ""
  4054. msgctxt "machine_endstop_positive_direction_y description"
  4055. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  4056. msgstr ""
  4057. msgctxt "machine_endstop_positive_direction_z description"
  4058. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  4059. msgstr ""
  4060. msgctxt "machine_extruders_share_heater description"
  4061. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  4062. msgstr ""
  4063. msgctxt "machine_extruders_share_nozzle description"
  4064. 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."
  4065. msgstr ""
  4066. msgctxt "machine_heated_bed description"
  4067. msgid "Whether the machine has a heated build plate present."
  4068. msgstr "Sisältääkö laite lämmitettävän alustan."
  4069. msgctxt "machine_heated_build_volume description"
  4070. msgid "Whether the machine is able to stabilize the build volume temperature."
  4071. msgstr ""
  4072. msgctxt "center_object description"
  4073. 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."
  4074. msgstr "Määrittää, keskitetäänkö kappale alustan keskelle (0,0) sen sijasta, että käytettäisiin koordinaattijärjestelmää, jolla kappale on tallennettu."
  4075. msgctxt "machine_nozzle_temp_enabled description"
  4076. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  4077. msgstr "Lämpötilan hallinta Curan kautta. Kytke tämä pois, niin voit hallita suuttimen lämpötilaa Curan ulkopuolella."
  4078. msgctxt "material_bed_temp_prepend description"
  4079. 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."
  4080. 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ä."
  4081. msgctxt "material_print_temp_prepend description"
  4082. 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."
  4083. 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ä."
  4084. msgctxt "clean_between_layers description"
  4085. 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."
  4086. msgstr ""
  4087. msgctxt "material_bed_temp_wait description"
  4088. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  4089. msgstr "Lisätäänkö komento, jolla odotetaan alustan lämpötilan saavuttamista alussa."
  4090. msgctxt "prime_blob_enable description"
  4091. 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."
  4092. 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."
  4093. msgctxt "print_sequence description"
  4094. 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."
  4095. msgstr ""
  4096. msgctxt "machine_show_variants description"
  4097. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  4098. msgstr "Näytetäänkö laitteen eri variantit, jotka kuvataan erillisissä json-tiedostoissa."
  4099. msgctxt "machine_firmware_retract description"
  4100. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  4101. msgstr ""
  4102. msgctxt "material_print_temp_wait description"
  4103. msgid "Whether to wait until the nozzle temperature is reached at the start."
  4104. msgstr "Odotetaanko suuttimen lämpötilan saavuttamista alussa."
  4105. msgctxt "infill_line_width description"
  4106. msgid "Width of a single infill line."
  4107. msgstr "Yhden täyttölinjan leveys."
  4108. msgctxt "support_interface_line_width description"
  4109. msgid "Width of a single line of support roof or floor."
  4110. msgstr "Tukikaton tai -lattian yhden linjan leveys."
  4111. msgctxt "roofing_line_width description"
  4112. msgid "Width of a single line of the areas at the top of the print."
  4113. msgstr "Tulosteen yläosan alueiden yhden linjan leveys."
  4114. msgctxt "line_width description"
  4115. 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."
  4116. 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."
  4117. msgctxt "prime_tower_line_width description"
  4118. msgid "Width of a single prime tower line."
  4119. msgstr "Yhden esitäyttötornin linjan leveys."
  4120. msgctxt "skirt_brim_line_width description"
  4121. msgid "Width of a single skirt or brim line."
  4122. msgstr "Yhden helma- tai reunuslinjan leveys."
  4123. msgctxt "support_bottom_line_width description"
  4124. msgid "Width of a single support floor line."
  4125. msgstr "Tukilattian yhden linjan leveys."
  4126. msgctxt "support_roof_line_width description"
  4127. msgid "Width of a single support roof line."
  4128. msgstr "Tukikaton yhden linjan leveys."
  4129. msgctxt "support_line_width description"
  4130. msgid "Width of a single support structure line."
  4131. msgstr "Yhden tukirakenteen linjan leveys."
  4132. msgctxt "skin_line_width description"
  4133. msgid "Width of a single top/bottom line."
  4134. msgstr "Yhden ylä-/alalinjan leveys."
  4135. msgctxt "wall_line_width_x description"
  4136. msgid "Width of a single wall line for all wall lines except the outermost one."
  4137. msgstr "Yhden seinämälinjan leveys. Koskee kaikkia muita paitsi ulommaista seinämää."
  4138. msgctxt "wall_line_width description"
  4139. msgid "Width of a single wall line."
  4140. msgstr "Yhden seinämälinjan leveys."
  4141. msgctxt "raft_base_line_width description"
  4142. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  4143. msgstr "Pohjaristikon pohjakerroksen linjojen leveys. Näiden tulisi olla paksuja linjoja auttamassa tarttuvuutta alustaan."
  4144. msgctxt "raft_interface_line_width description"
  4145. 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."
  4146. msgstr "Pohjaristikon keskikerroksen linjojen leveys. Pursottamalla toiseen kerrokseen enemmän saa linjat tarttumaan alustaan."
  4147. msgctxt "raft_surface_line_width description"
  4148. 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."
  4149. msgstr "Pohjaristikon pintakerrosten linjojen leveys. Näiden tulisi olla ohuita linjoja, jotta pohjaristikon yläosasta tulee sileä."
  4150. msgctxt "wall_line_width_0 description"
  4151. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  4152. msgstr "Ulommaisen seinämälinjan leveys. Tätä arvoa pienentämällä voidaan tulostaa tarkempia yksityiskohtia."
  4153. msgctxt "min_bead_width description"
  4154. 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."
  4155. msgstr ""
  4156. msgctxt "wipe_brush_pos_x label"
  4157. msgid "Wipe Brush X Position"
  4158. msgstr ""
  4159. msgctxt "wipe_hop_speed label"
  4160. msgid "Wipe Hop Speed"
  4161. msgstr ""
  4162. msgctxt "prime_tower_wipe_enabled label"
  4163. msgid "Wipe Inactive Nozzle on Prime Tower"
  4164. msgstr "Pyyhi esitäyttötornin ei-aktiivinen suutin"
  4165. msgctxt "wipe_move_distance label"
  4166. msgid "Wipe Move Distance"
  4167. msgstr ""
  4168. msgctxt "clean_between_layers label"
  4169. msgid "Wipe Nozzle Between Layers"
  4170. msgstr ""
  4171. msgctxt "wipe_pause label"
  4172. msgid "Wipe Pause"
  4173. msgstr ""
  4174. msgctxt "wipe_repeat_count label"
  4175. msgid "Wipe Repeat Count"
  4176. msgstr ""
  4177. msgctxt "wipe_retraction_amount label"
  4178. msgid "Wipe Retraction Distance"
  4179. msgstr ""
  4180. msgctxt "wipe_retraction_enable label"
  4181. msgid "Wipe Retraction Enable"
  4182. msgstr ""
  4183. msgctxt "wipe_retraction_extra_prime_amount label"
  4184. msgid "Wipe Retraction Extra Prime Amount"
  4185. msgstr ""
  4186. msgctxt "wipe_retraction_prime_speed label"
  4187. msgid "Wipe Retraction Prime Speed"
  4188. msgstr ""
  4189. msgctxt "wipe_retraction_retract_speed label"
  4190. msgid "Wipe Retraction Retract Speed"
  4191. msgstr ""
  4192. msgctxt "wipe_retraction_speed label"
  4193. msgid "Wipe Retraction Speed"
  4194. msgstr ""
  4195. msgctxt "wipe_hop_enable label"
  4196. msgid "Wipe Z Hop"
  4197. msgstr ""
  4198. msgctxt "wipe_hop_amount label"
  4199. msgid "Wipe Z Hop Height"
  4200. msgstr ""
  4201. msgctxt "retraction_combing option infill"
  4202. msgid "Within Infill"
  4203. msgstr ""
  4204. msgctxt "machine_always_write_active_tool description"
  4205. 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."
  4206. msgstr ""
  4207. msgctxt "machine_endstop_positive_direction_x label"
  4208. msgid "X Endstop in Positive Direction"
  4209. msgstr ""
  4210. msgctxt "wipe_brush_pos_x description"
  4211. msgid "X location where wipe script will start."
  4212. msgstr ""
  4213. msgctxt "support_xy_overrides_z option xy_overrides_z"
  4214. msgid "X/Y overrides Z"
  4215. msgstr "X/Y kumoaa Z:n"
  4216. msgctxt "machine_endstop_positive_direction_y label"
  4217. msgid "Y Endstop in Positive Direction"
  4218. msgstr ""
  4219. msgctxt "machine_endstop_positive_direction_z label"
  4220. msgid "Z Endstop in Positive Direction"
  4221. msgstr ""
  4222. msgctxt "retraction_hop_after_extruder_switch label"
  4223. msgid "Z Hop After Extruder Switch"
  4224. msgstr "Z-hyppy suulakkeen vaihdon jälkeen"
  4225. msgctxt "retraction_hop_after_extruder_switch_height label"
  4226. msgid "Z Hop After Extruder Switch Height"
  4227. msgstr ""
  4228. msgctxt "retraction_hop label"
  4229. msgid "Z Hop Height"
  4230. msgstr "Z-hypyn korkeus"
  4231. msgctxt "retraction_hop_only_when_collides label"
  4232. msgid "Z Hop Only Over Printed Parts"
  4233. msgstr "Z-hyppy vain tulostettujen osien yli"
  4234. msgctxt "speed_z_hop label"
  4235. msgid "Z Hop Speed"
  4236. msgstr ""
  4237. msgctxt "retraction_hop_enabled label"
  4238. msgid "Z Hop When Retracted"
  4239. msgstr "Z-hyppy takaisinvedon yhteydessä"
  4240. msgctxt "z_seam_type label"
  4241. msgid "Z Seam Alignment"
  4242. msgstr "Z-sauman kohdistus"
  4243. msgctxt "z_seam_position label"
  4244. msgid "Z Seam Position"
  4245. msgstr ""
  4246. msgctxt "z_seam_relative label"
  4247. msgid "Z Seam Relative"
  4248. msgstr "Z-sauma suhteellinen"
  4249. msgctxt "z_seam_x label"
  4250. msgid "Z Seam X"
  4251. msgstr "Z-sauma X"
  4252. msgctxt "z_seam_y label"
  4253. msgid "Z Seam Y"
  4254. msgstr "Z-sauma Y"
  4255. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4256. msgid "Z overrides X/Y"
  4257. msgstr "Z kumoaa X/Y:n"
  4258. msgctxt "infill_pattern option zigzag"
  4259. msgid "Zig Zag"
  4260. msgstr "Siksak"
  4261. msgctxt "ironing_pattern option zigzag"
  4262. msgid "Zig Zag"
  4263. msgstr "Siksak"
  4264. msgctxt "roofing_pattern option zigzag"
  4265. msgid "Zig Zag"
  4266. msgstr "Siksak"
  4267. msgctxt "support_bottom_pattern option zigzag"
  4268. msgid "Zig Zag"
  4269. msgstr "Siksak"
  4270. msgctxt "support_interface_pattern option zigzag"
  4271. msgid "Zig Zag"
  4272. msgstr "Siksak"
  4273. msgctxt "support_pattern option zigzag"
  4274. msgid "Zig Zag"
  4275. msgstr "Siksak"
  4276. msgctxt "support_roof_pattern option zigzag"
  4277. msgid "Zig Zag"
  4278. msgstr "Siksak"
  4279. msgctxt "top_bottom_pattern option zigzag"
  4280. msgid "Zig Zag"
  4281. msgstr "Siksak"
  4282. msgctxt "top_bottom_pattern_0 option zigzag"
  4283. msgid "Zig Zag"
  4284. msgstr "Siksak"
  4285. msgctxt "travel description"
  4286. msgid "travel"
  4287. msgstr "siirtoliike"
  4288. #~ msgctxt "user_defined_print_order_enabled description"
  4289. #~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first."
  4290. #~ msgstr "Mahdollistaa kohteiden järjestämisen tulostusjärjestyksen manuaaliseen asettamiseen. Listan ensimmäinen kohde tulostetaan ensin."
  4291. #~ msgctxt "brim_outside_only label"
  4292. #~ msgid "Brim Only on Outside"
  4293. #~ msgstr "Reunus vain ulkopuolella"
  4294. #~ msgctxt "layer_0_z_overlap description"
  4295. #~ 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."
  4296. #~ 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."
  4297. #~ msgctxt "brim_outside_only description"
  4298. #~ 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."
  4299. #~ 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."
  4300. #~ msgctxt "support_interface_skip_height label"
  4301. #~ msgid "Support Interface Resolution"
  4302. #~ msgstr "Tukiliittymän resoluutio"
  4303. #~ msgctxt "support_interface_skip_height description"
  4304. #~ 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."
  4305. #~ 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ä."