fdmprinter.def.json.po 391 KB

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