fdmprinter.def.json.po 342 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.5\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2020-02-07 14:19+0000\n"
  10. "PO-Revision-Date: 2019-07-29 15:51+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Italian <info@lionbridge.com>, Italian <info@bothof.nl>\n"
  13. "Language: it_IT\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.0.6\n"
  18. #: fdmprinter.def.json
  19. msgctxt "machine_settings label"
  20. msgid "Machine"
  21. msgstr "Macchina"
  22. #: fdmprinter.def.json
  23. msgctxt "machine_settings description"
  24. msgid "Machine specific settings"
  25. msgstr "Impostazioni macchina specifiche"
  26. #: fdmprinter.def.json
  27. msgctxt "machine_name label"
  28. msgid "Machine Type"
  29. msgstr "Tipo di macchina"
  30. #: fdmprinter.def.json
  31. msgctxt "machine_name description"
  32. msgid "The name of your 3D printer model."
  33. msgstr "Il nome del modello della stampante 3D in uso."
  34. #: fdmprinter.def.json
  35. msgctxt "machine_show_variants label"
  36. msgid "Show Machine Variants"
  37. msgstr "Mostra varianti macchina"
  38. #: fdmprinter.def.json
  39. msgctxt "machine_show_variants description"
  40. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  41. msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte."
  42. #: fdmprinter.def.json
  43. msgctxt "machine_start_gcode label"
  44. msgid "Start G-code"
  45. msgstr "Codice G avvio"
  46. #: fdmprinter.def.json
  47. msgctxt "machine_start_gcode description"
  48. msgid ""
  49. "G-code commands to be executed at the very start - separated by \n"
  50. "."
  51. msgstr ""
  52. "I comandi codice G da eseguire all’avvio, separati da \n"
  53. "."
  54. #: fdmprinter.def.json
  55. msgctxt "machine_end_gcode label"
  56. msgid "End G-code"
  57. msgstr "Codice G fine"
  58. #: fdmprinter.def.json
  59. msgctxt "machine_end_gcode description"
  60. msgid ""
  61. "G-code commands to be executed at the very end - separated by \n"
  62. "."
  63. msgstr ""
  64. "I comandi codice G da eseguire alla fine, separati da \n"
  65. "."
  66. #: fdmprinter.def.json
  67. msgctxt "material_guid label"
  68. msgid "Material GUID"
  69. msgstr "GUID materiale"
  70. #: fdmprinter.def.json
  71. msgctxt "material_guid description"
  72. msgid "GUID of the material. This is set automatically. "
  73. msgstr "Il GUID del materiale. È impostato automaticamente. "
  74. #: fdmprinter.def.json
  75. msgctxt "material_diameter label"
  76. msgid "Diameter"
  77. msgstr "Diametro"
  78. #: fdmprinter.def.json
  79. msgctxt "material_diameter description"
  80. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  81. msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato."
  82. #: fdmprinter.def.json
  83. msgctxt "material_bed_temp_wait label"
  84. msgid "Wait for Build Plate Heatup"
  85. msgstr "Attendi il riscaldamento del piano di stampa"
  86. #: fdmprinter.def.json
  87. msgctxt "material_bed_temp_wait description"
  88. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  89. msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio."
  90. #: fdmprinter.def.json
  91. msgctxt "material_print_temp_wait label"
  92. msgid "Wait for Nozzle Heatup"
  93. msgstr "Attendi il riscaldamento dell’ugello"
  94. #: fdmprinter.def.json
  95. msgctxt "material_print_temp_wait description"
  96. msgid "Whether to wait until the nozzle temperature is reached at the start."
  97. msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio."
  98. #: fdmprinter.def.json
  99. msgctxt "material_print_temp_prepend label"
  100. msgid "Include Material Temperatures"
  101. msgstr "Includi le temperature del materiale"
  102. #: fdmprinter.def.json
  103. msgctxt "material_print_temp_prepend description"
  104. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  105. msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione."
  106. #: fdmprinter.def.json
  107. msgctxt "material_bed_temp_prepend label"
  108. msgid "Include Build Plate Temperature"
  109. msgstr "Includi temperatura piano di stampa"
  110. #: fdmprinter.def.json
  111. msgctxt "material_bed_temp_prepend description"
  112. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  113. msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione."
  114. #: fdmprinter.def.json
  115. msgctxt "machine_width label"
  116. msgid "Machine Width"
  117. msgstr "Larghezza macchina"
  118. #: fdmprinter.def.json
  119. msgctxt "machine_width description"
  120. msgid "The width (X-direction) of the printable area."
  121. msgstr "La larghezza (direzione X) dell’area stampabile."
  122. #: fdmprinter.def.json
  123. msgctxt "machine_depth label"
  124. msgid "Machine Depth"
  125. msgstr "Profondità macchina"
  126. #: fdmprinter.def.json
  127. msgctxt "machine_depth description"
  128. msgid "The depth (Y-direction) of the printable area."
  129. msgstr "La profondità (direzione Y) dell’area stampabile."
  130. #: fdmprinter.def.json
  131. msgctxt "machine_shape label"
  132. msgid "Build Plate Shape"
  133. msgstr "Forma del piano di stampa"
  134. #: fdmprinter.def.json
  135. msgctxt "machine_shape description"
  136. msgid "The shape of the build plate without taking unprintable areas into account."
  137. msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili."
  138. #: fdmprinter.def.json
  139. msgctxt "machine_shape option rectangular"
  140. msgid "Rectangular"
  141. msgstr "Rettangolare"
  142. #: fdmprinter.def.json
  143. msgctxt "machine_shape option elliptic"
  144. msgid "Elliptic"
  145. msgstr "Ellittica"
  146. #: fdmprinter.def.json
  147. msgctxt "machine_buildplate_type label"
  148. msgid "Build Plate Material"
  149. msgstr "Materiale piano di stampa"
  150. #: fdmprinter.def.json
  151. msgctxt "machine_buildplate_type description"
  152. msgid "The material of the build plate installed on the printer."
  153. msgstr "Il materiale del piano di stampa installato sulla stampante."
  154. #: fdmprinter.def.json
  155. msgctxt "machine_buildplate_type option glass"
  156. msgid "Glass"
  157. msgstr "Cristallo"
  158. #: fdmprinter.def.json
  159. msgctxt "machine_buildplate_type option aluminum"
  160. msgid "Aluminum"
  161. msgstr "Alluminio"
  162. #: fdmprinter.def.json
  163. msgctxt "machine_height label"
  164. msgid "Machine Height"
  165. msgstr "Altezza macchina"
  166. #: fdmprinter.def.json
  167. msgctxt "machine_height description"
  168. msgid "The height (Z-direction) of the printable area."
  169. msgstr "L’altezza (direzione Z) dell’area stampabile."
  170. #: fdmprinter.def.json
  171. msgctxt "machine_heated_bed label"
  172. msgid "Has Heated Build Plate"
  173. msgstr "Piano di stampa riscaldato"
  174. #: fdmprinter.def.json
  175. msgctxt "machine_heated_bed description"
  176. msgid "Whether the machine has a heated build plate present."
  177. msgstr "Indica se la macchina ha un piano di stampa riscaldato."
  178. #: fdmprinter.def.json
  179. msgctxt "machine_heated_build_volume label"
  180. msgid "Has Build Volume Temperature Stabilization"
  181. msgstr "È dotato della stabilizzazione della temperatura del volume di stampa"
  182. #: fdmprinter.def.json
  183. msgctxt "machine_heated_build_volume description"
  184. msgid "Whether the machine is able to stabilize the build volume temperature."
  185. msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa."
  186. #: fdmprinter.def.json
  187. msgctxt "machine_center_is_zero label"
  188. msgid "Is Center Origin"
  189. msgstr "Origine del centro"
  190. #: fdmprinter.def.json
  191. msgctxt "machine_center_is_zero description"
  192. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  193. msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile."
  194. #: fdmprinter.def.json
  195. msgctxt "machine_extruder_count label"
  196. msgid "Number of Extruders"
  197. msgstr "Numero di estrusori"
  198. #: fdmprinter.def.json
  199. msgctxt "machine_extruder_count description"
  200. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  201. msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello."
  202. #: fdmprinter.def.json
  203. msgctxt "extruders_enabled_count label"
  204. msgid "Number of Extruders That Are Enabled"
  205. msgstr "Numero di estrusori abilitati"
  206. #: fdmprinter.def.json
  207. msgctxt "extruders_enabled_count description"
  208. msgid "Number of extruder trains that are enabled; automatically set in software"
  209. msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software"
  210. #: fdmprinter.def.json
  211. msgctxt "machine_nozzle_tip_outer_diameter label"
  212. msgid "Outer Nozzle Diameter"
  213. msgstr "Diametro esterno ugello"
  214. #: fdmprinter.def.json
  215. msgctxt "machine_nozzle_tip_outer_diameter description"
  216. msgid "The outer diameter of the tip of the nozzle."
  217. msgstr "Il diametro esterno della punta dell'ugello."
  218. #: fdmprinter.def.json
  219. msgctxt "machine_nozzle_head_distance label"
  220. msgid "Nozzle Length"
  221. msgstr "Lunghezza ugello"
  222. #: fdmprinter.def.json
  223. msgctxt "machine_nozzle_head_distance description"
  224. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  225. msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa."
  226. #: fdmprinter.def.json
  227. msgctxt "machine_nozzle_expansion_angle label"
  228. msgid "Nozzle Angle"
  229. msgstr "Angolo ugello"
  230. #: fdmprinter.def.json
  231. msgctxt "machine_nozzle_expansion_angle description"
  232. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  233. msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello."
  234. #: fdmprinter.def.json
  235. msgctxt "machine_heat_zone_length label"
  236. msgid "Heat Zone Length"
  237. msgstr "Lunghezza della zona di riscaldamento"
  238. #: fdmprinter.def.json
  239. msgctxt "machine_heat_zone_length description"
  240. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  241. msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento."
  242. #: fdmprinter.def.json
  243. msgctxt "machine_filament_park_distance label"
  244. msgid "Filament Park Distance"
  245. msgstr "Distanza posizione filamento"
  246. #: fdmprinter.def.json
  247. msgctxt "machine_filament_park_distance description"
  248. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  249. msgstr "La distanza dalla punta dell’ugello in cui posizionare il filamento quando l’estrusore non è più utilizzato."
  250. #: fdmprinter.def.json
  251. msgctxt "machine_nozzle_temp_enabled label"
  252. msgid "Enable Nozzle Temperature Control"
  253. msgstr "Abilita controllo temperatura ugello"
  254. #: fdmprinter.def.json
  255. msgctxt "machine_nozzle_temp_enabled description"
  256. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  257. msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura."
  258. #: fdmprinter.def.json
  259. msgctxt "machine_nozzle_heat_up_speed label"
  260. msgid "Heat Up Speed"
  261. msgstr "Velocità di riscaldamento"
  262. #: fdmprinter.def.json
  263. msgctxt "machine_nozzle_heat_up_speed description"
  264. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  265. msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa."
  266. #: fdmprinter.def.json
  267. msgctxt "machine_nozzle_cool_down_speed label"
  268. msgid "Cool Down Speed"
  269. msgstr "Velocità di raffreddamento"
  270. #: fdmprinter.def.json
  271. msgctxt "machine_nozzle_cool_down_speed description"
  272. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  273. msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa."
  274. #: fdmprinter.def.json
  275. msgctxt "machine_min_cool_heat_time_window label"
  276. msgid "Minimal Time Standby Temperature"
  277. msgstr "Tempo minimo temperatura di standby"
  278. #: fdmprinter.def.json
  279. msgctxt "machine_min_cool_heat_time_window description"
  280. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  281. msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby."
  282. #: fdmprinter.def.json
  283. msgctxt "machine_gcode_flavor label"
  284. msgid "G-code Flavor"
  285. msgstr "Versione codice G"
  286. #: fdmprinter.def.json
  287. msgctxt "machine_gcode_flavor description"
  288. msgid "The type of g-code to be generated."
  289. msgstr "Il tipo di codice G da generare."
  290. #: fdmprinter.def.json
  291. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  292. msgid "Marlin"
  293. msgstr "Marlin"
  294. #: fdmprinter.def.json
  295. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  296. msgid "Marlin (Volumetric)"
  297. msgstr "Marlin (volumetrica)"
  298. #: fdmprinter.def.json
  299. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  300. msgid "RepRap"
  301. msgstr "RepRap"
  302. #: fdmprinter.def.json
  303. msgctxt "machine_gcode_flavor option UltiGCode"
  304. msgid "Ultimaker 2"
  305. msgstr "Ultimaker 2"
  306. #: fdmprinter.def.json
  307. msgctxt "machine_gcode_flavor option Griffin"
  308. msgid "Griffin"
  309. msgstr "Griffin"
  310. #: fdmprinter.def.json
  311. msgctxt "machine_gcode_flavor option Makerbot"
  312. msgid "Makerbot"
  313. msgstr "Makerbot"
  314. #: fdmprinter.def.json
  315. msgctxt "machine_gcode_flavor option BFB"
  316. msgid "Bits from Bytes"
  317. msgstr "Bits from Bytes"
  318. #: fdmprinter.def.json
  319. msgctxt "machine_gcode_flavor option MACH3"
  320. msgid "Mach3"
  321. msgstr "Mach3"
  322. #: fdmprinter.def.json
  323. msgctxt "machine_gcode_flavor option Repetier"
  324. msgid "Repetier"
  325. msgstr "Repetier"
  326. #: fdmprinter.def.json
  327. msgctxt "machine_firmware_retract label"
  328. msgid "Firmware Retraction"
  329. msgstr "Retrazione firmware"
  330. #: fdmprinter.def.json
  331. msgctxt "machine_firmware_retract description"
  332. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  333. msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale."
  334. #: fdmprinter.def.json
  335. msgctxt "machine_extruders_share_heater label"
  336. msgid "Extruders Share Heater"
  337. msgstr ""
  338. #: fdmprinter.def.json
  339. msgctxt "machine_extruders_share_heater description"
  340. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  341. msgstr ""
  342. #: fdmprinter.def.json
  343. msgctxt "machine_disallowed_areas label"
  344. msgid "Disallowed Areas"
  345. msgstr "Aree non consentite"
  346. #: fdmprinter.def.json
  347. msgctxt "machine_disallowed_areas description"
  348. msgid "A list of polygons with areas the print head is not allowed to enter."
  349. msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere."
  350. #: fdmprinter.def.json
  351. msgctxt "nozzle_disallowed_areas label"
  352. msgid "Nozzle Disallowed Areas"
  353. msgstr "Aree ugello non consentite"
  354. #: fdmprinter.def.json
  355. msgctxt "nozzle_disallowed_areas description"
  356. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  357. msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere."
  358. #: fdmprinter.def.json
  359. msgctxt "machine_head_with_fans_polygon label"
  360. msgid "Machine Head & Fan Polygon"
  361. msgstr "Poligono testina macchina e ventola"
  362. #: fdmprinter.def.json
  363. msgctxt "machine_head_with_fans_polygon description"
  364. msgid "A 2D silhouette of the print head (fan caps included)."
  365. msgstr "Una silhouette 2D della testina di stampa (cappucci ventola inclusi)."
  366. #: fdmprinter.def.json
  367. msgctxt "gantry_height label"
  368. msgid "Gantry Height"
  369. msgstr "Altezza gantry"
  370. #: fdmprinter.def.json
  371. msgctxt "gantry_height description"
  372. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  373. msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)."
  374. #: fdmprinter.def.json
  375. msgctxt "machine_nozzle_id label"
  376. msgid "Nozzle ID"
  377. msgstr "ID ugello"
  378. #: fdmprinter.def.json
  379. msgctxt "machine_nozzle_id description"
  380. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  381. msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"."
  382. #: fdmprinter.def.json
  383. msgctxt "machine_nozzle_size label"
  384. msgid "Nozzle Diameter"
  385. msgstr "Diametro ugello"
  386. #: fdmprinter.def.json
  387. msgctxt "machine_nozzle_size description"
  388. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  389. msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard."
  390. #: fdmprinter.def.json
  391. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  392. msgid "Offset with Extruder"
  393. msgstr "Offset con estrusore"
  394. #: fdmprinter.def.json
  395. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  396. msgid "Apply the extruder offset to the coordinate system."
  397. msgstr "Applicare l’offset estrusore al sistema coordinate."
  398. #: fdmprinter.def.json
  399. msgctxt "extruder_prime_pos_z label"
  400. msgid "Extruder Prime Z Position"
  401. msgstr "Posizione Z innesco estrusore"
  402. #: fdmprinter.def.json
  403. msgctxt "extruder_prime_pos_z description"
  404. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  405. msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa."
  406. #: fdmprinter.def.json
  407. msgctxt "extruder_prime_pos_abs label"
  408. msgid "Absolute Extruder Prime Position"
  409. msgstr "Posizione assoluta di innesco estrusore"
  410. #: fdmprinter.def.json
  411. msgctxt "extruder_prime_pos_abs description"
  412. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  413. msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
  414. #: fdmprinter.def.json
  415. msgctxt "machine_max_feedrate_x label"
  416. msgid "Maximum Speed X"
  417. msgstr "Velocità massima X"
  418. #: fdmprinter.def.json
  419. msgctxt "machine_max_feedrate_x description"
  420. msgid "The maximum speed for the motor of the X-direction."
  421. msgstr "Indica la velocità massima del motore per la direzione X."
  422. #: fdmprinter.def.json
  423. msgctxt "machine_max_feedrate_y label"
  424. msgid "Maximum Speed Y"
  425. msgstr "Velocità massima Y"
  426. #: fdmprinter.def.json
  427. msgctxt "machine_max_feedrate_y description"
  428. msgid "The maximum speed for the motor of the Y-direction."
  429. msgstr "Indica la velocità massima del motore per la direzione Y."
  430. #: fdmprinter.def.json
  431. msgctxt "machine_max_feedrate_z label"
  432. msgid "Maximum Speed Z"
  433. msgstr "Velocità massima Z"
  434. #: fdmprinter.def.json
  435. msgctxt "machine_max_feedrate_z description"
  436. msgid "The maximum speed for the motor of the Z-direction."
  437. msgstr "Indica la velocità massima del motore per la direzione Z."
  438. #: fdmprinter.def.json
  439. msgctxt "machine_max_feedrate_e label"
  440. msgid "Maximum Feedrate"
  441. msgstr "Velocità di alimentazione massima"
  442. #: fdmprinter.def.json
  443. msgctxt "machine_max_feedrate_e description"
  444. msgid "The maximum speed of the filament."
  445. msgstr "Indica la velocità massima del filamento."
  446. #: fdmprinter.def.json
  447. msgctxt "machine_max_acceleration_x label"
  448. msgid "Maximum Acceleration X"
  449. msgstr "Accelerazione massima X"
  450. #: fdmprinter.def.json
  451. msgctxt "machine_max_acceleration_x description"
  452. msgid "Maximum acceleration for the motor of the X-direction"
  453. msgstr "Indica l’accelerazione massima del motore per la direzione X"
  454. #: fdmprinter.def.json
  455. msgctxt "machine_max_acceleration_y label"
  456. msgid "Maximum Acceleration Y"
  457. msgstr "Accelerazione massima Y"
  458. #: fdmprinter.def.json
  459. msgctxt "machine_max_acceleration_y description"
  460. msgid "Maximum acceleration for the motor of the Y-direction."
  461. msgstr "Indica l’accelerazione massima del motore per la direzione Y."
  462. #: fdmprinter.def.json
  463. msgctxt "machine_max_acceleration_z label"
  464. msgid "Maximum Acceleration Z"
  465. msgstr "Accelerazione massima Z"
  466. #: fdmprinter.def.json
  467. msgctxt "machine_max_acceleration_z description"
  468. msgid "Maximum acceleration for the motor of the Z-direction."
  469. msgstr "Indica l’accelerazione massima del motore per la direzione Z."
  470. #: fdmprinter.def.json
  471. msgctxt "machine_max_acceleration_e label"
  472. msgid "Maximum Filament Acceleration"
  473. msgstr "Accelerazione massima filamento"
  474. #: fdmprinter.def.json
  475. msgctxt "machine_max_acceleration_e description"
  476. msgid "Maximum acceleration for the motor of the filament."
  477. msgstr "Indica l’accelerazione massima del motore del filamento."
  478. #: fdmprinter.def.json
  479. msgctxt "machine_acceleration label"
  480. msgid "Default Acceleration"
  481. msgstr "Accelerazione predefinita"
  482. #: fdmprinter.def.json
  483. msgctxt "machine_acceleration description"
  484. msgid "The default acceleration of print head movement."
  485. msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa."
  486. #: fdmprinter.def.json
  487. msgctxt "machine_max_jerk_xy label"
  488. msgid "Default X-Y Jerk"
  489. msgstr "Jerk X-Y predefinito"
  490. #: fdmprinter.def.json
  491. msgctxt "machine_max_jerk_xy description"
  492. msgid "Default jerk for movement in the horizontal plane."
  493. msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale."
  494. #: fdmprinter.def.json
  495. msgctxt "machine_max_jerk_z label"
  496. msgid "Default Z Jerk"
  497. msgstr "Jerk Z predefinito"
  498. #: fdmprinter.def.json
  499. msgctxt "machine_max_jerk_z description"
  500. msgid "Default jerk for the motor of the Z-direction."
  501. msgstr "Indica il jerk predefinito del motore per la direzione Z."
  502. #: fdmprinter.def.json
  503. msgctxt "machine_max_jerk_e label"
  504. msgid "Default Filament Jerk"
  505. msgstr "Jerk filamento predefinito"
  506. #: fdmprinter.def.json
  507. msgctxt "machine_max_jerk_e description"
  508. msgid "Default jerk for the motor of the filament."
  509. msgstr "Indica il jerk predefinito del motore del filamento."
  510. #: fdmprinter.def.json
  511. msgctxt "machine_steps_per_mm_x label"
  512. msgid "Steps per Millimeter (X)"
  513. msgstr "Passi per millimetro (X)"
  514. #: fdmprinter.def.json
  515. msgctxt "machine_steps_per_mm_x description"
  516. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  517. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X."
  518. #: fdmprinter.def.json
  519. msgctxt "machine_steps_per_mm_y label"
  520. msgid "Steps per Millimeter (Y)"
  521. msgstr "Passi per millimetro (Y)"
  522. #: fdmprinter.def.json
  523. msgctxt "machine_steps_per_mm_y description"
  524. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  525. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y."
  526. #: fdmprinter.def.json
  527. msgctxt "machine_steps_per_mm_z label"
  528. msgid "Steps per Millimeter (Z)"
  529. msgstr "Passi per millimetro (Z)"
  530. #: fdmprinter.def.json
  531. msgctxt "machine_steps_per_mm_z description"
  532. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  533. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z."
  534. #: fdmprinter.def.json
  535. msgctxt "machine_steps_per_mm_e label"
  536. msgid "Steps per Millimeter (E)"
  537. msgstr "Passi per millimetro (E)"
  538. #: fdmprinter.def.json
  539. msgctxt "machine_steps_per_mm_e description"
  540. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  541. msgstr "I passi del motore passo-passo in un millimetro di estrusione."
  542. #: fdmprinter.def.json
  543. msgctxt "machine_endstop_positive_direction_x label"
  544. msgid "X Endstop in Positive Direction"
  545. msgstr "Endstop X in direzione positiva"
  546. #: fdmprinter.def.json
  547. msgctxt "machine_endstop_positive_direction_x description"
  548. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  549. msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)."
  550. #: fdmprinter.def.json
  551. msgctxt "machine_endstop_positive_direction_y label"
  552. msgid "Y Endstop in Positive Direction"
  553. msgstr "Endstop Y in direzione positiva"
  554. #: fdmprinter.def.json
  555. msgctxt "machine_endstop_positive_direction_y description"
  556. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  557. msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)."
  558. #: fdmprinter.def.json
  559. msgctxt "machine_endstop_positive_direction_z label"
  560. msgid "Z Endstop in Positive Direction"
  561. msgstr "Endstop Z in direzione positiva"
  562. #: fdmprinter.def.json
  563. msgctxt "machine_endstop_positive_direction_z description"
  564. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  565. msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)."
  566. #: fdmprinter.def.json
  567. msgctxt "machine_minimum_feedrate label"
  568. msgid "Minimum Feedrate"
  569. msgstr "Velocità di alimentazione minima"
  570. #: fdmprinter.def.json
  571. msgctxt "machine_minimum_feedrate description"
  572. msgid "The minimal movement speed of the print head."
  573. msgstr "Indica la velocità di spostamento minima della testina di stampa."
  574. #: fdmprinter.def.json
  575. msgctxt "machine_feeder_wheel_diameter label"
  576. msgid "Feeder Wheel Diameter"
  577. msgstr "Diametro ruota del tirafilo"
  578. #: fdmprinter.def.json
  579. msgctxt "machine_feeder_wheel_diameter description"
  580. msgid "The diameter of the wheel that drives the material in the feeder."
  581. msgstr "Il diametro della ruota che guida il materiale nel tirafilo."
  582. #: fdmprinter.def.json
  583. msgctxt "resolution label"
  584. msgid "Quality"
  585. msgstr "Qualità"
  586. #: fdmprinter.def.json
  587. msgctxt "resolution description"
  588. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  589. msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)"
  590. #: fdmprinter.def.json
  591. msgctxt "layer_height label"
  592. msgid "Layer Height"
  593. msgstr "Altezza dello strato"
  594. #: fdmprinter.def.json
  595. msgctxt "layer_height description"
  596. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  597. msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore."
  598. #: fdmprinter.def.json
  599. msgctxt "layer_height_0 label"
  600. msgid "Initial Layer Height"
  601. msgstr "Altezza dello strato iniziale"
  602. #: fdmprinter.def.json
  603. msgctxt "layer_height_0 description"
  604. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  605. msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa."
  606. #: fdmprinter.def.json
  607. msgctxt "line_width label"
  608. msgid "Line Width"
  609. msgstr "Larghezza della linea"
  610. #: fdmprinter.def.json
  611. msgctxt "line_width description"
  612. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  613. msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori."
  614. #: fdmprinter.def.json
  615. msgctxt "wall_line_width label"
  616. msgid "Wall Line Width"
  617. msgstr "Larghezza delle linee perimetrali"
  618. #: fdmprinter.def.json
  619. msgctxt "wall_line_width description"
  620. msgid "Width of a single wall line."
  621. msgstr "Indica la larghezza di una singola linea perimetrale."
  622. #: fdmprinter.def.json
  623. msgctxt "wall_line_width_0 label"
  624. msgid "Outer Wall Line Width"
  625. msgstr "Larghezza delle linee della parete esterna"
  626. #: fdmprinter.def.json
  627. msgctxt "wall_line_width_0 description"
  628. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  629. msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati."
  630. #: fdmprinter.def.json
  631. msgctxt "wall_line_width_x label"
  632. msgid "Inner Wall(s) Line Width"
  633. msgstr "Larghezza delle linee della parete interna"
  634. #: fdmprinter.def.json
  635. msgctxt "wall_line_width_x description"
  636. msgid "Width of a single wall line for all wall lines except the outermost one."
  637. msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna."
  638. #: fdmprinter.def.json
  639. msgctxt "skin_line_width label"
  640. msgid "Top/Bottom Line Width"
  641. msgstr "Larghezza delle linee superiore/inferiore"
  642. #: fdmprinter.def.json
  643. msgctxt "skin_line_width description"
  644. msgid "Width of a single top/bottom line."
  645. msgstr "Indica la larghezza di una singola linea superiore/inferiore."
  646. #: fdmprinter.def.json
  647. msgctxt "infill_line_width label"
  648. msgid "Infill Line Width"
  649. msgstr "Larghezza delle linee di riempimento"
  650. #: fdmprinter.def.json
  651. msgctxt "infill_line_width description"
  652. msgid "Width of a single infill line."
  653. msgstr "Indica la larghezza di una singola linea di riempimento."
  654. #: fdmprinter.def.json
  655. msgctxt "skirt_brim_line_width label"
  656. msgid "Skirt/Brim Line Width"
  657. msgstr "Larghezza delle linee dello skirt/brim"
  658. #: fdmprinter.def.json
  659. msgctxt "skirt_brim_line_width description"
  660. msgid "Width of a single skirt or brim line."
  661. msgstr "Indica la larghezza di una singola linea dello skirt o del brim."
  662. #: fdmprinter.def.json
  663. msgctxt "support_line_width label"
  664. msgid "Support Line Width"
  665. msgstr "Larghezza delle linee di supporto"
  666. #: fdmprinter.def.json
  667. msgctxt "support_line_width description"
  668. msgid "Width of a single support structure line."
  669. msgstr "Indica la larghezza di una singola linea di supporto."
  670. #: fdmprinter.def.json
  671. msgctxt "support_interface_line_width label"
  672. msgid "Support Interface Line Width"
  673. msgstr "Larghezza della linea dell’interfaccia di supporto"
  674. #: fdmprinter.def.json
  675. msgctxt "support_interface_line_width description"
  676. msgid "Width of a single line of support roof or floor."
  677. msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore."
  678. #: fdmprinter.def.json
  679. msgctxt "support_roof_line_width label"
  680. msgid "Support Roof Line Width"
  681. msgstr "Larghezza delle linee di supporto superiori"
  682. #: fdmprinter.def.json
  683. msgctxt "support_roof_line_width description"
  684. msgid "Width of a single support roof line."
  685. msgstr "Indica la larghezza di una singola linea di supporto superiore."
  686. #: fdmprinter.def.json
  687. msgctxt "support_bottom_line_width label"
  688. msgid "Support Floor Line Width"
  689. msgstr "Larghezza della linea di supporto inferiore"
  690. #: fdmprinter.def.json
  691. msgctxt "support_bottom_line_width description"
  692. msgid "Width of a single support floor line."
  693. msgstr "Indica la larghezza di una singola linea di supporto inferiore."
  694. #: fdmprinter.def.json
  695. msgctxt "prime_tower_line_width label"
  696. msgid "Prime Tower Line Width"
  697. msgstr "Larghezza della linea della torre di innesco"
  698. #: fdmprinter.def.json
  699. msgctxt "prime_tower_line_width description"
  700. msgid "Width of a single prime tower line."
  701. msgstr "Indica la larghezza di una singola linea della torre di innesco."
  702. #: fdmprinter.def.json
  703. msgctxt "initial_layer_line_width_factor label"
  704. msgid "Initial Layer Line Width"
  705. msgstr "Larghezza linea strato iniziale"
  706. #: fdmprinter.def.json
  707. msgctxt "initial_layer_line_width_factor description"
  708. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  709. msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano."
  710. #: fdmprinter.def.json
  711. msgctxt "shell label"
  712. msgid "Shell"
  713. msgstr "Guscio"
  714. #: fdmprinter.def.json
  715. msgctxt "shell description"
  716. msgid "Shell"
  717. msgstr "Guscio"
  718. #: fdmprinter.def.json
  719. msgctxt "wall_extruder_nr label"
  720. msgid "Wall Extruder"
  721. msgstr "Estrusore pareti"
  722. #: fdmprinter.def.json
  723. msgctxt "wall_extruder_nr description"
  724. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  725. msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla."
  726. #: fdmprinter.def.json
  727. msgctxt "wall_0_extruder_nr label"
  728. msgid "Outer Wall Extruder"
  729. msgstr "Estrusore parete esterna"
  730. #: fdmprinter.def.json
  731. msgctxt "wall_0_extruder_nr description"
  732. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  733. msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla."
  734. #: fdmprinter.def.json
  735. msgctxt "wall_x_extruder_nr label"
  736. msgid "Inner Wall Extruder"
  737. msgstr "Estrusore parete interna"
  738. #: fdmprinter.def.json
  739. msgctxt "wall_x_extruder_nr description"
  740. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  741. msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla."
  742. #: fdmprinter.def.json
  743. msgctxt "wall_thickness label"
  744. msgid "Wall Thickness"
  745. msgstr "Spessore delle pareti"
  746. #: fdmprinter.def.json
  747. msgctxt "wall_thickness description"
  748. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  749. msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti."
  750. #: fdmprinter.def.json
  751. msgctxt "wall_line_count label"
  752. msgid "Wall Line Count"
  753. msgstr "Numero delle linee perimetrali"
  754. #: fdmprinter.def.json
  755. msgctxt "wall_line_count description"
  756. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  757. msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero."
  758. #: fdmprinter.def.json
  759. msgctxt "wall_0_wipe_dist label"
  760. msgid "Outer Wall Wipe Distance"
  761. msgstr "Distanza del riempimento parete esterna"
  762. #: fdmprinter.def.json
  763. msgctxt "wall_0_wipe_dist description"
  764. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  765. msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z."
  766. #: fdmprinter.def.json
  767. msgctxt "roofing_extruder_nr label"
  768. msgid "Top Surface Skin Extruder"
  769. msgstr "Estrusore rivestimento superficie superiore"
  770. #: fdmprinter.def.json
  771. msgctxt "roofing_extruder_nr description"
  772. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  773. msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla."
  774. #: fdmprinter.def.json
  775. msgctxt "roofing_layer_count label"
  776. msgid "Top Surface Skin Layers"
  777. msgstr "Strati di rivestimento superficie superiore"
  778. #: fdmprinter.def.json
  779. msgctxt "roofing_layer_count description"
  780. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  781. msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata."
  782. #: fdmprinter.def.json
  783. msgctxt "top_bottom_extruder_nr label"
  784. msgid "Top/Bottom Extruder"
  785. msgstr "Estrusore superiore/inferiore"
  786. #: fdmprinter.def.json
  787. msgctxt "top_bottom_extruder_nr description"
  788. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  789. msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla."
  790. #: fdmprinter.def.json
  791. msgctxt "top_bottom_thickness label"
  792. msgid "Top/Bottom Thickness"
  793. msgstr "Spessore dello strato superiore/inferiore"
  794. #: fdmprinter.def.json
  795. msgctxt "top_bottom_thickness description"
  796. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  797. msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori."
  798. #: fdmprinter.def.json
  799. msgctxt "top_thickness label"
  800. msgid "Top Thickness"
  801. msgstr "Spessore dello strato superiore"
  802. #: fdmprinter.def.json
  803. msgctxt "top_thickness description"
  804. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  805. msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori."
  806. #: fdmprinter.def.json
  807. msgctxt "top_layers label"
  808. msgid "Top Layers"
  809. msgstr "Strati superiori"
  810. #: fdmprinter.def.json
  811. msgctxt "top_layers description"
  812. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  813. msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero."
  814. #: fdmprinter.def.json
  815. msgctxt "bottom_thickness label"
  816. msgid "Bottom Thickness"
  817. msgstr "Spessore degli strati inferiori"
  818. #: fdmprinter.def.json
  819. msgctxt "bottom_thickness description"
  820. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  821. msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori."
  822. #: fdmprinter.def.json
  823. msgctxt "bottom_layers label"
  824. msgid "Bottom Layers"
  825. msgstr "Strati inferiori"
  826. #: fdmprinter.def.json
  827. msgctxt "bottom_layers description"
  828. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  829. msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero."
  830. #: fdmprinter.def.json
  831. msgctxt "initial_bottom_layers label"
  832. msgid "Initial Bottom Layers"
  833. msgstr "Layer inferiori iniziali"
  834. #: fdmprinter.def.json
  835. msgctxt "initial_bottom_layers description"
  836. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  837. msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero."
  838. #: fdmprinter.def.json
  839. msgctxt "top_bottom_pattern label"
  840. msgid "Top/Bottom Pattern"
  841. msgstr "Configurazione dello strato superiore/inferiore"
  842. #: fdmprinter.def.json
  843. msgctxt "top_bottom_pattern description"
  844. msgid "The pattern of the top/bottom layers."
  845. msgstr "Indica la configurazione degli strati superiori/inferiori."
  846. #: fdmprinter.def.json
  847. msgctxt "top_bottom_pattern option lines"
  848. msgid "Lines"
  849. msgstr "Linee"
  850. #: fdmprinter.def.json
  851. msgctxt "top_bottom_pattern option concentric"
  852. msgid "Concentric"
  853. msgstr "Concentriche"
  854. #: fdmprinter.def.json
  855. msgctxt "top_bottom_pattern option zigzag"
  856. msgid "Zig Zag"
  857. msgstr "Zig Zag"
  858. #: fdmprinter.def.json
  859. msgctxt "top_bottom_pattern_0 label"
  860. msgid "Bottom Pattern Initial Layer"
  861. msgstr "Strato iniziale configurazione inferiore"
  862. #: fdmprinter.def.json
  863. msgctxt "top_bottom_pattern_0 description"
  864. msgid "The pattern on the bottom of the print on the first layer."
  865. msgstr "La configurazione al fondo della stampa sul primo strato."
  866. #: fdmprinter.def.json
  867. msgctxt "top_bottom_pattern_0 option lines"
  868. msgid "Lines"
  869. msgstr "Linee"
  870. #: fdmprinter.def.json
  871. msgctxt "top_bottom_pattern_0 option concentric"
  872. msgid "Concentric"
  873. msgstr "Concentriche"
  874. #: fdmprinter.def.json
  875. msgctxt "top_bottom_pattern_0 option zigzag"
  876. msgid "Zig Zag"
  877. msgstr "Zig Zag"
  878. #: fdmprinter.def.json
  879. msgctxt "connect_skin_polygons label"
  880. msgid "Connect Top/Bottom Polygons"
  881. msgstr "Collega poligoni superiori/inferiori"
  882. #: fdmprinter.def.json
  883. msgctxt "connect_skin_polygons description"
  884. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  885. msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore."
  886. #: fdmprinter.def.json
  887. msgctxt "skin_angles label"
  888. msgid "Top/Bottom Line Directions"
  889. msgstr "Direzioni delle linee superiori/inferiori"
  890. #: fdmprinter.def.json
  891. msgctxt "skin_angles description"
  892. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  893. msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)."
  894. #: fdmprinter.def.json
  895. msgctxt "wall_0_inset label"
  896. msgid "Outer Wall Inset"
  897. msgstr "Inserto parete esterna"
  898. #: fdmprinter.def.json
  899. msgctxt "wall_0_inset description"
  900. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  901. msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello."
  902. #: fdmprinter.def.json
  903. msgctxt "optimize_wall_printing_order label"
  904. msgid "Optimize Wall Printing Order"
  905. msgstr "Ottimizzazione sequenza di stampa pareti"
  906. #: fdmprinter.def.json
  907. msgctxt "optimize_wall_printing_order description"
  908. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  909. msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato."
  910. #: fdmprinter.def.json
  911. msgctxt "outer_inset_first label"
  912. msgid "Outer Before Inner Walls"
  913. msgstr "Pareti esterne prima di quelle interne"
  914. #: fdmprinter.def.json
  915. msgctxt "outer_inset_first description"
  916. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  917. msgstr "Quando abilitata, questa funzione stampa le pareti nell’ordine dall’esterno all’interno. In tal modo è possibile migliorare la precisione dimensionale in X e Y quando si utilizza una plastica ad alta viscosità come ABS; tuttavia può diminuire la qualità di stampa della superficie esterna, in particolare sugli sbalzi."
  918. #: fdmprinter.def.json
  919. msgctxt "alternate_extra_perimeter label"
  920. msgid "Alternate Extra Wall"
  921. msgstr "Parete supplementare alternativa"
  922. #: fdmprinter.def.json
  923. msgctxt "alternate_extra_perimeter description"
  924. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  925. msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti."
  926. #: fdmprinter.def.json
  927. msgctxt "travel_compensate_overlapping_walls_enabled label"
  928. msgid "Compensate Wall Overlaps"
  929. msgstr "Compensazione di sovrapposizioni di pareti"
  930. #: fdmprinter.def.json
  931. msgctxt "travel_compensate_overlapping_walls_enabled description"
  932. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  933. msgstr "Compensa il flusso per le parti di una parete che viene stampata dove è già presente una parete."
  934. #: fdmprinter.def.json
  935. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  936. msgid "Compensate Outer Wall Overlaps"
  937. msgstr "Compensazione di sovrapposizioni pareti esterne"
  938. #: fdmprinter.def.json
  939. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  940. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  941. msgstr "Compensa il flusso per le parti di una parete esterna che viene stampata dove è già presente una parete."
  942. #: fdmprinter.def.json
  943. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  944. msgid "Compensate Inner Wall Overlaps"
  945. msgstr "Compensazione di sovrapposizioni pareti interne"
  946. #: fdmprinter.def.json
  947. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  948. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  949. msgstr "Compensa il flusso per le parti di una parete interna che viene stampata dove è già presente una parete."
  950. #: fdmprinter.def.json
  951. msgctxt "wall_min_flow label"
  952. msgid "Minimum Wall Flow"
  953. msgstr "Flusso minimo della parete"
  954. #: fdmprinter.def.json
  955. msgctxt "wall_min_flow description"
  956. msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  957. msgstr "Flusso percentuale minimo ammesso per una linea perimetrale. La compensazione di sovrapposizione pareti riduce il flusso di una parete quando si trova vicino a una parete esistente. Le pareti con un flusso inferiore a questo valore saranno sostituite da uno spostamento. Quando si utilizza questa impostazione, si deve abilitare la compensazione della sovrapposizione pareti e stampare la parete esterna prima delle pareti interne."
  958. #: fdmprinter.def.json
  959. msgctxt "wall_min_flow_retract label"
  960. msgid "Prefer Retract"
  961. msgstr "Preferire retrazione"
  962. #: fdmprinter.def.json
  963. msgctxt "wall_min_flow_retract description"
  964. msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  965. msgstr "Se abilitata, la retrazione viene utilizzata al posto del combing per gli spostamenti che sostituiscono le pareti aventi un flusso inferiore alla soglia minima."
  966. #: fdmprinter.def.json
  967. msgctxt "fill_perimeter_gaps label"
  968. msgid "Fill Gaps Between Walls"
  969. msgstr "Riempimento degli interstizi tra le pareti"
  970. #: fdmprinter.def.json
  971. msgctxt "fill_perimeter_gaps description"
  972. msgid "Fills the gaps between walls where no walls fit."
  973. msgstr "Riempie gli spazi dove non è possibile inserire pareti."
  974. #: fdmprinter.def.json
  975. msgctxt "fill_perimeter_gaps option nowhere"
  976. msgid "Nowhere"
  977. msgstr "In nessun punto"
  978. #: fdmprinter.def.json
  979. msgctxt "fill_perimeter_gaps option everywhere"
  980. msgid "Everywhere"
  981. msgstr "In tutti i possibili punti"
  982. #: fdmprinter.def.json
  983. msgctxt "filter_out_tiny_gaps label"
  984. msgid "Filter Out Tiny Gaps"
  985. msgstr "Esclusione spazi minimi"
  986. #: fdmprinter.def.json
  987. msgctxt "filter_out_tiny_gaps description"
  988. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  989. msgstr "Esclude gli spazi minimi per ridurre le gocce sull’esterno del modello."
  990. #: fdmprinter.def.json
  991. msgctxt "fill_outline_gaps label"
  992. msgid "Print Thin Walls"
  993. msgstr "Stampa pareti sottili"
  994. #: fdmprinter.def.json
  995. msgctxt "fill_outline_gaps description"
  996. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  997. msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello."
  998. #: fdmprinter.def.json
  999. msgctxt "xy_offset label"
  1000. msgid "Horizontal Expansion"
  1001. msgstr "Espansione orizzontale"
  1002. #: fdmprinter.def.json
  1003. msgctxt "xy_offset description"
  1004. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  1005. msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli."
  1006. #: fdmprinter.def.json
  1007. msgctxt "xy_offset_layer_0 label"
  1008. msgid "Initial Layer Horizontal Expansion"
  1009. msgstr "Espansione orizzontale dello strato iniziale"
  1010. #: fdmprinter.def.json
  1011. msgctxt "xy_offset_layer_0 description"
  1012. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  1013. msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"."
  1014. #: fdmprinter.def.json
  1015. msgctxt "z_seam_type label"
  1016. msgid "Z Seam Alignment"
  1017. msgstr "Allineamento delle giunzioni a Z"
  1018. #: fdmprinter.def.json
  1019. msgctxt "z_seam_type description"
  1020. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  1021. msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce."
  1022. #: fdmprinter.def.json
  1023. msgctxt "z_seam_type option back"
  1024. msgid "User Specified"
  1025. msgstr "Specificato dall’utente"
  1026. #: fdmprinter.def.json
  1027. msgctxt "z_seam_type option shortest"
  1028. msgid "Shortest"
  1029. msgstr "Il più breve"
  1030. #: fdmprinter.def.json
  1031. msgctxt "z_seam_type option random"
  1032. msgid "Random"
  1033. msgstr "Casuale"
  1034. #: fdmprinter.def.json
  1035. msgctxt "z_seam_type option sharpest_corner"
  1036. msgid "Sharpest Corner"
  1037. msgstr "Angolo più acuto"
  1038. #: fdmprinter.def.json
  1039. msgctxt "z_seam_position label"
  1040. msgid "Z Seam Position"
  1041. msgstr "Posizione della cucitura in Z"
  1042. #: fdmprinter.def.json
  1043. msgctxt "z_seam_position description"
  1044. msgid "The position near where to start printing each part in a layer."
  1045. msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer."
  1046. #: fdmprinter.def.json
  1047. msgctxt "z_seam_position option backleft"
  1048. msgid "Back Left"
  1049. msgstr "Indietro a sinistra"
  1050. #: fdmprinter.def.json
  1051. msgctxt "z_seam_position option back"
  1052. msgid "Back"
  1053. msgstr "Indietro"
  1054. #: fdmprinter.def.json
  1055. msgctxt "z_seam_position option backright"
  1056. msgid "Back Right"
  1057. msgstr "Indietro a destra"
  1058. #: fdmprinter.def.json
  1059. msgctxt "z_seam_position option right"
  1060. msgid "Right"
  1061. msgstr "Destra"
  1062. #: fdmprinter.def.json
  1063. msgctxt "z_seam_position option frontright"
  1064. msgid "Front Right"
  1065. msgstr "Avanti a destra"
  1066. #: fdmprinter.def.json
  1067. msgctxt "z_seam_position option front"
  1068. msgid "Front"
  1069. msgstr "Avanti"
  1070. #: fdmprinter.def.json
  1071. msgctxt "z_seam_position option frontleft"
  1072. msgid "Front Left"
  1073. msgstr "Avanti a sinistra"
  1074. #: fdmprinter.def.json
  1075. msgctxt "z_seam_position option left"
  1076. msgid "Left"
  1077. msgstr "Sinistra"
  1078. #: fdmprinter.def.json
  1079. msgctxt "z_seam_x label"
  1080. msgid "Z Seam X"
  1081. msgstr "Giunzione Z X"
  1082. #: fdmprinter.def.json
  1083. msgctxt "z_seam_x description"
  1084. msgid "The X coordinate of the position near where to start printing each part in a layer."
  1085. msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  1086. #: fdmprinter.def.json
  1087. msgctxt "z_seam_y label"
  1088. msgid "Z Seam Y"
  1089. msgstr "Giunzione Z Y"
  1090. #: fdmprinter.def.json
  1091. msgctxt "z_seam_y description"
  1092. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1093. msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  1094. #: fdmprinter.def.json
  1095. msgctxt "z_seam_corner label"
  1096. msgid "Seam Corner Preference"
  1097. msgstr "Preferenze angolo giunzione"
  1098. #: fdmprinter.def.json
  1099. msgctxt "z_seam_corner description"
  1100. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  1101. msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno."
  1102. #: fdmprinter.def.json
  1103. msgctxt "z_seam_corner option z_seam_corner_none"
  1104. msgid "None"
  1105. msgstr "Nessuno"
  1106. #: fdmprinter.def.json
  1107. msgctxt "z_seam_corner option z_seam_corner_inner"
  1108. msgid "Hide Seam"
  1109. msgstr "Nascondi giunzione"
  1110. #: fdmprinter.def.json
  1111. msgctxt "z_seam_corner option z_seam_corner_outer"
  1112. msgid "Expose Seam"
  1113. msgstr "Esponi giunzione"
  1114. #: fdmprinter.def.json
  1115. msgctxt "z_seam_corner option z_seam_corner_any"
  1116. msgid "Hide or Expose Seam"
  1117. msgstr "Nascondi o esponi giunzione"
  1118. #: fdmprinter.def.json
  1119. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1120. msgid "Smart Hiding"
  1121. msgstr "Occultamento intelligente"
  1122. #: fdmprinter.def.json
  1123. msgctxt "z_seam_relative label"
  1124. msgid "Z Seam Relative"
  1125. msgstr "Riferimento giunzione Z"
  1126. #: fdmprinter.def.json
  1127. msgctxt "z_seam_relative description"
  1128. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  1129. msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa."
  1130. #: fdmprinter.def.json
  1131. msgctxt "skin_no_small_gaps_heuristic label"
  1132. msgid "No Skin in Z Gaps"
  1133. msgstr "Nessun rivest. est. negli interstizi a Z"
  1134. #: fdmprinter.def.json
  1135. msgctxt "skin_no_small_gaps_heuristic description"
  1136. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  1137. msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria."
  1138. #: fdmprinter.def.json
  1139. msgctxt "skin_outline_count label"
  1140. msgid "Extra Skin Wall Count"
  1141. msgstr "Numero di pareti di rivestimento esterno supplementari"
  1142. #: fdmprinter.def.json
  1143. msgctxt "skin_outline_count description"
  1144. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  1145. msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento."
  1146. #: fdmprinter.def.json
  1147. msgctxt "ironing_enabled label"
  1148. msgid "Enable Ironing"
  1149. msgstr "Abilita stiratura"
  1150. #: fdmprinter.def.json
  1151. msgctxt "ironing_enabled description"
  1152. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1153. msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale."
  1154. #: fdmprinter.def.json
  1155. msgctxt "ironing_only_highest_layer label"
  1156. msgid "Iron Only Highest Layer"
  1157. msgstr "Stiramento del solo strato più elevato"
  1158. #: fdmprinter.def.json
  1159. msgctxt "ironing_only_highest_layer description"
  1160. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1161. msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia."
  1162. #: fdmprinter.def.json
  1163. msgctxt "ironing_pattern label"
  1164. msgid "Ironing Pattern"
  1165. msgstr "Configurazione di stiratura"
  1166. #: fdmprinter.def.json
  1167. msgctxt "ironing_pattern description"
  1168. msgid "The pattern to use for ironing top surfaces."
  1169. msgstr "Configurazione utilizzata per la stiratura della superficie superiore."
  1170. #: fdmprinter.def.json
  1171. msgctxt "ironing_pattern option concentric"
  1172. msgid "Concentric"
  1173. msgstr "Concentrica"
  1174. #: fdmprinter.def.json
  1175. msgctxt "ironing_pattern option zigzag"
  1176. msgid "Zig Zag"
  1177. msgstr "Zig Zag"
  1178. #: fdmprinter.def.json
  1179. msgctxt "ironing_line_spacing label"
  1180. msgid "Ironing Line Spacing"
  1181. msgstr "Spaziatura delle linee di stiratura"
  1182. #: fdmprinter.def.json
  1183. msgctxt "ironing_line_spacing description"
  1184. msgid "The distance between the lines of ironing."
  1185. msgstr "Distanza tra le linee di stiratura."
  1186. #: fdmprinter.def.json
  1187. msgctxt "ironing_flow label"
  1188. msgid "Ironing Flow"
  1189. msgstr "Flusso di stiratura"
  1190. #: fdmprinter.def.json
  1191. msgctxt "ironing_flow description"
  1192. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  1193. msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie."
  1194. #: fdmprinter.def.json
  1195. msgctxt "ironing_inset label"
  1196. msgid "Ironing Inset"
  1197. msgstr "Inserto di stiratura"
  1198. #: fdmprinter.def.json
  1199. msgctxt "ironing_inset description"
  1200. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  1201. msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa."
  1202. #: fdmprinter.def.json
  1203. msgctxt "speed_ironing label"
  1204. msgid "Ironing Speed"
  1205. msgstr "Velocità di stiratura"
  1206. #: fdmprinter.def.json
  1207. msgctxt "speed_ironing description"
  1208. msgid "The speed at which to pass over the top surface."
  1209. msgstr "Velocità alla quale passare sopra la superficie superiore."
  1210. #: fdmprinter.def.json
  1211. msgctxt "acceleration_ironing label"
  1212. msgid "Ironing Acceleration"
  1213. msgstr "Accelerazione di stiratura"
  1214. #: fdmprinter.def.json
  1215. msgctxt "acceleration_ironing description"
  1216. msgid "The acceleration with which ironing is performed."
  1217. msgstr "L’accelerazione con cui viene effettuata la stiratura."
  1218. #: fdmprinter.def.json
  1219. msgctxt "jerk_ironing label"
  1220. msgid "Ironing Jerk"
  1221. msgstr "Jerk stiratura"
  1222. #: fdmprinter.def.json
  1223. msgctxt "jerk_ironing description"
  1224. msgid "The maximum instantaneous velocity change while performing ironing."
  1225. msgstr "Indica la variazione della velocità istantanea massima durante la stiratura."
  1226. #: fdmprinter.def.json
  1227. msgctxt "skin_overlap label"
  1228. msgid "Skin Overlap Percentage"
  1229. msgstr "Percentuale di sovrapposizione del rivestimento esterno"
  1230. #: fdmprinter.def.json
  1231. msgctxt "skin_overlap description"
  1232. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1233. msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete."
  1234. #: fdmprinter.def.json
  1235. msgctxt "skin_overlap_mm label"
  1236. msgid "Skin Overlap"
  1237. msgstr "Sovrapposizione del rivestimento esterno"
  1238. #: fdmprinter.def.json
  1239. msgctxt "skin_overlap_mm description"
  1240. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1241. msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete."
  1242. #: fdmprinter.def.json
  1243. msgctxt "infill label"
  1244. msgid "Infill"
  1245. msgstr "Riempimento"
  1246. #: fdmprinter.def.json
  1247. msgctxt "infill description"
  1248. msgid "Infill"
  1249. msgstr "Riempimento"
  1250. #: fdmprinter.def.json
  1251. msgctxt "infill_extruder_nr label"
  1252. msgid "Infill Extruder"
  1253. msgstr "Estrusore riempimento"
  1254. #: fdmprinter.def.json
  1255. msgctxt "infill_extruder_nr description"
  1256. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1257. msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla."
  1258. #: fdmprinter.def.json
  1259. msgctxt "infill_sparse_density label"
  1260. msgid "Infill Density"
  1261. msgstr "Densità del riempimento"
  1262. #: fdmprinter.def.json
  1263. msgctxt "infill_sparse_density description"
  1264. msgid "Adjusts the density of infill of the print."
  1265. msgstr "Regola la densità del riempimento della stampa."
  1266. #: fdmprinter.def.json
  1267. msgctxt "infill_line_distance label"
  1268. msgid "Infill Line Distance"
  1269. msgstr "Distanza tra le linee di riempimento"
  1270. #: fdmprinter.def.json
  1271. msgctxt "infill_line_distance description"
  1272. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1273. msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento."
  1274. #: fdmprinter.def.json
  1275. msgctxt "infill_pattern label"
  1276. msgid "Infill Pattern"
  1277. msgstr "Configurazione di riempimento"
  1278. #: fdmprinter.def.json
  1279. msgctxt "infill_pattern description"
  1280. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  1281. msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione."
  1282. #: fdmprinter.def.json
  1283. msgctxt "infill_pattern option grid"
  1284. msgid "Grid"
  1285. msgstr "Griglia"
  1286. #: fdmprinter.def.json
  1287. msgctxt "infill_pattern option lines"
  1288. msgid "Lines"
  1289. msgstr "Linee"
  1290. #: fdmprinter.def.json
  1291. msgctxt "infill_pattern option triangles"
  1292. msgid "Triangles"
  1293. msgstr "Triangoli"
  1294. #: fdmprinter.def.json
  1295. msgctxt "infill_pattern option trihexagon"
  1296. msgid "Tri-Hexagon"
  1297. msgstr "Tri-esagonale"
  1298. #: fdmprinter.def.json
  1299. msgctxt "infill_pattern option cubic"
  1300. msgid "Cubic"
  1301. msgstr "Cubo"
  1302. #: fdmprinter.def.json
  1303. msgctxt "infill_pattern option cubicsubdiv"
  1304. msgid "Cubic Subdivision"
  1305. msgstr "Suddivisione in cubi"
  1306. #: fdmprinter.def.json
  1307. msgctxt "infill_pattern option tetrahedral"
  1308. msgid "Octet"
  1309. msgstr "Ottagonale"
  1310. #: fdmprinter.def.json
  1311. msgctxt "infill_pattern option quarter_cubic"
  1312. msgid "Quarter Cubic"
  1313. msgstr "Quarto di cubo"
  1314. #: fdmprinter.def.json
  1315. msgctxt "infill_pattern option concentric"
  1316. msgid "Concentric"
  1317. msgstr "Concentriche"
  1318. #: fdmprinter.def.json
  1319. msgctxt "infill_pattern option zigzag"
  1320. msgid "Zig Zag"
  1321. msgstr "Zig Zag"
  1322. #: fdmprinter.def.json
  1323. msgctxt "infill_pattern option cross"
  1324. msgid "Cross"
  1325. msgstr "Incrociata"
  1326. #: fdmprinter.def.json
  1327. msgctxt "infill_pattern option cross_3d"
  1328. msgid "Cross 3D"
  1329. msgstr "Incrociata 3D"
  1330. #: fdmprinter.def.json
  1331. msgctxt "infill_pattern option gyroid"
  1332. msgid "Gyroid"
  1333. msgstr "Gyroid"
  1334. #: fdmprinter.def.json
  1335. msgctxt "zig_zaggify_infill label"
  1336. msgid "Connect Infill Lines"
  1337. msgstr "Collegamento delle linee di riempimento"
  1338. #: fdmprinter.def.json
  1339. msgctxt "zig_zaggify_infill description"
  1340. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  1341. msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato."
  1342. #: fdmprinter.def.json
  1343. msgctxt "connect_infill_polygons label"
  1344. msgid "Connect Infill Polygons"
  1345. msgstr "Collega poligoni di riempimento"
  1346. #: fdmprinter.def.json
  1347. msgctxt "connect_infill_polygons description"
  1348. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  1349. msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento."
  1350. #: fdmprinter.def.json
  1351. msgctxt "infill_angles label"
  1352. msgid "Infill Line Directions"
  1353. msgstr "Direzioni delle linee di riempimento"
  1354. #: fdmprinter.def.json
  1355. msgctxt "infill_angles description"
  1356. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  1357. msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)."
  1358. #: fdmprinter.def.json
  1359. msgctxt "infill_offset_x label"
  1360. msgid "Infill X Offset"
  1361. msgstr "Offset X riempimento"
  1362. #: fdmprinter.def.json
  1363. msgctxt "infill_offset_x description"
  1364. msgid "The infill pattern is moved this distance along the X axis."
  1365. msgstr "Il riempimento si sposta di questa distanza lungo l'asse X."
  1366. #: fdmprinter.def.json
  1367. msgctxt "infill_offset_y label"
  1368. msgid "Infill Y Offset"
  1369. msgstr "Offset Y riempimento"
  1370. #: fdmprinter.def.json
  1371. msgctxt "infill_offset_y description"
  1372. msgid "The infill pattern is moved this distance along the Y axis."
  1373. msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y."
  1374. #: fdmprinter.def.json
  1375. msgctxt "infill_randomize_start_location label"
  1376. msgid "Randomize Infill Start"
  1377. msgstr "Avvio con riempimento casuale"
  1378. #: fdmprinter.def.json
  1379. msgctxt "infill_randomize_start_location description"
  1380. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  1381. msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo."
  1382. #: fdmprinter.def.json
  1383. msgctxt "infill_multiplier label"
  1384. msgid "Infill Line Multiplier"
  1385. msgstr "Moltiplicatore delle linee di riempimento"
  1386. #: fdmprinter.def.json
  1387. msgctxt "infill_multiplier description"
  1388. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  1389. msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano."
  1390. #: fdmprinter.def.json
  1391. msgctxt "infill_wall_line_count label"
  1392. msgid "Extra Infill Wall Count"
  1393. msgstr "Conteggio pareti di riempimento supplementari"
  1394. #: fdmprinter.def.json
  1395. msgctxt "infill_wall_line_count description"
  1396. msgid ""
  1397. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  1398. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  1399. msgstr ""
  1400. "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare.\n"
  1401. "Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente."
  1402. #: fdmprinter.def.json
  1403. msgctxt "sub_div_rad_add label"
  1404. msgid "Cubic Subdivision Shell"
  1405. msgstr "Guscio suddivisione in cubi"
  1406. #: fdmprinter.def.json
  1407. msgctxt "sub_div_rad_add description"
  1408. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  1409. msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello."
  1410. #: fdmprinter.def.json
  1411. msgctxt "infill_overlap label"
  1412. msgid "Infill Overlap Percentage"
  1413. msgstr "Percentuale di sovrapposizione del riempimento"
  1414. #: fdmprinter.def.json
  1415. msgctxt "infill_overlap description"
  1416. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  1417. msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  1418. #: fdmprinter.def.json
  1419. msgctxt "infill_overlap_mm label"
  1420. msgid "Infill Overlap"
  1421. msgstr "Sovrapposizione del riempimento"
  1422. #: fdmprinter.def.json
  1423. msgctxt "infill_overlap_mm description"
  1424. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1425. msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  1426. #: fdmprinter.def.json
  1427. msgctxt "infill_wipe_dist label"
  1428. msgid "Infill Wipe Distance"
  1429. msgstr "Distanza del riempimento"
  1430. #: fdmprinter.def.json
  1431. msgctxt "infill_wipe_dist description"
  1432. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  1433. msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento."
  1434. #: fdmprinter.def.json
  1435. msgctxt "infill_sparse_thickness label"
  1436. msgid "Infill Layer Thickness"
  1437. msgstr "Spessore dello strato di riempimento"
  1438. #: fdmprinter.def.json
  1439. msgctxt "infill_sparse_thickness description"
  1440. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1441. msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato."
  1442. #: fdmprinter.def.json
  1443. msgctxt "gradual_infill_steps label"
  1444. msgid "Gradual Infill Steps"
  1445. msgstr "Fasi di riempimento graduale"
  1446. #: fdmprinter.def.json
  1447. msgctxt "gradual_infill_steps description"
  1448. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  1449. msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento."
  1450. #: fdmprinter.def.json
  1451. msgctxt "gradual_infill_step_height label"
  1452. msgid "Gradual Infill Step Height"
  1453. msgstr "Altezza fasi di riempimento graduale"
  1454. #: fdmprinter.def.json
  1455. msgctxt "gradual_infill_step_height description"
  1456. msgid "The height of infill of a given density before switching to half the density."
  1457. msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità."
  1458. #: fdmprinter.def.json
  1459. msgctxt "infill_before_walls label"
  1460. msgid "Infill Before Walls"
  1461. msgstr "Riempimento prima delle pareti"
  1462. #: fdmprinter.def.json
  1463. msgctxt "infill_before_walls description"
  1464. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  1465. msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie."
  1466. #: fdmprinter.def.json
  1467. msgctxt "min_infill_area label"
  1468. msgid "Minimum Infill Area"
  1469. msgstr "Area minima riempimento"
  1470. #: fdmprinter.def.json
  1471. msgctxt "min_infill_area description"
  1472. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1473. msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)."
  1474. #: fdmprinter.def.json
  1475. msgctxt "infill_support_enabled label"
  1476. msgid "Infill Support"
  1477. msgstr "Supporto riempimento"
  1478. #: fdmprinter.def.json
  1479. msgctxt "infill_support_enabled description"
  1480. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  1481. msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto."
  1482. #: fdmprinter.def.json
  1483. msgctxt "infill_support_angle label"
  1484. msgid "Infill Overhang Angle"
  1485. msgstr "Angolo di sbalzo del riempimento"
  1486. #: fdmprinter.def.json
  1487. msgctxt "infill_support_angle description"
  1488. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  1489. msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento."
  1490. #: fdmprinter.def.json
  1491. msgctxt "skin_preshrink label"
  1492. msgid "Skin Removal Width"
  1493. msgstr "Larghezza rimozione rivestimento"
  1494. #: fdmprinter.def.json
  1495. msgctxt "skin_preshrink description"
  1496. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  1497. msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello."
  1498. #: fdmprinter.def.json
  1499. msgctxt "top_skin_preshrink label"
  1500. msgid "Top Skin Removal Width"
  1501. msgstr "Larghezza rimozione rivestimento superiore"
  1502. #: fdmprinter.def.json
  1503. msgctxt "top_skin_preshrink description"
  1504. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  1505. msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello."
  1506. #: fdmprinter.def.json
  1507. msgctxt "bottom_skin_preshrink label"
  1508. msgid "Bottom Skin Removal Width"
  1509. msgstr "Larghezza rimozione rivestimento inferiore"
  1510. #: fdmprinter.def.json
  1511. msgctxt "bottom_skin_preshrink description"
  1512. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  1513. msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello."
  1514. #: fdmprinter.def.json
  1515. msgctxt "expand_skins_expand_distance label"
  1516. msgid "Skin Expand Distance"
  1517. msgstr "Distanza prolunga rivestimento esterno"
  1518. #: fdmprinter.def.json
  1519. msgctxt "expand_skins_expand_distance description"
  1520. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  1521. msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato."
  1522. #: fdmprinter.def.json
  1523. msgctxt "top_skin_expand_distance label"
  1524. msgid "Top Skin Expand Distance"
  1525. msgstr "Distanza prolunga rivestimento superiore"
  1526. #: fdmprinter.def.json
  1527. msgctxt "top_skin_expand_distance description"
  1528. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  1529. msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato."
  1530. #: fdmprinter.def.json
  1531. msgctxt "bottom_skin_expand_distance label"
  1532. msgid "Bottom Skin Expand Distance"
  1533. msgstr "Distanza prolunga rivestimento inferiore"
  1534. #: fdmprinter.def.json
  1535. msgctxt "bottom_skin_expand_distance description"
  1536. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  1537. msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato."
  1538. #: fdmprinter.def.json
  1539. msgctxt "max_skin_angle_for_expansion label"
  1540. msgid "Maximum Skin Angle for Expansion"
  1541. msgstr "Angolo massimo rivestimento esterno per prolunga"
  1542. #: fdmprinter.def.json
  1543. msgctxt "max_skin_angle_for_expansion description"
  1544. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  1545. msgstr "Per le superfici inferiori e/o superiori dell’oggetto con un angolo maggiore di questa impostazione non verrà prolungato il rivestimento esterno superiore/inferiore. In tal modo si evita di prolungare le aree del rivestimento esterno strette create quando la superficie del modello ha un’inclinazione prossima al verticale. Un angolo di 0° è orizzontale, mentre un angolo di 90° è verticale."
  1546. #: fdmprinter.def.json
  1547. msgctxt "min_skin_width_for_expansion label"
  1548. msgid "Minimum Skin Width for Expansion"
  1549. msgstr "Larghezza minima rivestimento esterno per prolunga"
  1550. #: fdmprinter.def.json
  1551. msgctxt "min_skin_width_for_expansion description"
  1552. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  1553. msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale."
  1554. #: fdmprinter.def.json
  1555. msgctxt "skin_edge_support_thickness label"
  1556. msgid "Skin Edge Support Thickness"
  1557. msgstr ""
  1558. #: fdmprinter.def.json
  1559. msgctxt "skin_edge_support_thickness description"
  1560. msgid "The thickness of the extra infill that supports skin edges."
  1561. msgstr ""
  1562. #: fdmprinter.def.json
  1563. msgctxt "skin_edge_support_layers label"
  1564. msgid "Skin Edge Support Layers"
  1565. msgstr ""
  1566. #: fdmprinter.def.json
  1567. msgctxt "skin_edge_support_layers description"
  1568. msgid "The number of infill layers that supports skin edges."
  1569. msgstr ""
  1570. #: fdmprinter.def.json
  1571. msgctxt "material label"
  1572. msgid "Material"
  1573. msgstr "Materiale"
  1574. #: fdmprinter.def.json
  1575. msgctxt "material description"
  1576. msgid "Material"
  1577. msgstr "Materiale"
  1578. #: fdmprinter.def.json
  1579. msgctxt "default_material_print_temperature label"
  1580. msgid "Default Printing Temperature"
  1581. msgstr "Temperatura di stampa preimpostata"
  1582. #: fdmprinter.def.json
  1583. msgctxt "default_material_print_temperature description"
  1584. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  1585. msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore"
  1586. #: fdmprinter.def.json
  1587. msgctxt "build_volume_temperature label"
  1588. msgid "Build Volume Temperature"
  1589. msgstr "Temperatura volume di stampa"
  1590. #: fdmprinter.def.json
  1591. msgctxt "build_volume_temperature description"
  1592. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1593. msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata."
  1594. #: fdmprinter.def.json
  1595. msgctxt "material_print_temperature label"
  1596. msgid "Printing Temperature"
  1597. msgstr "Temperatura di stampa"
  1598. #: fdmprinter.def.json
  1599. msgctxt "material_print_temperature description"
  1600. msgid "The temperature used for printing."
  1601. msgstr "Indica la temperatura usata per la stampa."
  1602. #: fdmprinter.def.json
  1603. msgctxt "material_print_temperature_layer_0 label"
  1604. msgid "Printing Temperature Initial Layer"
  1605. msgstr "Temperatura di stampa Strato iniziale"
  1606. #: fdmprinter.def.json
  1607. msgctxt "material_print_temperature_layer_0 description"
  1608. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1609. msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale."
  1610. #: fdmprinter.def.json
  1611. msgctxt "material_initial_print_temperature label"
  1612. msgid "Initial Printing Temperature"
  1613. msgstr "Temperatura di stampa iniziale"
  1614. #: fdmprinter.def.json
  1615. msgctxt "material_initial_print_temperature description"
  1616. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1617. msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa."
  1618. #: fdmprinter.def.json
  1619. msgctxt "material_final_print_temperature label"
  1620. msgid "Final Printing Temperature"
  1621. msgstr "Temperatura di stampa finale"
  1622. #: fdmprinter.def.json
  1623. msgctxt "material_final_print_temperature description"
  1624. msgid "The temperature to which to already start cooling down just before the end of printing."
  1625. msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa."
  1626. #: fdmprinter.def.json
  1627. msgctxt "material_extrusion_cool_down_speed label"
  1628. msgid "Extrusion Cool Down Speed Modifier"
  1629. msgstr "Modificatore della velocità di raffreddamento estrusione"
  1630. #: fdmprinter.def.json
  1631. msgctxt "material_extrusion_cool_down_speed description"
  1632. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  1633. msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione."
  1634. #: fdmprinter.def.json
  1635. msgctxt "default_material_bed_temperature label"
  1636. msgid "Default Build Plate Temperature"
  1637. msgstr "Temperatura piano di stampa preimpostata"
  1638. #: fdmprinter.def.json
  1639. msgctxt "default_material_bed_temperature description"
  1640. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  1641. msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore"
  1642. #: fdmprinter.def.json
  1643. msgctxt "material_bed_temperature label"
  1644. msgid "Build Plate Temperature"
  1645. msgstr "Temperatura piano di stampa"
  1646. #: fdmprinter.def.json
  1647. msgctxt "material_bed_temperature description"
  1648. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1649. msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, la temperatura del piano non si regola."
  1650. #: fdmprinter.def.json
  1651. msgctxt "material_bed_temperature_layer_0 label"
  1652. msgid "Build Plate Temperature Initial Layer"
  1653. msgstr "Temperatura piano di stampa Strato iniziale"
  1654. #: fdmprinter.def.json
  1655. msgctxt "material_bed_temperature_layer_0 description"
  1656. msgid "The temperature used for the heated build plate at the first layer."
  1657. msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato."
  1658. #: fdmprinter.def.json
  1659. msgctxt "material_adhesion_tendency label"
  1660. msgid "Adhesion Tendency"
  1661. msgstr "Tendenza di adesione"
  1662. #: fdmprinter.def.json
  1663. msgctxt "material_adhesion_tendency description"
  1664. msgid "Surface adhesion tendency."
  1665. msgstr "Tendenza di adesione superficiale."
  1666. #: fdmprinter.def.json
  1667. msgctxt "material_surface_energy label"
  1668. msgid "Surface Energy"
  1669. msgstr "Energia superficiale"
  1670. #: fdmprinter.def.json
  1671. msgctxt "material_surface_energy description"
  1672. msgid "Surface energy."
  1673. msgstr "Energia superficiale."
  1674. #: fdmprinter.def.json
  1675. msgctxt "material_shrinkage_percentage label"
  1676. msgid "Shrinkage Ratio"
  1677. msgstr "Tasso di contrazione"
  1678. #: fdmprinter.def.json
  1679. msgctxt "material_shrinkage_percentage description"
  1680. msgid "Shrinkage ratio in percentage."
  1681. msgstr "Il tasso di contrazione in percentuale."
  1682. #: fdmprinter.def.json
  1683. msgctxt "material_crystallinity label"
  1684. msgid "Crystalline Material"
  1685. msgstr "Materiale cristallino"
  1686. #: fdmprinter.def.json
  1687. msgctxt "material_crystallinity description"
  1688. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1689. msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?"
  1690. #: fdmprinter.def.json
  1691. msgctxt "material_anti_ooze_retracted_position label"
  1692. msgid "Anti-ooze Retracted Position"
  1693. msgstr "Posizione retratta anti fuoriuscita di materiale"
  1694. #: fdmprinter.def.json
  1695. msgctxt "material_anti_ooze_retracted_position description"
  1696. msgid "How far the material needs to be retracted before it stops oozing."
  1697. msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire."
  1698. #: fdmprinter.def.json
  1699. msgctxt "material_anti_ooze_retraction_speed label"
  1700. msgid "Anti-ooze Retraction Speed"
  1701. msgstr "Velocità di retrazione anti fuoriuscita del materiale"
  1702. #: fdmprinter.def.json
  1703. msgctxt "material_anti_ooze_retraction_speed description"
  1704. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1705. msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale."
  1706. #: fdmprinter.def.json
  1707. msgctxt "material_break_preparation_retracted_position label"
  1708. msgid "Break Preparation Retracted Position"
  1709. msgstr "Posizione di retrazione prima della rottura"
  1710. #: fdmprinter.def.json
  1711. msgctxt "material_break_preparation_retracted_position description"
  1712. msgid "How far the filament can be stretched before it breaks, while heated."
  1713. msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento."
  1714. #: fdmprinter.def.json
  1715. msgctxt "material_break_preparation_speed label"
  1716. msgid "Break Preparation Retraction Speed"
  1717. msgstr "Velocità di retrazione prima della rottura"
  1718. #: fdmprinter.def.json
  1719. msgctxt "material_break_preparation_speed description"
  1720. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1721. msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione."
  1722. #: fdmprinter.def.json
  1723. msgctxt "material_break_preparation_temperature label"
  1724. msgid "Break Preparation Temperature"
  1725. msgstr ""
  1726. #: fdmprinter.def.json
  1727. msgctxt "material_break_preparation_temperature description"
  1728. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1729. msgstr ""
  1730. #: fdmprinter.def.json
  1731. msgctxt "material_break_retracted_position label"
  1732. msgid "Break Retracted Position"
  1733. msgstr "Posizione di retrazione per la rottura"
  1734. #: fdmprinter.def.json
  1735. msgctxt "material_break_retracted_position description"
  1736. msgid "How far to retract the filament in order to break it cleanly."
  1737. msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta."
  1738. #: fdmprinter.def.json
  1739. msgctxt "material_break_speed label"
  1740. msgid "Break Retraction Speed"
  1741. msgstr "Velocità di retrazione per la rottura"
  1742. #: fdmprinter.def.json
  1743. msgctxt "material_break_speed description"
  1744. msgid "The speed at which to retract the filament in order to break it cleanly."
  1745. msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto."
  1746. #: fdmprinter.def.json
  1747. msgctxt "material_break_temperature label"
  1748. msgid "Break Temperature"
  1749. msgstr "Temperatura di rottura"
  1750. #: fdmprinter.def.json
  1751. msgctxt "material_break_temperature description"
  1752. msgid "The temperature at which the filament is broken for a clean break."
  1753. msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta."
  1754. #: fdmprinter.def.json
  1755. msgctxt "material_flush_purge_speed label"
  1756. msgid "Flush Purge Speed"
  1757. msgstr ""
  1758. #: fdmprinter.def.json
  1759. msgctxt "material_flush_purge_speed description"
  1760. msgid "Material Station internal value"
  1761. msgstr ""
  1762. #: fdmprinter.def.json
  1763. msgctxt "material_flush_purge_length label"
  1764. msgid "Flush Purge Length"
  1765. msgstr ""
  1766. #: fdmprinter.def.json
  1767. msgctxt "material_flush_purge_length description"
  1768. msgid "Material Station internal value"
  1769. msgstr ""
  1770. #: fdmprinter.def.json
  1771. msgctxt "material_end_of_filament_purge_speed label"
  1772. msgid "End Of Filament Purge Speed"
  1773. msgstr ""
  1774. #: fdmprinter.def.json
  1775. msgctxt "material_end_of_filament_purge_speed description"
  1776. msgid "Material Station internal value"
  1777. msgstr ""
  1778. #: fdmprinter.def.json
  1779. msgctxt "material_end_of_filament_purge_length label"
  1780. msgid "End Of Filament Purge Length"
  1781. msgstr ""
  1782. #: fdmprinter.def.json
  1783. msgctxt "material_end_of_filament_purge_length description"
  1784. msgid "Material Station internal value"
  1785. msgstr ""
  1786. #: fdmprinter.def.json
  1787. msgctxt "material_maximum_park_duration label"
  1788. msgid "Maximum Park Duration"
  1789. msgstr ""
  1790. #: fdmprinter.def.json
  1791. msgctxt "material_maximum_park_duration description"
  1792. msgid "Material Station internal value"
  1793. msgstr ""
  1794. #: fdmprinter.def.json
  1795. msgctxt "material_no_load_move_factor label"
  1796. msgid "No Load Move Factor"
  1797. msgstr ""
  1798. #: fdmprinter.def.json
  1799. msgctxt "material_no_load_move_factor description"
  1800. msgid "Material Station internal value"
  1801. msgstr ""
  1802. #: fdmprinter.def.json
  1803. msgctxt "material_flow label"
  1804. msgid "Flow"
  1805. msgstr "Flusso"
  1806. #: fdmprinter.def.json
  1807. msgctxt "material_flow description"
  1808. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1809. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore."
  1810. #: fdmprinter.def.json
  1811. msgctxt "wall_material_flow label"
  1812. msgid "Wall Flow"
  1813. msgstr "Flusso della parete"
  1814. #: fdmprinter.def.json
  1815. msgctxt "wall_material_flow description"
  1816. msgid "Flow compensation on wall lines."
  1817. msgstr "Compensazione del flusso sulle linee perimetrali."
  1818. #: fdmprinter.def.json
  1819. msgctxt "wall_0_material_flow label"
  1820. msgid "Outer Wall Flow"
  1821. msgstr "Flusso della parete esterna"
  1822. #: fdmprinter.def.json
  1823. msgctxt "wall_0_material_flow description"
  1824. msgid "Flow compensation on the outermost wall line."
  1825. msgstr "Compensazione del flusso sulla linea perimetrale più esterna."
  1826. #: fdmprinter.def.json
  1827. msgctxt "wall_x_material_flow label"
  1828. msgid "Inner Wall(s) Flow"
  1829. msgstr "Flusso pareti interne"
  1830. #: fdmprinter.def.json
  1831. msgctxt "wall_x_material_flow description"
  1832. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1833. msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna."
  1834. #: fdmprinter.def.json
  1835. msgctxt "skin_material_flow label"
  1836. msgid "Top/Bottom Flow"
  1837. msgstr "Flusso superiore/inferiore"
  1838. #: fdmprinter.def.json
  1839. msgctxt "skin_material_flow description"
  1840. msgid "Flow compensation on top/bottom lines."
  1841. msgstr "Compensazione del flusso sulle linee superiore/inferiore."
  1842. #: fdmprinter.def.json
  1843. msgctxt "roofing_material_flow label"
  1844. msgid "Top Surface Skin Flow"
  1845. msgstr "Flusso rivestimento esterno superficie superiore"
  1846. #: fdmprinter.def.json
  1847. msgctxt "roofing_material_flow description"
  1848. msgid "Flow compensation on lines of the areas at the top of the print."
  1849. msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa."
  1850. #: fdmprinter.def.json
  1851. msgctxt "infill_material_flow label"
  1852. msgid "Infill Flow"
  1853. msgstr "Flusso di riempimento"
  1854. #: fdmprinter.def.json
  1855. msgctxt "infill_material_flow description"
  1856. msgid "Flow compensation on infill lines."
  1857. msgstr "Compensazione del flusso sulle linee di riempimento."
  1858. #: fdmprinter.def.json
  1859. msgctxt "skirt_brim_material_flow label"
  1860. msgid "Skirt/Brim Flow"
  1861. msgstr "Flusso dello skirt/brim"
  1862. #: fdmprinter.def.json
  1863. msgctxt "skirt_brim_material_flow description"
  1864. msgid "Flow compensation on skirt or brim lines."
  1865. msgstr "Compensazione del flusso sulle linee dello skirt o del brim."
  1866. #: fdmprinter.def.json
  1867. msgctxt "support_material_flow label"
  1868. msgid "Support Flow"
  1869. msgstr "Flusso del supporto"
  1870. #: fdmprinter.def.json
  1871. msgctxt "support_material_flow description"
  1872. msgid "Flow compensation on support structure lines."
  1873. msgstr "Compensazione del flusso sulle linee di supporto."
  1874. #: fdmprinter.def.json
  1875. msgctxt "support_interface_material_flow label"
  1876. msgid "Support Interface Flow"
  1877. msgstr "Flusso interfaccia di supporto"
  1878. #: fdmprinter.def.json
  1879. msgctxt "support_interface_material_flow description"
  1880. msgid "Flow compensation on lines of support roof or floor."
  1881. msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore."
  1882. #: fdmprinter.def.json
  1883. msgctxt "support_roof_material_flow label"
  1884. msgid "Support Roof Flow"
  1885. msgstr "Flusso supporto superiore"
  1886. #: fdmprinter.def.json
  1887. msgctxt "support_roof_material_flow description"
  1888. msgid "Flow compensation on support roof lines."
  1889. msgstr "Compensazione del flusso sulle linee di supporto superiore."
  1890. #: fdmprinter.def.json
  1891. msgctxt "support_bottom_material_flow label"
  1892. msgid "Support Floor Flow"
  1893. msgstr "Flusso supporto inferiore"
  1894. #: fdmprinter.def.json
  1895. msgctxt "support_bottom_material_flow description"
  1896. msgid "Flow compensation on support floor lines."
  1897. msgstr "Compensazione del flusso sulle linee di supporto inferiore."
  1898. #: fdmprinter.def.json
  1899. msgctxt "prime_tower_flow label"
  1900. msgid "Prime Tower Flow"
  1901. msgstr "Flusso torre di innesco"
  1902. #: fdmprinter.def.json
  1903. msgctxt "prime_tower_flow description"
  1904. msgid "Flow compensation on prime tower lines."
  1905. msgstr "Compensazione del flusso sulle linee della torre di innesco."
  1906. #: fdmprinter.def.json
  1907. msgctxt "material_flow_layer_0 label"
  1908. msgid "Initial Layer Flow"
  1909. msgstr "Flusso dello strato iniziale"
  1910. #: fdmprinter.def.json
  1911. msgctxt "material_flow_layer_0 description"
  1912. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1913. msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore."
  1914. #: fdmprinter.def.json
  1915. msgctxt "material_standby_temperature label"
  1916. msgid "Standby Temperature"
  1917. msgstr "Temperatura di Standby"
  1918. #: fdmprinter.def.json
  1919. msgctxt "material_standby_temperature description"
  1920. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1921. msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa."
  1922. #: fdmprinter.def.json
  1923. msgctxt "speed label"
  1924. msgid "Speed"
  1925. msgstr "Velocità"
  1926. #: fdmprinter.def.json
  1927. msgctxt "speed description"
  1928. msgid "Speed"
  1929. msgstr "Velocità"
  1930. #: fdmprinter.def.json
  1931. msgctxt "speed_print label"
  1932. msgid "Print Speed"
  1933. msgstr "Velocità di stampa"
  1934. #: fdmprinter.def.json
  1935. msgctxt "speed_print description"
  1936. msgid "The speed at which printing happens."
  1937. msgstr "Indica la velocità alla quale viene effettuata la stampa."
  1938. #: fdmprinter.def.json
  1939. msgctxt "speed_infill label"
  1940. msgid "Infill Speed"
  1941. msgstr "Velocità di riempimento"
  1942. #: fdmprinter.def.json
  1943. msgctxt "speed_infill description"
  1944. msgid "The speed at which infill is printed."
  1945. msgstr "Indica la velocità alla quale viene stampato il riempimento."
  1946. #: fdmprinter.def.json
  1947. msgctxt "speed_wall label"
  1948. msgid "Wall Speed"
  1949. msgstr "Velocità di stampa della parete"
  1950. #: fdmprinter.def.json
  1951. msgctxt "speed_wall description"
  1952. msgid "The speed at which the walls are printed."
  1953. msgstr "Indica la velocità alla quale vengono stampate le pareti."
  1954. #: fdmprinter.def.json
  1955. msgctxt "speed_wall_0 label"
  1956. msgid "Outer Wall Speed"
  1957. msgstr "Velocità di stampa della parete esterna"
  1958. #: fdmprinter.def.json
  1959. msgctxt "speed_wall_0 description"
  1960. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  1961. msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità."
  1962. #: fdmprinter.def.json
  1963. msgctxt "speed_wall_x label"
  1964. msgid "Inner Wall Speed"
  1965. msgstr "Velocità di stampa della parete interna"
  1966. #: fdmprinter.def.json
  1967. msgctxt "speed_wall_x description"
  1968. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  1969. msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento."
  1970. #: fdmprinter.def.json
  1971. msgctxt "speed_roofing label"
  1972. msgid "Top Surface Skin Speed"
  1973. msgstr "Velocità del rivestimento superficie"
  1974. #: fdmprinter.def.json
  1975. msgctxt "speed_roofing description"
  1976. msgid "The speed at which top surface skin layers are printed."
  1977. msgstr "Indica la velocità di stampa degli strati superiori."
  1978. #: fdmprinter.def.json
  1979. msgctxt "speed_topbottom label"
  1980. msgid "Top/Bottom Speed"
  1981. msgstr "Velocità di stampa delle parti superiore/inferiore"
  1982. #: fdmprinter.def.json
  1983. msgctxt "speed_topbottom description"
  1984. msgid "The speed at which top/bottom layers are printed."
  1985. msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore."
  1986. #: fdmprinter.def.json
  1987. msgctxt "speed_support label"
  1988. msgid "Support Speed"
  1989. msgstr "Velocità di stampa del supporto"
  1990. #: fdmprinter.def.json
  1991. msgctxt "speed_support description"
  1992. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  1993. msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa."
  1994. #: fdmprinter.def.json
  1995. msgctxt "speed_support_infill label"
  1996. msgid "Support Infill Speed"
  1997. msgstr "Velocità di riempimento del supporto"
  1998. #: fdmprinter.def.json
  1999. msgctxt "speed_support_infill description"
  2000. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2001. msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità."
  2002. #: fdmprinter.def.json
  2003. msgctxt "speed_support_interface label"
  2004. msgid "Support Interface Speed"
  2005. msgstr "Velocità interfaccia supporto"
  2006. #: fdmprinter.def.json
  2007. msgctxt "speed_support_interface description"
  2008. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2009. msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo."
  2010. #: fdmprinter.def.json
  2011. msgctxt "speed_support_roof label"
  2012. msgid "Support Roof Speed"
  2013. msgstr "Velocità di stampa della parte superiore (tetto) del supporto"
  2014. #: fdmprinter.def.json
  2015. msgctxt "speed_support_roof description"
  2016. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2017. msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo."
  2018. #: fdmprinter.def.json
  2019. msgctxt "speed_support_bottom label"
  2020. msgid "Support Floor Speed"
  2021. msgstr "Velocità di stampa della parte inferiore del supporto"
  2022. #: fdmprinter.def.json
  2023. msgctxt "speed_support_bottom description"
  2024. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  2025. msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello."
  2026. #: fdmprinter.def.json
  2027. msgctxt "speed_prime_tower label"
  2028. msgid "Prime Tower Speed"
  2029. msgstr "Velocità della torre di innesco"
  2030. #: fdmprinter.def.json
  2031. msgctxt "speed_prime_tower description"
  2032. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  2033. msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale."
  2034. #: fdmprinter.def.json
  2035. msgctxt "speed_travel label"
  2036. msgid "Travel Speed"
  2037. msgstr "Velocità degli spostamenti"
  2038. #: fdmprinter.def.json
  2039. msgctxt "speed_travel description"
  2040. msgid "The speed at which travel moves are made."
  2041. msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti."
  2042. #: fdmprinter.def.json
  2043. msgctxt "speed_layer_0 label"
  2044. msgid "Initial Layer Speed"
  2045. msgstr "Velocità di stampa dello strato iniziale"
  2046. #: fdmprinter.def.json
  2047. msgctxt "speed_layer_0 description"
  2048. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2049. msgstr "Indica la velocità per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa."
  2050. #: fdmprinter.def.json
  2051. msgctxt "speed_print_layer_0 label"
  2052. msgid "Initial Layer Print Speed"
  2053. msgstr "Velocità di stampa strato iniziale"
  2054. #: fdmprinter.def.json
  2055. msgctxt "speed_print_layer_0 description"
  2056. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2057. msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa."
  2058. #: fdmprinter.def.json
  2059. msgctxt "speed_travel_layer_0 label"
  2060. msgid "Initial Layer Travel Speed"
  2061. msgstr "Velocità di spostamento dello strato iniziale"
  2062. #: fdmprinter.def.json
  2063. msgctxt "speed_travel_layer_0 description"
  2064. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  2065. msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa."
  2066. #: fdmprinter.def.json
  2067. msgctxt "skirt_brim_speed label"
  2068. msgid "Skirt/Brim Speed"
  2069. msgstr "Velocità dello skirt/brim"
  2070. #: fdmprinter.def.json
  2071. msgctxt "skirt_brim_speed description"
  2072. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  2073. msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa."
  2074. #: fdmprinter.def.json
  2075. msgctxt "speed_z_hop label"
  2076. msgid "Z Hop Speed"
  2077. msgstr "Velocità di sollevamento Z"
  2078. #: fdmprinter.def.json
  2079. msgctxt "speed_z_hop description"
  2080. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  2081. msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare."
  2082. #: fdmprinter.def.json
  2083. msgctxt "speed_slowdown_layers label"
  2084. msgid "Number of Slower Layers"
  2085. msgstr "Numero di strati stampati a velocità inferiore"
  2086. #: fdmprinter.def.json
  2087. msgctxt "speed_slowdown_layers description"
  2088. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  2089. msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi."
  2090. #: fdmprinter.def.json
  2091. msgctxt "speed_equalize_flow_enabled label"
  2092. msgid "Equalize Filament Flow"
  2093. msgstr "Equalizzazione del flusso del filamento"
  2094. #: fdmprinter.def.json
  2095. msgctxt "speed_equalize_flow_enabled description"
  2096. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  2097. msgstr "Stampa le linee più sottili del normale più velocemente in modo che la quantità di materiale estruso per secondo rimanga la stessa. I pezzi sottili del modello potrebbero richiedere linee stampate con una larghezza minore rispetto a quella indicata nelle impostazioni. Questa impostazione controlla le variazioni di velocità per tali linee."
  2098. #: fdmprinter.def.json
  2099. msgctxt "speed_equalize_flow_max label"
  2100. msgid "Maximum Speed for Flow Equalization"
  2101. msgstr "Velocità massima per l’equalizzazione del flusso"
  2102. #: fdmprinter.def.json
  2103. msgctxt "speed_equalize_flow_max description"
  2104. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  2105. msgstr "Indica la velocità di stampa massima quando si regola la velocità di stampa per equalizzare il flusso."
  2106. #: fdmprinter.def.json
  2107. msgctxt "acceleration_enabled label"
  2108. msgid "Enable Acceleration Control"
  2109. msgstr "Abilita controllo accelerazione"
  2110. #: fdmprinter.def.json
  2111. msgctxt "acceleration_enabled description"
  2112. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2113. msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa."
  2114. #: fdmprinter.def.json
  2115. msgctxt "acceleration_print label"
  2116. msgid "Print Acceleration"
  2117. msgstr "Accelerazione di stampa"
  2118. #: fdmprinter.def.json
  2119. msgctxt "acceleration_print description"
  2120. msgid "The acceleration with which printing happens."
  2121. msgstr "L’accelerazione con cui avviene la stampa."
  2122. #: fdmprinter.def.json
  2123. msgctxt "acceleration_infill label"
  2124. msgid "Infill Acceleration"
  2125. msgstr "Accelerazione riempimento"
  2126. #: fdmprinter.def.json
  2127. msgctxt "acceleration_infill description"
  2128. msgid "The acceleration with which infill is printed."
  2129. msgstr "L’accelerazione con cui viene stampato il riempimento."
  2130. #: fdmprinter.def.json
  2131. msgctxt "acceleration_wall label"
  2132. msgid "Wall Acceleration"
  2133. msgstr "Accelerazione parete"
  2134. #: fdmprinter.def.json
  2135. msgctxt "acceleration_wall description"
  2136. msgid "The acceleration with which the walls are printed."
  2137. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti."
  2138. #: fdmprinter.def.json
  2139. msgctxt "acceleration_wall_0 label"
  2140. msgid "Outer Wall Acceleration"
  2141. msgstr "Accelerazione parete esterna"
  2142. #: fdmprinter.def.json
  2143. msgctxt "acceleration_wall_0 description"
  2144. msgid "The acceleration with which the outermost walls are printed."
  2145. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne."
  2146. #: fdmprinter.def.json
  2147. msgctxt "acceleration_wall_x label"
  2148. msgid "Inner Wall Acceleration"
  2149. msgstr "Accelerazione parete interna"
  2150. #: fdmprinter.def.json
  2151. msgctxt "acceleration_wall_x description"
  2152. msgid "The acceleration with which all inner walls are printed."
  2153. msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne."
  2154. #: fdmprinter.def.json
  2155. msgctxt "acceleration_roofing label"
  2156. msgid "Top Surface Skin Acceleration"
  2157. msgstr "Accelerazione del rivestimento superficie superiore"
  2158. #: fdmprinter.def.json
  2159. msgctxt "acceleration_roofing description"
  2160. msgid "The acceleration with which top surface skin layers are printed."
  2161. msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore."
  2162. #: fdmprinter.def.json
  2163. msgctxt "acceleration_topbottom label"
  2164. msgid "Top/Bottom Acceleration"
  2165. msgstr "Accelerazione strato superiore/inferiore"
  2166. #: fdmprinter.def.json
  2167. msgctxt "acceleration_topbottom description"
  2168. msgid "The acceleration with which top/bottom layers are printed."
  2169. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore."
  2170. #: fdmprinter.def.json
  2171. msgctxt "acceleration_support label"
  2172. msgid "Support Acceleration"
  2173. msgstr "Accelerazione supporto"
  2174. #: fdmprinter.def.json
  2175. msgctxt "acceleration_support description"
  2176. msgid "The acceleration with which the support structure is printed."
  2177. msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto."
  2178. #: fdmprinter.def.json
  2179. msgctxt "acceleration_support_infill label"
  2180. msgid "Support Infill Acceleration"
  2181. msgstr "Accelerazione riempimento supporto"
  2182. #: fdmprinter.def.json
  2183. msgctxt "acceleration_support_infill description"
  2184. msgid "The acceleration with which the infill of support is printed."
  2185. msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto."
  2186. #: fdmprinter.def.json
  2187. msgctxt "acceleration_support_interface label"
  2188. msgid "Support Interface Acceleration"
  2189. msgstr "Accelerazione interfaccia supporto"
  2190. #: fdmprinter.def.json
  2191. msgctxt "acceleration_support_interface description"
  2192. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2193. msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo."
  2194. #: fdmprinter.def.json
  2195. msgctxt "acceleration_support_roof label"
  2196. msgid "Support Roof Acceleration"
  2197. msgstr "Accelerazione parte superiore del supporto"
  2198. #: fdmprinter.def.json
  2199. msgctxt "acceleration_support_roof description"
  2200. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2201. msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo."
  2202. #: fdmprinter.def.json
  2203. msgctxt "acceleration_support_bottom label"
  2204. msgid "Support Floor Acceleration"
  2205. msgstr "Accelerazione parte inferiore del supporto"
  2206. #: fdmprinter.def.json
  2207. msgctxt "acceleration_support_bottom description"
  2208. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  2209. msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello."
  2210. #: fdmprinter.def.json
  2211. msgctxt "acceleration_prime_tower label"
  2212. msgid "Prime Tower Acceleration"
  2213. msgstr "Accelerazione della torre di innesco"
  2214. #: fdmprinter.def.json
  2215. msgctxt "acceleration_prime_tower description"
  2216. msgid "The acceleration with which the prime tower is printed."
  2217. msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco."
  2218. #: fdmprinter.def.json
  2219. msgctxt "acceleration_travel label"
  2220. msgid "Travel Acceleration"
  2221. msgstr "Accelerazione spostamenti"
  2222. #: fdmprinter.def.json
  2223. msgctxt "acceleration_travel description"
  2224. msgid "The acceleration with which travel moves are made."
  2225. msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti."
  2226. #: fdmprinter.def.json
  2227. msgctxt "acceleration_layer_0 label"
  2228. msgid "Initial Layer Acceleration"
  2229. msgstr "Accelerazione dello strato iniziale"
  2230. #: fdmprinter.def.json
  2231. msgctxt "acceleration_layer_0 description"
  2232. msgid "The acceleration for the initial layer."
  2233. msgstr "Indica l’accelerazione dello strato iniziale."
  2234. #: fdmprinter.def.json
  2235. msgctxt "acceleration_print_layer_0 label"
  2236. msgid "Initial Layer Print Acceleration"
  2237. msgstr "Accelerazione di stampa strato iniziale"
  2238. #: fdmprinter.def.json
  2239. msgctxt "acceleration_print_layer_0 description"
  2240. msgid "The acceleration during the printing of the initial layer."
  2241. msgstr "Indica l’accelerazione durante la stampa dello strato iniziale."
  2242. #: fdmprinter.def.json
  2243. msgctxt "acceleration_travel_layer_0 label"
  2244. msgid "Initial Layer Travel Acceleration"
  2245. msgstr "Accelerazione spostamenti dello strato iniziale"
  2246. #: fdmprinter.def.json
  2247. msgctxt "acceleration_travel_layer_0 description"
  2248. msgid "The acceleration for travel moves in the initial layer."
  2249. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  2250. #: fdmprinter.def.json
  2251. msgctxt "acceleration_skirt_brim label"
  2252. msgid "Skirt/Brim Acceleration"
  2253. msgstr "Accelerazione skirt/brim"
  2254. #: fdmprinter.def.json
  2255. msgctxt "acceleration_skirt_brim description"
  2256. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  2257. msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa."
  2258. #: fdmprinter.def.json
  2259. msgctxt "jerk_enabled label"
  2260. msgid "Enable Jerk Control"
  2261. msgstr "Abilita controllo jerk"
  2262. #: fdmprinter.def.json
  2263. msgctxt "jerk_enabled description"
  2264. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  2265. msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa."
  2266. #: fdmprinter.def.json
  2267. msgctxt "jerk_print label"
  2268. msgid "Print Jerk"
  2269. msgstr "Jerk stampa"
  2270. #: fdmprinter.def.json
  2271. msgctxt "jerk_print description"
  2272. msgid "The maximum instantaneous velocity change of the print head."
  2273. msgstr "Indica il cambio della velocità istantanea massima della testina di stampa."
  2274. #: fdmprinter.def.json
  2275. msgctxt "jerk_infill label"
  2276. msgid "Infill Jerk"
  2277. msgstr "Jerk riempimento"
  2278. #: fdmprinter.def.json
  2279. msgctxt "jerk_infill description"
  2280. msgid "The maximum instantaneous velocity change with which infill is printed."
  2281. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento."
  2282. #: fdmprinter.def.json
  2283. msgctxt "jerk_wall label"
  2284. msgid "Wall Jerk"
  2285. msgstr "Jerk parete"
  2286. #: fdmprinter.def.json
  2287. msgctxt "jerk_wall description"
  2288. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2289. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti."
  2290. #: fdmprinter.def.json
  2291. msgctxt "jerk_wall_0 label"
  2292. msgid "Outer Wall Jerk"
  2293. msgstr "Jerk parete esterna"
  2294. #: fdmprinter.def.json
  2295. msgctxt "jerk_wall_0 description"
  2296. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2297. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne."
  2298. #: fdmprinter.def.json
  2299. msgctxt "jerk_wall_x label"
  2300. msgid "Inner Wall Jerk"
  2301. msgstr "Jerk parete interna"
  2302. #: fdmprinter.def.json
  2303. msgctxt "jerk_wall_x description"
  2304. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2305. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne."
  2306. #: fdmprinter.def.json
  2307. msgctxt "jerk_roofing label"
  2308. msgid "Top Surface Skin Jerk"
  2309. msgstr "Jerk del rivestimento superficie superiore"
  2310. #: fdmprinter.def.json
  2311. msgctxt "jerk_roofing description"
  2312. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2313. msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore."
  2314. #: fdmprinter.def.json
  2315. msgctxt "jerk_topbottom label"
  2316. msgid "Top/Bottom Jerk"
  2317. msgstr "Jerk strato superiore/inferiore"
  2318. #: fdmprinter.def.json
  2319. msgctxt "jerk_topbottom description"
  2320. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2321. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore."
  2322. #: fdmprinter.def.json
  2323. msgctxt "jerk_support label"
  2324. msgid "Support Jerk"
  2325. msgstr "Jerk supporto"
  2326. #: fdmprinter.def.json
  2327. msgctxt "jerk_support description"
  2328. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2329. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto."
  2330. #: fdmprinter.def.json
  2331. msgctxt "jerk_support_infill label"
  2332. msgid "Support Infill Jerk"
  2333. msgstr "Jerk riempimento supporto"
  2334. #: fdmprinter.def.json
  2335. msgctxt "jerk_support_infill description"
  2336. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2337. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto."
  2338. #: fdmprinter.def.json
  2339. msgctxt "jerk_support_interface label"
  2340. msgid "Support Interface Jerk"
  2341. msgstr "Jerk interfaccia supporto"
  2342. #: fdmprinter.def.json
  2343. msgctxt "jerk_support_interface description"
  2344. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2345. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori."
  2346. #: fdmprinter.def.json
  2347. msgctxt "jerk_support_roof label"
  2348. msgid "Support Roof Jerk"
  2349. msgstr "Jerk parte superiore del supporto"
  2350. #: fdmprinter.def.json
  2351. msgctxt "jerk_support_roof description"
  2352. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2353. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori."
  2354. #: fdmprinter.def.json
  2355. msgctxt "jerk_support_bottom label"
  2356. msgid "Support Floor Jerk"
  2357. msgstr "Jerk parte inferiore del supporto"
  2358. #: fdmprinter.def.json
  2359. msgctxt "jerk_support_bottom description"
  2360. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2361. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori."
  2362. #: fdmprinter.def.json
  2363. msgctxt "jerk_prime_tower label"
  2364. msgid "Prime Tower Jerk"
  2365. msgstr "Jerk della torre di innesco"
  2366. #: fdmprinter.def.json
  2367. msgctxt "jerk_prime_tower description"
  2368. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2369. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto."
  2370. #: fdmprinter.def.json
  2371. msgctxt "jerk_travel label"
  2372. msgid "Travel Jerk"
  2373. msgstr "Jerk spostamenti"
  2374. #: fdmprinter.def.json
  2375. msgctxt "jerk_travel description"
  2376. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2377. msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti."
  2378. #: fdmprinter.def.json
  2379. msgctxt "jerk_layer_0 label"
  2380. msgid "Initial Layer Jerk"
  2381. msgstr "Jerk dello strato iniziale"
  2382. #: fdmprinter.def.json
  2383. msgctxt "jerk_layer_0 description"
  2384. msgid "The print maximum instantaneous velocity change for the initial layer."
  2385. msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale."
  2386. #: fdmprinter.def.json
  2387. msgctxt "jerk_print_layer_0 label"
  2388. msgid "Initial Layer Print Jerk"
  2389. msgstr "Jerk di stampa strato iniziale"
  2390. #: fdmprinter.def.json
  2391. msgctxt "jerk_print_layer_0 description"
  2392. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2393. msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale."
  2394. #: fdmprinter.def.json
  2395. msgctxt "jerk_travel_layer_0 label"
  2396. msgid "Initial Layer Travel Jerk"
  2397. msgstr "Jerk spostamenti dello strato iniziale"
  2398. #: fdmprinter.def.json
  2399. msgctxt "jerk_travel_layer_0 description"
  2400. msgid "The acceleration for travel moves in the initial layer."
  2401. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  2402. #: fdmprinter.def.json
  2403. msgctxt "jerk_skirt_brim label"
  2404. msgid "Skirt/Brim Jerk"
  2405. msgstr "Jerk dello skirt/brim"
  2406. #: fdmprinter.def.json
  2407. msgctxt "jerk_skirt_brim description"
  2408. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2409. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim."
  2410. #: fdmprinter.def.json
  2411. msgctxt "travel label"
  2412. msgid "Travel"
  2413. msgstr "Spostamenti"
  2414. #: fdmprinter.def.json
  2415. msgctxt "travel description"
  2416. msgid "travel"
  2417. msgstr "spostamenti"
  2418. #: fdmprinter.def.json
  2419. msgctxt "retraction_enable label"
  2420. msgid "Enable Retraction"
  2421. msgstr "Abilitazione della retrazione"
  2422. #: fdmprinter.def.json
  2423. msgctxt "retraction_enable description"
  2424. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  2425. msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata. "
  2426. #: fdmprinter.def.json
  2427. msgctxt "retract_at_layer_change label"
  2428. msgid "Retract at Layer Change"
  2429. msgstr "Retrazione al cambio strato"
  2430. #: fdmprinter.def.json
  2431. msgctxt "retract_at_layer_change description"
  2432. msgid "Retract the filament when the nozzle is moving to the next layer."
  2433. msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo."
  2434. #: fdmprinter.def.json
  2435. msgctxt "retraction_amount label"
  2436. msgid "Retraction Distance"
  2437. msgstr "Distanza di retrazione"
  2438. #: fdmprinter.def.json
  2439. msgctxt "retraction_amount description"
  2440. msgid "The length of material retracted during a retraction move."
  2441. msgstr "La lunghezza del materiale retratto durante il movimento di retrazione."
  2442. #: fdmprinter.def.json
  2443. msgctxt "retraction_speed label"
  2444. msgid "Retraction Speed"
  2445. msgstr "Velocità di retrazione"
  2446. #: fdmprinter.def.json
  2447. msgctxt "retraction_speed description"
  2448. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2449. msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione."
  2450. #: fdmprinter.def.json
  2451. msgctxt "retraction_retract_speed label"
  2452. msgid "Retraction Retract Speed"
  2453. msgstr "Velocità di retrazione"
  2454. #: fdmprinter.def.json
  2455. msgctxt "retraction_retract_speed description"
  2456. msgid "The speed at which the filament is retracted during a retraction move."
  2457. msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione."
  2458. #: fdmprinter.def.json
  2459. msgctxt "retraction_prime_speed label"
  2460. msgid "Retraction Prime Speed"
  2461. msgstr "Velocità di innesco dopo la retrazione"
  2462. #: fdmprinter.def.json
  2463. msgctxt "retraction_prime_speed description"
  2464. msgid "The speed at which the filament is primed during a retraction move."
  2465. msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione."
  2466. #: fdmprinter.def.json
  2467. msgctxt "retraction_extra_prime_amount label"
  2468. msgid "Retraction Extra Prime Amount"
  2469. msgstr "Entità di innesco supplementare dopo la retrazione"
  2470. #: fdmprinter.def.json
  2471. msgctxt "retraction_extra_prime_amount description"
  2472. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2473. msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento."
  2474. #: fdmprinter.def.json
  2475. msgctxt "retraction_min_travel label"
  2476. msgid "Retraction Minimum Travel"
  2477. msgstr "Distanza minima di retrazione"
  2478. #: fdmprinter.def.json
  2479. msgctxt "retraction_min_travel description"
  2480. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2481. msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree."
  2482. #: fdmprinter.def.json
  2483. msgctxt "retraction_count_max label"
  2484. msgid "Maximum Retraction Count"
  2485. msgstr "Numero massimo di retrazioni"
  2486. #: fdmprinter.def.json
  2487. msgctxt "retraction_count_max description"
  2488. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  2489. msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione."
  2490. #: fdmprinter.def.json
  2491. msgctxt "retraction_extrusion_window label"
  2492. msgid "Minimum Extrusion Distance Window"
  2493. msgstr "Finestra di minima distanza di estrusione"
  2494. #: fdmprinter.def.json
  2495. msgctxt "retraction_extrusion_window description"
  2496. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  2497. msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale."
  2498. #: fdmprinter.def.json
  2499. msgctxt "limit_support_retractions label"
  2500. msgid "Limit Support Retractions"
  2501. msgstr "Limitazione delle retrazioni del supporto"
  2502. #: fdmprinter.def.json
  2503. msgctxt "limit_support_retractions description"
  2504. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2505. msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
  2506. #: fdmprinter.def.json
  2507. msgctxt "retraction_combing label"
  2508. msgid "Combing Mode"
  2509. msgstr "Modalità Combing"
  2510. #: fdmprinter.def.json
  2511. msgctxt "retraction_combing description"
  2512. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  2513. msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento."
  2514. #: fdmprinter.def.json
  2515. msgctxt "retraction_combing option off"
  2516. msgid "Off"
  2517. msgstr "Disinserita"
  2518. #: fdmprinter.def.json
  2519. msgctxt "retraction_combing option all"
  2520. msgid "All"
  2521. msgstr "Tutto"
  2522. #: fdmprinter.def.json
  2523. msgctxt "retraction_combing option noskin"
  2524. msgid "Not in Skin"
  2525. msgstr "Non nel rivestimento"
  2526. #: fdmprinter.def.json
  2527. msgctxt "retraction_combing option infill"
  2528. msgid "Within Infill"
  2529. msgstr "Nel riempimento"
  2530. #: fdmprinter.def.json
  2531. msgctxt "retraction_combing_max_distance label"
  2532. msgid "Max Comb Distance With No Retract"
  2533. msgstr "Massima distanza di combing senza retrazione"
  2534. #: fdmprinter.def.json
  2535. msgctxt "retraction_combing_max_distance description"
  2536. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2537. msgstr "Per un valore diverso da zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione."
  2538. #: fdmprinter.def.json
  2539. msgctxt "travel_retract_before_outer_wall label"
  2540. msgid "Retract Before Outer Wall"
  2541. msgstr "Retrazione prima della parete esterna"
  2542. #: fdmprinter.def.json
  2543. msgctxt "travel_retract_before_outer_wall description"
  2544. msgid "Always retract when moving to start an outer wall."
  2545. msgstr "Arretra sempre quando si sposta per iniziare una parete esterna."
  2546. #: fdmprinter.def.json
  2547. msgctxt "travel_avoid_other_parts label"
  2548. msgid "Avoid Printed Parts When Traveling"
  2549. msgstr "Aggiramento delle parti stampate durante gli spostamenti"
  2550. #: fdmprinter.def.json
  2551. msgctxt "travel_avoid_other_parts description"
  2552. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2553. msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing."
  2554. #: fdmprinter.def.json
  2555. msgctxt "travel_avoid_supports label"
  2556. msgid "Avoid Supports When Traveling"
  2557. msgstr "Aggiramento dei supporti durante gli spostamenti"
  2558. #: fdmprinter.def.json
  2559. msgctxt "travel_avoid_supports description"
  2560. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2561. msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing."
  2562. #: fdmprinter.def.json
  2563. msgctxt "travel_avoid_distance label"
  2564. msgid "Travel Avoid Distance"
  2565. msgstr "Distanza di aggiramento durante gli spostamenti"
  2566. #: fdmprinter.def.json
  2567. msgctxt "travel_avoid_distance description"
  2568. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2569. msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento."
  2570. #: fdmprinter.def.json
  2571. msgctxt "layer_start_x label"
  2572. msgid "Layer Start X"
  2573. msgstr "Avvio strato X"
  2574. #: fdmprinter.def.json
  2575. msgctxt "layer_start_x description"
  2576. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2577. msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2578. #: fdmprinter.def.json
  2579. msgctxt "layer_start_y label"
  2580. msgid "Layer Start Y"
  2581. msgstr "Avvio strato Y"
  2582. #: fdmprinter.def.json
  2583. msgctxt "layer_start_y description"
  2584. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2585. msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2586. #: fdmprinter.def.json
  2587. msgctxt "retraction_hop_enabled label"
  2588. msgid "Z Hop When Retracted"
  2589. msgstr "Z Hop durante la retrazione"
  2590. #: fdmprinter.def.json
  2591. msgctxt "retraction_hop_enabled description"
  2592. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  2593. msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano."
  2594. #: fdmprinter.def.json
  2595. msgctxt "retraction_hop_only_when_collides label"
  2596. msgid "Z Hop Only Over Printed Parts"
  2597. msgstr "Z Hop solo su parti stampate"
  2598. #: fdmprinter.def.json
  2599. msgctxt "retraction_hop_only_when_collides description"
  2600. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2601. msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento."
  2602. #: fdmprinter.def.json
  2603. msgctxt "retraction_hop label"
  2604. msgid "Z Hop Height"
  2605. msgstr "Altezza Z Hop"
  2606. #: fdmprinter.def.json
  2607. msgctxt "retraction_hop description"
  2608. msgid "The height difference when performing a Z Hop."
  2609. msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop."
  2610. #: fdmprinter.def.json
  2611. msgctxt "retraction_hop_after_extruder_switch label"
  2612. msgid "Z Hop After Extruder Switch"
  2613. msgstr "Z Hop dopo cambio estrusore"
  2614. #: fdmprinter.def.json
  2615. msgctxt "retraction_hop_after_extruder_switch description"
  2616. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  2617. msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa."
  2618. #: fdmprinter.def.json
  2619. msgctxt "retraction_hop_after_extruder_switch_height label"
  2620. msgid "Z Hop After Extruder Switch Height"
  2621. msgstr "Z Hop dopo cambio altezza estrusore"
  2622. #: fdmprinter.def.json
  2623. msgctxt "retraction_hop_after_extruder_switch_height description"
  2624. msgid "The height difference when performing a Z Hop after extruder switch."
  2625. msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore."
  2626. #: fdmprinter.def.json
  2627. msgctxt "cooling label"
  2628. msgid "Cooling"
  2629. msgstr "Raffreddamento"
  2630. #: fdmprinter.def.json
  2631. msgctxt "cooling description"
  2632. msgid "Cooling"
  2633. msgstr "Raffreddamento"
  2634. #: fdmprinter.def.json
  2635. msgctxt "cool_fan_enabled label"
  2636. msgid "Enable Print Cooling"
  2637. msgstr "Abilitazione raffreddamento stampa"
  2638. #: fdmprinter.def.json
  2639. msgctxt "cool_fan_enabled description"
  2640. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2641. msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi."
  2642. #: fdmprinter.def.json
  2643. msgctxt "cool_fan_speed label"
  2644. msgid "Fan Speed"
  2645. msgstr "Velocità della ventola"
  2646. #: fdmprinter.def.json
  2647. msgctxt "cool_fan_speed description"
  2648. msgid "The speed at which the print cooling fans spin."
  2649. msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa."
  2650. #: fdmprinter.def.json
  2651. msgctxt "cool_fan_speed_min label"
  2652. msgid "Regular Fan Speed"
  2653. msgstr "Velocità regolare della ventola"
  2654. #: fdmprinter.def.json
  2655. msgctxt "cool_fan_speed_min description"
  2656. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  2657. msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola."
  2658. #: fdmprinter.def.json
  2659. msgctxt "cool_fan_speed_max label"
  2660. msgid "Maximum Fan Speed"
  2661. msgstr "Velocità massima della ventola"
  2662. #: fdmprinter.def.json
  2663. msgctxt "cool_fan_speed_max description"
  2664. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  2665. msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia."
  2666. #: fdmprinter.def.json
  2667. msgctxt "cool_min_layer_time_fan_speed_max label"
  2668. msgid "Regular/Maximum Fan Speed Threshold"
  2669. msgstr "Soglia velocità regolare/massima della ventola"
  2670. #: fdmprinter.def.json
  2671. msgctxt "cool_min_layer_time_fan_speed_max description"
  2672. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  2673. msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola."
  2674. #: fdmprinter.def.json
  2675. msgctxt "cool_fan_speed_0 label"
  2676. msgid "Initial Fan Speed"
  2677. msgstr "Velocità iniziale della ventola"
  2678. #: fdmprinter.def.json
  2679. msgctxt "cool_fan_speed_0 description"
  2680. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  2681. msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza."
  2682. #: fdmprinter.def.json
  2683. msgctxt "cool_fan_full_at_height label"
  2684. msgid "Regular Fan Speed at Height"
  2685. msgstr "Velocità regolare della ventola in altezza"
  2686. #: fdmprinter.def.json
  2687. msgctxt "cool_fan_full_at_height description"
  2688. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  2689. msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare."
  2690. #: fdmprinter.def.json
  2691. msgctxt "cool_fan_full_layer label"
  2692. msgid "Regular Fan Speed at Layer"
  2693. msgstr "Velocità regolare della ventola in corrispondenza dello strato"
  2694. #: fdmprinter.def.json
  2695. msgctxt "cool_fan_full_layer description"
  2696. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  2697. msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero."
  2698. #: fdmprinter.def.json
  2699. msgctxt "cool_min_layer_time label"
  2700. msgid "Minimum Layer Time"
  2701. msgstr "Tempo minimo per strato"
  2702. #: fdmprinter.def.json
  2703. msgctxt "cool_min_layer_time description"
  2704. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  2705. msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata."
  2706. #: fdmprinter.def.json
  2707. msgctxt "cool_min_speed label"
  2708. msgid "Minimum Speed"
  2709. msgstr "Velocità minima"
  2710. #: fdmprinter.def.json
  2711. msgctxt "cool_min_speed description"
  2712. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  2713. msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa."
  2714. #: fdmprinter.def.json
  2715. msgctxt "cool_lift_head label"
  2716. msgid "Lift Head"
  2717. msgstr "Sollevamento della testina"
  2718. #: fdmprinter.def.json
  2719. msgctxt "cool_lift_head description"
  2720. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  2721. msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato."
  2722. #: fdmprinter.def.json
  2723. msgctxt "support label"
  2724. msgid "Support"
  2725. msgstr "Supporto"
  2726. #: fdmprinter.def.json
  2727. msgctxt "support description"
  2728. msgid "Support"
  2729. msgstr "Supporto"
  2730. #: fdmprinter.def.json
  2731. msgctxt "support_enable label"
  2732. msgid "Generate Support"
  2733. msgstr "Generazione supporto"
  2734. #: fdmprinter.def.json
  2735. msgctxt "support_enable description"
  2736. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2737. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  2738. #: fdmprinter.def.json
  2739. msgctxt "support_extruder_nr label"
  2740. msgid "Support Extruder"
  2741. msgstr "Estrusore del supporto"
  2742. #: fdmprinter.def.json
  2743. msgctxt "support_extruder_nr description"
  2744. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2745. msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla."
  2746. #: fdmprinter.def.json
  2747. msgctxt "support_infill_extruder_nr label"
  2748. msgid "Support Infill Extruder"
  2749. msgstr "Estrusore riempimento del supporto"
  2750. #: fdmprinter.def.json
  2751. msgctxt "support_infill_extruder_nr description"
  2752. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2753. msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2754. #: fdmprinter.def.json
  2755. msgctxt "support_extruder_nr_layer_0 label"
  2756. msgid "First Layer Support Extruder"
  2757. msgstr "Estrusore del supporto primo strato"
  2758. #: fdmprinter.def.json
  2759. msgctxt "support_extruder_nr_layer_0 description"
  2760. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2761. msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2762. #: fdmprinter.def.json
  2763. msgctxt "support_interface_extruder_nr label"
  2764. msgid "Support Interface Extruder"
  2765. msgstr "Estrusore interfaccia del supporto"
  2766. #: fdmprinter.def.json
  2767. msgctxt "support_interface_extruder_nr description"
  2768. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2769. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla."
  2770. #: fdmprinter.def.json
  2771. msgctxt "support_roof_extruder_nr label"
  2772. msgid "Support Roof Extruder"
  2773. msgstr "Estrusore parte superiore del supporto"
  2774. #: fdmprinter.def.json
  2775. msgctxt "support_roof_extruder_nr description"
  2776. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2777. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla."
  2778. #: fdmprinter.def.json
  2779. msgctxt "support_bottom_extruder_nr label"
  2780. msgid "Support Floor Extruder"
  2781. msgstr "Estrusore parte inferiore del supporto"
  2782. #: fdmprinter.def.json
  2783. msgctxt "support_bottom_extruder_nr description"
  2784. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2785. msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla."
  2786. #: fdmprinter.def.json
  2787. msgctxt "support_type label"
  2788. msgid "Support Placement"
  2789. msgstr "Posizionamento supporto"
  2790. #: fdmprinter.def.json
  2791. msgctxt "support_type description"
  2792. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  2793. msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello."
  2794. #: fdmprinter.def.json
  2795. msgctxt "support_type option buildplate"
  2796. msgid "Touching Buildplate"
  2797. msgstr "Contatto con il Piano di Stampa"
  2798. #: fdmprinter.def.json
  2799. msgctxt "support_type option everywhere"
  2800. msgid "Everywhere"
  2801. msgstr "In Tutti i Possibili Punti"
  2802. #: fdmprinter.def.json
  2803. msgctxt "support_angle label"
  2804. msgid "Support Overhang Angle"
  2805. msgstr "Angolo di sbalzo del supporto"
  2806. #: fdmprinter.def.json
  2807. msgctxt "support_angle description"
  2808. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  2809. msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto."
  2810. #: fdmprinter.def.json
  2811. msgctxt "support_pattern label"
  2812. msgid "Support Pattern"
  2813. msgstr "Configurazione del supporto"
  2814. #: fdmprinter.def.json
  2815. msgctxt "support_pattern description"
  2816. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2817. msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere."
  2818. #: fdmprinter.def.json
  2819. msgctxt "support_pattern option lines"
  2820. msgid "Lines"
  2821. msgstr "Linee"
  2822. #: fdmprinter.def.json
  2823. msgctxt "support_pattern option grid"
  2824. msgid "Grid"
  2825. msgstr "Griglia"
  2826. #: fdmprinter.def.json
  2827. msgctxt "support_pattern option triangles"
  2828. msgid "Triangles"
  2829. msgstr "Triangoli"
  2830. #: fdmprinter.def.json
  2831. msgctxt "support_pattern option concentric"
  2832. msgid "Concentric"
  2833. msgstr "Concentriche"
  2834. #: fdmprinter.def.json
  2835. msgctxt "support_pattern option zigzag"
  2836. msgid "Zig Zag"
  2837. msgstr "Zig Zag"
  2838. #: fdmprinter.def.json
  2839. msgctxt "support_pattern option cross"
  2840. msgid "Cross"
  2841. msgstr "Incrociata"
  2842. #: fdmprinter.def.json
  2843. msgctxt "support_pattern option gyroid"
  2844. msgid "Gyroid"
  2845. msgstr "Gyroid"
  2846. #: fdmprinter.def.json
  2847. msgctxt "support_wall_count label"
  2848. msgid "Support Wall Line Count"
  2849. msgstr "Numero delle linee perimetrali supporto"
  2850. #: fdmprinter.def.json
  2851. msgctxt "support_wall_count description"
  2852. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2853. msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato."
  2854. #: fdmprinter.def.json
  2855. msgctxt "zig_zaggify_support label"
  2856. msgid "Connect Support Lines"
  2857. msgstr "Collegamento linee supporto"
  2858. #: fdmprinter.def.json
  2859. msgctxt "zig_zaggify_support description"
  2860. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  2861. msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale."
  2862. #: fdmprinter.def.json
  2863. msgctxt "support_connect_zigzags label"
  2864. msgid "Connect Support ZigZags"
  2865. msgstr "Collegamento Zig Zag supporto"
  2866. #: fdmprinter.def.json
  2867. msgctxt "support_connect_zigzags description"
  2868. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2869. msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag."
  2870. #: fdmprinter.def.json
  2871. msgctxt "support_infill_rate label"
  2872. msgid "Support Density"
  2873. msgstr "Densità del supporto"
  2874. #: fdmprinter.def.json
  2875. msgctxt "support_infill_rate description"
  2876. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2877. msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  2878. #: fdmprinter.def.json
  2879. msgctxt "support_line_distance label"
  2880. msgid "Support Line Distance"
  2881. msgstr "Distanza tra le linee del supporto"
  2882. #: fdmprinter.def.json
  2883. msgctxt "support_line_distance description"
  2884. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2885. msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto."
  2886. #: fdmprinter.def.json
  2887. msgctxt "support_initial_layer_line_distance label"
  2888. msgid "Initial Layer Support Line Distance"
  2889. msgstr "Distanza tra le linee del supporto dello strato iniziale"
  2890. #: fdmprinter.def.json
  2891. msgctxt "support_initial_layer_line_distance description"
  2892. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2893. msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto."
  2894. #: fdmprinter.def.json
  2895. msgctxt "support_infill_angles label"
  2896. msgid "Support Infill Line Directions"
  2897. msgstr "Direzione delle linee di riempimento supporto"
  2898. #: fdmprinter.def.json
  2899. msgctxt "support_infill_angles description"
  2900. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  2901. msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi."
  2902. #: fdmprinter.def.json
  2903. msgctxt "support_brim_enable label"
  2904. msgid "Enable Support Brim"
  2905. msgstr "Abilitazione brim del supporto"
  2906. #: fdmprinter.def.json
  2907. msgctxt "support_brim_enable description"
  2908. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  2909. msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa."
  2910. #: fdmprinter.def.json
  2911. msgctxt "support_brim_width label"
  2912. msgid "Support Brim Width"
  2913. msgstr "Larghezza del brim del supporto"
  2914. #: fdmprinter.def.json
  2915. msgctxt "support_brim_width description"
  2916. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  2917. msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale."
  2918. #: fdmprinter.def.json
  2919. msgctxt "support_brim_line_count label"
  2920. msgid "Support Brim Line Count"
  2921. msgstr "Numero di linee del brim del supporto"
  2922. #: fdmprinter.def.json
  2923. msgctxt "support_brim_line_count description"
  2924. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  2925. msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale."
  2926. #: fdmprinter.def.json
  2927. msgctxt "support_z_distance label"
  2928. msgid "Support Z Distance"
  2929. msgstr "Distanza Z supporto"
  2930. #: fdmprinter.def.json
  2931. msgctxt "support_z_distance description"
  2932. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  2933. msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato."
  2934. #: fdmprinter.def.json
  2935. msgctxt "support_top_distance label"
  2936. msgid "Support Top Distance"
  2937. msgstr "Distanza superiore supporto"
  2938. #: fdmprinter.def.json
  2939. msgctxt "support_top_distance description"
  2940. msgid "Distance from the top of the support to the print."
  2941. msgstr "È la distanza tra la parte superiore del supporto e la stampa."
  2942. #: fdmprinter.def.json
  2943. msgctxt "support_bottom_distance label"
  2944. msgid "Support Bottom Distance"
  2945. msgstr "Distanza inferiore supporto"
  2946. #: fdmprinter.def.json
  2947. msgctxt "support_bottom_distance description"
  2948. msgid "Distance from the print to the bottom of the support."
  2949. msgstr "È la distanza tra la stampa e la parte inferiore del supporto."
  2950. #: fdmprinter.def.json
  2951. msgctxt "support_xy_distance label"
  2952. msgid "Support X/Y Distance"
  2953. msgstr "Distanza X/Y supporto"
  2954. #: fdmprinter.def.json
  2955. msgctxt "support_xy_distance description"
  2956. msgid "Distance of the support structure from the print in the X/Y directions."
  2957. msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y."
  2958. #: fdmprinter.def.json
  2959. msgctxt "support_xy_overrides_z label"
  2960. msgid "Support Distance Priority"
  2961. msgstr "Priorità distanza supporto"
  2962. #: fdmprinter.def.json
  2963. msgctxt "support_xy_overrides_z description"
  2964. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  2965. msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi."
  2966. #: fdmprinter.def.json
  2967. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2968. msgid "X/Y overrides Z"
  2969. msgstr "X/Y esclude Z"
  2970. #: fdmprinter.def.json
  2971. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2972. msgid "Z overrides X/Y"
  2973. msgstr "Z esclude X/Y"
  2974. #: fdmprinter.def.json
  2975. msgctxt "support_xy_distance_overhang label"
  2976. msgid "Minimum Support X/Y Distance"
  2977. msgstr "Distanza X/Y supporto minima"
  2978. #: fdmprinter.def.json
  2979. msgctxt "support_xy_distance_overhang description"
  2980. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2981. msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y. "
  2982. #: fdmprinter.def.json
  2983. msgctxt "support_bottom_stair_step_height label"
  2984. msgid "Support Stair Step Height"
  2985. msgstr "Altezza gradini supporto"
  2986. #: fdmprinter.def.json
  2987. msgctxt "support_bottom_stair_step_height description"
  2988. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  2989. msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala."
  2990. #: fdmprinter.def.json
  2991. msgctxt "support_bottom_stair_step_width label"
  2992. msgid "Support Stair Step Maximum Width"
  2993. msgstr "Larghezza massima gradino supporto"
  2994. #: fdmprinter.def.json
  2995. msgctxt "support_bottom_stair_step_width description"
  2996. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  2997. msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto."
  2998. #: fdmprinter.def.json
  2999. msgctxt "support_join_distance label"
  3000. msgid "Support Join Distance"
  3001. msgstr "Distanza giunzione supporto"
  3002. #: fdmprinter.def.json
  3003. msgctxt "support_join_distance description"
  3004. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3005. msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica."
  3006. #: fdmprinter.def.json
  3007. msgctxt "support_offset label"
  3008. msgid "Support Horizontal Expansion"
  3009. msgstr "Espansione orizzontale supporto"
  3010. #: fdmprinter.def.json
  3011. msgctxt "support_offset description"
  3012. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  3013. msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza."
  3014. #: fdmprinter.def.json
  3015. msgctxt "support_infill_sparse_thickness label"
  3016. msgid "Support Infill Layer Thickness"
  3017. msgstr "Spessore dello strato di riempimento di supporto"
  3018. #: fdmprinter.def.json
  3019. msgctxt "support_infill_sparse_thickness description"
  3020. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3021. msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato."
  3022. #: fdmprinter.def.json
  3023. msgctxt "gradual_support_infill_steps label"
  3024. msgid "Gradual Support Infill Steps"
  3025. msgstr "Fasi di riempimento graduale del supporto"
  3026. #: fdmprinter.def.json
  3027. msgctxt "gradual_support_infill_steps description"
  3028. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  3029. msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento."
  3030. #: fdmprinter.def.json
  3031. msgctxt "gradual_support_infill_step_height label"
  3032. msgid "Gradual Support Infill Step Height"
  3033. msgstr "Altezza fasi di riempimento graduale del supporto"
  3034. #: fdmprinter.def.json
  3035. msgctxt "gradual_support_infill_step_height description"
  3036. msgid "The height of support infill of a given density before switching to half the density."
  3037. msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità."
  3038. #: fdmprinter.def.json
  3039. msgctxt "minimum_support_area label"
  3040. msgid "Minimum Support Area"
  3041. msgstr "Area minima supporto"
  3042. #: fdmprinter.def.json
  3043. msgctxt "minimum_support_area description"
  3044. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3045. msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
  3046. #: fdmprinter.def.json
  3047. msgctxt "support_interface_enable label"
  3048. msgid "Enable Support Interface"
  3049. msgstr "Abilitazione interfaccia supporto"
  3050. #: fdmprinter.def.json
  3051. msgctxt "support_interface_enable description"
  3052. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  3053. msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello."
  3054. #: fdmprinter.def.json
  3055. msgctxt "support_roof_enable label"
  3056. msgid "Enable Support Roof"
  3057. msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto"
  3058. #: fdmprinter.def.json
  3059. msgctxt "support_roof_enable description"
  3060. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  3061. msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  3062. #: fdmprinter.def.json
  3063. msgctxt "support_bottom_enable label"
  3064. msgid "Enable Support Floor"
  3065. msgstr "Abilitazione parte inferiore supporto"
  3066. #: fdmprinter.def.json
  3067. msgctxt "support_bottom_enable description"
  3068. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  3069. msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  3070. #: fdmprinter.def.json
  3071. msgctxt "support_interface_height label"
  3072. msgid "Support Interface Thickness"
  3073. msgstr "Spessore interfaccia supporto"
  3074. #: fdmprinter.def.json
  3075. msgctxt "support_interface_height description"
  3076. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3077. msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore."
  3078. #: fdmprinter.def.json
  3079. msgctxt "support_roof_height label"
  3080. msgid "Support Roof Thickness"
  3081. msgstr "Spessore parte superiore (tetto) del supporto"
  3082. #: fdmprinter.def.json
  3083. msgctxt "support_roof_height description"
  3084. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  3085. msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello."
  3086. #: fdmprinter.def.json
  3087. msgctxt "support_bottom_height label"
  3088. msgid "Support Floor Thickness"
  3089. msgstr "Spessore parte inferiore del supporto"
  3090. #: fdmprinter.def.json
  3091. msgctxt "support_bottom_height description"
  3092. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  3093. msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto."
  3094. #: fdmprinter.def.json
  3095. msgctxt "support_interface_skip_height label"
  3096. msgid "Support Interface Resolution"
  3097. msgstr "Risoluzione interfaccia supporto"
  3098. #: fdmprinter.def.json
  3099. msgctxt "support_interface_skip_height description"
  3100. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  3101. msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto."
  3102. #: fdmprinter.def.json
  3103. msgctxt "support_interface_density label"
  3104. msgid "Support Interface Density"
  3105. msgstr "Densità interfaccia supporto"
  3106. #: fdmprinter.def.json
  3107. msgctxt "support_interface_density description"
  3108. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3109. msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  3110. #: fdmprinter.def.json
  3111. msgctxt "support_roof_density label"
  3112. msgid "Support Roof Density"
  3113. msgstr "Densità parte superiore (tetto) del supporto"
  3114. #: fdmprinter.def.json
  3115. msgctxt "support_roof_density description"
  3116. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3117. msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  3118. #: fdmprinter.def.json
  3119. msgctxt "support_roof_line_distance label"
  3120. msgid "Support Roof Line Distance"
  3121. msgstr "Distanza tra le linee della parte superiore (tetto) del supporto"
  3122. #: fdmprinter.def.json
  3123. msgctxt "support_roof_line_distance description"
  3124. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3125. msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente."
  3126. #: fdmprinter.def.json
  3127. msgctxt "support_bottom_density label"
  3128. msgid "Support Floor Density"
  3129. msgstr "Densità parte inferiore del supporto"
  3130. #: fdmprinter.def.json
  3131. msgctxt "support_bottom_density description"
  3132. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3133. msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello."
  3134. #: fdmprinter.def.json
  3135. msgctxt "support_bottom_line_distance label"
  3136. msgid "Support Floor Line Distance"
  3137. msgstr "Distanza della linea di supporto inferiore"
  3138. #: fdmprinter.def.json
  3139. msgctxt "support_bottom_line_distance description"
  3140. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3141. msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente."
  3142. #: fdmprinter.def.json
  3143. msgctxt "support_interface_pattern label"
  3144. msgid "Support Interface Pattern"
  3145. msgstr "Configurazione interfaccia supporto"
  3146. #: fdmprinter.def.json
  3147. msgctxt "support_interface_pattern description"
  3148. msgid "The pattern with which the interface of the support with the model is printed."
  3149. msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello."
  3150. #: fdmprinter.def.json
  3151. msgctxt "support_interface_pattern option lines"
  3152. msgid "Lines"
  3153. msgstr "Linee"
  3154. #: fdmprinter.def.json
  3155. msgctxt "support_interface_pattern option grid"
  3156. msgid "Grid"
  3157. msgstr "Griglia"
  3158. #: fdmprinter.def.json
  3159. msgctxt "support_interface_pattern option triangles"
  3160. msgid "Triangles"
  3161. msgstr "Triangoli"
  3162. #: fdmprinter.def.json
  3163. msgctxt "support_interface_pattern option concentric"
  3164. msgid "Concentric"
  3165. msgstr "Concentriche"
  3166. #: fdmprinter.def.json
  3167. msgctxt "support_interface_pattern option zigzag"
  3168. msgid "Zig Zag"
  3169. msgstr "Zig Zag"
  3170. #: fdmprinter.def.json
  3171. msgctxt "support_roof_pattern label"
  3172. msgid "Support Roof Pattern"
  3173. msgstr "Configurazione della parte superiore (tetto) del supporto"
  3174. #: fdmprinter.def.json
  3175. msgctxt "support_roof_pattern description"
  3176. msgid "The pattern with which the roofs of the support are printed."
  3177. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto."
  3178. #: fdmprinter.def.json
  3179. msgctxt "support_roof_pattern option lines"
  3180. msgid "Lines"
  3181. msgstr "Linee"
  3182. #: fdmprinter.def.json
  3183. msgctxt "support_roof_pattern option grid"
  3184. msgid "Grid"
  3185. msgstr "Griglia"
  3186. #: fdmprinter.def.json
  3187. msgctxt "support_roof_pattern option triangles"
  3188. msgid "Triangles"
  3189. msgstr "Triangoli"
  3190. #: fdmprinter.def.json
  3191. msgctxt "support_roof_pattern option concentric"
  3192. msgid "Concentric"
  3193. msgstr "Concentriche"
  3194. #: fdmprinter.def.json
  3195. msgctxt "support_roof_pattern option zigzag"
  3196. msgid "Zig Zag"
  3197. msgstr "Zig Zag"
  3198. #: fdmprinter.def.json
  3199. msgctxt "support_bottom_pattern label"
  3200. msgid "Support Floor Pattern"
  3201. msgstr "Configurazione della parte inferiore del supporto"
  3202. #: fdmprinter.def.json
  3203. msgctxt "support_bottom_pattern description"
  3204. msgid "The pattern with which the floors of the support are printed."
  3205. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto."
  3206. #: fdmprinter.def.json
  3207. msgctxt "support_bottom_pattern option lines"
  3208. msgid "Lines"
  3209. msgstr "Linee"
  3210. #: fdmprinter.def.json
  3211. msgctxt "support_bottom_pattern option grid"
  3212. msgid "Grid"
  3213. msgstr "Griglia"
  3214. #: fdmprinter.def.json
  3215. msgctxt "support_bottom_pattern option triangles"
  3216. msgid "Triangles"
  3217. msgstr "Triangoli"
  3218. #: fdmprinter.def.json
  3219. msgctxt "support_bottom_pattern option concentric"
  3220. msgid "Concentric"
  3221. msgstr "Concentriche"
  3222. #: fdmprinter.def.json
  3223. msgctxt "support_bottom_pattern option zigzag"
  3224. msgid "Zig Zag"
  3225. msgstr "Zig Zag"
  3226. #: fdmprinter.def.json
  3227. msgctxt "minimum_interface_area label"
  3228. msgid "Minimum Support Interface Area"
  3229. msgstr "Area minima interfaccia supporto"
  3230. #: fdmprinter.def.json
  3231. msgctxt "minimum_interface_area description"
  3232. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3233. msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
  3234. #: fdmprinter.def.json
  3235. msgctxt "minimum_roof_area label"
  3236. msgid "Minimum Support Roof Area"
  3237. msgstr "Area minima parti superiori supporto"
  3238. #: fdmprinter.def.json
  3239. msgctxt "minimum_roof_area description"
  3240. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3241. msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
  3242. #: fdmprinter.def.json
  3243. msgctxt "minimum_bottom_area label"
  3244. msgid "Minimum Support Floor Area"
  3245. msgstr "Area minima parti inferiori supporto"
  3246. #: fdmprinter.def.json
  3247. msgctxt "minimum_bottom_area description"
  3248. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3249. msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale."
  3250. #: fdmprinter.def.json
  3251. msgctxt "support_interface_offset label"
  3252. msgid "Support Interface Horizontal Expansion"
  3253. msgstr "Espansione orizzontale interfaccia supporto"
  3254. #: fdmprinter.def.json
  3255. msgctxt "support_interface_offset description"
  3256. msgid "Amount of offset applied to the support interface polygons."
  3257. msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto."
  3258. #: fdmprinter.def.json
  3259. msgctxt "support_roof_offset label"
  3260. msgid "Support Roof Horizontal Expansion"
  3261. msgstr "Espansione orizzontale parti superiori supporto"
  3262. #: fdmprinter.def.json
  3263. msgctxt "support_roof_offset description"
  3264. msgid "Amount of offset applied to the roofs of the support."
  3265. msgstr "Entità di offset applicato alle parti superiori del supporto."
  3266. #: fdmprinter.def.json
  3267. msgctxt "support_bottom_offset label"
  3268. msgid "Support Floor Horizontal Expansion"
  3269. msgstr "Espansione orizzontale parti inferiori supporto"
  3270. #: fdmprinter.def.json
  3271. msgctxt "support_bottom_offset description"
  3272. msgid "Amount of offset applied to the floors of the support."
  3273. msgstr "Entità di offset applicato alle parti inferiori del supporto."
  3274. #: fdmprinter.def.json
  3275. msgctxt "support_interface_angles label"
  3276. msgid "Support Interface Line Directions"
  3277. msgstr "Direzioni della linea dell'interfaccia di supporto"
  3278. #: fdmprinter.def.json
  3279. msgctxt "support_interface_angles description"
  3280. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3281. msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)."
  3282. #: fdmprinter.def.json
  3283. msgctxt "support_roof_angles label"
  3284. msgid "Support Roof Line Directions"
  3285. msgstr "Direzioni delle linee di supporto superiori"
  3286. #: fdmprinter.def.json
  3287. msgctxt "support_roof_angles description"
  3288. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3289. msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)."
  3290. #: fdmprinter.def.json
  3291. msgctxt "support_bottom_angles label"
  3292. msgid "Support Floor Line Directions"
  3293. msgstr "Direzioni della larghezza della linea di supporto inferiore"
  3294. #: fdmprinter.def.json
  3295. msgctxt "support_bottom_angles description"
  3296. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3297. msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)."
  3298. #: fdmprinter.def.json
  3299. msgctxt "support_fan_enable label"
  3300. msgid "Fan Speed Override"
  3301. msgstr "Override velocità della ventola"
  3302. #: fdmprinter.def.json
  3303. msgctxt "support_fan_enable description"
  3304. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3305. msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto."
  3306. #: fdmprinter.def.json
  3307. msgctxt "support_supported_skin_fan_speed label"
  3308. msgid "Supported Skin Fan Speed"
  3309. msgstr "Velocità della ventola del rivestimento esterno supportato"
  3310. #: fdmprinter.def.json
  3311. msgctxt "support_supported_skin_fan_speed description"
  3312. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  3313. msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto."
  3314. #: fdmprinter.def.json
  3315. msgctxt "support_use_towers label"
  3316. msgid "Use Towers"
  3317. msgstr "Utilizzo delle torri"
  3318. #: fdmprinter.def.json
  3319. msgctxt "support_use_towers description"
  3320. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  3321. msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'."
  3322. #: fdmprinter.def.json
  3323. msgctxt "support_tower_diameter label"
  3324. msgid "Tower Diameter"
  3325. msgstr "Diametro della torre"
  3326. #: fdmprinter.def.json
  3327. msgctxt "support_tower_diameter description"
  3328. msgid "The diameter of a special tower."
  3329. msgstr "Corrisponde al diametro di una torre speciale."
  3330. #: fdmprinter.def.json
  3331. msgctxt "support_tower_maximum_supported_diameter label"
  3332. msgid "Maximum Tower-Supported Diameter"
  3333. msgstr "Diametro supportato dalla torre"
  3334. #: fdmprinter.def.json
  3335. msgctxt "support_tower_maximum_supported_diameter description"
  3336. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3337. msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale."
  3338. #: fdmprinter.def.json
  3339. msgctxt "support_tower_roof_angle label"
  3340. msgid "Tower Roof Angle"
  3341. msgstr "Angolazione della parte superiore (tetto) della torre"
  3342. #: fdmprinter.def.json
  3343. msgctxt "support_tower_roof_angle description"
  3344. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3345. msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte."
  3346. #: fdmprinter.def.json
  3347. msgctxt "support_mesh_drop_down label"
  3348. msgid "Drop Down Support Mesh"
  3349. msgstr "Maglia supporto di discesa"
  3350. #: fdmprinter.def.json
  3351. msgctxt "support_mesh_drop_down description"
  3352. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3353. msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo."
  3354. #: fdmprinter.def.json
  3355. msgctxt "platform_adhesion label"
  3356. msgid "Build Plate Adhesion"
  3357. msgstr "Adesione piano di stampa"
  3358. #: fdmprinter.def.json
  3359. msgctxt "platform_adhesion description"
  3360. msgid "Adhesion"
  3361. msgstr "Adesione"
  3362. #: fdmprinter.def.json
  3363. msgctxt "prime_blob_enable label"
  3364. msgid "Enable Prime Blob"
  3365. msgstr "Abilitazione blob di innesco"
  3366. #: fdmprinter.def.json
  3367. msgctxt "prime_blob_enable description"
  3368. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  3369. msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo."
  3370. #: fdmprinter.def.json
  3371. msgctxt "extruder_prime_pos_x label"
  3372. msgid "Extruder Prime X Position"
  3373. msgstr "Posizione X innesco estrusore"
  3374. #: fdmprinter.def.json
  3375. msgctxt "extruder_prime_pos_x description"
  3376. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3377. msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa."
  3378. #: fdmprinter.def.json
  3379. msgctxt "extruder_prime_pos_y label"
  3380. msgid "Extruder Prime Y Position"
  3381. msgstr "Posizione Y innesco estrusore"
  3382. #: fdmprinter.def.json
  3383. msgctxt "extruder_prime_pos_y description"
  3384. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3385. msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa."
  3386. #: fdmprinter.def.json
  3387. msgctxt "adhesion_type label"
  3388. msgid "Build Plate Adhesion Type"
  3389. msgstr "Tipo di adesione piano di stampa"
  3390. #: fdmprinter.def.json
  3391. msgctxt "adhesion_type description"
  3392. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  3393. msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello."
  3394. #: fdmprinter.def.json
  3395. msgctxt "adhesion_type option skirt"
  3396. msgid "Skirt"
  3397. msgstr "Skirt"
  3398. #: fdmprinter.def.json
  3399. msgctxt "adhesion_type option brim"
  3400. msgid "Brim"
  3401. msgstr "Brim"
  3402. #: fdmprinter.def.json
  3403. msgctxt "adhesion_type option raft"
  3404. msgid "Raft"
  3405. msgstr "Raft"
  3406. #: fdmprinter.def.json
  3407. msgctxt "adhesion_type option none"
  3408. msgid "None"
  3409. msgstr "Nessuno"
  3410. #: fdmprinter.def.json
  3411. msgctxt "adhesion_extruder_nr label"
  3412. msgid "Build Plate Adhesion Extruder"
  3413. msgstr "Estrusore adesione piano di stampa"
  3414. #: fdmprinter.def.json
  3415. msgctxt "adhesion_extruder_nr description"
  3416. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3417. msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla."
  3418. #: fdmprinter.def.json
  3419. msgctxt "skirt_line_count label"
  3420. msgid "Skirt Line Count"
  3421. msgstr "Numero di linee dello skirt"
  3422. #: fdmprinter.def.json
  3423. msgctxt "skirt_line_count description"
  3424. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3425. msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt."
  3426. #: fdmprinter.def.json
  3427. msgctxt "skirt_gap label"
  3428. msgid "Skirt Distance"
  3429. msgstr "Distanza dello skirt"
  3430. #: fdmprinter.def.json
  3431. msgctxt "skirt_gap description"
  3432. msgid ""
  3433. "The horizontal distance between the skirt and the first layer of the print.\n"
  3434. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3435. msgstr ""
  3436. "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n"
  3437. "Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza."
  3438. #: fdmprinter.def.json
  3439. msgctxt "skirt_brim_minimal_length label"
  3440. msgid "Skirt/Brim Minimum Length"
  3441. msgstr "Lunghezza minima dello skirt/brim"
  3442. #: fdmprinter.def.json
  3443. msgctxt "skirt_brim_minimal_length description"
  3444. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  3445. msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata."
  3446. #: fdmprinter.def.json
  3447. msgctxt "brim_width label"
  3448. msgid "Brim Width"
  3449. msgstr "Larghezza del brim"
  3450. #: fdmprinter.def.json
  3451. msgctxt "brim_width description"
  3452. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3453. msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa."
  3454. #: fdmprinter.def.json
  3455. msgctxt "brim_line_count label"
  3456. msgid "Brim Line Count"
  3457. msgstr "Numero di linee del brim"
  3458. #: fdmprinter.def.json
  3459. msgctxt "brim_line_count description"
  3460. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  3461. msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa."
  3462. #: fdmprinter.def.json
  3463. msgctxt "brim_gap label"
  3464. msgid "Brim Distance"
  3465. msgstr ""
  3466. #: fdmprinter.def.json
  3467. msgctxt "brim_gap description"
  3468. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3469. msgstr ""
  3470. #: fdmprinter.def.json
  3471. msgctxt "brim_replaces_support label"
  3472. msgid "Brim Replaces Support"
  3473. msgstr "Brim in sostituzione del supporto"
  3474. #: fdmprinter.def.json
  3475. msgctxt "brim_replaces_support description"
  3476. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  3477. msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim."
  3478. #: fdmprinter.def.json
  3479. msgctxt "brim_outside_only label"
  3480. msgid "Brim Only on Outside"
  3481. msgstr "Brim solo sull’esterno"
  3482. #: fdmprinter.def.json
  3483. msgctxt "brim_outside_only description"
  3484. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  3485. msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano."
  3486. #: fdmprinter.def.json
  3487. msgctxt "raft_margin label"
  3488. msgid "Raft Extra Margin"
  3489. msgstr "Margine extra del raft"
  3490. #: fdmprinter.def.json
  3491. msgctxt "raft_margin description"
  3492. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  3493. msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa."
  3494. #: fdmprinter.def.json
  3495. msgctxt "raft_smoothing label"
  3496. msgid "Raft Smoothing"
  3497. msgstr "Smoothing raft"
  3498. #: fdmprinter.def.json
  3499. msgctxt "raft_smoothing description"
  3500. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3501. msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio."
  3502. #: fdmprinter.def.json
  3503. msgctxt "raft_airgap label"
  3504. msgid "Raft Air Gap"
  3505. msgstr "Traferro del raft"
  3506. #: fdmprinter.def.json
  3507. msgctxt "raft_airgap description"
  3508. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3509. msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft."
  3510. #: fdmprinter.def.json
  3511. msgctxt "layer_0_z_overlap label"
  3512. msgid "Initial Layer Z Overlap"
  3513. msgstr "Z Sovrapposizione Primo Strato"
  3514. #: fdmprinter.def.json
  3515. msgctxt "layer_0_z_overlap description"
  3516. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  3517. msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità."
  3518. #: fdmprinter.def.json
  3519. msgctxt "raft_surface_layers label"
  3520. msgid "Raft Top Layers"
  3521. msgstr "Strati superiori del raft"
  3522. #: fdmprinter.def.json
  3523. msgctxt "raft_surface_layers description"
  3524. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  3525. msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato."
  3526. #: fdmprinter.def.json
  3527. msgctxt "raft_surface_thickness label"
  3528. msgid "Raft Top Layer Thickness"
  3529. msgstr "Spessore dello strato superiore del raft"
  3530. #: fdmprinter.def.json
  3531. msgctxt "raft_surface_thickness description"
  3532. msgid "Layer thickness of the top raft layers."
  3533. msgstr "È lo spessore degli strati superiori del raft."
  3534. #: fdmprinter.def.json
  3535. msgctxt "raft_surface_line_width label"
  3536. msgid "Raft Top Line Width"
  3537. msgstr "Larghezza delle linee superiori del raft"
  3538. #: fdmprinter.def.json
  3539. msgctxt "raft_surface_line_width description"
  3540. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  3541. msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft."
  3542. #: fdmprinter.def.json
  3543. msgctxt "raft_surface_line_spacing label"
  3544. msgid "Raft Top Spacing"
  3545. msgstr "Spaziatura superiore del raft"
  3546. #: fdmprinter.def.json
  3547. msgctxt "raft_surface_line_spacing description"
  3548. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3549. msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida."
  3550. #: fdmprinter.def.json
  3551. msgctxt "raft_interface_thickness label"
  3552. msgid "Raft Middle Thickness"
  3553. msgstr "Spessore dello strato intermedio del raft"
  3554. #: fdmprinter.def.json
  3555. msgctxt "raft_interface_thickness description"
  3556. msgid "Layer thickness of the middle raft layer."
  3557. msgstr "È lo spessore dello strato intermedio del raft."
  3558. #: fdmprinter.def.json
  3559. msgctxt "raft_interface_line_width label"
  3560. msgid "Raft Middle Line Width"
  3561. msgstr "Larghezza delle linee dello strato intermedio del raft"
  3562. #: fdmprinter.def.json
  3563. msgctxt "raft_interface_line_width description"
  3564. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  3565. msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa."
  3566. #: fdmprinter.def.json
  3567. msgctxt "raft_interface_line_spacing label"
  3568. msgid "Raft Middle Spacing"
  3569. msgstr "Spaziatura dello strato intermedio del raft"
  3570. #: fdmprinter.def.json
  3571. msgctxt "raft_interface_line_spacing description"
  3572. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3573. msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft."
  3574. #: fdmprinter.def.json
  3575. msgctxt "raft_base_thickness label"
  3576. msgid "Raft Base Thickness"
  3577. msgstr "Spessore della base del raft"
  3578. #: fdmprinter.def.json
  3579. msgctxt "raft_base_thickness description"
  3580. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3581. msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa."
  3582. #: fdmprinter.def.json
  3583. msgctxt "raft_base_line_width label"
  3584. msgid "Raft Base Line Width"
  3585. msgstr "Larghezza delle linee dello strato di base del raft"
  3586. #: fdmprinter.def.json
  3587. msgctxt "raft_base_line_width description"
  3588. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3589. msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa."
  3590. #: fdmprinter.def.json
  3591. msgctxt "raft_base_line_spacing label"
  3592. msgid "Raft Base Line Spacing"
  3593. msgstr "Spaziatura delle linee dello strato di base del raft"
  3594. #: fdmprinter.def.json
  3595. msgctxt "raft_base_line_spacing description"
  3596. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3597. msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa."
  3598. #: fdmprinter.def.json
  3599. msgctxt "raft_speed label"
  3600. msgid "Raft Print Speed"
  3601. msgstr "Velocità di stampa del raft"
  3602. #: fdmprinter.def.json
  3603. msgctxt "raft_speed description"
  3604. msgid "The speed at which the raft is printed."
  3605. msgstr "Indica la velocità alla quale il raft è stampato."
  3606. #: fdmprinter.def.json
  3607. msgctxt "raft_surface_speed label"
  3608. msgid "Raft Top Print Speed"
  3609. msgstr "Velocità di stampa parte superiore del raft"
  3610. #: fdmprinter.def.json
  3611. msgctxt "raft_surface_speed description"
  3612. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  3613. msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti."
  3614. #: fdmprinter.def.json
  3615. msgctxt "raft_interface_speed label"
  3616. msgid "Raft Middle Print Speed"
  3617. msgstr "Velocità di stampa raft intermedio"
  3618. #: fdmprinter.def.json
  3619. msgctxt "raft_interface_speed description"
  3620. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3621. msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato."
  3622. #: fdmprinter.def.json
  3623. msgctxt "raft_base_speed label"
  3624. msgid "Raft Base Print Speed"
  3625. msgstr "Velocità di stampa della base del raft"
  3626. #: fdmprinter.def.json
  3627. msgctxt "raft_base_speed description"
  3628. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3629. msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato."
  3630. #: fdmprinter.def.json
  3631. msgctxt "raft_acceleration label"
  3632. msgid "Raft Print Acceleration"
  3633. msgstr "Accelerazione di stampa del raft"
  3634. #: fdmprinter.def.json
  3635. msgctxt "raft_acceleration description"
  3636. msgid "The acceleration with which the raft is printed."
  3637. msgstr "Indica l’accelerazione con cui viene stampato il raft."
  3638. #: fdmprinter.def.json
  3639. msgctxt "raft_surface_acceleration label"
  3640. msgid "Raft Top Print Acceleration"
  3641. msgstr "Accelerazione di stampa parte superiore del raft"
  3642. #: fdmprinter.def.json
  3643. msgctxt "raft_surface_acceleration description"
  3644. msgid "The acceleration with which the top raft layers are printed."
  3645. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft."
  3646. #: fdmprinter.def.json
  3647. msgctxt "raft_interface_acceleration label"
  3648. msgid "Raft Middle Print Acceleration"
  3649. msgstr "Accelerazione di stampa raft intermedio"
  3650. #: fdmprinter.def.json
  3651. msgctxt "raft_interface_acceleration description"
  3652. msgid "The acceleration with which the middle raft layer is printed."
  3653. msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft."
  3654. #: fdmprinter.def.json
  3655. msgctxt "raft_base_acceleration label"
  3656. msgid "Raft Base Print Acceleration"
  3657. msgstr "Accelerazione di stampa della base del raft"
  3658. #: fdmprinter.def.json
  3659. msgctxt "raft_base_acceleration description"
  3660. msgid "The acceleration with which the base raft layer is printed."
  3661. msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft."
  3662. #: fdmprinter.def.json
  3663. msgctxt "raft_jerk label"
  3664. msgid "Raft Print Jerk"
  3665. msgstr "Jerk stampa del raft"
  3666. #: fdmprinter.def.json
  3667. msgctxt "raft_jerk description"
  3668. msgid "The jerk with which the raft is printed."
  3669. msgstr "Indica il jerk con cui viene stampato il raft."
  3670. #: fdmprinter.def.json
  3671. msgctxt "raft_surface_jerk label"
  3672. msgid "Raft Top Print Jerk"
  3673. msgstr "Jerk di stampa parte superiore del raft"
  3674. #: fdmprinter.def.json
  3675. msgctxt "raft_surface_jerk description"
  3676. msgid "The jerk with which the top raft layers are printed."
  3677. msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft."
  3678. #: fdmprinter.def.json
  3679. msgctxt "raft_interface_jerk label"
  3680. msgid "Raft Middle Print Jerk"
  3681. msgstr "Jerk di stampa raft intermedio"
  3682. #: fdmprinter.def.json
  3683. msgctxt "raft_interface_jerk description"
  3684. msgid "The jerk with which the middle raft layer is printed."
  3685. msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft."
  3686. #: fdmprinter.def.json
  3687. msgctxt "raft_base_jerk label"
  3688. msgid "Raft Base Print Jerk"
  3689. msgstr "Jerk di stampa della base del raft"
  3690. #: fdmprinter.def.json
  3691. msgctxt "raft_base_jerk description"
  3692. msgid "The jerk with which the base raft layer is printed."
  3693. msgstr "Indica il jerk con cui viene stampato lo strato di base del raft."
  3694. #: fdmprinter.def.json
  3695. msgctxt "raft_fan_speed label"
  3696. msgid "Raft Fan Speed"
  3697. msgstr "Velocità della ventola per il raft"
  3698. #: fdmprinter.def.json
  3699. msgctxt "raft_fan_speed description"
  3700. msgid "The fan speed for the raft."
  3701. msgstr "Indica la velocità di rotazione della ventola per il raft."
  3702. #: fdmprinter.def.json
  3703. msgctxt "raft_surface_fan_speed label"
  3704. msgid "Raft Top Fan Speed"
  3705. msgstr "Velocità della ventola per la parte superiore del raft"
  3706. #: fdmprinter.def.json
  3707. msgctxt "raft_surface_fan_speed description"
  3708. msgid "The fan speed for the top raft layers."
  3709. msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft."
  3710. #: fdmprinter.def.json
  3711. msgctxt "raft_interface_fan_speed label"
  3712. msgid "Raft Middle Fan Speed"
  3713. msgstr "Velocità della ventola per il raft intermedio"
  3714. #: fdmprinter.def.json
  3715. msgctxt "raft_interface_fan_speed description"
  3716. msgid "The fan speed for the middle raft layer."
  3717. msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft."
  3718. #: fdmprinter.def.json
  3719. msgctxt "raft_base_fan_speed label"
  3720. msgid "Raft Base Fan Speed"
  3721. msgstr "Velocità della ventola per la base del raft"
  3722. #: fdmprinter.def.json
  3723. msgctxt "raft_base_fan_speed description"
  3724. msgid "The fan speed for the base raft layer."
  3725. msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft."
  3726. #: fdmprinter.def.json
  3727. msgctxt "dual label"
  3728. msgid "Dual Extrusion"
  3729. msgstr "Doppia estrusione"
  3730. #: fdmprinter.def.json
  3731. msgctxt "dual description"
  3732. msgid "Settings used for printing with multiple extruders."
  3733. msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli."
  3734. #: fdmprinter.def.json
  3735. msgctxt "prime_tower_enable label"
  3736. msgid "Enable Prime Tower"
  3737. msgstr "Abilitazione torre di innesco"
  3738. #: fdmprinter.def.json
  3739. msgctxt "prime_tower_enable description"
  3740. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3741. msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello."
  3742. #: fdmprinter.def.json
  3743. msgctxt "prime_tower_size label"
  3744. msgid "Prime Tower Size"
  3745. msgstr "Dimensioni torre di innesco"
  3746. #: fdmprinter.def.json
  3747. msgctxt "prime_tower_size description"
  3748. msgid "The width of the prime tower."
  3749. msgstr "Indica la larghezza della torre di innesco."
  3750. #: fdmprinter.def.json
  3751. msgctxt "prime_tower_min_volume label"
  3752. msgid "Prime Tower Minimum Volume"
  3753. msgstr "Volume minimo torre di innesco"
  3754. #: fdmprinter.def.json
  3755. msgctxt "prime_tower_min_volume description"
  3756. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3757. msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza."
  3758. #: fdmprinter.def.json
  3759. msgctxt "prime_tower_position_x label"
  3760. msgid "Prime Tower X Position"
  3761. msgstr "Posizione X torre di innesco"
  3762. #: fdmprinter.def.json
  3763. msgctxt "prime_tower_position_x description"
  3764. msgid "The x coordinate of the position of the prime tower."
  3765. msgstr "Indica la coordinata X della posizione della torre di innesco."
  3766. #: fdmprinter.def.json
  3767. msgctxt "prime_tower_position_y label"
  3768. msgid "Prime Tower Y Position"
  3769. msgstr "Posizione Y torre di innesco"
  3770. #: fdmprinter.def.json
  3771. msgctxt "prime_tower_position_y description"
  3772. msgid "The y coordinate of the position of the prime tower."
  3773. msgstr "Indica la coordinata Y della posizione della torre di innesco."
  3774. #: fdmprinter.def.json
  3775. msgctxt "prime_tower_wipe_enabled label"
  3776. msgid "Wipe Inactive Nozzle on Prime Tower"
  3777. msgstr "Ugello pulitura inattiva sulla torre di innesco"
  3778. #: fdmprinter.def.json
  3779. msgctxt "prime_tower_wipe_enabled description"
  3780. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3781. msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco."
  3782. #: fdmprinter.def.json
  3783. msgctxt "prime_tower_brim_enable label"
  3784. msgid "Prime Tower Brim"
  3785. msgstr "Brim torre di innesco"
  3786. #: fdmprinter.def.json
  3787. msgctxt "prime_tower_brim_enable description"
  3788. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  3789. msgstr "Le torri di innesco potrebbero richiedere un'adesione supplementare fornita da un bordo (brim), anche se il modello non lo prevede. Attualmente non può essere utilizzato con il tipo di adesione 'Raft'."
  3790. #: fdmprinter.def.json
  3791. msgctxt "ooze_shield_enabled label"
  3792. msgid "Enable Ooze Shield"
  3793. msgstr "Abilitazione del riparo materiale fuoriuscito"
  3794. #: fdmprinter.def.json
  3795. msgctxt "ooze_shield_enabled description"
  3796. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  3797. msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello."
  3798. #: fdmprinter.def.json
  3799. msgctxt "ooze_shield_angle label"
  3800. msgid "Ooze Shield Angle"
  3801. msgstr "Angolo del riparo materiale fuoriuscito"
  3802. #: fdmprinter.def.json
  3803. msgctxt "ooze_shield_angle description"
  3804. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3805. msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale."
  3806. #: fdmprinter.def.json
  3807. msgctxt "ooze_shield_dist label"
  3808. msgid "Ooze Shield Distance"
  3809. msgstr "Distanza del riparo materiale fuoriuscito"
  3810. #: fdmprinter.def.json
  3811. msgctxt "ooze_shield_dist description"
  3812. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3813. msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y."
  3814. #: fdmprinter.def.json
  3815. msgctxt "switch_extruder_retraction_amount label"
  3816. msgid "Nozzle Switch Retraction Distance"
  3817. msgstr "Distanza di retrazione cambio ugello"
  3818. #: fdmprinter.def.json
  3819. msgctxt "switch_extruder_retraction_amount description"
  3820. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  3821. msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento."
  3822. #: fdmprinter.def.json
  3823. msgctxt "switch_extruder_retraction_speeds label"
  3824. msgid "Nozzle Switch Retraction Speed"
  3825. msgstr "Velocità di retrazione cambio ugello"
  3826. #: fdmprinter.def.json
  3827. msgctxt "switch_extruder_retraction_speeds description"
  3828. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  3829. msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento."
  3830. #: fdmprinter.def.json
  3831. msgctxt "switch_extruder_retraction_speed label"
  3832. msgid "Nozzle Switch Retract Speed"
  3833. msgstr "Velocità di retrazione cambio ugello"
  3834. #: fdmprinter.def.json
  3835. msgctxt "switch_extruder_retraction_speed description"
  3836. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3837. msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello."
  3838. #: fdmprinter.def.json
  3839. msgctxt "switch_extruder_prime_speed label"
  3840. msgid "Nozzle Switch Prime Speed"
  3841. msgstr "Velocità innesco cambio ugello"
  3842. #: fdmprinter.def.json
  3843. msgctxt "switch_extruder_prime_speed description"
  3844. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3845. msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello."
  3846. #: fdmprinter.def.json
  3847. msgctxt "switch_extruder_extra_prime_amount label"
  3848. msgid "Nozzle Switch Extra Prime Amount"
  3849. msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello"
  3850. #: fdmprinter.def.json
  3851. msgctxt "switch_extruder_extra_prime_amount description"
  3852. msgid "Extra material to prime after nozzle switching."
  3853. msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello."
  3854. #: fdmprinter.def.json
  3855. msgctxt "meshfix label"
  3856. msgid "Mesh Fixes"
  3857. msgstr "Correzioni delle maglie"
  3858. #: fdmprinter.def.json
  3859. msgctxt "meshfix description"
  3860. msgid "category_fixes"
  3861. msgstr "category_fixes"
  3862. #: fdmprinter.def.json
  3863. msgctxt "meshfix_union_all label"
  3864. msgid "Union Overlapping Volumes"
  3865. msgstr "Unione dei volumi in sovrapposizione"
  3866. #: fdmprinter.def.json
  3867. msgctxt "meshfix_union_all description"
  3868. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  3869. msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne."
  3870. #: fdmprinter.def.json
  3871. msgctxt "meshfix_union_all_remove_holes label"
  3872. msgid "Remove All Holes"
  3873. msgstr "Rimozione di tutti i fori"
  3874. #: fdmprinter.def.json
  3875. msgctxt "meshfix_union_all_remove_holes description"
  3876. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  3877. msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto."
  3878. #: fdmprinter.def.json
  3879. msgctxt "meshfix_extensive_stitching label"
  3880. msgid "Extensive Stitching"
  3881. msgstr "Ricucitura completa dei fori"
  3882. #: fdmprinter.def.json
  3883. msgctxt "meshfix_extensive_stitching description"
  3884. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  3885. msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione."
  3886. #: fdmprinter.def.json
  3887. msgctxt "meshfix_keep_open_polygons label"
  3888. msgid "Keep Disconnected Faces"
  3889. msgstr "Mantenimento delle superfici scollegate"
  3890. #: fdmprinter.def.json
  3891. msgctxt "meshfix_keep_open_polygons description"
  3892. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  3893. msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo."
  3894. #: fdmprinter.def.json
  3895. msgctxt "multiple_mesh_overlap label"
  3896. msgid "Merged Meshes Overlap"
  3897. msgstr "Sovrapposizione maglie"
  3898. #: fdmprinter.def.json
  3899. msgctxt "multiple_mesh_overlap description"
  3900. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3901. msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione."
  3902. #: fdmprinter.def.json
  3903. msgctxt "carve_multiple_volumes label"
  3904. msgid "Remove Mesh Intersection"
  3905. msgstr "Rimuovi intersezione maglie"
  3906. #: fdmprinter.def.json
  3907. msgctxt "carve_multiple_volumes description"
  3908. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3909. msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro."
  3910. #: fdmprinter.def.json
  3911. msgctxt "alternate_carve_order label"
  3912. msgid "Alternate Mesh Removal"
  3913. msgstr "Rimozione maglie alternate"
  3914. #: fdmprinter.def.json
  3915. msgctxt "alternate_carve_order description"
  3916. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  3917. msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie."
  3918. #: fdmprinter.def.json
  3919. msgctxt "remove_empty_first_layers label"
  3920. msgid "Remove Empty First Layers"
  3921. msgstr "Rimuovere i primi strati vuoti"
  3922. #: fdmprinter.def.json
  3923. msgctxt "remove_empty_first_layers description"
  3924. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  3925. msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia."
  3926. #: fdmprinter.def.json
  3927. msgctxt "meshfix_maximum_resolution label"
  3928. msgid "Maximum Resolution"
  3929. msgstr "Risoluzione massima"
  3930. #: fdmprinter.def.json
  3931. msgctxt "meshfix_maximum_resolution description"
  3932. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  3933. msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare."
  3934. #: fdmprinter.def.json
  3935. msgctxt "meshfix_maximum_travel_resolution label"
  3936. msgid "Maximum Travel Resolution"
  3937. msgstr "Risoluzione massima di spostamento"
  3938. #: fdmprinter.def.json
  3939. msgctxt "meshfix_maximum_travel_resolution description"
  3940. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  3941. msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello."
  3942. #: fdmprinter.def.json
  3943. msgctxt "meshfix_maximum_deviation label"
  3944. msgid "Maximum Deviation"
  3945. msgstr "Deviazione massima"
  3946. #: fdmprinter.def.json
  3947. msgctxt "meshfix_maximum_deviation description"
  3948. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  3949. msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima."
  3950. #: fdmprinter.def.json
  3951. msgctxt "blackmagic label"
  3952. msgid "Special Modes"
  3953. msgstr "Modalità speciali"
  3954. #: fdmprinter.def.json
  3955. msgctxt "blackmagic description"
  3956. msgid "category_blackmagic"
  3957. msgstr "category_blackmagic"
  3958. #: fdmprinter.def.json
  3959. msgctxt "print_sequence label"
  3960. msgid "Print Sequence"
  3961. msgstr "Sequenza di stampa"
  3962. #: fdmprinter.def.json
  3963. msgctxt "print_sequence description"
  3964. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
  3965. msgstr ""
  3966. #: fdmprinter.def.json
  3967. msgctxt "print_sequence option all_at_once"
  3968. msgid "All at Once"
  3969. msgstr "Tutti contemporaneamente"
  3970. #: fdmprinter.def.json
  3971. msgctxt "print_sequence option one_at_a_time"
  3972. msgid "One at a Time"
  3973. msgstr "Uno alla volta"
  3974. #: fdmprinter.def.json
  3975. msgctxt "infill_mesh label"
  3976. msgid "Infill Mesh"
  3977. msgstr "Maglia di riempimento"
  3978. #: fdmprinter.def.json
  3979. msgctxt "infill_mesh description"
  3980. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  3981. msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia."
  3982. #: fdmprinter.def.json
  3983. msgctxt "infill_mesh_order label"
  3984. msgid "Infill Mesh Order"
  3985. msgstr "Ordine maglia di riempimento"
  3986. #: fdmprinter.def.json
  3987. msgctxt "infill_mesh_order description"
  3988. msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  3989. msgstr "Determina quale maglia di riempimento è all’interno del riempimento di un’altra maglia di riempimento. Una maglia di riempimento con un ordine superiore modifica il riempimento delle maglie con maglie di ordine inferiore e normali."
  3990. #: fdmprinter.def.json
  3991. msgctxt "cutting_mesh label"
  3992. msgid "Cutting Mesh"
  3993. msgstr "Ritaglio maglia"
  3994. #: fdmprinter.def.json
  3995. msgctxt "cutting_mesh description"
  3996. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  3997. msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore."
  3998. #: fdmprinter.def.json
  3999. msgctxt "mold_enabled label"
  4000. msgid "Mold"
  4001. msgstr "Stampo"
  4002. #: fdmprinter.def.json
  4003. msgctxt "mold_enabled description"
  4004. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4005. msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa."
  4006. #: fdmprinter.def.json
  4007. msgctxt "mold_width label"
  4008. msgid "Minimal Mold Width"
  4009. msgstr "Larghezza minimo dello stampo"
  4010. #: fdmprinter.def.json
  4011. msgctxt "mold_width description"
  4012. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  4013. msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello."
  4014. #: fdmprinter.def.json
  4015. msgctxt "mold_roof_height label"
  4016. msgid "Mold Roof Height"
  4017. msgstr "Altezza parte superiore dello stampo"
  4018. #: fdmprinter.def.json
  4019. msgctxt "mold_roof_height description"
  4020. msgid "The height above horizontal parts in your model which to print mold."
  4021. msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo."
  4022. #: fdmprinter.def.json
  4023. msgctxt "mold_angle label"
  4024. msgid "Mold Angle"
  4025. msgstr "Angolo stampo"
  4026. #: fdmprinter.def.json
  4027. msgctxt "mold_angle description"
  4028. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  4029. msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello."
  4030. #: fdmprinter.def.json
  4031. msgctxt "support_mesh label"
  4032. msgid "Support Mesh"
  4033. msgstr "Supporto maglia"
  4034. #: fdmprinter.def.json
  4035. msgctxt "support_mesh description"
  4036. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4037. msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto."
  4038. #: fdmprinter.def.json
  4039. msgctxt "anti_overhang_mesh label"
  4040. msgid "Anti Overhang Mesh"
  4041. msgstr "Maglia anti-sovrapposizione"
  4042. #: fdmprinter.def.json
  4043. msgctxt "anti_overhang_mesh description"
  4044. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4045. msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata."
  4046. #: fdmprinter.def.json
  4047. msgctxt "magic_mesh_surface_mode label"
  4048. msgid "Surface Mode"
  4049. msgstr "Modalità superficie"
  4050. #: fdmprinter.def.json
  4051. msgctxt "magic_mesh_surface_mode description"
  4052. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4053. msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici."
  4054. #: fdmprinter.def.json
  4055. msgctxt "magic_mesh_surface_mode option normal"
  4056. msgid "Normal"
  4057. msgstr "Normale"
  4058. #: fdmprinter.def.json
  4059. msgctxt "magic_mesh_surface_mode option surface"
  4060. msgid "Surface"
  4061. msgstr "Superficie"
  4062. #: fdmprinter.def.json
  4063. msgctxt "magic_mesh_surface_mode option both"
  4064. msgid "Both"
  4065. msgstr "Entrambi"
  4066. #: fdmprinter.def.json
  4067. msgctxt "magic_spiralize label"
  4068. msgid "Spiralize Outer Contour"
  4069. msgstr "Stampa del contorno esterno con movimento spiraliforme"
  4070. #: fdmprinter.def.json
  4071. msgctxt "magic_spiralize description"
  4072. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  4073. msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte."
  4074. #: fdmprinter.def.json
  4075. msgctxt "smooth_spiralized_contours label"
  4076. msgid "Smooth Spiralized Contours"
  4077. msgstr "Levigazione dei profili con movimento spiraliforme"
  4078. #: fdmprinter.def.json
  4079. msgctxt "smooth_spiralized_contours description"
  4080. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  4081. msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie."
  4082. #: fdmprinter.def.json
  4083. msgctxt "relative_extrusion label"
  4084. msgid "Relative Extrusion"
  4085. msgstr "Estrusione relativa"
  4086. #: fdmprinter.def.json
  4087. msgctxt "relative_extrusion description"
  4088. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  4089. msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G."
  4090. #: fdmprinter.def.json
  4091. msgctxt "experimental label"
  4092. msgid "Experimental"
  4093. msgstr "Sperimentale"
  4094. #: fdmprinter.def.json
  4095. msgctxt "experimental description"
  4096. msgid "experimental!"
  4097. msgstr "sperimentale!"
  4098. #: fdmprinter.def.json
  4099. msgctxt "support_tree_enable label"
  4100. msgid "Tree Support"
  4101. msgstr "Supporto ad albero"
  4102. #: fdmprinter.def.json
  4103. msgctxt "support_tree_enable description"
  4104. msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  4105. msgstr "Genera un supporto tipo albero con rami di sostegno della stampa. Questo può ridurre l’impiego di materiale e il tempo di stampa, ma aumenta notevolmente il tempo di sezionamento."
  4106. #: fdmprinter.def.json
  4107. msgctxt "support_tree_angle label"
  4108. msgid "Tree Support Branch Angle"
  4109. msgstr "Angolo ramo supporto ad albero"
  4110. #: fdmprinter.def.json
  4111. msgctxt "support_tree_angle description"
  4112. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  4113. msgstr "L’angolo dei rami. Utilizzare un angolo minore per renderli più verticali e più stabili. Utilizzare un angolo maggiore per avere una portata maggiore."
  4114. #: fdmprinter.def.json
  4115. msgctxt "support_tree_branch_distance label"
  4116. msgid "Tree Support Branch Distance"
  4117. msgstr "Distanza ramo supporto ad albero"
  4118. #: fdmprinter.def.json
  4119. msgctxt "support_tree_branch_distance description"
  4120. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  4121. msgstr "La distanza tra i rami necessaria quando toccano il modello. Una distanza ridotta causa il contatto del supporto ad albero con il modello in più punti, generando migliore sovrapposizione ma rendendo più difficoltosa la rimozione del supporto."
  4122. #: fdmprinter.def.json
  4123. msgctxt "support_tree_branch_diameter label"
  4124. msgid "Tree Support Branch Diameter"
  4125. msgstr "Diametro ramo supporto ad albero"
  4126. #: fdmprinter.def.json
  4127. msgctxt "support_tree_branch_diameter description"
  4128. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  4129. msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore."
  4130. #: fdmprinter.def.json
  4131. msgctxt "support_tree_branch_diameter_angle label"
  4132. msgid "Tree Support Branch Diameter Angle"
  4133. msgstr "Angolo diametro ramo supporto ad albero"
  4134. #: fdmprinter.def.json
  4135. msgctxt "support_tree_branch_diameter_angle description"
  4136. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  4137. msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero."
  4138. #: fdmprinter.def.json
  4139. msgctxt "support_tree_collision_resolution label"
  4140. msgid "Tree Support Collision Resolution"
  4141. msgstr "Risoluzione collisione supporto ad albero"
  4142. #: fdmprinter.def.json
  4143. msgctxt "support_tree_collision_resolution description"
  4144. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  4145. msgstr "Risoluzione per calcolare le collisioni per evitare di colpire il modello. L’impostazione a un valore basso genera alberi più accurati che si rompono meno sovente, ma aumenta notevolmente il tempo di sezionamento."
  4146. #: fdmprinter.def.json
  4147. msgctxt "slicing_tolerance label"
  4148. msgid "Slicing Tolerance"
  4149. msgstr "Tolleranza di sezionamento"
  4150. #: fdmprinter.def.json
  4151. msgctxt "slicing_tolerance description"
  4152. msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  4153. msgstr "Modalità di sezionamento di strati con superfici diagonali. Le aree di uno strato possono essere generate in base al punto in cui la parte intermedia dello strato interseca la superficie (intermedia). In alternativa le aree di ciascuno strato possono ricadere all'interno del volume per tutta l'altezza dello strato (Esclusiva) ovvero possono cadere in qualsiasi punto all'interno dello strato (Inclusiva). La tolleranza esclusiva mantiene il maggior numero di dettagli, la tolleranza inclusiva è la più idonea, mentre la tolleranza intermedia richiede il minor tempo di processo."
  4154. #: fdmprinter.def.json
  4155. msgctxt "slicing_tolerance option middle"
  4156. msgid "Middle"
  4157. msgstr "Intermedia"
  4158. #: fdmprinter.def.json
  4159. msgctxt "slicing_tolerance option exclusive"
  4160. msgid "Exclusive"
  4161. msgstr "Esclusiva"
  4162. #: fdmprinter.def.json
  4163. msgctxt "slicing_tolerance option inclusive"
  4164. msgid "Inclusive"
  4165. msgstr "Inclusiva"
  4166. #: fdmprinter.def.json
  4167. msgctxt "roofing_line_width label"
  4168. msgid "Top Surface Skin Line Width"
  4169. msgstr "Larghezza linea rivestimento superficie superiore"
  4170. #: fdmprinter.def.json
  4171. msgctxt "roofing_line_width description"
  4172. msgid "Width of a single line of the areas at the top of the print."
  4173. msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa."
  4174. #: fdmprinter.def.json
  4175. msgctxt "roofing_pattern label"
  4176. msgid "Top Surface Skin Pattern"
  4177. msgstr "Configurazione del rivestimento superficie superiore"
  4178. #: fdmprinter.def.json
  4179. msgctxt "roofing_pattern description"
  4180. msgid "The pattern of the top most layers."
  4181. msgstr "Configurazione degli strati superiori."
  4182. #: fdmprinter.def.json
  4183. msgctxt "roofing_pattern option lines"
  4184. msgid "Lines"
  4185. msgstr "Linee"
  4186. #: fdmprinter.def.json
  4187. msgctxt "roofing_pattern option concentric"
  4188. msgid "Concentric"
  4189. msgstr "Concentrica"
  4190. #: fdmprinter.def.json
  4191. msgctxt "roofing_pattern option zigzag"
  4192. msgid "Zig Zag"
  4193. msgstr "Zig Zag"
  4194. #: fdmprinter.def.json
  4195. msgctxt "roofing_angles label"
  4196. msgid "Top Surface Skin Line Directions"
  4197. msgstr "Direzioni linea rivestimento superficie superiore"
  4198. #: fdmprinter.def.json
  4199. msgctxt "roofing_angles description"
  4200. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  4201. msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)."
  4202. #: fdmprinter.def.json
  4203. msgctxt "infill_enable_travel_optimization label"
  4204. msgid "Infill Travel Optimization"
  4205. msgstr "Ottimizzazione spostamenti riempimento"
  4206. #: fdmprinter.def.json
  4207. msgctxt "infill_enable_travel_optimization description"
  4208. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4209. msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente."
  4210. #: fdmprinter.def.json
  4211. msgctxt "material_flow_dependent_temperature label"
  4212. msgid "Auto Temperature"
  4213. msgstr "Temperatura automatica"
  4214. #: fdmprinter.def.json
  4215. msgctxt "material_flow_dependent_temperature description"
  4216. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4217. msgstr "Modifica automaticamente la temperatura per ciascuno strato con la velocità media del flusso per tale strato."
  4218. #: fdmprinter.def.json
  4219. msgctxt "material_flow_temp_graph label"
  4220. msgid "Flow Temperature Graph"
  4221. msgstr "Grafico della temperatura del flusso"
  4222. #: fdmprinter.def.json
  4223. msgctxt "material_flow_temp_graph description"
  4224. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4225. msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)."
  4226. #: fdmprinter.def.json
  4227. msgctxt "minimum_polygon_circumference label"
  4228. msgid "Minimum Polygon Circumference"
  4229. msgstr "Circonferenza minima dei poligoni"
  4230. #: fdmprinter.def.json
  4231. msgctxt "minimum_polygon_circumference description"
  4232. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  4233. msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli."
  4234. #: fdmprinter.def.json
  4235. msgctxt "support_skip_some_zags label"
  4236. msgid "Break Up Support In Chunks"
  4237. msgstr "Rottura del supporto in pezzi di grandi dimensioni"
  4238. #: fdmprinter.def.json
  4239. msgctxt "support_skip_some_zags description"
  4240. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  4241. msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto."
  4242. #: fdmprinter.def.json
  4243. msgctxt "support_skip_zag_per_mm label"
  4244. msgid "Support Chunk Size"
  4245. msgstr "Dimensioni frammento supporto"
  4246. #: fdmprinter.def.json
  4247. msgctxt "support_skip_zag_per_mm description"
  4248. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4249. msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso."
  4250. #: fdmprinter.def.json
  4251. msgctxt "support_zag_skip_count label"
  4252. msgid "Support Chunk Line Count"
  4253. msgstr "Conteggio linee di rottura supporto"
  4254. #: fdmprinter.def.json
  4255. msgctxt "support_zag_skip_count description"
  4256. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4257. msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere."
  4258. #: fdmprinter.def.json
  4259. msgctxt "draft_shield_enabled label"
  4260. msgid "Enable Draft Shield"
  4261. msgstr "Abilitazione del riparo paravento"
  4262. #: fdmprinter.def.json
  4263. msgctxt "draft_shield_enabled description"
  4264. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4265. msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione."
  4266. #: fdmprinter.def.json
  4267. msgctxt "draft_shield_dist label"
  4268. msgid "Draft Shield X/Y Distance"
  4269. msgstr "Distanza X/Y del riparo paravento"
  4270. #: fdmprinter.def.json
  4271. msgctxt "draft_shield_dist description"
  4272. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4273. msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y."
  4274. #: fdmprinter.def.json
  4275. msgctxt "draft_shield_height_limitation label"
  4276. msgid "Draft Shield Limitation"
  4277. msgstr "Limitazione del riparo paravento"
  4278. #: fdmprinter.def.json
  4279. msgctxt "draft_shield_height_limitation description"
  4280. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  4281. msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata."
  4282. #: fdmprinter.def.json
  4283. msgctxt "draft_shield_height_limitation option full"
  4284. msgid "Full"
  4285. msgstr "Piena altezza"
  4286. #: fdmprinter.def.json
  4287. msgctxt "draft_shield_height_limitation option limited"
  4288. msgid "Limited"
  4289. msgstr "Limitazione in altezza"
  4290. #: fdmprinter.def.json
  4291. msgctxt "draft_shield_height label"
  4292. msgid "Draft Shield Height"
  4293. msgstr "Altezza del riparo paravento"
  4294. #: fdmprinter.def.json
  4295. msgctxt "draft_shield_height description"
  4296. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4297. msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo."
  4298. #: fdmprinter.def.json
  4299. msgctxt "conical_overhang_enabled label"
  4300. msgid "Make Overhang Printable"
  4301. msgstr "Rendi stampabile lo sbalzo"
  4302. #: fdmprinter.def.json
  4303. msgctxt "conical_overhang_enabled description"
  4304. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  4305. msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali."
  4306. #: fdmprinter.def.json
  4307. msgctxt "conical_overhang_angle label"
  4308. msgid "Maximum Model Angle"
  4309. msgstr "Massimo angolo modello"
  4310. #: fdmprinter.def.json
  4311. msgctxt "conical_overhang_angle description"
  4312. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  4313. msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo."
  4314. #: fdmprinter.def.json
  4315. msgctxt "coasting_enable label"
  4316. msgid "Enable Coasting"
  4317. msgstr "Abilitazione della funzione di Coasting"
  4318. #: fdmprinter.def.json
  4319. msgctxt "coasting_enable description"
  4320. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  4321. msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti."
  4322. #: fdmprinter.def.json
  4323. msgctxt "coasting_volume label"
  4324. msgid "Coasting Volume"
  4325. msgstr "Volume di Coasting"
  4326. #: fdmprinter.def.json
  4327. msgctxt "coasting_volume description"
  4328. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4329. msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo."
  4330. #: fdmprinter.def.json
  4331. msgctxt "coasting_min_volume label"
  4332. msgid "Minimum Volume Before Coasting"
  4333. msgstr "Volume minimo prima del Coasting"
  4334. #: fdmprinter.def.json
  4335. msgctxt "coasting_min_volume description"
  4336. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4337. msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting."
  4338. #: fdmprinter.def.json
  4339. msgctxt "coasting_speed label"
  4340. msgid "Coasting Speed"
  4341. msgstr "Velocità di Coasting"
  4342. #: fdmprinter.def.json
  4343. msgctxt "coasting_speed description"
  4344. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4345. msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende."
  4346. #: fdmprinter.def.json
  4347. msgctxt "cross_infill_pocket_size label"
  4348. msgid "Cross 3D Pocket Size"
  4349. msgstr "Dimensioni cavità 3D incrociata"
  4350. #: fdmprinter.def.json
  4351. msgctxt "cross_infill_pocket_size description"
  4352. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4353. msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa."
  4354. #: fdmprinter.def.json
  4355. msgctxt "cross_infill_density_image label"
  4356. msgid "Cross Infill Density Image"
  4357. msgstr "Immagine di densità del riempimento incrociato"
  4358. #: fdmprinter.def.json
  4359. msgctxt "cross_infill_density_image description"
  4360. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  4361. msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa."
  4362. #: fdmprinter.def.json
  4363. msgctxt "cross_support_density_image label"
  4364. msgid "Cross Fill Density Image for Support"
  4365. msgstr "Immagine di densità del riempimento incrociato per il supporto"
  4366. #: fdmprinter.def.json
  4367. msgctxt "cross_support_density_image description"
  4368. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4369. msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto."
  4370. #: fdmprinter.def.json
  4371. msgctxt "spaghetti_infill_enabled label"
  4372. msgid "Spaghetti Infill"
  4373. msgstr "Riempimento a spaghetti"
  4374. #: fdmprinter.def.json
  4375. msgctxt "spaghetti_infill_enabled description"
  4376. msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  4377. msgstr "Stampa il riempimento di tanto in tanto, in modo che il filamento si avvolga in modo casuale all'interno dell'oggetto. Questo riduce il tempo di stampa, ma il comportamento rimane imprevedibile."
  4378. #: fdmprinter.def.json
  4379. msgctxt "spaghetti_infill_stepped label"
  4380. msgid "Spaghetti Infill Stepping"
  4381. msgstr "Andatura del riempimento a spaghetti"
  4382. #: fdmprinter.def.json
  4383. msgctxt "spaghetti_infill_stepped description"
  4384. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  4385. msgstr "Stampa del riempimento a spaghetti in più fasi o estrusione di tutto il filamento del riempimento alla fine della stampa."
  4386. #: fdmprinter.def.json
  4387. msgctxt "spaghetti_max_infill_angle label"
  4388. msgid "Spaghetti Maximum Infill Angle"
  4389. msgstr "Angolo di riempimento massimo a spaghetti"
  4390. #: fdmprinter.def.json
  4391. msgctxt "spaghetti_max_infill_angle description"
  4392. msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  4393. msgstr "Angolo massimo attorno all'asse Z dell'interno stampa per le aree da riempire successivamente con riempimento a spaghetti. La riduzione di questo valore causa la formazione di un maggior numero di parti angolate nel modello da riempire su ogni strato."
  4394. #: fdmprinter.def.json
  4395. msgctxt "spaghetti_max_height label"
  4396. msgid "Spaghetti Infill Maximum Height"
  4397. msgstr "Altezza massima riempimento a spaghetti"
  4398. #: fdmprinter.def.json
  4399. msgctxt "spaghetti_max_height description"
  4400. msgid "The maximum height of inside space which can be combined and filled from the top."
  4401. msgstr "Indica l'altezza massima dello spazio interno che può essere combinato e riempito a partire dall'alto."
  4402. #: fdmprinter.def.json
  4403. msgctxt "spaghetti_inset label"
  4404. msgid "Spaghetti Inset"
  4405. msgstr "Inserto spaghetti"
  4406. #: fdmprinter.def.json
  4407. msgctxt "spaghetti_inset description"
  4408. msgid "The offset from the walls from where the spaghetti infill will be printed."
  4409. msgstr "Distanza dalle pareti dalla quale il riempimento a spaghetti verrà stampato."
  4410. #: fdmprinter.def.json
  4411. msgctxt "spaghetti_flow label"
  4412. msgid "Spaghetti Flow"
  4413. msgstr "Flusso spaghetti"
  4414. #: fdmprinter.def.json
  4415. msgctxt "spaghetti_flow description"
  4416. msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  4417. msgstr "Regola la densità del riempimento a spaghetti. Notare che la densità del riempimento controlla solo la spaziatura lineare del percorso di riempimento, non la quantità di estrusione per il riempimento a spaghetti."
  4418. #: fdmprinter.def.json
  4419. msgctxt "spaghetti_infill_extra_volume label"
  4420. msgid "Spaghetti Infill Extra Volume"
  4421. msgstr "Volume extra riempimento a spaghetti"
  4422. #: fdmprinter.def.json
  4423. msgctxt "spaghetti_infill_extra_volume description"
  4424. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  4425. msgstr "Elemento correttivo per regolare il volume totale da estrudere ogni volta durante il riempimento a spaghetti."
  4426. #: fdmprinter.def.json
  4427. msgctxt "support_conical_enabled label"
  4428. msgid "Enable Conical Support"
  4429. msgstr "Abilitazione del supporto conico"
  4430. #: fdmprinter.def.json
  4431. msgctxt "support_conical_enabled description"
  4432. msgid "Make support areas smaller at the bottom than at the overhang."
  4433. msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo."
  4434. #: fdmprinter.def.json
  4435. msgctxt "support_conical_angle label"
  4436. msgid "Conical Support Angle"
  4437. msgstr "Angolo del supporto conico"
  4438. #: fdmprinter.def.json
  4439. msgctxt "support_conical_angle description"
  4440. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  4441. msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore."
  4442. #: fdmprinter.def.json
  4443. msgctxt "support_conical_min_width label"
  4444. msgid "Conical Support Minimum Width"
  4445. msgstr "Larghezza minima del supporto conico"
  4446. #: fdmprinter.def.json
  4447. msgctxt "support_conical_min_width description"
  4448. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4449. msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili."
  4450. #: fdmprinter.def.json
  4451. msgctxt "magic_fuzzy_skin_enabled label"
  4452. msgid "Fuzzy Skin"
  4453. msgstr "Rivestimento esterno incoerente (fuzzy)"
  4454. #: fdmprinter.def.json
  4455. msgctxt "magic_fuzzy_skin_enabled description"
  4456. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4457. msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)."
  4458. #: fdmprinter.def.json
  4459. msgctxt "magic_fuzzy_skin_outside_only label"
  4460. msgid "Fuzzy Skin Outside Only"
  4461. msgstr ""
  4462. #: fdmprinter.def.json
  4463. msgctxt "magic_fuzzy_skin_outside_only description"
  4464. msgid "Jitter only the parts' outlines and not the parts' holes."
  4465. msgstr ""
  4466. #: fdmprinter.def.json
  4467. msgctxt "magic_fuzzy_skin_thickness label"
  4468. msgid "Fuzzy Skin Thickness"
  4469. msgstr "Spessore del rivestimento esterno incoerente (fuzzy)"
  4470. #: fdmprinter.def.json
  4471. msgctxt "magic_fuzzy_skin_thickness description"
  4472. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4473. msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate."
  4474. #: fdmprinter.def.json
  4475. msgctxt "magic_fuzzy_skin_point_density label"
  4476. msgid "Fuzzy Skin Density"
  4477. msgstr "Densità del rivestimento esterno incoerente (fuzzy)"
  4478. #: fdmprinter.def.json
  4479. msgctxt "magic_fuzzy_skin_point_density description"
  4480. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  4481. msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione."
  4482. #: fdmprinter.def.json
  4483. msgctxt "magic_fuzzy_skin_point_dist label"
  4484. msgid "Fuzzy Skin Point Distance"
  4485. msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)"
  4486. #: fdmprinter.def.json
  4487. msgctxt "magic_fuzzy_skin_point_dist description"
  4488. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  4489. msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)."
  4490. #: fdmprinter.def.json
  4491. msgctxt "flow_rate_max_extrusion_offset label"
  4492. msgid "Flow Rate Compensation Max Extrusion Offset"
  4493. msgstr "Offset massimo dell'estrusione di compensazione del flusso"
  4494. #: fdmprinter.def.json
  4495. msgctxt "flow_rate_max_extrusion_offset description"
  4496. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4497. msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso."
  4498. #: fdmprinter.def.json
  4499. msgctxt "flow_rate_extrusion_offset_factor label"
  4500. msgid "Flow Rate Compensation Factor"
  4501. msgstr "Fattore di compensazione del flusso"
  4502. #: fdmprinter.def.json
  4503. msgctxt "flow_rate_extrusion_offset_factor description"
  4504. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  4505. msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione."
  4506. #: fdmprinter.def.json
  4507. msgctxt "wireframe_enabled label"
  4508. msgid "Wire Printing"
  4509. msgstr "Funzione Wire Printing (WP)"
  4510. #: fdmprinter.def.json
  4511. msgctxt "wireframe_enabled description"
  4512. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  4513. msgstr "Consente di stampare solo la superficie esterna come una struttura di linee, realizzando una stampa \"sospesa nell'aria\". Questa funzione si realizza mediante la stampa orizzontale dei contorni del modello con determinati intervalli Z che sono collegati tramite linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso."
  4514. #: fdmprinter.def.json
  4515. msgctxt "wireframe_height label"
  4516. msgid "WP Connection Height"
  4517. msgstr "Altezza di connessione WP"
  4518. #: fdmprinter.def.json
  4519. msgctxt "wireframe_height description"
  4520. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  4521. msgstr "Indica l'altezza delle linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso tra due parti orizzontali. Questo determina la densità complessiva della struttura del reticolo. Applicabile solo alla funzione Wire Printing."
  4522. #: fdmprinter.def.json
  4523. msgctxt "wireframe_roof_inset label"
  4524. msgid "WP Roof Inset Distance"
  4525. msgstr "Distanza dalla superficie superiore WP"
  4526. #: fdmprinter.def.json
  4527. msgctxt "wireframe_roof_inset description"
  4528. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4529. msgstr "Indica la distanza percorsa durante la realizzazione di una connessione da un profilo della superficie superiore (tetto) verso l'interno. Applicabile solo alla funzione Wire Printing."
  4530. #: fdmprinter.def.json
  4531. msgctxt "wireframe_printspeed label"
  4532. msgid "WP Speed"
  4533. msgstr "Velocità WP"
  4534. #: fdmprinter.def.json
  4535. msgctxt "wireframe_printspeed description"
  4536. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4537. msgstr "Indica la velocità a cui l'ugello si muove durante l'estrusione del materiale. Applicabile solo alla funzione Wire Printing."
  4538. #: fdmprinter.def.json
  4539. msgctxt "wireframe_printspeed_bottom label"
  4540. msgid "WP Bottom Printing Speed"
  4541. msgstr "Velocità di stampa della parte inferiore WP"
  4542. #: fdmprinter.def.json
  4543. msgctxt "wireframe_printspeed_bottom description"
  4544. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4545. msgstr "Indica la velocità di stampa del primo strato, che è il solo strato a contatto con il piano di stampa. Applicabile solo alla funzione Wire Printing."
  4546. #: fdmprinter.def.json
  4547. msgctxt "wireframe_printspeed_up label"
  4548. msgid "WP Upward Printing Speed"
  4549. msgstr "Velocità di stampa verticale WP"
  4550. #: fdmprinter.def.json
  4551. msgctxt "wireframe_printspeed_up description"
  4552. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4553. msgstr "Indica la velocità di stampa di una linea verticale verso l'alto della struttura \"sospesa nell'aria\". Applicabile solo alla funzione Wire Printing."
  4554. #: fdmprinter.def.json
  4555. msgctxt "wireframe_printspeed_down label"
  4556. msgid "WP Downward Printing Speed"
  4557. msgstr "Velocità di stampa diagonale WP"
  4558. #: fdmprinter.def.json
  4559. msgctxt "wireframe_printspeed_down description"
  4560. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4561. msgstr "Indica la velocità di stampa di una linea diagonale verso il basso. Applicabile solo alla funzione Wire Printing."
  4562. #: fdmprinter.def.json
  4563. msgctxt "wireframe_printspeed_flat label"
  4564. msgid "WP Horizontal Printing Speed"
  4565. msgstr "Velocità di stampa orizzontale WP"
  4566. #: fdmprinter.def.json
  4567. msgctxt "wireframe_printspeed_flat description"
  4568. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4569. msgstr "Indica la velocità di stampa dei contorni orizzontali del modello. Applicabile solo alla funzione Wire Printing."
  4570. #: fdmprinter.def.json
  4571. msgctxt "wireframe_flow label"
  4572. msgid "WP Flow"
  4573. msgstr "Flusso WP"
  4574. #: fdmprinter.def.json
  4575. msgctxt "wireframe_flow description"
  4576. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4577. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore. Applicabile solo alla funzione Wire Printing."
  4578. #: fdmprinter.def.json
  4579. msgctxt "wireframe_flow_connection label"
  4580. msgid "WP Connection Flow"
  4581. msgstr "Flusso di connessione WP"
  4582. #: fdmprinter.def.json
  4583. msgctxt "wireframe_flow_connection description"
  4584. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4585. msgstr "Determina la compensazione di flusso nei percorsi verso l'alto o verso il basso. Applicabile solo alla funzione Wire Printing."
  4586. #: fdmprinter.def.json
  4587. msgctxt "wireframe_flow_flat label"
  4588. msgid "WP Flat Flow"
  4589. msgstr "Flusso linee piatte WP"
  4590. #: fdmprinter.def.json
  4591. msgctxt "wireframe_flow_flat description"
  4592. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4593. msgstr "Determina la compensazione di flusso durante la stampa di linee piatte. Applicabile solo alla funzione Wire Printing."
  4594. #: fdmprinter.def.json
  4595. msgctxt "wireframe_top_delay label"
  4596. msgid "WP Top Delay"
  4597. msgstr "Ritardo dopo spostamento verso l'alto WP"
  4598. #: fdmprinter.def.json
  4599. msgctxt "wireframe_top_delay description"
  4600. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4601. msgstr "Indica il tempo di ritardo dopo uno spostamento verso l'alto, in modo da consentire l'indurimento della linea verticale indirizzata verso l'alto. Applicabile solo alla funzione Wire Printing."
  4602. #: fdmprinter.def.json
  4603. msgctxt "wireframe_bottom_delay label"
  4604. msgid "WP Bottom Delay"
  4605. msgstr "Ritardo dopo spostamento verso il basso WP"
  4606. #: fdmprinter.def.json
  4607. msgctxt "wireframe_bottom_delay description"
  4608. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4609. msgstr "Indica il tempo di ritardo dopo uno spostamento verso il basso. Applicabile solo alla funzione Wire Printing."
  4610. #: fdmprinter.def.json
  4611. msgctxt "wireframe_flat_delay label"
  4612. msgid "WP Flat Delay"
  4613. msgstr "Ritardo tra due segmenti orizzontali WP"
  4614. #: fdmprinter.def.json
  4615. msgctxt "wireframe_flat_delay description"
  4616. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  4617. msgstr "Indica il tempo di ritardo tra due segmenti orizzontali. Introducendo un tale ritardo si può ottenere una migliore adesione agli strati precedenti in corrispondenza dei punti di collegamento, mentre ritardi troppo prolungati provocano cedimenti. Applicabile solo alla funzione Wire Printing."
  4618. #: fdmprinter.def.json
  4619. msgctxt "wireframe_up_half_speed label"
  4620. msgid "WP Ease Upward"
  4621. msgstr "Spostamento verso l'alto a velocità ridotta WP"
  4622. #: fdmprinter.def.json
  4623. msgctxt "wireframe_up_half_speed description"
  4624. msgid ""
  4625. "Distance of an upward move which is extruded with half speed.\n"
  4626. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4627. msgstr ""
  4628. "Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\n"
  4629. "Ciò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing."
  4630. #: fdmprinter.def.json
  4631. msgctxt "wireframe_top_jump label"
  4632. msgid "WP Knot Size"
  4633. msgstr "Dimensione dei nodi WP"
  4634. #: fdmprinter.def.json
  4635. msgctxt "wireframe_top_jump description"
  4636. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  4637. msgstr "Crea un piccolo nodo alla sommità di una linea verticale verso l'alto, in modo che lo strato orizzontale consecutivo abbia una migliore possibilità di collegarsi ad essa. Applicabile solo alla funzione Wire Printing."
  4638. #: fdmprinter.def.json
  4639. msgctxt "wireframe_fall_down label"
  4640. msgid "WP Fall Down"
  4641. msgstr "Caduta del materiale WP"
  4642. #: fdmprinter.def.json
  4643. msgctxt "wireframe_fall_down description"
  4644. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4645. msgstr "Indica la distanza di caduta del materiale dopo un estrusione verso l'alto. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4646. #: fdmprinter.def.json
  4647. msgctxt "wireframe_drag_along label"
  4648. msgid "WP Drag Along"
  4649. msgstr "Trascinamento WP"
  4650. #: fdmprinter.def.json
  4651. msgctxt "wireframe_drag_along description"
  4652. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4653. msgstr "Indica la distanza di trascinamento del materiale di una estrusione verso l'alto nell'estrusione diagonale verso il basso. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4654. #: fdmprinter.def.json
  4655. msgctxt "wireframe_strategy label"
  4656. msgid "WP Strategy"
  4657. msgstr "Strategia WP"
  4658. #: fdmprinter.def.json
  4659. msgctxt "wireframe_strategy description"
  4660. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  4661. msgstr "Strategia per garantire il collegamento di due strati consecutivi ad ogni punto di connessione. La retrazione consente l'indurimento delle linee verticali verso l'alto nella giusta posizione, ma può causare la deformazione del filamento. È possibile realizzare un nodo all'estremità di una linea verticale verso l'alto per accrescere la possibilità di collegamento e lasciarla raffreddare; tuttavia ciò può richiedere velocità di stampa ridotte. Un'altra strategia consiste nel compensare il cedimento della parte superiore di una linea verticale verso l'alto; tuttavia le linee non sempre ricadono come previsto."
  4662. #: fdmprinter.def.json
  4663. msgctxt "wireframe_strategy option compensate"
  4664. msgid "Compensate"
  4665. msgstr "Compensazione"
  4666. #: fdmprinter.def.json
  4667. msgctxt "wireframe_strategy option knot"
  4668. msgid "Knot"
  4669. msgstr "Nodo"
  4670. #: fdmprinter.def.json
  4671. msgctxt "wireframe_strategy option retract"
  4672. msgid "Retract"
  4673. msgstr "Retrazione"
  4674. #: fdmprinter.def.json
  4675. msgctxt "wireframe_straight_before_down label"
  4676. msgid "WP Straighten Downward Lines"
  4677. msgstr "Correzione delle linee diagonali WP"
  4678. #: fdmprinter.def.json
  4679. msgctxt "wireframe_straight_before_down description"
  4680. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  4681. msgstr "Indica la percentuale di copertura di una linea diagonale verso il basso da un tratto di linea orizzontale. Questa opzione può impedire il cedimento della sommità delle linee verticali verso l'alto. Applicabile solo alla funzione Wire Printing."
  4682. #: fdmprinter.def.json
  4683. msgctxt "wireframe_roof_fall_down label"
  4684. msgid "WP Roof Fall Down"
  4685. msgstr "Caduta delle linee della superficie superiore (tetto) WP"
  4686. #: fdmprinter.def.json
  4687. msgctxt "wireframe_roof_fall_down description"
  4688. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  4689. msgstr "Indica la distanza di caduta delle linee della superficie superiore (tetto) della struttura \"sospesa nell'aria\" durante la stampa. Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4690. #: fdmprinter.def.json
  4691. msgctxt "wireframe_roof_drag_along label"
  4692. msgid "WP Roof Drag Along"
  4693. msgstr "Trascinamento superficie superiore (tetto) WP"
  4694. #: fdmprinter.def.json
  4695. msgctxt "wireframe_roof_drag_along description"
  4696. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  4697. msgstr "Indica la distanza di trascinamento dell'estremità di una linea interna durante lo spostamento di ritorno verso il contorno esterno della superficie superiore (tetto). Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4698. #: fdmprinter.def.json
  4699. msgctxt "wireframe_roof_outer_delay label"
  4700. msgid "WP Roof Outer Delay"
  4701. msgstr "Ritardo su perimetro esterno foro superficie superiore (tetto) WP"
  4702. #: fdmprinter.def.json
  4703. msgctxt "wireframe_roof_outer_delay description"
  4704. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4705. msgstr "Indica il tempo trascorso sul perimetro esterno del foro di una superficie superiore (tetto). Tempi più lunghi possono garantire un migliore collegamento. Applicabile solo alla funzione Wire Printing."
  4706. #: fdmprinter.def.json
  4707. msgctxt "wireframe_nozzle_clearance label"
  4708. msgid "WP Nozzle Clearance"
  4709. msgstr "Gioco ugello WP"
  4710. #: fdmprinter.def.json
  4711. msgctxt "wireframe_nozzle_clearance description"
  4712. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  4713. msgstr "Indica la distanza tra l'ugello e le linee diagonali verso il basso. Un maggior gioco risulta in linee diagonali verso il basso con un minor angolo di inclinazione, cosa che a sua volta si traduce in meno collegamenti verso l'alto con lo strato successivo. Applicabile solo alla funzione Wire Printing."
  4714. #: fdmprinter.def.json
  4715. msgctxt "adaptive_layer_height_enabled label"
  4716. msgid "Use Adaptive Layers"
  4717. msgstr "Uso di strati adattivi"
  4718. #: fdmprinter.def.json
  4719. msgctxt "adaptive_layer_height_enabled description"
  4720. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4721. msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello."
  4722. #: fdmprinter.def.json
  4723. msgctxt "adaptive_layer_height_variation label"
  4724. msgid "Adaptive Layers Maximum Variation"
  4725. msgstr "Variazione massima strati adattivi"
  4726. #: fdmprinter.def.json
  4727. msgctxt "adaptive_layer_height_variation description"
  4728. msgid "The maximum allowed height different from the base layer height."
  4729. msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base."
  4730. #: fdmprinter.def.json
  4731. msgctxt "adaptive_layer_height_variation_step label"
  4732. msgid "Adaptive Layers Variation Step Size"
  4733. msgstr "Dimensione variazione strati adattivi"
  4734. #: fdmprinter.def.json
  4735. msgctxt "adaptive_layer_height_variation_step description"
  4736. msgid "The difference in height of the next layer height compared to the previous one."
  4737. msgstr "La differenza in altezza dello strato successivo rispetto al precedente."
  4738. #: fdmprinter.def.json
  4739. msgctxt "adaptive_layer_height_threshold label"
  4740. msgid "Adaptive Layers Topography Size"
  4741. msgstr "Dimensione della topografia dei layer adattivi"
  4742. #: fdmprinter.def.json
  4743. msgctxt "adaptive_layer_height_threshold description"
  4744. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  4745. msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer."
  4746. #: fdmprinter.def.json
  4747. msgctxt "wall_overhang_angle label"
  4748. msgid "Overhanging Wall Angle"
  4749. msgstr "Angolo parete di sbalzo"
  4750. #: fdmprinter.def.json
  4751. msgctxt "wall_overhang_angle description"
  4752. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4753. msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale."
  4754. #: fdmprinter.def.json
  4755. msgctxt "wall_overhang_speed_factor label"
  4756. msgid "Overhanging Wall Speed"
  4757. msgstr "Velocità parete di sbalzo"
  4758. #: fdmprinter.def.json
  4759. msgctxt "wall_overhang_speed_factor description"
  4760. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4761. msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa."
  4762. #: fdmprinter.def.json
  4763. msgctxt "bridge_settings_enabled label"
  4764. msgid "Enable Bridge Settings"
  4765. msgstr "Abilita impostazioni ponte"
  4766. #: fdmprinter.def.json
  4767. msgctxt "bridge_settings_enabled description"
  4768. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4769. msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti."
  4770. #: fdmprinter.def.json
  4771. msgctxt "bridge_wall_min_length label"
  4772. msgid "Minimum Bridge Wall Length"
  4773. msgstr "Lunghezza minima parete ponte"
  4774. #: fdmprinter.def.json
  4775. msgctxt "bridge_wall_min_length description"
  4776. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4777. msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte."
  4778. #: fdmprinter.def.json
  4779. msgctxt "bridge_skin_support_threshold label"
  4780. msgid "Bridge Skin Support Threshold"
  4781. msgstr "Soglia di supporto rivestimento esterno ponte"
  4782. #: fdmprinter.def.json
  4783. msgctxt "bridge_skin_support_threshold description"
  4784. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  4785. msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno."
  4786. #: fdmprinter.def.json
  4787. msgctxt "bridge_sparse_infill_max_density label"
  4788. msgid "Bridge Sparse Infill Max Density"
  4789. msgstr ""
  4790. #: fdmprinter.def.json
  4791. msgctxt "bridge_sparse_infill_max_density description"
  4792. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  4793. msgstr ""
  4794. #: fdmprinter.def.json
  4795. msgctxt "bridge_wall_coast label"
  4796. msgid "Bridge Wall Coasting"
  4797. msgstr "Coasting parete ponte"
  4798. #: fdmprinter.def.json
  4799. msgctxt "bridge_wall_coast description"
  4800. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4801. msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto."
  4802. #: fdmprinter.def.json
  4803. msgctxt "bridge_wall_speed label"
  4804. msgid "Bridge Wall Speed"
  4805. msgstr "Velocità di stampa della parete ponte"
  4806. #: fdmprinter.def.json
  4807. msgctxt "bridge_wall_speed description"
  4808. msgid "The speed at which the bridge walls are printed."
  4809. msgstr "Indica la velocità alla quale vengono stampate le pareti ponte."
  4810. #: fdmprinter.def.json
  4811. msgctxt "bridge_wall_material_flow label"
  4812. msgid "Bridge Wall Flow"
  4813. msgstr "Flusso della parete ponte"
  4814. #: fdmprinter.def.json
  4815. msgctxt "bridge_wall_material_flow description"
  4816. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4817. msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4818. #: fdmprinter.def.json
  4819. msgctxt "bridge_skin_speed label"
  4820. msgid "Bridge Skin Speed"
  4821. msgstr "Velocità di stampa del rivestimento esterno ponte"
  4822. #: fdmprinter.def.json
  4823. msgctxt "bridge_skin_speed description"
  4824. msgid "The speed at which bridge skin regions are printed."
  4825. msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte."
  4826. #: fdmprinter.def.json
  4827. msgctxt "bridge_skin_material_flow label"
  4828. msgid "Bridge Skin Flow"
  4829. msgstr "Flusso del rivestimento esterno ponte"
  4830. #: fdmprinter.def.json
  4831. msgctxt "bridge_skin_material_flow description"
  4832. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4833. msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4834. #: fdmprinter.def.json
  4835. msgctxt "bridge_skin_density label"
  4836. msgid "Bridge Skin Density"
  4837. msgstr "Densità del rivestimento esterno ponte"
  4838. #: fdmprinter.def.json
  4839. msgctxt "bridge_skin_density description"
  4840. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4841. msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4842. #: fdmprinter.def.json
  4843. msgctxt "bridge_fan_speed label"
  4844. msgid "Bridge Fan Speed"
  4845. msgstr "Velocità della ventola ponte"
  4846. #: fdmprinter.def.json
  4847. msgctxt "bridge_fan_speed description"
  4848. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4849. msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte."
  4850. #: fdmprinter.def.json
  4851. msgctxt "bridge_enable_more_layers label"
  4852. msgid "Bridge Has Multiple Layers"
  4853. msgstr "Ponte a strati multipli"
  4854. #: fdmprinter.def.json
  4855. msgctxt "bridge_enable_more_layers description"
  4856. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  4857. msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali."
  4858. #: fdmprinter.def.json
  4859. msgctxt "bridge_skin_speed_2 label"
  4860. msgid "Bridge Second Skin Speed"
  4861. msgstr "Velocità di stampa del secondo rivestimento esterno ponte"
  4862. #: fdmprinter.def.json
  4863. msgctxt "bridge_skin_speed_2 description"
  4864. msgid "Print speed to use when printing the second bridge skin layer."
  4865. msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte."
  4866. #: fdmprinter.def.json
  4867. msgctxt "bridge_skin_material_flow_2 label"
  4868. msgid "Bridge Second Skin Flow"
  4869. msgstr "Flusso del secondo rivestimento esterno ponte"
  4870. #: fdmprinter.def.json
  4871. msgctxt "bridge_skin_material_flow_2 description"
  4872. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4873. msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4874. #: fdmprinter.def.json
  4875. msgctxt "bridge_skin_density_2 label"
  4876. msgid "Bridge Second Skin Density"
  4877. msgstr "Densità del secondo rivestimento esterno ponte"
  4878. #: fdmprinter.def.json
  4879. msgctxt "bridge_skin_density_2 description"
  4880. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4881. msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4882. #: fdmprinter.def.json
  4883. msgctxt "bridge_fan_speed_2 label"
  4884. msgid "Bridge Second Skin Fan Speed"
  4885. msgstr "Velocità della ventola per il secondo rivestimento esterno ponte"
  4886. #: fdmprinter.def.json
  4887. msgctxt "bridge_fan_speed_2 description"
  4888. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4889. msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte."
  4890. #: fdmprinter.def.json
  4891. msgctxt "bridge_skin_speed_3 label"
  4892. msgid "Bridge Third Skin Speed"
  4893. msgstr "Velocità di stampa del terzo rivestimento esterno ponte"
  4894. #: fdmprinter.def.json
  4895. msgctxt "bridge_skin_speed_3 description"
  4896. msgid "Print speed to use when printing the third bridge skin layer."
  4897. msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte."
  4898. #: fdmprinter.def.json
  4899. msgctxt "bridge_skin_material_flow_3 label"
  4900. msgid "Bridge Third Skin Flow"
  4901. msgstr "Flusso del terzo rivestimento esterno ponte"
  4902. #: fdmprinter.def.json
  4903. msgctxt "bridge_skin_material_flow_3 description"
  4904. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4905. msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4906. #: fdmprinter.def.json
  4907. msgctxt "bridge_skin_density_3 label"
  4908. msgid "Bridge Third Skin Density"
  4909. msgstr "Densità del terzo rivestimento esterno ponte"
  4910. #: fdmprinter.def.json
  4911. msgctxt "bridge_skin_density_3 description"
  4912. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4913. msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4914. #: fdmprinter.def.json
  4915. msgctxt "bridge_fan_speed_3 label"
  4916. msgid "Bridge Third Skin Fan Speed"
  4917. msgstr "Velocità della ventola del terzo rivestimento esterno ponte"
  4918. #: fdmprinter.def.json
  4919. msgctxt "bridge_fan_speed_3 description"
  4920. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4921. msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte."
  4922. #: fdmprinter.def.json
  4923. msgctxt "clean_between_layers label"
  4924. msgid "Wipe Nozzle Between Layers"
  4925. msgstr "Pulitura ugello tra gli strati"
  4926. #: fdmprinter.def.json
  4927. msgctxt "clean_between_layers description"
  4928. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  4929. msgstr ""
  4930. #: fdmprinter.def.json
  4931. msgctxt "max_extrusion_before_wipe label"
  4932. msgid "Material Volume Between Wipes"
  4933. msgstr "Volume di materiale tra le operazioni di pulitura"
  4934. #: fdmprinter.def.json
  4935. msgctxt "max_extrusion_before_wipe description"
  4936. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  4937. msgstr ""
  4938. #: fdmprinter.def.json
  4939. msgctxt "wipe_retraction_enable label"
  4940. msgid "Wipe Retraction Enable"
  4941. msgstr "Retrazione per pulitura abilitata"
  4942. #: fdmprinter.def.json
  4943. msgctxt "wipe_retraction_enable description"
  4944. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4945. msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata."
  4946. #: fdmprinter.def.json
  4947. msgctxt "wipe_retraction_amount label"
  4948. msgid "Wipe Retraction Distance"
  4949. msgstr "Distanza di retrazione per pulitura"
  4950. #: fdmprinter.def.json
  4951. msgctxt "wipe_retraction_amount description"
  4952. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4953. msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura."
  4954. #: fdmprinter.def.json
  4955. msgctxt "wipe_retraction_extra_prime_amount label"
  4956. msgid "Wipe Retraction Extra Prime Amount"
  4957. msgstr "Entità di innesco supplementare dopo retrazione per pulitura"
  4958. #: fdmprinter.def.json
  4959. msgctxt "wipe_retraction_extra_prime_amount description"
  4960. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4961. msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento."
  4962. #: fdmprinter.def.json
  4963. msgctxt "wipe_retraction_speed label"
  4964. msgid "Wipe Retraction Speed"
  4965. msgstr "Velocità di retrazione per pulitura"
  4966. #: fdmprinter.def.json
  4967. msgctxt "wipe_retraction_speed description"
  4968. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4969. msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura."
  4970. #: fdmprinter.def.json
  4971. msgctxt "wipe_retraction_retract_speed label"
  4972. msgid "Wipe Retraction Retract Speed"
  4973. msgstr "Velocità di retrazione per pulitura"
  4974. #: fdmprinter.def.json
  4975. msgctxt "wipe_retraction_retract_speed description"
  4976. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4977. msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura."
  4978. #: fdmprinter.def.json
  4979. msgctxt "wipe_retraction_prime_speed label"
  4980. msgid "Wipe Retraction Prime Speed"
  4981. msgstr ""
  4982. #: fdmprinter.def.json
  4983. msgctxt "wipe_retraction_prime_speed description"
  4984. msgid "The speed at which the filament is primed during a wipe retraction move."
  4985. msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura."
  4986. #: fdmprinter.def.json
  4987. msgctxt "wipe_pause label"
  4988. msgid "Wipe Pause"
  4989. msgstr "Pausa pulitura"
  4990. #: fdmprinter.def.json
  4991. msgctxt "wipe_pause description"
  4992. msgid "Pause after the unretract."
  4993. msgstr "Pausa dopo ripristino."
  4994. #: fdmprinter.def.json
  4995. msgctxt "wipe_hop_enable label"
  4996. msgid "Wipe Z Hop"
  4997. msgstr ""
  4998. #: fdmprinter.def.json
  4999. msgctxt "wipe_hop_enable description"
  5000. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5001. msgstr ""
  5002. #: fdmprinter.def.json
  5003. msgctxt "wipe_hop_amount label"
  5004. msgid "Wipe Z Hop Height"
  5005. msgstr "Altezza Z Hop pulitura"
  5006. #: fdmprinter.def.json
  5007. msgctxt "wipe_hop_amount description"
  5008. msgid "The height difference when performing a Z Hop."
  5009. msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop."
  5010. #: fdmprinter.def.json
  5011. msgctxt "wipe_hop_speed label"
  5012. msgid "Wipe Hop Speed"
  5013. msgstr "Velocità di sollevamento (Hop) per pulitura"
  5014. #: fdmprinter.def.json
  5015. msgctxt "wipe_hop_speed description"
  5016. msgid "Speed to move the z-axis during the hop."
  5017. msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)."
  5018. #: fdmprinter.def.json
  5019. msgctxt "wipe_brush_pos_x label"
  5020. msgid "Wipe Brush X Position"
  5021. msgstr "Posizione X spazzolino di pulitura"
  5022. #: fdmprinter.def.json
  5023. msgctxt "wipe_brush_pos_x description"
  5024. msgid "X location where wipe script will start."
  5025. msgstr "Posizione X in cui verrà avviato lo script di pulitura."
  5026. #: fdmprinter.def.json
  5027. msgctxt "wipe_repeat_count label"
  5028. msgid "Wipe Repeat Count"
  5029. msgstr "Conteggio ripetizioni operazioni di pulitura"
  5030. #: fdmprinter.def.json
  5031. msgctxt "wipe_repeat_count description"
  5032. msgid "Number of times to move the nozzle across the brush."
  5033. msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino."
  5034. #: fdmprinter.def.json
  5035. msgctxt "wipe_move_distance label"
  5036. msgid "Wipe Move Distance"
  5037. msgstr "Distanza spostamento longitudinale di pulitura"
  5038. #: fdmprinter.def.json
  5039. msgctxt "wipe_move_distance description"
  5040. msgid "The distance to move the head back and forth across the brush."
  5041. msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino."
  5042. #: fdmprinter.def.json
  5043. msgctxt "small_hole_max_size label"
  5044. msgid "Small Hole Max Size"
  5045. msgstr "Dimensione massima foro piccolo"
  5046. #: fdmprinter.def.json
  5047. msgctxt "small_hole_max_size description"
  5048. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5049. msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni."
  5050. #: fdmprinter.def.json
  5051. msgctxt "small_feature_max_length label"
  5052. msgid "Small Feature Max Length"
  5053. msgstr "Lunghezza massima dettagli di piccole dimensioni"
  5054. #: fdmprinter.def.json
  5055. msgctxt "small_feature_max_length description"
  5056. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5057. msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni."
  5058. #: fdmprinter.def.json
  5059. msgctxt "small_feature_speed_factor label"
  5060. msgid "Small Feature Speed"
  5061. msgstr "Velocità dettagli piccole dimensioni"
  5062. #: fdmprinter.def.json
  5063. msgctxt "small_feature_speed_factor description"
  5064. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5065. msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
  5066. #: fdmprinter.def.json
  5067. msgctxt "small_feature_speed_factor_0 label"
  5068. msgid "Small Feature Initial Layer Speed"
  5069. msgstr "Velocità layer iniziale per dettagli di piccole dimensioni"
  5070. #: fdmprinter.def.json
  5071. msgctxt "small_feature_speed_factor_0 description"
  5072. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5073. msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
  5074. #: fdmprinter.def.json
  5075. msgctxt "command_line_settings label"
  5076. msgid "Command Line Settings"
  5077. msgstr "Impostazioni riga di comando"
  5078. #: fdmprinter.def.json
  5079. msgctxt "command_line_settings description"
  5080. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5081. msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura."
  5082. #: fdmprinter.def.json
  5083. msgctxt "center_object label"
  5084. msgid "Center Object"
  5085. msgstr "Centra oggetto"
  5086. #: fdmprinter.def.json
  5087. msgctxt "center_object description"
  5088. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5089. msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato."
  5090. #: fdmprinter.def.json
  5091. msgctxt "mesh_position_x label"
  5092. msgid "Mesh Position X"
  5093. msgstr "Posizione maglia X"
  5094. #: fdmprinter.def.json
  5095. msgctxt "mesh_position_x description"
  5096. msgid "Offset applied to the object in the x direction."
  5097. msgstr "Offset applicato all’oggetto per la direzione X."
  5098. #: fdmprinter.def.json
  5099. msgctxt "mesh_position_y label"
  5100. msgid "Mesh Position Y"
  5101. msgstr "Posizione maglia Y"
  5102. #: fdmprinter.def.json
  5103. msgctxt "mesh_position_y description"
  5104. msgid "Offset applied to the object in the y direction."
  5105. msgstr "Offset applicato all’oggetto per la direzione Y."
  5106. #: fdmprinter.def.json
  5107. msgctxt "mesh_position_z label"
  5108. msgid "Mesh Position Z"
  5109. msgstr "Posizione maglia Z"
  5110. #: fdmprinter.def.json
  5111. msgctxt "mesh_position_z description"
  5112. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5113. msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’."
  5114. #: fdmprinter.def.json
  5115. msgctxt "mesh_rotation_matrix label"
  5116. msgid "Mesh Rotation Matrix"
  5117. msgstr "Matrice rotazione maglia"
  5118. #: fdmprinter.def.json
  5119. msgctxt "mesh_rotation_matrix description"
  5120. msgid "Transformation matrix to be applied to the model when loading it from file."
  5121. msgstr "Matrice di rotazione da applicare al modello quando caricato dal file."
  5122. #~ msgctxt "machine_head_polygon label"
  5123. #~ msgid "Machine Head Polygon"
  5124. #~ msgstr "Poligono testina macchina"
  5125. #~ msgctxt "machine_head_polygon description"
  5126. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5127. #~ msgstr "Una silhouette 2D della testina di stampa (cappucci ventola esclusi)."
  5128. #~ msgctxt "print_sequence description"
  5129. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5130. #~ msgstr "Indica se stampare tutti i modelli uno strato alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità 'uno per volta' è possibile solo se tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e se tutti i modelli sono più bassi della distanza tra l'ugello e gli assi X/Y."
  5131. #~ msgctxt "support_tree_wall_thickness label"
  5132. #~ msgid "Tree Support Wall Thickness"
  5133. #~ msgstr "Spessore delle pareti supporto ad albero"
  5134. #~ msgctxt "support_tree_wall_thickness description"
  5135. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5136. #~ msgstr "Lo spessore delle pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
  5137. #~ msgctxt "support_tree_wall_count label"
  5138. #~ msgid "Tree Support Wall Line Count"
  5139. #~ msgstr "Numero delle linee perimetrali supporto ad albero"
  5140. #~ msgctxt "support_tree_wall_count description"
  5141. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5142. #~ msgstr "Il numero di pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
  5143. #~ msgctxt "clean_between_layers description"
  5144. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5145. #~ msgstr "Se includere il codice G di pulitura ugello tra gli strati. Abilitare questa impostazione potrebbe influire sul comportamento di retrazione al cambio strato. Utilizzare le impostazioni di Retrazione per pulitura per controllare la retrazione in corrispondenza degli strati in cui lo script di pulitura sarà funzionante."
  5146. #~ msgctxt "max_extrusion_before_wipe description"
  5147. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5148. #~ msgstr "Il massimo volume di materiale, che può essere estruso prima di iniziare la successiva operazione di pulitura ugello."
  5149. #~ msgctxt "wipe_retraction_prime_speed label"
  5150. #~ msgid "Retraction Prime Speed"
  5151. #~ msgstr "Velocità di innesco dopo la retrazione"
  5152. #~ msgctxt "wipe_hop_enable label"
  5153. #~ msgid "Wipe Z Hop When Retracted"
  5154. #~ msgstr "Z Hop pulitura durante retrazione"
  5155. #~ msgctxt "wipe_hop_enable description"
  5156. #~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5157. #~ msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano."
  5158. #~ msgctxt "minimum_interface_area description"
  5159. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5160. #~ msgstr "Dimensioni minime area per i poligoni di interfaccia del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
  5161. #~ msgctxt "minimum_roof_area description"
  5162. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5163. #~ msgstr "Dimensioni minime area per le parti superiori del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
  5164. #~ msgctxt "minimum_bottom_area description"
  5165. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5166. #~ msgstr "Dimensioni minime area per le parti inferiori del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
  5167. #~ msgctxt "skin_alternate_rotation label"
  5168. #~ msgid "Alternate Skin Rotation"
  5169. #~ msgstr "Rotazione alternata del rivestimento esterno"
  5170. #~ msgctxt "skin_alternate_rotation description"
  5171. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5172. #~ msgstr "Alterna la direzione di stampa degli strati superiori/inferiori. Normalmente vengono stampati solo diagonalmente. Questa impostazione aggiunge le direzioni solo X e solo Y."
  5173. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5174. #~ msgid "Flow rate compensation max extrusion offset"
  5175. #~ msgstr "Offset massimo dell'estrusione di compensazione del flusso"
  5176. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5177. #~ msgid "The maximum distance in mm to compensate."
  5178. #~ msgstr "La massima distanza in mm da compensare."
  5179. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5180. #~ msgid "Flow rate compensation factor"
  5181. #~ msgstr "Fattore di compensazione del flusso"
  5182. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5183. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5184. #~ msgstr "Il fattore di moltiplicazione per il flusso -> traslazione distanza."
  5185. #~ msgctxt "adaptive_layer_height_threshold label"
  5186. #~ msgid "Adaptive Layers Threshold"
  5187. #~ msgstr "Soglia strati adattivi"
  5188. #~ msgctxt "adaptive_layer_height_threshold description"
  5189. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5190. #~ msgstr "Soglia per l’utilizzo o meno di uno strato di dimensioni minori. Questo numero è confrontato al valore dell’inclinazione più ripida di uno strato."
  5191. #~ msgctxt "wall_overhang_angle description"
  5192. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  5193. #~ msgstr "Le pareti che sbalzano oltre questo angolo verranno stampate utilizzando le impostazioni parete di sbalzo. Quando il valore è 90, nessuna parete sarà trattata come sbalzo."
  5194. #~ msgctxt "small_feature_speed_factor description"
  5195. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5196. #~ msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
  5197. #~ msgctxt "small_feature_speed_factor_0 label"
  5198. #~ msgid "First Layer Speed"
  5199. #~ msgstr "Velocità primo layer"
  5200. #~ msgctxt "small_feature_speed_factor_0 description"
  5201. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5202. #~ msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione."
  5203. #~ msgctxt "ironing_enabled description"
  5204. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5205. #~ msgstr "Ulteriore passaggio sopra la superficie superiore, senza estrusione di materiale. Ha lo scopo di fondere ulteriormente la plastica alla sommità, creando una superficie più uniforme."
  5206. #~ msgctxt "start_layers_at_same_position label"
  5207. #~ msgid "Start Layers with the Same Part"
  5208. #~ msgstr "Avvio strati con la stessa parte"
  5209. #~ msgctxt "start_layers_at_same_position description"
  5210. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5211. #~ msgstr "In ciascuno strato inizia la stampa dell’oggetto vicino allo stesso punto, in modo che non si inizia un nuovo strato con la stampa del pezzo con cui è terminato lo strato precedente. Questo consente di ottenere migliori sovrapposizioni e parti piccole, ma aumenta il tempo di stampa."
  5212. #~ msgctxt "support_infill_angles description"
  5213. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5214. #~ msgstr "Indica l’orientamento della configurazione del riempimento per i supporti. La configurazione del riempimento del supporto viene ruotata sul piano orizzontale."
  5215. #~ msgctxt "meshfix_maximum_deviation description"
  5216. #~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller."
  5217. #~ msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione di Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il codice g sarà più piccolo."
  5218. #~ msgctxt "machine_gcode_flavor label"
  5219. #~ msgid "G-code Flavour"
  5220. #~ msgstr "Tipo di codice G"
  5221. #~ msgctxt "z_seam_corner description"
  5222. #~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner."
  5223. #~ msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno."
  5224. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5225. #~ msgid "Ignore Small Z Gaps"
  5226. #~ msgstr "Ignora i piccoli interstizi a Z"
  5227. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5228. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5229. #~ msgstr "Quando il modello presenta piccoli spazi vuoti verticali, circa il 5% del tempo di calcolo supplementare può essere utilizzato per la generazione di rivestimenti esterni superiori ed inferiori in questi interstizi. In questo caso disabilitare l’impostazione."
  5230. #~ msgctxt "build_volume_temperature description"
  5231. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5232. #~ msgstr "La temperatura utilizzata per il volume di stampa. Se il valore è 0, la temperatura del volume di stampa non verrà regolata."
  5233. #~ msgctxt "limit_support_retractions description"
  5234. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5235. #~ msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
  5236. #~ msgctxt "max_feedrate_z_override label"
  5237. #~ msgid "Maximum Z Speed"
  5238. #~ msgstr "Velocità massima Z"
  5239. #~ msgctxt "max_feedrate_z_override description"
  5240. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5241. #~ msgstr "Indica la velocità massima di spostamento del piano di stampa. L’impostazione di questo valore a zero causa l’utilizzo per la stampa dei valori preimpostati in fabbrica per la velocità massima Z."
  5242. #~ msgctxt "support_join_distance description"
  5243. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5244. #~ msgstr "Indica la distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica."
  5245. #~ msgctxt "support_minimal_diameter label"
  5246. #~ msgid "Minimum Diameter"
  5247. #~ msgstr "Diametro minimo"
  5248. #~ msgctxt "support_minimal_diameter description"
  5249. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5250. #~ msgstr "È il diametro minimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale."
  5251. #~ msgctxt "prime_tower_circular label"
  5252. #~ msgid "Circular Prime Tower"
  5253. #~ msgstr "Torre di innesco circolare"
  5254. #~ msgctxt "prime_tower_circular description"
  5255. #~ msgid "Make the prime tower as a circular shape."
  5256. #~ msgstr "Conferisce alla torre di innesco una forma circolare."
  5257. #~ msgctxt "prime_tower_flow description"
  5258. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5259. #~ msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore."
  5260. #~ msgctxt "smooth_spiralized_contours description"
  5261. #~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  5262. #~ msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella vista dello strato). Notare che la levigatura tende a rimuovere le bavature fini della superficie."
  5263. #~ msgctxt "support_conical_enabled description"
  5264. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5265. #~ msgstr "Funzione sperimentale: realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo."
  5266. #~ msgctxt "extruders_enabled_count label"
  5267. #~ msgid "Number of Extruders that are enabled"
  5268. #~ msgstr "Numero di estrusori abilitati"
  5269. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5270. #~ msgid "Outer nozzle diameter"
  5271. #~ msgstr "Diametro esterno ugello"
  5272. #~ msgctxt "machine_nozzle_head_distance label"
  5273. #~ msgid "Nozzle length"
  5274. #~ msgstr "Lunghezza ugello"
  5275. #~ msgctxt "machine_nozzle_expansion_angle label"
  5276. #~ msgid "Nozzle angle"
  5277. #~ msgstr "Angolo ugello"
  5278. #~ msgctxt "machine_heat_zone_length label"
  5279. #~ msgid "Heat zone length"
  5280. #~ msgstr "Lunghezza della zona di riscaldamento"
  5281. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5282. #~ msgid "Heat up speed"
  5283. #~ msgstr "Velocità di riscaldamento"
  5284. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5285. #~ msgid "Cool down speed"
  5286. #~ msgstr "Velocità di raffreddamento"
  5287. #~ msgctxt "machine_gcode_flavor label"
  5288. #~ msgid "G-code flavour"
  5289. #~ msgstr "Tipo di codice G"
  5290. #~ msgctxt "machine_disallowed_areas label"
  5291. #~ msgid "Disallowed areas"
  5292. #~ msgstr "Aree non consentite"
  5293. #~ msgctxt "machine_head_polygon label"
  5294. #~ msgid "Machine head polygon"
  5295. #~ msgstr "Poligono testina macchina"
  5296. #~ msgctxt "machine_head_with_fans_polygon label"
  5297. #~ msgid "Machine head & Fan polygon"
  5298. #~ msgstr "Poligono testina macchina e ventola"
  5299. #~ msgctxt "gantry_height label"
  5300. #~ msgid "Gantry height"
  5301. #~ msgstr "Altezza gantry"
  5302. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5303. #~ msgid "Offset With Extruder"
  5304. #~ msgstr "Offset con estrusore"
  5305. #~ msgctxt "adaptive_layer_height_enabled label"
  5306. #~ msgid "Use adaptive layers"
  5307. #~ msgstr "Uso di strati adattivi"
  5308. #~ msgctxt "adaptive_layer_height_variation label"
  5309. #~ msgid "Adaptive layers maximum variation"
  5310. #~ msgstr "Variazione massima strati adattivi"
  5311. #~ msgctxt "adaptive_layer_height_variation_step label"
  5312. #~ msgid "Adaptive layers variation step size"
  5313. #~ msgstr "Dimensione variazione strati adattivi"
  5314. #~ msgctxt "adaptive_layer_height_threshold label"
  5315. #~ msgid "Adaptive layers threshold"
  5316. #~ msgstr "Soglia strati adattivi"
  5317. #~ msgctxt "skin_overlap description"
  5318. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5319. #~ msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna."
  5320. #~ msgctxt "skin_overlap_mm description"
  5321. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5322. #~ msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno."
  5323. #~ msgctxt "switch_extruder_retraction_amount description"
  5324. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5325. #~ msgstr "Indica il valore di retrazione: impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento."
  5326. #~ msgctxt "retraction_combing description"
  5327. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5328. #~ msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe, ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore effettuando il combing solo nel riempimento. Si noti che l’opzione ‘Nel riempimento' si comporta esattamente come l’opzione ‘Non nel rivestimento' delle precedenti versioni Cura."
  5329. #~ msgctxt "connect_skin_polygons description"
  5330. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5331. #~ msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore."
  5332. #~ msgctxt "infill_pattern description"
  5333. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5334. #~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione."
  5335. #~ msgctxt "infill_pattern option concentric_3d"
  5336. #~ msgid "Concentric 3D"
  5337. #~ msgstr "3D concentrica"
  5338. #~ msgctxt "retraction_combing description"
  5339. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5340. #~ msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore effettuando il combing solo nel riempimento."
  5341. #~ msgctxt "support_pattern option concentric_3d"
  5342. #~ msgid "Concentric 3D"
  5343. #~ msgstr "3D concentrica"
  5344. #~ msgctxt "support_interface_pattern option concentric_3d"
  5345. #~ msgid "Concentric 3D"
  5346. #~ msgstr "3D concentrica"
  5347. #~ msgctxt "support_roof_pattern option concentric_3d"
  5348. #~ msgid "Concentric 3D"
  5349. #~ msgstr "3D concentrica"
  5350. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5351. #~ msgid "Concentric 3D"
  5352. #~ msgstr "3D concentrica"
  5353. #~ msgctxt "raft_base_line_spacing label"
  5354. #~ msgid "Raft Line Spacing"
  5355. #~ msgstr "Spaziatura delle linee del raft"
  5356. #~ msgctxt "prime_tower_wall_thickness label"
  5357. #~ msgid "Prime Tower Thickness"
  5358. #~ msgstr "Spessore torre di innesco"
  5359. #~ msgctxt "prime_tower_wall_thickness description"
  5360. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5361. #~ msgstr "Lo spessore della torre di innesco cava. Uno spessore superiore alla metà del volume minimo della torre di innesco genera una torre di innesco densa."
  5362. #~ msgctxt "dual_pre_wipe label"
  5363. #~ msgid "Wipe Nozzle After Switch"
  5364. #~ msgstr "Ugello pulitura dopo commutazione"
  5365. #~ msgctxt "dual_pre_wipe description"
  5366. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5367. #~ msgstr "Dopo la commutazione dell’estrusore, pulire il materiale fuoriuscito dall’ugello sul primo oggetto stampato. Questo effettua un movimento di pulitura lento in un punto in cui il materiale fuoriuscito causa il minor danno alla qualità della superficie della stampa."
  5368. #~ msgctxt "prime_tower_purge_volume label"
  5369. #~ msgid "Prime Tower Purge Volume"
  5370. #~ msgstr "Volume di scarico torre di innesco"
  5371. #~ msgctxt "prime_tower_purge_volume description"
  5372. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5373. #~ msgstr "Quantità di filamento da scaricare durante la pulizia della torre di innesco. Lo scarico è utile per compensare il filamento perso per colatura durante l'inattività dell'ugello."
  5374. #~ msgctxt "bridge_wall_max_overhang label"
  5375. #~ msgid "Bridge Wall Max Overhang"
  5376. #~ msgstr "Massimo sbalzo parete ponte"
  5377. #~ msgctxt "bridge_wall_max_overhang description"
  5378. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5379. #~ msgstr "La larghezza massima ammessa per la zona di aria al di sotto di una linea perimetrale prima di stampare la parete utilizzando le impostazioni ponte. Espressa come percentuale della larghezza della linea perimetrale. Quando la distanza è superiore a questo valore, la linea perimetrale viene stampata utilizzando le normali impostazioni. Più è basso il valore, più è probabile che le linee perimetrali a sbalzo siano stampate utilizzando le impostazioni ponte."
  5380. #~ msgctxt "optimize_wall_printing_order description"
  5381. #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization."
  5382. #~ msgstr "Ottimizza l'ordine in cui vengono stampate le pareti in modo da ridurre le retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi, ma alcuni potrebbero richiedere un maggior tempo di esecuzione, per cui si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione."
  5383. #~ msgctxt "retraction_combing option noskin"
  5384. #~ msgid "No Skin"
  5385. #~ msgstr "No rivestimento esterno"
  5386. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5387. #~ msgid "Alternate Cross 3D Pockets"
  5388. #~ msgstr "Cavità 3D incrociate alternate"
  5389. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5390. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5391. #~ msgstr "Si applica solo a cavità a metà degli incroci a quattro vie nella configurazione 3D incrociata e alterna la posizione delle cavità tra le altezze in cui la configurazione tocca se stessa."
  5392. #~ msgctxt "infill_hollow label"
  5393. #~ msgid "Hollow Out Objects"
  5394. #~ msgstr "Oggetti cavi"
  5395. #~ msgctxt "infill_hollow description"
  5396. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5397. #~ msgstr "Rimuove tutto il riempimento e rende l’interno dell’oggetto adatto per il supporto."
  5398. #~ msgctxt "adaptive_layer_height_variation description"
  5399. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5400. #~ msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base in mm."
  5401. #~ msgctxt "center_object label"
  5402. #~ msgid "Center object"
  5403. #~ msgstr "Centra oggetto"
  5404. #~ msgctxt "mesh_position_x label"
  5405. #~ msgid "Mesh position x"
  5406. #~ msgstr "Posizione maglia x"
  5407. #~ msgctxt "mesh_position_y label"
  5408. #~ msgid "Mesh position y"
  5409. #~ msgstr "Posizione maglia y"
  5410. #~ msgctxt "mesh_position_z label"
  5411. #~ msgid "Mesh position z"
  5412. #~ msgstr "Posizione maglia z"
  5413. #~ msgctxt "machine_start_gcode label"
  5414. #~ msgid "Start GCode"
  5415. #~ msgstr "Avvio GCode"
  5416. #~ msgctxt "machine_start_gcode description"
  5417. #~ msgid ""
  5418. #~ "Gcode commands to be executed at the very start - separated by \n"
  5419. #~ "."
  5420. #~ msgstr ""
  5421. #~ "I comandi del Gcode da eseguire all’avvio, separati da \n"
  5422. #~ "."
  5423. #~ msgctxt "machine_end_gcode label"
  5424. #~ msgid "End GCode"
  5425. #~ msgstr "Fine GCode"
  5426. #~ msgctxt "machine_end_gcode description"
  5427. #~ msgid ""
  5428. #~ "Gcode commands to be executed at the very end - separated by \n"
  5429. #~ "."
  5430. #~ msgstr ""
  5431. #~ "I comandi del Gcode da eseguire alla fine, separati da \n"
  5432. #~ "."
  5433. #~ msgctxt "machine_gcode_flavor label"
  5434. #~ msgid "Gcode flavour"
  5435. #~ msgstr "Tipo di Gcode"
  5436. #~ msgctxt "machine_gcode_flavor description"
  5437. #~ msgid "The type of gcode to be generated."
  5438. #~ msgstr "Il tipo di gcode da generare."
  5439. #~ msgctxt "meshfix_keep_open_polygons description"
  5440. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  5441. #~ msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto GCode in nessun altro modo."
  5442. #~ msgctxt "relative_extrusion description"
  5443. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  5444. #~ msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del Gcode. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto agli E-steps assoluti. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script Gcode."
  5445. #~ msgctxt "infill_offset_x description"
  5446. #~ msgid "The infill pattern is offset this distance along the X axis."
  5447. #~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse X."
  5448. #~ msgctxt "infill_offset_y description"
  5449. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5450. #~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse Y."
  5451. #~ msgctxt "infill_overlap description"
  5452. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5453. #~ msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  5454. #~ msgctxt "skin_overlap description"
  5455. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5456. #~ msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna."
  5457. #~ msgctxt "material_bed_temperature description"
  5458. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5459. #~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, il piano non si riscalda per questa stampa."
  5460. #~ msgctxt "wall_x_extruder_nr label"
  5461. #~ msgid "Inner Walls Extruder"
  5462. #~ msgstr "Estrusore parete interna"
  5463. #~ msgctxt "infill_pattern description"
  5464. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5465. #~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e zig zag su layers alternati riduce il costo del materiale. Le configurazioni a griglia, triangolo, a cubo, ottagonale, a quarto di cubo e concentrica comportano la stampa completa in ogni layer. Il riempimento a cubi, a quarto di cubo e a ottagonale cambia a ogni layer per consentire una distribuzione più uniforme della resistenza in ogni direzione."
  5466. #~ msgctxt "zig_zaggify_infill description"
  5467. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5468. #~ msgstr "Collega le estremità in cui la configurazione del riempimento incontra la parete interna utilizzando linee che seguono il profilo della parete interna stessa. Consentendo tale configurazione è possibile fare in modo che il riempimento aderisca meglio alle pareti riducendo gli effetti dello stesso sulla qualità delle superfici verticali. Disabilitando questa configurazione si riduce la quantità di materiale utilizzato."
  5469. #~ msgctxt "skirt_gap description"
  5470. #~ msgid ""
  5471. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5472. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5473. #~ msgstr ""
  5474. #~ "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n"
  5475. #~ "Questa è la distanza minima, più linee di skirt aumenteranno tale distanza."
  5476. #~ msgctxt "z_offset_layer_0 label"
  5477. #~ msgid "Initial Layer Z Offset"
  5478. #~ msgstr "Scostamento Z layer iniziale"
  5479. #~ msgctxt "z_offset_layer_0 description"
  5480. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5481. #~ msgstr "L'estrusore viene posizionato ad una distanza dall'altezza normale del primo layer pari al valore indicato. Questo scostamento può essere positivo (più in alto) o negativo (più in basso). Alcuni tipi di filamento aderiscono meglio al piano di stampa se l'estrusore viene leggermente sollevato."
  5482. #~ msgctxt "z_offset_taper_layers label"
  5483. #~ msgid "Z Offset Taper Layers"
  5484. #~ msgstr "Scostamento Z layers di rastremazione"
  5485. #~ msgctxt "z_offset_taper_layers description"
  5486. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5487. #~ msgstr "Se diverso da zero, lo scostamento Z viene ridotto a 0 entro il numero di layers indicato. Un valore di 0 indica che lo scostamento Z rimane costante per tutti i layers di stampa."
  5488. #~ msgctxt "raft_smoothing description"
  5489. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  5490. #~ msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio."
  5491. #~ msgctxt "infill_pattern description"
  5492. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5493. #~ msgstr "Indica la configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su layers alternati, riducendo il costo del materiale. Le configurazioni a griglia, triangolo, cubo, tetraedriche e concentriche sono stampate completamente su ogni layers. Il riempimento delle configurazioni cubiche e tetraedriche cambia ad ogni strato per fornire una distribuzione più uniforme della forza su ciascuna direzione."
  5494. #~ msgctxt "infill_pattern option tetrahedral"
  5495. #~ msgid "Tetrahedral"
  5496. #~ msgstr "Tetraedro"
  5497. #~ msgctxt "expand_skins_into_infill label"
  5498. #~ msgid "Expand Skins Into Infill"
  5499. #~ msgstr "Estende rivestimenti esterni nel riempimento"
  5500. #~ msgctxt "expand_skins_into_infill description"
  5501. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5502. #~ msgstr "Estende le aree di rivestimento esterno superiori e/o inferiori delle superfici piatte. Per default, i rivestimenti esterni si interrompono sotto le linee delle pareti circostanti il riempimento, ma questo può generare la comparsa di fori quando la densità del riempimento è bassa. Questa impostazione prolunga i rivestimenti esterni oltre le linee delle pareti in modo che il riempimento sullo strato successivo appoggi sul rivestimento esterno."
  5503. #~ msgctxt "expand_upper_skins label"
  5504. #~ msgid "Expand Top Skins Into Infill"
  5505. #~ msgstr "Estendi rivestimenti esterni superiori nel riempimento"
  5506. #~ msgctxt "expand_upper_skins description"
  5507. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5508. #~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante."
  5509. #~ msgctxt "expand_lower_skins label"
  5510. #~ msgid "Expand Bottom Skins Into Infill"
  5511. #~ msgstr "Estendi rivestimenti esterni inferiori nel riempimento"
  5512. #~ msgctxt "expand_lower_skins description"
  5513. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5514. #~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dai layers di riempimento sovrastanti e sottostanti."
  5515. #~ msgctxt "expand_skins_expand_distance description"
  5516. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5517. #~ msgstr "La distanza di prolungamento dei rivestimenti esterni nel riempimento. La distanza preimpostata è sufficiente per coprire lo spazio tra le linee di riempimento e chiude i fori che si presentano sul rivestimento esterno nel punto in cui incontra la parete quando la densità del riempimento è bassa. Una distanza inferiore sovente è sufficiente."
  5518. #~ msgctxt "support_skip_some_zags label"
  5519. #~ msgid "Skip Some ZigZags Connections"
  5520. #~ msgstr "Salta alcuni collegamenti a zig-zag"
  5521. #~ msgctxt "support_skip_some_zags description"
  5522. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5523. #~ msgstr "Salto di alcuni collegamenti a zig-zag per rendere la struttura del supporto più facile da rompere."
  5524. #~ msgctxt "support_zag_skip_count label"
  5525. #~ msgid "ZigZag Connection Skip Count"
  5526. #~ msgstr "Conteggio dei salti dei collegamenti a zig-zag"
  5527. #~ msgctxt "support_zag_skip_count description"
  5528. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5529. #~ msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere."
  5530. #~ msgctxt "machine_show_variants label"
  5531. #~ msgid "Show machine variants"
  5532. #~ msgstr "Mostra varianti macchina"
  5533. #~ msgctxt "material_bed_temp_wait label"
  5534. #~ msgid "Wait for build plate heatup"
  5535. #~ msgstr "Attendi il riscaldamento del piano di stampa"
  5536. #~ msgctxt "material_print_temp_wait label"
  5537. #~ msgid "Wait for nozzle heatup"
  5538. #~ msgstr "Attendi il riscaldamento dell’ugello"
  5539. #~ msgctxt "material_print_temp_prepend label"
  5540. #~ msgid "Include material temperatures"
  5541. #~ msgstr "Includi le temperature del materiale"
  5542. #~ msgctxt "material_bed_temp_prepend label"
  5543. #~ msgid "Include build plate temperature"
  5544. #~ msgstr "Includi temperatura piano di stampa"
  5545. #~ msgctxt "machine_width label"
  5546. #~ msgid "Machine width"
  5547. #~ msgstr "Larghezza macchina"
  5548. #~ msgctxt "machine_depth label"
  5549. #~ msgid "Machine depth"
  5550. #~ msgstr "Profondità macchina"
  5551. #~ msgctxt "machine_shape label"
  5552. #~ msgid "Build plate shape"
  5553. #~ msgstr "Forma del piano di stampa"
  5554. #~ msgctxt "machine_height label"
  5555. #~ msgid "Machine height"
  5556. #~ msgstr "Altezza macchina"
  5557. #~ msgctxt "machine_heated_bed label"
  5558. #~ msgid "Has heated build plate"
  5559. #~ msgstr "Piano di stampa riscaldato"
  5560. #~ msgctxt "machine_center_is_zero label"
  5561. #~ msgid "Is center origin"
  5562. #~ msgstr "Origine centro"
  5563. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5564. #~ msgid "RepRap (Marlin/Sprinter)"
  5565. #~ msgstr "RepRap (Marlin/Sprinter)"
  5566. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5567. #~ msgid "RepRap (Volumetric)"
  5568. #~ msgstr "RepRap (Volumetric)"
  5569. #~ msgctxt "wall_thickness description"
  5570. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5571. #~ msgstr "Indica lo spessore delle pareti esterne in senso orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti."
  5572. #~ msgctxt "skin_overlap description"
  5573. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5574. #~ msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno."
  5575. #~ msgctxt "support_interface_line_width description"
  5576. #~ msgid "Width of a single support interface line."
  5577. #~ msgstr "Indica la larghezza di una singola linea dell’interfaccia di supporto."
  5578. #~ msgctxt "sub_div_rad_mult label"
  5579. #~ msgid "Cubic Subdivision Radius"
  5580. #~ msgstr "Raggio suddivisione in cubi"
  5581. #~ msgctxt "sub_div_rad_mult description"
  5582. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  5583. #~ msgstr "Un moltiplicatore sul raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano più suddivisioni, vale a dire più cubi piccoli."
  5584. #~ msgctxt "expand_upper_skins label"
  5585. #~ msgid "Expand Upper Skins"
  5586. #~ msgstr "Estendi rivestimenti esterni superiori"
  5587. #~ msgctxt "expand_upper_skins description"
  5588. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  5589. #~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante."
  5590. #~ msgctxt "expand_lower_skins label"
  5591. #~ msgid "Expand Lower Skins"
  5592. #~ msgstr "Estendi rivestimenti esterni inferiori"
  5593. #~ msgctxt "expand_lower_skins description"
  5594. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5595. #~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dagli strati di riempimento sovrastanti e sottostanti."
  5596. #~ msgctxt "speed_support_interface description"
  5597. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  5598. #~ msgstr "Indica la velocità alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti a velocità inferiori può ottimizzare la qualità delle parti a sbalzo."
  5599. #~ msgctxt "acceleration_support_interface description"
  5600. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  5601. #~ msgstr "Indica l’accelerazione alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti ad accelerazioni inferiori può ottimizzare la qualità delle parti a sbalzo."
  5602. #~ msgctxt "jerk_support_interface description"
  5603. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  5604. #~ msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori."
  5605. #~ msgctxt "support_enable label"
  5606. #~ msgid "Enable Support"
  5607. #~ msgstr "Abilitazione del supporto"
  5608. #~ msgctxt "support_enable description"
  5609. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5610. #~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi."
  5611. #~ msgctxt "support_interface_extruder_nr description"
  5612. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  5613. #~ msgstr "Il blocco estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla."
  5614. #~ msgctxt "support_bottom_stair_step_height description"
  5615. #~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  5616. #~ msgstr "Indica l'altezza dei gradini della parte inferiore del supporto (a guisa di scala) in appoggio sul modello. Un valore basso rende difficoltosa la rimozione del supporto, ma un valore troppo alto può comportare strutture di supporto instabili."
  5617. #~ msgctxt "support_bottom_height label"
  5618. #~ msgid "Support Bottom Thickness"
  5619. #~ msgstr "Spessore dei layers inferiori del supporto"
  5620. #~ msgctxt "support_bottom_height description"
  5621. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  5622. #~ msgstr "Indica lo spessore dei layers inferiori del supporto. Questo controlla il numero di slayers fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto."
  5623. #~ msgctxt "support_interface_skip_height description"
  5624. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  5625. #~ msgstr "Quando si controlla la presenza di un modello sopra il supporto, adottare gradini di una data altezza. Valori inferiori generano un sezionamento più lento, mentre valori superiori possono causare la stampa del supporto normale in punti in cui avrebbe dovuto essere presente un’interfaccia supporto."
  5626. #~ msgctxt "support_interface_density description"
  5627. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  5628. #~ msgstr "Regola la densità delle parti superiori e inferiori della struttura del supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  5629. #~ msgctxt "support_interface_line_distance label"
  5630. #~ msgid "Support Interface Line Distance"
  5631. #~ msgstr "Distanza della linea di interfaccia supporto"
  5632. #~ msgctxt "support_interface_line_distance description"
  5633. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  5634. #~ msgstr "Indica la distanza tra le linee di interfaccia del supporto stampato. Questa impostazione viene calcolata mediante la densità dell’interfaccia del supporto, ma può essere regolata separatamente."
  5635. #~ msgctxt "magic_spiralize description"
  5636. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  5637. #~ msgstr "Questa funzione regolarizza il movimento dell'asse Z del bordo esterno. Questo creerà un costante aumento di Z su tutta la stampa. Questa funzione trasforma un modello solido in una stampa a singola parete con un fondo solido. Nelle versioni precedenti questa funzione era denominata Joris."
  5638. #~ msgctxt "material_print_temperature description"
  5639. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  5640. #~ msgstr "Indica la temperatura usata per la stampa. Impostare a 0 per pre-riscaldare la stampante manualmente."
  5641. #~ msgctxt "material_bed_temperature description"
  5642. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  5643. #~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Impostare a 0 per pre-riscaldare la stampante manualmente."
  5644. #~ msgctxt "support_z_distance description"
  5645. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  5646. #~ msgstr "Indica la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per difetto a un multiplo dell’altezza strato."
  5647. #~ msgctxt "z_seam_type option back"
  5648. #~ msgid "Back"
  5649. #~ msgstr "Indietro"
  5650. #~ msgctxt "multiple_mesh_overlap label"
  5651. #~ msgid "Dual Extrusion Overlap"
  5652. #~ msgstr "Sovrapposizione doppia estrusione"