fdmprinter.def.json.po 301 KB

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