cura.po 298 KB

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