fdmprinter.def.json.po 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: it_IT\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. msgctxt "machine_settings label"
  15. msgid "Machine"
  16. msgstr "Macchina"
  17. msgctxt "machine_settings description"
  18. msgid "Machine specific settings"
  19. msgstr "Impostazioni macchina specifiche"
  20. msgctxt "machine_name label"
  21. msgid "Machine Type"
  22. msgstr "Tipo di macchina"
  23. msgctxt "machine_name description"
  24. msgid "The name of your 3D printer model."
  25. msgstr "Il nome del modello della stampante 3D in uso."
  26. msgctxt "machine_show_variants label"
  27. msgid "Show Machine Variants"
  28. msgstr "Mostra varianti macchina"
  29. msgctxt "machine_show_variants description"
  30. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  31. msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte."
  32. msgctxt "machine_start_gcode label"
  33. msgid "Start G-code"
  34. msgstr "Codice G avvio"
  35. msgctxt "machine_start_gcode description"
  36. msgid "G-code commands to be executed at the very start - separated by \n."
  37. msgstr "I comandi codice G da eseguire all’avvio, separati da "
  38. "."
  39. msgctxt "machine_end_gcode label"
  40. msgid "End G-code"
  41. msgstr "Codice G fine"
  42. msgctxt "machine_end_gcode description"
  43. msgid "G-code commands to be executed at the very end - separated by \n."
  44. msgstr "I comandi codice G da eseguire alla fine, separati da "
  45. "."
  46. msgctxt "material_guid label"
  47. msgid "Material GUID"
  48. msgstr "GUID materiale"
  49. msgctxt "material_guid description"
  50. msgid "GUID of the material. This is set automatically."
  51. msgstr "Il GUID del materiale. È impostato automaticamente."
  52. msgctxt "material_type label"
  53. msgid "Material Type"
  54. msgstr "Tipo di materiale"
  55. msgctxt "material_type description"
  56. msgid "The type of material used."
  57. msgstr "Il tipo di materiale utilizzato."
  58. msgctxt "material_brand label"
  59. msgid "Material Brand"
  60. msgstr "Marca del materiale"
  61. msgctxt "material_brand description"
  62. msgid "The brand of material used."
  63. msgstr "La marca del materiale utilizzato."
  64. msgctxt "material_diameter label"
  65. msgid "Diameter"
  66. msgstr "Diametro"
  67. msgctxt "material_diameter description"
  68. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  69. msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato."
  70. msgctxt "material_bed_temp_wait label"
  71. msgid "Wait for Build Plate Heatup"
  72. msgstr "Attendi il riscaldamento del piano di stampa"
  73. msgctxt "material_bed_temp_wait description"
  74. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  75. msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio."
  76. msgctxt "material_print_temp_wait label"
  77. msgid "Wait for Nozzle Heatup"
  78. msgstr "Attendi il riscaldamento dell’ugello"
  79. msgctxt "material_print_temp_wait description"
  80. msgid "Whether to wait until the nozzle temperature is reached at the start."
  81. msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio."
  82. msgctxt "material_print_temp_prepend label"
  83. msgid "Include Material Temperatures"
  84. msgstr "Includi le temperature del materiale"
  85. msgctxt "material_print_temp_prepend description"
  86. 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."
  87. 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."
  88. msgctxt "material_bed_temp_prepend label"
  89. msgid "Include Build Plate Temperature"
  90. msgstr "Includi temperatura piano di stampa"
  91. msgctxt "material_bed_temp_prepend description"
  92. 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."
  93. 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."
  94. msgctxt "machine_width label"
  95. msgid "Machine Width"
  96. msgstr "Larghezza macchina"
  97. msgctxt "machine_width description"
  98. msgid "The width (X-direction) of the printable area."
  99. msgstr "La larghezza (direzione X) dell’area stampabile."
  100. msgctxt "machine_depth label"
  101. msgid "Machine Depth"
  102. msgstr "Profondità macchina"
  103. msgctxt "machine_depth description"
  104. msgid "The depth (Y-direction) of the printable area."
  105. msgstr "La profondità (direzione Y) dell’area stampabile."
  106. msgctxt "machine_height label"
  107. msgid "Machine Height"
  108. msgstr "Altezza macchina"
  109. msgctxt "machine_height description"
  110. msgid "The height (Z-direction) of the printable area."
  111. msgstr "L’altezza (direzione Z) dell’area stampabile."
  112. msgctxt "machine_shape label"
  113. msgid "Build Plate Shape"
  114. msgstr "Forma del piano di stampa"
  115. msgctxt "machine_shape description"
  116. msgid "The shape of the build plate without taking unprintable areas into account."
  117. msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili."
  118. msgctxt "machine_shape option rectangular"
  119. msgid "Rectangular"
  120. msgstr "Rettangolare"
  121. msgctxt "machine_shape option elliptic"
  122. msgid "Elliptic"
  123. msgstr "Ellittica"
  124. msgctxt "machine_buildplate_type label"
  125. msgid "Build Plate Material"
  126. msgstr "Materiale piano di stampa"
  127. msgctxt "machine_buildplate_type description"
  128. msgid "The material of the build plate installed on the printer."
  129. msgstr "Il materiale del piano di stampa installato sulla stampante."
  130. msgctxt "machine_buildplate_type option glass"
  131. msgid "Glass"
  132. msgstr "Cristallo"
  133. msgctxt "machine_buildplate_type option aluminum"
  134. msgid "Aluminum"
  135. msgstr "Alluminio"
  136. msgctxt "machine_heated_bed label"
  137. msgid "Has Heated Build Plate"
  138. msgstr "Piano di stampa riscaldato"
  139. msgctxt "machine_heated_bed description"
  140. msgid "Whether the machine has a heated build plate present."
  141. msgstr "Indica se la macchina ha un piano di stampa riscaldato."
  142. msgctxt "machine_heated_build_volume label"
  143. msgid "Has Build Volume Temperature Stabilization"
  144. msgstr "È dotato della stabilizzazione della temperatura del volume di stampa"
  145. msgctxt "machine_heated_build_volume description"
  146. msgid "Whether the machine is able to stabilize the build volume temperature."
  147. msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa."
  148. msgctxt "machine_always_write_active_tool label"
  149. msgid "Always Write Active Tool"
  150. msgstr "Tenere sempre nota dello strumento attivo"
  151. msgctxt "machine_always_write_active_tool description"
  152. 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."
  153. 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."
  154. msgctxt "machine_center_is_zero label"
  155. msgid "Is Center Origin"
  156. msgstr "Origine del centro"
  157. msgctxt "machine_center_is_zero description"
  158. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  159. msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile."
  160. msgctxt "machine_extruder_count label"
  161. msgid "Number of Extruders"
  162. msgstr "Numero di estrusori"
  163. msgctxt "machine_extruder_count description"
  164. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  165. msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello."
  166. msgctxt "extruders_enabled_count label"
  167. msgid "Number of Extruders That Are Enabled"
  168. msgstr "Numero di estrusori abilitati"
  169. msgctxt "extruders_enabled_count description"
  170. msgid "Number of extruder trains that are enabled; automatically set in software"
  171. msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software"
  172. msgctxt "machine_nozzle_tip_outer_diameter label"
  173. msgid "Outer Nozzle Diameter"
  174. msgstr "Diametro esterno ugello"
  175. msgctxt "machine_nozzle_tip_outer_diameter description"
  176. msgid "The outer diameter of the tip of the nozzle."
  177. msgstr "Il diametro esterno della punta dell'ugello."
  178. msgctxt "machine_nozzle_head_distance label"
  179. msgid "Nozzle Length"
  180. msgstr "Lunghezza ugello"
  181. msgctxt "machine_nozzle_head_distance description"
  182. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  183. msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa."
  184. msgctxt "machine_nozzle_expansion_angle label"
  185. msgid "Nozzle Angle"
  186. msgstr "Angolo ugello"
  187. msgctxt "machine_nozzle_expansion_angle description"
  188. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  189. msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello."
  190. msgctxt "machine_heat_zone_length label"
  191. msgid "Heat Zone Length"
  192. msgstr "Lunghezza della zona di riscaldamento"
  193. msgctxt "machine_heat_zone_length description"
  194. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  195. msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento."
  196. msgctxt "machine_nozzle_temp_enabled label"
  197. msgid "Enable Nozzle Temperature Control"
  198. msgstr "Abilita controllo temperatura ugello"
  199. msgctxt "machine_nozzle_temp_enabled description"
  200. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  201. msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura."
  202. msgctxt "machine_nozzle_heat_up_speed label"
  203. msgid "Heat Up Speed"
  204. msgstr "Velocità di riscaldamento"
  205. msgctxt "machine_nozzle_heat_up_speed description"
  206. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  207. 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."
  208. msgctxt "machine_nozzle_cool_down_speed label"
  209. msgid "Cool Down Speed"
  210. msgstr "Velocità di raffreddamento"
  211. msgctxt "machine_nozzle_cool_down_speed description"
  212. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  213. 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."
  214. msgctxt "machine_min_cool_heat_time_window label"
  215. msgid "Minimal Time Standby Temperature"
  216. msgstr "Tempo minimo temperatura di standby"
  217. msgctxt "machine_min_cool_heat_time_window description"
  218. 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."
  219. 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."
  220. msgctxt "machine_gcode_flavor label"
  221. msgid "G-code Flavor"
  222. msgstr "Versione codice G"
  223. msgctxt "machine_gcode_flavor description"
  224. msgid "The type of g-code to be generated."
  225. msgstr "Il tipo di codice G da generare."
  226. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  227. msgid "Marlin"
  228. msgstr "Marlin"
  229. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  230. msgid "Marlin (Volumetric)"
  231. msgstr "Marlin (volumetrica)"
  232. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  233. msgid "RepRap"
  234. msgstr "RepRap"
  235. msgctxt "machine_gcode_flavor option UltiGCode"
  236. msgid "Ultimaker 2"
  237. msgstr "Ultimaker 2"
  238. msgctxt "machine_gcode_flavor option Griffin"
  239. msgid "Griffin"
  240. msgstr "Griffin"
  241. msgctxt "machine_gcode_flavor option Makerbot"
  242. msgid "Makerbot"
  243. msgstr "Makerbot"
  244. msgctxt "machine_gcode_flavor option BFB"
  245. msgid "Bits from Bytes"
  246. msgstr "Bits from Bytes"
  247. msgctxt "machine_gcode_flavor option MACH3"
  248. msgid "Mach3"
  249. msgstr "Mach3"
  250. msgctxt "machine_gcode_flavor option Repetier"
  251. msgid "Repetier"
  252. msgstr "Repetier"
  253. msgctxt "machine_firmware_retract label"
  254. msgid "Firmware Retraction"
  255. msgstr "Retrazione firmware"
  256. msgctxt "machine_firmware_retract description"
  257. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  258. msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale."
  259. msgctxt "machine_extruders_share_heater label"
  260. msgid "Extruders Share Heater"
  261. msgstr "Condivisione del riscaldatore da parte degli estrusori"
  262. msgctxt "machine_extruders_share_heater description"
  263. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  264. msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio."
  265. msgctxt "machine_extruders_share_nozzle label"
  266. msgid "Extruders Share Nozzle"
  267. msgstr "Estrusori condividono ugello"
  268. msgctxt "machine_extruders_share_nozzle description"
  269. 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."
  270. 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'."
  271. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  272. msgid "Shared Nozzle Initial Retraction"
  273. msgstr "Retrazione iniziale ugello condivisa"
  274. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  275. 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."
  276. 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."
  277. msgctxt "machine_disallowed_areas label"
  278. msgid "Disallowed Areas"
  279. msgstr "Aree non consentite"
  280. msgctxt "machine_disallowed_areas description"
  281. msgid "A list of polygons with areas the print head is not allowed to enter."
  282. msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere."
  283. msgctxt "nozzle_disallowed_areas label"
  284. msgid "Nozzle Disallowed Areas"
  285. msgstr "Aree ugello non consentite"
  286. msgctxt "nozzle_disallowed_areas description"
  287. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  288. msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere."
  289. msgctxt "machine_head_with_fans_polygon label"
  290. msgid "Machine Head & Fan Polygon"
  291. msgstr "Poligono testina macchina e ventola"
  292. msgctxt "machine_head_with_fans_polygon description"
  293. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  294. msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative."
  295. msgctxt "gantry_height label"
  296. msgid "Gantry Height"
  297. msgstr "Altezza gantry"
  298. msgctxt "gantry_height description"
  299. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  300. msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)."
  301. msgctxt "machine_nozzle_id label"
  302. msgid "Nozzle ID"
  303. msgstr "ID ugello"
  304. msgctxt "machine_nozzle_id description"
  305. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  306. msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"."
  307. msgctxt "machine_nozzle_size label"
  308. msgid "Nozzle Diameter"
  309. msgstr "Diametro ugello"
  310. msgctxt "machine_nozzle_size description"
  311. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  312. msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard."
  313. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  314. msgid "Offset with Extruder"
  315. msgstr "Offset con estrusore"
  316. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  317. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  318. msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori."
  319. msgctxt "extruder_prime_pos_z label"
  320. msgid "Extruder Prime Z Position"
  321. msgstr "Posizione Z innesco estrusore"
  322. msgctxt "extruder_prime_pos_z description"
  323. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  324. msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa."
  325. msgctxt "extruder_prime_pos_abs label"
  326. msgid "Absolute Extruder Prime Position"
  327. msgstr "Posizione assoluta di innesco estrusore"
  328. msgctxt "extruder_prime_pos_abs description"
  329. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  330. msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
  331. msgctxt "machine_max_feedrate_x label"
  332. msgid "Maximum Speed X"
  333. msgstr "Velocità massima X"
  334. msgctxt "machine_max_feedrate_x description"
  335. msgid "The maximum speed for the motor of the X-direction."
  336. msgstr "Indica la velocità massima del motore per la direzione X."
  337. msgctxt "machine_max_feedrate_y label"
  338. msgid "Maximum Speed Y"
  339. msgstr "Velocità massima Y"
  340. msgctxt "machine_max_feedrate_y description"
  341. msgid "The maximum speed for the motor of the Y-direction."
  342. msgstr "Indica la velocità massima del motore per la direzione Y."
  343. msgctxt "machine_max_feedrate_z label"
  344. msgid "Maximum Speed Z"
  345. msgstr "Velocità massima Z"
  346. msgctxt "machine_max_feedrate_z description"
  347. msgid "The maximum speed for the motor of the Z-direction."
  348. msgstr "Indica la velocità massima del motore per la direzione Z."
  349. msgctxt "machine_max_feedrate_e label"
  350. msgid "Maximum Speed E"
  351. msgstr "Velocità massima E"
  352. msgctxt "machine_max_feedrate_e description"
  353. msgid "The maximum speed of the filament."
  354. msgstr "Indica la velocità massima del filamento."
  355. msgctxt "machine_max_acceleration_x label"
  356. msgid "Maximum Acceleration X"
  357. msgstr "Accelerazione massima X"
  358. msgctxt "machine_max_acceleration_x description"
  359. msgid "Maximum acceleration for the motor of the X-direction"
  360. msgstr "Indica l’accelerazione massima del motore per la direzione X"
  361. msgctxt "machine_max_acceleration_y label"
  362. msgid "Maximum Acceleration Y"
  363. msgstr "Accelerazione massima Y"
  364. msgctxt "machine_max_acceleration_y description"
  365. msgid "Maximum acceleration for the motor of the Y-direction."
  366. msgstr "Indica l’accelerazione massima del motore per la direzione Y."
  367. msgctxt "machine_max_acceleration_z label"
  368. msgid "Maximum Acceleration Z"
  369. msgstr "Accelerazione massima Z"
  370. msgctxt "machine_max_acceleration_z description"
  371. msgid "Maximum acceleration for the motor of the Z-direction."
  372. msgstr "Indica l’accelerazione massima del motore per la direzione Z."
  373. msgctxt "machine_max_acceleration_e label"
  374. msgid "Maximum Filament Acceleration"
  375. msgstr "Accelerazione massima filamento"
  376. msgctxt "machine_max_acceleration_e description"
  377. msgid "Maximum acceleration for the motor of the filament."
  378. msgstr "Indica l’accelerazione massima del motore del filamento."
  379. msgctxt "machine_acceleration label"
  380. msgid "Default Acceleration"
  381. msgstr "Accelerazione predefinita"
  382. msgctxt "machine_acceleration description"
  383. msgid "The default acceleration of print head movement."
  384. msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa."
  385. msgctxt "machine_max_jerk_xy label"
  386. msgid "Default X-Y Jerk"
  387. msgstr "Jerk X-Y predefinito"
  388. msgctxt "machine_max_jerk_xy description"
  389. msgid "Default jerk for movement in the horizontal plane."
  390. msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale."
  391. msgctxt "machine_max_jerk_z label"
  392. msgid "Default Z Jerk"
  393. msgstr "Jerk Z predefinito"
  394. msgctxt "machine_max_jerk_z description"
  395. msgid "Default jerk for the motor of the Z-direction."
  396. msgstr "Indica il jerk predefinito del motore per la direzione Z."
  397. msgctxt "machine_max_jerk_e label"
  398. msgid "Default Filament Jerk"
  399. msgstr "Jerk filamento predefinito"
  400. msgctxt "machine_max_jerk_e description"
  401. msgid "Default jerk for the motor of the filament."
  402. msgstr "Indica il jerk predefinito del motore del filamento."
  403. msgctxt "machine_steps_per_mm_x label"
  404. msgid "Steps per Millimeter (X)"
  405. msgstr "Passi per millimetro (X)"
  406. msgctxt "machine_steps_per_mm_x description"
  407. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  408. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X."
  409. msgctxt "machine_steps_per_mm_y label"
  410. msgid "Steps per Millimeter (Y)"
  411. msgstr "Passi per millimetro (Y)"
  412. msgctxt "machine_steps_per_mm_y description"
  413. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  414. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y."
  415. msgctxt "machine_steps_per_mm_z label"
  416. msgid "Steps per Millimeter (Z)"
  417. msgstr "Passi per millimetro (Z)"
  418. msgctxt "machine_steps_per_mm_z description"
  419. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  420. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z."
  421. msgctxt "machine_steps_per_mm_e label"
  422. msgid "Steps per Millimeter (E)"
  423. msgstr "Passi per millimetro (E)"
  424. msgctxt "machine_steps_per_mm_e description"
  425. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  426. msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza."
  427. msgctxt "machine_endstop_positive_direction_x label"
  428. msgid "X Endstop in Positive Direction"
  429. msgstr "Endstop X in direzione positiva"
  430. msgctxt "machine_endstop_positive_direction_x description"
  431. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  432. msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)."
  433. msgctxt "machine_endstop_positive_direction_y label"
  434. msgid "Y Endstop in Positive Direction"
  435. msgstr "Endstop Y in direzione positiva"
  436. msgctxt "machine_endstop_positive_direction_y description"
  437. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  438. msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)."
  439. msgctxt "machine_endstop_positive_direction_z label"
  440. msgid "Z Endstop in Positive Direction"
  441. msgstr "Endstop Z in direzione positiva"
  442. msgctxt "machine_endstop_positive_direction_z description"
  443. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  444. msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)."
  445. msgctxt "machine_minimum_feedrate label"
  446. msgid "Minimum Feedrate"
  447. msgstr "Velocità di alimentazione minima"
  448. msgctxt "machine_minimum_feedrate description"
  449. msgid "The minimal movement speed of the print head."
  450. msgstr "Indica la velocità di spostamento minima della testina di stampa."
  451. msgctxt "machine_feeder_wheel_diameter label"
  452. msgid "Feeder Wheel Diameter"
  453. msgstr "Diametro ruota del tirafilo"
  454. msgctxt "machine_feeder_wheel_diameter description"
  455. msgid "The diameter of the wheel that drives the material in the feeder."
  456. msgstr "Il diametro della ruota che guida il materiale nel tirafilo."
  457. msgctxt "machine_scale_fan_speed_zero_to_one label"
  458. msgid "Scale Fan Speed To 0-1"
  459. msgstr "Scala la velocità della ventola a 0-1"
  460. msgctxt "machine_scale_fan_speed_zero_to_one description"
  461. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  462. msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256."
  463. msgctxt "resolution label"
  464. msgid "Quality"
  465. msgstr "Qualità"
  466. msgctxt "resolution description"
  467. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  468. msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)"
  469. msgctxt "layer_height label"
  470. msgid "Layer Height"
  471. msgstr "Altezza dello strato"
  472. msgctxt "layer_height description"
  473. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  474. 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."
  475. msgctxt "layer_height_0 label"
  476. msgid "Initial Layer Height"
  477. msgstr "Altezza dello strato iniziale"
  478. msgctxt "layer_height_0 description"
  479. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  480. msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa."
  481. msgctxt "line_width label"
  482. msgid "Line Width"
  483. msgstr "Larghezza della linea"
  484. msgctxt "line_width description"
  485. 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."
  486. 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."
  487. msgctxt "wall_line_width label"
  488. msgid "Wall Line Width"
  489. msgstr "Larghezza delle linee perimetrali"
  490. msgctxt "wall_line_width description"
  491. msgid "Width of a single wall line."
  492. msgstr "Indica la larghezza di una singola linea perimetrale."
  493. msgctxt "wall_line_width_0 label"
  494. msgid "Outer Wall Line Width"
  495. msgstr "Larghezza delle linee della parete esterna"
  496. msgctxt "wall_line_width_0 description"
  497. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  498. msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati."
  499. msgctxt "wall_line_width_x label"
  500. msgid "Inner Wall(s) Line Width"
  501. msgstr "Larghezza delle linee della parete interna"
  502. msgctxt "wall_line_width_x description"
  503. msgid "Width of a single wall line for all wall lines except the outermost one."
  504. msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna."
  505. msgctxt "skin_line_width label"
  506. msgid "Top/Bottom Line Width"
  507. msgstr "Larghezza delle linee superiore/inferiore"
  508. msgctxt "skin_line_width description"
  509. msgid "Width of a single top/bottom line."
  510. msgstr "Indica la larghezza di una singola linea superiore/inferiore."
  511. msgctxt "infill_line_width label"
  512. msgid "Infill Line Width"
  513. msgstr "Larghezza delle linee di riempimento"
  514. msgctxt "infill_line_width description"
  515. msgid "Width of a single infill line."
  516. msgstr "Indica la larghezza di una singola linea di riempimento."
  517. msgctxt "skirt_brim_line_width label"
  518. msgid "Skirt/Brim Line Width"
  519. msgstr "Larghezza delle linee dello skirt/brim"
  520. msgctxt "skirt_brim_line_width description"
  521. msgid "Width of a single skirt or brim line."
  522. msgstr "Indica la larghezza di una singola linea dello skirt o del brim."
  523. msgctxt "support_line_width label"
  524. msgid "Support Line Width"
  525. msgstr "Larghezza delle linee di supporto"
  526. msgctxt "support_line_width description"
  527. msgid "Width of a single support structure line."
  528. msgstr "Indica la larghezza di una singola linea di supporto."
  529. msgctxt "support_interface_line_width label"
  530. msgid "Support Interface Line Width"
  531. msgstr "Larghezza della linea dell’interfaccia di supporto"
  532. msgctxt "support_interface_line_width description"
  533. msgid "Width of a single line of support roof or floor."
  534. msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore."
  535. msgctxt "support_roof_line_width label"
  536. msgid "Support Roof Line Width"
  537. msgstr "Larghezza delle linee di supporto superiori"
  538. msgctxt "support_roof_line_width description"
  539. msgid "Width of a single support roof line."
  540. msgstr "Indica la larghezza di una singola linea di supporto superiore."
  541. msgctxt "support_bottom_line_width label"
  542. msgid "Support Floor Line Width"
  543. msgstr "Larghezza della linea di supporto inferiore"
  544. msgctxt "support_bottom_line_width description"
  545. msgid "Width of a single support floor line."
  546. msgstr "Indica la larghezza di una singola linea di supporto inferiore."
  547. msgctxt "prime_tower_line_width label"
  548. msgid "Prime Tower Line Width"
  549. msgstr "Larghezza della linea della torre di innesco"
  550. msgctxt "prime_tower_line_width description"
  551. msgid "Width of a single prime tower line."
  552. msgstr "Indica la larghezza di una singola linea della torre di innesco."
  553. msgctxt "initial_layer_line_width_factor label"
  554. msgid "Initial Layer Line Width"
  555. msgstr "Larghezza linea strato iniziale"
  556. msgctxt "initial_layer_line_width_factor description"
  557. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  558. msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano."
  559. msgctxt "shell label"
  560. msgid "Walls"
  561. msgstr "Pareti"
  562. msgctxt "shell description"
  563. msgid "Shell"
  564. msgstr "Guscio"
  565. msgctxt "wall_extruder_nr label"
  566. msgid "Wall Extruder"
  567. msgstr "Estrusore pareti"
  568. msgctxt "wall_extruder_nr description"
  569. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  570. msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla."
  571. msgctxt "wall_0_extruder_nr label"
  572. msgid "Outer Wall Extruder"
  573. msgstr "Estrusore parete esterna"
  574. msgctxt "wall_0_extruder_nr description"
  575. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  576. msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla."
  577. msgctxt "wall_x_extruder_nr label"
  578. msgid "Inner Wall Extruder"
  579. msgstr "Estrusore parete interna"
  580. msgctxt "wall_x_extruder_nr description"
  581. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  582. msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla."
  583. msgctxt "wall_thickness label"
  584. msgid "Wall Thickness"
  585. msgstr "Spessore delle pareti"
  586. msgctxt "wall_thickness description"
  587. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  588. msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti."
  589. msgctxt "wall_line_count label"
  590. msgid "Wall Line Count"
  591. msgstr "Numero delle linee perimetrali"
  592. msgctxt "wall_line_count description"
  593. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  594. msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero."
  595. msgctxt "wall_transition_length label"
  596. msgid "Wall Transition Length"
  597. msgstr "Lunghezza transizione parete"
  598. msgctxt "wall_transition_length description"
  599. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  600. msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali."
  601. msgctxt "wall_distribution_count label"
  602. msgid "Wall Distribution Count"
  603. msgstr "Conteggio distribuzione parete"
  604. msgctxt "wall_distribution_count description"
  605. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  606. msgstr "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia."
  607. msgctxt "wall_transition_angle label"
  608. msgid "Wall Transitioning Threshold Angle"
  609. msgstr "Angolo di soglia di transizione parete"
  610. msgctxt "wall_transition_angle description"
  611. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  612. msgstr "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione."
  613. msgctxt "wall_transition_filter_distance label"
  614. msgid "Wall Transitioning Filter Distance"
  615. msgstr "Distanza di filtro transizione parete"
  616. msgctxt "wall_transition_filter_distance description"
  617. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  618. msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza."
  619. msgctxt "wall_transition_filter_deviation label"
  620. msgid "Wall Transitioning Filter Margin"
  621. msgstr "Margine filtro di transizione parete"
  622. msgctxt "wall_transition_filter_deviation description"
  623. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  624. msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione."
  625. msgctxt "wall_0_wipe_dist label"
  626. msgid "Outer Wall Wipe Distance"
  627. msgstr "Distanza del riempimento parete esterna"
  628. msgctxt "wall_0_wipe_dist description"
  629. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  630. msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z."
  631. msgctxt "wall_0_inset label"
  632. msgid "Outer Wall Inset"
  633. msgstr "Inserto parete esterna"
  634. msgctxt "wall_0_inset description"
  635. 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."
  636. 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."
  637. msgctxt "optimize_wall_printing_order label"
  638. msgid "Optimize Wall Printing Order"
  639. msgstr "Ottimizzazione sequenza di stampa pareti"
  640. msgctxt "optimize_wall_printing_order description"
  641. 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."
  642. 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."
  643. msgctxt "inset_direction label"
  644. msgid "Wall Ordering"
  645. msgstr "Ordinamento parete"
  646. msgctxt "inset_direction description"
  647. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  648. msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima."
  649. msgctxt "inset_direction option inside_out"
  650. msgid "Inside To Outside"
  651. msgstr "Dall'interno all'esterno"
  652. msgctxt "inset_direction option outside_in"
  653. msgid "Outside To Inside"
  654. msgstr "Dall'esterno all'interno"
  655. msgctxt "alternate_extra_perimeter label"
  656. msgid "Alternate Extra Wall"
  657. msgstr "Parete supplementare alternativa"
  658. msgctxt "alternate_extra_perimeter description"
  659. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  660. msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti."
  661. msgctxt "min_wall_line_width label"
  662. msgid "Minimum Wall Line Width"
  663. msgstr "Larghezza minima della linea perimetrale"
  664. msgctxt "min_wall_line_width description"
  665. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  666. msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale."
  667. msgctxt "min_even_wall_line_width label"
  668. msgid "Minimum Even Wall Line Width"
  669. msgstr "Larghezza minima della linea perimetrale pari"
  670. msgctxt "min_even_wall_line_width description"
  671. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  672. msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari."
  673. msgctxt "min_odd_wall_line_width label"
  674. msgid "Minimum Odd Wall Line Width"
  675. msgstr "Larghezza minima della linea perimetrale dispari"
  676. msgctxt "min_odd_wall_line_width description"
  677. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  678. msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari."
  679. msgctxt "fill_outline_gaps label"
  680. msgid "Print Thin Walls"
  681. msgstr "Stampa pareti sottili"
  682. msgctxt "fill_outline_gaps description"
  683. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  684. msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello."
  685. msgctxt "min_feature_size label"
  686. msgid "Minimum Feature Size"
  687. msgstr "Dimensioni minime della feature"
  688. msgctxt "min_feature_size description"
  689. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  690. msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale."
  691. msgctxt "min_bead_width label"
  692. msgid "Minimum Thin Wall Line Width"
  693. msgstr "Larghezza minima della linea perimetrale sottile"
  694. msgctxt "min_bead_width description"
  695. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  696. msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa."
  697. msgctxt "xy_offset label"
  698. msgid "Horizontal Expansion"
  699. msgstr "Espansione orizzontale"
  700. msgctxt "xy_offset description"
  701. 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."
  702. 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."
  703. msgctxt "xy_offset_layer_0 label"
  704. msgid "Initial Layer Horizontal Expansion"
  705. msgstr "Espansione orizzontale dello strato iniziale"
  706. msgctxt "xy_offset_layer_0 description"
  707. 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\"."
  708. 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\"."
  709. msgctxt "hole_xy_offset label"
  710. msgid "Hole Horizontal Expansion"
  711. msgstr "Espansione orizzontale dei fori"
  712. msgctxt "hole_xy_offset description"
  713. msgid "When greater than zero, the Hole Horizontal Expansion is the 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. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  714. msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro."
  715. msgctxt "hole_xy_offset_max_diameter label"
  716. msgid "Hole Horizontal Expansion Max Diameter"
  717. msgstr "Diametro massimo di espansione orizzontale dei fori"
  718. msgctxt "hole_xy_offset_max_diameter description"
  719. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  720. msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi."
  721. msgctxt "z_seam_type label"
  722. msgid "Z Seam Alignment"
  723. msgstr "Allineamento delle giunzioni a Z"
  724. msgctxt "z_seam_type description"
  725. 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."
  726. 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."
  727. msgctxt "z_seam_type option back"
  728. msgid "User Specified"
  729. msgstr "Specificato dall’utente"
  730. msgctxt "z_seam_type option shortest"
  731. msgid "Shortest"
  732. msgstr "Il più breve"
  733. msgctxt "z_seam_type option random"
  734. msgid "Random"
  735. msgstr "Casuale"
  736. msgctxt "z_seam_type option sharpest_corner"
  737. msgid "Sharpest Corner"
  738. msgstr "Angolo più acuto"
  739. msgctxt "z_seam_position label"
  740. msgid "Z Seam Position"
  741. msgstr "Posizione della cucitura in Z"
  742. msgctxt "z_seam_position description"
  743. msgid "The position near where to start printing each part in a layer."
  744. msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer."
  745. msgctxt "z_seam_position option backleft"
  746. msgid "Back Left"
  747. msgstr "Indietro a sinistra"
  748. msgctxt "z_seam_position option back"
  749. msgid "Back"
  750. msgstr "Indietro"
  751. msgctxt "z_seam_position option backright"
  752. msgid "Back Right"
  753. msgstr "Indietro a destra"
  754. msgctxt "z_seam_position option right"
  755. msgid "Right"
  756. msgstr "Destra"
  757. msgctxt "z_seam_position option frontright"
  758. msgid "Front Right"
  759. msgstr "Avanti a destra"
  760. msgctxt "z_seam_position option front"
  761. msgid "Front"
  762. msgstr "Avanti"
  763. msgctxt "z_seam_position option frontleft"
  764. msgid "Front Left"
  765. msgstr "Avanti a sinistra"
  766. msgctxt "z_seam_position option left"
  767. msgid "Left"
  768. msgstr "Sinistra"
  769. msgctxt "z_seam_x label"
  770. msgid "Z Seam X"
  771. msgstr "Giunzione Z X"
  772. msgctxt "z_seam_x description"
  773. msgid "The X coordinate of the position near where to start printing each part in a layer."
  774. msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  775. msgctxt "z_seam_y label"
  776. msgid "Z Seam Y"
  777. msgstr "Giunzione Z Y"
  778. msgctxt "z_seam_y description"
  779. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  780. msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  781. msgctxt "z_seam_corner label"
  782. msgid "Seam Corner Preference"
  783. msgstr "Preferenze angolo giunzione"
  784. msgctxt "z_seam_corner description"
  785. 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."
  786. 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."
  787. msgctxt "z_seam_corner option z_seam_corner_none"
  788. msgid "None"
  789. msgstr "Nessuno"
  790. msgctxt "z_seam_corner option z_seam_corner_inner"
  791. msgid "Hide Seam"
  792. msgstr "Nascondi giunzione"
  793. msgctxt "z_seam_corner option z_seam_corner_outer"
  794. msgid "Expose Seam"
  795. msgstr "Esponi giunzione"
  796. msgctxt "z_seam_corner option z_seam_corner_any"
  797. msgid "Hide or Expose Seam"
  798. msgstr "Nascondi o esponi giunzione"
  799. msgctxt "z_seam_corner option z_seam_corner_weighted"
  800. msgid "Smart Hiding"
  801. msgstr "Occultamento intelligente"
  802. msgctxt "z_seam_relative label"
  803. msgid "Z Seam Relative"
  804. msgstr "Riferimento giunzione Z"
  805. msgctxt "z_seam_relative description"
  806. 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."
  807. 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."
  808. msgctxt "top_bottom label"
  809. msgid "Top/Bottom"
  810. msgstr "Superiore / Inferiore"
  811. msgctxt "top_bottom description"
  812. msgid "Top/Bottom"
  813. msgstr "Superiore / Inferiore"
  814. msgctxt "roofing_extruder_nr label"
  815. msgid "Top Surface Skin Extruder"
  816. msgstr "Estrusore rivestimento superficie superiore"
  817. msgctxt "roofing_extruder_nr description"
  818. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  819. msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla."
  820. msgctxt "roofing_layer_count label"
  821. msgid "Top Surface Skin Layers"
  822. msgstr "Strati di rivestimento superficie superiore"
  823. msgctxt "roofing_layer_count description"
  824. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  825. msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata."
  826. msgctxt "roofing_line_width label"
  827. msgid "Top Surface Skin Line Width"
  828. msgstr "Larghezza linea rivestimento superficie superiore"
  829. msgctxt "roofing_line_width description"
  830. msgid "Width of a single line of the areas at the top of the print."
  831. msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa."
  832. msgctxt "roofing_pattern label"
  833. msgid "Top Surface Skin Pattern"
  834. msgstr "Configurazione del rivestimento superficie superiore"
  835. msgctxt "roofing_pattern description"
  836. msgid "The pattern of the top most layers."
  837. msgstr "Configurazione degli strati superiori."
  838. msgctxt "roofing_pattern option lines"
  839. msgid "Lines"
  840. msgstr "Linee"
  841. msgctxt "roofing_pattern option concentric"
  842. msgid "Concentric"
  843. msgstr "Concentrica"
  844. msgctxt "roofing_pattern option zigzag"
  845. msgid "Zig Zag"
  846. msgstr "Zig Zag"
  847. msgctxt "roofing_monotonic label"
  848. msgid "Monotonic Top Surface Order"
  849. msgstr "Ordine superficie superiore monotonico"
  850. msgctxt "roofing_monotonic description"
  851. 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."
  852. msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme."
  853. msgctxt "roofing_angles label"
  854. msgid "Top Surface Skin Line Directions"
  855. msgstr "Direzioni linea rivestimento superficie superiore"
  856. msgctxt "roofing_angles description"
  857. 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)."
  858. 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)."
  859. msgctxt "top_bottom_extruder_nr label"
  860. msgid "Top/Bottom Extruder"
  861. msgstr "Estrusore superiore/inferiore"
  862. msgctxt "top_bottom_extruder_nr description"
  863. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  864. msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla."
  865. msgctxt "top_bottom_thickness label"
  866. msgid "Top/Bottom Thickness"
  867. msgstr "Spessore dello strato superiore/inferiore"
  868. msgctxt "top_bottom_thickness description"
  869. 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."
  870. 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."
  871. msgctxt "top_thickness label"
  872. msgid "Top Thickness"
  873. msgstr "Spessore dello strato superiore"
  874. msgctxt "top_thickness description"
  875. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  876. msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori."
  877. msgctxt "top_layers label"
  878. msgid "Top Layers"
  879. msgstr "Strati superiori"
  880. msgctxt "top_layers description"
  881. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  882. msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero."
  883. msgctxt "bottom_thickness label"
  884. msgid "Bottom Thickness"
  885. msgstr "Spessore degli strati inferiori"
  886. msgctxt "bottom_thickness description"
  887. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  888. msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori."
  889. msgctxt "bottom_layers label"
  890. msgid "Bottom Layers"
  891. msgstr "Strati inferiori"
  892. msgctxt "bottom_layers description"
  893. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  894. msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero."
  895. msgctxt "initial_bottom_layers label"
  896. msgid "Initial Bottom Layers"
  897. msgstr "Layer inferiori iniziali"
  898. msgctxt "initial_bottom_layers description"
  899. 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."
  900. 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."
  901. msgctxt "top_bottom_pattern label"
  902. msgid "Top/Bottom Pattern"
  903. msgstr "Configurazione dello strato superiore/inferiore"
  904. msgctxt "top_bottom_pattern description"
  905. msgid "The pattern of the top/bottom layers."
  906. msgstr "Indica la configurazione degli strati superiori/inferiori."
  907. msgctxt "top_bottom_pattern option lines"
  908. msgid "Lines"
  909. msgstr "Linee"
  910. msgctxt "top_bottom_pattern option concentric"
  911. msgid "Concentric"
  912. msgstr "Concentriche"
  913. msgctxt "top_bottom_pattern option zigzag"
  914. msgid "Zig Zag"
  915. msgstr "Zig Zag"
  916. msgctxt "top_bottom_pattern_0 label"
  917. msgid "Bottom Pattern Initial Layer"
  918. msgstr "Strato iniziale configurazione inferiore"
  919. msgctxt "top_bottom_pattern_0 description"
  920. msgid "The pattern on the bottom of the print on the first layer."
  921. msgstr "La configurazione al fondo della stampa sul primo strato."
  922. msgctxt "top_bottom_pattern_0 option lines"
  923. msgid "Lines"
  924. msgstr "Linee"
  925. msgctxt "top_bottom_pattern_0 option concentric"
  926. msgid "Concentric"
  927. msgstr "Concentriche"
  928. msgctxt "top_bottom_pattern_0 option zigzag"
  929. msgid "Zig Zag"
  930. msgstr "Zig Zag"
  931. msgctxt "connect_skin_polygons label"
  932. msgid "Connect Top/Bottom Polygons"
  933. msgstr "Collega poligoni superiori/inferiori"
  934. msgctxt "connect_skin_polygons description"
  935. 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."
  936. 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."
  937. msgctxt "skin_monotonic label"
  938. msgid "Monotonic Top/Bottom Order"
  939. msgstr "Ordine superiore/inferiore monotonico"
  940. msgctxt "skin_monotonic description"
  941. 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."
  942. msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme."
  943. msgctxt "skin_angles label"
  944. msgid "Top/Bottom Line Directions"
  945. msgstr "Direzioni delle linee superiori/inferiori"
  946. msgctxt "skin_angles description"
  947. 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)."
  948. 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)."
  949. msgctxt "small_skin_width label"
  950. msgid "Small Top/Bottom Width"
  951. msgstr "Larghezza superiore e inferiore delle regioni più piccole"
  952. msgctxt "small_skin_width description"
  953. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  954. msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")."
  955. msgctxt "small_skin_on_surface label"
  956. msgid "Small Top/Bottom On Surface"
  957. msgstr "Piccola area inferiore/superiore sulla superficie"
  958. msgctxt "small_skin_on_surface description"
  959. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  960. msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito."
  961. msgctxt "skin_no_small_gaps_heuristic label"
  962. msgid "No Skin in Z Gaps"
  963. msgstr "Nessun rivest. est. negli interstizi a Z"
  964. msgctxt "skin_no_small_gaps_heuristic description"
  965. 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."
  966. 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."
  967. msgctxt "skin_outline_count label"
  968. msgid "Extra Skin Wall Count"
  969. msgstr "Numero di pareti di rivestimento esterno supplementari"
  970. msgctxt "skin_outline_count description"
  971. 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."
  972. 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."
  973. msgctxt "ironing_enabled label"
  974. msgid "Enable Ironing"
  975. msgstr "Abilita stiratura"
  976. msgctxt "ironing_enabled description"
  977. 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."
  978. 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."
  979. msgctxt "ironing_only_highest_layer label"
  980. msgid "Iron Only Highest Layer"
  981. msgstr "Stiramento del solo strato più elevato"
  982. msgctxt "ironing_only_highest_layer description"
  983. 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."
  984. 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."
  985. msgctxt "ironing_pattern label"
  986. msgid "Ironing Pattern"
  987. msgstr "Configurazione di stiratura"
  988. msgctxt "ironing_pattern description"
  989. msgid "The pattern to use for ironing top surfaces."
  990. msgstr "Configurazione utilizzata per la stiratura della superficie superiore."
  991. msgctxt "ironing_pattern option concentric"
  992. msgid "Concentric"
  993. msgstr "Concentrica"
  994. msgctxt "ironing_pattern option zigzag"
  995. msgid "Zig Zag"
  996. msgstr "Zig Zag"
  997. msgctxt "ironing_monotonic label"
  998. msgid "Monotonic Ironing Order"
  999. msgstr "Ordine di stiratura monotonico"
  1000. msgctxt "ironing_monotonic description"
  1001. 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."
  1002. msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme."
  1003. msgctxt "ironing_line_spacing label"
  1004. msgid "Ironing Line Spacing"
  1005. msgstr "Spaziatura delle linee di stiratura"
  1006. msgctxt "ironing_line_spacing description"
  1007. msgid "The distance between the lines of ironing."
  1008. msgstr "Distanza tra le linee di stiratura."
  1009. msgctxt "ironing_flow label"
  1010. msgid "Ironing Flow"
  1011. msgstr "Flusso di stiratura"
  1012. msgctxt "ironing_flow description"
  1013. 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."
  1014. 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."
  1015. msgctxt "ironing_inset label"
  1016. msgid "Ironing Inset"
  1017. msgstr "Inserto di stiratura"
  1018. msgctxt "ironing_inset description"
  1019. 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."
  1020. 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."
  1021. msgctxt "speed_ironing label"
  1022. msgid "Ironing Speed"
  1023. msgstr "Velocità di stiratura"
  1024. msgctxt "speed_ironing description"
  1025. msgid "The speed at which to pass over the top surface."
  1026. msgstr "Velocità alla quale passare sopra la superficie superiore."
  1027. msgctxt "acceleration_ironing label"
  1028. msgid "Ironing Acceleration"
  1029. msgstr "Accelerazione di stiratura"
  1030. msgctxt "acceleration_ironing description"
  1031. msgid "The acceleration with which ironing is performed."
  1032. msgstr "L’accelerazione con cui viene effettuata la stiratura."
  1033. msgctxt "jerk_ironing label"
  1034. msgid "Ironing Jerk"
  1035. msgstr "Jerk stiratura"
  1036. msgctxt "jerk_ironing description"
  1037. msgid "The maximum instantaneous velocity change while performing ironing."
  1038. msgstr "Indica la variazione della velocità istantanea massima durante la stiratura."
  1039. msgctxt "skin_overlap label"
  1040. msgid "Skin Overlap Percentage"
  1041. msgstr "Percentuale di sovrapposizione del rivestimento esterno"
  1042. msgctxt "skin_overlap description"
  1043. 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."
  1044. 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."
  1045. msgctxt "skin_overlap_mm label"
  1046. msgid "Skin Overlap"
  1047. msgstr "Sovrapposizione del rivestimento esterno"
  1048. msgctxt "skin_overlap_mm description"
  1049. 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."
  1050. 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."
  1051. msgctxt "skin_preshrink label"
  1052. msgid "Skin Removal Width"
  1053. msgstr "Larghezza rimozione rivestimento"
  1054. msgctxt "skin_preshrink description"
  1055. 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."
  1056. 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."
  1057. msgctxt "top_skin_preshrink label"
  1058. msgid "Top Skin Removal Width"
  1059. msgstr "Larghezza rimozione rivestimento superiore"
  1060. msgctxt "top_skin_preshrink description"
  1061. 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."
  1062. 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."
  1063. msgctxt "bottom_skin_preshrink label"
  1064. msgid "Bottom Skin Removal Width"
  1065. msgstr "Larghezza rimozione rivestimento inferiore"
  1066. msgctxt "bottom_skin_preshrink description"
  1067. 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."
  1068. 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."
  1069. msgctxt "expand_skins_expand_distance label"
  1070. msgid "Skin Expand Distance"
  1071. msgstr "Distanza prolunga rivestimento esterno"
  1072. msgctxt "expand_skins_expand_distance description"
  1073. 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."
  1074. 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."
  1075. msgctxt "top_skin_expand_distance label"
  1076. msgid "Top Skin Expand Distance"
  1077. msgstr "Distanza prolunga rivestimento superiore"
  1078. msgctxt "top_skin_expand_distance description"
  1079. 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."
  1080. 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."
  1081. msgctxt "bottom_skin_expand_distance label"
  1082. msgid "Bottom Skin Expand Distance"
  1083. msgstr "Distanza prolunga rivestimento inferiore"
  1084. msgctxt "bottom_skin_expand_distance description"
  1085. 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."
  1086. 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."
  1087. msgctxt "max_skin_angle_for_expansion label"
  1088. msgid "Maximum Skin Angle for Expansion"
  1089. msgstr "Angolo massimo rivestimento esterno per prolunga"
  1090. msgctxt "max_skin_angle_for_expansion description"
  1091. 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."
  1092. 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."
  1093. msgctxt "min_skin_width_for_expansion label"
  1094. msgid "Minimum Skin Width for Expansion"
  1095. msgstr "Larghezza minima rivestimento esterno per prolunga"
  1096. msgctxt "min_skin_width_for_expansion description"
  1097. 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."
  1098. 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."
  1099. msgctxt "infill label"
  1100. msgid "Infill"
  1101. msgstr "Riempimento"
  1102. msgctxt "infill description"
  1103. msgid "Infill"
  1104. msgstr "Riempimento"
  1105. msgctxt "infill_extruder_nr label"
  1106. msgid "Infill Extruder"
  1107. msgstr "Estrusore riempimento"
  1108. msgctxt "infill_extruder_nr description"
  1109. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1110. msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla."
  1111. msgctxt "infill_sparse_density label"
  1112. msgid "Infill Density"
  1113. msgstr "Densità del riempimento"
  1114. msgctxt "infill_sparse_density description"
  1115. msgid "Adjusts the density of infill of the print."
  1116. msgstr "Regola la densità del riempimento della stampa."
  1117. msgctxt "infill_line_distance label"
  1118. msgid "Infill Line Distance"
  1119. msgstr "Distanza tra le linee di riempimento"
  1120. msgctxt "infill_line_distance description"
  1121. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1122. 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."
  1123. msgctxt "infill_pattern label"
  1124. msgid "Infill Pattern"
  1125. msgstr "Configurazione di riempimento"
  1126. msgctxt "infill_pattern description"
  1127. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  1128. msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto."
  1129. msgctxt "infill_pattern option grid"
  1130. msgid "Grid"
  1131. msgstr "Griglia"
  1132. msgctxt "infill_pattern option lines"
  1133. msgid "Lines"
  1134. msgstr "Linee"
  1135. msgctxt "infill_pattern option triangles"
  1136. msgid "Triangles"
  1137. msgstr "Triangoli"
  1138. msgctxt "infill_pattern option trihexagon"
  1139. msgid "Tri-Hexagon"
  1140. msgstr "Tri-esagonale"
  1141. msgctxt "infill_pattern option cubic"
  1142. msgid "Cubic"
  1143. msgstr "Cubo"
  1144. msgctxt "infill_pattern option cubicsubdiv"
  1145. msgid "Cubic Subdivision"
  1146. msgstr "Suddivisione in cubi"
  1147. msgctxt "infill_pattern option tetrahedral"
  1148. msgid "Octet"
  1149. msgstr "Ottagonale"
  1150. msgctxt "infill_pattern option quarter_cubic"
  1151. msgid "Quarter Cubic"
  1152. msgstr "Quarto di cubo"
  1153. msgctxt "infill_pattern option concentric"
  1154. msgid "Concentric"
  1155. msgstr "Concentriche"
  1156. msgctxt "infill_pattern option zigzag"
  1157. msgid "Zig Zag"
  1158. msgstr "Zig Zag"
  1159. msgctxt "infill_pattern option cross"
  1160. msgid "Cross"
  1161. msgstr "Incrociata"
  1162. msgctxt "infill_pattern option cross_3d"
  1163. msgid "Cross 3D"
  1164. msgstr "Incrociata 3D"
  1165. msgctxt "infill_pattern option gyroid"
  1166. msgid "Gyroid"
  1167. msgstr "Gyroid"
  1168. msgctxt "infill_pattern option lightning"
  1169. msgid "Lightning"
  1170. msgstr "Fulmine"
  1171. msgctxt "zig_zaggify_infill label"
  1172. msgid "Connect Infill Lines"
  1173. msgstr "Collegamento delle linee di riempimento"
  1174. msgctxt "zig_zaggify_infill description"
  1175. 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."
  1176. 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."
  1177. msgctxt "connect_infill_polygons label"
  1178. msgid "Connect Infill Polygons"
  1179. msgstr "Collega poligoni di riempimento"
  1180. msgctxt "connect_infill_polygons description"
  1181. 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."
  1182. 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."
  1183. msgctxt "infill_angles label"
  1184. msgid "Infill Line Directions"
  1185. msgstr "Direzioni delle linee di riempimento"
  1186. msgctxt "infill_angles description"
  1187. 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)."
  1188. 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)."
  1189. msgctxt "infill_offset_x label"
  1190. msgid "Infill X Offset"
  1191. msgstr "Offset X riempimento"
  1192. msgctxt "infill_offset_x description"
  1193. msgid "The infill pattern is moved this distance along the X axis."
  1194. msgstr "Il riempimento si sposta di questa distanza lungo l'asse X."
  1195. msgctxt "infill_offset_y label"
  1196. msgid "Infill Y Offset"
  1197. msgstr "Offset Y riempimento"
  1198. msgctxt "infill_offset_y description"
  1199. msgid "The infill pattern is moved this distance along the Y axis."
  1200. msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y."
  1201. msgctxt "infill_randomize_start_location label"
  1202. msgid "Randomize Infill Start"
  1203. msgstr "Avvio con riempimento casuale"
  1204. msgctxt "infill_randomize_start_location description"
  1205. 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."
  1206. 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."
  1207. msgctxt "infill_multiplier label"
  1208. msgid "Infill Line Multiplier"
  1209. msgstr "Moltiplicatore delle linee di riempimento"
  1210. msgctxt "infill_multiplier description"
  1211. 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."
  1212. 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."
  1213. msgctxt "infill_wall_line_count label"
  1214. msgid "Extra Infill Wall Count"
  1215. msgstr "Conteggio pareti di riempimento supplementari"
  1216. msgctxt "infill_wall_line_count description"
  1217. msgid "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.\nThis 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."
  1218. msgstr "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."
  1219. "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."
  1220. msgctxt "sub_div_rad_add label"
  1221. msgid "Cubic Subdivision Shell"
  1222. msgstr "Guscio suddivisione in cubi"
  1223. msgctxt "sub_div_rad_add description"
  1224. 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."
  1225. 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."
  1226. msgctxt "infill_overlap label"
  1227. msgid "Infill Overlap Percentage"
  1228. msgstr "Percentuale di sovrapposizione del riempimento"
  1229. msgctxt "infill_overlap description"
  1230. 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."
  1231. 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."
  1232. msgctxt "infill_overlap_mm label"
  1233. msgid "Infill Overlap"
  1234. msgstr "Sovrapposizione del riempimento"
  1235. msgctxt "infill_overlap_mm description"
  1236. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1237. msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  1238. msgctxt "infill_wipe_dist label"
  1239. msgid "Infill Wipe Distance"
  1240. msgstr "Distanza del riempimento"
  1241. msgctxt "infill_wipe_dist description"
  1242. 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."
  1243. 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."
  1244. msgctxt "infill_sparse_thickness label"
  1245. msgid "Infill Layer Thickness"
  1246. msgstr "Spessore dello strato di riempimento"
  1247. msgctxt "infill_sparse_thickness description"
  1248. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1249. 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."
  1250. msgctxt "gradual_infill_steps label"
  1251. msgid "Gradual Infill Steps"
  1252. msgstr "Fasi di riempimento graduale"
  1253. msgctxt "gradual_infill_steps description"
  1254. 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."
  1255. 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."
  1256. msgctxt "gradual_infill_step_height label"
  1257. msgid "Gradual Infill Step Height"
  1258. msgstr "Altezza fasi di riempimento graduale"
  1259. msgctxt "gradual_infill_step_height description"
  1260. msgid "The height of infill of a given density before switching to half the density."
  1261. msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità."
  1262. msgctxt "infill_before_walls label"
  1263. msgid "Infill Before Walls"
  1264. msgstr "Riempimento prima delle pareti"
  1265. msgctxt "infill_before_walls description"
  1266. 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."
  1267. 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."
  1268. msgctxt "min_infill_area label"
  1269. msgid "Minimum Infill Area"
  1270. msgstr "Area minima riempimento"
  1271. msgctxt "min_infill_area description"
  1272. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1273. msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)."
  1274. msgctxt "infill_support_enabled label"
  1275. msgid "Infill Support"
  1276. msgstr "Supporto riempimento"
  1277. msgctxt "infill_support_enabled description"
  1278. 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."
  1279. 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."
  1280. msgctxt "infill_support_angle label"
  1281. msgid "Infill Overhang Angle"
  1282. msgstr "Angolo di sbalzo del riempimento"
  1283. msgctxt "infill_support_angle description"
  1284. 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."
  1285. 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."
  1286. msgctxt "skin_edge_support_thickness label"
  1287. msgid "Skin Edge Support Thickness"
  1288. msgstr "Spessore del supporto del bordo del rivestimento"
  1289. msgctxt "skin_edge_support_thickness description"
  1290. msgid "The thickness of the extra infill that supports skin edges."
  1291. msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento."
  1292. msgctxt "skin_edge_support_layers label"
  1293. msgid "Skin Edge Support Layers"
  1294. msgstr "Layer di supporto del bordo del rivestimento"
  1295. msgctxt "skin_edge_support_layers description"
  1296. msgid "The number of infill layers that supports skin edges."
  1297. msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento."
  1298. msgctxt "lightning_infill_support_angle label"
  1299. msgid "Lightning Infill Support Angle"
  1300. msgstr "Angolo di supporto riempimento fulmine"
  1301. msgctxt "lightning_infill_support_angle description"
  1302. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1303. msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato."
  1304. msgctxt "lightning_infill_overhang_angle label"
  1305. msgid "Lightning Infill Overhang Angle"
  1306. msgstr "Angolo di sbalzo riempimento fulmine"
  1307. msgctxt "lightning_infill_overhang_angle description"
  1308. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1309. msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore."
  1310. msgctxt "lightning_infill_prune_angle label"
  1311. msgid "Lightning Infill Prune Angle"
  1312. msgstr "Angolo eliminazione riempimento fulmine"
  1313. msgctxt "lightning_infill_prune_angle description"
  1314. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  1315. msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee."
  1316. msgctxt "lightning_infill_straightening_angle label"
  1317. msgid "Lightning Infill Straightening Angle"
  1318. msgstr "Angolo di raddrizzatura riempimento fulmine"
  1319. msgctxt "lightning_infill_straightening_angle description"
  1320. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  1321. msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento."
  1322. msgctxt "material label"
  1323. msgid "Material"
  1324. msgstr "Materiale"
  1325. msgctxt "material description"
  1326. msgid "Material"
  1327. msgstr "Materiale"
  1328. msgctxt "default_material_print_temperature label"
  1329. msgid "Default Printing Temperature"
  1330. msgstr "Temperatura di stampa preimpostata"
  1331. msgctxt "default_material_print_temperature description"
  1332. 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"
  1333. 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"
  1334. msgctxt "build_volume_temperature label"
  1335. msgid "Build Volume Temperature"
  1336. msgstr "Temperatura volume di stampa"
  1337. msgctxt "build_volume_temperature description"
  1338. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1339. msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata."
  1340. msgctxt "material_print_temperature label"
  1341. msgid "Printing Temperature"
  1342. msgstr "Temperatura di stampa"
  1343. msgctxt "material_print_temperature description"
  1344. msgid "The temperature used for printing."
  1345. msgstr "Indica la temperatura usata per la stampa."
  1346. msgctxt "material_print_temperature_layer_0 label"
  1347. msgid "Printing Temperature Initial Layer"
  1348. msgstr "Temperatura di stampa Strato iniziale"
  1349. msgctxt "material_print_temperature_layer_0 description"
  1350. msgid "The temperature used for printing the first layer."
  1351. msgstr "La temperatura utilizzata per la stampa del primo strato."
  1352. msgctxt "material_initial_print_temperature label"
  1353. msgid "Initial Printing Temperature"
  1354. msgstr "Temperatura di stampa iniziale"
  1355. msgctxt "material_initial_print_temperature description"
  1356. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1357. msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa."
  1358. msgctxt "material_final_print_temperature label"
  1359. msgid "Final Printing Temperature"
  1360. msgstr "Temperatura di stampa finale"
  1361. msgctxt "material_final_print_temperature description"
  1362. msgid "The temperature to which to already start cooling down just before the end of printing."
  1363. msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa."
  1364. msgctxt "material_extrusion_cool_down_speed label"
  1365. msgid "Extrusion Cool Down Speed Modifier"
  1366. msgstr "Modificatore della velocità di raffreddamento estrusione"
  1367. msgctxt "material_extrusion_cool_down_speed description"
  1368. 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."
  1369. 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."
  1370. msgctxt "default_material_bed_temperature label"
  1371. msgid "Default Build Plate Temperature"
  1372. msgstr "Temperatura piano di stampa preimpostata"
  1373. msgctxt "default_material_bed_temperature description"
  1374. 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"
  1375. 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"
  1376. msgctxt "material_bed_temperature label"
  1377. msgid "Build Plate Temperature"
  1378. msgstr "Temperatura piano di stampa"
  1379. msgctxt "material_bed_temperature description"
  1380. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1381. msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato."
  1382. msgctxt "material_bed_temperature_layer_0 label"
  1383. msgid "Build Plate Temperature Initial Layer"
  1384. msgstr "Temperatura piano di stampa Strato iniziale"
  1385. msgctxt "material_bed_temperature_layer_0 description"
  1386. 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."
  1387. 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."
  1388. msgctxt "material_adhesion_tendency label"
  1389. msgid "Adhesion Tendency"
  1390. msgstr "Tendenza di adesione"
  1391. msgctxt "material_adhesion_tendency description"
  1392. msgid "Surface adhesion tendency."
  1393. msgstr "Tendenza di adesione superficiale."
  1394. msgctxt "material_surface_energy label"
  1395. msgid "Surface Energy"
  1396. msgstr "Energia superficiale"
  1397. msgctxt "material_surface_energy description"
  1398. msgid "Surface energy."
  1399. msgstr "Energia superficiale."
  1400. msgctxt "material_shrinkage_percentage label"
  1401. msgid "Scaling Factor Shrinkage Compensation"
  1402. msgstr "Fattore di scala per la compensazione della contrazione"
  1403. msgctxt "material_shrinkage_percentage description"
  1404. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1405. msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore."
  1406. msgctxt "material_shrinkage_percentage_xy label"
  1407. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1408. msgstr "Fattore di scala orizzontale per la compensazione della contrazione"
  1409. msgctxt "material_shrinkage_percentage_xy description"
  1410. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  1411. msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)."
  1412. msgctxt "material_shrinkage_percentage_z label"
  1413. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1414. msgstr "Fattore di scala verticale per la compensazione della contrazione"
  1415. msgctxt "material_shrinkage_percentage_z description"
  1416. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  1417. msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)."
  1418. msgctxt "material_crystallinity label"
  1419. msgid "Crystalline Material"
  1420. msgstr "Materiale cristallino"
  1421. msgctxt "material_crystallinity description"
  1422. 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)?"
  1423. 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)?"
  1424. msgctxt "material_anti_ooze_retracted_position label"
  1425. msgid "Anti-ooze Retracted Position"
  1426. msgstr "Posizione retratta anti fuoriuscita di materiale"
  1427. msgctxt "material_anti_ooze_retracted_position description"
  1428. msgid "How far the material needs to be retracted before it stops oozing."
  1429. msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire."
  1430. msgctxt "material_anti_ooze_retraction_speed label"
  1431. msgid "Anti-ooze Retraction Speed"
  1432. msgstr "Velocità di retrazione anti fuoriuscita del materiale"
  1433. msgctxt "material_anti_ooze_retraction_speed description"
  1434. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1435. msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale."
  1436. msgctxt "material_break_preparation_retracted_position label"
  1437. msgid "Break Preparation Retracted Position"
  1438. msgstr "Posizione di retrazione prima della rottura"
  1439. msgctxt "material_break_preparation_retracted_position description"
  1440. msgid "How far the filament can be stretched before it breaks, while heated."
  1441. msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento."
  1442. msgctxt "material_break_preparation_speed label"
  1443. msgid "Break Preparation Retraction Speed"
  1444. msgstr "Velocità di retrazione prima della rottura"
  1445. msgctxt "material_break_preparation_speed description"
  1446. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1447. msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione."
  1448. msgctxt "material_break_preparation_temperature label"
  1449. msgid "Break Preparation Temperature"
  1450. msgstr "Temperatura di preparazione alla rottura"
  1451. msgctxt "material_break_preparation_temperature description"
  1452. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1453. msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile."
  1454. msgctxt "material_break_retracted_position label"
  1455. msgid "Break Retracted Position"
  1456. msgstr "Posizione di retrazione per la rottura"
  1457. msgctxt "material_break_retracted_position description"
  1458. msgid "How far to retract the filament in order to break it cleanly."
  1459. msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta."
  1460. msgctxt "material_break_speed label"
  1461. msgid "Break Retraction Speed"
  1462. msgstr "Velocità di retrazione per la rottura"
  1463. msgctxt "material_break_speed description"
  1464. msgid "The speed at which to retract the filament in order to break it cleanly."
  1465. msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto."
  1466. msgctxt "material_break_temperature label"
  1467. msgid "Break Temperature"
  1468. msgstr "Temperatura di rottura"
  1469. msgctxt "material_break_temperature description"
  1470. msgid "The temperature at which the filament is broken for a clean break."
  1471. msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta."
  1472. msgctxt "material_flush_purge_speed label"
  1473. msgid "Flush Purge Speed"
  1474. msgstr "Velocità di svuotamento dello scarico"
  1475. msgctxt "material_flush_purge_speed description"
  1476. msgid "How fast to prime the material after switching to a different material."
  1477. msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso."
  1478. msgctxt "material_flush_purge_length label"
  1479. msgid "Flush Purge Length"
  1480. msgstr "Lunghezza di svuotamento dello scarico"
  1481. msgctxt "material_flush_purge_length description"
  1482. 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."
  1483. msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso."
  1484. msgctxt "material_end_of_filament_purge_speed label"
  1485. msgid "End of Filament Purge Speed"
  1486. msgstr "Velocità di svuotamento di fine filamento"
  1487. msgctxt "material_end_of_filament_purge_speed description"
  1488. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1489. msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale."
  1490. msgctxt "material_end_of_filament_purge_length label"
  1491. msgid "End of Filament Purge Length"
  1492. msgstr "Lunghezza di svuotamento di fine filamento"
  1493. msgctxt "material_end_of_filament_purge_length description"
  1494. 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."
  1495. 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."
  1496. msgctxt "material_maximum_park_duration label"
  1497. msgid "Maximum Park Duration"
  1498. msgstr "Durata di posizionamento massima"
  1499. msgctxt "material_maximum_park_duration description"
  1500. msgid "How long the material can be kept out of dry storage safely."
  1501. msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza."
  1502. msgctxt "material_no_load_move_factor label"
  1503. msgid "No Load Move Factor"
  1504. msgstr "Fattore di spostamento senza carico"
  1505. msgctxt "material_no_load_move_factor description"
  1506. 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."
  1507. 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."
  1508. msgctxt "material_flow label"
  1509. msgid "Flow"
  1510. msgstr "Flusso"
  1511. msgctxt "material_flow description"
  1512. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1513. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore."
  1514. msgctxt "wall_material_flow label"
  1515. msgid "Wall Flow"
  1516. msgstr "Flusso della parete"
  1517. msgctxt "wall_material_flow description"
  1518. msgid "Flow compensation on wall lines."
  1519. msgstr "Compensazione del flusso sulle linee perimetrali."
  1520. msgctxt "wall_0_material_flow label"
  1521. msgid "Outer Wall Flow"
  1522. msgstr "Flusso della parete esterna"
  1523. msgctxt "wall_0_material_flow description"
  1524. msgid "Flow compensation on the outermost wall line."
  1525. msgstr "Compensazione del flusso sulla linea perimetrale più esterna."
  1526. msgctxt "wall_x_material_flow label"
  1527. msgid "Inner Wall(s) Flow"
  1528. msgstr "Flusso pareti interne"
  1529. msgctxt "wall_x_material_flow description"
  1530. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1531. msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna."
  1532. msgctxt "wall_0_material_flow_roofing label"
  1533. msgid "Top Surface Outer Wall Flow"
  1534. msgstr "Flusso della parete esterna della superficie superiore"
  1535. msgctxt "wall_0_material_flow_roofing description"
  1536. msgid "Flow compensation on the top surface outermost wall line."
  1537. msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore."
  1538. msgctxt "wall_x_material_flow_roofing label"
  1539. msgid "Top Surface Inner Wall(s) Flow"
  1540. msgstr "Flusso della parete interna della superficie superiore"
  1541. msgctxt "wall_x_material_flow_roofing description"
  1542. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  1543. msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna."
  1544. msgctxt "skin_material_flow label"
  1545. msgid "Top/Bottom Flow"
  1546. msgstr "Flusso superiore/inferiore"
  1547. msgctxt "skin_material_flow description"
  1548. msgid "Flow compensation on top/bottom lines."
  1549. msgstr "Compensazione del flusso sulle linee superiore/inferiore."
  1550. msgctxt "roofing_material_flow label"
  1551. msgid "Top Surface Skin Flow"
  1552. msgstr "Flusso rivestimento esterno superficie superiore"
  1553. msgctxt "roofing_material_flow description"
  1554. msgid "Flow compensation on lines of the areas at the top of the print."
  1555. msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa."
  1556. msgctxt "infill_material_flow label"
  1557. msgid "Infill Flow"
  1558. msgstr "Flusso di riempimento"
  1559. msgctxt "infill_material_flow description"
  1560. msgid "Flow compensation on infill lines."
  1561. msgstr "Compensazione del flusso sulle linee di riempimento."
  1562. msgctxt "skirt_brim_material_flow label"
  1563. msgid "Skirt/Brim Flow"
  1564. msgstr "Flusso dello skirt/brim"
  1565. msgctxt "skirt_brim_material_flow description"
  1566. msgid "Flow compensation on skirt or brim lines."
  1567. msgstr "Compensazione del flusso sulle linee dello skirt o del brim."
  1568. msgctxt "support_material_flow label"
  1569. msgid "Support Flow"
  1570. msgstr "Flusso del supporto"
  1571. msgctxt "support_material_flow description"
  1572. msgid "Flow compensation on support structure lines."
  1573. msgstr "Compensazione del flusso sulle linee di supporto."
  1574. msgctxt "support_interface_material_flow label"
  1575. msgid "Support Interface Flow"
  1576. msgstr "Flusso interfaccia di supporto"
  1577. msgctxt "support_interface_material_flow description"
  1578. msgid "Flow compensation on lines of support roof or floor."
  1579. msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore."
  1580. msgctxt "support_roof_material_flow label"
  1581. msgid "Support Roof Flow"
  1582. msgstr "Flusso supporto superiore"
  1583. msgctxt "support_roof_material_flow description"
  1584. msgid "Flow compensation on support roof lines."
  1585. msgstr "Compensazione del flusso sulle linee di supporto superiore."
  1586. msgctxt "support_bottom_material_flow label"
  1587. msgid "Support Floor Flow"
  1588. msgstr "Flusso supporto inferiore"
  1589. msgctxt "support_bottom_material_flow description"
  1590. msgid "Flow compensation on support floor lines."
  1591. msgstr "Compensazione del flusso sulle linee di supporto inferiore."
  1592. msgctxt "prime_tower_flow label"
  1593. msgid "Prime Tower Flow"
  1594. msgstr "Flusso torre di innesco"
  1595. msgctxt "prime_tower_flow description"
  1596. msgid "Flow compensation on prime tower lines."
  1597. msgstr "Compensazione del flusso sulle linee della torre di innesco."
  1598. msgctxt "material_flow_layer_0 label"
  1599. msgid "Initial Layer Flow"
  1600. msgstr "Flusso dello strato iniziale"
  1601. msgctxt "material_flow_layer_0 description"
  1602. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1603. msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore."
  1604. msgctxt "wall_x_material_flow_layer_0 label"
  1605. msgid "Initial Layer Inner Wall Flow"
  1606. msgstr "Flusso della parete interna dello strato iniziale"
  1607. msgctxt "wall_x_material_flow_layer_0 description"
  1608. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1609. msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato"
  1610. msgctxt "wall_0_material_flow_layer_0 label"
  1611. msgid "Initial Layer Outer Wall Flow"
  1612. msgstr "Flusso della parete esterna dello strato iniziale"
  1613. msgctxt "wall_0_material_flow_layer_0 description"
  1614. msgid "Flow compensation on the outermost wall line of the first layer."
  1615. msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato."
  1616. msgctxt "skin_material_flow_layer_0 label"
  1617. msgid "Initial Layer Bottom Flow"
  1618. msgstr "Flusso inferiore dello strato iniziale"
  1619. msgctxt "skin_material_flow_layer_0 description"
  1620. msgid "Flow compensation on bottom lines of the first layer"
  1621. msgstr "Compensazione del flusso sulle linee inferiori del primo strato"
  1622. msgctxt "material_standby_temperature label"
  1623. msgid "Standby Temperature"
  1624. msgstr "Temperatura di Standby"
  1625. msgctxt "material_standby_temperature description"
  1626. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1627. msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa."
  1628. msgctxt "material_is_support_material label"
  1629. msgid "Is support material"
  1630. msgstr "È un materiale di supporto"
  1631. msgctxt "material_is_support_material description"
  1632. msgid "Is this material typically used as a support material during printing."
  1633. msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa."
  1634. msgctxt "speed label"
  1635. msgid "Speed"
  1636. msgstr "Velocità"
  1637. msgctxt "speed description"
  1638. msgid "Speed"
  1639. msgstr "Velocità"
  1640. msgctxt "speed_print label"
  1641. msgid "Print Speed"
  1642. msgstr "Velocità di stampa"
  1643. msgctxt "speed_print description"
  1644. msgid "The speed at which printing happens."
  1645. msgstr "Indica la velocità alla quale viene effettuata la stampa."
  1646. msgctxt "speed_infill label"
  1647. msgid "Infill Speed"
  1648. msgstr "Velocità di riempimento"
  1649. msgctxt "speed_infill description"
  1650. msgid "The speed at which infill is printed."
  1651. msgstr "Indica la velocità alla quale viene stampato il riempimento."
  1652. msgctxt "speed_wall label"
  1653. msgid "Wall Speed"
  1654. msgstr "Velocità di stampa della parete"
  1655. msgctxt "speed_wall description"
  1656. msgid "The speed at which the walls are printed."
  1657. msgstr "Indica la velocità alla quale vengono stampate le pareti."
  1658. msgctxt "speed_wall_0 label"
  1659. msgid "Outer Wall Speed"
  1660. msgstr "Velocità di stampa della parete esterna"
  1661. msgctxt "speed_wall_0 description"
  1662. 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."
  1663. 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à."
  1664. msgctxt "speed_wall_x label"
  1665. msgid "Inner Wall Speed"
  1666. msgstr "Velocità di stampa della parete interna"
  1667. msgctxt "speed_wall_x description"
  1668. 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."
  1669. 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."
  1670. msgctxt "speed_wall_0_roofing label"
  1671. msgid "Top Surface Outer Wall Speed"
  1672. msgstr "Velocità di stampa della parete esterna della superficie superiore"
  1673. msgctxt "speed_wall_0_roofing description"
  1674. msgid "The speed at which the top surface outermost wall is printed."
  1675. msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore."
  1676. msgctxt "speed_wall_x_roofing label"
  1677. msgid "Top Surface Inner Wall Speed"
  1678. msgstr "Velocità di stampa della parete interna della superficie superiore"
  1679. msgctxt "speed_wall_x_roofing description"
  1680. msgid "The speed at which the top surface inner walls are printed."
  1681. msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore."
  1682. msgctxt "speed_roofing label"
  1683. msgid "Top Surface Skin Speed"
  1684. msgstr "Velocità del rivestimento superficie"
  1685. msgctxt "speed_roofing description"
  1686. msgid "The speed at which top surface skin layers are printed."
  1687. msgstr "Indica la velocità di stampa degli strati superiori."
  1688. msgctxt "speed_topbottom label"
  1689. msgid "Top/Bottom Speed"
  1690. msgstr "Velocità di stampa delle parti superiore/inferiore"
  1691. msgctxt "speed_topbottom description"
  1692. msgid "The speed at which top/bottom layers are printed."
  1693. msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore."
  1694. msgctxt "speed_support label"
  1695. msgid "Support Speed"
  1696. msgstr "Velocità di stampa del supporto"
  1697. msgctxt "speed_support description"
  1698. 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."
  1699. 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."
  1700. msgctxt "speed_support_infill label"
  1701. msgid "Support Infill Speed"
  1702. msgstr "Velocità di riempimento del supporto"
  1703. msgctxt "speed_support_infill description"
  1704. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1705. msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità."
  1706. msgctxt "speed_support_interface label"
  1707. msgid "Support Interface Speed"
  1708. msgstr "Velocità interfaccia supporto"
  1709. msgctxt "speed_support_interface description"
  1710. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1711. 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."
  1712. msgctxt "speed_support_roof label"
  1713. msgid "Support Roof Speed"
  1714. msgstr "Velocità di stampa della parte superiore (tetto) del supporto"
  1715. msgctxt "speed_support_roof description"
  1716. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1717. msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo."
  1718. msgctxt "speed_support_bottom label"
  1719. msgid "Support Floor Speed"
  1720. msgstr "Velocità di stampa della parte inferiore del supporto"
  1721. msgctxt "speed_support_bottom description"
  1722. 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."
  1723. 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."
  1724. msgctxt "speed_prime_tower label"
  1725. msgid "Prime Tower Speed"
  1726. msgstr "Velocità della torre di innesco"
  1727. msgctxt "speed_prime_tower description"
  1728. 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."
  1729. 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."
  1730. msgctxt "speed_travel label"
  1731. msgid "Travel Speed"
  1732. msgstr "Velocità degli spostamenti"
  1733. msgctxt "speed_travel description"
  1734. msgid "The speed at which travel moves are made."
  1735. msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti."
  1736. msgctxt "speed_layer_0 label"
  1737. msgid "Initial Layer Speed"
  1738. msgstr "Velocità di stampa dello strato iniziale"
  1739. msgctxt "speed_layer_0 description"
  1740. 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."
  1741. 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."
  1742. msgctxt "speed_print_layer_0 label"
  1743. msgid "Initial Layer Print Speed"
  1744. msgstr "Velocità di stampa strato iniziale"
  1745. msgctxt "speed_print_layer_0 description"
  1746. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1747. msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa."
  1748. msgctxt "speed_travel_layer_0 label"
  1749. msgid "Initial Layer Travel Speed"
  1750. msgstr "Velocità di spostamento dello strato iniziale"
  1751. msgctxt "speed_travel_layer_0 description"
  1752. 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."
  1753. 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."
  1754. msgctxt "skirt_brim_speed label"
  1755. msgid "Skirt/Brim Speed"
  1756. msgstr "Velocità dello skirt/brim"
  1757. msgctxt "skirt_brim_speed description"
  1758. 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."
  1759. 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."
  1760. msgctxt "speed_z_hop label"
  1761. msgid "Z Hop Speed"
  1762. msgstr "Velocità di sollevamento Z"
  1763. msgctxt "speed_z_hop description"
  1764. 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."
  1765. 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."
  1766. msgctxt "speed_slowdown_layers label"
  1767. msgid "Number of Slower Layers"
  1768. msgstr "Numero di strati stampati a velocità inferiore"
  1769. msgctxt "speed_slowdown_layers description"
  1770. 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."
  1771. 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."
  1772. msgctxt "speed_equalize_flow_width_factor label"
  1773. msgid "Flow Equalization Ratio"
  1774. msgstr "Rapporto di equalizzazione del flusso"
  1775. msgctxt "speed_equalize_flow_width_factor description"
  1776. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  1777. msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe."
  1778. msgctxt "acceleration_enabled label"
  1779. msgid "Enable Acceleration Control"
  1780. msgstr "Abilita controllo accelerazione"
  1781. msgctxt "acceleration_enabled description"
  1782. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1783. 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."
  1784. msgctxt "acceleration_travel_enabled label"
  1785. msgid "Enable Travel Acceleration"
  1786. msgstr "Abilita l'accelerazione spostamenti"
  1787. msgctxt "acceleration_travel_enabled description"
  1788. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  1789. msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione."
  1790. msgctxt "acceleration_print label"
  1791. msgid "Print Acceleration"
  1792. msgstr "Accelerazione di stampa"
  1793. msgctxt "acceleration_print description"
  1794. msgid "The acceleration with which printing happens."
  1795. msgstr "L’accelerazione con cui avviene la stampa."
  1796. msgctxt "acceleration_infill label"
  1797. msgid "Infill Acceleration"
  1798. msgstr "Accelerazione riempimento"
  1799. msgctxt "acceleration_infill description"
  1800. msgid "The acceleration with which infill is printed."
  1801. msgstr "L’accelerazione con cui viene stampato il riempimento."
  1802. msgctxt "acceleration_wall label"
  1803. msgid "Wall Acceleration"
  1804. msgstr "Accelerazione parete"
  1805. msgctxt "acceleration_wall description"
  1806. msgid "The acceleration with which the walls are printed."
  1807. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti."
  1808. msgctxt "acceleration_wall_0 label"
  1809. msgid "Outer Wall Acceleration"
  1810. msgstr "Accelerazione parete esterna"
  1811. msgctxt "acceleration_wall_0 description"
  1812. msgid "The acceleration with which the outermost walls are printed."
  1813. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne."
  1814. msgctxt "acceleration_wall_x label"
  1815. msgid "Inner Wall Acceleration"
  1816. msgstr "Accelerazione parete interna"
  1817. msgctxt "acceleration_wall_x description"
  1818. msgid "The acceleration with which all inner walls are printed."
  1819. msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne."
  1820. msgctxt "acceleration_wall_0_roofing label"
  1821. msgid "Top Surface Outer Wall Acceleration"
  1822. msgstr "Accelerazione della parete esterna della superficie superiore"
  1823. msgctxt "acceleration_wall_0_roofing description"
  1824. msgid "The acceleration with which the top surface outermost walls are printed."
  1825. msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore."
  1826. msgctxt "acceleration_wall_x_roofing label"
  1827. msgid "Top Surface Inner Wall Acceleration"
  1828. msgstr "Accelerazione della parete interna della superficie superiore"
  1829. msgctxt "acceleration_wall_x_roofing description"
  1830. msgid "The acceleration with which the top surface inner walls are printed."
  1831. msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore."
  1832. msgctxt "acceleration_roofing label"
  1833. msgid "Top Surface Skin Acceleration"
  1834. msgstr "Accelerazione del rivestimento superficie superiore"
  1835. msgctxt "acceleration_roofing description"
  1836. msgid "The acceleration with which top surface skin layers are printed."
  1837. msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore."
  1838. msgctxt "acceleration_topbottom label"
  1839. msgid "Top/Bottom Acceleration"
  1840. msgstr "Accelerazione strato superiore/inferiore"
  1841. msgctxt "acceleration_topbottom description"
  1842. msgid "The acceleration with which top/bottom layers are printed."
  1843. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore."
  1844. msgctxt "acceleration_support label"
  1845. msgid "Support Acceleration"
  1846. msgstr "Accelerazione supporto"
  1847. msgctxt "acceleration_support description"
  1848. msgid "The acceleration with which the support structure is printed."
  1849. msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto."
  1850. msgctxt "acceleration_support_infill label"
  1851. msgid "Support Infill Acceleration"
  1852. msgstr "Accelerazione riempimento supporto"
  1853. msgctxt "acceleration_support_infill description"
  1854. msgid "The acceleration with which the infill of support is printed."
  1855. msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto."
  1856. msgctxt "acceleration_support_interface label"
  1857. msgid "Support Interface Acceleration"
  1858. msgstr "Accelerazione interfaccia supporto"
  1859. msgctxt "acceleration_support_interface description"
  1860. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1861. 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."
  1862. msgctxt "acceleration_support_roof label"
  1863. msgid "Support Roof Acceleration"
  1864. msgstr "Accelerazione parte superiore del supporto"
  1865. msgctxt "acceleration_support_roof description"
  1866. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1867. msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo."
  1868. msgctxt "acceleration_support_bottom label"
  1869. msgid "Support Floor Acceleration"
  1870. msgstr "Accelerazione parte inferiore del supporto"
  1871. msgctxt "acceleration_support_bottom description"
  1872. 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."
  1873. 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."
  1874. msgctxt "acceleration_prime_tower label"
  1875. msgid "Prime Tower Acceleration"
  1876. msgstr "Accelerazione della torre di innesco"
  1877. msgctxt "acceleration_prime_tower description"
  1878. msgid "The acceleration with which the prime tower is printed."
  1879. msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco."
  1880. msgctxt "acceleration_travel label"
  1881. msgid "Travel Acceleration"
  1882. msgstr "Accelerazione spostamenti"
  1883. msgctxt "acceleration_travel description"
  1884. msgid "The acceleration with which travel moves are made."
  1885. msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti."
  1886. msgctxt "acceleration_layer_0 label"
  1887. msgid "Initial Layer Acceleration"
  1888. msgstr "Accelerazione dello strato iniziale"
  1889. msgctxt "acceleration_layer_0 description"
  1890. msgid "The acceleration for the initial layer."
  1891. msgstr "Indica l’accelerazione dello strato iniziale."
  1892. msgctxt "acceleration_print_layer_0 label"
  1893. msgid "Initial Layer Print Acceleration"
  1894. msgstr "Accelerazione di stampa strato iniziale"
  1895. msgctxt "acceleration_print_layer_0 description"
  1896. msgid "The acceleration during the printing of the initial layer."
  1897. msgstr "Indica l’accelerazione durante la stampa dello strato iniziale."
  1898. msgctxt "acceleration_travel_layer_0 label"
  1899. msgid "Initial Layer Travel Acceleration"
  1900. msgstr "Accelerazione spostamenti dello strato iniziale"
  1901. msgctxt "acceleration_travel_layer_0 description"
  1902. msgid "The acceleration for travel moves in the initial layer."
  1903. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  1904. msgctxt "acceleration_skirt_brim label"
  1905. msgid "Skirt/Brim Acceleration"
  1906. msgstr "Accelerazione skirt/brim"
  1907. msgctxt "acceleration_skirt_brim description"
  1908. 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."
  1909. 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."
  1910. msgctxt "jerk_enabled label"
  1911. msgid "Enable Jerk Control"
  1912. msgstr "Abilita controllo jerk"
  1913. msgctxt "jerk_enabled description"
  1914. 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."
  1915. 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."
  1916. msgctxt "jerk_travel_enabled label"
  1917. msgid "Enable Travel Jerk"
  1918. msgstr "Abilita jerk spostamenti"
  1919. msgctxt "jerk_travel_enabled description"
  1920. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  1921. msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione."
  1922. msgctxt "jerk_print label"
  1923. msgid "Print Jerk"
  1924. msgstr "Jerk stampa"
  1925. msgctxt "jerk_print description"
  1926. msgid "The maximum instantaneous velocity change of the print head."
  1927. msgstr "Indica il cambio della velocità istantanea massima della testina di stampa."
  1928. msgctxt "jerk_infill label"
  1929. msgid "Infill Jerk"
  1930. msgstr "Jerk riempimento"
  1931. msgctxt "jerk_infill description"
  1932. msgid "The maximum instantaneous velocity change with which infill is printed."
  1933. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento."
  1934. msgctxt "jerk_wall label"
  1935. msgid "Wall Jerk"
  1936. msgstr "Jerk parete"
  1937. msgctxt "jerk_wall description"
  1938. msgid "The maximum instantaneous velocity change with which the walls are printed."
  1939. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti."
  1940. msgctxt "jerk_wall_0 label"
  1941. msgid "Outer Wall Jerk"
  1942. msgstr "Jerk parete esterna"
  1943. msgctxt "jerk_wall_0 description"
  1944. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  1945. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne."
  1946. msgctxt "jerk_wall_x label"
  1947. msgid "Inner Wall Jerk"
  1948. msgstr "Jerk parete interna"
  1949. msgctxt "jerk_wall_x description"
  1950. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  1951. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne."
  1952. msgctxt "jerk_wall_0_roofing label"
  1953. msgid "Top Surface Outer Wall Jerk"
  1954. msgstr "Jerk parete interna della superficie superiore"
  1955. msgctxt "jerk_wall_0_roofing description"
  1956. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  1957. msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore."
  1958. msgctxt "jerk_wall_x_roofing label"
  1959. msgid "Top Surface Inner Wall Jerk"
  1960. msgstr "Jerk parete esterna della superficie superiore"
  1961. msgctxt "jerk_wall_x_roofing description"
  1962. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  1963. msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore."
  1964. msgctxt "jerk_roofing label"
  1965. msgid "Top Surface Skin Jerk"
  1966. msgstr "Jerk del rivestimento superficie superiore"
  1967. msgctxt "jerk_roofing description"
  1968. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  1969. msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore."
  1970. msgctxt "jerk_topbottom label"
  1971. msgid "Top/Bottom Jerk"
  1972. msgstr "Jerk strato superiore/inferiore"
  1973. msgctxt "jerk_topbottom description"
  1974. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  1975. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore."
  1976. msgctxt "jerk_support label"
  1977. msgid "Support Jerk"
  1978. msgstr "Jerk supporto"
  1979. msgctxt "jerk_support description"
  1980. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  1981. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto."
  1982. msgctxt "jerk_support_infill label"
  1983. msgid "Support Infill Jerk"
  1984. msgstr "Jerk riempimento supporto"
  1985. msgctxt "jerk_support_infill description"
  1986. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  1987. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto."
  1988. msgctxt "jerk_support_interface label"
  1989. msgid "Support Interface Jerk"
  1990. msgstr "Jerk interfaccia supporto"
  1991. msgctxt "jerk_support_interface description"
  1992. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  1993. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori."
  1994. msgctxt "jerk_support_roof label"
  1995. msgid "Support Roof Jerk"
  1996. msgstr "Jerk parte superiore del supporto"
  1997. msgctxt "jerk_support_roof description"
  1998. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  1999. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori."
  2000. msgctxt "jerk_support_bottom label"
  2001. msgid "Support Floor Jerk"
  2002. msgstr "Jerk parte inferiore del supporto"
  2003. msgctxt "jerk_support_bottom description"
  2004. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2005. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori."
  2006. msgctxt "jerk_prime_tower label"
  2007. msgid "Prime Tower Jerk"
  2008. msgstr "Jerk della torre di innesco"
  2009. msgctxt "jerk_prime_tower description"
  2010. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2011. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto."
  2012. msgctxt "jerk_travel label"
  2013. msgid "Travel Jerk"
  2014. msgstr "Jerk spostamenti"
  2015. msgctxt "jerk_travel description"
  2016. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2017. msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti."
  2018. msgctxt "jerk_layer_0 label"
  2019. msgid "Initial Layer Jerk"
  2020. msgstr "Jerk dello strato iniziale"
  2021. msgctxt "jerk_layer_0 description"
  2022. msgid "The print maximum instantaneous velocity change for the initial layer."
  2023. msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale."
  2024. msgctxt "jerk_print_layer_0 label"
  2025. msgid "Initial Layer Print Jerk"
  2026. msgstr "Jerk di stampa strato iniziale"
  2027. msgctxt "jerk_print_layer_0 description"
  2028. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2029. msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale."
  2030. msgctxt "jerk_travel_layer_0 label"
  2031. msgid "Initial Layer Travel Jerk"
  2032. msgstr "Jerk spostamenti dello strato iniziale"
  2033. msgctxt "jerk_travel_layer_0 description"
  2034. msgid "The acceleration for travel moves in the initial layer."
  2035. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  2036. msgctxt "jerk_skirt_brim label"
  2037. msgid "Skirt/Brim Jerk"
  2038. msgstr "Jerk dello skirt/brim"
  2039. msgctxt "jerk_skirt_brim description"
  2040. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2041. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim."
  2042. msgctxt "travel label"
  2043. msgid "Travel"
  2044. msgstr "Spostamenti"
  2045. msgctxt "travel description"
  2046. msgid "travel"
  2047. msgstr "spostamenti"
  2048. msgctxt "retraction_enable label"
  2049. msgid "Enable Retraction"
  2050. msgstr "Abilitazione della retrazione"
  2051. msgctxt "retraction_enable description"
  2052. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2053. msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata."
  2054. msgctxt "retract_at_layer_change label"
  2055. msgid "Retract at Layer Change"
  2056. msgstr "Retrazione al cambio strato"
  2057. msgctxt "retract_at_layer_change description"
  2058. msgid "Retract the filament when the nozzle is moving to the next layer."
  2059. msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo."
  2060. msgctxt "retraction_amount label"
  2061. msgid "Retraction Distance"
  2062. msgstr "Distanza di retrazione"
  2063. msgctxt "retraction_amount description"
  2064. msgid "The length of material retracted during a retraction move."
  2065. msgstr "La lunghezza del materiale retratto durante il movimento di retrazione."
  2066. msgctxt "retraction_speed label"
  2067. msgid "Retraction Speed"
  2068. msgstr "Velocità di retrazione"
  2069. msgctxt "retraction_speed description"
  2070. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2071. msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione."
  2072. msgctxt "retraction_retract_speed label"
  2073. msgid "Retraction Retract Speed"
  2074. msgstr "Velocità di retrazione"
  2075. msgctxt "retraction_retract_speed description"
  2076. msgid "The speed at which the filament is retracted during a retraction move."
  2077. msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione."
  2078. msgctxt "retraction_prime_speed label"
  2079. msgid "Retraction Prime Speed"
  2080. msgstr "Velocità di innesco dopo la retrazione"
  2081. msgctxt "retraction_prime_speed description"
  2082. msgid "The speed at which the filament is primed during a retraction move."
  2083. msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione."
  2084. msgctxt "retraction_extra_prime_amount label"
  2085. msgid "Retraction Extra Prime Amount"
  2086. msgstr "Entità di innesco supplementare dopo la retrazione"
  2087. msgctxt "retraction_extra_prime_amount description"
  2088. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2089. msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento."
  2090. msgctxt "retraction_min_travel label"
  2091. msgid "Retraction Minimum Travel"
  2092. msgstr "Distanza minima di retrazione"
  2093. msgctxt "retraction_min_travel description"
  2094. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2095. msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree."
  2096. msgctxt "retraction_count_max label"
  2097. msgid "Maximum Retraction Count"
  2098. msgstr "Numero massimo di retrazioni"
  2099. msgctxt "retraction_count_max description"
  2100. 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."
  2101. 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."
  2102. msgctxt "retraction_extrusion_window label"
  2103. msgid "Minimum Extrusion Distance Window"
  2104. msgstr "Finestra di minima distanza di estrusione"
  2105. msgctxt "retraction_extrusion_window description"
  2106. 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."
  2107. 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."
  2108. msgctxt "retraction_combing label"
  2109. msgid "Combing Mode"
  2110. msgstr "Modalità Combing"
  2111. msgctxt "retraction_combing description"
  2112. 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."
  2113. 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."
  2114. msgctxt "retraction_combing option off"
  2115. msgid "Off"
  2116. msgstr "Disinserita"
  2117. msgctxt "retraction_combing option all"
  2118. msgid "All"
  2119. msgstr "Tutto"
  2120. msgctxt "retraction_combing option no_outer_surfaces"
  2121. msgid "Not on Outer Surface"
  2122. msgstr "Non su superficie esterna"
  2123. msgctxt "retraction_combing option noskin"
  2124. msgid "Not in Skin"
  2125. msgstr "Non nel rivestimento"
  2126. msgctxt "retraction_combing option infill"
  2127. msgid "Within Infill"
  2128. msgstr "Nel riempimento"
  2129. msgctxt "retraction_combing_max_distance label"
  2130. msgid "Max Comb Distance With No Retract"
  2131. msgstr "Massima distanza di combing senza retrazione"
  2132. msgctxt "retraction_combing_max_distance description"
  2133. 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."
  2134. 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."
  2135. msgctxt "travel_retract_before_outer_wall label"
  2136. msgid "Retract Before Outer Wall"
  2137. msgstr "Retrazione prima della parete esterna"
  2138. msgctxt "travel_retract_before_outer_wall description"
  2139. msgid "Always retract when moving to start an outer wall."
  2140. msgstr "Arretra sempre quando si sposta per iniziare una parete esterna."
  2141. msgctxt "travel_avoid_other_parts label"
  2142. msgid "Avoid Printed Parts When Traveling"
  2143. msgstr "Aggiramento delle parti stampate durante gli spostamenti"
  2144. msgctxt "travel_avoid_other_parts description"
  2145. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2146. msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing."
  2147. msgctxt "travel_avoid_supports label"
  2148. msgid "Avoid Supports When Traveling"
  2149. msgstr "Aggiramento dei supporti durante gli spostamenti"
  2150. msgctxt "travel_avoid_supports description"
  2151. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2152. msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing."
  2153. msgctxt "travel_avoid_distance label"
  2154. msgid "Travel Avoid Distance"
  2155. msgstr "Distanza di aggiramento durante gli spostamenti"
  2156. msgctxt "travel_avoid_distance description"
  2157. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2158. msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento."
  2159. msgctxt "layer_start_x label"
  2160. msgid "Layer Start X"
  2161. msgstr "Avvio strato X"
  2162. msgctxt "layer_start_x description"
  2163. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2164. msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2165. msgctxt "layer_start_y label"
  2166. msgid "Layer Start Y"
  2167. msgstr "Avvio strato Y"
  2168. msgctxt "layer_start_y description"
  2169. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2170. msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2171. msgctxt "retraction_hop_enabled label"
  2172. msgid "Z Hop When Retracted"
  2173. msgstr "Z Hop durante la retrazione"
  2174. msgctxt "retraction_hop_enabled description"
  2175. 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."
  2176. 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."
  2177. msgctxt "retraction_hop_only_when_collides label"
  2178. msgid "Z Hop Only Over Printed Parts"
  2179. msgstr "Z Hop solo su parti stampate"
  2180. msgctxt "retraction_hop_only_when_collides description"
  2181. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2182. 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."
  2183. msgctxt "retraction_hop label"
  2184. msgid "Z Hop Height"
  2185. msgstr "Altezza Z Hop"
  2186. msgctxt "retraction_hop description"
  2187. msgid "The height difference when performing a Z Hop."
  2188. msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop."
  2189. msgctxt "retraction_hop_after_extruder_switch label"
  2190. msgid "Z Hop After Extruder Switch"
  2191. msgstr "Z Hop dopo cambio estrusore"
  2192. msgctxt "retraction_hop_after_extruder_switch description"
  2193. 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."
  2194. 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."
  2195. msgctxt "retraction_hop_after_extruder_switch_height label"
  2196. msgid "Z Hop After Extruder Switch Height"
  2197. msgstr "Z Hop dopo cambio altezza estrusore"
  2198. msgctxt "retraction_hop_after_extruder_switch_height description"
  2199. msgid "The height difference when performing a Z Hop after extruder switch."
  2200. msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore."
  2201. msgctxt "cooling label"
  2202. msgid "Cooling"
  2203. msgstr "Raffreddamento"
  2204. msgctxt "cooling description"
  2205. msgid "Cooling"
  2206. msgstr "Raffreddamento"
  2207. msgctxt "cool_fan_enabled label"
  2208. msgid "Enable Print Cooling"
  2209. msgstr "Abilitazione raffreddamento stampa"
  2210. msgctxt "cool_fan_enabled description"
  2211. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2212. 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."
  2213. msgctxt "cool_fan_speed label"
  2214. msgid "Fan Speed"
  2215. msgstr "Velocità della ventola"
  2216. msgctxt "cool_fan_speed description"
  2217. msgid "The speed at which the print cooling fans spin."
  2218. msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa."
  2219. msgctxt "cool_fan_speed_min label"
  2220. msgid "Regular Fan Speed"
  2221. msgstr "Velocità regolare della ventola"
  2222. msgctxt "cool_fan_speed_min description"
  2223. 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."
  2224. 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."
  2225. msgctxt "cool_fan_speed_max label"
  2226. msgid "Maximum Fan Speed"
  2227. msgstr "Velocità massima della ventola"
  2228. msgctxt "cool_fan_speed_max description"
  2229. 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."
  2230. 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."
  2231. msgctxt "cool_min_layer_time_fan_speed_max label"
  2232. msgid "Regular/Maximum Fan Speed Threshold"
  2233. msgstr "Soglia velocità regolare/massima della ventola"
  2234. msgctxt "cool_min_layer_time_fan_speed_max description"
  2235. 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."
  2236. 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."
  2237. msgctxt "cool_fan_speed_0 label"
  2238. msgid "Initial Fan Speed"
  2239. msgstr "Velocità iniziale della ventola"
  2240. msgctxt "cool_fan_speed_0 description"
  2241. 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."
  2242. 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."
  2243. msgctxt "cool_fan_full_at_height label"
  2244. msgid "Regular Fan Speed at Height"
  2245. msgstr "Velocità regolare della ventola in altezza"
  2246. msgctxt "cool_fan_full_at_height description"
  2247. 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."
  2248. 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."
  2249. msgctxt "cool_fan_full_layer label"
  2250. msgid "Regular Fan Speed at Layer"
  2251. msgstr "Velocità regolare della ventola in corrispondenza dello strato"
  2252. msgctxt "cool_fan_full_layer description"
  2253. 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."
  2254. 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."
  2255. msgctxt "cool_min_layer_time label"
  2256. msgid "Minimum Layer Time"
  2257. msgstr "Tempo minimo per strato"
  2258. msgctxt "cool_min_layer_time description"
  2259. 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."
  2260. 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."
  2261. msgctxt "cool_min_speed label"
  2262. msgid "Minimum Speed"
  2263. msgstr "Velocità minima"
  2264. msgctxt "cool_min_speed description"
  2265. 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."
  2266. 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."
  2267. msgctxt "cool_lift_head label"
  2268. msgid "Lift Head"
  2269. msgstr "Sollevamento della testina"
  2270. msgctxt "cool_lift_head description"
  2271. 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."
  2272. 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."
  2273. msgctxt "cool_min_temperature label"
  2274. msgid "Small Layer Printing Temperature"
  2275. msgstr "Temperatura di stampa per piccoli strati"
  2276. msgctxt "cool_min_temperature description"
  2277. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  2278. msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo."
  2279. msgctxt "support label"
  2280. msgid "Support"
  2281. msgstr "Supporto"
  2282. msgctxt "support description"
  2283. msgid "Support"
  2284. msgstr "Supporto"
  2285. msgctxt "support_enable label"
  2286. msgid "Generate Support"
  2287. msgstr "Generazione supporto"
  2288. msgctxt "support_enable description"
  2289. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2290. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  2291. msgctxt "support_extruder_nr label"
  2292. msgid "Support Extruder"
  2293. msgstr "Estrusore del supporto"
  2294. msgctxt "support_extruder_nr description"
  2295. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2296. msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla."
  2297. msgctxt "support_infill_extruder_nr label"
  2298. msgid "Support Infill Extruder"
  2299. msgstr "Estrusore riempimento del supporto"
  2300. msgctxt "support_infill_extruder_nr description"
  2301. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2302. msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2303. msgctxt "support_extruder_nr_layer_0 label"
  2304. msgid "First Layer Support Extruder"
  2305. msgstr "Estrusore del supporto primo strato"
  2306. msgctxt "support_extruder_nr_layer_0 description"
  2307. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2308. msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2309. msgctxt "support_interface_extruder_nr label"
  2310. msgid "Support Interface Extruder"
  2311. msgstr "Estrusore interfaccia del supporto"
  2312. msgctxt "support_interface_extruder_nr description"
  2313. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2314. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla."
  2315. msgctxt "support_roof_extruder_nr label"
  2316. msgid "Support Roof Extruder"
  2317. msgstr "Estrusore parte superiore del supporto"
  2318. msgctxt "support_roof_extruder_nr description"
  2319. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2320. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla."
  2321. msgctxt "support_bottom_extruder_nr label"
  2322. msgid "Support Floor Extruder"
  2323. msgstr "Estrusore parte inferiore del supporto"
  2324. msgctxt "support_bottom_extruder_nr description"
  2325. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2326. msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla."
  2327. msgctxt "support_structure label"
  2328. msgid "Support Structure"
  2329. msgstr "Struttura di supporto"
  2330. msgctxt "support_structure description"
  2331. 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."
  2332. 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."
  2333. msgctxt "support_structure option normal"
  2334. msgid "Normal"
  2335. msgstr "Normale"
  2336. msgctxt "support_structure option tree"
  2337. msgid "Tree"
  2338. msgstr "Albero"
  2339. msgctxt "support_tree_angle label"
  2340. msgid "Maximum Branch Angle"
  2341. msgstr "Angolo massimo dei rami"
  2342. msgctxt "support_tree_angle description"
  2343. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  2344. msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore."
  2345. msgctxt "support_tree_branch_diameter label"
  2346. msgid "Branch Diameter"
  2347. msgstr "Diametro del ramo"
  2348. msgctxt "support_tree_branch_diameter description"
  2349. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2350. msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore."
  2351. msgctxt "support_tree_max_diameter label"
  2352. msgid "Trunk Diameter"
  2353. msgstr "Diametro del tronco"
  2354. msgctxt "support_tree_max_diameter description"
  2355. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  2356. msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa."
  2357. msgctxt "support_tree_branch_diameter_angle label"
  2358. msgid "Branch Diameter Angle"
  2359. msgstr "Angolo del diametro del ramo"
  2360. msgctxt "support_tree_branch_diameter_angle description"
  2361. 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."
  2362. 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."
  2363. msgctxt "support_type label"
  2364. msgid "Support Placement"
  2365. msgstr "Posizionamento supporto"
  2366. msgctxt "support_type option buildplate"
  2367. msgid "Touching Buildplate"
  2368. msgstr "Contatto con il Piano di Stampa"
  2369. msgctxt "support_type option everywhere"
  2370. msgid "Everywhere"
  2371. msgstr "In Tutti i Possibili Punti"
  2372. msgctxt "support_tree_angle_slow label"
  2373. msgid "Preferred Branch Angle"
  2374. msgstr "Angolo dei rami preferito"
  2375. msgctxt "support_tree_angle_slow description"
  2376. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  2377. msgstr "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami."
  2378. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  2379. msgid "Diameter Increase To Model"
  2380. msgstr "Aumento del diametro sul modello"
  2381. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  2382. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  2383. msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello"
  2384. msgctxt "support_tree_min_height_to_model label"
  2385. msgid "Minimum Height To Model"
  2386. msgstr "Altezza minima rispetto al modello"
  2387. msgctxt "support_tree_min_height_to_model description"
  2388. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  2389. msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto."
  2390. msgctxt "support_tree_bp_diameter label"
  2391. msgid "Initial Layer Diameter"
  2392. msgstr "Diametro dello strato iniziale"
  2393. msgctxt "support_tree_bp_diameter description"
  2394. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  2395. msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano."
  2396. msgctxt "support_tree_top_rate label"
  2397. msgid "Branch Density"
  2398. msgstr "Densità del ramo"
  2399. msgctxt "support_tree_top_rate description"
  2400. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  2401. msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore."
  2402. msgctxt "support_tree_tip_diameter label"
  2403. msgid "Tip Diameter"
  2404. msgstr "Diametro della punta"
  2405. msgctxt "support_tree_tip_diameter description"
  2406. msgid "The diameter of the top of the tip of the branches of tree support."
  2407. msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto."
  2408. msgctxt "support_tree_limit_branch_reach label"
  2409. msgid "Limit Branch Reach"
  2410. msgstr "Limite di portata dei rami"
  2411. msgctxt "support_tree_limit_branch_reach description"
  2412. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  2413. msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)"
  2414. msgctxt "support_tree_branch_reach_limit label"
  2415. msgid "Optimal Branch Range"
  2416. msgstr "Intervallo ottimale dei rami"
  2417. msgctxt "support_tree_branch_reach_limit description"
  2418. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  2419. msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)"
  2420. msgctxt "support_tree_rest_preference label"
  2421. msgid "Rest Preference"
  2422. msgstr "Preferenza di appoggio"
  2423. msgctxt "support_tree_rest_preference description"
  2424. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  2425. msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello."
  2426. msgctxt "support_tree_rest_preference option buildplate"
  2427. msgid "On buildplate when possible"
  2428. msgstr "Sul piano di stampa, quando possibile"
  2429. msgctxt "support_tree_rest_preference option graceful"
  2430. msgid "On model if required"
  2431. msgstr "Sul modello, se necessario"
  2432. msgctxt "support_angle label"
  2433. msgid "Support Overhang Angle"
  2434. msgstr "Angolo di sbalzo del supporto"
  2435. msgctxt "support_angle description"
  2436. 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."
  2437. 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."
  2438. msgctxt "support_pattern label"
  2439. msgid "Support Pattern"
  2440. msgstr "Configurazione del supporto"
  2441. msgctxt "support_pattern description"
  2442. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2443. msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere."
  2444. msgctxt "support_pattern option lines"
  2445. msgid "Lines"
  2446. msgstr "Linee"
  2447. msgctxt "support_pattern option grid"
  2448. msgid "Grid"
  2449. msgstr "Griglia"
  2450. msgctxt "support_pattern option triangles"
  2451. msgid "Triangles"
  2452. msgstr "Triangoli"
  2453. msgctxt "support_pattern option concentric"
  2454. msgid "Concentric"
  2455. msgstr "Concentriche"
  2456. msgctxt "support_pattern option zigzag"
  2457. msgid "Zig Zag"
  2458. msgstr "Zig Zag"
  2459. msgctxt "support_pattern option cross"
  2460. msgid "Cross"
  2461. msgstr "Incrociata"
  2462. msgctxt "support_pattern option gyroid"
  2463. msgid "Gyroid"
  2464. msgstr "Gyroid"
  2465. msgctxt "support_wall_count label"
  2466. msgid "Support Wall Line Count"
  2467. msgstr "Numero delle linee perimetrali supporto"
  2468. msgctxt "support_wall_count description"
  2469. 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."
  2470. 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."
  2471. msgctxt "support_interface_wall_count label"
  2472. msgid "Support Interface Wall Line Count"
  2473. msgstr "Numero delle linee perimetrali dell'interfaccia di supporto"
  2474. msgctxt "support_interface_wall_count description"
  2475. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2476. msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
  2477. msgctxt "support_roof_wall_count label"
  2478. msgid "Support Roof Wall Line Count"
  2479. msgstr "Numero delle linee perimetrali del tetto di supporto"
  2480. msgctxt "support_roof_wall_count description"
  2481. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2482. msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
  2483. msgctxt "support_bottom_wall_count label"
  2484. msgid "Support Bottom Wall Line Count"
  2485. msgstr "Numero delle linee perimetrali inferiori di supporto"
  2486. msgctxt "support_bottom_wall_count description"
  2487. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2488. msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato."
  2489. msgctxt "zig_zaggify_support label"
  2490. msgid "Connect Support Lines"
  2491. msgstr "Collegamento linee supporto"
  2492. msgctxt "zig_zaggify_support description"
  2493. 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."
  2494. 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."
  2495. msgctxt "support_connect_zigzags label"
  2496. msgid "Connect Support ZigZags"
  2497. msgstr "Collegamento Zig Zag supporto"
  2498. msgctxt "support_connect_zigzags description"
  2499. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2500. msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag."
  2501. msgctxt "support_infill_rate label"
  2502. msgid "Support Density"
  2503. msgstr "Densità del supporto"
  2504. msgctxt "support_infill_rate description"
  2505. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2506. msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  2507. msgctxt "support_line_distance label"
  2508. msgid "Support Line Distance"
  2509. msgstr "Distanza tra le linee del supporto"
  2510. msgctxt "support_line_distance description"
  2511. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2512. msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto."
  2513. msgctxt "support_initial_layer_line_distance label"
  2514. msgid "Initial Layer Support Line Distance"
  2515. msgstr "Distanza tra le linee del supporto dello strato iniziale"
  2516. msgctxt "support_initial_layer_line_distance description"
  2517. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2518. msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto."
  2519. msgctxt "support_infill_angles label"
  2520. msgid "Support Infill Line Directions"
  2521. msgstr "Direzione delle linee di riempimento supporto"
  2522. msgctxt "support_infill_angles description"
  2523. 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."
  2524. 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."
  2525. msgctxt "support_brim_enable label"
  2526. msgid "Enable Support Brim"
  2527. msgstr "Abilitazione brim del supporto"
  2528. msgctxt "support_brim_enable description"
  2529. 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."
  2530. 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."
  2531. msgctxt "support_brim_width label"
  2532. msgid "Support Brim Width"
  2533. msgstr "Larghezza del brim del supporto"
  2534. msgctxt "support_brim_width description"
  2535. 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."
  2536. 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."
  2537. msgctxt "support_brim_line_count label"
  2538. msgid "Support Brim Line Count"
  2539. msgstr "Numero di linee del brim del supporto"
  2540. msgctxt "support_brim_line_count description"
  2541. 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."
  2542. 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."
  2543. msgctxt "support_z_distance label"
  2544. msgid "Support Z Distance"
  2545. msgstr "Distanza Z supporto"
  2546. msgctxt "support_z_distance description"
  2547. 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. The topmost support layer below the model might be a fraction of regular layers."
  2548. msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari."
  2549. msgctxt "support_top_distance label"
  2550. msgid "Support Top Distance"
  2551. msgstr "Distanza superiore supporto"
  2552. msgctxt "support_top_distance description"
  2553. msgid "Distance from the top of the support to the print."
  2554. msgstr "È la distanza tra la parte superiore del supporto e la stampa."
  2555. msgctxt "support_bottom_distance label"
  2556. msgid "Support Bottom Distance"
  2557. msgstr "Distanza inferiore supporto"
  2558. msgctxt "support_bottom_distance description"
  2559. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  2560. msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo."
  2561. msgctxt "support_xy_distance label"
  2562. msgid "Support X/Y Distance"
  2563. msgstr "Distanza X/Y supporto"
  2564. msgctxt "support_xy_distance description"
  2565. msgid "Distance of the support structure from the print in the X/Y directions."
  2566. msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y."
  2567. msgctxt "support_xy_overrides_z label"
  2568. msgid "Support Distance Priority"
  2569. msgstr "Priorità distanza supporto"
  2570. msgctxt "support_xy_overrides_z description"
  2571. 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."
  2572. 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."
  2573. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2574. msgid "X/Y overrides Z"
  2575. msgstr "X/Y esclude Z"
  2576. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2577. msgid "Z overrides X/Y"
  2578. msgstr "Z esclude X/Y"
  2579. msgctxt "support_xy_distance_overhang label"
  2580. msgid "Minimum Support X/Y Distance"
  2581. msgstr "Distanza X/Y supporto minima"
  2582. msgctxt "support_xy_distance_overhang description"
  2583. msgid "Distance of the support structure from the overhang in the X/Y directions."
  2584. msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y."
  2585. msgctxt "support_bottom_stair_step_height label"
  2586. msgid "Support Stair Step Height"
  2587. msgstr "Altezza gradini supporto"
  2588. msgctxt "support_bottom_stair_step_height description"
  2589. 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."
  2590. 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."
  2591. msgctxt "support_bottom_stair_step_width label"
  2592. msgid "Support Stair Step Maximum Width"
  2593. msgstr "Larghezza massima gradino supporto"
  2594. msgctxt "support_bottom_stair_step_width description"
  2595. 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."
  2596. 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."
  2597. msgctxt "support_bottom_stair_step_min_slope label"
  2598. msgid "Support Stair Step Minimum Slope Angle"
  2599. msgstr "Angolo di pendenza minimo gradini supporto"
  2600. msgctxt "support_bottom_stair_step_min_slope description"
  2601. 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."
  2602. 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."
  2603. msgctxt "support_join_distance label"
  2604. msgid "Support Join Distance"
  2605. msgstr "Distanza giunzione supporto"
  2606. msgctxt "support_join_distance description"
  2607. 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."
  2608. 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."
  2609. msgctxt "support_offset label"
  2610. msgid "Support Horizontal Expansion"
  2611. msgstr "Espansione orizzontale supporto"
  2612. msgctxt "support_offset description"
  2613. 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."
  2614. 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."
  2615. msgctxt "support_infill_sparse_thickness label"
  2616. msgid "Support Infill Layer Thickness"
  2617. msgstr "Spessore dello strato di riempimento di supporto"
  2618. msgctxt "support_infill_sparse_thickness description"
  2619. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2620. 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."
  2621. msgctxt "gradual_support_infill_steps label"
  2622. msgid "Gradual Support Infill Steps"
  2623. msgstr "Fasi di riempimento graduale del supporto"
  2624. msgctxt "gradual_support_infill_steps description"
  2625. 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."
  2626. 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."
  2627. msgctxt "gradual_support_infill_step_height label"
  2628. msgid "Gradual Support Infill Step Height"
  2629. msgstr "Altezza fasi di riempimento graduale del supporto"
  2630. msgctxt "gradual_support_infill_step_height description"
  2631. msgid "The height of support infill of a given density before switching to half the density."
  2632. msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità."
  2633. msgctxt "minimum_support_area label"
  2634. msgid "Minimum Support Area"
  2635. msgstr "Area minima supporto"
  2636. msgctxt "minimum_support_area description"
  2637. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2638. msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati."
  2639. msgctxt "support_interface_enable label"
  2640. msgid "Enable Support Interface"
  2641. msgstr "Abilitazione interfaccia supporto"
  2642. msgctxt "support_interface_enable description"
  2643. 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."
  2644. 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."
  2645. msgctxt "support_roof_enable label"
  2646. msgid "Enable Support Roof"
  2647. msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto"
  2648. msgctxt "support_roof_enable description"
  2649. 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."
  2650. msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  2651. msgctxt "support_bottom_enable label"
  2652. msgid "Enable Support Floor"
  2653. msgstr "Abilitazione parte inferiore supporto"
  2654. msgctxt "support_bottom_enable description"
  2655. 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."
  2656. msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  2657. msgctxt "support_interface_height label"
  2658. msgid "Support Interface Thickness"
  2659. msgstr "Spessore interfaccia supporto"
  2660. msgctxt "support_interface_height description"
  2661. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2662. msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore."
  2663. msgctxt "support_roof_height label"
  2664. msgid "Support Roof Thickness"
  2665. msgstr "Spessore parte superiore (tetto) del supporto"
  2666. msgctxt "support_roof_height description"
  2667. 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."
  2668. msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello."
  2669. msgctxt "support_bottom_height label"
  2670. msgid "Support Floor Thickness"
  2671. msgstr "Spessore parte inferiore del supporto"
  2672. msgctxt "support_bottom_height description"
  2673. 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."
  2674. 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."
  2675. msgctxt "support_interface_density label"
  2676. msgid "Support Interface Density"
  2677. msgstr "Densità interfaccia supporto"
  2678. msgctxt "support_interface_density description"
  2679. 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."
  2680. 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."
  2681. msgctxt "support_roof_density label"
  2682. msgid "Support Roof Density"
  2683. msgstr "Densità parte superiore (tetto) del supporto"
  2684. msgctxt "support_roof_density description"
  2685. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2686. msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  2687. msgctxt "support_roof_line_distance label"
  2688. msgid "Support Roof Line Distance"
  2689. msgstr "Distanza tra le linee della parte superiore (tetto) del supporto"
  2690. msgctxt "support_roof_line_distance description"
  2691. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2692. 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."
  2693. msgctxt "support_bottom_density label"
  2694. msgid "Support Floor Density"
  2695. msgstr "Densità parte inferiore del supporto"
  2696. msgctxt "support_bottom_density description"
  2697. 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."
  2698. msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello."
  2699. msgctxt "support_bottom_line_distance label"
  2700. msgid "Support Floor Line Distance"
  2701. msgstr "Distanza della linea di supporto inferiore"
  2702. msgctxt "support_bottom_line_distance description"
  2703. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2704. 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."
  2705. msgctxt "support_interface_pattern label"
  2706. msgid "Support Interface Pattern"
  2707. msgstr "Configurazione interfaccia supporto"
  2708. msgctxt "support_interface_pattern description"
  2709. msgid "The pattern with which the interface of the support with the model is printed."
  2710. msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello."
  2711. msgctxt "support_interface_pattern option lines"
  2712. msgid "Lines"
  2713. msgstr "Linee"
  2714. msgctxt "support_interface_pattern option grid"
  2715. msgid "Grid"
  2716. msgstr "Griglia"
  2717. msgctxt "support_interface_pattern option triangles"
  2718. msgid "Triangles"
  2719. msgstr "Triangoli"
  2720. msgctxt "support_interface_pattern option concentric"
  2721. msgid "Concentric"
  2722. msgstr "Concentriche"
  2723. msgctxt "support_interface_pattern option zigzag"
  2724. msgid "Zig Zag"
  2725. msgstr "Zig Zag"
  2726. msgctxt "support_roof_pattern label"
  2727. msgid "Support Roof Pattern"
  2728. msgstr "Configurazione della parte superiore (tetto) del supporto"
  2729. msgctxt "support_roof_pattern description"
  2730. msgid "The pattern with which the roofs of the support are printed."
  2731. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto."
  2732. msgctxt "support_roof_pattern option lines"
  2733. msgid "Lines"
  2734. msgstr "Linee"
  2735. msgctxt "support_roof_pattern option grid"
  2736. msgid "Grid"
  2737. msgstr "Griglia"
  2738. msgctxt "support_roof_pattern option triangles"
  2739. msgid "Triangles"
  2740. msgstr "Triangoli"
  2741. msgctxt "support_roof_pattern option concentric"
  2742. msgid "Concentric"
  2743. msgstr "Concentriche"
  2744. msgctxt "support_roof_pattern option zigzag"
  2745. msgid "Zig Zag"
  2746. msgstr "Zig Zag"
  2747. msgctxt "support_bottom_pattern label"
  2748. msgid "Support Floor Pattern"
  2749. msgstr "Configurazione della parte inferiore del supporto"
  2750. msgctxt "support_bottom_pattern description"
  2751. msgid "The pattern with which the floors of the support are printed."
  2752. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto."
  2753. msgctxt "support_bottom_pattern option lines"
  2754. msgid "Lines"
  2755. msgstr "Linee"
  2756. msgctxt "support_bottom_pattern option grid"
  2757. msgid "Grid"
  2758. msgstr "Griglia"
  2759. msgctxt "support_bottom_pattern option triangles"
  2760. msgid "Triangles"
  2761. msgstr "Triangoli"
  2762. msgctxt "support_bottom_pattern option concentric"
  2763. msgid "Concentric"
  2764. msgstr "Concentriche"
  2765. msgctxt "support_bottom_pattern option zigzag"
  2766. msgid "Zig Zag"
  2767. msgstr "Zig Zag"
  2768. msgctxt "minimum_interface_area label"
  2769. msgid "Minimum Support Interface Area"
  2770. msgstr "Area minima interfaccia supporto"
  2771. msgctxt "minimum_interface_area description"
  2772. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2773. 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."
  2774. msgctxt "minimum_roof_area label"
  2775. msgid "Minimum Support Roof Area"
  2776. msgstr "Area minima parti superiori supporto"
  2777. msgctxt "minimum_roof_area description"
  2778. 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."
  2779. 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."
  2780. msgctxt "minimum_bottom_area label"
  2781. msgid "Minimum Support Floor Area"
  2782. msgstr "Area minima parti inferiori supporto"
  2783. msgctxt "minimum_bottom_area description"
  2784. 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."
  2785. 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."
  2786. msgctxt "support_interface_offset label"
  2787. msgid "Support Interface Horizontal Expansion"
  2788. msgstr "Espansione orizzontale interfaccia supporto"
  2789. msgctxt "support_interface_offset description"
  2790. msgid "Amount of offset applied to the support interface polygons."
  2791. msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto."
  2792. msgctxt "support_roof_offset label"
  2793. msgid "Support Roof Horizontal Expansion"
  2794. msgstr "Espansione orizzontale parti superiori supporto"
  2795. msgctxt "support_roof_offset description"
  2796. msgid "Amount of offset applied to the roofs of the support."
  2797. msgstr "Entità di offset applicato alle parti superiori del supporto."
  2798. msgctxt "support_bottom_offset label"
  2799. msgid "Support Floor Horizontal Expansion"
  2800. msgstr "Espansione orizzontale parti inferiori supporto"
  2801. msgctxt "support_bottom_offset description"
  2802. msgid "Amount of offset applied to the floors of the support."
  2803. msgstr "Entità di offset applicato alle parti inferiori del supporto."
  2804. msgctxt "support_interface_priority label"
  2805. msgid "Support Interface Priority"
  2806. msgstr "Priorità interfaccia di supporto"
  2807. msgctxt "support_interface_priority description"
  2808. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  2809. msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto."
  2810. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2811. msgid "Support preferred"
  2812. msgstr "Supporto preferito"
  2813. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  2814. msgid "Interface preferred"
  2815. msgstr "Interfaccia preferita"
  2816. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2817. msgid "Support lines preferred"
  2818. msgstr "Linee di supporto preferite"
  2819. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  2820. msgid "Interface lines preferred"
  2821. msgstr "Linee di interfaccia preferite"
  2822. msgctxt "support_interface_priority option nothing"
  2823. msgid "Both overlap"
  2824. msgstr "Entrambi si sovrappongono"
  2825. msgctxt "support_interface_angles label"
  2826. msgid "Support Interface Line Directions"
  2827. msgstr "Direzioni della linea dell'interfaccia di supporto"
  2828. msgctxt "support_interface_angles description"
  2829. 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)."
  2830. 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)."
  2831. msgctxt "support_roof_angles label"
  2832. msgid "Support Roof Line Directions"
  2833. msgstr "Direzioni delle linee di supporto superiori"
  2834. msgctxt "support_roof_angles description"
  2835. 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)."
  2836. 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)."
  2837. msgctxt "support_bottom_angles label"
  2838. msgid "Support Floor Line Directions"
  2839. msgstr "Direzioni della larghezza della linea di supporto inferiore"
  2840. msgctxt "support_bottom_angles description"
  2841. 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)."
  2842. 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)."
  2843. msgctxt "support_fan_enable label"
  2844. msgid "Fan Speed Override"
  2845. msgstr "Override velocità della ventola"
  2846. msgctxt "support_fan_enable description"
  2847. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  2848. msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto."
  2849. msgctxt "support_supported_skin_fan_speed label"
  2850. msgid "Supported Skin Fan Speed"
  2851. msgstr "Velocità della ventola del rivestimento esterno supportato"
  2852. msgctxt "support_supported_skin_fan_speed description"
  2853. 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."
  2854. 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."
  2855. msgctxt "support_use_towers label"
  2856. msgid "Use Towers"
  2857. msgstr "Utilizzo delle torri"
  2858. msgctxt "support_use_towers description"
  2859. 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."
  2860. 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'."
  2861. msgctxt "support_tower_diameter label"
  2862. msgid "Tower Diameter"
  2863. msgstr "Diametro della torre"
  2864. msgctxt "support_tower_diameter description"
  2865. msgid "The diameter of a special tower."
  2866. msgstr "Corrisponde al diametro di una torre speciale."
  2867. msgctxt "support_tower_maximum_supported_diameter label"
  2868. msgid "Maximum Tower-Supported Diameter"
  2869. msgstr "Diametro supportato dalla torre"
  2870. msgctxt "support_tower_maximum_supported_diameter description"
  2871. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2872. msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale."
  2873. msgctxt "support_tower_roof_angle label"
  2874. msgid "Tower Roof Angle"
  2875. msgstr "Angolazione della parte superiore (tetto) della torre"
  2876. msgctxt "support_tower_roof_angle description"
  2877. 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."
  2878. msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte."
  2879. msgctxt "support_mesh_drop_down label"
  2880. msgid "Drop Down Support Mesh"
  2881. msgstr "Maglia supporto di discesa"
  2882. msgctxt "support_mesh_drop_down description"
  2883. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2884. msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo."
  2885. msgctxt "support_meshes_present label"
  2886. msgid "Scene Has Support Meshes"
  2887. msgstr "La scena è dotata di maglie di supporto"
  2888. msgctxt "support_meshes_present description"
  2889. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  2890. msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura."
  2891. msgctxt "platform_adhesion label"
  2892. msgid "Build Plate Adhesion"
  2893. msgstr "Adesione piano di stampa"
  2894. msgctxt "platform_adhesion description"
  2895. msgid "Adhesion"
  2896. msgstr "Adesione"
  2897. msgctxt "prime_blob_enable label"
  2898. msgid "Enable Prime Blob"
  2899. msgstr "Abilitazione blob di innesco"
  2900. msgctxt "prime_blob_enable description"
  2901. 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."
  2902. 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."
  2903. msgctxt "extruder_prime_pos_x label"
  2904. msgid "Extruder Prime X Position"
  2905. msgstr "Posizione X innesco estrusore"
  2906. msgctxt "extruder_prime_pos_x description"
  2907. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2908. msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa."
  2909. msgctxt "extruder_prime_pos_y label"
  2910. msgid "Extruder Prime Y Position"
  2911. msgstr "Posizione Y innesco estrusore"
  2912. msgctxt "extruder_prime_pos_y description"
  2913. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2914. msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa."
  2915. msgctxt "adhesion_type label"
  2916. msgid "Build Plate Adhesion Type"
  2917. msgstr "Tipo di adesione piano di stampa"
  2918. msgctxt "adhesion_type description"
  2919. 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."
  2920. 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."
  2921. msgctxt "adhesion_type option skirt"
  2922. msgid "Skirt"
  2923. msgstr "Skirt"
  2924. msgctxt "adhesion_type option brim"
  2925. msgid "Brim"
  2926. msgstr "Brim"
  2927. msgctxt "adhesion_type option raft"
  2928. msgid "Raft"
  2929. msgstr "Raft"
  2930. msgctxt "adhesion_type option none"
  2931. msgid "None"
  2932. msgstr "Nessuno"
  2933. msgctxt "adhesion_extruder_nr label"
  2934. msgid "Build Plate Adhesion Extruder"
  2935. msgstr "Estrusore adesione piano di stampa"
  2936. msgctxt "adhesion_extruder_nr description"
  2937. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2938. msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla."
  2939. msgctxt "skirt_brim_extruder_nr label"
  2940. msgid "Skirt/Brim Extruder"
  2941. msgstr "Estrusore skirt/brim"
  2942. msgctxt "skirt_brim_extruder_nr description"
  2943. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2944. msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla."
  2945. msgctxt "raft_base_extruder_nr label"
  2946. msgid "Raft Base Extruder"
  2947. msgstr "Estrusore della base del raft"
  2948. msgctxt "raft_base_extruder_nr description"
  2949. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2950. msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla."
  2951. msgctxt "raft_interface_extruder_nr label"
  2952. msgid "Raft Middle Extruder"
  2953. msgstr "Estrusore intermedio del raft"
  2954. msgctxt "raft_interface_extruder_nr description"
  2955. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2956. msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla."
  2957. msgctxt "raft_surface_extruder_nr label"
  2958. msgid "Raft Top Extruder"
  2959. msgstr "Estrusore superiore del raft"
  2960. msgctxt "raft_surface_extruder_nr description"
  2961. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2962. msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla."
  2963. msgctxt "skirt_line_count label"
  2964. msgid "Skirt Line Count"
  2965. msgstr "Numero di linee dello skirt"
  2966. msgctxt "skirt_line_count description"
  2967. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2968. 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."
  2969. msgctxt "skirt_height label"
  2970. msgid "Skirt Height"
  2971. msgstr "Altezza dello skirt"
  2972. msgctxt "skirt_height description"
  2973. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2974. msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso."
  2975. msgctxt "skirt_gap label"
  2976. msgid "Skirt Distance"
  2977. msgstr "Distanza dello skirt"
  2978. msgctxt "skirt_gap description"
  2979. msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2980. msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa."
  2981. "Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza."
  2982. msgctxt "skirt_brim_minimal_length label"
  2983. msgid "Skirt/Brim Minimum Length"
  2984. msgstr "Lunghezza minima dello skirt/brim"
  2985. msgctxt "skirt_brim_minimal_length description"
  2986. 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."
  2987. 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."
  2988. msgctxt "brim_width label"
  2989. msgid "Brim Width"
  2990. msgstr "Larghezza del brim"
  2991. msgctxt "brim_width description"
  2992. 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."
  2993. 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."
  2994. msgctxt "brim_line_count label"
  2995. msgid "Brim Line Count"
  2996. msgstr "Numero di linee del brim"
  2997. msgctxt "brim_line_count description"
  2998. 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."
  2999. 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."
  3000. msgctxt "brim_gap label"
  3001. msgid "Brim Distance"
  3002. msgstr "Distanza del Brim"
  3003. msgctxt "brim_gap description"
  3004. 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."
  3005. 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."
  3006. msgctxt "brim_replaces_support label"
  3007. msgid "Brim Replaces Support"
  3008. msgstr "Brim in sostituzione del supporto"
  3009. msgctxt "brim_replaces_support description"
  3010. 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."
  3011. 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."
  3012. msgctxt "brim_location label"
  3013. msgid "Brim Location"
  3014. msgstr "Posizione del brim"
  3015. msgctxt "brim_location description"
  3016. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  3017. msgstr "Stampa un brim all'esterno, all'interno o in entrambi i punti del modello. A seconda di quest'ultimo, tale scelta consente di ridurre la quantità di brim da rimuovere in seguito, garantendo al contempo una corretta adesione al piano di stampa."
  3018. msgctxt "brim_location option outside"
  3019. msgid "Outside Only"
  3020. msgstr "Solo all'esterno"
  3021. msgctxt "brim_location option inside"
  3022. msgid "Inside Only"
  3023. msgstr "Solo all'interno"
  3024. msgctxt "brim_location option everywhere"
  3025. msgid "Everywhere"
  3026. msgstr "Ovunque"
  3027. msgctxt "brim_inside_margin label"
  3028. msgid "Brim Avoid Margin"
  3029. msgstr "Margine per evitare il brim"
  3030. msgctxt "brim_inside_margin description"
  3031. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  3032. msgstr "Un brim intorno a un modello potrebbe toccarne un altro in un punto non desiderato. Ciò rimuove tutto il brim entro questa distanza dai modelli che ne sono sprovvisti."
  3033. msgctxt "brim_smart_ordering label"
  3034. msgid "Smart Brim"
  3035. msgstr "Brim smart"
  3036. msgctxt "brim_smart_ordering description"
  3037. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3038. msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione."
  3039. msgctxt "raft_margin label"
  3040. msgid "Raft Extra Margin"
  3041. msgstr "Margine extra del raft"
  3042. msgctxt "raft_margin description"
  3043. 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."
  3044. 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."
  3045. msgctxt "raft_base_margin label"
  3046. msgid "Raft Base Extra Margin"
  3047. msgstr "Margine extra della base del raft"
  3048. msgctxt "raft_base_margin description"
  3049. msgid "If the raft base 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."
  3050. msgstr "Se la base del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno spazio per la stampa."
  3051. msgctxt "raft_interface_margin label"
  3052. msgid "Raft Middle Extra Margin"
  3053. msgstr "Margine extra della parte centrale del raft"
  3054. msgctxt "raft_interface_margin description"
  3055. msgid "If the raft middle 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."
  3056. msgstr "Se la parte centrale del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa."
  3057. msgctxt "raft_surface_margin label"
  3058. msgid "Raft Top Extra Margin"
  3059. msgstr "Margine extra della parte superiore del raft"
  3060. msgctxt "raft_surface_margin description"
  3061. msgid "If the raft top 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."
  3062. msgstr "Se la parte superiore del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa."
  3063. msgctxt "raft_remove_inside_corners label"
  3064. msgid "Remove Raft Inside Corners"
  3065. msgstr "Rimuovi angoli interni raft"
  3066. msgctxt "raft_remove_inside_corners description"
  3067. msgid "Remove inside corners from the raft, causing the raft to become convex."
  3068. msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso."
  3069. msgctxt "raft_base_remove_inside_corners label"
  3070. msgid "Remove Raft Base Inside Corners"
  3071. msgstr "Rimuovere gli angoli interni dalla base del raft"
  3072. msgctxt "raft_base_remove_inside_corners description"
  3073. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  3074. msgstr "Rimuovere gli angoli interni dalla base del raft, facendolo diventare convesso."
  3075. msgctxt "raft_interface_remove_inside_corners label"
  3076. msgid "Remove Raft Middle Inside Corners"
  3077. msgstr "Rimuovere gli angoli interni dalla parte centrale del raft"
  3078. msgctxt "raft_interface_remove_inside_corners description"
  3079. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  3080. msgstr "Rimuovere gli angoli interni dalla parte centrale del raft, facendolo diventare convesso."
  3081. msgctxt "raft_surface_remove_inside_corners label"
  3082. msgid "Remove Raft Top Inside Corners"
  3083. msgstr "Rimuovere gli angoli interni dalla parte superiore del raft"
  3084. msgctxt "raft_surface_remove_inside_corners description"
  3085. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  3086. msgstr "Rimuove gli angoli interni dalla parte superiore del raft, facendolo diventare convesso."
  3087. msgctxt "raft_smoothing label"
  3088. msgid "Raft Smoothing"
  3089. msgstr "Smoothing raft"
  3090. msgctxt "raft_smoothing description"
  3091. 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."
  3092. 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."
  3093. msgctxt "raft_base_smoothing label"
  3094. msgid "Raft Base Smoothing"
  3095. msgstr "Levigatura della base del raft"
  3096. msgctxt "raft_base_smoothing description"
  3097. msgid "This setting controls how much inner corners in the raft base 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."
  3098. msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni nel contorno della base del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio."
  3099. msgctxt "raft_interface_smoothing label"
  3100. msgid "Raft Middle Smoothing"
  3101. msgstr "Levigatura della parte centrale del raft"
  3102. msgctxt "raft_interface_smoothing description"
  3103. msgid "This setting controls how much inner corners in the raft middle 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."
  3104. msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte centrale del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio."
  3105. msgctxt "raft_surface_smoothing label"
  3106. msgid "Raft Top Smoothing"
  3107. msgstr "Levigatura della parte superiore del raft"
  3108. msgctxt "raft_surface_smoothing description"
  3109. msgid "This setting controls how much inner corners in the raft top 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."
  3110. msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte superiore del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio."
  3111. msgctxt "raft_airgap label"
  3112. msgid "Raft Air Gap"
  3113. msgstr "Traferro del raft"
  3114. msgctxt "raft_airgap description"
  3115. 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."
  3116. 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."
  3117. msgctxt "layer_0_z_overlap label"
  3118. msgid "Initial Layer Z Overlap"
  3119. msgstr "Z Sovrapposizione Primo Strato"
  3120. msgctxt "layer_0_z_overlap description"
  3121. 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.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  3122. msgstr "Il primo e il secondo strato del modello vanno sovrapposti nella direzione Z per compensare il filamento perso nello spazio vuoto. Tutti i modelli al di sopra del primo strato saranno spostati verso il basso da questa quantità.\nSi può notare che a volte il secondo strato viene stampato al di sotto dello strato iniziale a causa di questa impostazione. Si tratta di un comportamento previsto."
  3123. msgctxt "raft_base_thickness label"
  3124. msgid "Raft Base Thickness"
  3125. msgstr "Spessore della base del raft"
  3126. msgctxt "raft_base_thickness description"
  3127. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3128. msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa."
  3129. msgctxt "raft_base_line_width label"
  3130. msgid "Raft Base Line Width"
  3131. msgstr "Larghezza delle linee dello strato di base del raft"
  3132. msgctxt "raft_base_line_width description"
  3133. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3134. 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."
  3135. msgctxt "raft_base_line_spacing label"
  3136. msgid "Raft Base Line Spacing"
  3137. msgstr "Spaziatura delle linee dello strato di base del raft"
  3138. msgctxt "raft_base_line_spacing description"
  3139. 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."
  3140. 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."
  3141. msgctxt "raft_interface_layers label"
  3142. msgid "Raft Middle Layers"
  3143. msgstr "Strati intermedi del raft"
  3144. msgctxt "raft_interface_layers description"
  3145. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3146. msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto."
  3147. msgctxt "raft_interface_thickness label"
  3148. msgid "Raft Middle Thickness"
  3149. msgstr "Spessore dello strato intermedio del raft"
  3150. msgctxt "raft_interface_thickness description"
  3151. msgid "Layer thickness of the middle raft layer."
  3152. msgstr "È lo spessore dello strato intermedio del raft."
  3153. msgctxt "raft_interface_line_width label"
  3154. msgid "Raft Middle Line Width"
  3155. msgstr "Larghezza delle linee dello strato intermedio del raft"
  3156. msgctxt "raft_interface_line_width description"
  3157. 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."
  3158. 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."
  3159. msgctxt "raft_interface_line_spacing label"
  3160. msgid "Raft Middle Spacing"
  3161. msgstr "Spaziatura dello strato intermedio del raft"
  3162. msgctxt "raft_interface_line_spacing description"
  3163. 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."
  3164. 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."
  3165. msgctxt "raft_surface_layers label"
  3166. msgid "Raft Top Layers"
  3167. msgstr "Strati superiori del raft"
  3168. msgctxt "raft_surface_layers description"
  3169. 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."
  3170. 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."
  3171. msgctxt "raft_surface_thickness label"
  3172. msgid "Raft Top Layer Thickness"
  3173. msgstr "Spessore dello strato superiore del raft"
  3174. msgctxt "raft_surface_thickness description"
  3175. msgid "Layer thickness of the top raft layers."
  3176. msgstr "È lo spessore degli strati superiori del raft."
  3177. msgctxt "raft_surface_line_width label"
  3178. msgid "Raft Top Line Width"
  3179. msgstr "Larghezza delle linee superiori del raft"
  3180. msgctxt "raft_surface_line_width description"
  3181. 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."
  3182. msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft."
  3183. msgctxt "raft_surface_line_spacing label"
  3184. msgid "Raft Top Spacing"
  3185. msgstr "Spaziatura superiore del raft"
  3186. msgctxt "raft_surface_line_spacing description"
  3187. 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."
  3188. 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."
  3189. msgctxt "raft_surface_monotonic label"
  3190. msgid "Monotonic Raft Top Surface Order"
  3191. msgstr "Ordine monotono della superficie della parte superiore del raft"
  3192. msgctxt "raft_surface_monotonic description"
  3193. msgid "Print raft 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 the surface look more consistent, which is also visible on the model bottom surface."
  3194. msgstr "Stampare le linee della superficie della parte superiore del raft in un ordine che fa sì che si sovrappongano sempre alle linee adiacenti in un'unica direzione. Ciò richiede un tempo di stampa leggermente superiore, ma conferisce alla superficie un aspetto più consistente, visibile anche sulla superficie inferiore del modello."
  3195. msgctxt "raft_wall_count label"
  3196. msgid "Raft Wall Count"
  3197. msgstr "Conteggio delle pareti del raft"
  3198. msgctxt "raft_wall_count description"
  3199. msgid "The number of contours to print around the linear pattern of the raft."
  3200. msgstr "Il numero di contorni da stampare intorno al modello lineare del raft."
  3201. msgctxt "raft_base_wall_count label"
  3202. msgid "Raft Base Wall Count"
  3203. msgstr "Conteggio parete base del raft"
  3204. msgctxt "raft_base_wall_count description"
  3205. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3206. msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft."
  3207. msgctxt "raft_interface_wall_count label"
  3208. msgid "Raft Middle Wall Count"
  3209. msgstr "Conteggio delle pareti della parte centrale del raft"
  3210. msgctxt "raft_interface_wall_count description"
  3211. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3212. msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati centrali del raft."
  3213. msgctxt "raft_surface_wall_count label"
  3214. msgid "Raft Top Wall Count"
  3215. msgstr "Conteggio delle parete della parte superiore del raft"
  3216. msgctxt "raft_surface_wall_count description"
  3217. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3218. msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati superiori del raft."
  3219. msgctxt "raft_speed label"
  3220. msgid "Raft Print Speed"
  3221. msgstr "Velocità di stampa del raft"
  3222. msgctxt "raft_speed description"
  3223. msgid "The speed at which the raft is printed."
  3224. msgstr "Indica la velocità alla quale il raft è stampato."
  3225. msgctxt "raft_base_speed label"
  3226. msgid "Raft Base Print Speed"
  3227. msgstr "Velocità di stampa della base del raft"
  3228. msgctxt "raft_base_speed description"
  3229. 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."
  3230. 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."
  3231. msgctxt "raft_interface_speed label"
  3232. msgid "Raft Middle Print Speed"
  3233. msgstr "Velocità di stampa raft intermedio"
  3234. msgctxt "raft_interface_speed description"
  3235. 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."
  3236. 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."
  3237. msgctxt "raft_surface_speed label"
  3238. msgid "Raft Top Print Speed"
  3239. msgstr "Velocità di stampa parte superiore del raft"
  3240. msgctxt "raft_surface_speed description"
  3241. 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."
  3242. 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."
  3243. msgctxt "raft_acceleration label"
  3244. msgid "Raft Print Acceleration"
  3245. msgstr "Accelerazione di stampa del raft"
  3246. msgctxt "raft_acceleration description"
  3247. msgid "The acceleration with which the raft is printed."
  3248. msgstr "Indica l’accelerazione con cui viene stampato il raft."
  3249. msgctxt "raft_base_acceleration label"
  3250. msgid "Raft Base Print Acceleration"
  3251. msgstr "Accelerazione di stampa della base del raft"
  3252. msgctxt "raft_base_acceleration description"
  3253. msgid "The acceleration with which the base raft layer is printed."
  3254. msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft."
  3255. msgctxt "raft_interface_acceleration label"
  3256. msgid "Raft Middle Print Acceleration"
  3257. msgstr "Accelerazione di stampa raft intermedio"
  3258. msgctxt "raft_interface_acceleration description"
  3259. msgid "The acceleration with which the middle raft layer is printed."
  3260. msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft."
  3261. msgctxt "raft_surface_acceleration label"
  3262. msgid "Raft Top Print Acceleration"
  3263. msgstr "Accelerazione di stampa parte superiore del raft"
  3264. msgctxt "raft_surface_acceleration description"
  3265. msgid "The acceleration with which the top raft layers are printed."
  3266. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft."
  3267. msgctxt "raft_jerk label"
  3268. msgid "Raft Print Jerk"
  3269. msgstr "Jerk stampa del raft"
  3270. msgctxt "raft_jerk description"
  3271. msgid "The jerk with which the raft is printed."
  3272. msgstr "Indica il jerk con cui viene stampato il raft."
  3273. msgctxt "raft_base_jerk label"
  3274. msgid "Raft Base Print Jerk"
  3275. msgstr "Jerk di stampa della base del raft"
  3276. msgctxt "raft_base_jerk description"
  3277. msgid "The jerk with which the base raft layer is printed."
  3278. msgstr "Indica il jerk con cui viene stampato lo strato di base del raft."
  3279. msgctxt "raft_interface_jerk label"
  3280. msgid "Raft Middle Print Jerk"
  3281. msgstr "Jerk di stampa raft intermedio"
  3282. msgctxt "raft_interface_jerk description"
  3283. msgid "The jerk with which the middle raft layer is printed."
  3284. msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft."
  3285. msgctxt "raft_surface_jerk label"
  3286. msgid "Raft Top Print Jerk"
  3287. msgstr "Jerk di stampa parte superiore del raft"
  3288. msgctxt "raft_surface_jerk description"
  3289. msgid "The jerk with which the top raft layers are printed."
  3290. msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft."
  3291. msgctxt "raft_fan_speed label"
  3292. msgid "Raft Fan Speed"
  3293. msgstr "Velocità della ventola per il raft"
  3294. msgctxt "raft_fan_speed description"
  3295. msgid "The fan speed for the raft."
  3296. msgstr "Indica la velocità di rotazione della ventola per il raft."
  3297. msgctxt "raft_base_fan_speed label"
  3298. msgid "Raft Base Fan Speed"
  3299. msgstr "Velocità della ventola per la base del raft"
  3300. msgctxt "raft_base_fan_speed description"
  3301. msgid "The fan speed for the base raft layer."
  3302. msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft."
  3303. msgctxt "raft_interface_fan_speed label"
  3304. msgid "Raft Middle Fan Speed"
  3305. msgstr "Velocità della ventola per il raft intermedio"
  3306. msgctxt "raft_interface_fan_speed description"
  3307. msgid "The fan speed for the middle raft layer."
  3308. msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft."
  3309. msgctxt "raft_surface_fan_speed label"
  3310. msgid "Raft Top Fan Speed"
  3311. msgstr "Velocità della ventola per la parte superiore del raft"
  3312. msgctxt "raft_surface_fan_speed description"
  3313. msgid "The fan speed for the top raft layers."
  3314. msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft."
  3315. msgctxt "dual label"
  3316. msgid "Dual Extrusion"
  3317. msgstr "Doppia estrusione"
  3318. msgctxt "dual description"
  3319. msgid "Settings used for printing with multiple extruders."
  3320. msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli."
  3321. msgctxt "prime_tower_enable label"
  3322. msgid "Enable Prime Tower"
  3323. msgstr "Abilitazione torre di innesco"
  3324. msgctxt "prime_tower_enable description"
  3325. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3326. msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello."
  3327. msgctxt "prime_tower_mode label"
  3328. msgid "Prime Tower Type"
  3329. msgstr "Tipi di prime tower"
  3330. msgctxt "prime_tower_mode description"
  3331. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  3332. msgstr "<html>Come generare la prime tower:<ul><li><b>Normale:</b> creare un contenitore in cui vengono preparati i materiali secondari</li><li><b>Impilata:</b> creare una prime tower più intervallata possibile. Ciò farà risparmiare tempo e filamento, ma è possibile solo se i materiali utilizzati aderiscono tra loro</li></ul></html>"
  3333. msgctxt "prime_tower_mode option normal"
  3334. msgid "Normal"
  3335. msgstr "Normale"
  3336. msgctxt "prime_tower_mode option interleaved"
  3337. msgid "Interleaved"
  3338. msgstr "Impilata"
  3339. msgctxt "prime_tower_size label"
  3340. msgid "Prime Tower Size"
  3341. msgstr "Dimensioni torre di innesco"
  3342. msgctxt "prime_tower_size description"
  3343. msgid "The width of the prime tower."
  3344. msgstr "Indica la larghezza della torre di innesco."
  3345. msgctxt "prime_tower_min_volume label"
  3346. msgid "Prime Tower Minimum Volume"
  3347. msgstr "Volume minimo torre di innesco"
  3348. msgctxt "prime_tower_min_volume description"
  3349. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3350. msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza."
  3351. msgctxt "prime_tower_max_bridging_distance label"
  3352. msgid "Prime Tower Maximum Bridging Distance"
  3353. msgstr "Distanza massima tra i rami della prime tower"
  3354. msgctxt "prime_tower_max_bridging_distance description"
  3355. msgid "The maximum length of the branches which may be printed over the air."
  3356. msgstr "La lunghezza massima dei rami stampabili a mezz'aria."
  3357. msgctxt "prime_tower_position_x label"
  3358. msgid "Prime Tower X Position"
  3359. msgstr "Posizione X torre di innesco"
  3360. msgctxt "prime_tower_position_x description"
  3361. msgid "The x coordinate of the position of the prime tower."
  3362. msgstr "Indica la coordinata X della posizione della torre di innesco."
  3363. msgctxt "prime_tower_position_y label"
  3364. msgid "Prime Tower Y Position"
  3365. msgstr "Posizione Y torre di innesco"
  3366. msgctxt "prime_tower_position_y description"
  3367. msgid "The y coordinate of the position of the prime tower."
  3368. msgstr "Indica la coordinata Y della posizione della torre di innesco."
  3369. msgctxt "prime_tower_wipe_enabled label"
  3370. msgid "Wipe Inactive Nozzle on Prime Tower"
  3371. msgstr "Ugello pulitura inattiva sulla torre di innesco"
  3372. msgctxt "prime_tower_wipe_enabled description"
  3373. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3374. msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco."
  3375. msgctxt "prime_tower_brim_enable label"
  3376. msgid "Prime Tower Base"
  3377. msgstr "Base della Torre di Primerizzazione"
  3378. msgctxt "prime_tower_brim_enable description"
  3379. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  3380. msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base."
  3381. msgctxt "prime_tower_base_size label"
  3382. msgid "Prime Tower Base Size"
  3383. msgstr "Dimensione della Base della Torre di Primerizzazione"
  3384. msgctxt "prime_tower_base_size description"
  3385. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3386. msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva."
  3387. msgctxt "prime_tower_base_height label"
  3388. msgid "Prime Tower Base Height"
  3389. msgstr "Altezza della Base della Torre di Primerizzazione"
  3390. msgctxt "prime_tower_base_height description"
  3391. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3392. msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida."
  3393. msgctxt "prime_tower_base_curve_magnitude label"
  3394. msgid "Prime Tower Base Slope"
  3395. msgstr "Pendenza della Base della Torre di Primerizzazione"
  3396. msgctxt "prime_tower_base_curve_magnitude description"
  3397. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3398. msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa."
  3399. msgctxt "prime_tower_raft_base_line_spacing label"
  3400. msgid "Prime Tower Raft Line Spacing"
  3401. msgstr "Interlinea del Radeau della Torre di Primerizzazione"
  3402. msgctxt "prime_tower_raft_base_line_spacing description"
  3403. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3404. msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione."
  3405. msgctxt "ooze_shield_enabled label"
  3406. msgid "Enable Ooze Shield"
  3407. msgstr "Abilitazione del riparo materiale fuoriuscito"
  3408. msgctxt "ooze_shield_enabled description"
  3409. 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."
  3410. 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."
  3411. msgctxt "ooze_shield_angle label"
  3412. msgid "Ooze Shield Angle"
  3413. msgstr "Angolo del riparo materiale fuoriuscito"
  3414. msgctxt "ooze_shield_angle description"
  3415. 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."
  3416. 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."
  3417. msgctxt "ooze_shield_dist label"
  3418. msgid "Ooze Shield Distance"
  3419. msgstr "Distanza del riparo materiale fuoriuscito"
  3420. msgctxt "ooze_shield_dist description"
  3421. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3422. msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y."
  3423. msgctxt "switch_extruder_retraction_amount label"
  3424. msgid "Nozzle Switch Retraction Distance"
  3425. msgstr "Distanza di retrazione cambio ugello"
  3426. msgctxt "switch_extruder_retraction_amount description"
  3427. 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."
  3428. 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."
  3429. msgctxt "switch_extruder_retraction_speeds label"
  3430. msgid "Nozzle Switch Retraction Speed"
  3431. msgstr "Velocità di retrazione cambio ugello"
  3432. msgctxt "switch_extruder_retraction_speeds description"
  3433. 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."
  3434. 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."
  3435. msgctxt "switch_extruder_retraction_speed label"
  3436. msgid "Nozzle Switch Retract Speed"
  3437. msgstr "Velocità di retrazione cambio ugello"
  3438. msgctxt "switch_extruder_retraction_speed description"
  3439. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3440. msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello."
  3441. msgctxt "switch_extruder_prime_speed label"
  3442. msgid "Nozzle Switch Prime Speed"
  3443. msgstr "Velocità innesco cambio ugello"
  3444. msgctxt "switch_extruder_prime_speed description"
  3445. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3446. msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello."
  3447. msgctxt "switch_extruder_extra_prime_amount label"
  3448. msgid "Nozzle Switch Extra Prime Amount"
  3449. msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello"
  3450. msgctxt "switch_extruder_extra_prime_amount description"
  3451. msgid "Extra material to prime after nozzle switching."
  3452. msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello."
  3453. msgctxt "meshfix label"
  3454. msgid "Mesh Fixes"
  3455. msgstr "Correzioni delle maglie"
  3456. msgctxt "meshfix description"
  3457. msgid "Make the meshes more suited for 3D printing."
  3458. msgstr "Rendere le maglie più indicate alla stampa 3D."
  3459. msgctxt "meshfix_union_all label"
  3460. msgid "Union Overlapping Volumes"
  3461. msgstr "Unione dei volumi in sovrapposizione"
  3462. msgctxt "meshfix_union_all description"
  3463. 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."
  3464. 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."
  3465. msgctxt "meshfix_union_all_remove_holes label"
  3466. msgid "Remove All Holes"
  3467. msgstr "Rimozione di tutti i fori"
  3468. msgctxt "meshfix_union_all_remove_holes description"
  3469. 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."
  3470. 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."
  3471. msgctxt "meshfix_extensive_stitching label"
  3472. msgid "Extensive Stitching"
  3473. msgstr "Ricucitura completa dei fori"
  3474. msgctxt "meshfix_extensive_stitching description"
  3475. 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."
  3476. 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."
  3477. msgctxt "meshfix_keep_open_polygons label"
  3478. msgid "Keep Disconnected Faces"
  3479. msgstr "Mantenimento delle superfici scollegate"
  3480. msgctxt "meshfix_keep_open_polygons description"
  3481. 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."
  3482. 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."
  3483. msgctxt "multiple_mesh_overlap label"
  3484. msgid "Merged Meshes Overlap"
  3485. msgstr "Sovrapposizione maglie"
  3486. msgctxt "multiple_mesh_overlap description"
  3487. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3488. msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione."
  3489. msgctxt "carve_multiple_volumes label"
  3490. msgid "Remove Mesh Intersection"
  3491. msgstr "Rimuovi intersezione maglie"
  3492. msgctxt "carve_multiple_volumes description"
  3493. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3494. 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."
  3495. msgctxt "alternate_carve_order label"
  3496. msgid "Alternate Mesh Removal"
  3497. msgstr "Rimozione maglie alternate"
  3498. msgctxt "alternate_carve_order description"
  3499. 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."
  3500. 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."
  3501. msgctxt "remove_empty_first_layers label"
  3502. msgid "Remove Empty First Layers"
  3503. msgstr "Rimuovere i primi strati vuoti"
  3504. msgctxt "remove_empty_first_layers description"
  3505. 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."
  3506. 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."
  3507. msgctxt "meshfix_maximum_resolution label"
  3508. msgid "Maximum Resolution"
  3509. msgstr "Risoluzione massima"
  3510. msgctxt "meshfix_maximum_resolution description"
  3511. 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."
  3512. 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."
  3513. msgctxt "meshfix_maximum_travel_resolution label"
  3514. msgid "Maximum Travel Resolution"
  3515. msgstr "Risoluzione massima di spostamento"
  3516. msgctxt "meshfix_maximum_travel_resolution description"
  3517. 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."
  3518. 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."
  3519. msgctxt "meshfix_maximum_deviation label"
  3520. msgid "Maximum Deviation"
  3521. msgstr "Deviazione massima"
  3522. msgctxt "meshfix_maximum_deviation description"
  3523. 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."
  3524. 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."
  3525. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  3526. msgid "Maximum Extrusion Area Deviation"
  3527. msgstr "Deviazione massima dell'area di estrusione"
  3528. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3529. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  3530. msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo."
  3531. msgctxt "meshfix_fluid_motion_enabled label"
  3532. msgid "Enable Fluid Motion"
  3533. msgstr "Abilita movimento fluido"
  3534. msgctxt "meshfix_fluid_motion_enabled description"
  3535. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3536. msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido."
  3537. msgctxt "meshfix_fluid_motion_shift_distance label"
  3538. msgid "Fluid Motion Shift Distance"
  3539. msgstr "Distanza di spostamento del movimento del fluido"
  3540. msgctxt "meshfix_fluid_motion_shift_distance description"
  3541. msgid "Distance points are shifted to smooth the path"
  3542. msgstr "I punti di distanza vengono spostati per risistemare il percorso"
  3543. msgctxt "meshfix_fluid_motion_small_distance label"
  3544. msgid "Fluid Motion Small Distance"
  3545. msgstr "Breve distanza di movimento del fluido"
  3546. msgctxt "meshfix_fluid_motion_small_distance description"
  3547. msgid "Distance points are shifted to smooth the path"
  3548. msgstr "I punti di distanza vengono spostati per risistemare il percorso"
  3549. msgctxt "meshfix_fluid_motion_angle label"
  3550. msgid "Fluid Motion Angle"
  3551. msgstr "Angolo di movimento del fluido"
  3552. msgctxt "meshfix_fluid_motion_angle description"
  3553. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  3554. msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato."
  3555. msgctxt "blackmagic label"
  3556. msgid "Special Modes"
  3557. msgstr "Modalità speciali"
  3558. msgctxt "blackmagic description"
  3559. msgid "Non-traditional ways to print your models."
  3560. msgstr "Modi non tradizionali di stampare i modelli."
  3561. msgctxt "print_sequence label"
  3562. msgid "Print Sequence"
  3563. msgstr "Sequenza di stampa"
  3564. msgctxt "print_sequence description"
  3565. 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."
  3566. 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."
  3567. msgctxt "print_sequence option all_at_once"
  3568. msgid "All at Once"
  3569. msgstr "Tutti contemporaneamente"
  3570. msgctxt "print_sequence option one_at_a_time"
  3571. msgid "One at a Time"
  3572. msgstr "Uno alla volta"
  3573. msgctxt "user_defined_print_order_enabled label"
  3574. msgid "Set Print Sequence Manually"
  3575. msgstr "Imposta manualmente la sequenza di stampa"
  3576. msgctxt "user_defined_print_order_enabled description"
  3577. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  3578. msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco verrà stampato per primo."
  3579. msgctxt "infill_mesh label"
  3580. msgid "Infill Mesh"
  3581. msgstr "Maglia di riempimento"
  3582. msgctxt "infill_mesh description"
  3583. 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."
  3584. 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."
  3585. msgctxt "infill_mesh_order label"
  3586. msgid "Mesh Processing Rank"
  3587. msgstr "Classificazione dell'elaborazione delle maglie"
  3588. msgctxt "infill_mesh_order description"
  3589. 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."
  3590. 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."
  3591. msgctxt "cutting_mesh label"
  3592. msgid "Cutting Mesh"
  3593. msgstr "Ritaglio maglia"
  3594. msgctxt "cutting_mesh description"
  3595. 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."
  3596. 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."
  3597. msgctxt "mold_enabled label"
  3598. msgid "Mold"
  3599. msgstr "Stampo"
  3600. msgctxt "mold_enabled description"
  3601. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3602. msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa."
  3603. msgctxt "mold_width label"
  3604. msgid "Minimal Mold Width"
  3605. msgstr "Larghezza minimo dello stampo"
  3606. msgctxt "mold_width description"
  3607. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3608. msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello."
  3609. msgctxt "mold_roof_height label"
  3610. msgid "Mold Roof Height"
  3611. msgstr "Altezza parte superiore dello stampo"
  3612. msgctxt "mold_roof_height description"
  3613. msgid "The height above horizontal parts in your model which to print mold."
  3614. msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo."
  3615. msgctxt "mold_angle label"
  3616. msgid "Mold Angle"
  3617. msgstr "Angolo stampo"
  3618. msgctxt "mold_angle description"
  3619. 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."
  3620. 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."
  3621. msgctxt "support_mesh label"
  3622. msgid "Support Mesh"
  3623. msgstr "Supporto maglia"
  3624. msgctxt "support_mesh description"
  3625. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3626. msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto."
  3627. msgctxt "anti_overhang_mesh label"
  3628. msgid "Anti Overhang Mesh"
  3629. msgstr "Maglia anti-sovrapposizione"
  3630. msgctxt "anti_overhang_mesh description"
  3631. 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."
  3632. 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."
  3633. msgctxt "magic_mesh_surface_mode label"
  3634. msgid "Surface Mode"
  3635. msgstr "Modalità superficie"
  3636. msgctxt "magic_mesh_surface_mode description"
  3637. 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."
  3638. 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."
  3639. msgctxt "magic_mesh_surface_mode option normal"
  3640. msgid "Normal"
  3641. msgstr "Normale"
  3642. msgctxt "magic_mesh_surface_mode option surface"
  3643. msgid "Surface"
  3644. msgstr "Superficie"
  3645. msgctxt "magic_mesh_surface_mode option both"
  3646. msgid "Both"
  3647. msgstr "Entrambi"
  3648. msgctxt "magic_spiralize label"
  3649. msgid "Spiralize Outer Contour"
  3650. msgstr "Stampa del contorno esterno con movimento spiraliforme"
  3651. msgctxt "magic_spiralize description"
  3652. 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."
  3653. 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."
  3654. msgctxt "smooth_spiralized_contours label"
  3655. msgid "Smooth Spiralized Contours"
  3656. msgstr "Levigazione dei profili con movimento spiraliforme"
  3657. msgctxt "smooth_spiralized_contours description"
  3658. 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."
  3659. 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."
  3660. msgctxt "relative_extrusion label"
  3661. msgid "Relative Extrusion"
  3662. msgstr "Estrusione relativa"
  3663. msgctxt "relative_extrusion description"
  3664. 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."
  3665. 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."
  3666. msgctxt "experimental label"
  3667. msgid "Experimental"
  3668. msgstr "Sperimentale"
  3669. msgctxt "experimental description"
  3670. msgid "Features that haven't completely been fleshed out yet."
  3671. msgstr "Funzionalità che non sono state ancora precisate completamente."
  3672. msgctxt "slicing_tolerance label"
  3673. msgid "Slicing Tolerance"
  3674. msgstr "Tolleranza di sezionamento"
  3675. msgctxt "slicing_tolerance description"
  3676. 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."
  3677. 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."
  3678. msgctxt "slicing_tolerance option middle"
  3679. msgid "Middle"
  3680. msgstr "Intermedia"
  3681. msgctxt "slicing_tolerance option exclusive"
  3682. msgid "Exclusive"
  3683. msgstr "Esclusiva"
  3684. msgctxt "slicing_tolerance option inclusive"
  3685. msgid "Inclusive"
  3686. msgstr "Inclusiva"
  3687. msgctxt "infill_enable_travel_optimization label"
  3688. msgid "Infill Travel Optimization"
  3689. msgstr "Ottimizzazione spostamenti riempimento"
  3690. msgctxt "infill_enable_travel_optimization description"
  3691. 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."
  3692. 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."
  3693. msgctxt "material_flow_temp_graph label"
  3694. msgid "Flow Temperature Graph"
  3695. msgstr "Grafico della temperatura del flusso"
  3696. msgctxt "material_flow_temp_graph description"
  3697. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3698. msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)."
  3699. msgctxt "minimum_polygon_circumference label"
  3700. msgid "Minimum Polygon Circumference"
  3701. msgstr "Circonferenza minima dei poligoni"
  3702. msgctxt "minimum_polygon_circumference description"
  3703. 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."
  3704. 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."
  3705. msgctxt "interlocking_enable label"
  3706. msgid "Generate Interlocking Structure"
  3707. msgstr "Generazione della struttura a incastro"
  3708. msgctxt "interlocking_enable description"
  3709. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  3710. msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi."
  3711. msgctxt "interlocking_beam_width label"
  3712. msgid "Interlocking Beam Width"
  3713. msgstr "Larghezza della trave a incastro"
  3714. msgctxt "interlocking_beam_width description"
  3715. msgid "The width of the interlocking structure beams."
  3716. msgstr "La larghezza delle travi della struttura ad incastro."
  3717. msgctxt "interlocking_orientation label"
  3718. msgid "Interlocking Structure Orientation"
  3719. msgstr "Orientamento della struttura ad incastro"
  3720. msgctxt "interlocking_orientation description"
  3721. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3722. msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti."
  3723. msgctxt "interlocking_beam_layer_count label"
  3724. msgid "Interlocking Beam Layer Count"
  3725. msgstr "Conteggio degli strati delle travi ad incastro"
  3726. msgctxt "interlocking_beam_layer_count description"
  3727. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3728. msgstr "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti."
  3729. msgctxt "interlocking_depth label"
  3730. msgid "Interlocking Depth"
  3731. msgstr "Profondità di incastro"
  3732. msgctxt "interlocking_depth description"
  3733. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3734. msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione."
  3735. msgctxt "interlocking_boundary_avoidance label"
  3736. msgid "Interlocking Boundary Avoidance"
  3737. msgstr "Prevenzione incastro dei bordi"
  3738. msgctxt "interlocking_boundary_avoidance description"
  3739. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3740. msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle."
  3741. msgctxt "support_skip_some_zags label"
  3742. msgid "Break Up Support In Chunks"
  3743. msgstr "Rottura del supporto in pezzi di grandi dimensioni"
  3744. msgctxt "support_skip_some_zags description"
  3745. 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."
  3746. 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."
  3747. msgctxt "support_skip_zag_per_mm label"
  3748. msgid "Support Chunk Size"
  3749. msgstr "Dimensioni frammento supporto"
  3750. msgctxt "support_skip_zag_per_mm description"
  3751. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3752. msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso."
  3753. msgctxt "support_zag_skip_count label"
  3754. msgid "Support Chunk Line Count"
  3755. msgstr "Conteggio linee di rottura supporto"
  3756. msgctxt "support_zag_skip_count description"
  3757. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3758. msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere."
  3759. msgctxt "draft_shield_enabled label"
  3760. msgid "Enable Draft Shield"
  3761. msgstr "Abilitazione del riparo paravento"
  3762. msgctxt "draft_shield_enabled description"
  3763. 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."
  3764. 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."
  3765. msgctxt "draft_shield_dist label"
  3766. msgid "Draft Shield X/Y Distance"
  3767. msgstr "Distanza X/Y del riparo paravento"
  3768. msgctxt "draft_shield_dist description"
  3769. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3770. msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y."
  3771. msgctxt "draft_shield_height_limitation label"
  3772. msgid "Draft Shield Limitation"
  3773. msgstr "Limitazione del riparo paravento"
  3774. msgctxt "draft_shield_height_limitation description"
  3775. 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."
  3776. msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata."
  3777. msgctxt "draft_shield_height_limitation option full"
  3778. msgid "Full"
  3779. msgstr "Piena altezza"
  3780. msgctxt "draft_shield_height_limitation option limited"
  3781. msgid "Limited"
  3782. msgstr "Limitazione in altezza"
  3783. msgctxt "draft_shield_height label"
  3784. msgid "Draft Shield Height"
  3785. msgstr "Altezza del riparo paravento"
  3786. msgctxt "draft_shield_height description"
  3787. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3788. msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo."
  3789. msgctxt "conical_overhang_enabled label"
  3790. msgid "Make Overhang Printable"
  3791. msgstr "Rendi stampabile lo sbalzo"
  3792. msgctxt "conical_overhang_enabled description"
  3793. 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."
  3794. 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."
  3795. msgctxt "conical_overhang_angle label"
  3796. msgid "Maximum Model Angle"
  3797. msgstr "Massimo angolo modello"
  3798. msgctxt "conical_overhang_angle description"
  3799. 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."
  3800. 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."
  3801. msgctxt "conical_overhang_hole_size label"
  3802. msgid "Maximum Overhang Hole Area"
  3803. msgstr "Area foro di sbalzo massima"
  3804. msgctxt "conical_overhang_hole_size description"
  3805. 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."
  3806. 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."
  3807. msgctxt "coasting_enable label"
  3808. msgid "Enable Coasting"
  3809. msgstr "Abilitazione della funzione di Coasting"
  3810. msgctxt "coasting_enable description"
  3811. 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."
  3812. 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."
  3813. msgctxt "coasting_volume label"
  3814. msgid "Coasting Volume"
  3815. msgstr "Volume di Coasting"
  3816. msgctxt "coasting_volume description"
  3817. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3818. msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo."
  3819. msgctxt "coasting_min_volume label"
  3820. msgid "Minimum Volume Before Coasting"
  3821. msgstr "Volume minimo prima del Coasting"
  3822. msgctxt "coasting_min_volume description"
  3823. 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."
  3824. 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."
  3825. msgctxt "coasting_speed label"
  3826. msgid "Coasting Speed"
  3827. msgstr "Velocità di Coasting"
  3828. msgctxt "coasting_speed description"
  3829. 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."
  3830. 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."
  3831. msgctxt "cross_infill_pocket_size label"
  3832. msgid "Cross 3D Pocket Size"
  3833. msgstr "Dimensioni cavità 3D incrociata"
  3834. msgctxt "cross_infill_pocket_size description"
  3835. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3836. msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa."
  3837. msgctxt "cross_infill_density_image label"
  3838. msgid "Cross Infill Density Image"
  3839. msgstr "Immagine di densità del riempimento incrociato"
  3840. msgctxt "cross_infill_density_image description"
  3841. 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."
  3842. 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."
  3843. msgctxt "cross_support_density_image label"
  3844. msgid "Cross Fill Density Image for Support"
  3845. msgstr "Immagine di densità del riempimento incrociato per il supporto"
  3846. msgctxt "cross_support_density_image description"
  3847. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3848. msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto."
  3849. msgctxt "support_conical_enabled label"
  3850. msgid "Enable Conical Support"
  3851. msgstr "Abilitazione del supporto conico"
  3852. msgctxt "support_conical_enabled description"
  3853. msgid "Make support areas smaller at the bottom than at the overhang."
  3854. msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo."
  3855. msgctxt "support_conical_angle label"
  3856. msgid "Conical Support Angle"
  3857. msgstr "Angolo del supporto conico"
  3858. msgctxt "support_conical_angle description"
  3859. 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."
  3860. 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."
  3861. msgctxt "support_conical_min_width label"
  3862. msgid "Conical Support Minimum Width"
  3863. msgstr "Larghezza minima del supporto conico"
  3864. msgctxt "support_conical_min_width description"
  3865. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3866. msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili."
  3867. msgctxt "magic_fuzzy_skin_enabled label"
  3868. msgid "Fuzzy Skin"
  3869. msgstr "Rivestimento esterno incoerente (fuzzy)"
  3870. msgctxt "magic_fuzzy_skin_enabled description"
  3871. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3872. msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)."
  3873. msgctxt "magic_fuzzy_skin_outside_only label"
  3874. msgid "Fuzzy Skin Outside Only"
  3875. msgstr "Fuzzy Skin solo all'esterno"
  3876. msgctxt "magic_fuzzy_skin_outside_only description"
  3877. msgid "Jitter only the parts' outlines and not the parts' holes."
  3878. msgstr "Distorce solo i profili delle parti, non i fori di queste."
  3879. msgctxt "magic_fuzzy_skin_thickness label"
  3880. msgid "Fuzzy Skin Thickness"
  3881. msgstr "Spessore del rivestimento esterno incoerente (fuzzy)"
  3882. msgctxt "magic_fuzzy_skin_thickness description"
  3883. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3884. 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."
  3885. msgctxt "magic_fuzzy_skin_point_density label"
  3886. msgid "Fuzzy Skin Density"
  3887. msgstr "Densità del rivestimento esterno incoerente (fuzzy)"
  3888. msgctxt "magic_fuzzy_skin_point_density description"
  3889. 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."
  3890. 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."
  3891. msgctxt "magic_fuzzy_skin_point_dist label"
  3892. msgid "Fuzzy Skin Point Distance"
  3893. msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)"
  3894. msgctxt "magic_fuzzy_skin_point_dist description"
  3895. 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."
  3896. 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)."
  3897. msgctxt "flow_rate_max_extrusion_offset label"
  3898. msgid "Flow Rate Compensation Max Extrusion Offset"
  3899. msgstr "Offset massimo dell'estrusione di compensazione del flusso"
  3900. msgctxt "flow_rate_max_extrusion_offset description"
  3901. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3902. msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso."
  3903. msgctxt "flow_rate_extrusion_offset_factor label"
  3904. msgid "Flow Rate Compensation Factor"
  3905. msgstr "Fattore di compensazione del flusso"
  3906. msgctxt "flow_rate_extrusion_offset_factor description"
  3907. 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."
  3908. 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."
  3909. msgctxt "adaptive_layer_height_enabled label"
  3910. msgid "Use Adaptive Layers"
  3911. msgstr "Uso di strati adattivi"
  3912. msgctxt "adaptive_layer_height_enabled description"
  3913. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  3914. msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello."
  3915. msgctxt "adaptive_layer_height_variation label"
  3916. msgid "Adaptive Layers Maximum Variation"
  3917. msgstr "Variazione massima strati adattivi"
  3918. msgctxt "adaptive_layer_height_variation description"
  3919. msgid "The maximum allowed height different from the base layer height."
  3920. msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base."
  3921. msgctxt "adaptive_layer_height_variation_step label"
  3922. msgid "Adaptive Layers Variation Step Size"
  3923. msgstr "Dimensione variazione strati adattivi"
  3924. msgctxt "adaptive_layer_height_variation_step description"
  3925. msgid "The difference in height of the next layer height compared to the previous one."
  3926. msgstr "La differenza in altezza dello strato successivo rispetto al precedente."
  3927. msgctxt "adaptive_layer_height_threshold label"
  3928. msgid "Adaptive Layers Topography Size"
  3929. msgstr "Dimensione della topografia dei layer adattivi"
  3930. msgctxt "adaptive_layer_height_threshold description"
  3931. 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."
  3932. msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer."
  3933. msgctxt "wall_overhang_angle label"
  3934. msgid "Overhanging Wall Angle"
  3935. msgstr "Angolo parete di sbalzo"
  3936. msgctxt "wall_overhang_angle description"
  3937. 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."
  3938. 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."
  3939. msgctxt "wall_overhang_speed_factor label"
  3940. msgid "Overhanging Wall Speed"
  3941. msgstr "Velocità parete di sbalzo"
  3942. msgctxt "wall_overhang_speed_factor description"
  3943. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  3944. msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa."
  3945. msgctxt "bridge_settings_enabled label"
  3946. msgid "Enable Bridge Settings"
  3947. msgstr "Abilita impostazioni ponte"
  3948. msgctxt "bridge_settings_enabled description"
  3949. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  3950. msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti."
  3951. msgctxt "bridge_wall_min_length label"
  3952. msgid "Minimum Bridge Wall Length"
  3953. msgstr "Lunghezza minima parete ponte"
  3954. msgctxt "bridge_wall_min_length description"
  3955. 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."
  3956. 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."
  3957. msgctxt "bridge_skin_support_threshold label"
  3958. msgid "Bridge Skin Support Threshold"
  3959. msgstr "Soglia di supporto rivestimento esterno ponte"
  3960. msgctxt "bridge_skin_support_threshold description"
  3961. 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."
  3962. 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."
  3963. msgctxt "bridge_sparse_infill_max_density label"
  3964. msgid "Bridge Sparse Infill Max Density"
  3965. msgstr "Densità massima del riempimento rado del Bridge"
  3966. msgctxt "bridge_sparse_infill_max_density description"
  3967. 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."
  3968. msgstr "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte."
  3969. msgctxt "bridge_wall_coast label"
  3970. msgid "Bridge Wall Coasting"
  3971. msgstr "Coasting parete ponte"
  3972. msgctxt "bridge_wall_coast description"
  3973. 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."
  3974. 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."
  3975. msgctxt "bridge_wall_speed label"
  3976. msgid "Bridge Wall Speed"
  3977. msgstr "Velocità di stampa della parete ponte"
  3978. msgctxt "bridge_wall_speed description"
  3979. msgid "The speed at which the bridge walls are printed."
  3980. msgstr "Indica la velocità alla quale vengono stampate le pareti ponte."
  3981. msgctxt "bridge_wall_material_flow label"
  3982. msgid "Bridge Wall Flow"
  3983. msgstr "Flusso della parete ponte"
  3984. msgctxt "bridge_wall_material_flow description"
  3985. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3986. msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  3987. msgctxt "bridge_skin_speed label"
  3988. msgid "Bridge Skin Speed"
  3989. msgstr "Velocità di stampa del rivestimento esterno ponte"
  3990. msgctxt "bridge_skin_speed description"
  3991. msgid "The speed at which bridge skin regions are printed."
  3992. msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte."
  3993. msgctxt "bridge_skin_material_flow label"
  3994. msgid "Bridge Skin Flow"
  3995. msgstr "Flusso del rivestimento esterno ponte"
  3996. msgctxt "bridge_skin_material_flow description"
  3997. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3998. msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  3999. msgctxt "bridge_skin_density label"
  4000. msgid "Bridge Skin Density"
  4001. msgstr "Densità del rivestimento esterno ponte"
  4002. msgctxt "bridge_skin_density description"
  4003. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4004. msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4005. msgctxt "bridge_fan_speed label"
  4006. msgid "Bridge Fan Speed"
  4007. msgstr "Velocità della ventola ponte"
  4008. msgctxt "bridge_fan_speed description"
  4009. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4010. msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte."
  4011. msgctxt "bridge_enable_more_layers label"
  4012. msgid "Bridge Has Multiple Layers"
  4013. msgstr "Ponte a strati multipli"
  4014. msgctxt "bridge_enable_more_layers description"
  4015. 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."
  4016. 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."
  4017. msgctxt "bridge_skin_speed_2 label"
  4018. msgid "Bridge Second Skin Speed"
  4019. msgstr "Velocità di stampa del secondo rivestimento esterno ponte"
  4020. msgctxt "bridge_skin_speed_2 description"
  4021. msgid "Print speed to use when printing the second bridge skin layer."
  4022. msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte."
  4023. msgctxt "bridge_skin_material_flow_2 label"
  4024. msgid "Bridge Second Skin Flow"
  4025. msgstr "Flusso del secondo rivestimento esterno ponte"
  4026. msgctxt "bridge_skin_material_flow_2 description"
  4027. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4028. msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4029. msgctxt "bridge_skin_density_2 label"
  4030. msgid "Bridge Second Skin Density"
  4031. msgstr "Densità del secondo rivestimento esterno ponte"
  4032. msgctxt "bridge_skin_density_2 description"
  4033. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4034. msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4035. msgctxt "bridge_fan_speed_2 label"
  4036. msgid "Bridge Second Skin Fan Speed"
  4037. msgstr "Velocità della ventola per il secondo rivestimento esterno ponte"
  4038. msgctxt "bridge_fan_speed_2 description"
  4039. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4040. msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte."
  4041. msgctxt "bridge_skin_speed_3 label"
  4042. msgid "Bridge Third Skin Speed"
  4043. msgstr "Velocità di stampa del terzo rivestimento esterno ponte"
  4044. msgctxt "bridge_skin_speed_3 description"
  4045. msgid "Print speed to use when printing the third bridge skin layer."
  4046. msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte."
  4047. msgctxt "bridge_skin_material_flow_3 label"
  4048. msgid "Bridge Third Skin Flow"
  4049. msgstr "Flusso del terzo rivestimento esterno ponte"
  4050. msgctxt "bridge_skin_material_flow_3 description"
  4051. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4052. msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4053. msgctxt "bridge_skin_density_3 label"
  4054. msgid "Bridge Third Skin Density"
  4055. msgstr "Densità del terzo rivestimento esterno ponte"
  4056. msgctxt "bridge_skin_density_3 description"
  4057. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4058. msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4059. msgctxt "bridge_fan_speed_3 label"
  4060. msgid "Bridge Third Skin Fan Speed"
  4061. msgstr "Velocità della ventola del terzo rivestimento esterno ponte"
  4062. msgctxt "bridge_fan_speed_3 description"
  4063. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4064. msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte."
  4065. msgctxt "clean_between_layers label"
  4066. msgid "Wipe Nozzle Between Layers"
  4067. msgstr "Pulitura ugello tra gli strati"
  4068. msgctxt "clean_between_layers description"
  4069. 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."
  4070. 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."
  4071. msgctxt "max_extrusion_before_wipe label"
  4072. msgid "Material Volume Between Wipes"
  4073. msgstr "Volume di materiale tra le operazioni di pulitura"
  4074. msgctxt "max_extrusion_before_wipe description"
  4075. 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."
  4076. 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."
  4077. msgctxt "wipe_retraction_enable label"
  4078. msgid "Wipe Retraction Enable"
  4079. msgstr "Retrazione per pulitura abilitata"
  4080. msgctxt "wipe_retraction_enable description"
  4081. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4082. msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata."
  4083. msgctxt "wipe_retraction_amount label"
  4084. msgid "Wipe Retraction Distance"
  4085. msgstr "Distanza di retrazione per pulitura"
  4086. msgctxt "wipe_retraction_amount description"
  4087. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4088. msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura."
  4089. msgctxt "wipe_retraction_extra_prime_amount label"
  4090. msgid "Wipe Retraction Extra Prime Amount"
  4091. msgstr "Entità di innesco supplementare dopo retrazione per pulitura"
  4092. msgctxt "wipe_retraction_extra_prime_amount description"
  4093. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4094. msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento."
  4095. msgctxt "wipe_retraction_speed label"
  4096. msgid "Wipe Retraction Speed"
  4097. msgstr "Velocità di retrazione per pulitura"
  4098. msgctxt "wipe_retraction_speed description"
  4099. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4100. msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura."
  4101. msgctxt "wipe_retraction_retract_speed label"
  4102. msgid "Wipe Retraction Retract Speed"
  4103. msgstr "Velocità di retrazione per pulitura"
  4104. msgctxt "wipe_retraction_retract_speed description"
  4105. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4106. msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura."
  4107. msgctxt "wipe_retraction_prime_speed label"
  4108. msgid "Wipe Retraction Prime Speed"
  4109. msgstr "Velocità di pulitura retrazione"
  4110. msgctxt "wipe_retraction_prime_speed description"
  4111. msgid "The speed at which the filament is primed during a wipe retraction move."
  4112. msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura."
  4113. msgctxt "wipe_pause label"
  4114. msgid "Wipe Pause"
  4115. msgstr "Pausa pulitura"
  4116. msgctxt "wipe_pause description"
  4117. msgid "Pause after the unretract."
  4118. msgstr "Pausa dopo ripristino."
  4119. msgctxt "wipe_hop_enable label"
  4120. msgid "Wipe Z Hop"
  4121. msgstr "Pulitura Z Hop"
  4122. msgctxt "wipe_hop_enable description"
  4123. 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."
  4124. 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."
  4125. msgctxt "wipe_hop_amount label"
  4126. msgid "Wipe Z Hop Height"
  4127. msgstr "Altezza Z Hop pulitura"
  4128. msgctxt "wipe_hop_amount description"
  4129. msgid "The height difference when performing a Z Hop."
  4130. msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop."
  4131. msgctxt "wipe_hop_speed label"
  4132. msgid "Wipe Hop Speed"
  4133. msgstr "Velocità di sollevamento (Hop) per pulitura"
  4134. msgctxt "wipe_hop_speed description"
  4135. msgid "Speed to move the z-axis during the hop."
  4136. msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)."
  4137. msgctxt "wipe_brush_pos_x label"
  4138. msgid "Wipe Brush X Position"
  4139. msgstr "Posizione X spazzolino di pulitura"
  4140. msgctxt "wipe_brush_pos_x description"
  4141. msgid "X location where wipe script will start."
  4142. msgstr "Posizione X in cui verrà avviato lo script di pulitura."
  4143. msgctxt "wipe_repeat_count label"
  4144. msgid "Wipe Repeat Count"
  4145. msgstr "Conteggio ripetizioni operazioni di pulitura"
  4146. msgctxt "wipe_repeat_count description"
  4147. msgid "Number of times to move the nozzle across the brush."
  4148. msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino."
  4149. msgctxt "wipe_move_distance label"
  4150. msgid "Wipe Move Distance"
  4151. msgstr "Distanza spostamento longitudinale di pulitura"
  4152. msgctxt "wipe_move_distance description"
  4153. msgid "The distance to move the head back and forth across the brush."
  4154. msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino."
  4155. msgctxt "small_hole_max_size label"
  4156. msgid "Small Hole Max Size"
  4157. msgstr "Dimensione massima foro piccolo"
  4158. msgctxt "small_hole_max_size description"
  4159. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  4160. msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni."
  4161. msgctxt "small_feature_max_length label"
  4162. msgid "Small Feature Max Length"
  4163. msgstr "Lunghezza massima dettagli di piccole dimensioni"
  4164. msgctxt "small_feature_max_length description"
  4165. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  4166. msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni."
  4167. msgctxt "small_feature_speed_factor label"
  4168. msgid "Small Feature Speed"
  4169. msgstr "Velocità dettagli piccole dimensioni"
  4170. msgctxt "small_feature_speed_factor description"
  4171. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  4172. 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."
  4173. msgctxt "small_feature_speed_factor_0 label"
  4174. msgid "Small Feature Initial Layer Speed"
  4175. msgstr "Velocità layer iniziale per dettagli di piccole dimensioni"
  4176. msgctxt "small_feature_speed_factor_0 description"
  4177. 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."
  4178. 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."
  4179. msgctxt "material_alternate_walls label"
  4180. msgid "Alternate Wall Directions"
  4181. msgstr "Alterna direzioni parete"
  4182. msgctxt "material_alternate_walls description"
  4183. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  4184. msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo."
  4185. msgctxt "group_outer_walls label"
  4186. msgid "Group Outer Walls"
  4187. msgstr "Raggruppa le pareti esterne"
  4188. msgctxt "group_outer_walls description"
  4189. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  4190. msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate."
  4191. msgctxt "ppr label"
  4192. msgid "Print Process Reporting"
  4193. msgstr "Resoconto del processo di stampa"
  4194. msgctxt "ppr description"
  4195. msgid "Reporting events that go out of set thresholds"
  4196. msgstr "Resoconto degli eventi che superano le soglie impostate"
  4197. msgctxt "ppr_enable label"
  4198. msgid "Enable Print Process Reporting"
  4199. msgstr "Abilita il resoconto del processo di stampa"
  4200. msgctxt "ppr_enable description"
  4201. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  4202. msgstr "Abilita il resoconto del processo di stampa per impostare i valori di soglia per il rilevamento di eventuali errori."
  4203. msgctxt "flow_warn_limit label"
  4204. msgid "Flow Warning"
  4205. msgstr "Avviso sul flusso"
  4206. msgctxt "flow_warn_limit description"
  4207. msgid "Limit on the flow warning for detection."
  4208. msgstr "Limite per attivare l'avviso sul flusso."
  4209. msgctxt "flow_anomaly_limit label"
  4210. msgid "Flow Limit"
  4211. msgstr "Limite per il flusso"
  4212. msgctxt "flow_anomaly_limit description"
  4213. msgid "Limit on flow anomaly for detection."
  4214. msgstr "Limite per il rilevamento dell'anomalia del flusso."
  4215. msgctxt "print_temp_warn_limit label"
  4216. msgid "Print temperature Warning"
  4217. msgstr "Avviso sulla temperatura di stampa"
  4218. msgctxt "print_temp_warn_limit description"
  4219. msgid "Limit on Print temperature warning for detection."
  4220. msgstr "Limite per attivare l'avviso sulla temperatura di stampa."
  4221. msgctxt "print_temp_anomaly_limit label"
  4222. msgid "Print temperature Limit"
  4223. msgstr "Limite per la temperatura di stampa"
  4224. msgctxt "print_temp_anomaly_limit description"
  4225. msgid "Limit on Print Temperature anomaly for detection."
  4226. msgstr "Limite per il rilevamento dell'anomalia della temperatura di stampa."
  4227. msgctxt "bv_temp_warn_limit label"
  4228. msgid "Build Volume temperature Warning"
  4229. msgstr "Avviso sulla temperatura del volume di costruzione"
  4230. msgctxt "bv_temp_warn_limit description"
  4231. msgid "Limit on Build Volume Temperature warning for detection."
  4232. msgstr "Limite per attivare l'avviso sulla temperatura del volume di costruzione."
  4233. msgctxt "bv_temp_anomaly_limit label"
  4234. msgid "Build Volume temperature Limit"
  4235. msgstr "Limite per la temperatura del volume di costruzione"
  4236. msgctxt "bv_temp_anomaly_limit description"
  4237. msgid "Limit on Build Volume temperature Anomaly for detection."
  4238. msgstr "Limite per il rilevamento dell'anomalia della temperatura del volume di costruzione."
  4239. msgctxt "command_line_settings label"
  4240. msgid "Command Line Settings"
  4241. msgstr "Impostazioni riga di comando"
  4242. msgctxt "command_line_settings description"
  4243. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4244. msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura."
  4245. msgctxt "center_object label"
  4246. msgid "Center Object"
  4247. msgstr "Centra oggetto"
  4248. msgctxt "center_object description"
  4249. 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."
  4250. 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."
  4251. msgctxt "mesh_position_x label"
  4252. msgid "Mesh Position X"
  4253. msgstr "Posizione maglia X"
  4254. msgctxt "mesh_position_x description"
  4255. msgid "Offset applied to the object in the x direction."
  4256. msgstr "Offset applicato all’oggetto per la direzione X."
  4257. msgctxt "mesh_position_y label"
  4258. msgid "Mesh Position Y"
  4259. msgstr "Posizione maglia Y"
  4260. msgctxt "mesh_position_y description"
  4261. msgid "Offset applied to the object in the y direction."
  4262. msgstr "Offset applicato all’oggetto per la direzione Y."
  4263. msgctxt "mesh_position_z label"
  4264. msgid "Mesh Position Z"
  4265. msgstr "Posizione maglia Z"
  4266. msgctxt "mesh_position_z description"
  4267. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4268. msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’."
  4269. msgctxt "mesh_rotation_matrix label"
  4270. msgid "Mesh Rotation Matrix"
  4271. msgstr "Matrice rotazione maglia"
  4272. msgctxt "mesh_rotation_matrix description"
  4273. msgid "Transformation matrix to be applied to the model when loading it from file."
  4274. msgstr "Matrice di rotazione da applicare al modello quando caricato dal file."
  4275. msgctxt "support_type description"
  4276. 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."
  4277. 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."