cura.po 295 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549
  1. # Cura
  2. # Copyright (C) 2021 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 4.13\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0200\n"
  10. "PO-Revision-Date: 2017-09-27 12:27+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. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PrepareStage/__init__.py:12
  18. msgctxt "@item:inmenu"
  19. msgid "Prepare"
  20. msgstr ""
  21. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileWriter/__init__.py:14
  22. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileReader/__init__.py:14
  23. msgctxt "@item:inlistbox"
  24. msgid "Cura Profile"
  25. msgstr "Cura-profiili"
  26. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:15
  27. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  28. msgid "Open Compressed Triangle Mesh"
  29. msgstr ""
  30. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:19
  31. msgctxt "@item:inlistbox"
  32. msgid "COLLADA Digital Asset Exchange"
  33. msgstr ""
  34. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:23
  35. msgctxt "@item:inlistbox"
  36. msgid "glTF Binary"
  37. msgstr ""
  38. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:27
  39. msgctxt "@item:inlistbox"
  40. msgid "glTF Embedded JSON"
  41. msgstr ""
  42. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:36
  43. msgctxt "@item:inlistbox"
  44. msgid "Stanford Triangle Format"
  45. msgstr ""
  46. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:40
  47. msgctxt "@item:inlistbox"
  48. msgid "Compressed COLLADA Digital Asset Exchange"
  49. msgstr ""
  50. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  51. msgctxt "@info"
  52. msgid "Could not access update information."
  53. msgstr "Päivitystietoja ei löytynyt."
  54. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  55. #, python-brace-format
  56. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  57. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  58. msgstr ""
  59. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  60. #, python-format
  61. msgctxt "@info:title The %s gets replaced with the printer name."
  62. msgid "New %s stable firmware available"
  63. msgstr ""
  64. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  65. msgctxt "@action:button"
  66. msgid "How to update"
  67. msgstr ""
  68. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/__init__.py:14
  69. msgctxt "@item:inmenu"
  70. msgid "Monitor"
  71. msgstr ""
  72. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  73. msgctxt "@action:button Preceded by 'Ready to'."
  74. msgid "Save to Removable Drive"
  75. msgstr "Tallenna siirrettävälle asemalle"
  76. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  77. #, python-brace-format
  78. msgctxt "@item:inlistbox"
  79. msgid "Save to Removable Drive {0}"
  80. msgstr "Tallenna siirrettävälle asemalle {0}"
  81. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  82. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  83. msgctxt "@info:status"
  84. msgid "There are no file formats available to write with!"
  85. msgstr ""
  86. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  87. #, python-brace-format
  88. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  89. msgid "Saving to Removable Drive <filename>{0}</filename>"
  90. msgstr "Tallennetaan siirrettävälle asemalle <filename>{0}</filename>"
  91. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  92. msgctxt "@info:title"
  93. msgid "Saving"
  94. msgstr "Tallennetaan"
  95. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  96. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  97. #, python-brace-format
  98. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  99. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  100. msgstr "Ei voitu tallentaa tiedostoon <filename>{0}</filename>: <message>{1}</message>"
  101. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  102. #, python-brace-format
  103. msgctxt "@info:status Don't translate the tag {device}!"
  104. msgid "Could not find a file name when trying to write to {device}."
  105. msgstr "Ei löydetty tiedostonimeä yritettäessä kirjoittaa laitteeseen {device}."
  106. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  107. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  108. #, python-brace-format
  109. msgctxt "@info:status"
  110. msgid "Could not save to removable drive {0}: {1}"
  111. msgstr "Ei voitu tallentaa siirrettävälle asemalle {0}: {1}"
  112. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  114. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1782
  115. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:156
  116. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:166
  117. msgctxt "@info:title"
  118. msgid "Error"
  119. msgstr "Virhe"
  120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  121. #, python-brace-format
  122. msgctxt "@info:status"
  123. msgid "Saved to Removable Drive {0} as {1}"
  124. msgstr "Tallennettu siirrettävälle asemalle {0} nimellä {1}"
  125. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  126. msgctxt "@info:title"
  127. msgid "File Saved"
  128. msgstr "Tiedosto tallennettu"
  129. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  130. msgctxt "@action:button"
  131. msgid "Eject"
  132. msgstr "Poista"
  133. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  134. #, python-brace-format
  135. msgctxt "@action"
  136. msgid "Eject removable device {0}"
  137. msgstr "Poista siirrettävä asema {0}"
  138. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  139. #, python-brace-format
  140. msgctxt "@info:status"
  141. msgid "Ejected {0}. You can now safely remove the drive."
  142. msgstr "Poistettu {0}. Voit nyt poistaa aseman turvallisesti."
  143. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  144. msgctxt "@info:title"
  145. msgid "Safely Remove Hardware"
  146. msgstr "Poista laite turvallisesti"
  147. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  148. #, python-brace-format
  149. msgctxt "@info:status"
  150. msgid "Failed to eject {0}. Another program may be using the drive."
  151. msgstr "Kohteen {0} poistaminen epäonnistui. Asema saattaa olla toisen ohjelman käytössä."
  152. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  153. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1770
  154. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:217
  155. msgctxt "@info:title"
  156. msgid "Warning"
  157. msgstr "Varoitus"
  158. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  159. msgctxt "@item:intext"
  160. msgid "Removable Drive"
  161. msgstr "Siirrettävä asema"
  162. #: /home/remco/dev/code/ulti/trans/Cura/plugins/AMFReader/__init__.py:15
  163. msgctxt "@item:inlistbox"
  164. msgid "AMF File"
  165. msgstr ""
  166. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPReader/__init__.py:22
  167. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/__init__.py:28
  168. msgctxt "@item:inlistbox"
  169. msgid "Ultimaker Format Package"
  170. msgstr ""
  171. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  172. msgctxt "@label"
  173. msgid "Per Model Settings"
  174. msgstr "Mallikohtaiset asetukset"
  175. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  176. msgctxt "@info:tooltip"
  177. msgid "Configure Per Model Settings"
  178. msgstr "Määritä mallikohtaiset asetukset"
  179. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  180. msgctxt "@action"
  181. msgid "Update Firmware"
  182. msgstr ""
  183. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  184. #, python-brace-format
  185. msgctxt "@info:status"
  186. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  187. msgstr ""
  188. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  189. msgctxt "@info:title"
  190. msgid "Sending materials to printer"
  191. msgstr ""
  192. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  193. #, python-brace-format
  194. msgctxt "@info:status"
  195. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  196. msgstr ""
  197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  198. msgctxt "@info:title"
  199. msgid "Not a group host"
  200. msgstr ""
  201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  202. msgctxt "@action"
  203. msgid "Configure group"
  204. msgstr ""
  205. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  206. msgctxt "@info:status"
  207. msgid "Sending Print Job"
  208. msgstr ""
  209. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  210. msgctxt "@info:status"
  211. msgid "Uploading print job to printer."
  212. msgstr ""
  213. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  214. msgctxt "@info:status"
  215. msgid "Print job queue is full. The printer can't accept a new job."
  216. msgstr ""
  217. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  218. msgctxt "@info:title"
  219. msgid "Queue Full"
  220. msgstr ""
  221. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  222. msgctxt "@info:status"
  223. msgid "Please wait until the current job has been sent."
  224. msgstr ""
  225. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  226. msgctxt "@info:title"
  227. msgid "Print error"
  228. msgstr ""
  229. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  230. msgctxt "@info:status"
  231. msgid "Print job was successfully sent to the printer."
  232. msgstr ""
  233. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  234. msgctxt "@info:title"
  235. msgid "Data Sent"
  236. msgstr ""
  237. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  238. #, python-brace-format
  239. msgctxt "@info:status"
  240. msgid ""
  241. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  242. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  243. msgstr ""
  244. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  245. msgctxt "@info:title"
  246. msgid "Are you ready for cloud printing?"
  247. msgstr ""
  248. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  249. msgctxt "@action"
  250. msgid "Get started"
  251. msgstr ""
  252. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  253. msgctxt "@action"
  254. msgid "Learn more"
  255. msgstr ""
  256. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  257. msgctxt "@info:status"
  258. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  259. msgstr ""
  260. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  261. msgctxt "@info:title"
  262. msgid "Update your printer"
  263. msgstr ""
  264. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  265. msgctxt "@info:text"
  266. msgid "Could not upload the data to the printer."
  267. msgstr ""
  268. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  269. msgctxt "@info:title"
  270. msgid "Network error"
  271. msgstr ""
  272. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  273. msgctxt "@action:button Preceded by 'Ready to'."
  274. msgid "Print over network"
  275. msgstr "Tulosta verkon kautta"
  276. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  277. msgctxt "@properties:tooltip"
  278. msgid "Print over network"
  279. msgstr "Tulosta verkon kautta"
  280. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  281. msgctxt "@info:status"
  282. msgid "Connected over the network"
  283. msgstr ""
  284. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  285. msgctxt "@info:status"
  286. msgid "tomorrow"
  287. msgstr ""
  288. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  289. msgctxt "@info:status"
  290. msgid "today"
  291. msgstr ""
  292. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  293. msgctxt "@action"
  294. msgid "Connect via Network"
  295. msgstr "Yhdistä verkon kautta"
  296. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  297. msgctxt "info:status"
  298. msgid "New printer detected from your Ultimaker account"
  299. msgid_plural "New printers detected from your Ultimaker account"
  300. msgstr[0] ""
  301. msgstr[1] ""
  302. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  303. #, python-brace-format
  304. msgctxt "info:status Filled in with printer name and printer model."
  305. msgid "Adding printer {name} ({model}) from your account"
  306. msgstr ""
  307. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  308. #, python-brace-format
  309. msgctxt "info:{0} gets replaced by a number of printers"
  310. msgid "... and {0} other"
  311. msgid_plural "... and {0} others"
  312. msgstr[0] ""
  313. msgstr[1] ""
  314. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  315. msgctxt "info:status"
  316. msgid "Printers added from Digital Factory:"
  317. msgstr ""
  318. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  319. msgctxt "info:status"
  320. msgid "A cloud connection is not available for a printer"
  321. msgid_plural "A cloud connection is not available for some printers"
  322. msgstr[0] ""
  323. msgstr[1] ""
  324. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  325. msgctxt "info:status"
  326. msgid "This printer is not linked to the Digital Factory:"
  327. msgid_plural "These printers are not linked to the Digital Factory:"
  328. msgstr[0] ""
  329. msgstr[1] ""
  330. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  331. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  332. msgctxt "info:name"
  333. msgid "Ultimaker Digital Factory"
  334. msgstr ""
  335. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  336. #, python-brace-format
  337. msgctxt "info:status"
  338. msgid "To establish a connection, please visit the {website_link}"
  339. msgstr ""
  340. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  341. msgctxt "@action:button"
  342. msgid "Keep printer configurations"
  343. msgstr ""
  344. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  345. msgctxt "@action:button"
  346. msgid "Remove printers"
  347. msgstr ""
  348. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  349. #, python-brace-format
  350. msgctxt "@message {printer_name} is replaced with the name of the printer"
  351. msgid "{printer_name} will be removed until the next account sync."
  352. msgstr ""
  353. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  354. #, python-brace-format
  355. msgctxt "@message {printer_name} is replaced with the name of the printer"
  356. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  357. msgstr ""
  358. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  359. #, python-brace-format
  360. msgctxt "@message {printer_name} is replaced with the name of the printer"
  361. msgid "Are you sure you want to remove {printer_name} temporarily?"
  362. msgstr ""
  363. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  364. msgctxt "@title:window"
  365. msgid "Remove printers?"
  366. msgstr ""
  367. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  368. #, python-brace-format
  369. msgctxt "@label"
  370. msgid ""
  371. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  372. "Are you sure you want to continue?"
  373. msgid_plural ""
  374. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  375. "Are you sure you want to continue?"
  376. msgstr[0] ""
  377. msgstr[1] ""
  378. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  379. msgctxt "@label"
  380. msgid ""
  381. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  382. "Are you sure you want to continue?"
  383. msgstr ""
  384. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  385. msgctxt "@action:button"
  386. msgid "Print via cloud"
  387. msgstr ""
  388. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  389. msgctxt "@properties:tooltip"
  390. msgid "Print via cloud"
  391. msgstr ""
  392. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  393. msgctxt "@info:status"
  394. msgid "Connected via cloud"
  395. msgstr ""
  396. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  397. msgctxt "@action:button"
  398. msgid "Monitor print"
  399. msgstr ""
  400. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  401. msgctxt "@action:tooltip"
  402. msgid "Track the print in Ultimaker Digital Factory"
  403. msgstr ""
  404. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  405. #, python-brace-format
  406. msgctxt "@error:send"
  407. msgid "Unknown error code when uploading print job: {0}"
  408. msgstr ""
  409. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:31
  410. msgctxt "@info:title"
  411. msgid "3D Model Assistant"
  412. msgstr ""
  413. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:97
  414. #, python-brace-format
  415. msgctxt "@info:status"
  416. msgid ""
  417. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  418. "<p>{model_names}</p>\n"
  419. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  420. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  421. msgstr ""
  422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:129
  423. msgctxt "@info:status"
  424. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  425. msgstr ""
  426. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:130
  427. msgctxt "@info:title"
  428. msgid "Simulation View"
  429. msgstr ""
  430. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:133
  431. msgctxt "@info:status"
  432. msgid "Nothing is shown because you need to slice first."
  433. msgstr ""
  434. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:134
  435. msgctxt "@info:title"
  436. msgid "No layers to show"
  437. msgstr ""
  438. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:136
  439. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:74
  440. msgctxt "@info:option_text"
  441. msgid "Do not show this message again"
  442. msgstr ""
  443. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/__init__.py:15
  444. msgctxt "@item:inlistbox"
  445. msgid "Layer view"
  446. msgstr "Kerrosnäkymä"
  447. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  448. msgctxt "@error:not supported"
  449. msgid "GCodeWriter does not support non-text mode."
  450. msgstr ""
  451. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  452. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  453. msgctxt "@warning:status"
  454. msgid "Please prepare G-code before exporting."
  455. msgstr ""
  456. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/__init__.py:16
  457. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeProfileReader/__init__.py:14
  458. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:14
  459. msgctxt "@item:inlistbox"
  460. msgid "G-code File"
  461. msgstr "GCode-tiedosto"
  462. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  463. msgctxt "@error:zip"
  464. msgid "Error writing 3mf file."
  465. msgstr ""
  466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  467. msgctxt "@error:zip"
  468. msgid "3MF Writer plug-in is corrupt."
  469. msgstr ""
  470. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  471. msgctxt "@error"
  472. msgid "There is no workspace yet to write. Please add a printer first."
  473. msgstr ""
  474. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  476. msgctxt "@error:zip"
  477. msgid "No permission to write the workspace here."
  478. msgstr ""
  479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  480. msgctxt "@error:zip"
  481. msgid "The operating system does not allow saving a project file to this location or with this file name."
  482. msgstr ""
  483. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:26
  484. msgctxt "@item:inlistbox"
  485. msgid "3MF file"
  486. msgstr "3MF-tiedosto"
  487. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:34
  488. msgctxt "@item:inlistbox"
  489. msgid "Cura Project 3MF file"
  490. msgstr "Cura-projektin 3MF-tiedosto"
  491. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzReader/__init__.py:17
  492. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/__init__.py:17
  493. msgctxt "@item:inlistbox"
  494. msgid "Compressed G-code File"
  495. msgstr ""
  496. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  497. msgctxt "@message"
  498. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  499. msgstr ""
  500. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  501. msgctxt "@message:title"
  502. msgid "Slicing failed"
  503. msgstr ""
  504. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  505. msgctxt "@message:button"
  506. msgid "Report a bug"
  507. msgstr ""
  508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  509. msgctxt "@message:description"
  510. msgid "Report a bug on Ultimaker Cura's issue tracker."
  511. msgstr ""
  512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  513. msgctxt "@info:status"
  514. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  515. msgstr "Viipalointi ei onnistu nykyisellä materiaalilla, sillä se ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa."
  516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  518. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  519. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  520. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  522. msgctxt "@info:title"
  523. msgid "Unable to slice"
  524. msgstr "Viipalointi ei onnistu"
  525. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  526. #, python-brace-format
  527. msgctxt "@info:status"
  528. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  529. msgstr "Viipalointi ei onnistu nykyisten asetuksien ollessa voimassa. Seuraavissa asetuksissa on virheitä: {0}"
  530. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  531. #, python-brace-format
  532. msgctxt "@info:status"
  533. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  534. msgstr ""
  535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  536. msgctxt "@info:status"
  537. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  538. msgstr "Viipalointi ei onnistu, koska esitäyttötorni tai esitäytön sijainti tai sijainnit eivät kelpaa."
  539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  540. #, python-format
  541. msgctxt "@info:status"
  542. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  543. msgstr ""
  544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  545. msgctxt "@info:status"
  546. msgid ""
  547. "Please review settings and check if your models:\n"
  548. "- Fit within the build volume\n"
  549. "- Are assigned to an enabled extruder\n"
  550. "- Are not all set as modifier meshes"
  551. msgstr ""
  552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  554. msgctxt "@info:status"
  555. msgid "Processing Layers"
  556. msgstr "Käsitellään kerroksia"
  557. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  558. msgctxt "@info:title"
  559. msgid "Information"
  560. msgstr "Tiedot"
  561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/X3DReader/__init__.py:13
  562. msgctxt "@item:inlistbox"
  563. msgid "X3D File"
  564. msgstr "X3D-tiedosto"
  565. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:14
  566. msgctxt "@item:inlistbox"
  567. msgid "JPG Image"
  568. msgstr "JPG-kuva"
  569. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:18
  570. msgctxt "@item:inlistbox"
  571. msgid "JPEG Image"
  572. msgstr "JPEG-kuva"
  573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:22
  574. msgctxt "@item:inlistbox"
  575. msgid "PNG Image"
  576. msgstr "PNG-kuva"
  577. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:26
  578. msgctxt "@item:inlistbox"
  579. msgid "BMP Image"
  580. msgstr "BMP-kuva"
  581. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:30
  582. msgctxt "@item:inlistbox"
  583. msgid "GIF Image"
  584. msgstr "GIF-kuva"
  585. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  586. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:713
  587. msgctxt "@label"
  588. msgid "Nozzle"
  589. msgstr "Suutin"
  590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:544
  591. #, python-brace-format
  592. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  593. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  594. msgstr ""
  595. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  596. msgctxt "@info:title"
  597. msgid "Open Project File"
  598. msgstr ""
  599. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:644
  600. #, python-brace-format
  601. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  602. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  603. msgstr ""
  604. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:645
  605. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:653
  606. msgctxt "@info:title"
  607. msgid "Can't Open Project File"
  608. msgstr ""
  609. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:652
  610. #, python-brace-format
  611. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  612. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  613. msgstr ""
  614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:705
  615. #, python-brace-format
  616. msgctxt "@info:error Don't translate the XML tag <filename>!"
  617. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  618. msgstr ""
  619. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  620. msgctxt "@title:tab"
  621. msgid "Recommended"
  622. msgstr "Suositeltu"
  623. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  624. msgctxt "@title:tab"
  625. msgid "Custom"
  626. msgstr "Mukautettu"
  627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:27
  628. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:33
  629. msgctxt "@item:inlistbox"
  630. msgid "3MF File"
  631. msgstr "3MF-tiedosto"
  632. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:57
  633. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:72
  634. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:94
  635. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:149
  636. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:159
  637. msgctxt "@info:error"
  638. msgid "Can't write to UFP file:"
  639. msgstr ""
  640. #: /home/remco/dev/code/ulti/trans/Cura/plugins/LegacyProfileReader/__init__.py:14
  641. msgctxt "@item:inlistbox"
  642. msgid "Cura 15.04 profiles"
  643. msgstr "Cura 15.04 -profiilit"
  644. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  645. msgctxt "@info:title"
  646. msgid "Backups"
  647. msgstr ""
  648. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  649. msgctxt "@info:backup_status"
  650. msgid "There was an error while uploading your backup."
  651. msgstr ""
  652. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  653. msgctxt "@info:backup_status"
  654. msgid "Creating your backup..."
  655. msgstr ""
  656. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  657. msgctxt "@info:backup_status"
  658. msgid "There was an error while creating your backup."
  659. msgstr ""
  660. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  661. msgctxt "@info:backup_status"
  662. msgid "Uploading your backup..."
  663. msgstr ""
  664. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  665. msgctxt "@info:backup_status"
  666. msgid "Your backup has finished uploading."
  667. msgstr ""
  668. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  669. msgctxt "@error:file_size"
  670. msgid "The backup exceeds the maximum file size."
  671. msgstr ""
  672. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  673. msgctxt "@item:inmenu"
  674. msgid "Manage backups"
  675. msgstr ""
  676. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  677. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  678. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:122
  679. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:159
  680. msgctxt "@info:title"
  681. msgid "Backup"
  682. msgstr ""
  683. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  685. msgctxt "@info:backup_status"
  686. msgid "There was an error trying to restore your backup."
  687. msgstr ""
  688. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  689. msgctxt "@text"
  690. msgid "Unable to read example data file."
  691. msgstr ""
  692. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  693. msgctxt "@error:not supported"
  694. msgid "GCodeGzWriter does not support text mode."
  695. msgstr ""
  696. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  697. msgctxt "@item:inmenu"
  698. msgid "Post Processing"
  699. msgstr ""
  700. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  701. msgctxt "@item:inmenu"
  702. msgid "Modify G-Code"
  703. msgstr ""
  704. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:12
  705. msgctxt "@label"
  706. msgid "Support Blocker"
  707. msgstr ""
  708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:13
  709. msgctxt "@info:tooltip"
  710. msgid "Create a volume in which supports are not printed."
  711. msgstr ""
  712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PreviewStage/__init__.py:13
  713. msgctxt "@item:inmenu"
  714. msgid "Preview"
  715. msgstr ""
  716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/XRayView/__init__.py:12
  717. msgctxt "@item:inlistbox"
  718. msgid "X-Ray view"
  719. msgstr "Kerrosnäkymä"
  720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  721. msgctxt "@action"
  722. msgid "Level build plate"
  723. msgstr "Tasaa alusta"
  724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  725. msgctxt "@action"
  726. msgid "Select upgrades"
  727. msgstr "Valitse päivitykset"
  728. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:43
  729. msgctxt "@label:property"
  730. msgid "Unknown Package"
  731. msgstr ""
  732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:66
  733. msgctxt "@label:property"
  734. msgid "Unknown Author"
  735. msgstr ""
  736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:116
  737. msgctxt "@info:error"
  738. msgid "Could not interpret the server's response."
  739. msgstr ""
  740. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:146
  741. msgctxt "@info:error"
  742. msgid "Could not reach Marketplace."
  743. msgstr ""
  744. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:28
  745. msgctxt "@label"
  746. msgid "Installed Plugins"
  747. msgstr ""
  748. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:29
  749. msgctxt "@label"
  750. msgid "Installed Materials"
  751. msgstr ""
  752. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:33
  753. msgctxt "@label"
  754. msgid "Bundled Plugins"
  755. msgstr ""
  756. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:34
  757. msgctxt "@label"
  758. msgid "Bundled Materials"
  759. msgstr ""
  760. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:71
  761. msgctxt "@info:status"
  762. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  763. msgstr ""
  764. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:73
  765. msgctxt "@info:title"
  766. msgid "Model Errors"
  767. msgstr ""
  768. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:80
  769. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  770. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  771. msgctxt "@action:button"
  772. msgid "Learn more"
  773. msgstr ""
  774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/__init__.py:12
  775. msgctxt "@item:inmenu"
  776. msgid "Solid view"
  777. msgstr "Kiinteä näkymä"
  778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:350
  779. msgctxt "@info:status"
  780. msgid "Parsing G-code"
  781. msgstr "G-coden jäsennys"
  782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:352
  783. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:506
  784. msgctxt "@info:title"
  785. msgid "G-code Details"
  786. msgstr "G-coden tiedot"
  787. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:504
  788. msgctxt "@info:generic"
  789. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  790. msgstr "Varmista, että G-code on tulostimelle ja sen tulostusasetuksille soveltuva, ennen kuin lähetät tiedoston siihen. G-coden esitys ei välttämättä ole tarkka."
  791. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:18
  792. msgctxt "@item:inlistbox"
  793. msgid "G File"
  794. msgstr "G File -tiedosto"
  795. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  796. msgctxt "@action"
  797. msgid "Machine Settings"
  798. msgstr "Laitteen asetukset"
  799. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  800. msgctxt "@item:inmenu"
  801. msgid "USB printing"
  802. msgstr "USB-tulostus"
  803. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  804. msgctxt "@action:button Preceded by 'Ready to'."
  805. msgid "Print via USB"
  806. msgstr "Tulosta USB:n kautta"
  807. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  808. msgctxt "@info:tooltip"
  809. msgid "Print via USB"
  810. msgstr "Tulosta USB:n kautta"
  811. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  812. msgctxt "@info:status"
  813. msgid "Connected via USB"
  814. msgstr "Yhdistetty USB:n kautta"
  815. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  816. msgctxt "@label"
  817. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  818. msgstr ""
  819. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  820. msgctxt "@message"
  821. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  822. msgstr ""
  823. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  824. msgctxt "@message"
  825. msgid "Print in Progress"
  826. msgstr ""
  827. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:529
  828. msgctxt "@info:progress"
  829. msgid "Loading machines..."
  830. msgstr "Ladataan laitteita..."
  831. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:536
  832. msgctxt "@info:progress"
  833. msgid "Setting up preferences..."
  834. msgstr ""
  835. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:678
  836. msgctxt "@info:progress"
  837. msgid "Initializing Active Machine..."
  838. msgstr ""
  839. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:802
  840. msgctxt "@info:progress"
  841. msgid "Initializing machine manager..."
  842. msgstr ""
  843. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:816
  844. msgctxt "@info:progress"
  845. msgid "Initializing build volume..."
  846. msgstr ""
  847. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:884
  848. msgctxt "@info:progress"
  849. msgid "Setting up scene..."
  850. msgstr "Asetetaan näkymää..."
  851. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:920
  852. msgctxt "@info:progress"
  853. msgid "Loading interface..."
  854. msgstr "Ladataan käyttöliittymää..."
  855. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:925
  856. msgctxt "@info:progress"
  857. msgid "Initializing engine..."
  858. msgstr ""
  859. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1242
  860. #, python-format
  861. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  862. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  863. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  864. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1768
  865. #, python-brace-format
  866. msgctxt "@info:status"
  867. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  868. msgstr "Vain yksi G-code-tiedosto voidaan ladata kerralla. Tiedoston {0} tuonti ohitettiin."
  869. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1780
  870. #, python-brace-format
  871. msgctxt "@info:status"
  872. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  873. msgstr "Muita tiedostoja ei voida ladata, kun G-code latautuu. Tiedoston {0} tuonti ohitettiin."
  874. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  875. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:338
  876. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:11
  877. msgctxt "@label"
  878. msgid "Default"
  879. msgstr ""
  880. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  881. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:14
  882. msgctxt "@label"
  883. msgid "Visual"
  884. msgstr ""
  885. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  886. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:15
  887. msgctxt "@text"
  888. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  889. msgstr ""
  890. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  891. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:18
  892. msgctxt "@label"
  893. msgid "Engineering"
  894. msgstr ""
  895. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  896. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:19
  897. msgctxt "@text"
  898. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  899. msgstr ""
  900. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  901. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:22
  902. msgctxt "@label"
  903. msgid "Draft"
  904. msgstr ""
  905. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  906. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:23
  907. msgctxt "@text"
  908. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  909. msgstr ""
  910. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/ExtrudersModel.py:219
  911. msgctxt "@menuitem"
  912. msgid "Not overridden"
  913. msgstr ""
  914. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  915. #, python-brace-format
  916. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  917. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  918. msgstr ""
  919. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  920. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:361
  921. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1614
  922. msgctxt "@label"
  923. msgid "Unknown"
  924. msgstr "Tuntematon"
  925. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  926. msgctxt "@label"
  927. msgid "The printer(s) below cannot be connected because they are part of a group"
  928. msgstr ""
  929. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  930. msgctxt "@label"
  931. msgid "Available networked printers"
  932. msgstr ""
  933. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  934. msgctxt "@info:status"
  935. msgid "Calculated"
  936. msgstr "Laskettu"
  937. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  938. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  939. msgctxt "@action:button"
  940. msgid "Please sync the material profiles with your printers before starting to print."
  941. msgstr ""
  942. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  943. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  944. msgctxt "@action:button"
  945. msgid "New materials installed"
  946. msgstr ""
  947. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  948. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  949. msgctxt "@action:button"
  950. msgid "Sync materials"
  951. msgstr ""
  952. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  953. msgctxt "@label"
  954. msgid "Custom Material"
  955. msgstr "Mukautettu materiaali"
  956. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:336
  958. msgctxt "@label"
  959. msgid "Custom"
  960. msgstr "Mukautettu"
  961. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:390
  962. msgctxt "@label"
  963. msgid "Custom profiles"
  964. msgstr "Mukautetut profiilit"
  965. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:425
  966. #, python-brace-format
  967. msgctxt "@item:inlistbox"
  968. msgid "All Supported Types ({0})"
  969. msgstr ""
  970. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:426
  971. msgctxt "@item:inlistbox"
  972. msgid "All Files (*)"
  973. msgstr ""
  974. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  975. msgctxt "@text:error"
  976. msgid "Failed to create archive of materials to sync with printers."
  977. msgstr ""
  978. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  979. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  980. msgctxt "@text:error"
  981. msgid "Failed to load the archive of materials to sync it with printers."
  982. msgstr ""
  983. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  984. msgctxt "@text:error"
  985. msgid "The response from Digital Factory appears to be corrupted."
  986. msgstr ""
  987. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  988. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  989. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  990. msgctxt "@text:error"
  991. msgid "The response from Digital Factory is missing important information."
  992. msgstr ""
  993. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  994. msgctxt "@text:error"
  995. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  996. msgstr ""
  997. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  998. msgctxt "@text:error"
  999. msgid "Failed to connect to Digital Factory."
  1000. msgstr ""
  1001. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:115
  1002. msgctxt "@info:backup_failed"
  1003. msgid "Could not create archive from user data directory: {}"
  1004. msgstr ""
  1005. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:134
  1006. msgctxt "@info:backup_failed"
  1007. msgid "Tried to restore a Cura backup without having proper data or meta data."
  1008. msgstr ""
  1009. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:145
  1010. msgctxt "@info:backup_failed"
  1011. msgid "Tried to restore a Cura backup that is higher than the current version."
  1012. msgstr ""
  1013. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:158
  1014. msgctxt "@info:backup_failed"
  1015. msgid "The following error occurred while trying to restore a Cura backup:"
  1016. msgstr ""
  1017. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  1018. msgctxt "@info:status"
  1019. msgid "Finding new location for objects"
  1020. msgstr "Uusien paikkojen etsiminen kappaleille"
  1021. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  1022. msgctxt "@info:title"
  1023. msgid "Finding Location"
  1024. msgstr "Etsitään paikkaa"
  1025. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  1026. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:99
  1027. msgctxt "@info:status"
  1028. msgid "Unable to find a location within the build volume for all objects"
  1029. msgstr "Kaikille kappaleille ei löydy paikkaa tulostustilavuudessa."
  1030. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  1031. msgctxt "@info:title"
  1032. msgid "Can't Find Location"
  1033. msgstr "Paikkaa ei löydy"
  1034. #: /home/remco/dev/code/ulti/trans/Cura/cura/API/Account.py:190
  1035. msgctxt "@info:title"
  1036. msgid "Login failed"
  1037. msgstr ""
  1038. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:85
  1039. msgctxt "@tooltip"
  1040. msgid "Outer Wall"
  1041. msgstr "Ulkoseinämä"
  1042. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:86
  1043. msgctxt "@tooltip"
  1044. msgid "Inner Walls"
  1045. msgstr "Sisäseinämät"
  1046. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:87
  1047. msgctxt "@tooltip"
  1048. msgid "Skin"
  1049. msgstr "Pintakalvo"
  1050. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:88
  1051. msgctxt "@tooltip"
  1052. msgid "Infill"
  1053. msgstr "Täyttö"
  1054. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:89
  1055. msgctxt "@tooltip"
  1056. msgid "Support Infill"
  1057. msgstr "Tuen täyttö"
  1058. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:90
  1059. msgctxt "@tooltip"
  1060. msgid "Support Interface"
  1061. msgstr "Tukiliittymä"
  1062. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:91
  1063. msgctxt "@tooltip"
  1064. msgid "Support"
  1065. msgstr "Tuki"
  1066. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:92
  1067. msgctxt "@tooltip"
  1068. msgid "Skirt"
  1069. msgstr "Helma"
  1070. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:93
  1071. msgctxt "@tooltip"
  1072. msgid "Prime Tower"
  1073. msgstr ""
  1074. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:94
  1075. msgctxt "@tooltip"
  1076. msgid "Travel"
  1077. msgstr "Siirtoliike"
  1078. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:95
  1079. msgctxt "@tooltip"
  1080. msgid "Retractions"
  1081. msgstr "Takaisinvedot"
  1082. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:96
  1083. msgctxt "@tooltip"
  1084. msgid "Other"
  1085. msgstr "Muu"
  1086. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/ObjectsModel.py:69
  1087. #, python-brace-format
  1088. msgctxt "@label"
  1089. msgid "Group #{group_nr}"
  1090. msgstr ""
  1091. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:37
  1092. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:63
  1093. msgctxt "@text:window"
  1094. msgid "The release notes could not be opened."
  1095. msgstr ""
  1096. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:67
  1097. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:286
  1098. msgctxt "@action:button"
  1099. msgid "Skip"
  1100. msgstr ""
  1101. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:72
  1102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  1103. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:178
  1104. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:450
  1105. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  1106. msgctxt "@action:button"
  1107. msgid "Close"
  1108. msgstr "Sulje"
  1109. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:17
  1110. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  1111. msgctxt "@action:button"
  1112. msgid "Add"
  1113. msgstr "Lisää"
  1114. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:26
  1115. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:290
  1116. msgctxt "@action:button"
  1117. msgid "Finish"
  1118. msgstr ""
  1119. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:33
  1120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1121. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  1122. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:323
  1123. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:451
  1124. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  1125. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  1126. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  1127. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:74
  1128. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:136
  1129. msgctxt "@action:button"
  1130. msgid "Cancel"
  1131. msgstr "Peruuta"
  1132. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:57
  1133. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:277
  1134. msgctxt "@action:button"
  1135. msgid "Next"
  1136. msgstr ""
  1137. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:100
  1138. msgctxt "@info:status"
  1139. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  1140. msgstr "Tulostustilavuuden korkeutta on vähennetty tulostusjärjestysasetuksen vuoksi, jotta koroke ei osuisi tulostettuihin malleihin."
  1141. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:103
  1142. msgctxt "@info:title"
  1143. msgid "Build Volume"
  1144. msgstr "Tulostustilavuus"
  1145. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  1146. msgctxt "@message:text"
  1147. msgid "Could not save material archive to {}:"
  1148. msgstr ""
  1149. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  1150. msgctxt "@message:title"
  1151. msgid "Failed to save material archive"
  1152. msgstr ""
  1153. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  1154. msgctxt "@text"
  1155. msgid "Unknown error."
  1156. msgstr ""
  1157. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:207
  1158. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:140
  1159. msgctxt "@title:window"
  1160. msgid "File Already Exists"
  1161. msgstr "Tiedosto on jo olemassa"
  1162. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:208
  1163. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:141
  1164. #, python-brace-format
  1165. msgctxt "@label Don't translate the XML tag <filename>!"
  1166. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  1167. msgstr "Tiedosto <filename>{0}</filename> on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?"
  1168. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:459
  1169. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:462
  1170. msgctxt "@info:status"
  1171. msgid "Invalid file URL:"
  1172. msgstr ""
  1173. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1174. msgctxt "@info:not supported profile"
  1175. msgid "Not supported"
  1176. msgstr ""
  1177. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1178. msgctxt "@info:No intent profile selected"
  1179. msgid "Default"
  1180. msgstr ""
  1181. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:857
  1182. msgctxt "@info:message Followed by a list of settings."
  1183. msgid "Settings have been changed to match the current availability of extruders:"
  1184. msgstr ""
  1185. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:858
  1186. msgctxt "@info:title"
  1187. msgid "Settings updated"
  1188. msgstr ""
  1189. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1480
  1190. msgctxt "@info:title"
  1191. msgid "Extruder(s) Disabled"
  1192. msgstr ""
  1193. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:153
  1194. #, python-brace-format
  1195. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1196. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1197. msgstr "Profiilin vienti epäonnistui tiedostoon <filename>{0}</filename>: <message>{1}</message>"
  1198. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:163
  1199. #, python-brace-format
  1200. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1201. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1202. msgstr "Profiilin vienti epäonnistui tiedostoon <filename>{0}</filename>: Kirjoitin-lisäosa ilmoitti virheestä."
  1203. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:171
  1204. #, python-brace-format
  1205. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1206. msgid "Exported profile to <filename>{0}</filename>"
  1207. msgstr "Profiili viety tiedostoon <filename>{0}</filename>"
  1208. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:173
  1209. msgctxt "@info:title"
  1210. msgid "Export succeeded"
  1211. msgstr ""
  1212. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:205
  1213. #, python-brace-format
  1214. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1215. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1216. msgstr ""
  1217. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:209
  1218. #, python-brace-format
  1219. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1220. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  1221. msgstr ""
  1222. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:224
  1223. #, python-brace-format
  1224. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1225. msgid "No custom profile to import in file <filename>{0}</filename>"
  1226. msgstr ""
  1227. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:228
  1228. #, python-brace-format
  1229. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1230. msgid "Failed to import profile from <filename>{0}</filename>:"
  1231. msgstr ""
  1232. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:252
  1233. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:262
  1234. #, python-brace-format
  1235. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1236. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  1237. msgstr ""
  1238. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:355
  1239. #, python-brace-format
  1240. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1241. msgid "Failed to import profile from <filename>{0}</filename>:"
  1242. msgstr ""
  1243. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:359
  1244. #, python-brace-format
  1245. msgctxt "@info:status"
  1246. msgid "Successfully imported profile {0}."
  1247. msgstr ""
  1248. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:366
  1249. #, python-brace-format
  1250. msgctxt "@info:status"
  1251. msgid "File {0} does not contain any valid profile."
  1252. msgstr ""
  1253. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:369
  1254. #, python-brace-format
  1255. msgctxt "@info:status"
  1256. msgid "Profile {0} has an unknown file type or is corrupted."
  1257. msgstr "Profiililla {0} on tuntematon tiedostotyyppi tai se on vioittunut."
  1258. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:443
  1259. msgctxt "@label"
  1260. msgid "Custom profile"
  1261. msgstr "Mukautettu profiili"
  1262. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:459
  1263. msgctxt "@info:status"
  1264. msgid "Profile is missing a quality type."
  1265. msgstr "Profiilista puuttuu laatutyyppi."
  1266. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:463
  1267. msgctxt "@info:status"
  1268. msgid "There is no active printer yet."
  1269. msgstr ""
  1270. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:469
  1271. msgctxt "@info:status"
  1272. msgid "Unable to add the profile."
  1273. msgstr ""
  1274. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:483
  1275. #, python-brace-format
  1276. msgctxt "@info:status"
  1277. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  1278. msgstr ""
  1279. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:488
  1280. #, python-brace-format
  1281. msgctxt "@info:status"
  1282. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  1283. msgstr ""
  1284. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:30
  1285. msgctxt "@info:status"
  1286. msgid "Multiplying and placing objects"
  1287. msgstr "Kappaleiden kertominen ja sijoittelu"
  1288. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:32
  1289. msgctxt "@info:title"
  1290. msgid "Placing Objects"
  1291. msgstr ""
  1292. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:100
  1293. msgctxt "@info:title"
  1294. msgid "Placing Object"
  1295. msgstr "Sijoitetaan kappaletta"
  1296. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:216
  1297. msgctxt "@info"
  1298. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  1299. msgstr ""
  1300. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:277
  1301. msgctxt "@info"
  1302. msgid "Unable to reach the Ultimaker account server."
  1303. msgstr ""
  1304. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:278
  1305. msgctxt "@info:title"
  1306. msgid "Log-in failed"
  1307. msgstr ""
  1308. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  1309. msgctxt "@message"
  1310. msgid "Could not read response."
  1311. msgstr ""
  1312. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  1313. msgctxt "@message"
  1314. msgid "The provided state is not correct."
  1315. msgstr ""
  1316. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  1317. msgctxt "@message"
  1318. msgid "Timeout when authenticating with the account server."
  1319. msgstr ""
  1320. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  1321. msgctxt "@message"
  1322. msgid "Please give the required permissions when authorizing this application."
  1323. msgstr ""
  1324. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  1325. msgctxt "@message"
  1326. msgid "Something unexpected happened when trying to log in, please try again."
  1327. msgstr ""
  1328. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:107
  1329. msgctxt "@title:window"
  1330. msgid "Cura can't start"
  1331. msgstr ""
  1332. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:113
  1333. msgctxt "@label crash message"
  1334. msgid ""
  1335. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  1336. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  1337. " <p>Backups can be found in the configuration folder.</p>\n"
  1338. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  1339. " "
  1340. msgstr ""
  1341. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:122
  1342. msgctxt "@action:button"
  1343. msgid "Send crash report to Ultimaker"
  1344. msgstr ""
  1345. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:125
  1346. msgctxt "@action:button"
  1347. msgid "Show detailed crash report"
  1348. msgstr ""
  1349. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:129
  1350. msgctxt "@action:button"
  1351. msgid "Show configuration folder"
  1352. msgstr ""
  1353. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:140
  1354. msgctxt "@action:button"
  1355. msgid "Backup and Reset Configuration"
  1356. msgstr ""
  1357. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:171
  1358. msgctxt "@title:window"
  1359. msgid "Crash Report"
  1360. msgstr "Kaatumisraportti"
  1361. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:190
  1362. msgctxt "@label crash message"
  1363. msgid ""
  1364. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  1365. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  1366. " "
  1367. msgstr ""
  1368. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:198
  1369. msgctxt "@title:groupbox"
  1370. msgid "System information"
  1371. msgstr ""
  1372. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:207
  1373. msgctxt "@label unknown version of Cura"
  1374. msgid "Unknown"
  1375. msgstr ""
  1376. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:228
  1377. msgctxt "@label Cura version number"
  1378. msgid "Cura version"
  1379. msgstr ""
  1380. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:229
  1381. msgctxt "@label"
  1382. msgid "Cura language"
  1383. msgstr ""
  1384. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:230
  1385. msgctxt "@label"
  1386. msgid "OS language"
  1387. msgstr ""
  1388. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:231
  1389. msgctxt "@label Type of platform"
  1390. msgid "Platform"
  1391. msgstr ""
  1392. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:232
  1393. msgctxt "@label"
  1394. msgid "Qt version"
  1395. msgstr ""
  1396. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:233
  1397. msgctxt "@label"
  1398. msgid "PyQt version"
  1399. msgstr ""
  1400. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:234
  1401. msgctxt "@label OpenGL version"
  1402. msgid "OpenGL"
  1403. msgstr ""
  1404. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:264
  1405. msgctxt "@label"
  1406. msgid "Not yet initialized<br/>"
  1407. msgstr ""
  1408. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:267
  1409. #, python-brace-format
  1410. msgctxt "@label OpenGL version"
  1411. msgid "<li>OpenGL Version: {version}</li>"
  1412. msgstr ""
  1413. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:268
  1414. #, python-brace-format
  1415. msgctxt "@label OpenGL vendor"
  1416. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1417. msgstr ""
  1418. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:269
  1419. #, python-brace-format
  1420. msgctxt "@label OpenGL renderer"
  1421. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1422. msgstr ""
  1423. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:303
  1424. msgctxt "@title:groupbox"
  1425. msgid "Error traceback"
  1426. msgstr ""
  1427. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:389
  1428. msgctxt "@title:groupbox"
  1429. msgid "Logs"
  1430. msgstr ""
  1431. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:417
  1432. msgctxt "@action:button"
  1433. msgid "Send report"
  1434. msgstr ""
  1435. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1436. msgctxt "@info"
  1437. msgid ""
  1438. "Please make sure your printer has a connection:\n"
  1439. "- Check if the printer is turned on.\n"
  1440. "- Check if the printer is connected to the network.\n"
  1441. "- Check if you are signed in to discover cloud-connected printers."
  1442. msgstr ""
  1443. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:113
  1444. msgctxt "@info"
  1445. msgid "Please connect your printer to the network."
  1446. msgstr ""
  1447. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:146
  1448. msgctxt "@label link to technical assistance"
  1449. msgid "View user manuals online"
  1450. msgstr ""
  1451. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:163
  1452. msgctxt "@info"
  1453. msgid "In order to monitor your print from Cura, please connect the printer."
  1454. msgstr ""
  1455. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  1456. msgctxt "@title:window"
  1457. msgid "Select Settings to Customize for this model"
  1458. msgstr "Valitse tätä mallia varten mukautettavat asetukset"
  1459. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  1460. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:100
  1461. msgctxt "@label:textbox"
  1462. msgid "Filter..."
  1463. msgstr "Suodatin..."
  1464. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  1465. msgctxt "@label:checkbox"
  1466. msgid "Show all"
  1467. msgstr "Näytä kaikki"
  1468. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1469. msgctxt "@label"
  1470. msgid "Mesh Type"
  1471. msgstr ""
  1472. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1473. msgctxt "@label"
  1474. msgid "Normal model"
  1475. msgstr ""
  1476. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1477. msgctxt "@label"
  1478. msgid "Print as support"
  1479. msgstr ""
  1480. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1481. msgctxt "@label"
  1482. msgid "Modify settings for overlaps"
  1483. msgstr ""
  1484. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  1485. msgctxt "@label"
  1486. msgid "Don't support overlaps"
  1487. msgstr ""
  1488. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  1489. msgctxt "@item:inlistbox"
  1490. msgid "Infill mesh only"
  1491. msgstr ""
  1492. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  1493. msgctxt "@item:inlistbox"
  1494. msgid "Cutting mesh"
  1495. msgstr ""
  1496. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  1497. msgctxt "@action:button"
  1498. msgid "Select settings"
  1499. msgstr "Valitse asetukset"
  1500. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1501. msgctxt "@title"
  1502. msgid "Update Firmware"
  1503. msgstr ""
  1504. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1505. msgctxt "@label"
  1506. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1507. msgstr "Laiteohjelmisto on suoraan 3D-tulostimessa toimiva ohjelma. Laiteohjelmisto ohjaa askelmoottoreita, säätää lämpötilaa ja saa tulostimen toimimaan."
  1508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1509. msgctxt "@label"
  1510. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1511. msgstr "Uusien tulostimien mukana toimitettava laiteohjelmisto toimii, mutta uusissa versioissa on yleensä enemmän toimintoja ja parannuksia."
  1512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1513. msgctxt "@action:button"
  1514. msgid "Automatically upgrade Firmware"
  1515. msgstr "Päivitä laiteohjelmisto automaattisesti"
  1516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1517. msgctxt "@action:button"
  1518. msgid "Upload custom Firmware"
  1519. msgstr "Lataa mukautettu laiteohjelmisto"
  1520. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1521. msgctxt "@label"
  1522. msgid "Firmware can not be updated because there is no connection with the printer."
  1523. msgstr ""
  1524. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1525. msgctxt "@label"
  1526. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1527. msgstr ""
  1528. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1529. msgctxt "@title:window"
  1530. msgid "Select custom firmware"
  1531. msgstr "Valitse mukautettu laiteohjelmisto"
  1532. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:114
  1533. msgctxt "@title:window"
  1534. msgid "Firmware Update"
  1535. msgstr "Laiteohjelmiston päivitys"
  1536. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:138
  1537. msgctxt "@label"
  1538. msgid "Updating firmware."
  1539. msgstr "Päivitetään laiteohjelmistoa."
  1540. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:140
  1541. msgctxt "@label"
  1542. msgid "Firmware update completed."
  1543. msgstr "Laiteohjelmiston päivitys suoritettu."
  1544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:142
  1545. msgctxt "@label"
  1546. msgid "Firmware update failed due to an unknown error."
  1547. msgstr "Laiteohjelmiston päivitys epäonnistui tuntemattoman virheen takia."
  1548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:144
  1549. msgctxt "@label"
  1550. msgid "Firmware update failed due to an communication error."
  1551. msgstr "Laiteohjelmiston päivitys epäonnistui tietoliikennevirheen takia."
  1552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:146
  1553. msgctxt "@label"
  1554. msgid "Firmware update failed due to an input/output error."
  1555. msgstr "Laiteohjelmiston päivitys epäonnistui tiedoston lukemiseen tai kirjoittamiseen liittyvän virheen takia."
  1556. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:148
  1557. msgctxt "@label"
  1558. msgid "Firmware update failed due to missing firmware."
  1559. msgstr "Laiteohjelmiston päivitys epäonnistui puuttuvan laiteohjelmiston takia."
  1560. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  1561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1562. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1563. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1564. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1565. msgctxt "@label:status"
  1566. msgid "Aborted"
  1567. msgstr ""
  1568. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  1569. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1570. msgctxt "@label:status"
  1571. msgid "Finished"
  1572. msgstr "Valmis"
  1573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1574. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1575. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1576. msgctxt "@label:status"
  1577. msgid "Preparing..."
  1578. msgstr ""
  1579. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1580. msgctxt "@label:status"
  1581. msgid "Aborting..."
  1582. msgstr ""
  1583. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1584. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1585. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1586. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1587. msgctxt "@label:status"
  1588. msgid "Failed"
  1589. msgstr ""
  1590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1591. msgctxt "@label:status"
  1592. msgid "Pausing..."
  1593. msgstr ""
  1594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1595. msgctxt "@label:status"
  1596. msgid "Paused"
  1597. msgstr ""
  1598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1599. msgctxt "@label:status"
  1600. msgid "Resuming..."
  1601. msgstr ""
  1602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1603. msgctxt "@label:status"
  1604. msgid "Action required"
  1605. msgstr "Vaatii toimenpiteitä"
  1606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1607. msgctxt "@label:status"
  1608. msgid "Finishes %1 at %2"
  1609. msgstr ""
  1610. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1611. msgctxt "@label link to Connect and Cloud interfaces"
  1612. msgid "Manage printer"
  1613. msgstr ""
  1614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178
  1615. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1616. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175
  1617. msgctxt "@label"
  1618. msgid "Glass"
  1619. msgstr ""
  1620. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241
  1621. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467
  1622. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239
  1623. msgctxt "@info"
  1624. msgid "Please update your printer's firmware to manage the queue remotely."
  1625. msgstr ""
  1626. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275
  1627. msgctxt "@info"
  1628. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1629. msgstr ""
  1630. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335
  1631. msgctxt "@label:status"
  1632. msgid "Loading..."
  1633. msgstr ""
  1634. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339
  1635. msgctxt "@label:status"
  1636. msgid "Unavailable"
  1637. msgstr ""
  1638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343
  1639. msgctxt "@label:status"
  1640. msgid "Unreachable"
  1641. msgstr ""
  1642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1643. msgctxt "@label:status"
  1644. msgid "Idle"
  1645. msgstr ""
  1646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1647. msgctxt "@label:status"
  1648. msgid "Printing"
  1649. msgstr "Tulostetaan"
  1650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397
  1651. msgctxt "@label"
  1652. msgid "Untitled"
  1653. msgstr ""
  1654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412
  1655. msgctxt "@label"
  1656. msgid "Anonymous"
  1657. msgstr ""
  1658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433
  1659. msgctxt "@label:status"
  1660. msgid "Requires configuration changes"
  1661. msgstr ""
  1662. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447
  1663. msgctxt "@action:button"
  1664. msgid "Details"
  1665. msgstr ""
  1666. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1667. msgctxt "@title:window"
  1668. msgid "Configuration Changes"
  1669. msgstr ""
  1670. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1671. msgctxt "@action:button"
  1672. msgid "Override"
  1673. msgstr ""
  1674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1675. msgctxt "@label"
  1676. msgid "The assigned printer, %1, requires the following configuration change:"
  1677. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1678. msgstr[0] ""
  1679. msgstr[1] ""
  1680. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1681. msgctxt "@label"
  1682. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1683. msgstr ""
  1684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1685. msgctxt "@label"
  1686. msgid "Change material %1 from %2 to %3."
  1687. msgstr ""
  1688. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1689. msgctxt "@label"
  1690. msgid "Load %3 as material %1 (This cannot be overridden)."
  1691. msgstr ""
  1692. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1693. msgctxt "@label"
  1694. msgid "Change print core %1 from %2 to %3."
  1695. msgstr ""
  1696. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1697. msgctxt "@label"
  1698. msgid "Change build plate to %1 (This cannot be overridden)."
  1699. msgstr ""
  1700. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1701. msgctxt "@label"
  1702. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1703. msgstr ""
  1704. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1705. msgctxt "@label"
  1706. msgid "Aluminum"
  1707. msgstr ""
  1708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1709. msgctxt "@title:window"
  1710. msgid "Print over network"
  1711. msgstr "Tulosta verkon kautta"
  1712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1713. msgctxt "@action:button"
  1714. msgid "Print"
  1715. msgstr "Tulosta"
  1716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1717. msgctxt "@label"
  1718. msgid "Printer selection"
  1719. msgstr ""
  1720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1721. msgctxt "@title:window"
  1722. msgid "Connect to Networked Printer"
  1723. msgstr "Yhdistä verkkotulostimeen"
  1724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1725. msgctxt "@label"
  1726. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  1727. msgstr ""
  1728. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1729. msgctxt "@label"
  1730. msgid "Select your printer from the list below:"
  1731. msgstr ""
  1732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1733. msgctxt "@action:button"
  1734. msgid "Edit"
  1735. msgstr "Muokkaa"
  1736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:141
  1738. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1739. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:320
  1740. msgctxt "@action:button"
  1741. msgid "Remove"
  1742. msgstr "Poista"
  1743. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1744. msgctxt "@action:button"
  1745. msgid "Refresh"
  1746. msgstr "Päivitä"
  1747. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1748. msgctxt "@label"
  1749. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1750. msgstr "Jos tulostinta ei ole luettelossa, lue <a href='%1'>verkkotulostuksen vianetsintäopas</a>"
  1751. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  1752. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1753. msgctxt "@label"
  1754. msgid "Type"
  1755. msgstr "Tyyppi"
  1756. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  1757. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1758. msgctxt "@label"
  1759. msgid "Firmware version"
  1760. msgstr "Laiteohjelmistoversio"
  1761. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  1762. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1763. msgctxt "@label"
  1764. msgid "Address"
  1765. msgstr "Osoite"
  1766. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1767. msgctxt "@label"
  1768. msgid "This printer is not set up to host a group of printers."
  1769. msgstr ""
  1770. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1771. msgctxt "@label"
  1772. msgid "This printer is the host for a group of %1 printers."
  1773. msgstr ""
  1774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1775. msgctxt "@label"
  1776. msgid "The printer at this address has not yet responded."
  1777. msgstr "Tämän osoitteen tulostin ei ole vielä vastannut."
  1778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1779. msgctxt "@action:button"
  1780. msgid "Connect"
  1781. msgstr "Yhdistä"
  1782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1783. msgctxt "@title:window"
  1784. msgid "Invalid IP address"
  1785. msgstr ""
  1786. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  1787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1788. msgctxt "@text"
  1789. msgid "Please enter a valid IP address."
  1790. msgstr ""
  1791. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1792. msgctxt "@title:window"
  1793. msgid "Printer Address"
  1794. msgstr "Tulostimen osoite"
  1795. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1796. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1797. msgctxt "@label"
  1798. msgid "Enter the IP address of your printer on the network."
  1799. msgstr ""
  1800. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1801. msgctxt "@label"
  1802. msgid "Unavailable printer"
  1803. msgstr ""
  1804. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1805. msgctxt "@label"
  1806. msgid "First available"
  1807. msgstr ""
  1808. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1809. msgctxt "@label"
  1810. msgid "Move to top"
  1811. msgstr ""
  1812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1813. msgctxt "@label"
  1814. msgid "Delete"
  1815. msgstr ""
  1816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1817. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:284
  1818. msgctxt "@label"
  1819. msgid "Resume"
  1820. msgstr ""
  1821. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1822. msgctxt "@label"
  1823. msgid "Pausing..."
  1824. msgstr ""
  1825. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1826. msgctxt "@label"
  1827. msgid "Resuming..."
  1828. msgstr ""
  1829. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1830. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:279
  1831. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:288
  1832. msgctxt "@label"
  1833. msgid "Pause"
  1834. msgstr ""
  1835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1836. msgctxt "@label"
  1837. msgid "Aborting..."
  1838. msgstr ""
  1839. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1840. msgctxt "@label"
  1841. msgid "Abort"
  1842. msgstr ""
  1843. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142
  1844. msgctxt "@label %1 is the name of a print job."
  1845. msgid "Are you sure you want to move %1 to the top of the queue?"
  1846. msgstr ""
  1847. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1848. msgctxt "@window:title"
  1849. msgid "Move print job to top"
  1850. msgstr ""
  1851. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151
  1852. msgctxt "@label %1 is the name of a print job."
  1853. msgid "Are you sure you want to delete %1?"
  1854. msgstr ""
  1855. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152
  1856. msgctxt "@window:title"
  1857. msgid "Delete print job"
  1858. msgstr ""
  1859. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160
  1860. msgctxt "@label %1 is the name of a print job."
  1861. msgid "Are you sure you want to abort %1?"
  1862. msgstr ""
  1863. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161
  1864. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:326
  1865. msgctxt "@window:title"
  1866. msgid "Abort print"
  1867. msgstr "Keskeytä tulostus"
  1868. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1869. msgctxt "@label"
  1870. msgid "Queued"
  1871. msgstr "Jonossa"
  1872. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63
  1873. msgctxt "@label link to connect manager"
  1874. msgid "Manage in browser"
  1875. msgstr ""
  1876. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90
  1877. msgctxt "@label"
  1878. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1879. msgstr ""
  1880. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98
  1881. msgctxt "@label"
  1882. msgid "Print jobs"
  1883. msgstr ""
  1884. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107
  1885. msgctxt "@label"
  1886. msgid "Total print time"
  1887. msgstr ""
  1888. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  1889. msgctxt "@label"
  1890. msgid "Waiting for"
  1891. msgstr ""
  1892. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:19
  1893. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:48
  1894. msgctxt "@label"
  1895. msgid "Color scheme"
  1896. msgstr "Värimalli"
  1897. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  1898. msgctxt "@label:listbox"
  1899. msgid "Material Color"
  1900. msgstr "Materiaalin väri"
  1901. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  1902. msgctxt "@label:listbox"
  1903. msgid "Line Type"
  1904. msgstr "Linjojen tyyppi"
  1905. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  1906. msgctxt "@label:listbox"
  1907. msgid "Speed"
  1908. msgstr ""
  1909. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  1910. msgctxt "@label:listbox"
  1911. msgid "Layer Thickness"
  1912. msgstr ""
  1913. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  1914. msgctxt "@label:listbox"
  1915. msgid "Line Width"
  1916. msgstr ""
  1917. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  1918. msgctxt "@label:listbox"
  1919. msgid "Flow"
  1920. msgstr ""
  1921. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:165
  1922. msgctxt "@label"
  1923. msgid "Compatibility Mode"
  1924. msgstr "Yhteensopivuustila"
  1925. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:232
  1926. msgctxt "@label"
  1927. msgid "Travels"
  1928. msgstr ""
  1929. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:238
  1930. msgctxt "@label"
  1931. msgid "Helpers"
  1932. msgstr ""
  1933. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:244
  1934. msgctxt "@label"
  1935. msgid "Shell"
  1936. msgstr ""
  1937. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:250
  1938. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64
  1939. msgctxt "@label"
  1940. msgid "Infill"
  1941. msgstr "Täyttö"
  1942. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:258
  1943. msgctxt "@label"
  1944. msgid "Starts"
  1945. msgstr ""
  1946. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  1947. msgctxt "@label"
  1948. msgid "Only Show Top Layers"
  1949. msgstr "Näytä vain yläkerrokset"
  1950. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:316
  1951. msgctxt "@label"
  1952. msgid "Show 5 Detailed Layers On Top"
  1953. msgstr "Näytä 5 yksityiskohtaista kerrosta ylhäällä"
  1954. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:329
  1955. msgctxt "@label"
  1956. msgid "Top / Bottom"
  1957. msgstr "Yläosa/alaosa"
  1958. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:333
  1959. msgctxt "@label"
  1960. msgid "Inner Wall"
  1961. msgstr "Sisäseinämä"
  1962. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:400
  1963. msgctxt "@label"
  1964. msgid "min"
  1965. msgstr ""
  1966. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:465
  1967. msgctxt "@label"
  1968. msgid "max"
  1969. msgstr ""
  1970. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:14
  1971. msgctxt "@title:window"
  1972. msgid "Convert Image"
  1973. msgstr ""
  1974. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:33
  1975. msgctxt "@action:label"
  1976. msgid "Height (mm)"
  1977. msgstr "Korkeus (mm)"
  1978. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:56
  1979. msgctxt "@info:tooltip"
  1980. msgid "The maximum distance of each pixel from \"Base.\""
  1981. msgstr "Kunkin pikselin suurin etäisyys \"Pohja\"-arvosta."
  1982. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:66
  1983. msgctxt "@action:label"
  1984. msgid "Base (mm)"
  1985. msgstr "Pohja (mm)"
  1986. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:90
  1987. msgctxt "@info:tooltip"
  1988. msgid "The base height from the build plate in millimeters."
  1989. msgstr "Pohjan korkeus alustasta millimetreinä."
  1990. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:100
  1991. msgctxt "@action:label"
  1992. msgid "Width (mm)"
  1993. msgstr "Leveys (mm)"
  1994. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:124
  1995. msgctxt "@info:tooltip"
  1996. msgid "The width in millimeters on the build plate"
  1997. msgstr ""
  1998. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:134
  1999. msgctxt "@action:label"
  2000. msgid "Depth (mm)"
  2001. msgstr "Syvyys (mm)"
  2002. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:158
  2003. msgctxt "@info:tooltip"
  2004. msgid "The depth in millimeters on the build plate"
  2005. msgstr "Syvyys millimetreinä alustalla"
  2006. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:187
  2007. msgctxt "@item:inlistbox"
  2008. msgid "Darker is higher"
  2009. msgstr "Tummempi on korkeampi"
  2010. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:188
  2011. msgctxt "@item:inlistbox"
  2012. msgid "Lighter is higher"
  2013. msgstr "Vaaleampi on korkeampi"
  2014. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:195
  2015. msgctxt "@info:tooltip"
  2016. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  2017. msgstr ""
  2018. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:205
  2019. msgctxt "@action:label"
  2020. msgid "Color Model"
  2021. msgstr ""
  2022. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:224
  2023. msgctxt "@item:inlistbox"
  2024. msgid "Linear"
  2025. msgstr ""
  2026. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:225
  2027. msgctxt "@item:inlistbox"
  2028. msgid "Translucency"
  2029. msgstr ""
  2030. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:232
  2031. msgctxt "@info:tooltip"
  2032. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2033. msgstr ""
  2034. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:242
  2035. msgctxt "@action:label"
  2036. msgid "1mm Transmittance (%)"
  2037. msgstr ""
  2038. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:263
  2039. msgctxt "@info:tooltip"
  2040. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  2041. msgstr ""
  2042. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:274
  2043. msgctxt "@action:label"
  2044. msgid "Smoothing"
  2045. msgstr "Tasoitus"
  2046. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:298
  2047. msgctxt "@info:tooltip"
  2048. msgid "The amount of smoothing to apply to the image."
  2049. msgstr "Kuvassa käytettävän tasoituksen määrä."
  2050. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:329
  2051. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2052. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:80
  2053. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:140
  2054. msgctxt "@action:button"
  2055. msgid "OK"
  2056. msgstr "OK"
  2057. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2058. msgctxt "@title:window"
  2059. msgid "Open Project"
  2060. msgstr "Avaa projekti"
  2061. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:55
  2062. msgctxt "@action:ComboBox Update/override existing profile"
  2063. msgid "Update existing"
  2064. msgstr ""
  2065. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:56
  2066. msgctxt "@action:ComboBox Save settings in a new profile"
  2067. msgid "Create new"
  2068. msgstr ""
  2069. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  2070. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:52
  2071. msgctxt "@action:title"
  2072. msgid "Summary - Cura Project"
  2073. msgstr "Yhteenveto – Cura-projekti"
  2074. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:100
  2075. msgctxt "@info:tooltip"
  2076. msgid "How should the conflict in the machine be resolved?"
  2077. msgstr "Miten laitteen ristiriita pitäisi ratkaista?"
  2078. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:156
  2079. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:88
  2080. msgctxt "@action:label"
  2081. msgid "Printer settings"
  2082. msgstr "Tulostimen asetukset"
  2083. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2084. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2085. msgctxt "@action:label"
  2086. msgid "Type"
  2087. msgstr "Tyyppi"
  2088. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:184
  2089. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2090. msgctxt "@action:label"
  2091. msgid "Printer Group"
  2092. msgstr ""
  2093. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:209
  2094. msgctxt "@info:tooltip"
  2095. msgid "How should the conflict in the profile be resolved?"
  2096. msgstr "Miten profiilin ristiriita pitäisi ratkaista?"
  2097. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2098. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:213
  2099. msgctxt "@action:label"
  2100. msgid "Profile settings"
  2101. msgstr "Profiilin asetukset"
  2102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2103. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  2104. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2105. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:237
  2106. msgctxt "@action:label"
  2107. msgid "Name"
  2108. msgstr "Nimi"
  2109. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:260
  2110. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  2111. msgctxt "@action:label"
  2112. msgid "Intent"
  2113. msgstr ""
  2114. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:278
  2115. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2116. msgctxt "@action:label"
  2117. msgid "Not in profile"
  2118. msgstr "Ei profiilissa"
  2119. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  2120. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2121. msgctxt "@action:label"
  2122. msgid "%1 override"
  2123. msgid_plural "%1 overrides"
  2124. msgstr[0] "%1 ohitus"
  2125. msgstr[1] "%1 ohitusta"
  2126. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:297
  2127. msgctxt "@action:label"
  2128. msgid "Derivative from"
  2129. msgstr "Johdettu seuraavista"
  2130. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:303
  2131. msgctxt "@action:label"
  2132. msgid "%1, %2 override"
  2133. msgid_plural "%1, %2 overrides"
  2134. msgstr[0] "%1, %2 ohitus"
  2135. msgstr[1] "%1, %2 ohitusta"
  2136. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  2137. msgctxt "@info:tooltip"
  2138. msgid "How should the conflict in the material be resolved?"
  2139. msgstr "Miten materiaalin ristiriita pitäisi ratkaista?"
  2140. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2141. msgctxt "@action:label"
  2142. msgid "Material settings"
  2143. msgstr "Materiaaliasetukset"
  2144. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:388
  2145. msgctxt "@action:label"
  2146. msgid "Setting visibility"
  2147. msgstr "Asetusten näkyvyys"
  2148. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2149. msgctxt "@action:label"
  2150. msgid "Mode"
  2151. msgstr "Tila"
  2152. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:413
  2153. msgctxt "@action:label"
  2154. msgid "Visible settings:"
  2155. msgstr "Näkyvät asetukset:"
  2156. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:418
  2157. msgctxt "@action:label"
  2158. msgid "%1 out of %2"
  2159. msgstr "%1/%2"
  2160. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:439
  2161. msgctxt "@action:warning"
  2162. msgid "Loading a project will clear all models on the build plate."
  2163. msgstr ""
  2164. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:456
  2165. msgctxt "@action:button"
  2166. msgid "Open"
  2167. msgstr "Avaa"
  2168. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2169. msgctxt "@button"
  2170. msgid "Want more?"
  2171. msgstr ""
  2172. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2173. msgctxt "@button"
  2174. msgid "Backup Now"
  2175. msgstr ""
  2176. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2177. msgctxt "@checkbox:description"
  2178. msgid "Auto Backup"
  2179. msgstr ""
  2180. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2181. msgctxt "@checkbox:description"
  2182. msgid "Automatically create a backup each day that Cura is started."
  2183. msgstr ""
  2184. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2185. msgctxt "@backuplist:label"
  2186. msgid "Cura Version"
  2187. msgstr ""
  2188. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2189. msgctxt "@backuplist:label"
  2190. msgid "Machines"
  2191. msgstr ""
  2192. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2193. msgctxt "@backuplist:label"
  2194. msgid "Materials"
  2195. msgstr ""
  2196. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2197. msgctxt "@backuplist:label"
  2198. msgid "Profiles"
  2199. msgstr ""
  2200. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2201. msgctxt "@backuplist:label"
  2202. msgid "Plugins"
  2203. msgstr ""
  2204. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2205. msgctxt "@button"
  2206. msgid "Restore"
  2207. msgstr ""
  2208. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2209. msgctxt "@dialog:title"
  2210. msgid "Delete Backup"
  2211. msgstr ""
  2212. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2213. msgctxt "@dialog:info"
  2214. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2215. msgstr ""
  2216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2217. msgctxt "@dialog:title"
  2218. msgid "Restore Backup"
  2219. msgstr ""
  2220. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2221. msgctxt "@dialog:info"
  2222. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2223. msgstr ""
  2224. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2225. msgctxt "@description"
  2226. msgid "Backup and synchronize your Cura settings."
  2227. msgstr ""
  2228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:49
  2230. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:163
  2231. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  2232. msgctxt "@button"
  2233. msgid "Sign in"
  2234. msgstr ""
  2235. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2236. msgctxt "@title"
  2237. msgid "My Backups"
  2238. msgstr ""
  2239. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2240. msgctxt "@empty_state"
  2241. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2242. msgstr ""
  2243. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2244. msgctxt "@backup_limit_info"
  2245. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2246. msgstr ""
  2247. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2248. msgctxt "@title:window"
  2249. msgid "Cura Backups"
  2250. msgstr ""
  2251. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2252. msgctxt "@title:window"
  2253. msgid "More information on anonymous data collection"
  2254. msgstr ""
  2255. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2256. msgctxt "@text:window"
  2257. msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2258. msgstr ""
  2259. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2260. msgctxt "@text:window"
  2261. msgid "I don't want to send anonymous data"
  2262. msgstr ""
  2263. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2264. msgctxt "@text:window"
  2265. msgid "Allow sending anonymous data"
  2266. msgstr ""
  2267. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2268. msgctxt "@title:window"
  2269. msgid "Post Processing Plugin"
  2270. msgstr "Jälkikäsittelylisäosa"
  2271. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2272. msgctxt "@label"
  2273. msgid "Post Processing Scripts"
  2274. msgstr "Jälkikäsittelykomentosarjat"
  2275. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:221
  2276. msgctxt "@action"
  2277. msgid "Add a script"
  2278. msgstr "Lisää komentosarja"
  2279. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:257
  2280. msgctxt "@label"
  2281. msgid "Settings"
  2282. msgstr "Asetukset"
  2283. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:466
  2284. msgctxt "@info:tooltip"
  2285. msgid "Change active post-processing scripts."
  2286. msgstr ""
  2287. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:470
  2288. msgctxt "@info:tooltip"
  2289. msgid "The following script is active:"
  2290. msgid_plural "The following scripts are active:"
  2291. msgstr[0] ""
  2292. msgstr[1] ""
  2293. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2294. msgctxt "@label"
  2295. msgid "Please select any upgrades made to this Ultimaker Original"
  2296. msgstr "Valitse tähän Ultimaker Original -laitteeseen tehdyt päivitykset"
  2297. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2298. msgctxt "@label"
  2299. msgid "Heated Build Plate (official kit or self-built)"
  2300. msgstr "Lämmitettävä alusta (virallinen sarja tai itse rakennettu)"
  2301. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2302. msgctxt "@title"
  2303. msgid "Build Plate Leveling"
  2304. msgstr "Alustan tasaaminen"
  2305. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2306. msgctxt "@label"
  2307. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  2308. msgstr "Voit säätää alustaa, jotta tulosteista tulisi hyviä. Kun napsautat \"Siirry seuraavaan positioon\", suutin siirtyy eri positioihin, joita voidaan säätää."
  2309. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2310. msgctxt "@label"
  2311. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  2312. msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin."
  2313. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2314. msgctxt "@action:button"
  2315. msgid "Start Build Plate Leveling"
  2316. msgstr "Aloita alustan tasaaminen"
  2317. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2318. msgctxt "@action:button"
  2319. msgid "Move to Next Position"
  2320. msgstr "Siirry seuraavaan positioon"
  2321. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2322. msgctxt "@info"
  2323. msgid "Ultimaker Verified Plug-in"
  2324. msgstr ""
  2325. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2326. msgctxt "@info"
  2327. msgid "Ultimaker Certified Material"
  2328. msgstr ""
  2329. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2330. msgctxt "@info"
  2331. msgid "Ultimaker Verified Package"
  2332. msgstr ""
  2333. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:84
  2334. msgctxt "@title"
  2335. msgid "Loading..."
  2336. msgstr ""
  2337. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:143
  2338. msgctxt "@button"
  2339. msgid "Plugins"
  2340. msgstr ""
  2341. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:151
  2342. msgctxt "@button"
  2343. msgid "Materials"
  2344. msgstr ""
  2345. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:188
  2346. msgctxt "@info"
  2347. msgid "Search in the browser"
  2348. msgstr ""
  2349. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:266
  2350. msgctxt "@button"
  2351. msgid "In order to use the package you will need to restart Cura"
  2352. msgstr ""
  2353. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:274
  2354. msgctxt "@info:button, %1 is the application name"
  2355. msgid "Quit %1"
  2356. msgstr ""
  2357. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:165
  2358. msgctxt "@label"
  2359. msgid "By"
  2360. msgstr ""
  2361. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2362. msgctxt "@button"
  2363. msgid "Enable"
  2364. msgstr ""
  2365. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2366. msgctxt "@button"
  2367. msgid "Disable"
  2368. msgstr ""
  2369. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:217
  2370. msgctxt "@button"
  2371. msgid "Downgrading..."
  2372. msgstr ""
  2373. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:218
  2374. msgctxt "@button"
  2375. msgid "Downgrade"
  2376. msgstr ""
  2377. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:222
  2378. msgctxt "@button"
  2379. msgid "Installing..."
  2380. msgstr ""
  2381. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:223
  2382. msgctxt "@button"
  2383. msgid "Install"
  2384. msgstr ""
  2385. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:227
  2386. msgctxt "@button"
  2387. msgid "Uninstall"
  2388. msgstr ""
  2389. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2390. msgctxt "@button"
  2391. msgid "Updating..."
  2392. msgstr ""
  2393. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2394. msgctxt "@button"
  2395. msgid "Update"
  2396. msgstr ""
  2397. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2398. msgctxt "@header"
  2399. msgid "Install Plugins"
  2400. msgstr ""
  2401. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2402. msgctxt "@text"
  2403. msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users."
  2404. msgstr ""
  2405. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2406. msgctxt "@info:tooltip"
  2407. msgid "Manage packages"
  2408. msgstr ""
  2409. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:85
  2410. msgctxt "@header"
  2411. msgid "Description"
  2412. msgstr ""
  2413. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:117
  2414. msgctxt "@header"
  2415. msgid "Compatible printers"
  2416. msgstr ""
  2417. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:143
  2418. msgctxt "@info"
  2419. msgid "No compatibility information"
  2420. msgstr ""
  2421. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:162
  2422. msgctxt "@header"
  2423. msgid "Compatible support materials"
  2424. msgstr ""
  2425. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:188
  2426. msgctxt "@info No materials"
  2427. msgid "None"
  2428. msgstr ""
  2429. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:206
  2430. msgctxt "@header"
  2431. msgid "Compatible with Material Station"
  2432. msgstr ""
  2433. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2434. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2435. msgctxt "@info"
  2436. msgid "Yes"
  2437. msgstr ""
  2438. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2439. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2440. msgctxt "@info"
  2441. msgid "No"
  2442. msgstr ""
  2443. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:234
  2444. msgctxt "@header"
  2445. msgid "Optimized for Air Manager"
  2446. msgstr ""
  2447. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2448. msgctxt "@button"
  2449. msgid "Visit plug-in website"
  2450. msgstr ""
  2451. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2452. msgctxt "@button"
  2453. msgid "Website"
  2454. msgstr ""
  2455. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:269
  2456. msgctxt "@button"
  2457. msgid "Buy spool"
  2458. msgstr ""
  2459. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:278
  2460. msgctxt "@button"
  2461. msgid "Safety datasheet"
  2462. msgstr ""
  2463. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:287
  2464. msgctxt "@button"
  2465. msgid "Technical datasheet"
  2466. msgstr ""
  2467. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2468. msgctxt "@header"
  2469. msgid "Package details"
  2470. msgstr ""
  2471. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2472. msgctxt "@button:tooltip"
  2473. msgid "Back"
  2474. msgstr ""
  2475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:16
  2476. msgctxt "@button"
  2477. msgid "Plugin license agreement"
  2478. msgstr ""
  2479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:48
  2480. msgctxt "@text"
  2481. msgid "Please read and agree with the plugin licence."
  2482. msgstr ""
  2483. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:74
  2484. msgctxt "@button"
  2485. msgid "Accept"
  2486. msgstr ""
  2487. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:83
  2488. msgctxt "@button"
  2489. msgid "Decline"
  2490. msgstr ""
  2491. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2492. msgctxt "@button"
  2493. msgid "Failed to load packages:"
  2494. msgstr ""
  2495. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2496. msgctxt "@button"
  2497. msgid "Retry?"
  2498. msgstr ""
  2499. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:180
  2500. msgctxt "@button"
  2501. msgid "Loading"
  2502. msgstr ""
  2503. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2504. msgctxt "@message"
  2505. msgid "No more results to load"
  2506. msgstr ""
  2507. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2508. msgctxt "@message"
  2509. msgid "No results found with current filter"
  2510. msgstr ""
  2511. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:239
  2512. msgctxt "@button"
  2513. msgid "Load more"
  2514. msgstr ""
  2515. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2516. msgctxt "@header"
  2517. msgid "Manage packages"
  2518. msgstr ""
  2519. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2520. msgctxt "@text"
  2521. msgid "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2522. msgstr ""
  2523. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2524. msgctxt "@header"
  2525. msgid "Install Materials"
  2526. msgstr ""
  2527. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2528. msgctxt "@text"
  2529. msgid "Select and install material profiles optimised for your Ultimaker 3D printers."
  2530. msgstr ""
  2531. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2532. msgctxt "@title:tab"
  2533. msgid "Printer"
  2534. msgstr "Tulostin"
  2535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2536. msgctxt "@title:label"
  2537. msgid "Nozzle Settings"
  2538. msgstr ""
  2539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2540. msgctxt "@label"
  2541. msgid "Nozzle size"
  2542. msgstr "Suuttimen koko"
  2543. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2546. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2547. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2550. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2551. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2554. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2555. msgctxt "@label"
  2556. msgid "mm"
  2557. msgstr "mm"
  2558. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2559. msgctxt "@label"
  2560. msgid "Compatible material diameter"
  2561. msgstr ""
  2562. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2563. msgctxt "@label"
  2564. msgid "Nozzle offset X"
  2565. msgstr "Suuttimen X-siirtymä"
  2566. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2567. msgctxt "@label"
  2568. msgid "Nozzle offset Y"
  2569. msgstr "Suuttimen Y-siirtymä"
  2570. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2571. msgctxt "@label"
  2572. msgid "Cooling Fan Number"
  2573. msgstr ""
  2574. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2575. msgctxt "@title:label"
  2576. msgid "Extruder Start G-code"
  2577. msgstr ""
  2578. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2579. msgctxt "@title:label"
  2580. msgid "Extruder End G-code"
  2581. msgstr ""
  2582. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2583. msgctxt "@title:label"
  2584. msgid "Printer Settings"
  2585. msgstr ""
  2586. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2587. msgctxt "@label"
  2588. msgid "X (Width)"
  2589. msgstr "X (leveys)"
  2590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2591. msgctxt "@label"
  2592. msgid "Y (Depth)"
  2593. msgstr "Y (syvyys)"
  2594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2595. msgctxt "@label"
  2596. msgid "Z (Height)"
  2597. msgstr "Z (korkeus)"
  2598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2599. msgctxt "@label"
  2600. msgid "Build plate shape"
  2601. msgstr "Alustan muoto"
  2602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2603. msgctxt "@label"
  2604. msgid "Origin at center"
  2605. msgstr ""
  2606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2607. msgctxt "@label"
  2608. msgid "Heated bed"
  2609. msgstr ""
  2610. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2611. msgctxt "@label"
  2612. msgid "Heated build volume"
  2613. msgstr ""
  2614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2615. msgctxt "@label"
  2616. msgid "G-code flavor"
  2617. msgstr ""
  2618. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2619. msgctxt "@title:label"
  2620. msgid "Printhead Settings"
  2621. msgstr ""
  2622. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2623. msgctxt "@label"
  2624. msgid "X min"
  2625. msgstr "X väh."
  2626. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2627. msgctxt "@label"
  2628. msgid "Y min"
  2629. msgstr "Y väh."
  2630. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2631. msgctxt "@label"
  2632. msgid "X max"
  2633. msgstr "X enint."
  2634. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2635. msgctxt "@label"
  2636. msgid "Y max"
  2637. msgstr "Y enint."
  2638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2639. msgctxt "@label"
  2640. msgid "Gantry Height"
  2641. msgstr ""
  2642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2643. msgctxt "@label"
  2644. msgid "Number of Extruders"
  2645. msgstr "Suulakkeiden määrä"
  2646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2647. msgctxt "@label"
  2648. msgid "Apply Extruder offsets to GCode"
  2649. msgstr ""
  2650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2651. msgctxt "@title:label"
  2652. msgid "Start G-code"
  2653. msgstr ""
  2654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2655. msgctxt "@title:label"
  2656. msgid "End G-code"
  2657. msgstr ""
  2658. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2659. msgctxt "@label:button"
  2660. msgid "My printers"
  2661. msgstr ""
  2662. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2663. msgctxt "@tooltip:button"
  2664. msgid "Monitor printers in Ultimaker Digital Factory."
  2665. msgstr ""
  2666. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2667. msgctxt "@tooltip:button"
  2668. msgid "Create print projects in Digital Library."
  2669. msgstr ""
  2670. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2671. msgctxt "@label:button"
  2672. msgid "Print jobs"
  2673. msgstr ""
  2674. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2675. msgctxt "@tooltip:button"
  2676. msgid "Monitor print jobs and reprint from your print history."
  2677. msgstr ""
  2678. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2679. msgctxt "@tooltip:button"
  2680. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2681. msgstr ""
  2682. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2683. msgctxt "@tooltip:button"
  2684. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2685. msgstr ""
  2686. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2687. msgctxt "@label:button"
  2688. msgid "Ultimaker support"
  2689. msgstr ""
  2690. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  2691. msgctxt "@tooltip:button"
  2692. msgid "Learn how to get started with Ultimaker Cura."
  2693. msgstr ""
  2694. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  2695. msgctxt "@label:button"
  2696. msgid "Ask a question"
  2697. msgstr ""
  2698. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  2699. msgctxt "@tooltip:button"
  2700. msgid "Consult the Ultimaker Community."
  2701. msgstr ""
  2702. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  2703. msgctxt "@label:button"
  2704. msgid "Report a bug"
  2705. msgstr ""
  2706. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  2707. msgctxt "@tooltip:button"
  2708. msgid "Let developers know that something is going wrong."
  2709. msgstr ""
  2710. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  2711. msgctxt "@tooltip:button"
  2712. msgid "Visit the Ultimaker website."
  2713. msgstr ""
  2714. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ExtruderButton.qml:16
  2715. msgctxt "@label %1 is filled in with the name of an extruder"
  2716. msgid "Print Selected Model with %1"
  2717. msgid_plural "Print Selected Models with %1"
  2718. msgstr[0] "Tulosta valittu malli asetuksella %1"
  2719. msgstr[1] "Tulosta valitut mallit asetuksella %1"
  2720. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  2721. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2722. msgctxt "@title:menu menubar:toplevel"
  2723. msgid "&Settings"
  2724. msgstr ""
  2725. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2726. msgctxt "@title:window"
  2727. msgid "New project"
  2728. msgstr "Uusi projekti"
  2729. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2730. msgctxt "@info:question"
  2731. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2732. msgstr "Haluatko varmasti aloittaa uuden projektin? Se tyhjentää alustan ja kaikki tallentamattomat asetukset."
  2733. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2734. msgctxt "@action:button"
  2735. msgid "Marketplace"
  2736. msgstr ""
  2737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2738. msgctxt "@label"
  2739. msgid "Build plate"
  2740. msgstr "Alusta"
  2741. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2742. msgctxt "@tooltip"
  2743. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  2744. msgstr "Lämmitettävän pöydän kohdelämpötila. Pöytä lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, pöydän lämmitys sammutetaan."
  2745. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  2746. msgctxt "@tooltip"
  2747. msgid "The current temperature of the heated bed."
  2748. msgstr "Lämmitettävän pöydän nykyinen lämpötila."
  2749. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  2750. msgctxt "@tooltip of temperature input"
  2751. msgid "The temperature to pre-heat the bed to."
  2752. msgstr "Lämmitettävän pöydän esilämmityslämpötila."
  2753. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  2754. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  2755. msgctxt "@button Cancel pre-heating"
  2756. msgid "Cancel"
  2757. msgstr "Peruuta"
  2758. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  2759. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  2760. msgctxt "@button"
  2761. msgid "Pre-heat"
  2762. msgstr "Esilämmitä"
  2763. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  2764. msgctxt "@tooltip of pre-heat"
  2765. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  2766. msgstr "Lämmitä pöytä ennen tulostusta. Voit edelleen säätää tulostinta sen lämmitessä, eikä sinun tarvitse odottaa pöydän lämpiämistä, kun olet valmis tulostamaan."
  2767. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:56
  2768. msgctxt "@info:status"
  2769. msgid "The printer is not connected."
  2770. msgstr "Tulostinta ei ole yhdistetty."
  2771. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  2772. msgctxt "@label"
  2773. msgid "Printer control"
  2774. msgstr ""
  2775. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  2776. msgctxt "@label"
  2777. msgid "Jog Position"
  2778. msgstr ""
  2779. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  2780. msgctxt "@label"
  2781. msgid "X/Y"
  2782. msgstr ""
  2783. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2784. msgctxt "@label"
  2785. msgid "Z"
  2786. msgstr ""
  2787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  2788. msgctxt "@label"
  2789. msgid "Jog Distance"
  2790. msgstr ""
  2791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  2792. msgctxt "@label"
  2793. msgid "Send G-code"
  2794. msgstr ""
  2795. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  2796. msgctxt "@tooltip of G-code command input"
  2797. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2798. msgstr ""
  2799. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  2800. msgctxt "@label"
  2801. msgid "Extruder"
  2802. msgstr "Suulake"
  2803. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  2804. msgctxt "@tooltip"
  2805. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  2806. msgstr "Kuuman pään kohdelämpötila. Kuuma pää lämpenee tai viilenee kohti tätä lämpötilaa. Jos asetus on 0, kuuman pään lämmitys sammutetaan."
  2807. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  2808. msgctxt "@tooltip"
  2809. msgid "The current temperature of this hotend."
  2810. msgstr ""
  2811. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  2812. msgctxt "@tooltip of temperature input"
  2813. msgid "The temperature to pre-heat the hotend to."
  2814. msgstr ""
  2815. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  2816. msgctxt "@tooltip of pre-heat"
  2817. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  2818. msgstr ""
  2819. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  2820. msgctxt "@tooltip"
  2821. msgid "The colour of the material in this extruder."
  2822. msgstr "Tämän suulakkeen materiaalin väri."
  2823. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  2824. msgctxt "@tooltip"
  2825. msgid "The material in this extruder."
  2826. msgstr "Tämän suulakkeen materiaali."
  2827. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  2828. msgctxt "@tooltip"
  2829. msgid "The nozzle inserted in this extruder."
  2830. msgstr "Tähän suulakkeeseen liitetty suutin."
  2831. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  2832. msgctxt "@title:window"
  2833. msgid "Open project file"
  2834. msgstr "Avaa projektitiedosto"
  2835. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83
  2836. msgctxt "@text:window"
  2837. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2838. msgstr "Tämä on Cura-projektitiedosto. Haluatko avata sen projektina vai tuoda siinä olevat mallit?"
  2839. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  2840. msgctxt "@text:window"
  2841. msgid "Remember my choice"
  2842. msgstr "Muista valintani"
  2843. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  2844. msgctxt "@action:button"
  2845. msgid "Open as project"
  2846. msgstr "Avaa projektina"
  2847. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  2848. msgctxt "@action:button"
  2849. msgid "Import models"
  2850. msgstr "Tuo mallit"
  2851. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  2852. msgctxt "@title:window"
  2853. msgid "Save Project"
  2854. msgstr "Tallenna projekti"
  2855. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:168
  2856. msgctxt "@action:label"
  2857. msgid "Extruder %1"
  2858. msgstr "Suulake %1"
  2859. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:184
  2860. msgctxt "@action:label"
  2861. msgid "%1 & material"
  2862. msgstr "%1 & materiaali"
  2863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:186
  2864. msgctxt "@action:label"
  2865. msgid "Material"
  2866. msgstr ""
  2867. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:275
  2868. msgctxt "@action:label"
  2869. msgid "Don't show project summary on save again"
  2870. msgstr "Älä näytä projektin yhteenvetoa tallennettaessa"
  2871. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:289
  2872. msgctxt "@action:button"
  2873. msgid "Save"
  2874. msgstr "Tallenna"
  2875. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  2876. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:637
  2877. msgctxt "@title:window"
  2878. msgid "Open file(s)"
  2879. msgstr "Avaa tiedosto(t)"
  2880. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  2881. msgctxt "@text:window"
  2882. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  2883. msgstr "Löysimme vähintään yhden projektitiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden projektitiedoston kerrallaan. Suosittelemme, että tuot vain malleja niistä tiedostoista. Haluatko jatkaa?"
  2884. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  2885. msgctxt "@action:button"
  2886. msgid "Import all as models"
  2887. msgstr "Tuo kaikki malleina"
  2888. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2889. msgctxt "@title:window The argument is the application name."
  2890. msgid "About %1"
  2891. msgstr ""
  2892. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2893. msgctxt "@label"
  2894. msgid "version: %1"
  2895. msgstr ""
  2896. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2897. msgctxt "@label"
  2898. msgid "End-to-end solution for fused filament 3D printing."
  2899. msgstr "Kokonaisvaltainen sulatettavan tulostuslangan 3D-tulostusratkaisu."
  2900. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2901. msgctxt "@info:credit"
  2902. msgid ""
  2903. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2904. "Cura proudly uses the following open source projects:"
  2905. msgstr ""
  2906. "Cura-ohjelman on kehittänyt Ultimaker B.V. yhteistyössä käyttäjäyhteisön kanssa.\n"
  2907. "Cura hyödyntää seuraavia avoimeen lähdekoodiin perustuvia projekteja:"
  2908. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  2909. msgctxt "@label"
  2910. msgid "Graphical user interface"
  2911. msgstr "Graafinen käyttöliittymä"
  2912. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2913. msgctxt "@label"
  2914. msgid "Application framework"
  2915. msgstr "Sovelluskehys"
  2916. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2917. msgctxt "@label"
  2918. msgid "G-code generator"
  2919. msgstr ""
  2920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2921. msgctxt "@label"
  2922. msgid "Interprocess communication library"
  2923. msgstr "Prosessien välinen tietoliikennekirjasto"
  2924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  2925. msgctxt "@label"
  2926. msgid "Programming language"
  2927. msgstr "Ohjelmointikieli"
  2928. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2929. msgctxt "@label"
  2930. msgid "GUI framework"
  2931. msgstr "GUI-kehys"
  2932. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2933. msgctxt "@label"
  2934. msgid "GUI framework bindings"
  2935. msgstr "GUI-kehyksen sidonnat"
  2936. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2937. msgctxt "@label"
  2938. msgid "C/C++ Binding library"
  2939. msgstr "C/C++ -sidontakirjasto"
  2940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2941. msgctxt "@label"
  2942. msgid "Data interchange format"
  2943. msgstr "Data Interchange Format"
  2944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2945. msgctxt "@label"
  2946. msgid "Support library for scientific computing"
  2947. msgstr "Tieteellisen laskennan tukikirjasto"
  2948. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2949. msgctxt "@label"
  2950. msgid "Support library for faster math"
  2951. msgstr "Nopeamman laskennan tukikirjasto"
  2952. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2953. msgctxt "@label"
  2954. msgid "Support library for handling STL files"
  2955. msgstr "STL-tiedostojen käsittelyn tukikirjasto"
  2956. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2957. msgctxt "@label"
  2958. msgid "Support library for handling triangular meshes"
  2959. msgstr ""
  2960. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2961. msgctxt "@label"
  2962. msgid "Support library for handling 3MF files"
  2963. msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn"
  2964. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2965. msgctxt "@label"
  2966. msgid "Support library for file metadata and streaming"
  2967. msgstr ""
  2968. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2969. msgctxt "@label"
  2970. msgid "Serial communication library"
  2971. msgstr "Sarjatietoliikennekirjasto"
  2972. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2973. msgctxt "@label"
  2974. msgid "ZeroConf discovery library"
  2975. msgstr "ZeroConf-etsintäkirjasto"
  2976. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2977. msgctxt "@label"
  2978. msgid "Polygon clipping library"
  2979. msgstr "Monikulmion leikkauskirjasto"
  2980. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2981. msgctxt "@label"
  2982. msgid "Python bindings for Clipper"
  2983. msgstr ""
  2984. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2985. msgctxt "@Label"
  2986. msgid "Static type checker for Python"
  2987. msgstr ""
  2988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2989. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  2990. msgctxt "@Label"
  2991. msgid "Root Certificates for validating SSL trustworthiness"
  2992. msgstr ""
  2993. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2994. msgctxt "@Label"
  2995. msgid "Python Error tracking library"
  2996. msgstr ""
  2997. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2998. msgctxt "@label"
  2999. msgid "Polygon packing library, developed by Prusa Research"
  3000. msgstr ""
  3001. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3002. msgctxt "@label"
  3003. msgid "Python bindings for libnest2d"
  3004. msgstr ""
  3005. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3006. msgctxt "@label"
  3007. msgid "Support library for system keyring access"
  3008. msgstr ""
  3009. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3010. msgctxt "@label"
  3011. msgid "Python extensions for Microsoft Windows"
  3012. msgstr ""
  3013. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3014. msgctxt "@label"
  3015. msgid "Font"
  3016. msgstr "Fontti"
  3017. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3018. msgctxt "@label"
  3019. msgid "SVG icons"
  3020. msgstr "SVG-kuvakkeet"
  3021. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3022. msgctxt "@label"
  3023. msgid "Linux cross-distribution application deployment"
  3024. msgstr ""
  3025. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:14
  3026. msgctxt "@title:window"
  3027. msgid "Discard or Keep changes"
  3028. msgstr "Hylkää tai säilytä muutokset"
  3029. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:50
  3030. msgctxt "@text:window, %1 is a profile name"
  3031. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3032. msgstr ""
  3033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:76
  3034. msgctxt "@title:column"
  3035. msgid "Profile settings"
  3036. msgstr "Profiilin asetukset"
  3037. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:78
  3038. msgctxt "@title:column"
  3039. msgid "Current changes"
  3040. msgstr ""
  3041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:107
  3042. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:798
  3043. msgctxt "@option:discardOrKeep"
  3044. msgid "Always ask me this"
  3045. msgstr "Kysy aina"
  3046. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:108
  3047. msgctxt "@option:discardOrKeep"
  3048. msgid "Discard and never ask again"
  3049. msgstr "Hylkää äläkä kysy uudelleen"
  3050. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  3051. msgctxt "@option:discardOrKeep"
  3052. msgid "Keep and never ask again"
  3053. msgstr "Säilytä äläkä kysy uudelleen"
  3054. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:139
  3055. msgctxt "@action:button"
  3056. msgid "Discard changes"
  3057. msgstr ""
  3058. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:145
  3059. msgctxt "@action:button"
  3060. msgid "Keep changes"
  3061. msgstr ""
  3062. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Widgets/ComboBox.qml:18
  3063. msgctxt "@label"
  3064. msgid "No items to select from"
  3065. msgstr ""
  3066. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3067. msgctxt "@title:menu menubar:file"
  3068. msgid "Open File(s)..."
  3069. msgstr ""
  3070. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3071. msgctxt "@title:menu menubar:file"
  3072. msgid "Open &Recent"
  3073. msgstr "Avaa &viimeisin"
  3074. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3075. msgctxt "@action:inmenu"
  3076. msgid "Visible Settings"
  3077. msgstr ""
  3078. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3079. msgctxt "@action:inmenu"
  3080. msgid "Collapse All Categories"
  3081. msgstr ""
  3082. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3083. msgctxt "@action:inmenu"
  3084. msgid "Manage Setting Visibility..."
  3085. msgstr ""
  3086. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3087. msgctxt "@title:menu"
  3088. msgid "&Material"
  3089. msgstr "&Materiaali"
  3090. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3091. msgctxt "@action:inmenu"
  3092. msgid "Set as Active Extruder"
  3093. msgstr "Aseta aktiiviseksi suulakepuristimeksi"
  3094. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3095. msgctxt "@action:inmenu"
  3096. msgid "Enable Extruder"
  3097. msgstr ""
  3098. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3099. msgctxt "@action:inmenu"
  3100. msgid "Disable Extruder"
  3101. msgstr ""
  3102. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3103. msgctxt "@label:category menu label"
  3104. msgid "Material"
  3105. msgstr ""
  3106. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:53
  3107. msgctxt "@label:category menu label"
  3108. msgid "Favorites"
  3109. msgstr ""
  3110. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:78
  3111. msgctxt "@label:category menu label"
  3112. msgid "Generic"
  3113. msgstr ""
  3114. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/HelpMenu.qml:14
  3115. msgctxt "@title:menu menubar:toplevel"
  3116. msgid "&Help"
  3117. msgstr "&Ohje"
  3118. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:13
  3119. msgctxt "@title:menu menubar:toplevel"
  3120. msgid "&File"
  3121. msgstr "Tie&dosto"
  3122. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:44
  3123. msgctxt "@title:menu menubar:file"
  3124. msgid "&Save Project..."
  3125. msgstr ""
  3126. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:77
  3127. msgctxt "@title:menu menubar:file"
  3128. msgid "&Export..."
  3129. msgstr ""
  3130. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:88
  3131. msgctxt "@action:inmenu menubar:file"
  3132. msgid "Export Selection..."
  3133. msgstr ""
  3134. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  3135. msgctxt "@title:menu menubar:toplevel"
  3136. msgid "P&references"
  3137. msgstr "L&isäasetukset"
  3138. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/EditMenu.qml:12
  3139. msgctxt "@title:menu menubar:toplevel"
  3140. msgid "&Edit"
  3141. msgstr "&Muokkaa"
  3142. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:13
  3143. msgctxt "@title:menu menubar:settings"
  3144. msgid "&Printer"
  3145. msgstr "&Tulostin"
  3146. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:17
  3147. msgctxt "@label:category menu label"
  3148. msgid "Network enabled printers"
  3149. msgstr ""
  3150. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:50
  3151. msgctxt "@label:category menu label"
  3152. msgid "Local printers"
  3153. msgstr ""
  3154. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  3155. msgctxt "@title:menu menubar:toplevel"
  3156. msgid "E&xtensions"
  3157. msgstr "Laa&jennukset"
  3158. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3159. msgctxt "@header"
  3160. msgid "Configurations"
  3161. msgstr ""
  3162. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3163. msgctxt "@label"
  3164. msgid "Loading available configurations from the printer..."
  3165. msgstr ""
  3166. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3167. msgctxt "@label"
  3168. msgid "The configurations are not available because the printer is disconnected."
  3169. msgstr ""
  3170. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3171. msgctxt "@label"
  3172. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3173. msgstr ""
  3174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3175. msgctxt "@label"
  3176. msgid "Marketplace"
  3177. msgstr ""
  3178. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:101
  3179. msgctxt "@tooltip"
  3180. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3181. msgstr ""
  3182. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:105
  3183. msgctxt "@tooltip"
  3184. msgid "There are no profiles matching the configuration of this extruder."
  3185. msgstr ""
  3186. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:245
  3187. msgctxt "@label"
  3188. msgid "Select configuration"
  3189. msgstr ""
  3190. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:354
  3191. msgctxt "@label"
  3192. msgid "Configurations"
  3193. msgstr ""
  3194. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  3195. msgctxt "@header"
  3196. msgid "Custom"
  3197. msgstr ""
  3198. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62
  3199. msgctxt "@label"
  3200. msgid "Printer"
  3201. msgstr ""
  3202. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:214
  3203. msgctxt "@label"
  3204. msgid "Enabled"
  3205. msgstr ""
  3206. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:263
  3207. msgctxt "@label"
  3208. msgid "Material"
  3209. msgstr "Materiaali"
  3210. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:391
  3211. msgctxt "@label"
  3212. msgid "Use glue for better adhesion with this material combination."
  3213. msgstr ""
  3214. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:29
  3215. msgctxt "@label"
  3216. msgid "Print Selected Model With:"
  3217. msgid_plural "Print Selected Models With:"
  3218. msgstr[0] "Tulosta valittu malli asetuksella:"
  3219. msgstr[1] "Tulosta valitut mallit asetuksella:"
  3220. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:92
  3221. msgctxt "@title:window"
  3222. msgid "Multiply Selected Model"
  3223. msgid_plural "Multiply Selected Models"
  3224. msgstr[0] "Kerro valittu malli"
  3225. msgstr[1] "Kerro valitut mallit"
  3226. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:123
  3227. msgctxt "@label"
  3228. msgid "Number of Copies"
  3229. msgstr "Kopioiden määrä"
  3230. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3231. msgctxt "@title:menu menubar:file"
  3232. msgid "Save Project..."
  3233. msgstr ""
  3234. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:13
  3235. msgctxt "@title:menu menubar:toplevel"
  3236. msgid "&View"
  3237. msgstr "&Näytä"
  3238. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:17
  3239. msgctxt "@action:inmenu menubar:view"
  3240. msgid "&Camera position"
  3241. msgstr ""
  3242. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:30
  3243. msgctxt "@action:inmenu menubar:view"
  3244. msgid "Camera view"
  3245. msgstr ""
  3246. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:48
  3247. msgctxt "@action:inmenu menubar:view"
  3248. msgid "Perspective"
  3249. msgstr ""
  3250. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:59
  3251. msgctxt "@action:inmenu menubar:view"
  3252. msgid "Orthographic"
  3253. msgstr ""
  3254. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewsSelector.qml:50
  3255. msgctxt "@label"
  3256. msgid "View type"
  3257. msgstr ""
  3258. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:19
  3259. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3260. msgctxt "@label"
  3261. msgid "Sign in to the Ultimaker platform"
  3262. msgstr ""
  3263. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:39
  3264. msgctxt "@text"
  3265. msgid ""
  3266. "- Add material profiles and plug-ins from the Marketplace\n"
  3267. "- Back-up and sync your material profiles and plug-ins\n"
  3268. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3269. msgstr ""
  3270. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:58
  3271. msgctxt "@button"
  3272. msgid "Create a free Ultimaker account"
  3273. msgstr ""
  3274. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/AccountWidget.qml:24
  3275. msgctxt "@action:button"
  3276. msgid "Sign in"
  3277. msgstr ""
  3278. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:77
  3279. msgctxt "@label The argument is a timestamp"
  3280. msgid "Last update: %1"
  3281. msgstr ""
  3282. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:104
  3283. msgctxt "@button"
  3284. msgid "Ultimaker Account"
  3285. msgstr ""
  3286. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:120
  3287. msgctxt "@button"
  3288. msgid "Sign Out"
  3289. msgstr ""
  3290. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:28
  3291. msgctxt "@label"
  3292. msgid "Checking..."
  3293. msgstr ""
  3294. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:35
  3295. msgctxt "@label"
  3296. msgid "Account synced"
  3297. msgstr ""
  3298. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:42
  3299. msgctxt "@label"
  3300. msgid "Something went wrong..."
  3301. msgstr ""
  3302. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:95
  3303. msgctxt "@button"
  3304. msgid "Install pending updates"
  3305. msgstr ""
  3306. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:116
  3307. msgctxt "@button"
  3308. msgid "Check for account updates"
  3309. msgstr ""
  3310. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3311. msgctxt "@label:PrintjobStatus"
  3312. msgid "Slicing..."
  3313. msgstr "Viipaloidaan..."
  3314. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:81
  3315. msgctxt "@label:PrintjobStatus"
  3316. msgid "Unable to slice"
  3317. msgstr ""
  3318. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3319. msgctxt "@button"
  3320. msgid "Processing"
  3321. msgstr ""
  3322. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3323. msgctxt "@button"
  3324. msgid "Slice"
  3325. msgstr ""
  3326. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  3327. msgctxt "@label"
  3328. msgid "Start the slicing process"
  3329. msgstr ""
  3330. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:137
  3331. msgctxt "@button"
  3332. msgid "Cancel"
  3333. msgstr ""
  3334. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3335. msgctxt "@label"
  3336. msgid "Time estimation"
  3337. msgstr ""
  3338. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3339. msgctxt "@label"
  3340. msgid "Material estimation"
  3341. msgstr ""
  3342. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3343. msgctxt "@label m for meter"
  3344. msgid "%1m"
  3345. msgstr ""
  3346. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3347. msgctxt "@label g for grams"
  3348. msgid "%1g"
  3349. msgstr ""
  3350. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3351. msgctxt "@label"
  3352. msgid "No time estimation available"
  3353. msgstr ""
  3354. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3355. msgctxt "@label"
  3356. msgid "No cost estimation available"
  3357. msgstr ""
  3358. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3359. msgctxt "@button"
  3360. msgid "Preview"
  3361. msgstr ""
  3362. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:253
  3363. msgctxt "@label"
  3364. msgid "This package will be installed after restarting."
  3365. msgstr ""
  3366. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:463
  3367. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3368. msgctxt "@title:tab"
  3369. msgid "General"
  3370. msgstr "Yleiset"
  3371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:466
  3372. msgctxt "@title:tab"
  3373. msgid "Settings"
  3374. msgstr "Asetukset"
  3375. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:468
  3376. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3377. msgctxt "@title:tab"
  3378. msgid "Printers"
  3379. msgstr "Tulostimet"
  3380. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:470
  3381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3382. msgctxt "@title:tab"
  3383. msgid "Materials"
  3384. msgstr "Materiaalit"
  3385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:472
  3386. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:56
  3387. msgctxt "@title:tab"
  3388. msgid "Profiles"
  3389. msgstr "Profiilit"
  3390. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:589
  3391. msgctxt "@title:window %1 is the application name"
  3392. msgid "Closing %1"
  3393. msgstr ""
  3394. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:590
  3395. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:599
  3396. msgctxt "@label %1 is the application name"
  3397. msgid "Are you sure you want to exit %1?"
  3398. msgstr ""
  3399. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:747
  3400. msgctxt "@window:title"
  3401. msgid "Install Package"
  3402. msgstr ""
  3403. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:754
  3404. msgctxt "@title:window"
  3405. msgid "Open File(s)"
  3406. msgstr "Avaa tiedosto(t)"
  3407. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:756
  3408. msgctxt "@text:window"
  3409. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3410. msgstr "Löysimme vähintään yhden Gcode-tiedoston valitsemiesi tiedostojen joukosta. Voit avata vain yhden Gcode-tiedoston kerrallaan. Jos haluat avata Gcode-tiedoston, valitse vain yksi."
  3411. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:836
  3412. msgctxt "@title:window"
  3413. msgid "Add Printer"
  3414. msgstr "Lisää tulostin"
  3415. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:844
  3416. msgctxt "@title:window"
  3417. msgid "What's New"
  3418. msgstr ""
  3419. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3420. msgctxt "@label:Should be short"
  3421. msgid "On"
  3422. msgstr ""
  3423. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3424. msgctxt "@label:Should be short"
  3425. msgid "Off"
  3426. msgstr ""
  3427. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3428. msgctxt "@label"
  3429. msgid "Experimental"
  3430. msgstr ""
  3431. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3432. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3433. msgctxt "@label"
  3434. msgid "Print settings"
  3435. msgstr "Tulostusasetukset"
  3436. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3437. msgctxt "@label shown when we load a Gcode file"
  3438. msgid "Print setup disabled. G-code file can not be modified."
  3439. msgstr ""
  3440. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3441. msgctxt "@button"
  3442. msgid "Recommended"
  3443. msgstr ""
  3444. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3445. msgctxt "@button"
  3446. msgid "Custom"
  3447. msgstr ""
  3448. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3449. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  3450. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3451. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3452. msgstr[0] ""
  3453. msgstr[1] ""
  3454. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:195
  3455. msgctxt "@label"
  3456. msgid "Gradual infill"
  3457. msgstr ""
  3458. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:233
  3459. msgctxt "@label"
  3460. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3461. msgstr "Asteittainen täyttö lisää täytön tiheyttä vähitellen yläosaa kohti."
  3462. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28
  3463. msgctxt "@label"
  3464. msgid "Support"
  3465. msgstr ""
  3466. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69
  3467. msgctxt "@label"
  3468. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3469. msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana."
  3470. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:50
  3471. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3472. msgctxt "@label"
  3473. msgid "Profiles"
  3474. msgstr ""
  3475. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:80
  3476. msgctxt "@tooltip"
  3477. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3478. msgstr ""
  3479. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  3480. msgctxt "@label"
  3481. msgid "Adhesion"
  3482. msgstr ""
  3483. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72
  3484. msgctxt "@label"
  3485. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  3486. msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin."
  3487. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  3488. msgctxt "@label:header"
  3489. msgid "Custom profiles"
  3490. msgstr ""
  3491. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3492. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:147
  3493. msgctxt "@action:button"
  3494. msgid "Discard current changes"
  3495. msgstr "Hylkää tehdyt muutokset"
  3496. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  3497. msgctxt "@label"
  3498. msgid "Profile"
  3499. msgstr ""
  3500. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:157
  3501. msgctxt "@tooltip"
  3502. msgid ""
  3503. "Some setting/override values are different from the values stored in the profile.\n"
  3504. "\n"
  3505. "Click to open the profile manager."
  3506. msgstr ""
  3507. "Jotkut asetusten ja ohitusten arvot eroavat profiiliin tallennetuista arvoista.\n"
  3508. "\n"
  3509. "Avaa profiilin hallinta napsauttamalla."
  3510. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:37
  3511. msgctxt "@title:column"
  3512. msgid "Setting"
  3513. msgstr "Asetus"
  3514. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:38
  3515. msgctxt "@title:column"
  3516. msgid "Profile"
  3517. msgstr "Profiili"
  3518. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:39
  3519. msgctxt "@title:column"
  3520. msgid "Current"
  3521. msgstr "Nykyinen"
  3522. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:40
  3523. msgctxt "@title:column Unit of measurement"
  3524. msgid "Unit"
  3525. msgstr ""
  3526. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3527. msgctxt "@title:window"
  3528. msgid "Rename"
  3529. msgstr ""
  3530. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3531. msgctxt "@info"
  3532. msgid "Please provide a new name."
  3533. msgstr ""
  3534. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3535. msgctxt "@item:tooltip"
  3536. msgid "This setting has been hidden by the active machine and will not be visible."
  3537. msgstr ""
  3538. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3539. msgctxt "@item:tooltip %1 is list of setting names"
  3540. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3541. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3542. msgstr[0] ""
  3543. msgstr[1] ""
  3544. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3545. msgctxt "@title:tab"
  3546. msgid "Setting Visibility"
  3547. msgstr "Näkyvyyden asettaminen"
  3548. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:22
  3549. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:131
  3550. msgctxt "@action:button"
  3551. msgid "Defaults"
  3552. msgstr ""
  3553. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:53
  3554. msgctxt "@label:textbox"
  3555. msgid "Check all"
  3556. msgstr "Tarkista kaikki"
  3557. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:49
  3558. msgctxt "@action:button"
  3559. msgid "Add New"
  3560. msgstr ""
  3561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:135
  3562. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3563. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:293
  3564. msgctxt "@action:button"
  3565. msgid "Activate"
  3566. msgstr "Aktivoi"
  3567. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:147
  3568. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:330
  3569. msgctxt "@action:button"
  3570. msgid "Rename"
  3571. msgstr "Nimeä uudelleen"
  3572. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3573. msgctxt "@title:window"
  3574. msgid "Confirm Diameter Change"
  3575. msgstr ""
  3576. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3577. msgctxt "@label (%1 is a number)"
  3578. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3579. msgstr ""
  3580. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3581. msgctxt "@label"
  3582. msgid "Display Name"
  3583. msgstr "Näytä nimi"
  3584. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3585. msgctxt "@label"
  3586. msgid "Brand"
  3587. msgstr "Merkki"
  3588. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3589. msgctxt "@label"
  3590. msgid "Material Type"
  3591. msgstr "Materiaalin tyyppi"
  3592. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:209
  3593. msgctxt "@label"
  3594. msgid "Color"
  3595. msgstr "Väri"
  3596. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:261
  3597. msgctxt "@title"
  3598. msgid "Material color picker"
  3599. msgstr ""
  3600. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:274
  3601. msgctxt "@label"
  3602. msgid "Properties"
  3603. msgstr "Ominaisuudet"
  3604. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:285
  3605. msgctxt "@label"
  3606. msgid "Density"
  3607. msgstr "Tiheys"
  3608. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:318
  3609. msgctxt "@label"
  3610. msgid "Diameter"
  3611. msgstr "Läpimitta"
  3612. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:368
  3613. msgctxt "@label"
  3614. msgid "Filament Cost"
  3615. msgstr "Tulostuslangan hinta"
  3616. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:400
  3617. msgctxt "@label"
  3618. msgid "Filament weight"
  3619. msgstr "Tulostuslangan paino"
  3620. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:432
  3621. msgctxt "@label"
  3622. msgid "Filament length"
  3623. msgstr "Tulostuslangan pituus"
  3624. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:450
  3625. msgctxt "@label"
  3626. msgid "Cost per Meter"
  3627. msgstr "Hinta metriä kohden"
  3628. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:464
  3629. msgctxt "@label"
  3630. msgid "This material is linked to %1 and shares some of its properties."
  3631. msgstr "Materiaali on linkitetty kohteeseen %1 ja niillä on joitain samoja ominaisuuksia."
  3632. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:471
  3633. msgctxt "@label"
  3634. msgid "Unlink Material"
  3635. msgstr "Poista materiaalin linkitys"
  3636. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:484
  3637. msgctxt "@label"
  3638. msgid "Description"
  3639. msgstr "Kuvaus"
  3640. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:502
  3641. msgctxt "@label"
  3642. msgid "Adhesion Information"
  3643. msgstr "Tarttuvuustiedot"
  3644. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:637
  3645. msgctxt "@title"
  3646. msgid "Information"
  3647. msgstr "Tiedot"
  3648. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3649. msgctxt "@title:window"
  3650. msgid "Sync materials with printers"
  3651. msgstr ""
  3652. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:48
  3653. msgctxt "@title:header"
  3654. msgid "Sync materials with printers"
  3655. msgstr ""
  3656. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:54
  3657. msgctxt "@text"
  3658. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  3659. msgstr ""
  3660. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:76
  3661. msgctxt "@button"
  3662. msgid "Why do I need to sync material profiles?"
  3663. msgstr ""
  3664. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:85
  3665. msgctxt "@button"
  3666. msgid "Start"
  3667. msgstr ""
  3668. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:127
  3669. msgctxt "@title:header"
  3670. msgid "Sign in"
  3671. msgstr ""
  3672. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:133
  3673. msgctxt "@text"
  3674. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3675. msgstr ""
  3676. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:157
  3677. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446
  3678. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:587
  3679. msgctxt "@button"
  3680. msgid "Sync materials with USB"
  3681. msgstr ""
  3682. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:190
  3683. msgctxt "@title:header"
  3684. msgid "The following printers will receive the new material profiles:"
  3685. msgstr ""
  3686. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:197
  3687. msgctxt "@title:header"
  3688. msgid "Something went wrong when sending the materials to the printers."
  3689. msgstr ""
  3690. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:204
  3691. msgctxt "@title:header"
  3692. msgid "Material profiles successfully synced with the following printers:"
  3693. msgstr ""
  3694. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242
  3695. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429
  3696. msgctxt "@button"
  3697. msgid "Troubleshooting"
  3698. msgstr ""
  3699. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406
  3700. msgctxt "@text Asking the user whether printers are missing in a list."
  3701. msgid "Printers missing?"
  3702. msgstr ""
  3703. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408
  3704. msgctxt "@text"
  3705. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  3706. msgstr ""
  3707. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417
  3708. msgctxt "@button"
  3709. msgid "Refresh List"
  3710. msgstr ""
  3711. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3712. msgctxt "@button"
  3713. msgid "Try again"
  3714. msgstr ""
  3715. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461
  3716. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3717. msgctxt "@button"
  3718. msgid "Done"
  3719. msgstr ""
  3720. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463
  3721. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:607
  3722. msgctxt "@button"
  3723. msgid "Sync"
  3724. msgstr ""
  3725. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519
  3726. msgctxt "@button"
  3727. msgid "Syncing"
  3728. msgstr ""
  3729. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537
  3730. msgctxt "@title:header"
  3731. msgid "No printers found"
  3732. msgstr ""
  3733. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558
  3734. msgctxt "@text"
  3735. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  3736. msgstr ""
  3737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:570
  3738. msgctxt "@button"
  3739. msgid "Learn how to connect your printer to Digital Factory"
  3740. msgstr ""
  3741. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:598
  3742. msgctxt "@button"
  3743. msgid "Refresh"
  3744. msgstr ""
  3745. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:627
  3746. msgctxt "@title:header"
  3747. msgid "Sync material profiles via USB"
  3748. msgstr ""
  3749. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:633
  3750. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  3751. msgid "Follow the following steps to load the new material profiles to your printer."
  3752. msgstr ""
  3753. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665
  3754. msgctxt "@text"
  3755. msgid "Click the export material archive button."
  3756. msgstr ""
  3757. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:666
  3758. msgctxt "@text"
  3759. msgid "Save the .umm file on a USB stick."
  3760. msgstr ""
  3761. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:667
  3762. msgctxt "@text"
  3763. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  3764. msgstr ""
  3765. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:675
  3766. msgctxt "@button"
  3767. msgid "How to load new material profiles to my printer"
  3768. msgstr ""
  3769. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  3770. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3771. msgctxt "@button"
  3772. msgid "Back"
  3773. msgstr ""
  3774. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3775. msgctxt "@button"
  3776. msgid "Export material archive"
  3777. msgstr ""
  3778. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:733
  3779. msgctxt "@title:window"
  3780. msgid "Export All Materials"
  3781. msgstr ""
  3782. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3783. msgctxt "@label"
  3784. msgid "Materials compatible with active printer:"
  3785. msgstr ""
  3786. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  3787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:93
  3788. msgctxt "@action:button"
  3789. msgid "Create new"
  3790. msgstr ""
  3791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  3792. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  3793. msgctxt "@action:button"
  3794. msgid "Import"
  3795. msgstr "Tuo"
  3796. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3797. msgctxt "@action:button"
  3798. msgid "Sync with Printers"
  3799. msgstr ""
  3800. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  3801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:310
  3802. msgctxt "@action:button"
  3803. msgid "Duplicate"
  3804. msgstr "Jäljennös"
  3805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  3806. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:341
  3807. msgctxt "@action:button"
  3808. msgid "Export"
  3809. msgstr "Vie"
  3810. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  3811. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:386
  3812. msgctxt "@title:window"
  3813. msgid "Confirm Remove"
  3814. msgstr ""
  3815. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  3816. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:387
  3817. msgctxt "@label (%1 is object name)"
  3818. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3819. msgstr ""
  3820. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  3821. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3822. msgctxt "@title:window"
  3823. msgid "Import Material"
  3824. msgstr "Tuo materiaali"
  3825. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3826. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3827. msgid "Successfully imported material <filename>%1</filename>"
  3828. msgstr "Materiaalin tuominen onnistui: <filename>%1</filename>"
  3829. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3830. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3831. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3832. msgstr "Materiaalin tuominen epäonnistui: <filename>%1</filename>: <message>%2</message>"
  3833. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  3834. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:265
  3835. msgctxt "@title:window"
  3836. msgid "Export Material"
  3837. msgstr "Vie materiaali"
  3838. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:270
  3839. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3840. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3841. msgstr "Materiaalin vieminen epäonnistui kohteeseen <filename>%1</filename>: <message>%2</message>"
  3842. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:273
  3843. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3844. msgid "Successfully exported material to <filename>%1</filename>"
  3845. msgstr "Materiaalin vieminen onnistui kohteeseen <filename>%1</filename>"
  3846. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:58
  3847. msgctxt "@label"
  3848. msgid "Profiles compatible with active printer:"
  3849. msgstr ""
  3850. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:97
  3851. msgctxt "@action:tooltip"
  3852. msgid "Create new profile from current settings/overrides"
  3853. msgstr ""
  3854. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:124
  3855. msgctxt "@action:label"
  3856. msgid "Some settings from current profile were overwritten."
  3857. msgstr ""
  3858. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:139
  3859. msgctxt "@action:button"
  3860. msgid "Update profile."
  3861. msgstr ""
  3862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  3863. msgctxt "@action:tooltip"
  3864. msgid "Update profile with current settings/overrides"
  3865. msgstr ""
  3866. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:157
  3867. msgctxt "@action:label"
  3868. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3869. msgstr "Tässä profiilissa käytetään tulostimen oletusarvoja, joten siinä ei ole alla olevan listan asetuksia tai ohituksia."
  3870. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:164
  3871. msgctxt "@action:label"
  3872. msgid "Your current settings match the selected profile."
  3873. msgstr "Nykyiset asetukset vastaavat valittua profiilia."
  3874. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  3875. msgctxt "@title:tab"
  3876. msgid "Global Settings"
  3877. msgstr "Yleiset asetukset"
  3878. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3879. msgctxt "@title:window"
  3880. msgid "Create Profile"
  3881. msgstr "Luo profiili"
  3882. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:279
  3883. msgctxt "@info"
  3884. msgid "Please provide a name for this profile."
  3885. msgstr ""
  3886. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:351
  3887. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:362
  3888. msgctxt "@title:window"
  3889. msgid "Export Profile"
  3890. msgstr "Profiilin vienti"
  3891. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:376
  3892. msgctxt "@title:window"
  3893. msgid "Duplicate Profile"
  3894. msgstr "Monista profiili"
  3895. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  3896. msgctxt "@title:window"
  3897. msgid "Rename Profile"
  3898. msgstr "Nimeä profiili uudelleen"
  3899. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:416
  3900. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:423
  3901. msgctxt "@title:window"
  3902. msgid "Import Profile"
  3903. msgstr "Profiilin tuonti"
  3904. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:169
  3905. msgctxt "@label"
  3906. msgid "Interface"
  3907. msgstr "Käyttöliittymä"
  3908. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:213
  3909. msgctxt "@heading"
  3910. msgid "-- incomplete --"
  3911. msgstr ""
  3912. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:258
  3913. msgctxt "@label"
  3914. msgid "Currency:"
  3915. msgstr "Valuutta:"
  3916. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3917. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3918. msgid "Theme*:"
  3919. msgstr ""
  3920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:319
  3921. msgctxt "@info:tooltip"
  3922. msgid "Slice automatically when changing settings."
  3923. msgstr "Viipaloi automaattisesti, kun asetuksia muutetaan."
  3924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:327
  3925. msgctxt "@option:check"
  3926. msgid "Slice automatically"
  3927. msgstr "Viipaloi automaattisesti"
  3928. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:336
  3929. msgctxt "@label"
  3930. msgid "*You will need to restart the application for these changes to have effect."
  3931. msgstr ""
  3932. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3933. msgctxt "@label"
  3934. msgid "Viewport behavior"
  3935. msgstr "Näyttöikkunan käyttäytyminen"
  3936. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:359
  3937. msgctxt "@info:tooltip"
  3938. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3939. msgstr "Korosta mallin vailla tukea olevat alueet punaisella. Ilman tukea nämä alueet eivät tulostu kunnolla."
  3940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3941. msgctxt "@option:check"
  3942. msgid "Display overhang"
  3943. msgstr "Näytä uloke"
  3944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:378
  3945. msgctxt "@info:tooltip"
  3946. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3947. msgstr ""
  3948. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:387
  3949. msgctxt "@option:check"
  3950. msgid "Display model errors"
  3951. msgstr ""
  3952. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:395
  3953. msgctxt "@info:tooltip"
  3954. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3955. msgstr "Siirtää kameraa siten, että valittuna oleva malli on näkymän keskellä."
  3956. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3957. msgctxt "@action:button"
  3958. msgid "Center camera when item is selected"
  3959. msgstr "Keskitä kamera kun kohde on valittu"
  3960. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:410
  3961. msgctxt "@info:tooltip"
  3962. msgid "Should the default zoom behavior of cura be inverted?"
  3963. msgstr "Pitääkö Curan oletusarvoinen zoom-toimintatapa muuttaa päinvastaiseksi?"
  3964. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:415
  3965. msgctxt "@action:button"
  3966. msgid "Invert the direction of camera zoom."
  3967. msgstr "Käännä kameran zoomin suunta päinvastaiseksi."
  3968. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  3969. msgctxt "@info:tooltip"
  3970. msgid "Should zooming move in the direction of the mouse?"
  3971. msgstr "Tuleeko zoomauksen siirtyä hiiren suuntaan?"
  3972. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  3973. msgctxt "@info:tooltip"
  3974. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3975. msgstr ""
  3976. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:436
  3977. msgctxt "@action:button"
  3978. msgid "Zoom toward mouse direction"
  3979. msgstr "Zoomaa hiiren suuntaan"
  3980. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:462
  3981. msgctxt "@info:tooltip"
  3982. msgid "Should models on the platform be moved so that they no longer intersect?"
  3983. msgstr "Pitäisikö alustalla olevia malleja siirtää niin, etteivät ne enää leikkaa toisiaan?"
  3984. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:467
  3985. msgctxt "@option:check"
  3986. msgid "Ensure models are kept apart"
  3987. msgstr "Varmista, että mallit ovat erillään"
  3988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3989. msgctxt "@info:tooltip"
  3990. msgid "Should models on the platform be moved down to touch the build plate?"
  3991. msgstr "Pitäisikö tulostusalueella olevia malleja siirtää alas niin, että ne koskettavat tulostusalustaa?"
  3992. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:481
  3993. msgctxt "@option:check"
  3994. msgid "Automatically drop models to the build plate"
  3995. msgstr "Pudota mallit automaattisesti alustalle"
  3996. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:493
  3997. msgctxt "@info:tooltip"
  3998. msgid "Show caution message in g-code reader."
  3999. msgstr ""
  4000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:502
  4001. msgctxt "@option:check"
  4002. msgid "Caution message in g-code reader"
  4003. msgstr ""
  4004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:510
  4005. msgctxt "@info:tooltip"
  4006. msgid "Should layer be forced into compatibility mode?"
  4007. msgstr "Pakotetaanko kerros yhteensopivuustilaan?"
  4008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:515
  4009. msgctxt "@option:check"
  4010. msgid "Force layer view compatibility mode (restart required)"
  4011. msgstr "Pakota kerrosnäkymän yhteensopivuustila (vaatii uudelleenkäynnistyksen)"
  4012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:525
  4013. msgctxt "@info:tooltip"
  4014. msgid "Should Cura open at the location it was closed?"
  4015. msgstr ""
  4016. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:530
  4017. msgctxt "@option:check"
  4018. msgid "Restore window position on start"
  4019. msgstr ""
  4020. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:540
  4021. msgctxt "@info:tooltip"
  4022. msgid "What type of camera rendering should be used?"
  4023. msgstr ""
  4024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:547
  4025. msgctxt "@window:text"
  4026. msgid "Camera rendering:"
  4027. msgstr ""
  4028. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:554
  4029. msgid "Perspective"
  4030. msgstr ""
  4031. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:555
  4032. msgid "Orthographic"
  4033. msgstr ""
  4034. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:595
  4035. msgctxt "@label"
  4036. msgid "Opening and saving files"
  4037. msgstr "Tiedostojen avaaminen ja tallentaminen"
  4038. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:602
  4039. msgctxt "@info:tooltip"
  4040. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4041. msgstr ""
  4042. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:607
  4043. msgctxt "@option:check"
  4044. msgid "Use a single instance of Cura"
  4045. msgstr ""
  4046. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:618
  4047. msgctxt "@info:tooltip"
  4048. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4049. msgstr ""
  4050. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:624
  4051. msgctxt "@option:check"
  4052. msgid "Clear buildplate before loading model into the single instance"
  4053. msgstr ""
  4054. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:634
  4055. msgctxt "@info:tooltip"
  4056. msgid "Should models be scaled to the build volume if they are too large?"
  4057. msgstr "Pitäisikö mallit skaalata tulostustilavuuteen, jos ne ovat liian isoja?"
  4058. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:639
  4059. msgctxt "@option:check"
  4060. msgid "Scale large models"
  4061. msgstr "Skaalaa suuret mallit"
  4062. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:649
  4063. msgctxt "@info:tooltip"
  4064. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4065. msgstr "Malli voi vaikuttaa erittäin pieneltä, jos sen koko on ilmoitettu esimerkiksi metreissä eikä millimetreissä. Pitäisikö nämä mallit suurentaa?"
  4066. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:654
  4067. msgctxt "@option:check"
  4068. msgid "Scale extremely small models"
  4069. msgstr "Skaalaa erittäin pienet mallit"
  4070. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:664
  4071. msgctxt "@info:tooltip"
  4072. msgid "Should models be selected after they are loaded?"
  4073. msgstr ""
  4074. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:669
  4075. msgctxt "@option:check"
  4076. msgid "Select models when loaded"
  4077. msgstr ""
  4078. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:679
  4079. msgctxt "@info:tooltip"
  4080. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4081. msgstr "Pitäisikö tulostustyön nimeen lisätä automaattisesti tulostimen nimeen perustuva etuliite?"
  4082. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:684
  4083. msgctxt "@option:check"
  4084. msgid "Add machine prefix to job name"
  4085. msgstr "Lisää laitteen etuliite työn nimeen"
  4086. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:694
  4087. msgctxt "@info:tooltip"
  4088. msgid "Should a summary be shown when saving a project file?"
  4089. msgstr "Näytetäänkö yhteenveto, kun projektitiedosto tallennetaan?"
  4090. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:698
  4091. msgctxt "@option:check"
  4092. msgid "Show summary dialog when saving project"
  4093. msgstr "Näytä yhteenvetoikkuna, kun projekti tallennetaan"
  4094. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:708
  4095. msgctxt "@info:tooltip"
  4096. msgid "Default behavior when opening a project file"
  4097. msgstr "Projektitiedoston avaamisen oletustoimintatapa"
  4098. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:716
  4099. msgctxt "@window:text"
  4100. msgid "Default behavior when opening a project file: "
  4101. msgstr "Projektitiedoston avaamisen oletustoimintatapa: "
  4102. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:731
  4103. msgctxt "@option:openProject"
  4104. msgid "Always ask me this"
  4105. msgstr ""
  4106. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:732
  4107. msgctxt "@option:openProject"
  4108. msgid "Always open as a project"
  4109. msgstr "Avaa aina projektina"
  4110. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:733
  4111. msgctxt "@option:openProject"
  4112. msgid "Always import models"
  4113. msgstr "Tuo mallit aina"
  4114. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:770
  4115. msgctxt "@info:tooltip"
  4116. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  4117. msgstr "Kun olet tehnyt muutokset profiiliin ja vaihtanut toiseen, näytetään valintaikkuna, jossa kysytään, haluatko säilyttää vai hylätä muutokset. Tässä voit myös valita oletuskäytöksen, jolloin valintaikkunaa ei näytetä uudelleen."
  4118. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:784
  4119. msgctxt "@window:text"
  4120. msgid "Default behavior for changed setting values when switching to a different profile: "
  4121. msgstr ""
  4122. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:799
  4123. msgctxt "@option:discardOrKeep"
  4124. msgid "Always discard changed settings"
  4125. msgstr ""
  4126. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:800
  4127. msgctxt "@option:discardOrKeep"
  4128. msgid "Always transfer changed settings to new profile"
  4129. msgstr ""
  4130. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:834
  4131. msgctxt "@label"
  4132. msgid "Privacy"
  4133. msgstr "Tietosuoja"
  4134. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:840
  4135. msgctxt "@info:tooltip"
  4136. msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  4137. msgstr "Pitäisikö anonyymejä tietoja tulosteesta lähettää Ultimakerille? Huomaa, että malleja, IP-osoitteita tai muita henkilökohtaisia tietoja ei lähetetä eikä tallenneta."
  4138. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:845
  4139. msgctxt "@option:check"
  4140. msgid "Send (anonymous) print information"
  4141. msgstr "Lähetä (anonyymit) tulostustiedot"
  4142. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:875
  4143. msgctxt "@label"
  4144. msgid "Updates"
  4145. msgstr ""
  4146. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:882
  4147. msgctxt "@info:tooltip"
  4148. msgid "Should Cura check for updates when the program is started?"
  4149. msgstr "Pitäisikö Curan tarkistaa saatavilla olevat päivitykset, kun ohjelma käynnistetään?"
  4150. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:887
  4151. msgctxt "@option:check"
  4152. msgid "Check for updates on start"
  4153. msgstr "Tarkista päivitykset käynnistettäessä"
  4154. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:903
  4155. msgctxt "@info:tooltip"
  4156. msgid "When checking for updates, only check for stable releases."
  4157. msgstr ""
  4158. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:909
  4159. msgctxt "@option:radio"
  4160. msgid "Stable releases only"
  4161. msgstr ""
  4162. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:919
  4163. msgctxt "@info:tooltip"
  4164. msgid "When checking for updates, check for both stable and for beta releases."
  4165. msgstr ""
  4166. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:925
  4167. msgctxt "@option:radio"
  4168. msgid "Stable and Beta releases"
  4169. msgstr ""
  4170. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:935
  4171. msgctxt "@info:tooltip"
  4172. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4173. msgstr ""
  4174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:940
  4175. msgctxt "@option:check"
  4176. msgid "Get notifications for plugin updates"
  4177. msgstr ""
  4178. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4179. msgctxt "@label"
  4180. msgid "Add printer by IP address"
  4181. msgstr ""
  4182. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4183. msgctxt "@text"
  4184. msgid "Enter your printer's IP address."
  4185. msgstr ""
  4186. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4187. msgctxt "@button"
  4188. msgid "Add"
  4189. msgstr ""
  4190. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4191. msgctxt "@label"
  4192. msgid "Could not connect to device."
  4193. msgstr ""
  4194. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4196. msgctxt "@label"
  4197. msgid "Can't connect to your Ultimaker printer?"
  4198. msgstr ""
  4199. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4200. msgctxt "@label"
  4201. msgid "The printer at this address has not responded yet."
  4202. msgstr ""
  4203. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4204. msgctxt "@label"
  4205. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4206. msgstr ""
  4207. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4208. msgctxt "@button"
  4209. msgid "Connect"
  4210. msgstr ""
  4211. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4212. msgctxt "@label"
  4213. msgid "Release Notes"
  4214. msgstr ""
  4215. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4216. msgctxt "@label"
  4217. msgid "User Agreement"
  4218. msgstr ""
  4219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  4220. msgctxt "@button"
  4221. msgid "Agree"
  4222. msgstr ""
  4223. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4224. msgctxt "@button"
  4225. msgid "Decline and close"
  4226. msgstr ""
  4227. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4228. msgctxt "@label"
  4229. msgid "What's New"
  4230. msgstr ""
  4231. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:184
  4232. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  4233. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  4234. msgctxt "@button"
  4235. msgid "Next"
  4236. msgstr ""
  4237. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4238. msgctxt "@label"
  4239. msgid "Add a Cloud printer"
  4240. msgstr ""
  4241. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4242. msgctxt "@label"
  4243. msgid "Waiting for Cloud response"
  4244. msgstr ""
  4245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4246. msgctxt "@label"
  4247. msgid "No printers found in your account?"
  4248. msgstr ""
  4249. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4250. msgctxt "@label"
  4251. msgid "The following printers in your account have been added in Cura:"
  4252. msgstr ""
  4253. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:194
  4254. msgctxt "@button"
  4255. msgid "Add printer manually"
  4256. msgstr ""
  4257. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4258. msgctxt "@text"
  4259. msgid "Add material settings and plugins from the Marketplace"
  4260. msgstr ""
  4261. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4262. msgctxt "@text"
  4263. msgid "Backup and sync your material settings and plugins"
  4264. msgstr ""
  4265. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4266. msgctxt "@text"
  4267. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4268. msgstr ""
  4269. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4270. msgctxt "@button"
  4271. msgid "Skip"
  4272. msgstr ""
  4273. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4274. msgctxt "@text"
  4275. msgid "Create a free Ultimaker Account"
  4276. msgstr ""
  4277. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4278. msgctxt "@label"
  4279. msgid "Welcome to Ultimaker Cura"
  4280. msgstr ""
  4281. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4282. msgctxt "@text"
  4283. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  4284. msgstr ""
  4285. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4286. msgctxt "@button"
  4287. msgid "Get started"
  4288. msgstr ""
  4289. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4290. msgctxt "@label"
  4291. msgid "Empty"
  4292. msgstr ""
  4293. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:206
  4294. msgctxt "@label"
  4295. msgid "Manufacturer"
  4296. msgstr ""
  4297. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:217
  4298. msgctxt "@label"
  4299. msgid "Profile author"
  4300. msgstr ""
  4301. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:229
  4302. msgctxt "@label"
  4303. msgid "Printer name"
  4304. msgstr ""
  4305. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  4306. msgctxt "@text"
  4307. msgid "Please name your printer"
  4308. msgstr ""
  4309. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4310. msgctxt "@label"
  4311. msgid "Add a printer"
  4312. msgstr ""
  4313. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4314. msgctxt "@label"
  4315. msgid "Add a networked printer"
  4316. msgstr ""
  4317. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:88
  4318. msgctxt "@label"
  4319. msgid "Add a non-networked printer"
  4320. msgstr ""
  4321. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4322. msgctxt "@label"
  4323. msgid "There is no printer found over your network."
  4324. msgstr ""
  4325. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  4326. msgctxt "@label"
  4327. msgid "Refresh"
  4328. msgstr ""
  4329. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  4330. msgctxt "@label"
  4331. msgid "Add printer by IP"
  4332. msgstr ""
  4333. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  4334. msgctxt "@label"
  4335. msgid "Add cloud printer"
  4336. msgstr ""
  4337. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:221
  4338. msgctxt "@label"
  4339. msgid "Troubleshooting"
  4340. msgstr ""
  4341. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4342. msgctxt "@label"
  4343. msgid "Help us to improve Ultimaker Cura"
  4344. msgstr ""
  4345. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4346. msgctxt "@text"
  4347. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4348. msgstr ""
  4349. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4350. msgctxt "@text"
  4351. msgid "Machine types"
  4352. msgstr ""
  4353. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4354. msgctxt "@text"
  4355. msgid "Material usage"
  4356. msgstr ""
  4357. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4358. msgctxt "@text"
  4359. msgid "Number of slices"
  4360. msgstr ""
  4361. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4362. msgctxt "@text"
  4363. msgid "Print settings"
  4364. msgstr ""
  4365. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4366. msgctxt "@text"
  4367. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4368. msgstr ""
  4369. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4370. msgctxt "@text"
  4371. msgid "More information"
  4372. msgstr ""
  4373. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectSelector.qml:59
  4374. msgctxt "@label"
  4375. msgid "Object list"
  4376. msgstr ""
  4377. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:109
  4378. msgctxt "@label"
  4379. msgid "Is printed as support."
  4380. msgstr ""
  4381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:112
  4382. msgctxt "@label"
  4383. msgid "Other models overlapping with this model are modified."
  4384. msgstr ""
  4385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:115
  4386. msgctxt "@label"
  4387. msgid "Infill overlapping with this model is modified."
  4388. msgstr ""
  4389. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:118
  4390. msgctxt "@label"
  4391. msgid "Overlaps with this model are not supported."
  4392. msgstr ""
  4393. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:125
  4394. msgctxt "@label %1 is the number of settings it overrides."
  4395. msgid "Overrides %1 setting."
  4396. msgid_plural "Overrides %1 settings."
  4397. msgstr[0] ""
  4398. msgstr[1] ""
  4399. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4400. msgctxt "@label"
  4401. msgid "Connected printers"
  4402. msgstr ""
  4403. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4404. msgctxt "@label"
  4405. msgid "Preset printers"
  4406. msgstr ""
  4407. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4408. msgctxt "@status"
  4409. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4410. msgstr ""
  4411. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4412. msgctxt "@status"
  4413. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4414. msgstr ""
  4415. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4416. msgctxt "@status"
  4417. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4418. msgstr ""
  4419. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4420. msgctxt "@status"
  4421. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4422. msgstr ""
  4423. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:236
  4424. msgctxt "@button"
  4425. msgid "Add printer"
  4426. msgstr ""
  4427. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:253
  4428. msgctxt "@button"
  4429. msgid "Manage printers"
  4430. msgstr ""
  4431. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/SearchBar.qml:17
  4432. msgctxt "@placeholder"
  4433. msgid "Search"
  4434. msgstr ""
  4435. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/JobSpecs.qml:93
  4436. msgctxt "@text Print job name"
  4437. msgid "Untitled"
  4438. msgstr ""
  4439. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:115
  4440. msgctxt "@label:MonitorStatus"
  4441. msgid "Not connected to a printer"
  4442. msgstr "Ei yhteyttä tulostimeen"
  4443. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:119
  4444. msgctxt "@label:MonitorStatus"
  4445. msgid "Printer does not accept commands"
  4446. msgstr "Tulostin ei hyväksy komentoja"
  4447. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:129
  4448. msgctxt "@label:MonitorStatus"
  4449. msgid "In maintenance. Please check the printer"
  4450. msgstr "Huolletaan. Tarkista tulostin"
  4451. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:140
  4452. msgctxt "@label:MonitorStatus"
  4453. msgid "Lost connection with the printer"
  4454. msgstr "Yhteys tulostimeen menetetty"
  4455. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:142
  4456. msgctxt "@label:MonitorStatus"
  4457. msgid "Printing..."
  4458. msgstr "Tulostetaan..."
  4459. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:145
  4460. msgctxt "@label:MonitorStatus"
  4461. msgid "Paused"
  4462. msgstr "Keskeytetty"
  4463. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:148
  4464. msgctxt "@label:MonitorStatus"
  4465. msgid "Preparing..."
  4466. msgstr "Valmistellaan..."
  4467. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:150
  4468. msgctxt "@label:MonitorStatus"
  4469. msgid "Please remove the print"
  4470. msgstr "Poista tuloste"
  4471. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:318
  4472. msgctxt "@label"
  4473. msgid "Abort Print"
  4474. msgstr ""
  4475. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:327
  4476. msgctxt "@label"
  4477. msgid "Are you sure you want to abort the print?"
  4478. msgstr "Haluatko varmasti keskeyttää tulostuksen?"
  4479. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingCategory.qml:115
  4480. msgctxt "@label"
  4481. msgid ""
  4482. "Some hidden settings use values different from their normal calculated value.\n"
  4483. "\n"
  4484. "Click to make these settings visible."
  4485. msgstr ""
  4486. "Jotkin piilotetut asetukset käyttävät arvoja, jotka eroavat normaaleista lasketuista arvoista.\n"
  4487. "\n"
  4488. "Tee asetuksista näkyviä napsauttamalla."
  4489. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:47
  4490. msgctxt "@label:textbox"
  4491. msgid "Search settings"
  4492. msgstr ""
  4493. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:428
  4494. msgctxt "@action:menu"
  4495. msgid "Copy value to all extruders"
  4496. msgstr "Kopioi arvo kaikkiin suulakepuristimiin"
  4497. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:437
  4498. msgctxt "@action:menu"
  4499. msgid "Copy all changed values to all extruders"
  4500. msgstr ""
  4501. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:473
  4502. msgctxt "@action:menu"
  4503. msgid "Hide this setting"
  4504. msgstr "Piilota tämä asetus"
  4505. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:486
  4506. msgctxt "@action:menu"
  4507. msgid "Don't show this setting"
  4508. msgstr "Älä näytä tätä asetusta"
  4509. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:490
  4510. msgctxt "@action:menu"
  4511. msgid "Keep this setting visible"
  4512. msgstr "Pidä tämä asetus näkyvissä"
  4513. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:509
  4514. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:467
  4515. msgctxt "@action:menu"
  4516. msgid "Configure setting visibility..."
  4517. msgstr "Määritä asetusten näkyvyys..."
  4518. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:78
  4519. msgctxt "@label"
  4520. msgid "This setting is not used because all the settings that it influences are overridden."
  4521. msgstr ""
  4522. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:83
  4523. msgctxt "@label Header for list of settings."
  4524. msgid "Affects"
  4525. msgstr "Koskee seuraavia:"
  4526. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:88
  4527. msgctxt "@label Header for list of settings."
  4528. msgid "Affected By"
  4529. msgstr "Riippuu seuraavista:"
  4530. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:185
  4531. msgctxt "@label"
  4532. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4533. msgstr ""
  4534. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:189
  4535. msgctxt "@label"
  4536. msgid "This setting is resolved from conflicting extruder-specific values:"
  4537. msgstr ""
  4538. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:229
  4539. msgctxt "@label"
  4540. msgid ""
  4541. "This setting has a value that is different from the profile.\n"
  4542. "\n"
  4543. "Click to restore the value of the profile."
  4544. msgstr ""
  4545. "Tämän asetuksen arvo eroaa profiilin arvosta.\n"
  4546. "\n"
  4547. "Palauta profiilin arvo napsauttamalla."
  4548. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:329
  4549. msgctxt "@label"
  4550. msgid ""
  4551. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4552. "\n"
  4553. "Click to restore the calculated value."
  4554. msgstr ""
  4555. "Tämä asetus on normaalisti laskettu, mutta sillä on tällä hetkellä absoluuttinen arvo.\n"
  4556. "\n"
  4557. "Palauta laskettu arvo napsauttamalla."
  4558. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:104
  4559. msgctxt "@label"
  4560. msgid "Hex"
  4561. msgstr ""
  4562. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:156
  4563. msgctxt "@label"
  4564. msgid "Active print"
  4565. msgstr "Aktiivinen tulostustyö"
  4566. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:164
  4567. msgctxt "@label"
  4568. msgid "Job Name"
  4569. msgstr "Työn nimi"
  4570. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:172
  4571. msgctxt "@label"
  4572. msgid "Printing Time"
  4573. msgstr "Tulostusaika"
  4574. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:180
  4575. msgctxt "@label"
  4576. msgid "Estimated time left"
  4577. msgstr "Aikaa jäljellä arviolta"
  4578. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:81
  4579. msgctxt "@action:inmenu"
  4580. msgid "Show Online Troubleshooting"
  4581. msgstr ""
  4582. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:88
  4583. msgctxt "@action:inmenu"
  4584. msgid "Toggle Full Screen"
  4585. msgstr "Vaihda koko näyttöön"
  4586. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:96
  4587. msgctxt "@action:inmenu"
  4588. msgid "Exit Full Screen"
  4589. msgstr ""
  4590. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:103
  4591. msgctxt "@action:inmenu menubar:edit"
  4592. msgid "&Undo"
  4593. msgstr "&Kumoa"
  4594. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:113
  4595. msgctxt "@action:inmenu menubar:edit"
  4596. msgid "&Redo"
  4597. msgstr "Tee &uudelleen"
  4598. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:131
  4599. msgctxt "@action:inmenu menubar:file"
  4600. msgid "&Quit"
  4601. msgstr "&Lopeta"
  4602. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:139
  4603. msgctxt "@action:inmenu menubar:view"
  4604. msgid "3D View"
  4605. msgstr ""
  4606. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:146
  4607. msgctxt "@action:inmenu menubar:view"
  4608. msgid "Front View"
  4609. msgstr ""
  4610. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:153
  4611. msgctxt "@action:inmenu menubar:view"
  4612. msgid "Top View"
  4613. msgstr ""
  4614. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:160
  4615. msgctxt "@action:inmenu menubar:view"
  4616. msgid "Bottom View"
  4617. msgstr ""
  4618. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:167
  4619. msgctxt "@action:inmenu menubar:view"
  4620. msgid "Left Side View"
  4621. msgstr ""
  4622. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:174
  4623. msgctxt "@action:inmenu menubar:view"
  4624. msgid "Right Side View"
  4625. msgstr ""
  4626. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:188
  4627. msgctxt "@action:inmenu"
  4628. msgid "Configure Cura..."
  4629. msgstr "Määritä Curan asetukset..."
  4630. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:195
  4631. msgctxt "@action:inmenu menubar:printer"
  4632. msgid "&Add Printer..."
  4633. msgstr "L&isää tulostin..."
  4634. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:201
  4635. msgctxt "@action:inmenu menubar:printer"
  4636. msgid "Manage Pr&inters..."
  4637. msgstr "Tulostinten &hallinta..."
  4638. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:208
  4639. msgctxt "@action:inmenu"
  4640. msgid "Manage Materials..."
  4641. msgstr "Hallitse materiaaleja..."
  4642. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:216
  4643. msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  4644. msgid "Add more materials from Marketplace"
  4645. msgstr ""
  4646. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:223
  4647. msgctxt "@action:inmenu menubar:profile"
  4648. msgid "&Update profile with current settings/overrides"
  4649. msgstr "&Päivitä nykyiset asetukset tai ohitukset profiiliin"
  4650. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:231
  4651. msgctxt "@action:inmenu menubar:profile"
  4652. msgid "&Discard current changes"
  4653. msgstr "&Hylkää tehdyt muutokset"
  4654. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:243
  4655. msgctxt "@action:inmenu menubar:profile"
  4656. msgid "&Create profile from current settings/overrides..."
  4657. msgstr "&Luo profiili nykyisten asetusten tai ohitusten perusteella..."
  4658. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:249
  4659. msgctxt "@action:inmenu menubar:profile"
  4660. msgid "Manage Profiles..."
  4661. msgstr "Profiilien hallinta..."
  4662. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:257
  4663. msgctxt "@action:inmenu menubar:help"
  4664. msgid "Show Online &Documentation"
  4665. msgstr "Näytä sähköinen &dokumentaatio"
  4666. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:265
  4667. msgctxt "@action:inmenu menubar:help"
  4668. msgid "Report a &Bug"
  4669. msgstr "Ilmoita &virheestä"
  4670. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:273
  4671. msgctxt "@action:inmenu menubar:help"
  4672. msgid "What's New"
  4673. msgstr ""
  4674. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:287
  4675. msgctxt "@action:inmenu menubar:help"
  4676. msgid "About..."
  4677. msgstr "Tietoja..."
  4678. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:294
  4679. msgctxt "@action:inmenu menubar:edit"
  4680. msgid "Delete Selected"
  4681. msgstr ""
  4682. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:304
  4683. msgctxt "@action:inmenu menubar:edit"
  4684. msgid "Center Selected"
  4685. msgstr ""
  4686. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:313
  4687. msgctxt "@action:inmenu menubar:edit"
  4688. msgid "Multiply Selected"
  4689. msgstr ""
  4690. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:322
  4691. msgctxt "@action:inmenu"
  4692. msgid "Delete Model"
  4693. msgstr "Poista malli"
  4694. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:330
  4695. msgctxt "@action:inmenu"
  4696. msgid "Ce&nter Model on Platform"
  4697. msgstr "Ke&skitä malli alustalle"
  4698. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:336
  4699. msgctxt "@action:inmenu menubar:edit"
  4700. msgid "&Group Models"
  4701. msgstr "&Ryhmittele mallit"
  4702. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:356
  4703. msgctxt "@action:inmenu menubar:edit"
  4704. msgid "Ungroup Models"
  4705. msgstr "Poista mallien ryhmitys"
  4706. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:366
  4707. msgctxt "@action:inmenu menubar:edit"
  4708. msgid "&Merge Models"
  4709. msgstr "&Yhdistä mallit"
  4710. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:376
  4711. msgctxt "@action:inmenu"
  4712. msgid "&Multiply Model..."
  4713. msgstr "&Kerro malli..."
  4714. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:383
  4715. msgctxt "@action:inmenu menubar:edit"
  4716. msgid "Select All Models"
  4717. msgstr "Valitse kaikki mallit"
  4718. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:393
  4719. msgctxt "@action:inmenu menubar:edit"
  4720. msgid "Clear Build Plate"
  4721. msgstr "Tyhjennä tulostusalusta"
  4722. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:403
  4723. msgctxt "@action:inmenu menubar:file"
  4724. msgid "Reload All Models"
  4725. msgstr "Lataa kaikki mallit uudelleen"
  4726. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:412
  4727. msgctxt "@action:inmenu menubar:edit"
  4728. msgid "Arrange All Models"
  4729. msgstr "Järjestä kaikki mallit"
  4730. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:420
  4731. msgctxt "@action:inmenu menubar:edit"
  4732. msgid "Arrange Selection"
  4733. msgstr "Järjestä valinta"
  4734. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:427
  4735. msgctxt "@action:inmenu menubar:edit"
  4736. msgid "Reset All Model Positions"
  4737. msgstr "Määritä kaikkien mallien positiot uudelleen"
  4738. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:434
  4739. msgctxt "@action:inmenu menubar:edit"
  4740. msgid "Reset All Model Transformations"
  4741. msgstr "Määritä kaikkien mallien muutokset uudelleen"
  4742. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:443
  4743. msgctxt "@action:inmenu menubar:file"
  4744. msgid "&Open File(s)..."
  4745. msgstr "&Avaa tiedosto(t)..."
  4746. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:453
  4747. msgctxt "@action:inmenu menubar:file"
  4748. msgid "&New Project..."
  4749. msgstr "&Uusi projekti..."
  4750. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:460
  4751. msgctxt "@action:inmenu menubar:help"
  4752. msgid "Show Configuration Folder"
  4753. msgstr "Näytä määrityskansio"
  4754. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:25
  4755. msgctxt "@info:tooltip"
  4756. msgid "3D View"
  4757. msgstr ""
  4758. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:38
  4759. msgctxt "@info:tooltip"
  4760. msgid "Front View"
  4761. msgstr ""
  4762. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:51
  4763. msgctxt "@info:tooltip"
  4764. msgid "Top View"
  4765. msgstr ""
  4766. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:64
  4767. msgctxt "@info:tooltip"
  4768. msgid "Left View"
  4769. msgstr ""
  4770. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:77
  4771. msgctxt "@info:tooltip"
  4772. msgid "Right View"
  4773. msgstr ""
  4774. #: PrepareStage/plugin.json
  4775. msgctxt "description"
  4776. msgid "Provides a prepare stage in Cura."
  4777. msgstr ""
  4778. #: PrepareStage/plugin.json
  4779. msgctxt "name"
  4780. msgid "Prepare Stage"
  4781. msgstr ""
  4782. #: CuraProfileWriter/plugin.json
  4783. msgctxt "description"
  4784. msgid "Provides support for exporting Cura profiles."
  4785. msgstr "Tukee Cura-profiilien vientiä."
  4786. #: CuraProfileWriter/plugin.json
  4787. msgctxt "name"
  4788. msgid "Cura Profile Writer"
  4789. msgstr "Cura-profiilin kirjoitin"
  4790. #: TrimeshReader/plugin.json
  4791. msgctxt "description"
  4792. msgid "Provides support for reading model files."
  4793. msgstr ""
  4794. #: TrimeshReader/plugin.json
  4795. msgctxt "name"
  4796. msgid "Trimesh Reader"
  4797. msgstr ""
  4798. #: FirmwareUpdateChecker/plugin.json
  4799. msgctxt "description"
  4800. msgid "Checks for firmware updates."
  4801. msgstr "Tarkistaa laiteohjelmistopäivitykset."
  4802. #: FirmwareUpdateChecker/plugin.json
  4803. msgctxt "name"
  4804. msgid "Firmware Update Checker"
  4805. msgstr "Laiteohjelmiston päivitysten tarkistus"
  4806. #: SentryLogger/plugin.json
  4807. msgctxt "description"
  4808. msgid "Logs certain events so that they can be used by the crash reporter"
  4809. msgstr ""
  4810. #: SentryLogger/plugin.json
  4811. msgctxt "name"
  4812. msgid "Sentry Logger"
  4813. msgstr ""
  4814. #: MonitorStage/plugin.json
  4815. msgctxt "description"
  4816. msgid "Provides a monitor stage in Cura."
  4817. msgstr ""
  4818. #: MonitorStage/plugin.json
  4819. msgctxt "name"
  4820. msgid "Monitor Stage"
  4821. msgstr ""
  4822. #: RemovableDriveOutputDevice/plugin.json
  4823. msgctxt "description"
  4824. msgid "Provides removable drive hotplugging and writing support."
  4825. msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
  4826. #: RemovableDriveOutputDevice/plugin.json
  4827. msgctxt "name"
  4828. msgid "Removable Drive Output Device Plugin"
  4829. msgstr "Irrotettavan aseman tulostusvälineen laajennus"
  4830. #: AMFReader/plugin.json
  4831. msgctxt "description"
  4832. msgid "Provides support for reading AMF files."
  4833. msgstr ""
  4834. #: AMFReader/plugin.json
  4835. msgctxt "name"
  4836. msgid "AMF Reader"
  4837. msgstr ""
  4838. #: UFPReader/plugin.json
  4839. msgctxt "description"
  4840. msgid "Provides support for reading Ultimaker Format Packages."
  4841. msgstr ""
  4842. #: UFPReader/plugin.json
  4843. msgctxt "name"
  4844. msgid "UFP Reader"
  4845. msgstr ""
  4846. #: DigitalLibrary/plugin.json
  4847. msgctxt "description"
  4848. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4849. msgstr ""
  4850. #: DigitalLibrary/plugin.json
  4851. msgctxt "name"
  4852. msgid "Ultimaker Digital Library"
  4853. msgstr ""
  4854. #: PerObjectSettingsTool/plugin.json
  4855. msgctxt "description"
  4856. msgid "Provides the Per Model Settings."
  4857. msgstr "Mallikohtaisten asetusten muokkaus."
  4858. #: PerObjectSettingsTool/plugin.json
  4859. msgctxt "name"
  4860. msgid "Per Model Settings Tool"
  4861. msgstr "Mallikohtaisten asetusten työkalu"
  4862. #: FirmwareUpdater/plugin.json
  4863. msgctxt "description"
  4864. msgid "Provides a machine actions for updating firmware."
  4865. msgstr ""
  4866. #: FirmwareUpdater/plugin.json
  4867. msgctxt "name"
  4868. msgid "Firmware Updater"
  4869. msgstr ""
  4870. #: UM3NetworkPrinting/plugin.json
  4871. msgctxt "description"
  4872. msgid "Manages network connections to Ultimaker networked printers."
  4873. msgstr ""
  4874. #: UM3NetworkPrinting/plugin.json
  4875. msgctxt "name"
  4876. msgid "Ultimaker Network Connection"
  4877. msgstr ""
  4878. #: ModelChecker/plugin.json
  4879. msgctxt "description"
  4880. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4881. msgstr ""
  4882. #: ModelChecker/plugin.json
  4883. msgctxt "name"
  4884. msgid "Model Checker"
  4885. msgstr ""
  4886. #: SimulationView/plugin.json
  4887. msgctxt "description"
  4888. msgid "Provides the preview of sliced layerdata."
  4889. msgstr ""
  4890. #: SimulationView/plugin.json
  4891. msgctxt "name"
  4892. msgid "Simulation View"
  4893. msgstr ""
  4894. #: GCodeWriter/plugin.json
  4895. msgctxt "description"
  4896. msgid "Writes g-code to a file."
  4897. msgstr ""
  4898. #: GCodeWriter/plugin.json
  4899. msgctxt "name"
  4900. msgid "G-code Writer"
  4901. msgstr ""
  4902. #: 3MFWriter/plugin.json
  4903. msgctxt "description"
  4904. msgid "Provides support for writing 3MF files."
  4905. msgstr "Tukee 3MF-tiedostojen kirjoittamista."
  4906. #: 3MFWriter/plugin.json
  4907. msgctxt "name"
  4908. msgid "3MF Writer"
  4909. msgstr "3MF-kirjoitin"
  4910. #: GCodeGzReader/plugin.json
  4911. msgctxt "description"
  4912. msgid "Reads g-code from a compressed archive."
  4913. msgstr ""
  4914. #: GCodeGzReader/plugin.json
  4915. msgctxt "name"
  4916. msgid "Compressed G-code Reader"
  4917. msgstr ""
  4918. #: XmlMaterialProfile/plugin.json
  4919. msgctxt "description"
  4920. msgid "Provides capabilities to read and write XML-based material profiles."
  4921. msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen."
  4922. #: XmlMaterialProfile/plugin.json
  4923. msgctxt "name"
  4924. msgid "Material Profiles"
  4925. msgstr "Materiaaliprofiilit"
  4926. #: CuraEngineBackend/plugin.json
  4927. msgctxt "description"
  4928. msgid "Provides the link to the CuraEngine slicing backend."
  4929. msgstr "Linkki CuraEngine-viipalointiin taustalla."
  4930. #: CuraEngineBackend/plugin.json
  4931. msgctxt "name"
  4932. msgid "CuraEngine Backend"
  4933. msgstr "CuraEngine-taustaosa"
  4934. #: X3DReader/plugin.json
  4935. msgctxt "description"
  4936. msgid "Provides support for reading X3D files."
  4937. msgstr "Tukee X3D-tiedostojen lukemista."
  4938. #: X3DReader/plugin.json
  4939. msgctxt "name"
  4940. msgid "X3D Reader"
  4941. msgstr "X3D-lukija"
  4942. #: ImageReader/plugin.json
  4943. msgctxt "description"
  4944. msgid "Enables ability to generate printable geometry from 2D image files."
  4945. msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista."
  4946. #: ImageReader/plugin.json
  4947. msgctxt "name"
  4948. msgid "Image Reader"
  4949. msgstr "Kuvanlukija"
  4950. #: 3MFReader/plugin.json
  4951. msgctxt "description"
  4952. msgid "Provides support for reading 3MF files."
  4953. msgstr "Tukee 3MF-tiedostojen lukemista."
  4954. #: 3MFReader/plugin.json
  4955. msgctxt "name"
  4956. msgid "3MF Reader"
  4957. msgstr "3MF-lukija"
  4958. #: UFPWriter/plugin.json
  4959. msgctxt "description"
  4960. msgid "Provides support for writing Ultimaker Format Packages."
  4961. msgstr ""
  4962. #: UFPWriter/plugin.json
  4963. msgctxt "name"
  4964. msgid "UFP Writer"
  4965. msgstr ""
  4966. #: LegacyProfileReader/plugin.json
  4967. msgctxt "description"
  4968. msgid "Provides support for importing profiles from legacy Cura versions."
  4969. msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
  4970. #: LegacyProfileReader/plugin.json
  4971. msgctxt "name"
  4972. msgid "Legacy Cura Profile Reader"
  4973. msgstr "Aikaisempien Cura-profiilien lukija"
  4974. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4975. msgctxt "description"
  4976. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4977. msgstr ""
  4978. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4979. msgctxt "name"
  4980. msgid "Version Upgrade 4.3 to 4.4"
  4981. msgstr ""
  4982. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4983. msgctxt "description"
  4984. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4985. msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2."
  4986. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4987. msgctxt "name"
  4988. msgid "Version Upgrade 2.1 to 2.2"
  4989. msgstr "Päivitys versiosta 2.1 versioon 2.2"
  4990. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4991. msgctxt "description"
  4992. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4993. msgstr ""
  4994. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4995. msgctxt "name"
  4996. msgid "Version Upgrade 4.1 to 4.2"
  4997. msgstr ""
  4998. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  4999. msgctxt "description"
  5000. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5001. msgstr ""
  5002. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5003. msgctxt "name"
  5004. msgid "Version Upgrade 4.13 to 5.0"
  5005. msgstr ""
  5006. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5007. msgctxt "description"
  5008. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5009. msgstr ""
  5010. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5011. msgctxt "name"
  5012. msgid "Version Upgrade 4.5 to 4.6"
  5013. msgstr ""
  5014. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5015. msgctxt "description"
  5016. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5017. msgstr ""
  5018. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5019. msgctxt "name"
  5020. msgid "Version Upgrade 3.3 to 3.4"
  5021. msgstr ""
  5022. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5023. msgctxt "description"
  5024. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5025. msgstr ""
  5026. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5027. msgctxt "name"
  5028. msgid "Version Upgrade 4.8 to 4.9"
  5029. msgstr ""
  5030. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5031. msgctxt "description"
  5032. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5033. msgstr "Päivittää kokoonpanon versiosta Cura 2.7 versioon Cura 3.0."
  5034. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5035. msgctxt "name"
  5036. msgid "Version Upgrade 2.7 to 3.0"
  5037. msgstr "Päivitys versiosta 2.7 versioon 3.0"
  5038. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5039. msgctxt "description"
  5040. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5041. msgstr ""
  5042. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5043. msgctxt "name"
  5044. msgid "Version Upgrade 4.4 to 4.5"
  5045. msgstr ""
  5046. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5047. msgctxt "description"
  5048. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5049. msgstr ""
  5050. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5051. msgctxt "name"
  5052. msgid "Version Upgrade 3.0 to 3.1"
  5053. msgstr ""
  5054. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5055. msgctxt "description"
  5056. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5057. msgstr ""
  5058. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5059. msgctxt "name"
  5060. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5061. msgstr ""
  5062. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5063. msgctxt "description"
  5064. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5065. msgstr "Päivittää kokoonpanon versiosta Cura 2.6 versioon Cura 2.7."
  5066. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5067. msgctxt "name"
  5068. msgid "Version Upgrade 2.6 to 2.7"
  5069. msgstr "Päivitys versiosta 2.6 versioon 2.7"
  5070. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5071. msgctxt "description"
  5072. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5073. msgstr ""
  5074. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5075. msgctxt "name"
  5076. msgid "Version Upgrade 4.2 to 4.3"
  5077. msgstr ""
  5078. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5079. msgctxt "description"
  5080. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5081. msgstr ""
  5082. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5083. msgctxt "name"
  5084. msgid "Version Upgrade 4.0 to 4.1"
  5085. msgstr ""
  5086. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5087. msgctxt "description"
  5088. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5089. msgstr ""
  5090. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5091. msgctxt "name"
  5092. msgid "Version Upgrade 4.6.2 to 4.7"
  5093. msgstr ""
  5094. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5095. msgctxt "description"
  5096. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5097. msgstr ""
  5098. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5099. msgctxt "name"
  5100. msgid "Version Upgrade 4.9 to 4.10"
  5101. msgstr ""
  5102. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5103. msgctxt "description"
  5104. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5105. msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4."
  5106. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5107. msgctxt "name"
  5108. msgid "Version Upgrade 2.2 to 2.4"
  5109. msgstr "Päivitys versiosta 2.2 versioon 2.4"
  5110. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5111. msgctxt "description"
  5112. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5113. msgstr ""
  5114. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5115. msgctxt "name"
  5116. msgid "Version Upgrade 3.2 to 3.3"
  5117. msgstr ""
  5118. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5119. msgctxt "description"
  5120. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5121. msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6."
  5122. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5123. msgctxt "name"
  5124. msgid "Version Upgrade 2.5 to 2.6"
  5125. msgstr "Päivitys versiosta 2.5 versioon 2.6"
  5126. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5127. msgctxt "description"
  5128. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5129. msgstr ""
  5130. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5131. msgctxt "name"
  5132. msgid "Version Upgrade 3.5 to 4.0"
  5133. msgstr ""
  5134. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5135. msgctxt "description"
  5136. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5137. msgstr ""
  5138. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5139. msgctxt "name"
  5140. msgid "Version Upgrade 3.4 to 3.5"
  5141. msgstr ""
  5142. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5143. msgctxt "description"
  5144. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5145. msgstr ""
  5146. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5147. msgctxt "name"
  5148. msgid "Version Upgrade 4.7 to 4.8"
  5149. msgstr ""
  5150. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5151. msgctxt "description"
  5152. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5153. msgstr ""
  5154. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5155. msgctxt "name"
  5156. msgid "Version Upgrade 4.11 to 4.12"
  5157. msgstr ""
  5158. #: CuraDrive/plugin.json
  5159. msgctxt "description"
  5160. msgid "Backup and restore your configuration."
  5161. msgstr ""
  5162. #: CuraDrive/plugin.json
  5163. msgctxt "name"
  5164. msgid "Cura Backups"
  5165. msgstr ""
  5166. #: CuraProfileReader/plugin.json
  5167. msgctxt "description"
  5168. msgid "Provides support for importing Cura profiles."
  5169. msgstr "Tukee Cura-profiilien tuontia."
  5170. #: CuraProfileReader/plugin.json
  5171. msgctxt "name"
  5172. msgid "Cura Profile Reader"
  5173. msgstr "Cura-profiilin lukija"
  5174. #: SliceInfoPlugin/plugin.json
  5175. msgctxt "description"
  5176. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5177. msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
  5178. #: SliceInfoPlugin/plugin.json
  5179. msgctxt "name"
  5180. msgid "Slice info"
  5181. msgstr "Viipalointitiedot"
  5182. #: GCodeProfileReader/plugin.json
  5183. msgctxt "description"
  5184. msgid "Provides support for importing profiles from g-code files."
  5185. msgstr "Tukee profiilien tuontia GCode-tiedostoista."
  5186. #: GCodeProfileReader/plugin.json
  5187. msgctxt "name"
  5188. msgid "G-code Profile Reader"
  5189. msgstr ""
  5190. #: GCodeGzWriter/plugin.json
  5191. msgctxt "description"
  5192. msgid "Writes g-code to a compressed archive."
  5193. msgstr ""
  5194. #: GCodeGzWriter/plugin.json
  5195. msgctxt "name"
  5196. msgid "Compressed G-code Writer"
  5197. msgstr ""
  5198. #: PostProcessingPlugin/plugin.json
  5199. msgctxt "description"
  5200. msgid "Extension that allows for user created scripts for post processing"
  5201. msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten"
  5202. #: PostProcessingPlugin/plugin.json
  5203. msgctxt "name"
  5204. msgid "Post Processing"
  5205. msgstr "Jälkikäsittely"
  5206. #: SupportEraser/plugin.json
  5207. msgctxt "description"
  5208. msgid "Creates an eraser mesh to block the printing of support in certain places"
  5209. msgstr ""
  5210. #: SupportEraser/plugin.json
  5211. msgctxt "name"
  5212. msgid "Support Eraser"
  5213. msgstr ""
  5214. #: PreviewStage/plugin.json
  5215. msgctxt "description"
  5216. msgid "Provides a preview stage in Cura."
  5217. msgstr ""
  5218. #: PreviewStage/plugin.json
  5219. msgctxt "name"
  5220. msgid "Preview Stage"
  5221. msgstr ""
  5222. #: XRayView/plugin.json
  5223. msgctxt "description"
  5224. msgid "Provides the X-Ray view."
  5225. msgstr "Näyttää kerrosnäkymän."
  5226. #: XRayView/plugin.json
  5227. msgctxt "name"
  5228. msgid "X-Ray View"
  5229. msgstr "Kerrosnäkymä"
  5230. #: UltimakerMachineActions/plugin.json
  5231. msgctxt "description"
  5232. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  5233. msgstr ""
  5234. #: UltimakerMachineActions/plugin.json
  5235. msgctxt "name"
  5236. msgid "Ultimaker machine actions"
  5237. msgstr "Ultimaker-laitteen toiminnot"
  5238. #: Marketplace/plugin.json
  5239. msgctxt "description"
  5240. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  5241. msgstr ""
  5242. #: Marketplace/plugin.json
  5243. msgctxt "name"
  5244. msgid "Marketplace"
  5245. msgstr ""
  5246. #: SolidView/plugin.json
  5247. msgctxt "description"
  5248. msgid "Provides a normal solid mesh view."
  5249. msgstr "Näyttää normaalin kiinteän verkkonäkymän."
  5250. #: SolidView/plugin.json
  5251. msgctxt "name"
  5252. msgid "Solid View"
  5253. msgstr "Kiinteä näkymä"
  5254. #: GCodeReader/plugin.json
  5255. msgctxt "description"
  5256. msgid "Allows loading and displaying G-code files."
  5257. msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen."
  5258. #: GCodeReader/plugin.json
  5259. msgctxt "name"
  5260. msgid "G-code Reader"
  5261. msgstr "GCode-lukija"
  5262. #: MachineSettingsAction/plugin.json
  5263. msgctxt "description"
  5264. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  5265. msgstr ""
  5266. #: MachineSettingsAction/plugin.json
  5267. msgctxt "name"
  5268. msgid "Machine Settings Action"
  5269. msgstr ""
  5270. #: USBPrinting/plugin.json
  5271. msgctxt "description"
  5272. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5273. msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston."
  5274. #: USBPrinting/plugin.json
  5275. msgctxt "name"
  5276. msgid "USB printing"
  5277. msgstr "USB-tulostus"
  5278. #~ msgctxt "@title:window"
  5279. #~ msgid "Plugin License Agreement"
  5280. #~ msgstr "Lisäosan lisenssisopimus"
  5281. #~ msgctxt "@title:window"
  5282. #~ msgid "Convert Image..."
  5283. #~ msgstr "Muunna kuva..."
  5284. #~ msgctxt "@info:tooltip"
  5285. #~ msgid "The width in millimeters on the build plate."
  5286. #~ msgstr "Leveys millimetreinä alustalla."
  5287. #~ msgctxt "@action:button"
  5288. #~ msgid "Installed"
  5289. #~ msgstr "Asennettu"
  5290. #~ msgctxt "@label"
  5291. #~ msgid "Create"
  5292. #~ msgstr "Luo"
  5293. #~ msgctxt "@label"
  5294. #~ msgid "Duplicate"
  5295. #~ msgstr "Jäljennös"
  5296. #~ msgctxt "@label %1 is printer name"
  5297. #~ msgid "Printer: %1"
  5298. #~ msgstr "Tulostin: %1"
  5299. #~ msgctxt "@action:button"
  5300. #~ msgid "Update profile with current settings/overrides"
  5301. #~ msgstr "Päivitä nykyiset asetukset tai ohitukset profiiliin"
  5302. #~ msgctxt "@label"
  5303. #~ msgid "Theme:"
  5304. #~ msgstr "Teema:"
  5305. #~ msgctxt "@label"
  5306. #~ msgid "You will need to restart the application for these changes to have effect."
  5307. #~ msgstr "Sovellus on käynnistettävä uudelleen, jotta nämä muutokset tulevat voimaan."
  5308. #~ msgctxt "@action:button"
  5309. #~ msgid "Create"
  5310. #~ msgstr "Luo"
  5311. #~ msgctxt "@title:column"
  5312. #~ msgid "Unit"
  5313. #~ msgstr "Yksikkö"
  5314. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5315. #~ msgid "New %s firmware available"
  5316. #~ msgstr "Uusi tulostimen %s laiteohjelmisto saatavilla"
  5317. #~ msgctxt "@action:inmenu menubar:edit"
  5318. #~ msgid "Delete Selected Model"
  5319. #~ msgid_plural "Delete Selected Models"
  5320. #~ msgstr[0] "Poista valittu malli"
  5321. #~ msgstr[1] "Poista valitut mallit"
  5322. #~ msgctxt "@action:inmenu menubar:edit"
  5323. #~ msgid "Center Selected Model"
  5324. #~ msgid_plural "Center Selected Models"
  5325. #~ msgstr[0] "Keskitä valittu malli"
  5326. #~ msgstr[1] "Keskitä valitut mallit"
  5327. #~ msgctxt "@action:inmenu menubar:edit"
  5328. #~ msgid "Multiply Selected Model"
  5329. #~ msgid_plural "Multiply Selected Models"
  5330. #~ msgstr[0] "Kerro valittu malli"
  5331. #~ msgstr[1] "Kerro valitut mallit"
  5332. #~ msgctxt "@info:status"
  5333. #~ msgid "Successfully imported profile {0}"
  5334. #~ msgstr "Onnistuneesti tuotu profiili {0}"
  5335. #~ msgctxt "@info:status"
  5336. #~ msgid "Could not find a quality type {0} for the current configuration."
  5337. #~ msgstr "Laatutyyppiä {0} ei löydy nykyiselle kokoonpanolle."
  5338. #~ msgctxt "@action:ComboBox option"
  5339. #~ msgid "Create new"
  5340. #~ msgstr "Luo uusi"
  5341. #~ msgctxt "@text:window"
  5342. #~ msgid ""
  5343. #~ "You have customized some profile settings.\n"
  5344. #~ "Would you like to keep or discard those settings?"
  5345. #~ msgstr ""
  5346. #~ "Olet mukauttanut profiilin asetuksia.\n"
  5347. #~ "Haluatko säilyttää vai hylätä nämä asetukset?"
  5348. #~ msgctxt "@title:column"
  5349. #~ msgid "Default"
  5350. #~ msgstr "Oletusarvo"
  5351. #~ msgctxt "@title:column"
  5352. #~ msgid "Customized"
  5353. #~ msgstr "Mukautettu"
  5354. #~ msgctxt "@action:button"
  5355. #~ msgid "Discard"
  5356. #~ msgstr "Hylkää"
  5357. #~ msgctxt "@action:button"
  5358. #~ msgid "Keep"
  5359. #~ msgstr "Säilytä"
  5360. #~ msgctxt "@action:button"
  5361. #~ msgid "Create New Profile"
  5362. #~ msgstr "Luo uusi profiili"
  5363. #~ msgctxt "@label"
  5364. #~ msgid "Language:"
  5365. #~ msgstr "Kieli:"
  5366. #~ msgctxt "@label"
  5367. #~ msgid "The value is resolved from per-extruder values "
  5368. #~ msgstr "Arvo perustuu suulakepuristimien arvoihin "
  5369. #~ msgctxt "@info:tooltip"
  5370. #~ msgid "Change active post-processing scripts"
  5371. #~ msgstr "Muuta aktiivisia jälkikäsittelykomentosarjoja"
  5372. #~ msgctxt "name"
  5373. #~ msgid "Machine Settings action"
  5374. #~ msgstr "Laitteen asetukset -toiminto"
  5375. #~ msgctxt "@info:status"
  5376. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5377. #~ msgstr "Cura ei näytä kerroksia täsmällisesti, kun rautalankatulostus on käytössä"
  5378. #~ msgctxt "@label"
  5379. #~ msgid "Pre-sliced file {0}"
  5380. #~ msgstr "Esiviipaloitu tiedosto {0}"
  5381. #~ msgctxt "@action:button"
  5382. #~ msgid "Accept"
  5383. #~ msgstr "Hyväksy"
  5384. #~ msgctxt "@action:button"
  5385. #~ msgid "Decline"
  5386. #~ msgstr "Hylkää"
  5387. #~ msgctxt "@title:window"
  5388. #~ msgid "About Cura"
  5389. #~ msgstr "Tietoja Curasta"
  5390. #~ msgctxt "@item:inmenu"
  5391. #~ msgid "Flatten active settings"
  5392. #~ msgstr "Aktivoitujen asetusten tasoitus"
  5393. #~ msgctxt "@info:status"
  5394. #~ msgid "Profile has been flattened & activated."
  5395. #~ msgstr "Profiili on tasoitettu ja aktivoitu."
  5396. #~ msgctxt "X3G Writer File Description"
  5397. #~ msgid "X3G File"
  5398. #~ msgstr "X3G-tiedosto"
  5399. #~ msgctxt "@action:button"
  5400. #~ msgid "Retry"
  5401. #~ msgstr "Yritä uudelleen"
  5402. #~ msgctxt "@action:ComboBox option"
  5403. #~ msgid "Update existing"
  5404. #~ msgstr "Päivitä nykyinen"
  5405. #~ msgctxt "@label"
  5406. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5407. #~ msgstr "Valitse tähän Ultimaker 2 -laitteeseen tehdyt päivitykset."
  5408. #~ msgctxt "@label"
  5409. #~ msgid "Olsson Block"
  5410. #~ msgstr "Olsson Block -lämmitysosa"
  5411. #~ msgctxt "@label"
  5412. #~ msgid "Layer Height"
  5413. #~ msgstr "Kerroksen korkeus"
  5414. #~ msgctxt "@title:settings"
  5415. #~ msgid "&Profile"
  5416. #~ msgstr "&Profiili"
  5417. #~ msgctxt "description"
  5418. #~ msgid "Dump the contents of all settings to a HTML file."
  5419. #~ msgstr "Vedosta kaikkien asetusten sisällöt HTML-tiedostoon."
  5420. #~ msgctxt "name"
  5421. #~ msgid "God Mode"
  5422. #~ msgstr "Jumala-tila"
  5423. #~ msgctxt "@info:status"
  5424. #~ msgid "Connected over the network."
  5425. #~ msgstr "Yhdistetty verkon kautta tulostimeen."
  5426. #~ msgctxt "@info:status"
  5427. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5428. #~ msgstr "Yhdistetty verkon kautta. Hyväksy tulostimen käyttöoikeuspyyntö."
  5429. #~ msgctxt "@info:status"
  5430. #~ msgid "Connected over the network. No access to control the printer."
  5431. #~ msgstr "Yhdistetty verkon kautta tulostimeen. Ei käyttöoikeutta tulostimen hallintaan."
  5432. #~ msgctxt "@info:status"
  5433. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5434. #~ msgstr "Tulostimen käyttöoikeutta pyydetty. Hyväksy tulostimen pyyntö"
  5435. #~ msgctxt "@info:tooltip"
  5436. #~ msgid "Re-send the access request"
  5437. #~ msgstr "Lähetä käyttöoikeuspyyntö uudelleen"
  5438. #~ msgctxt "@info:status"
  5439. #~ msgid "Access to the printer accepted"
  5440. #~ msgstr "Tulostimen käyttöoikeus hyväksytty"
  5441. #~ msgctxt "@info:status"
  5442. #~ msgid "No access to print with this printer. Unable to send print job."
  5443. #~ msgstr "Tällä tulostimella tulostukseen ei ole käyttöoikeutta. Tulostustyön lähetys ei onnistu."
  5444. #~ msgctxt "@action:button"
  5445. #~ msgid "Request Access"
  5446. #~ msgstr "Pyydä käyttöoikeutta"
  5447. #~ msgctxt "@info:tooltip"
  5448. #~ msgid "Send access request to the printer"
  5449. #~ msgstr "Lähetä tulostimen käyttöoikeuspyyntö"
  5450. #~ msgctxt "@window:title"
  5451. #~ msgid "Mismatched configuration"
  5452. #~ msgstr "Ristiriitainen määritys"
  5453. #~ msgctxt "@label"
  5454. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5455. #~ msgstr "Haluatko varmasti tulostaa valitulla määrityksellä?"
  5456. #~ msgctxt "@label"
  5457. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5458. #~ msgstr "Tulostimen ja Curan määrityksen tai kalibroinnin välillä on ristiriita. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille."
  5459. #~ msgctxt "@info:status"
  5460. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5461. #~ msgstr "Uusien töiden lähettäminen (tilapäisesti) estetty, edellistä tulostustyötä lähetetään vielä."
  5462. #~ msgctxt "@info:status"
  5463. #~ msgid "Sending data to printer"
  5464. #~ msgstr "Lähetetään tietoja tulostimeen"
  5465. #~ msgctxt "@info:title"
  5466. #~ msgid "Sending Data"
  5467. #~ msgstr "Lähetetään tietoja"
  5468. #~ msgctxt "@label"
  5469. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5470. #~ msgstr "Eri materiaali (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}"
  5471. #~ msgctxt "@window:title"
  5472. #~ msgid "Sync with your printer"
  5473. #~ msgstr "Synkronoi tulostimen kanssa"
  5474. #~ msgctxt "@label"
  5475. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5476. #~ msgstr "Haluatko käyttää nykyistä tulostimen määritystä Curassa?"
  5477. #~ msgctxt "@label"
  5478. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5479. #~ msgstr "Tulostimen PrintCoret tai materiaalit eivät vastaa tulostettavan projektin asetuksia. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille."
  5480. #~ msgctxt "@info:status"
  5481. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5482. #~ msgstr "{printer_name} on tulostanut työn '{job_name}'."
  5483. #~ msgctxt "@info:status"
  5484. #~ msgid "Print finished"
  5485. #~ msgstr "Tulosta valmis"
  5486. #~ msgctxt "@info:tooltip"
  5487. #~ msgid "Connect to a printer"
  5488. #~ msgstr "Yhdistä tulostimeen"
  5489. #~ msgctxt "name"
  5490. #~ msgid "UM3 Network Connection"
  5491. #~ msgstr "UM3-verkkoyhteys"
  5492. #~ msgctxt "@label"
  5493. #~ msgid ""
  5494. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  5495. #~ "\n"
  5496. #~ "Select your printer from the list below:"
  5497. #~ msgstr ""
  5498. #~ "Tulosta suoraan tulostimeen verkon kautta yhdistämällä tulostin verkkoon verkkokaapelilla tai yhdistämällä tulostin Wi-Fi-verkkoon. Jos Curaa ei yhdistetä tulostimeen, GCode-tiedostot voidaan silti siirtää tulostimeen USB-aseman avulla.\n"
  5499. #~ "\n"
  5500. #~ "Valitse tulostin alla olevasta luettelosta:"
  5501. #~ msgctxt "@item:inmenu"
  5502. #~ msgid "Show Changelog"
  5503. #~ msgstr "Näytä muutosloki"
  5504. #~ msgctxt "@info:title"
  5505. #~ msgid "Collecting Data"
  5506. #~ msgstr "Kerätään tietoja"
  5507. #~ msgctxt "@title"
  5508. #~ msgid "Machine Settings"
  5509. #~ msgstr "Laitteen asetukset"
  5510. #~ msgctxt "@label"
  5511. #~ msgid "Printer Settings"
  5512. #~ msgstr "Tulostimen asetukset"
  5513. #~ msgctxt "@option:check"
  5514. #~ msgid "Origin at center"
  5515. #~ msgstr "Alkukohta keskellä"
  5516. #~ msgctxt "@option:check"
  5517. #~ msgid "Heated bed"
  5518. #~ msgstr "Lämmitettävä pöytä"
  5519. #~ msgctxt "@label"
  5520. #~ msgid "Printhead Settings"
  5521. #~ msgstr "Tulostuspään asetukset"
  5522. #~ msgctxt "@tooltip"
  5523. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5524. #~ msgstr "Etäisyys tulostuspään vasemmalta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan."
  5525. #~ msgctxt "@tooltip"
  5526. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5527. #~ msgstr "Etäisyys tulostuspään etupuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan."
  5528. #~ msgctxt "@tooltip"
  5529. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5530. #~ msgstr "Etäisyys tulostuspään oikealta puolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan."
  5531. #~ msgctxt "@tooltip"
  5532. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5533. #~ msgstr "Etäisyys tulostuspään takapuolelta suuttimen keskikohtaan. Käytetään estämään aiempien tulosteiden ja tulostuspään yhteentörmäyksiä, kun tulostetaan yksi kerrallaan."
  5534. #~ msgctxt "@label"
  5535. #~ msgid "Gantry height"
  5536. #~ msgstr "Korokkeen korkeus"
  5537. #~ msgctxt "@tooltip"
  5538. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5539. #~ msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero. Käytetään estämään aiempien tulosteiden ja korokkeen yhteentörmäyksiä, kun tulostetaan yksi kerrallaan."
  5540. #~ msgctxt "@label"
  5541. #~ msgid "Nozzle Settings"
  5542. #~ msgstr "Suutinasetukset"
  5543. #~ msgctxt "@tooltip"
  5544. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5545. #~ msgstr "Tulostimen tukema tulostuslangan nimellinen halkaisija. Materiaali ja/tai profiili korvaa tarkan halkaisijan."
  5546. #~ msgctxt "@label"
  5547. #~ msgid "Changelog"
  5548. #~ msgstr "Muutosloki"
  5549. #~ msgctxt "@alabel"
  5550. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5551. #~ msgstr "Anna verkon tulostimen IP-osoite tai isäntänimi."
  5552. #~ msgctxt "@info:tooltip"
  5553. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5554. #~ msgstr "Oletuksena valkoiset pikselit edustavat verkossa korkeita pisteitä ja mustat pikselit edustavat verkossa matalia pisteitä. Muuta asetus, jos haluat, että mustat pikselit edustavat verkossa korkeita pisteitä ja valkoiset pikselit edustavat verkossa matalia pisteitä."
  5555. #~ msgctxt "@title"
  5556. #~ msgid "Select Printer Upgrades"
  5557. #~ msgstr "Valitse tulostimen päivitykset"
  5558. #~ msgctxt "@label"
  5559. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5560. #~ msgstr "Valitse tukena käytettävä suulakepuristin. Näin mallin alle rakennetaan tukirakenteita estämään mallin painuminen tai tulostuminen ilmaan."
  5561. #~ msgctxt "@label:PrintjobStatus"
  5562. #~ msgid "Unable to Slice"
  5563. #~ msgstr "Viipalointi ei onnistu"
  5564. #~ msgctxt "@action:button"
  5565. #~ msgid "Add Printer"
  5566. #~ msgstr "Lisää tulostin"
  5567. #~ msgid "Modify G-Code"
  5568. #~ msgstr "Muokkaa GCode-arvoa"
  5569. #~ msgctxt "@info:status"
  5570. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5571. #~ msgstr "Ei viipaloitavaa, koska mikään malleista ei sovellu tulostustilavuuteen. Skaalaa tai pyöritä mallia, kunnes se on sopiva."
  5572. #~ msgctxt "@info:status"
  5573. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5574. #~ msgstr "Valittu materiaali ei sovellu käytettäväksi valitun laitteen tai kokoonpanon kanssa."
  5575. #~ msgctxt "@info:title"
  5576. #~ msgid "Incompatible Material"
  5577. #~ msgstr "Yhteensopimaton materiaali"
  5578. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5579. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5580. #~ msgstr "Profiilin tuonti epäonnistui tiedostosta <filename>{0}</filename>: <message>{1}</message>"
  5581. #~ msgctxt "@label:status"
  5582. #~ msgid "Preparing"
  5583. #~ msgstr "Valmistellaan"
  5584. #~ msgctxt "@label"
  5585. #~ msgid "Printing"
  5586. #~ msgstr "Tulostetaan"
  5587. #~ msgctxt "@action:button"
  5588. #~ msgid "Activate Configuration"
  5589. #~ msgstr "Aktivoi määritys"
  5590. #~ msgctxt "@info:tooltip"
  5591. #~ msgid "Load the configuration of the printer into Cura"
  5592. #~ msgstr "Lataa tulostimen määritys Curaan"
  5593. #~ msgctxt "@label"
  5594. #~ msgid "Show Travels"
  5595. #~ msgstr "Näytä siirtoliikkeet"
  5596. #~ msgctxt "@label"
  5597. #~ msgid "Show Helpers"
  5598. #~ msgstr "Näytä avustimet"
  5599. #~ msgctxt "@label"
  5600. #~ msgid "Show Shell"
  5601. #~ msgstr "Näytä kuori"
  5602. #~ msgctxt "@label"
  5603. #~ msgid "Show Infill"
  5604. #~ msgstr "Näytä täyttö"
  5605. #~ msgctxt "@label"
  5606. #~ msgid "Printer type:"
  5607. #~ msgstr "Tulostimen tyyppi:"
  5608. #~ msgctxt "@label"
  5609. #~ msgid "Connection:"
  5610. #~ msgstr "Yhteys:"
  5611. #~ msgctxt "@label"
  5612. #~ msgid "State:"
  5613. #~ msgstr "Tila:"
  5614. #~ msgctxt "@label:MonitorStatus"
  5615. #~ msgid "Waiting for a printjob"
  5616. #~ msgstr "Odotetaan tulostustyötä"
  5617. #~ msgctxt "@label:MonitorStatus"
  5618. #~ msgid "Waiting for someone to clear the build plate"
  5619. #~ msgstr "Odotetaan tulostusalustan tyhjennystä"
  5620. #~ msgctxt "@label:MonitorStatus"
  5621. #~ msgid "Aborting print..."
  5622. #~ msgstr "Keskeytetään tulostus..."
  5623. #~ msgctxt "@label"
  5624. #~ msgid "Protected profiles"
  5625. #~ msgstr "Suojatut profiilit"
  5626. #~ msgctxt "@label"
  5627. #~ msgid "Printer Name:"
  5628. #~ msgstr "Tulostimen nimi:"
  5629. #~ msgctxt "@label"
  5630. #~ msgid "Profile:"
  5631. #~ msgstr "Profiili:"
  5632. #~ msgctxt "@label:textbox"
  5633. #~ msgid "Search..."
  5634. #~ msgstr "Haku..."
  5635. #~ msgctxt "@label:listbox"
  5636. #~ msgid "Print Setup"
  5637. #~ msgstr "Tulostuksen asennus"
  5638. #~ msgctxt "@label:listbox"
  5639. #~ msgid ""
  5640. #~ "Print Setup disabled\n"
  5641. #~ "G-code files cannot be modified"
  5642. #~ msgstr ""
  5643. #~ "Tulostuksen asennus ei käytössä\n"
  5644. #~ "G-code-tiedostoja ei voida muokata"
  5645. #~ msgctxt "@tooltip"
  5646. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5647. #~ msgstr "<b>Suositeltu tulostuksen asennus</b><br/><br/>Tulosta valitun tulostimen, materiaalin ja laadun suositelluilla asetuksilla."
  5648. #~ msgctxt "@tooltip"
  5649. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5650. #~ msgstr "<b>Mukautettu tulostuksen asennus</b><br/><br/>Tulosta hallitsemalla täysin kaikkia viipalointiprosessin vaiheita."
  5651. #~ msgctxt "@action:inmenu menubar:help"
  5652. #~ msgid "Show Engine &Log..."
  5653. #~ msgstr "Näytä moottorin l&oki"
  5654. #~ msgctxt "@label:PrintjobStatus"
  5655. #~ msgid "Please load a 3D model"
  5656. #~ msgstr "Lataa 3D-malli"
  5657. #~ msgctxt "@label:PrintjobStatus"
  5658. #~ msgid "Ready to slice"
  5659. #~ msgstr "Valmiina viipaloimaan"
  5660. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5661. #~ msgid "Ready to %1"
  5662. #~ msgstr "Valmis: %1"
  5663. #~ msgctxt "@label:PrintjobStatus"
  5664. #~ msgid "Slicing unavailable"
  5665. #~ msgstr "Viipalointi ei käytettävissä"
  5666. #~ msgctxt "@label:Printjob"
  5667. #~ msgid "Prepare"
  5668. #~ msgstr "Valmistele"
  5669. #~ msgctxt "@label:Printjob"
  5670. #~ msgid "Cancel"
  5671. #~ msgstr "Peruuta"
  5672. #~ msgctxt "@info:tooltip"
  5673. #~ msgid "Select the active output device"
  5674. #~ msgstr "Valitse aktiivinen tulostusväline"
  5675. #~ msgctxt "@title:menu"
  5676. #~ msgid "&View"
  5677. #~ msgstr "&Näytä"
  5678. #~ msgctxt "@title:menu"
  5679. #~ msgid "&Settings"
  5680. #~ msgstr "&Asetukset"
  5681. #~ msgctxt "@action:button"
  5682. #~ msgid "Open File"
  5683. #~ msgstr "Avaa tiedosto"
  5684. #~ msgctxt "@label"
  5685. #~ msgid "Print Speed"
  5686. #~ msgstr "Tulostusnopeus"
  5687. #~ msgctxt "@label"
  5688. #~ msgid "Slower"
  5689. #~ msgstr "Hitaammin"
  5690. #~ msgctxt "@label"
  5691. #~ msgid "Faster"
  5692. #~ msgstr "Nopeammin"
  5693. #~ msgctxt "@label"
  5694. #~ msgid "Enable gradual"
  5695. #~ msgstr "Ota asteittainen käyttöön"
  5696. #~ msgctxt "@label"
  5697. #~ msgid "Generate Support"
  5698. #~ msgstr "Muodosta tuki"
  5699. #~ msgctxt "@label"
  5700. #~ msgid "Build Plate Adhesion"
  5701. #~ msgstr "Alustan tarttuvuus"
  5702. #~ msgctxt "@label"
  5703. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5704. #~ msgstr "Tarvitsetko apua tulosteiden parantamiseen?<br>Lue <a href='%1'>Ultimakerin vianmääritysoppaat</a>"
  5705. #~ msgctxt "@title:window"
  5706. #~ msgid "Engine Log"
  5707. #~ msgstr "Moottorin loki"
  5708. #~ msgctxt "@tooltip"
  5709. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5710. #~ msgstr "Napsauta ja tarkista materiaalin yhteensopivuus sivustolla Ultimaker.com."
  5711. #~ msgctxt "description"
  5712. #~ msgid "Shows changes since latest checked version."
  5713. #~ msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset."
  5714. #~ msgctxt "name"
  5715. #~ msgid "Changelog"
  5716. #~ msgstr "Muutosloki"
  5717. #~ msgctxt "description"
  5718. #~ msgid "Create a flattend quality changes profile."
  5719. #~ msgstr "Luo tasoitettu laatumuutosten profiili."
  5720. #~ msgctxt "name"
  5721. #~ msgid "Profile flatener"
  5722. #~ msgstr "Profiilin tasoitus"
  5723. #~ msgctxt "@action"
  5724. #~ msgid "Upgrade Firmware"
  5725. #~ msgstr "Päivitä laiteohjelmisto"
  5726. #~ msgctxt "@title"
  5727. #~ msgid "Upgrade Firmware"
  5728. #~ msgstr "Laiteohjelmiston päivitys"
  5729. #~ msgctxt "@action:button"
  5730. #~ msgid "Print with Doodle3D WiFi-Box"
  5731. #~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla"
  5732. #~ msgctxt "@properties:tooltip"
  5733. #~ msgid "Print with Doodle3D WiFi-Box"
  5734. #~ msgstr "Tulostus Doodle3D WiFi-Boxin avulla"
  5735. #~ msgctxt "@info:status"
  5736. #~ msgid "Connecting to Doodle3D Connect"
  5737. #~ msgstr "Yhteyden muodostaminen Doodle3D Connectiin"
  5738. #~ msgctxt "@info:status"
  5739. #~ msgid "Sending data to Doodle3D Connect"
  5740. #~ msgstr "Lähetetään tietoja Doodle3D Connectiin"
  5741. #~ msgctxt "@info:status"
  5742. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5743. #~ msgstr "Tietojen lähetys Doodle3D Connectiin ei onnistu. Onko toinen työ yhä aktiivinen?"
  5744. #~ msgctxt "@info:status"
  5745. #~ msgid "Storing data on Doodle3D Connect"
  5746. #~ msgstr "Tietoja tallennetaan Doodle3D Connectiin"
  5747. #~ msgctxt "@info:status"
  5748. #~ msgid "File sent to Doodle3D Connect"
  5749. #~ msgstr "Tiedosto lähetetty Doodle3D Connectiin"
  5750. #~ msgctxt "@info:tooltip"
  5751. #~ msgid "Open the Doodle3D Connect web interface"
  5752. #~ msgstr "Avaa Doodle3D Connect -verkkoliittymä"
  5753. #~ msgctxt "@label"
  5754. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5755. #~ msgstr "Tätä tulostinta ei ole määritetty Ultimaker 3 -tulostinryhmän isännäksi."
  5756. #~ msgctxt "@label"
  5757. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5758. #~ msgstr "Tämä tulostin on {count} tulostimen Ultimaker 3 -ryhmän isäntä."
  5759. #~ msgctxt "@label: arg 1 is group name"
  5760. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5761. #~ msgstr "%1 ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi"
  5762. #~ msgctxt "@action:button"
  5763. #~ msgid "View print jobs"
  5764. #~ msgstr "Näytä tulostustyöt"
  5765. #~ msgctxt "@label:status"
  5766. #~ msgid "Available"
  5767. #~ msgstr "Saatavilla"
  5768. #~ msgctxt "@label:status"
  5769. #~ msgid "Reserved"
  5770. #~ msgstr "Varattu"
  5771. #~ msgctxt "@label"
  5772. #~ msgid "Preparing to print"
  5773. #~ msgstr "Valmistellaan tulostusta"
  5774. #~ msgctxt "@label:status"
  5775. #~ msgid "Print aborted"
  5776. #~ msgstr "Tulostus keskeytetty"
  5777. #~ msgctxt "@label"
  5778. #~ msgid "Not accepting print jobs"
  5779. #~ msgstr "Ei hyväksy tulostustöitä"
  5780. #~ msgctxt "@label"
  5781. #~ msgid "Finishes at: "
  5782. #~ msgstr "Päättyy: "
  5783. #~ msgctxt "@label"
  5784. #~ msgid "Clear build plate"
  5785. #~ msgstr "Tyhjennä alusta"
  5786. #~ msgctxt "@label"
  5787. #~ msgid "Waiting for configuration change"
  5788. #~ msgstr "Odotetaan määrityksen muutosta"
  5789. #~ msgctxt "@title"
  5790. #~ msgid "Print jobs"
  5791. #~ msgstr "Tulostustyöt"
  5792. #~ msgctxt "@label:title"
  5793. #~ msgid "Printers"
  5794. #~ msgstr "Tulostimet"
  5795. #~ msgctxt "@action:button"
  5796. #~ msgid "View printers"
  5797. #~ msgstr "Näytä tulostimet"
  5798. #~ msgctxt "@label:"
  5799. #~ msgid "Pause"
  5800. #~ msgstr "Keskeytä"
  5801. #~ msgctxt "@label:"
  5802. #~ msgid "Resume"
  5803. #~ msgstr "Jatka"
  5804. #~ msgctxt "@label:"
  5805. #~ msgid "Abort Print"
  5806. #~ msgstr "Keskeytä tulostus"
  5807. #~ msgctxt "@option:openProject"
  5808. #~ msgid "Always ask"
  5809. #~ msgstr "Kysy aina"
  5810. #~ msgctxt "@label"
  5811. #~ msgid "Override Profile"
  5812. #~ msgstr "Kumoa profiili"
  5813. #~ msgctxt "@action:inmenu menubar:file"
  5814. #~ msgid "&Save Selection to File"
  5815. #~ msgstr "&Tallenna valinta tiedostoon"
  5816. #~ msgctxt "@title:menu menubar:file"
  5817. #~ msgid "Save &As..."
  5818. #~ msgstr "Tallenna &nimellä..."
  5819. #~ msgctxt "description"
  5820. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5821. #~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin."
  5822. #~ msgctxt "name"
  5823. #~ msgid "Doodle3D WiFi-Box"
  5824. #~ msgstr "Doodle3D WiFi-Box"
  5825. #~ msgctxt "@item:inlistbox"
  5826. #~ msgid "SolidWorks part file"
  5827. #~ msgstr "SolidWorks-osatiedosto"
  5828. #~ msgctxt "@item:inlistbox"
  5829. #~ msgid "SolidWorks assembly file"
  5830. #~ msgstr "SolidWorks-kokoonpanotiedosto"
  5831. #~ msgid "Configure"
  5832. #~ msgstr "Määritä"
  5833. #~ msgctxt "@info:status"
  5834. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  5835. #~ msgstr "Lisäosan tunnuksen hankkiminen epäonnistui tiedostosta <filename>{0}</filename>"
  5836. #~ msgctxt "@info:tile"
  5837. #~ msgid "Warning"
  5838. #~ msgstr "Varoitus"
  5839. #~ msgctxt "@window:title"
  5840. #~ msgid "Plugin browser"
  5841. #~ msgstr "Lisäosien selain"
  5842. #~ msgctxt "@label"
  5843. #~ msgid "Ultimaker 3"
  5844. #~ msgstr "Ultimaker 3"
  5845. #~ msgctxt "@label"
  5846. #~ msgid "Ultimaker 3 Extended"
  5847. #~ msgstr "Ultimaker 3 Extended"
  5848. #~ msgctxt "@action:menu"
  5849. #~ msgid "Browse plugins..."
  5850. #~ msgstr "Selaa lisäosia..."
  5851. #~ msgctxt "@title:menu menubar:toplevel"
  5852. #~ msgid "P&lugins"
  5853. #~ msgstr "&Lisäosat"
  5854. #~ msgctxt "@window:title"
  5855. #~ msgid "Install Plugin"
  5856. #~ msgstr "Asenna laajennus"
  5857. #~ msgctxt "description"
  5858. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5859. #~ msgstr "Toiminnon avulla voidaan vaihtaa laitteen asetuksia (esim. tulostustilavuus, suuttimen koko yms.)"
  5860. #~ msgctxt "description"
  5861. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5862. #~ msgstr "Ultimaker 3 -tulostimien verkkoyhteyksien hallinta"
  5863. #~ msgctxt "name"
  5864. #~ msgid "SolidWorks Integration"
  5865. #~ msgstr "SolidWorks-integrointi"
  5866. #~ msgctxt "description"
  5867. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5868. #~ msgstr "Tallentaa automaattisesti lisäasetukset, koneet ja profiilit muutosten jälkeen."
  5869. #~ msgctxt "name"
  5870. #~ msgid "Auto Save"
  5871. #~ msgstr "Automaattitallennus"
  5872. #~ msgctxt "description"
  5873. #~ msgid "Find, manage and install new plugins."
  5874. #~ msgstr "Etsi, hallinnoi ja asenna uusia laajennuksia."
  5875. #~ msgctxt "name"
  5876. #~ msgid "Plugin Browser"
  5877. #~ msgstr "Lisäosien selain"
  5878. #~ msgctxt "description"
  5879. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5880. #~ msgstr "Ultimaker-laitteiden toimintojen käyttö (esim. pöydän tasaaminen, päivitysten valinta yms.)"
  5881. #~ msgctxt "@item:inlistbox"
  5882. #~ msgid "GCode File"
  5883. #~ msgstr "GCode-tiedosto"
  5884. #~ msgctxt "@info:status"
  5885. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  5886. #~ msgstr "Uuden työn aloittaminen ei onnistu, koska tulostin on varattu tai sitä ei ole yhdistetty."
  5887. #~ msgctxt "@info:status"
  5888. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  5889. #~ msgstr "Tämä tulostin ei tue USB-tulostusta, koska se käyttää UltiGCode-tyyppiä."
  5890. #~ msgctxt "@info:title"
  5891. #~ msgid "USB Printing"
  5892. #~ msgstr "USB-tulostus"
  5893. #~ msgctxt "@info:status"
  5894. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  5895. #~ msgstr "Uuden työn aloittaminen ei onnistu, koska tulostin ei tue USB-tulostusta."
  5896. #~ msgctxt "@info"
  5897. #~ msgid "Unable to update firmware because there are no printers connected."
  5898. #~ msgstr "Laiteohjelmistoa ei voida päivittää, koska yhtään tulostinta ei ole yhdistetty."
  5899. #~ msgctxt "@info"
  5900. #~ msgid "Could not find firmware required for the printer at %s."
  5901. #~ msgstr "Tulostimelle ei löydetty laiteohjelmistoa (%s)."
  5902. #~ msgctxt "@info:title"
  5903. #~ msgid "Printer Firmware"
  5904. #~ msgstr "Tulostimen laiteohjelmisto"
  5905. #~ msgctxt "@info:title"
  5906. #~ msgid "Connection status"
  5907. #~ msgstr "Yhteyden tila"
  5908. #~ msgctxt "@info:title"
  5909. #~ msgid "Connection Status"
  5910. #~ msgstr "Yhteyden tila"
  5911. #~ msgctxt "@info:status"
  5912. #~ msgid "Access request was denied on the printer."
  5913. #~ msgstr "Tulostimen käyttöoikeuspyyntö hylättiin."
  5914. #~ msgctxt "@info:status"
  5915. #~ msgid "Access request failed due to a timeout."
  5916. #~ msgstr "Käyttöoikeuspyyntö epäonnistui aikakatkaisun vuoksi."
  5917. #~ msgctxt "@info:status"
  5918. #~ msgid "The connection with the network was lost."
  5919. #~ msgstr "Yhteys verkkoon menetettiin."
  5920. #~ msgctxt "@info:status"
  5921. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  5922. #~ msgstr "Yhteys tulostimeen menetettiin. Tarkista, onko tulostin yhdistetty."
  5923. #~ msgctxt "@info:status"
  5924. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  5925. #~ msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Nykyinen tulostimen tila on %s."
  5926. #~ msgctxt "@info:title"
  5927. #~ msgid "Printer Status"
  5928. #~ msgstr "Tulostimen tila"
  5929. #~ msgctxt "@info:status"
  5930. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  5931. #~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. PrintCorea ei ole ladattu aukkoon {0}"
  5932. #~ msgctxt "@info:status"
  5933. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  5934. #~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. Materiaalia ei ole ladattu aukkoon {0}"
  5935. #~ msgctxt "@label"
  5936. #~ msgid "Not enough material for spool {0}."
  5937. #~ msgstr "Kelalle {0} ei ole tarpeeksi materiaalia."
  5938. #~ msgctxt "@label"
  5939. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5940. #~ msgstr "Eri PrintCore (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}"
  5941. #~ msgctxt "@label"
  5942. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5943. #~ msgstr "Print Core -tulostusydintä {0} ei ole kalibroitu oikein. Tulostimen XY-kalibrointi tulee suorittaa."
  5944. #~ msgctxt "@info:status"
  5945. #~ msgid "Unable to send data to printer. Is another job still active?"
  5946. #~ msgstr "Tietojen lähetys tulostimeen ei onnistu. Onko toinen työ yhä aktiivinen?"
  5947. #~ msgctxt "@label:MonitorStatus"
  5948. #~ msgid "Print aborted. Please check the printer"
  5949. #~ msgstr "Tulostus keskeytetty. Tarkista tulostin"
  5950. #~ msgctxt "@label:MonitorStatus"
  5951. #~ msgid "Pausing print..."
  5952. #~ msgstr "Tulostus pysäytetään..."
  5953. #~ msgctxt "@label:MonitorStatus"
  5954. #~ msgid "Resuming print..."
  5955. #~ msgstr "Tulostusta jatketaan..."
  5956. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  5957. #~ msgstr "Tätä tulostinta ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi."
  5958. #~ msgctxt "Count is number of printers."
  5959. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  5960. #~ msgstr "Tämä tulostin on {count} tulostimen yhdistetyn Ultimaker 3 -ryhmän isäntä."
  5961. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  5962. #~ msgstr "{printer_name} on tulostanut työn '{job_name}'. Nouda työ ja vahvista alustan tyhjennys."
  5963. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  5964. #~ msgstr "{printer_name} on varattu työn {job_name} tulostamiseen. Muuta tulostimen määritys vastaamaan työtä, jotta tulostus alkaa."
  5965. #~ msgctxt "@info:status"
  5966. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  5967. #~ msgstr "Uuden tulostustyön lähetys ei onnistu: tätä 3D-tulostinta ei ole (vielä) määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi."
  5968. #~ msgctxt "@info:status"
  5969. #~ msgid "Unable to send print job to group {cluster_name}."
  5970. #~ msgstr "Tulostustyön lähetys ryhmään {cluster_name} ei onnistu."
  5971. #~ msgctxt "@info:status"
  5972. #~ msgid "Sent {file_name} to group {cluster_name}."
  5973. #~ msgstr "Lähetettiin {file_name} ryhmään {cluster_name}."
  5974. #~ msgctxt "@action:button"
  5975. #~ msgid "Show print jobs"
  5976. #~ msgstr "Näytä tulostustyöt"
  5977. #~ msgctxt "@info:tooltip"
  5978. #~ msgid "Opens the print jobs interface in your browser."
  5979. #~ msgstr "Avaa tulostustöiden käyttöliittymän selaimessa."
  5980. #~ msgctxt "@info:progress"
  5981. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  5982. #~ msgstr "Lähetetään tiedostoa <filename>{file_name}</filename> ryhmään {cluster_name}"
  5983. #~ msgctxt "@item:material"
  5984. #~ msgid "No material loaded"
  5985. #~ msgstr "Ei ladattua materiaalia"
  5986. #~ msgctxt "@item:material"
  5987. #~ msgid "Unknown material"
  5988. #~ msgstr "Tuntematon materiaali"
  5989. #~ msgctxt "@info:status Has a cancel button next to it."
  5990. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  5991. #~ msgstr "Valitun materiaalin halkaisijan vuoksi materiaali ei sovellu käytettäväksi nykyisen tulostimen kanssa."
  5992. #~ msgctxt "@action:button"
  5993. #~ msgid "Undo"
  5994. #~ msgstr "Kumoa"
  5995. #~ msgctxt "@action"
  5996. #~ msgid "Undo changing the material diameter."
  5997. #~ msgstr "Kumoa materiaalin halkaisijan muutokset."
  5998. #~ msgctxt "@label"
  5999. #~ msgid "Gcode flavor"
  6000. #~ msgstr "GCode-tyyppi"
  6001. #~ msgctxt "@label"
  6002. #~ msgid "Start Gcode"
  6003. #~ msgstr "Aloita GCode"
  6004. #~ msgctxt "@tooltip"
  6005. #~ msgid "Gcode commands to be executed at the very start."
  6006. #~ msgstr "GCode-komennot, jotka suoritetaan aivan alussa."
  6007. #~ msgctxt "@label"
  6008. #~ msgid "End Gcode"
  6009. #~ msgstr "Lopeta GCode"
  6010. #~ msgctxt "@tooltip"
  6011. #~ msgid "Gcode commands to be executed at the very end."
  6012. #~ msgstr "GCode-komennot, jotka suoritetaan aivan lopussa."
  6013. #~ msgctxt "@label"
  6014. #~ msgid "Extruder Start Gcode"
  6015. #~ msgstr "Suulake – aloita Gcode"
  6016. #~ msgctxt "@label"
  6017. #~ msgid "Extruder End Gcode"
  6018. #~ msgstr "Suulake – lopeta Gcode"
  6019. #~ msgctxt "@label"
  6020. #~ msgid "Starting firmware update, this may take a while."
  6021. #~ msgstr "Käynnistetään laiteohjelmiston päivitystä, mikä voi kestää hetken."
  6022. #~ msgctxt "@label"
  6023. #~ msgid "Unknown error code: %1"
  6024. #~ msgstr "Tuntemattoman virheen koodi: %1"
  6025. #~ msgctxt "@title:window"
  6026. #~ msgid "Find & Update plugins"
  6027. #~ msgstr "Etsi ja päivitä laajennuksia"
  6028. #~ msgctxt "@label"
  6029. #~ msgid "Here you can find a list of Third Party plugins."
  6030. #~ msgstr "Tässä on luettelo muiden valmistajien laajennuksista."
  6031. #~ msgctxt "@action:button"
  6032. #~ msgid "Upgrade"
  6033. #~ msgstr "Päivitä"
  6034. #~ msgctxt "@action:button"
  6035. #~ msgid "Download"
  6036. #~ msgstr "Lataa"
  6037. #~ msgctxt "@info:tooltip"
  6038. #~ msgid "Show caution message in gcode reader."
  6039. #~ msgstr "Näytä varoitusviesti gcode-lukijassa."
  6040. #~ msgctxt "@option:check"
  6041. #~ msgid "Caution message in gcode reader"
  6042. #~ msgstr "Gcode-lukijan varoitusviesti"
  6043. #~ msgctxt "@window:title"
  6044. #~ msgid "Import Profile"
  6045. #~ msgstr "Profiilin tuonti"
  6046. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6047. #~ msgid "Printer: %1, %2: %3"
  6048. #~ msgstr "Tulostin: %1, %2: %3"
  6049. #~ msgctxt "@action:label %1 is printer name"
  6050. #~ msgid "Printer: %1"
  6051. #~ msgstr "Tulostin: %1"
  6052. #~ msgctxt "@label"
  6053. #~ msgid "GCode generator"
  6054. #~ msgstr "GCode-generaattori"
  6055. #~ msgctxt "@action:menu"
  6056. #~ msgid "Configure setting visiblity..."
  6057. #~ msgstr "Määritä asetusten näkyvyys..."
  6058. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6059. #~ msgid "Automatic: %1"
  6060. #~ msgstr "Automaattinen: %1"
  6061. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6062. #~ msgid "Automatic: %1"
  6063. #~ msgstr "Automaattinen: %1"
  6064. #~ msgctxt "@info:status"
  6065. #~ msgid "No printer connected"
  6066. #~ msgstr "Ei tulostinta yhdistettynä"
  6067. #~ msgctxt "@tooltip"
  6068. #~ msgid "The current temperature of this extruder."
  6069. #~ msgstr "Tämän suulakkeen nykyinen lämpötila."
  6070. #~ msgctxt "@action:menu"
  6071. #~ msgid "Installed plugins..."
  6072. #~ msgstr "Asennetut lisäoset..."
  6073. #~ msgctxt "@label"
  6074. #~ msgid "Support Extruder"
  6075. #~ msgstr "Tuen suulake"
  6076. #~ msgctxt "description"
  6077. #~ msgid "Writes GCode to a file."
  6078. #~ msgstr "Kirjoittaa GCodea tiedostoon."
  6079. #~ msgctxt "name"
  6080. #~ msgid "GCode Writer"
  6081. #~ msgstr "GCode-kirjoitin"
  6082. #~ msgctxt "name"
  6083. #~ msgid "GCode Profile Reader"
  6084. #~ msgstr "GCode-profiilin lukija"
  6085. #~ msgctxt "@info:status"
  6086. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6087. #~ msgstr "SolidWorks-tiedostoa avattaessa ilmeni virheitä! Tarkista, voiko tiedoston avata SolidWorks-ohjelmistossa ilman ongelmia."
  6088. #~ msgctxt "@info:status"
  6089. #~ msgid "Error while starting %s!"
  6090. #~ msgstr "%s:n käynnistyksen aikana ilmeni virhe!"
  6091. #~ msgctxt "@info"
  6092. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6093. #~ msgstr "Cura kerää anonyymejä viipalointiin liittyviä tilastotietoja. Tämän voi poistaa käytöstä asetuksien kautta."
  6094. #~ msgctxt "@action:button"
  6095. #~ msgid "Dismiss"
  6096. #~ msgstr "Ohita"
  6097. #~ msgctxt "@label"
  6098. #~ msgid "Material diameter"
  6099. #~ msgstr "Materiaalin halkaisija"
  6100. #~ msgctxt "@title:window"
  6101. #~ msgid "Cura SolidWorks Plugin Configuration"
  6102. #~ msgstr "Cura SolidWorks -laajennuksen määritys"
  6103. #~ msgctxt "@action:label"
  6104. #~ msgid "Default quality of the exported STL:"
  6105. #~ msgstr "Viedyn STL:n oletuslaatu:"
  6106. #~ msgctxt "@option:curaSolidworksStlQuality"
  6107. #~ msgid "Always ask"
  6108. #~ msgstr "Kysy aina"
  6109. #~ msgctxt "@option:curaSolidworksStlQuality"
  6110. #~ msgid "Always use Fine quality"
  6111. #~ msgstr "Käytä aina hienoa laatua"
  6112. #~ msgctxt "@option:curaSolidworksStlQuality"
  6113. #~ msgid "Always use Coarse quality"
  6114. #~ msgstr "Käytä aina karkeaa laatua"
  6115. #~ msgctxt "@title:window"
  6116. #~ msgid "Import SolidWorks File as STL..."
  6117. #~ msgstr "Tuo SolidWorks-tiedosto STL-muodossa..."
  6118. #~ msgctxt "@info:tooltip"
  6119. #~ msgid "Quality of the Exported STL"
  6120. #~ msgstr "Viedyn STL:n laatu"
  6121. #~ msgctxt "@action:label"
  6122. #~ msgid "Quality"
  6123. #~ msgstr "Laatu"
  6124. #~ msgctxt "@option:curaSolidworksStlQuality"
  6125. #~ msgid "Coarse"
  6126. #~ msgstr "Karkea"
  6127. #~ msgctxt "@option:curaSolidworksStlQuality"
  6128. #~ msgid "Fine"
  6129. #~ msgstr "Hieno"
  6130. #~ msgctxt "@label"
  6131. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6132. #~ msgstr "Tämä asetus koskee aina kaikkia suulakepuristimia. Jos se vaihdetaan tässä, kaikkien suulakepuristimien arvo muuttuu"
  6133. #~ msgctxt "@title:menu menubar:file"
  6134. #~ msgid "Save project"
  6135. #~ msgstr "Tallenna projekti"
  6136. #~ msgctxt "@title:tab"
  6137. #~ msgid "Prepare"
  6138. #~ msgstr "Valmistele"
  6139. #~ msgctxt "@title:tab"
  6140. #~ msgid "Monitor"
  6141. #~ msgstr "Valvo"
  6142. #~ msgctxt "description"
  6143. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6144. #~ msgstr "Mahdollistaa tiettyjen tiedostojen avaamisen SolidWorks-ohjelmiston kautta. Tämän jälkeen tiedostot muunnetaan ja ladataan Curaan."
  6145. #~ msgctxt "@label:status"
  6146. #~ msgid "Blocked"
  6147. #~ msgstr "Tukossa"
  6148. #~ msgctxt "@label:status"
  6149. #~ msgid "Can't start print"
  6150. #~ msgstr "Tulostus ei käynnisty"
  6151. #~ msgctxt "@action:button"
  6152. #~ msgid "Open Connect.."
  6153. #~ msgstr "Avaa Connect..."
  6154. #~ msgctxt "@info:title"
  6155. #~ msgid "Print Details"
  6156. #~ msgstr "Tulostustiedot"
  6157. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6158. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6159. #~ msgstr "On suositeltavaa päivittää laiteohjelmisto säännöllisesti, jotta voidaan varmistaa, että laitteessa {machine_name} on viimeisimmät ominaisuudet. Tämä voidaan tehdä laitteessa {machine_name} (verkkoon yhdistettynä) tai USB:n kautta."
  6160. #~ msgctxt "@info:title"
  6161. #~ msgid "Layer View"
  6162. #~ msgstr "Kerrosnäkymä"
  6163. #~ msgctxt "@menuitem"
  6164. #~ msgid "Browse plugins"
  6165. #~ msgstr "Selaa lisäosia"
  6166. #~ msgctxt "@info:title"
  6167. #~ msgid "Export Details"
  6168. #~ msgstr "Viennin tiedot"
  6169. #~ msgctxt "@label"
  6170. #~ msgid ""
  6171. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6172. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6173. #~ " "
  6174. #~ msgstr ""
  6175. #~ "<p>Tapahtui vakava poikkeus, josta palautuminen ei onnistunut!</p>\n"
  6176. #~ " <p>Tee virheraportti alla olevien tietojen perusteella osoitteessa <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6177. #~ " "
  6178. #~ msgctxt "@action:button"
  6179. #~ msgid "Open Web Page"
  6180. #~ msgstr "Avaa verkkosivu"
  6181. #~ msgctxt "@action:button"
  6182. #~ msgid "Ok"
  6183. #~ msgstr "OK"
  6184. #~ msgctxt "@label"
  6185. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6186. #~ msgstr "Tätä tulostinta ei ole määritetty yhdistetyn Ultimaker 3 -tulostinryhmän isännäksi"
  6187. #~ msgctxt "@label"
  6188. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6189. #~ msgstr "Tämä tulostin on %1 tulostimen yhdistetyn Ultimaker 3 -ryhmän isäntä"
  6190. #~ msgctxt "@label"
  6191. #~ msgid "Completed on: "
  6192. #~ msgstr "Valmistunut: "
  6193. #~ msgctxt "@info:tooltip"
  6194. #~ msgid "Opens the print jobs page with your default web browser."
  6195. #~ msgstr "Avaa tulostöiden sivun oletusselaimessa."
  6196. #~ msgctxt "@label"
  6197. #~ msgid "PRINTER GROUP"
  6198. #~ msgstr "TULOSTINRYHMÄ"
  6199. #~ msgctxt "@action:warning"
  6200. #~ msgid "Loading a project will clear all models on the buildplate"
  6201. #~ msgstr "Projektin lataaminen poistaa kaikki alustalla olevat mallit"
  6202. #~ msgctxt "@label"
  6203. #~ msgid ""
  6204. #~ " plugin contains a license.\n"
  6205. #~ "You need to accept this license to install this plugin.\n"
  6206. #~ "Do you agree with the terms below?"
  6207. #~ msgstr ""
  6208. #~ " lisäosa sisältää lisenssin.\n"
  6209. #~ "Lisenssi on hyväksyttävä lisäosan asentamista varten.\n"
  6210. #~ "Hyväksytkö alla olevat ehdot?"
  6211. #~ msgctxt "@label"
  6212. #~ msgid "00h 00min"
  6213. #~ msgstr "00 h 00 min"
  6214. #~ msgctxt "@tooltip"
  6215. #~ msgid "<b>Time information</b>"
  6216. #~ msgstr "<b>Aikatiedot</b>"
  6217. #~ msgctxt "@description"
  6218. #~ msgid "Print time"
  6219. #~ msgstr "Tulostusaika"
  6220. #~ msgctxt "@label"
  6221. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6222. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6223. #~ msgctxt "@label"
  6224. #~ msgid "%1m / ~ %2g"
  6225. #~ msgstr "%1 m / ~ %2 g"
  6226. #~ msgctxt "@title:window"
  6227. #~ msgid "Cura"
  6228. #~ msgstr "Cura"
  6229. #~ msgctxt "@label"
  6230. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6231. #~ msgstr "<a href='%1'>Tarkista materiaalin yhteensopivuus</a>"
  6232. #~ msgctxt "name"
  6233. #~ msgid "UM3 Network Connection (Cluster)"
  6234. #~ msgstr "UM3-verkkoyhteys (klusteri)"
  6235. #~ msgctxt "description"
  6236. #~ msgid "Provides the Layer view."
  6237. #~ msgstr "Näyttää kerrosnäkymän."
  6238. #~ msgctxt "name"
  6239. #~ msgid "Layer View"
  6240. #~ msgstr "Kerrosnäkymä"
  6241. #~ msgctxt "@item:inlistbox"
  6242. #~ msgid "X-Ray"
  6243. #~ msgstr "Kerros"
  6244. #~ msgctxt "@label"
  6245. #~ msgid "Doodle3D"
  6246. #~ msgstr "Doodle3D"
  6247. #~ msgctxt "@info:whatsthis"
  6248. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6249. #~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne Wi-Fi-yhteyden kautta Doodle3D WiFi-Boxiin."
  6250. #~ msgctxt "@item:inmenu"
  6251. #~ msgid "Doodle3D printing"
  6252. #~ msgstr "Doodle3D-tulostus"
  6253. #~ msgctxt "@action:button"
  6254. #~ msgid "Print with Doodle3D"
  6255. #~ msgstr "Tulostus Doodle3D:n avulla"
  6256. #~ msgctxt "@info:tooltip"
  6257. #~ msgid "Print with "
  6258. #~ msgstr "Tulostus:"
  6259. #~ msgctxt "@title:menu"
  6260. #~ msgid "Doodle3D"
  6261. #~ msgstr "Doodle3D"
  6262. #~ msgctxt "@item:inlistbox"
  6263. #~ msgid "Enable Scan devices..."
  6264. #~ msgstr "Ota skannauslaitteet käyttöön..."
  6265. #~ msgctxt "@info:progress"
  6266. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6267. #~ msgstr "Tallennetaan siirrettävälle asemalle <filename>{0}</filename>"
  6268. #~ msgctxt "@info:status"
  6269. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6270. #~ msgstr "Ei voitu tallentaa tiedostoon <filename>{0}</filename>: <message>{1}</message>"
  6271. #~ msgctxt "@info:status"
  6272. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6273. #~ msgstr "Muista, että SolidWorks-tiedosto on avattava uudelleen manuaalisesti. Mallin lataaminen uudelleen ei toimi."
  6274. #~ msgctxt "@item:inlistbox"
  6275. #~ msgid "Layers"
  6276. #~ msgstr "Kerrokset"
  6277. #~ msgid "Browse plugins"
  6278. #~ msgstr "Selaa laajennuksia"
  6279. #~ msgctxt "@item:inmenu"
  6280. #~ msgid "Solid"
  6281. #~ msgstr "Kiinteä"
  6282. #~ msgctxt "@label"
  6283. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6284. #~ msgstr "Tiedosto <filename>{0}</filename> on jo olemassa. Haluatko varmasti kirjoittaa sen päälle?"
  6285. #~ msgctxt "@info:status"
  6286. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6287. #~ msgstr "Profiilin vienti epäonnistui tiedostoon <filename>{0}</filename>: <message>{1}</message>"
  6288. #~ msgctxt "@info:status"
  6289. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6290. #~ msgstr "Profiilin vienti epäonnistui tiedostoon <filename>{0}</filename>: Kirjoitin-lisäosa ilmoitti virheestä."
  6291. #~ msgctxt "@info:status"
  6292. #~ msgid "Exported profile to <filename>{0}</filename>"
  6293. #~ msgstr "Profiili viety tiedostoon <filename>{0}</filename>"
  6294. #~ msgctxt "@info:status"
  6295. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6296. #~ msgstr "Profiilin tuonti epäonnistui tiedostosta <filename>{0}</filename>: <message>{1}</message>"
  6297. #~ msgctxt "@title:window"
  6298. #~ msgid "Doodle3D Settings"
  6299. #~ msgstr "Doodle3D-asetukset"
  6300. #~ msgctxt "@title:window"
  6301. #~ msgid "Print to: %1"
  6302. #~ msgstr "Tulosta kohteeseen %1"
  6303. #~ msgctxt "@label"
  6304. #~ msgid "Extruder Temperature: %1/%2°C"
  6305. #~ msgstr "Suulakkeen lämpötila: %1/%2 °C"
  6306. #~ msgctxt "@label"
  6307. #~ msgid "Bed Temperature: %1/%2°C"
  6308. #~ msgstr "Pöydän lämpötila: %1/%2 °C"
  6309. #~ msgctxt "@label"
  6310. #~ msgid "%1"
  6311. #~ msgstr "%1"
  6312. #~ msgctxt "@label"
  6313. #~ msgid "View Mode: Layers"
  6314. #~ msgstr "Näyttötapa: Kerrokset"
  6315. #~ msgctxt "@info:status"
  6316. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6317. #~ msgstr "Materiaalin tuominen epäonnistui: <filename>%1</filename>: <message>%2</message>"
  6318. #~ msgctxt "@info:status"
  6319. #~ msgid "Successfully imported material <filename>%1</filename>"
  6320. #~ msgstr "Materiaalin tuominen onnistui: <filename>%1</filename>"
  6321. #~ msgctxt "@info:status"
  6322. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6323. #~ msgstr "Materiaalin vieminen epäonnistui kohteeseen <filename>%1</filename>: <message>%2</message>"
  6324. #~ msgctxt "@info:status"
  6325. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6326. #~ msgstr "Materiaalin vieminen onnistui kohteeseen <filename>%1</filename>"
  6327. #~ msgctxt "@label"
  6328. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6329. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6330. #~ msgctxt "@label"
  6331. #~ msgid "%1 m / ~ %2 g"
  6332. #~ msgstr "%1 m / ~ %2 g"
  6333. #~ msgctxt "@label"
  6334. #~ msgid "Hotend"
  6335. #~ msgstr "Kuuma pää"
  6336. #~ msgctxt "@action:button"
  6337. #~ msgid "View Mode"
  6338. #~ msgstr "Näyttötapa"
  6339. #~ msgctxt "@title:tab"
  6340. #~ msgid "Print"
  6341. #~ msgstr "Tulosta"
  6342. #~ msgctxt "@label"
  6343. #~ msgid "0%"
  6344. #~ msgstr "0 %"
  6345. #~ msgctxt "@label"
  6346. #~ msgid "Empty infill will leave your model hollow with low strength."
  6347. #~ msgstr "Ei täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi."
  6348. #~ msgctxt "@label"
  6349. #~ msgid "20%"
  6350. #~ msgstr "20 %"
  6351. #~ msgctxt "@label"
  6352. #~ msgid "Light (20%) infill will give your model an average strength."
  6353. #~ msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden."
  6354. #~ msgctxt "@label"
  6355. #~ msgid "50%"
  6356. #~ msgstr "50 %"
  6357. #~ msgctxt "@label"
  6358. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6359. #~ msgstr "Tiheä (50 %) täyttö antaa mallille keskimääräistä paremman lujuuden."
  6360. #~ msgctxt "@label"
  6361. #~ msgid "100%"
  6362. #~ msgstr "100 %"
  6363. #~ msgctxt "@label"
  6364. #~ msgid "Solid (100%) infill will make your model completely solid."
  6365. #~ msgstr "Kiinteä (100 %) täyttö tekee mallista täysin umpinaisen."
  6366. #~ msgctxt "@label"
  6367. #~ msgid "Gradual"
  6368. #~ msgstr "Asteittainen"
  6369. #~ msgctxt "description"
  6370. #~ msgid "Provides support for writing X3G files"
  6371. #~ msgstr "Tukee X3G-tiedostojen kirjoittamista."
  6372. #~ msgctxt "name"
  6373. #~ msgid "X3G Writer"
  6374. #~ msgstr "X3G-kirjoitin"
  6375. #~ msgctxt "@label"
  6376. #~ msgid "Machine Settings action"
  6377. #~ msgstr "Toiminto Laitteen asetukset"
  6378. #~ msgctxt "@info:whatsthis"
  6379. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6380. #~ msgstr "Toiminnon avulla voidaan vaihtaa laitteen asetuksia (esim. tulostustilavuus, suuttimen koko yms.)"
  6381. #~ msgctxt "@label"
  6382. #~ msgid "X-Ray View"
  6383. #~ msgstr "Kerrosnäkymä"
  6384. #~ msgctxt "@info:whatsthis"
  6385. #~ msgid "Provides the X-Ray view."
  6386. #~ msgstr "Näyttää kerrosnäkymän."
  6387. #~ msgctxt "@label"
  6388. #~ msgid "X3D Reader"
  6389. #~ msgstr "X3D-lukija"
  6390. #~ msgctxt "@info:whatsthis"
  6391. #~ msgid "Provides support for reading X3D files."
  6392. #~ msgstr "Tukee X3D-tiedostojen lukemista."
  6393. #~ msgctxt "@label"
  6394. #~ msgid "GCode Writer"
  6395. #~ msgstr "GCode-kirjoitin"
  6396. #~ msgctxt "@info:whatsthis"
  6397. #~ msgid "Writes GCode to a file."
  6398. #~ msgstr "Kirjoittaa GCodea tiedostoon."
  6399. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6400. #~ msgid "Print with Doodle3D"
  6401. #~ msgstr "Tulostus Doodle3D:n avulla"
  6402. #~ msgctxt "@info:whatsthis"
  6403. #~ msgid "Shows changes since latest checked version."
  6404. #~ msgstr "Näyttää viimeisimmän tarkistetun version jälkeen tapahtuneet muutokset."
  6405. #~ msgctxt "@label"
  6406. #~ msgid "Profile flatener"
  6407. #~ msgstr "Profiilin tasoitus"
  6408. #~ msgctxt "@info:whatsthis"
  6409. #~ msgid "Create a flattend quality changes profile."
  6410. #~ msgstr "Luo tasoitettu laatumuutosten profiili."
  6411. #~ msgctxt "@label"
  6412. #~ msgid "USB printing"
  6413. #~ msgstr "USB-tulostus"
  6414. #~ msgctxt "@info:whatsthis"
  6415. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6416. #~ msgstr "Hyväksyy GCode-määrittelyt ja lähettää ne tulostimeen. Lisäosa voi myös päivittää laiteohjelmiston."
  6417. #~ msgctxt "X3G Writer Plugin Description"
  6418. #~ msgid "Writes X3G to a file"
  6419. #~ msgstr "Kirjoittaa X3G:n tiedostoon"
  6420. #~ msgctxt "@label"
  6421. #~ msgid "Removable Drive Output Device Plugin"
  6422. #~ msgstr "Irrotettavan aseman tulostusvälineen lisäosa"
  6423. #~ msgctxt "@info:whatsthis"
  6424. #~ msgid "Provides removable drive hotplugging and writing support."
  6425. #~ msgstr "Tukee irrotettavan aseman kytkemistä lennossa ja sille kirjoittamista."
  6426. #~ msgctxt "@info:whatsthis"
  6427. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6428. #~ msgstr "Ultimaker 3 -tulostimien verkkoyhteyksien hallinta"
  6429. #~ msgctxt "@label"
  6430. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6431. #~ msgstr "Eri PrintCore-tulostusydin (Cura: {0}, tulostin: {1}) valittu suulakkeelle {2}"
  6432. #~ msgctxt "@label"
  6433. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6434. #~ msgstr "Print Core -tulostusydintä {0} ei ole kalibroitu oikein. Tulostimen XY-kalibrointi tulee suorittaa."
  6435. #~ msgctxt "@label"
  6436. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  6437. #~ msgstr "Tulostimen PrintCoret tai materiaalit eivät vastaa tulostettavan projektin asetuksia. Parhaat tulokset saavutetaan viipaloimalla aina tulostimeen asetetuille PrintCoreille ja materiaaleille."
  6438. #~ msgctxt "@label"
  6439. #~ msgid "Post Processing"
  6440. #~ msgstr "Jälkikäsittely"
  6441. #~ msgctxt "Description of plugin"
  6442. #~ msgid "Extension that allows for user created scripts for post processing"
  6443. #~ msgstr "Lisäosa, jonka avulla käyttäjät voivat luoda komentosarjoja jälkikäsittelyä varten"
  6444. #~ msgctxt "@label"
  6445. #~ msgid "Auto Save"
  6446. #~ msgstr "Automaattitallennus"
  6447. #~ msgctxt "@info:whatsthis"
  6448. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6449. #~ msgstr "Tallentaa automaattisesti lisäasetukset, koneet ja profiilit muutosten jälkeen."
  6450. #~ msgctxt "@label"
  6451. #~ msgid "Slice info"
  6452. #~ msgstr "Viipalointitiedot"
  6453. #~ msgctxt "@info:whatsthis"
  6454. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6455. #~ msgstr "Lähettää anonyymiä viipalointitietoa. Voidaan lisäasetuksista kytkeä pois käytöstä."
  6456. #~ msgctxt "@info"
  6457. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6458. #~ msgstr "Cura kerää anonyymejä viipalointiin liittyviä tilastotietoja. Tämän voi poistaa käytöstä asetuksien kautta"
  6459. #~ msgctxt "@label"
  6460. #~ msgid "Material Profiles"
  6461. #~ msgstr "Materiaaliprofiilit"
  6462. #~ msgctxt "@info:whatsthis"
  6463. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6464. #~ msgstr "Mahdollistaa XML-pohjaisten materiaaliprofiilien lukemisen ja kirjoittamisen."
  6465. #~ msgctxt "@label"
  6466. #~ msgid "Legacy Cura Profile Reader"
  6467. #~ msgstr "Aikaisempien Cura-profiilien lukija"
  6468. #~ msgctxt "@info:whatsthis"
  6469. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6470. #~ msgstr "Tukee profiilien tuontia aikaisemmista Cura-versioista."
  6471. #~ msgctxt "@label"
  6472. #~ msgid "GCode Profile Reader"
  6473. #~ msgstr "GCode-profiilin lukija"
  6474. #~ msgctxt "@info:whatsthis"
  6475. #~ msgid "Provides support for importing profiles from g-code files."
  6476. #~ msgstr "Tukee profiilien tuontia GCode-tiedostoista."
  6477. #~ msgctxt "@label"
  6478. #~ msgid "Layer View"
  6479. #~ msgstr "Kerrosnäkymä"
  6480. #~ msgctxt "@info:whatsthis"
  6481. #~ msgid "Provides the Layer view."
  6482. #~ msgstr "Näyttää kerrosnäkymän."
  6483. #~ msgctxt "@label"
  6484. #~ msgid "Version Upgrade 2.5 to 2.6"
  6485. #~ msgstr "Päivitys versiosta 2.5 versioon 2.6"
  6486. #~ msgctxt "@info:whatsthis"
  6487. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6488. #~ msgstr "Päivittää kokoonpanon versiosta Cura 2.5 versioon Cura 2.6."
  6489. #~ msgctxt "@label"
  6490. #~ msgid "Version Upgrade 2.1 to 2.2"
  6491. #~ msgstr "Päivitys versiosta 2.1 versioon 2.2"
  6492. #~ msgctxt "@info:whatsthis"
  6493. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  6494. #~ msgstr "Päivittää kokoonpanon versiosta Cura 2.1 versioon Cura 2.2."
  6495. #~ msgctxt "@label"
  6496. #~ msgid "Version Upgrade 2.2 to 2.4"
  6497. #~ msgstr "Päivitys versiosta 2.2 versioon 2.4"
  6498. #~ msgctxt "@info:whatsthis"
  6499. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  6500. #~ msgstr "Päivittää kokoonpanon versiosta Cura 2.2 versioon Cura 2.4."
  6501. #~ msgctxt "@label"
  6502. #~ msgid "Image Reader"
  6503. #~ msgstr "Kuvanlukija"
  6504. #~ msgctxt "@info:whatsthis"
  6505. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  6506. #~ msgstr "Mahdollistaa tulostettavien geometrioiden luomisen 2D-kuvatiedostoista."
  6507. #~ msgctxt "@label"
  6508. #~ msgid "CuraEngine Backend"
  6509. #~ msgstr "CuraEngine-taustaosa"
  6510. #~ msgctxt "@info:whatsthis"
  6511. #~ msgid "Provides the link to the CuraEngine slicing backend."
  6512. #~ msgstr "Linkki CuraEngine-viipalointiin taustalla."
  6513. #~ msgctxt "@label"
  6514. #~ msgid "Per Model Settings Tool"
  6515. #~ msgstr "Mallikohtaisten asetusten työkalu"
  6516. #~ msgctxt "@info:whatsthis"
  6517. #~ msgid "Provides the Per Model Settings."
  6518. #~ msgstr "Mallikohtaisten asetusten muokkaus."
  6519. #~ msgctxt "@label"
  6520. #~ msgid "3MF Reader"
  6521. #~ msgstr "3MF-lukija"
  6522. #~ msgctxt "@info:whatsthis"
  6523. #~ msgid "Provides support for reading 3MF files."
  6524. #~ msgstr "Tukee 3MF-tiedostojen lukemista."
  6525. #~ msgctxt "@label"
  6526. #~ msgid "Solid View"
  6527. #~ msgstr "Kiinteä näkymä"
  6528. #~ msgctxt "@info:whatsthis"
  6529. #~ msgid "Provides a normal solid mesh view."
  6530. #~ msgstr "Näyttää normaalin kiinteän verkkonäkymän."
  6531. #~ msgctxt "@label"
  6532. #~ msgid "G-code Reader"
  6533. #~ msgstr "G-code-lukija"
  6534. #~ msgctxt "@info:whatsthis"
  6535. #~ msgid "Allows loading and displaying G-code files."
  6536. #~ msgstr "Mahdollistaa G-code-tiedostojen lukemisen ja näyttämisen."
  6537. #~ msgctxt "@label"
  6538. #~ msgid "Cura Profile Writer"
  6539. #~ msgstr "Cura-profiilin kirjoitin"
  6540. #~ msgctxt "@info:whatsthis"
  6541. #~ msgid "Provides support for exporting Cura profiles."
  6542. #~ msgstr "Tukee Cura-profiilien vientiä."
  6543. #~ msgctxt "@label"
  6544. #~ msgid "3MF Writer"
  6545. #~ msgstr "3MF-kirjoitin"
  6546. #~ msgctxt "@info:whatsthis"
  6547. #~ msgid "Provides support for writing 3MF files."
  6548. #~ msgstr "Tukee 3MF-tiedostojen kirjoittamista."
  6549. #~ msgctxt "@label"
  6550. #~ msgid "Ultimaker machine actions"
  6551. #~ msgstr "Ultimaker-laitteen toiminnot"
  6552. #~ msgctxt "@info:whatsthis"
  6553. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6554. #~ msgstr "Ultimaker-laitteiden toimintojen käyttö (esim. pöydän tasaaminen, päivitysten valinta yms.)"
  6555. #~ msgctxt "@label"
  6556. #~ msgid "Cura Profile Reader"
  6557. #~ msgstr "Cura-profiilin lukija"
  6558. #~ msgctxt "@info:whatsthis"
  6559. #~ msgid "Provides support for importing Cura profiles."
  6560. #~ msgstr "Tukee Cura-profiilien tuontia."
  6561. #~ msgctxt "@info"
  6562. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  6563. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  6564. #~ msgctxt "@label"
  6565. #~ msgid "Build Plate Shape"
  6566. #~ msgstr "Alustan muoto"
  6567. #~ msgctxt "@option:check"
  6568. #~ msgid "Machine Center is Zero"
  6569. #~ msgstr "Laitteen keskus on nolla"
  6570. #~ msgctxt "@option:check"
  6571. #~ msgid "Heated Bed"
  6572. #~ msgstr "Lämmitettävä pöytä"
  6573. #~ msgctxt "@label"
  6574. #~ msgid "GCode Flavor"
  6575. #~ msgstr "GCode-tyyppi"
  6576. #~ msgctxt "@label"
  6577. #~ msgid "Material Diameter"
  6578. #~ msgstr "Materiaalin halkaisija"
  6579. #~ msgctxt "@label"
  6580. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  6581. #~ msgstr "Jos tulostinta ei ole luettelossa, lue <a href='%1'>verkkotulostuksen vianetsintäopas</a>"
  6582. #~ msgctxt "@item:inlistbox"
  6583. #~ msgid "Ultimaker"
  6584. #~ msgstr "Ultimaker"
  6585. #~ msgctxt "@label"
  6586. #~ msgid "Support library for scientific computing "
  6587. #~ msgstr "Tieteellisen laskennan tukikirjasto "
  6588. #~ msgctxt "@tooltip"
  6589. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  6590. #~ msgstr "<b>Tulostuksen asennus</b><br/><br/>Muokkaa tai tarkastele aktiivisen tulostustyön asetuksia."
  6591. #~ msgctxt "@tooltip"
  6592. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  6593. #~ msgstr "<b>Tulostimen näyttölaite</b><br/><br/>Seuraa yhdistetyn tulostimen ja käynnissä olevan tulostustyön tilaa."
  6594. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  6595. #~ msgid "Automatic: %1"
  6596. #~ msgstr "Automaattinen: %1"
  6597. #~ msgctxt "@label:PrintjobStatus"
  6598. #~ msgid "Please load a 3d model"
  6599. #~ msgstr "Ole hyvä ja lataa 3D-malli"
  6600. #~ msgctxt "@label"
  6601. #~ msgid "Print Selected Model with %1"
  6602. #~ msgid_plural "Print Selected Models With %1"
  6603. #~ msgstr[0] "Tulosta valittu malli asetuksella %1"
  6604. #~ msgstr[1] "Tulosta valitut mallit asetuksella %1"
  6605. #~ msgctxt "@info:status"
  6606. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  6607. #~ msgstr "Uuden tulostustyön aloittaminen ei onnistu. PrinterCorea ei ole ladattu aukkoon {0}"
  6608. #~ msgctxt "@label"
  6609. #~ msgid "Version Upgrade 2.4 to 2.5"
  6610. #~ msgstr "Päivitys versiosta 2.4 versioon 2.5"
  6611. #~ msgctxt "@info:whatsthis"
  6612. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  6613. #~ msgstr "Päivittää kokoonpanon versiosta Cura 2.4 versioon Cura 2.5."
  6614. #~ msgctxt "@info:status"
  6615. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  6616. #~ msgstr "Tälle yhdistelmälle ei löytynyt laadukasta profiilia. Käytetään oletusasetuksia."
  6617. #~ msgctxt "@title:window"
  6618. #~ msgid "Oops!"
  6619. #~ msgstr "Hups!"
  6620. #~ msgctxt "@label"
  6621. #~ msgid ""
  6622. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6623. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  6624. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6625. #~ " "
  6626. #~ msgstr ""
  6627. #~ "<p>Tapahtui vakava poikkeus, josta palautuminen ei onnistunut!</p>\n"
  6628. #~ " <p>Toivottavasti tämä kissanpentukuva lieventää hiukan järkytystä.</p>\n"
  6629. #~ " <p>Tee virheraportti alla olevien tietojen perusteella osoitteessa <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6630. #~ " "
  6631. #~ msgctxt "@label"
  6632. #~ msgid "Please enter the correct settings for your printer below:"
  6633. #~ msgstr "Anna tulostimen asetukset alla:"
  6634. #~ msgctxt "@label"
  6635. #~ msgid "Extruder %1"
  6636. #~ msgstr "Suulake %1"
  6637. #~ msgctxt "@label Followed by extruder selection drop-down."
  6638. #~ msgid "Print model with"
  6639. #~ msgstr "Tulosta malli seuraavalla:"
  6640. #~ msgctxt "@label"
  6641. #~ msgid "You will need to restart the application for language changes to have effect."
  6642. #~ msgstr "Sovellus on käynnistettävä uudelleen, jotta kielimuutokset tulevat voimaan."
  6643. #~ msgctxt "@info:tooltip"
  6644. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  6645. #~ msgstr "Siirtää kameraa siten, että malli on näkymän keskellä, kun malli on valittu"
  6646. #~ msgctxt "@action:inmenu menubar:edit"
  6647. #~ msgid "Delete &Selection"
  6648. #~ msgstr "&Poista valinta"
  6649. #~ msgctxt "@action:inmenu menubar:file"
  6650. #~ msgid "&Open File..."
  6651. #~ msgstr "&Avaa tiedosto..."
  6652. #~ msgctxt "@action:inmenu menubar:file"
  6653. #~ msgid "&Open Project..."
  6654. #~ msgstr "&Avaa projekti..."
  6655. #~ msgctxt "@title:window"
  6656. #~ msgid "Multiply Model"
  6657. #~ msgstr "Monista malli"
  6658. #~ msgctxt "@title:menu menubar:file"
  6659. #~ msgid "Save &All"
  6660. #~ msgstr "Tallenna &kaikki"
  6661. #~ msgctxt "@title:window"
  6662. #~ msgid "Open file"
  6663. #~ msgstr "Avaa tiedosto"
  6664. #~ msgctxt "@title:window"
  6665. #~ msgid "Open workspace"
  6666. #~ msgstr "Avaa työtila"
  6667. #~ msgctxt "@label"
  6668. #~ msgid "Hollow"
  6669. #~ msgstr "Ontto"
  6670. #~ msgctxt "@label"
  6671. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  6672. #~ msgstr "Ei (0 %) täyttöä jättää mallin ontoksi ja lujuudeltaan alhaiseksi"
  6673. #~ msgctxt "@label"
  6674. #~ msgid "Light"
  6675. #~ msgstr "Harva"
  6676. #~ msgctxt "@label"
  6677. #~ msgid "Light (20%) infill will give your model an average strength"
  6678. #~ msgstr "Harva (20 %) täyttö antaa mallille keskimääräisen lujuuden"
  6679. #~ msgctxt "@label"
  6680. #~ msgid "Dense"
  6681. #~ msgstr "Tiheä"
  6682. #~ msgctxt "@label"
  6683. #~ msgid "Dense (50%) infill will give your model an above average strength"
  6684. #~ msgstr "Tiheä (50 %) täyttö antaa mallille keskimääräistä paremman lujuuden"
  6685. #~ msgctxt "@label"
  6686. #~ msgid "Solid"
  6687. #~ msgstr "Kiinteä"
  6688. #~ msgctxt "@label"
  6689. #~ msgid "Solid (100%) infill will make your model completely solid"
  6690. #~ msgstr "Kiinteä (100 %) täyttö tekee mallista täysin umpinaisen"
  6691. #~ msgctxt "@label"
  6692. #~ msgid "Enable Support"
  6693. #~ msgstr "Ota tuki käyttöön"
  6694. #~ msgctxt "@label"
  6695. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  6696. #~ msgstr "Ota tukirakenteet käyttöön. Nämä rakenteet tukevat mallin osia, joissa on merkittäviä ulokkeita."
  6697. #~ msgctxt "@label"
  6698. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6699. #~ msgstr "Tarvitsetko apua tulosteiden parantamiseen? Lue <a href=’%1’>Ultimakerin vianetsintäoppaat</a>"
  6700. #~ msgctxt "@info:status"
  6701. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  6702. #~ msgstr "Yhdistetty verkon kautta tulostimeen {0}. Hyväksy tulostimen käyttöoikeuspyyntö."
  6703. #~ msgctxt "@info:status"
  6704. #~ msgid "Connected over the network to {0}."
  6705. #~ msgstr "Yhdistetty verkon kautta tulostimeen {0}."
  6706. #~ msgctxt "@info:status"
  6707. #~ msgid "Connected over the network to {0}. No access to control the printer."
  6708. #~ msgstr "Yhdistetty verkon kautta tulostimeen {0}. Ei käyttöoikeutta tulostimen hallintaan."
  6709. #~ msgctxt "@info:status"
  6710. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  6711. #~ msgstr "Uuden tulostustyön aloittaminen ei onnistu, koska tulostin on varattu. Tarkista tulostin."
  6712. #~ msgctxt "@label"
  6713. #~ msgid "You made changes to the following setting(s)/override(s):"
  6714. #~ msgstr "Olet muuttanut seuraavia asetuksia tai ohituksia:"
  6715. #~ msgctxt "@window:title"
  6716. #~ msgid "Switched profiles"
  6717. #~ msgstr "Vaihdetut profiilit"
  6718. #~ msgctxt "@label"
  6719. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  6720. #~ msgstr "Haluatko siirtää %d muokattua asetusta tai ohitusta tähän profiiliin?"
  6721. #~ msgctxt "@label"
  6722. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  6723. #~ msgstr "Jos siirrät asetukset, ne ohittavat profiilin asetukset. Jos et siirrä näitä asetuksia, niitä ei tallenneta."
  6724. #~ msgctxt "@label"
  6725. #~ msgid "Cost per Meter (Approx.)"
  6726. #~ msgstr "Hinta metriä kohden (arvioitu)"
  6727. #~ msgctxt "@label"
  6728. #~ msgid "%1/m"
  6729. #~ msgstr "%1 / m"
  6730. #~ msgctxt "@info:tooltip"
  6731. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  6732. #~ msgstr "Näytä kerrosnäkymässä viisi ylintä kerrosta tai vain ylin kerros. Viiden kerroksen näyttämiseen menee kauemmin, mutta se saattaa antaa enemmän tietoa."
  6733. #~ msgctxt "@action:button"
  6734. #~ msgid "Display five top layers in layer view"
  6735. #~ msgstr "Näytä viisi ylintä kerrosta kerrosnäkymässä"
  6736. #~ msgctxt "@info:tooltip"
  6737. #~ msgid "Should only the top layers be displayed in layerview?"
  6738. #~ msgstr "Pitäisikö kerrosnäkymässä näyttää vain ylimmät kerrokset?"
  6739. #~ msgctxt "@option:check"
  6740. #~ msgid "Only display top layer(s) in layer view"
  6741. #~ msgstr "Näytä kerrosnäkymässä vain ylimmät kerrokset"
  6742. #~ msgctxt "@label"
  6743. #~ msgid "Opening files"
  6744. #~ msgstr "Tiedostojen avaaminen"
  6745. #~ msgctxt "@label"
  6746. #~ msgid "Printer Monitor"
  6747. #~ msgstr "Tulostimen näyttölaite"
  6748. #~ msgctxt "@label"
  6749. #~ msgid "Temperatures"
  6750. #~ msgstr "Lämpötilat"
  6751. #~ msgctxt "@label:PrintjobStatus"
  6752. #~ msgid "Preparing to slice..."
  6753. #~ msgstr "Valmistellaan viipalointia..."
  6754. #~ msgctxt "@window:title"
  6755. #~ msgid "Changes on the Printer"
  6756. #~ msgstr "Tulostimen muutokset"
  6757. #~ msgctxt "@action:inmenu"
  6758. #~ msgid "&Duplicate Model"
  6759. #~ msgstr "&Monista malli"
  6760. #~ msgctxt "@label"
  6761. #~ msgid "Helper Parts:"
  6762. #~ msgstr "Tukiosat:"
  6763. #~ msgctxt "@label"
  6764. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  6765. #~ msgstr "Ottaa tukirakenteiden tulostuksen käyttöön. Siinä mallin alle rakennetaan tukirakenteita estämään mallin riippuminen tai suoraan ilmaan tulostaminen."
  6766. #~ msgctxt "@label"
  6767. #~ msgid "Don't print support"
  6768. #~ msgstr "Älä tulosta tukea"
  6769. #~ msgctxt "@label"
  6770. #~ msgid "Print support using %1"
  6771. #~ msgstr "Tulosta tuki käyttämällä kohdetta %1"
  6772. #~ msgctxt "@label:listbox"
  6773. #~ msgid "Printer:"
  6774. #~ msgstr "Tulostin:"
  6775. #~ msgctxt "@info:status"
  6776. #~ msgid "Successfully imported profiles {0}"
  6777. #~ msgstr "Profiilit {0} tuotu onnistuneesti"
  6778. #~ msgctxt "@label"
  6779. #~ msgid "Scripts"
  6780. #~ msgstr "Komentosarjat"
  6781. #~ msgctxt "@label"
  6782. #~ msgid "Active Scripts"
  6783. #~ msgstr "Aktiiviset komentosarjat"
  6784. #~ msgctxt "@label"
  6785. #~ msgid "Done"
  6786. #~ msgstr "Valmis"
  6787. #~ msgctxt "@item:inlistbox"
  6788. #~ msgid "English"
  6789. #~ msgstr "englanti"
  6790. #~ msgctxt "@item:inlistbox"
  6791. #~ msgid "Finnish"
  6792. #~ msgstr "suomi"
  6793. #~ msgctxt "@item:inlistbox"
  6794. #~ msgid "French"
  6795. #~ msgstr "ranska"
  6796. #~ msgctxt "@item:inlistbox"
  6797. #~ msgid "German"
  6798. #~ msgstr "saksa"
  6799. #~ msgctxt "@item:inlistbox"
  6800. #~ msgid "Italian"
  6801. #~ msgstr "Italia"
  6802. #~ msgctxt "@item:inlistbox"
  6803. #~ msgid "Dutch"
  6804. #~ msgstr "Hollanti"
  6805. #~ msgctxt "@item:inlistbox"
  6806. #~ msgid "Spanish"
  6807. #~ msgstr "Espanja"
  6808. #~ msgctxt "@label"
  6809. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  6810. #~ msgstr "Haluatko muuttaa Curan PrintCoret ja materiaalit vastaamaan tulostinta?"
  6811. #~ msgctxt "@label:"
  6812. #~ msgid "Print Again"
  6813. #~ msgstr "Tulosta uudelleen"