fdmprinter.def.json.po 364 KB

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