fdmprinter.def.json.po 279 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-03-29 08:36+0200\n"
  11. "PO-Revision-Date: 2018-04-11 14:40+0100\n"
  12. "Last-Translator: Bothof <info@bothof.nl>\n"
  13. "Language-Team: Italian\n"
  14. "Language: it_IT\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: fdmprinter.def.json
  19. msgctxt "machine_settings label"
  20. msgid "Machine"
  21. msgstr "Macchina"
  22. #: fdmprinter.def.json
  23. msgctxt "machine_settings description"
  24. msgid "Machine specific settings"
  25. msgstr "Impostazioni macchina specifiche"
  26. #: fdmprinter.def.json
  27. msgctxt "machine_name label"
  28. msgid "Machine Type"
  29. msgstr "Tipo di macchina"
  30. #: fdmprinter.def.json
  31. msgctxt "machine_name description"
  32. msgid "The name of your 3D printer model."
  33. msgstr "Il nome del modello della stampante 3D in uso."
  34. #: fdmprinter.def.json
  35. msgctxt "machine_show_variants label"
  36. msgid "Show Machine Variants"
  37. msgstr "Mostra varianti macchina"
  38. #: fdmprinter.def.json
  39. msgctxt "machine_show_variants description"
  40. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  41. msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte."
  42. #: fdmprinter.def.json
  43. msgctxt "machine_start_gcode label"
  44. msgid "Start G-code"
  45. msgstr "Codice G avvio"
  46. #: fdmprinter.def.json
  47. msgctxt "machine_start_gcode description"
  48. msgid ""
  49. "G-code commands to be executed at the very start - separated by \n"
  50. "."
  51. msgstr "I comandi codice G da eseguire all’avvio, separati da \n."
  52. #: fdmprinter.def.json
  53. msgctxt "machine_end_gcode label"
  54. msgid "End G-code"
  55. msgstr "Codice G fine"
  56. #: fdmprinter.def.json
  57. msgctxt "machine_end_gcode description"
  58. msgid ""
  59. "G-code commands to be executed at the very end - separated by \n"
  60. "."
  61. msgstr "I comandi codice G da eseguire alla fine, separati da \n."
  62. #: fdmprinter.def.json
  63. msgctxt "material_guid label"
  64. msgid "Material GUID"
  65. msgstr "GUID materiale"
  66. #: fdmprinter.def.json
  67. msgctxt "material_guid description"
  68. msgid "GUID of the material. This is set automatically. "
  69. msgstr "Il GUID del materiale. È impostato automaticamente. "
  70. #: fdmprinter.def.json
  71. msgctxt "material_bed_temp_wait label"
  72. msgid "Wait for Build Plate Heatup"
  73. msgstr "Attendi il riscaldamento del piano di stampa"
  74. #: fdmprinter.def.json
  75. msgctxt "material_bed_temp_wait description"
  76. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  77. msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio."
  78. #: fdmprinter.def.json
  79. msgctxt "material_print_temp_wait label"
  80. msgid "Wait for Nozzle Heatup"
  81. msgstr "Attendi il riscaldamento dell’ugello"
  82. #: fdmprinter.def.json
  83. msgctxt "material_print_temp_wait description"
  84. msgid "Whether to wait until the nozzle temperature is reached at the start."
  85. msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio."
  86. #: fdmprinter.def.json
  87. msgctxt "material_print_temp_prepend label"
  88. msgid "Include Material Temperatures"
  89. msgstr "Includi le temperature del materiale"
  90. #: fdmprinter.def.json
  91. msgctxt "material_print_temp_prepend description"
  92. 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."
  93. 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."
  94. #: fdmprinter.def.json
  95. msgctxt "material_bed_temp_prepend label"
  96. msgid "Include Build Plate Temperature"
  97. msgstr "Includi temperatura piano di stampa"
  98. #: fdmprinter.def.json
  99. msgctxt "material_bed_temp_prepend description"
  100. 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."
  101. 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."
  102. #: fdmprinter.def.json
  103. msgctxt "machine_width label"
  104. msgid "Machine Width"
  105. msgstr "Larghezza macchina"
  106. #: fdmprinter.def.json
  107. msgctxt "machine_width description"
  108. msgid "The width (X-direction) of the printable area."
  109. msgstr "La larghezza (direzione X) dell’area stampabile."
  110. #: fdmprinter.def.json
  111. msgctxt "machine_depth label"
  112. msgid "Machine Depth"
  113. msgstr "Profondità macchina"
  114. #: fdmprinter.def.json
  115. msgctxt "machine_depth description"
  116. msgid "The depth (Y-direction) of the printable area."
  117. msgstr "La profondità (direzione Y) dell’area stampabile."
  118. #: fdmprinter.def.json
  119. msgctxt "machine_shape label"
  120. msgid "Build Plate Shape"
  121. msgstr "Forma del piano di stampa"
  122. #: fdmprinter.def.json
  123. msgctxt "machine_shape description"
  124. msgid "The shape of the build plate without taking unprintable areas into account."
  125. msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili."
  126. #: fdmprinter.def.json
  127. msgctxt "machine_shape option rectangular"
  128. msgid "Rectangular"
  129. msgstr "Rettangolare"
  130. #: fdmprinter.def.json
  131. msgctxt "machine_shape option elliptic"
  132. msgid "Elliptic"
  133. msgstr "Ellittica"
  134. #: fdmprinter.def.json
  135. msgctxt "machine_buildplate_type label"
  136. msgid "Build Plate Material"
  137. msgstr "Materiale piano di stampa"
  138. #: fdmprinter.def.json
  139. msgctxt "machine_buildplate_type description"
  140. msgid "The material of the build plate installed on the printer."
  141. msgstr "Il materiale del piano di stampa installato sulla stampante."
  142. #: fdmprinter.def.json
  143. msgctxt "machine_buildplate_type option glass"
  144. msgid "Glass"
  145. msgstr "Cristallo"
  146. #: fdmprinter.def.json
  147. msgctxt "machine_buildplate_type option aluminum"
  148. msgid "Aluminum"
  149. msgstr "Alluminio"
  150. #: fdmprinter.def.json
  151. msgctxt "machine_height label"
  152. msgid "Machine Height"
  153. msgstr "Altezza macchina"
  154. #: fdmprinter.def.json
  155. msgctxt "machine_height description"
  156. msgid "The height (Z-direction) of the printable area."
  157. msgstr "L’altezza (direzione Z) dell’area stampabile."
  158. #: fdmprinter.def.json
  159. msgctxt "machine_heated_bed label"
  160. msgid "Has Heated Build Plate"
  161. msgstr "Piano di stampa riscaldato"
  162. #: fdmprinter.def.json
  163. msgctxt "machine_heated_bed description"
  164. msgid "Whether the machine has a heated build plate present."
  165. msgstr "Indica se la macchina ha un piano di stampa riscaldato."
  166. #: fdmprinter.def.json
  167. msgctxt "machine_center_is_zero label"
  168. msgid "Is Center Origin"
  169. msgstr "Origine del centro"
  170. #: fdmprinter.def.json
  171. msgctxt "machine_center_is_zero description"
  172. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  173. msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile."
  174. #: fdmprinter.def.json
  175. msgctxt "machine_extruder_count label"
  176. msgid "Number of Extruders"
  177. msgstr "Numero di estrusori"
  178. #: fdmprinter.def.json
  179. msgctxt "machine_extruder_count description"
  180. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  181. msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello."
  182. #: fdmprinter.def.json
  183. msgctxt "extruders_enabled_count label"
  184. msgid "Number of Extruders that are enabled"
  185. msgstr "Numero di estrusori abilitati"
  186. #: fdmprinter.def.json
  187. msgctxt "extruders_enabled_count description"
  188. msgid "Number of extruder trains that are enabled; automatically set in software"
  189. msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software"
  190. #: fdmprinter.def.json
  191. msgctxt "machine_nozzle_tip_outer_diameter label"
  192. msgid "Outer nozzle diameter"
  193. msgstr "Diametro esterno ugello"
  194. #: fdmprinter.def.json
  195. msgctxt "machine_nozzle_tip_outer_diameter description"
  196. msgid "The outer diameter of the tip of the nozzle."
  197. msgstr "Il diametro esterno della punta dell'ugello."
  198. #: fdmprinter.def.json
  199. msgctxt "machine_nozzle_head_distance label"
  200. msgid "Nozzle length"
  201. msgstr "Lunghezza ugello"
  202. #: fdmprinter.def.json
  203. msgctxt "machine_nozzle_head_distance description"
  204. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  205. msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa."
  206. #: fdmprinter.def.json
  207. msgctxt "machine_nozzle_expansion_angle label"
  208. msgid "Nozzle angle"
  209. msgstr "Angolo ugello"
  210. #: fdmprinter.def.json
  211. msgctxt "machine_nozzle_expansion_angle description"
  212. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  213. msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello."
  214. #: fdmprinter.def.json
  215. msgctxt "machine_heat_zone_length label"
  216. msgid "Heat zone length"
  217. msgstr "Lunghezza della zona di riscaldamento"
  218. #: fdmprinter.def.json
  219. msgctxt "machine_heat_zone_length description"
  220. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  221. msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento."
  222. #: fdmprinter.def.json
  223. msgctxt "machine_filament_park_distance label"
  224. msgid "Filament Park Distance"
  225. msgstr "Distanza posizione filamento"
  226. #: fdmprinter.def.json
  227. msgctxt "machine_filament_park_distance description"
  228. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  229. msgstr "La distanza dalla punta dell’ugello in cui posizionare il filamento quando l’estrusore non è più utilizzato."
  230. #: fdmprinter.def.json
  231. msgctxt "machine_nozzle_temp_enabled label"
  232. msgid "Enable Nozzle Temperature Control"
  233. msgstr "Abilita controllo temperatura ugello"
  234. #: fdmprinter.def.json
  235. msgctxt "machine_nozzle_temp_enabled description"
  236. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  237. msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura."
  238. #: fdmprinter.def.json
  239. msgctxt "machine_nozzle_heat_up_speed label"
  240. msgid "Heat up speed"
  241. msgstr "Velocità di riscaldamento"
  242. #: fdmprinter.def.json
  243. msgctxt "machine_nozzle_heat_up_speed description"
  244. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  245. 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."
  246. #: fdmprinter.def.json
  247. msgctxt "machine_nozzle_cool_down_speed label"
  248. msgid "Cool down speed"
  249. msgstr "Velocità di raffreddamento"
  250. #: fdmprinter.def.json
  251. msgctxt "machine_nozzle_cool_down_speed description"
  252. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  253. 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."
  254. #: fdmprinter.def.json
  255. msgctxt "machine_min_cool_heat_time_window label"
  256. msgid "Minimal Time Standby Temperature"
  257. msgstr "Tempo minimo temperatura di standby"
  258. #: fdmprinter.def.json
  259. msgctxt "machine_min_cool_heat_time_window description"
  260. 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."
  261. 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."
  262. #: fdmprinter.def.json
  263. msgctxt "machine_gcode_flavor label"
  264. msgid "G-code flavour"
  265. msgstr "Tipo di codice G"
  266. #: fdmprinter.def.json
  267. msgctxt "machine_gcode_flavor description"
  268. msgid "The type of g-code to be generated."
  269. msgstr "Il tipo di codice G da generare."
  270. #: fdmprinter.def.json
  271. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  272. msgid "Marlin"
  273. msgstr "Marlin"
  274. #: fdmprinter.def.json
  275. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  276. msgid "Marlin (Volumetric)"
  277. msgstr "Marlin (volumetrica)"
  278. #: fdmprinter.def.json
  279. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  280. msgid "RepRap"
  281. msgstr "RepRap"
  282. #: fdmprinter.def.json
  283. msgctxt "machine_gcode_flavor option UltiGCode"
  284. msgid "Ultimaker 2"
  285. msgstr "Ultimaker 2"
  286. #: fdmprinter.def.json
  287. msgctxt "machine_gcode_flavor option Griffin"
  288. msgid "Griffin"
  289. msgstr "Griffin"
  290. #: fdmprinter.def.json
  291. msgctxt "machine_gcode_flavor option Makerbot"
  292. msgid "Makerbot"
  293. msgstr "Makerbot"
  294. #: fdmprinter.def.json
  295. msgctxt "machine_gcode_flavor option BFB"
  296. msgid "Bits from Bytes"
  297. msgstr "Bits from Bytes"
  298. #: fdmprinter.def.json
  299. msgctxt "machine_gcode_flavor option MACH3"
  300. msgid "Mach3"
  301. msgstr "Mach3"
  302. #: fdmprinter.def.json
  303. msgctxt "machine_gcode_flavor option Repetier"
  304. msgid "Repetier"
  305. msgstr "Repetier"
  306. #: fdmprinter.def.json
  307. msgctxt "machine_firmware_retract label"
  308. msgid "Firmware Retraction"
  309. msgstr "Retrazione firmware"
  310. #: fdmprinter.def.json
  311. msgctxt "machine_firmware_retract description"
  312. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  313. msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale."
  314. #: fdmprinter.def.json
  315. msgctxt "machine_disallowed_areas label"
  316. msgid "Disallowed areas"
  317. msgstr "Aree non consentite"
  318. #: fdmprinter.def.json
  319. msgctxt "machine_disallowed_areas description"
  320. msgid "A list of polygons with areas the print head is not allowed to enter."
  321. msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere."
  322. #: fdmprinter.def.json
  323. msgctxt "nozzle_disallowed_areas label"
  324. msgid "Nozzle Disallowed Areas"
  325. msgstr "Aree ugello non consentite"
  326. #: fdmprinter.def.json
  327. msgctxt "nozzle_disallowed_areas description"
  328. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  329. msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere."
  330. #: fdmprinter.def.json
  331. msgctxt "machine_head_polygon label"
  332. msgid "Machine head polygon"
  333. msgstr "Poligono testina macchina"
  334. #: fdmprinter.def.json
  335. msgctxt "machine_head_polygon description"
  336. msgid "A 2D silhouette of the print head (fan caps excluded)."
  337. msgstr "Una silhouette 2D della testina di stampa (cappucci ventola esclusi)."
  338. #: fdmprinter.def.json
  339. msgctxt "machine_head_with_fans_polygon label"
  340. msgid "Machine head & Fan polygon"
  341. msgstr "Poligono testina macchina e ventola"
  342. #: fdmprinter.def.json
  343. msgctxt "machine_head_with_fans_polygon description"
  344. msgid "A 2D silhouette of the print head (fan caps included)."
  345. msgstr "Una silhouette 2D della testina di stampa (cappucci ventola inclusi)."
  346. #: fdmprinter.def.json
  347. msgctxt "gantry_height label"
  348. msgid "Gantry height"
  349. msgstr "Altezza gantry"
  350. #: fdmprinter.def.json
  351. msgctxt "gantry_height description"
  352. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  353. msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)."
  354. #: fdmprinter.def.json
  355. msgctxt "machine_nozzle_id label"
  356. msgid "Nozzle ID"
  357. msgstr "ID ugello"
  358. #: fdmprinter.def.json
  359. msgctxt "machine_nozzle_id description"
  360. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  361. msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"."
  362. #: fdmprinter.def.json
  363. msgctxt "machine_nozzle_size label"
  364. msgid "Nozzle Diameter"
  365. msgstr "Diametro ugello"
  366. #: fdmprinter.def.json
  367. msgctxt "machine_nozzle_size description"
  368. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  369. msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard."
  370. #: fdmprinter.def.json
  371. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  372. msgid "Offset With Extruder"
  373. msgstr "Offset con estrusore"
  374. #: fdmprinter.def.json
  375. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  376. msgid "Apply the extruder offset to the coordinate system."
  377. msgstr "Applicare l’offset estrusore al sistema coordinate."
  378. #: fdmprinter.def.json
  379. msgctxt "extruder_prime_pos_z label"
  380. msgid "Extruder Prime Z Position"
  381. msgstr "Posizione Z innesco estrusore"
  382. #: fdmprinter.def.json
  383. msgctxt "extruder_prime_pos_z description"
  384. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  385. msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa."
  386. #: fdmprinter.def.json
  387. msgctxt "extruder_prime_pos_abs label"
  388. msgid "Absolute Extruder Prime Position"
  389. msgstr "Posizione assoluta di innesco estrusore"
  390. #: fdmprinter.def.json
  391. msgctxt "extruder_prime_pos_abs description"
  392. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  393. msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina."
  394. #: fdmprinter.def.json
  395. msgctxt "machine_max_feedrate_x label"
  396. msgid "Maximum Speed X"
  397. msgstr "Velocità massima X"
  398. #: fdmprinter.def.json
  399. msgctxt "machine_max_feedrate_x description"
  400. msgid "The maximum speed for the motor of the X-direction."
  401. msgstr "Indica la velocità massima del motore per la direzione X."
  402. #: fdmprinter.def.json
  403. msgctxt "machine_max_feedrate_y label"
  404. msgid "Maximum Speed Y"
  405. msgstr "Velocità massima Y"
  406. #: fdmprinter.def.json
  407. msgctxt "machine_max_feedrate_y description"
  408. msgid "The maximum speed for the motor of the Y-direction."
  409. msgstr "Indica la velocità massima del motore per la direzione Y."
  410. #: fdmprinter.def.json
  411. msgctxt "machine_max_feedrate_z label"
  412. msgid "Maximum Speed Z"
  413. msgstr "Velocità massima Z"
  414. #: fdmprinter.def.json
  415. msgctxt "machine_max_feedrate_z description"
  416. msgid "The maximum speed for the motor of the Z-direction."
  417. msgstr "Indica la velocità massima del motore per la direzione Z."
  418. #: fdmprinter.def.json
  419. msgctxt "machine_max_feedrate_e label"
  420. msgid "Maximum Feedrate"
  421. msgstr "Velocità di alimentazione massima"
  422. #: fdmprinter.def.json
  423. msgctxt "machine_max_feedrate_e description"
  424. msgid "The maximum speed of the filament."
  425. msgstr "Indica la velocità massima del filamento."
  426. #: fdmprinter.def.json
  427. msgctxt "machine_max_acceleration_x label"
  428. msgid "Maximum Acceleration X"
  429. msgstr "Accelerazione massima X"
  430. #: fdmprinter.def.json
  431. msgctxt "machine_max_acceleration_x description"
  432. msgid "Maximum acceleration for the motor of the X-direction"
  433. msgstr "Indica l’accelerazione massima del motore per la direzione X."
  434. #: fdmprinter.def.json
  435. msgctxt "machine_max_acceleration_y label"
  436. msgid "Maximum Acceleration Y"
  437. msgstr "Accelerazione massima Y"
  438. #: fdmprinter.def.json
  439. msgctxt "machine_max_acceleration_y description"
  440. msgid "Maximum acceleration for the motor of the Y-direction."
  441. msgstr "Indica l’accelerazione massima del motore per la direzione Y."
  442. #: fdmprinter.def.json
  443. msgctxt "machine_max_acceleration_z label"
  444. msgid "Maximum Acceleration Z"
  445. msgstr "Accelerazione massima Z"
  446. #: fdmprinter.def.json
  447. msgctxt "machine_max_acceleration_z description"
  448. msgid "Maximum acceleration for the motor of the Z-direction."
  449. msgstr "Indica l’accelerazione massima del motore per la direzione Z."
  450. #: fdmprinter.def.json
  451. msgctxt "machine_max_acceleration_e label"
  452. msgid "Maximum Filament Acceleration"
  453. msgstr "Accelerazione massima filamento"
  454. #: fdmprinter.def.json
  455. msgctxt "machine_max_acceleration_e description"
  456. msgid "Maximum acceleration for the motor of the filament."
  457. msgstr "Indica l’accelerazione massima del motore del filamento."
  458. #: fdmprinter.def.json
  459. msgctxt "machine_acceleration label"
  460. msgid "Default Acceleration"
  461. msgstr "Accelerazione predefinita"
  462. #: fdmprinter.def.json
  463. msgctxt "machine_acceleration description"
  464. msgid "The default acceleration of print head movement."
  465. msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa."
  466. #: fdmprinter.def.json
  467. msgctxt "machine_max_jerk_xy label"
  468. msgid "Default X-Y Jerk"
  469. msgstr "Jerk X-Y predefinito"
  470. #: fdmprinter.def.json
  471. msgctxt "machine_max_jerk_xy description"
  472. msgid "Default jerk for movement in the horizontal plane."
  473. msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale."
  474. #: fdmprinter.def.json
  475. msgctxt "machine_max_jerk_z label"
  476. msgid "Default Z Jerk"
  477. msgstr "Jerk Z predefinito"
  478. #: fdmprinter.def.json
  479. msgctxt "machine_max_jerk_z description"
  480. msgid "Default jerk for the motor of the Z-direction."
  481. msgstr "Indica il jerk predefinito del motore per la direzione Z."
  482. #: fdmprinter.def.json
  483. msgctxt "machine_max_jerk_e label"
  484. msgid "Default Filament Jerk"
  485. msgstr "Jerk filamento predefinito"
  486. #: fdmprinter.def.json
  487. msgctxt "machine_max_jerk_e description"
  488. msgid "Default jerk for the motor of the filament."
  489. msgstr "Indica il jerk predefinito del motore del filamento."
  490. #: fdmprinter.def.json
  491. msgctxt "machine_steps_per_mm_x label"
  492. msgid "Steps per Millimeter (X)"
  493. msgstr "Passi per millimetro (X)"
  494. #: fdmprinter.def.json
  495. msgctxt "machine_steps_per_mm_x description"
  496. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  497. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X."
  498. #: fdmprinter.def.json
  499. msgctxt "machine_steps_per_mm_y label"
  500. msgid "Steps per Millimeter (Y)"
  501. msgstr "Passi per millimetro (Y)"
  502. #: fdmprinter.def.json
  503. msgctxt "machine_steps_per_mm_y description"
  504. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  505. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y."
  506. #: fdmprinter.def.json
  507. msgctxt "machine_steps_per_mm_z label"
  508. msgid "Steps per Millimeter (Z)"
  509. msgstr "Passi per millimetro (Z)"
  510. #: fdmprinter.def.json
  511. msgctxt "machine_steps_per_mm_z description"
  512. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  513. msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z."
  514. #: fdmprinter.def.json
  515. msgctxt "machine_steps_per_mm_e label"
  516. msgid "Steps per Millimeter (E)"
  517. msgstr "Passi per millimetro (E)"
  518. #: fdmprinter.def.json
  519. msgctxt "machine_steps_per_mm_e description"
  520. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  521. msgstr "I passi del motore passo-passo in un millimetro di estrusione."
  522. #: fdmprinter.def.json
  523. msgctxt "machine_endstop_positive_direction_x label"
  524. msgid "X Endstop in Positive Direction"
  525. msgstr "Endstop X in direzione positiva"
  526. #: fdmprinter.def.json
  527. msgctxt "machine_endstop_positive_direction_x description"
  528. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  529. msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)."
  530. #: fdmprinter.def.json
  531. msgctxt "machine_endstop_positive_direction_y label"
  532. msgid "Y Endstop in Positive Direction"
  533. msgstr "Endstop Y in direzione positiva"
  534. #: fdmprinter.def.json
  535. msgctxt "machine_endstop_positive_direction_y description"
  536. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  537. msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)."
  538. #: fdmprinter.def.json
  539. msgctxt "machine_endstop_positive_direction_z label"
  540. msgid "Z Endstop in Positive Direction"
  541. msgstr "Endstop Z in direzione positiva"
  542. #: fdmprinter.def.json
  543. msgctxt "machine_endstop_positive_direction_z description"
  544. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  545. msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)."
  546. #: fdmprinter.def.json
  547. msgctxt "machine_minimum_feedrate label"
  548. msgid "Minimum Feedrate"
  549. msgstr "Velocità di alimentazione minima"
  550. #: fdmprinter.def.json
  551. msgctxt "machine_minimum_feedrate description"
  552. msgid "The minimal movement speed of the print head."
  553. msgstr "Indica la velocità di spostamento minima della testina di stampa."
  554. #: fdmprinter.def.json
  555. msgctxt "machine_feeder_wheel_diameter label"
  556. msgid "Feeder Wheel Diameter"
  557. msgstr "Diametro ruota del tirafilo"
  558. #: fdmprinter.def.json
  559. msgctxt "machine_feeder_wheel_diameter description"
  560. msgid "The diameter of the wheel that drives the material in the feeder."
  561. msgstr "Il diametro della ruota che guida il materiale nel tirafilo."
  562. #: fdmprinter.def.json
  563. msgctxt "resolution label"
  564. msgid "Quality"
  565. msgstr "Qualità"
  566. #: fdmprinter.def.json
  567. msgctxt "resolution description"
  568. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  569. msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)"
  570. #: fdmprinter.def.json
  571. msgctxt "layer_height label"
  572. msgid "Layer Height"
  573. msgstr "Altezza dello strato"
  574. #: fdmprinter.def.json
  575. msgctxt "layer_height description"
  576. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  577. 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."
  578. #: fdmprinter.def.json
  579. msgctxt "layer_height_0 label"
  580. msgid "Initial Layer Height"
  581. msgstr "Altezza dello strato iniziale"
  582. #: fdmprinter.def.json
  583. msgctxt "layer_height_0 description"
  584. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  585. msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa."
  586. #: fdmprinter.def.json
  587. msgctxt "line_width label"
  588. msgid "Line Width"
  589. msgstr "Larghezza della linea"
  590. #: fdmprinter.def.json
  591. msgctxt "line_width description"
  592. 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."
  593. 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."
  594. #: fdmprinter.def.json
  595. msgctxt "wall_line_width label"
  596. msgid "Wall Line Width"
  597. msgstr "Larghezza delle linee perimetrali"
  598. #: fdmprinter.def.json
  599. msgctxt "wall_line_width description"
  600. msgid "Width of a single wall line."
  601. msgstr "Indica la larghezza di una singola linea perimetrale."
  602. #: fdmprinter.def.json
  603. msgctxt "wall_line_width_0 label"
  604. msgid "Outer Wall Line Width"
  605. msgstr "Larghezza delle linee della parete esterna"
  606. #: fdmprinter.def.json
  607. msgctxt "wall_line_width_0 description"
  608. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  609. msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati."
  610. #: fdmprinter.def.json
  611. msgctxt "wall_line_width_x label"
  612. msgid "Inner Wall(s) Line Width"
  613. msgstr "Larghezza delle linee della parete interna"
  614. #: fdmprinter.def.json
  615. msgctxt "wall_line_width_x description"
  616. msgid "Width of a single wall line for all wall lines except the outermost one."
  617. msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna."
  618. #: fdmprinter.def.json
  619. msgctxt "skin_line_width label"
  620. msgid "Top/Bottom Line Width"
  621. msgstr "Larghezza delle linee superiore/inferiore"
  622. #: fdmprinter.def.json
  623. msgctxt "skin_line_width description"
  624. msgid "Width of a single top/bottom line."
  625. msgstr "Indica la larghezza di una singola linea superiore/inferiore."
  626. #: fdmprinter.def.json
  627. msgctxt "infill_line_width label"
  628. msgid "Infill Line Width"
  629. msgstr "Larghezza delle linee di riempimento"
  630. #: fdmprinter.def.json
  631. msgctxt "infill_line_width description"
  632. msgid "Width of a single infill line."
  633. msgstr "Indica la larghezza di una singola linea di riempimento."
  634. #: fdmprinter.def.json
  635. msgctxt "skirt_brim_line_width label"
  636. msgid "Skirt/Brim Line Width"
  637. msgstr "Larghezza delle linee dello skirt/brim"
  638. #: fdmprinter.def.json
  639. msgctxt "skirt_brim_line_width description"
  640. msgid "Width of a single skirt or brim line."
  641. msgstr "Indica la larghezza di una singola linea dello skirt o del brim."
  642. #: fdmprinter.def.json
  643. msgctxt "support_line_width label"
  644. msgid "Support Line Width"
  645. msgstr "Larghezza delle linee di supporto"
  646. #: fdmprinter.def.json
  647. msgctxt "support_line_width description"
  648. msgid "Width of a single support structure line."
  649. msgstr "Indica la larghezza di una singola linea di supporto."
  650. #: fdmprinter.def.json
  651. msgctxt "support_interface_line_width label"
  652. msgid "Support Interface Line Width"
  653. msgstr "Larghezza della linea dell’interfaccia di supporto"
  654. #: fdmprinter.def.json
  655. msgctxt "support_interface_line_width description"
  656. msgid "Width of a single line of support roof or floor."
  657. msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore."
  658. #: fdmprinter.def.json
  659. msgctxt "support_roof_line_width label"
  660. msgid "Support Roof Line Width"
  661. msgstr "Larghezza delle linee di supporto superiori"
  662. #: fdmprinter.def.json
  663. msgctxt "support_roof_line_width description"
  664. msgid "Width of a single support roof line."
  665. msgstr "Indica la larghezza di una singola linea di supporto superiore."
  666. #: fdmprinter.def.json
  667. msgctxt "support_bottom_line_width label"
  668. msgid "Support Floor Line Width"
  669. msgstr "Larghezza della linea di supporto inferiore"
  670. #: fdmprinter.def.json
  671. msgctxt "support_bottom_line_width description"
  672. msgid "Width of a single support floor line."
  673. msgstr "Indica la larghezza di una singola linea di supporto inferiore."
  674. #: fdmprinter.def.json
  675. msgctxt "prime_tower_line_width label"
  676. msgid "Prime Tower Line Width"
  677. msgstr "Larghezza della linea della torre di innesco"
  678. #: fdmprinter.def.json
  679. msgctxt "prime_tower_line_width description"
  680. msgid "Width of a single prime tower line."
  681. msgstr "Indica la larghezza di una singola linea della torre di innesco."
  682. #: fdmprinter.def.json
  683. msgctxt "initial_layer_line_width_factor label"
  684. msgid "Initial Layer Line Width"
  685. msgstr "Larghezza linea strato iniziale"
  686. #: fdmprinter.def.json
  687. msgctxt "initial_layer_line_width_factor description"
  688. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  689. msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano"
  690. #: fdmprinter.def.json
  691. msgctxt "shell label"
  692. msgid "Shell"
  693. msgstr "Guscio"
  694. #: fdmprinter.def.json
  695. msgctxt "shell description"
  696. msgid "Shell"
  697. msgstr "Guscio"
  698. #: fdmprinter.def.json
  699. msgctxt "wall_extruder_nr label"
  700. msgid "Wall Extruder"
  701. msgstr "Estrusore pareti"
  702. #: fdmprinter.def.json
  703. msgctxt "wall_extruder_nr description"
  704. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  705. msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla."
  706. #: fdmprinter.def.json
  707. msgctxt "wall_0_extruder_nr label"
  708. msgid "Outer Wall Extruder"
  709. msgstr "Estrusore parete esterna"
  710. #: fdmprinter.def.json
  711. msgctxt "wall_0_extruder_nr description"
  712. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  713. msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla."
  714. #: fdmprinter.def.json
  715. msgctxt "wall_x_extruder_nr label"
  716. msgid "Inner Wall Extruder"
  717. msgstr "Estrusore parete interna"
  718. #: fdmprinter.def.json
  719. msgctxt "wall_x_extruder_nr description"
  720. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  721. msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla."
  722. #: fdmprinter.def.json
  723. msgctxt "wall_thickness label"
  724. msgid "Wall Thickness"
  725. msgstr "Spessore delle pareti"
  726. #: fdmprinter.def.json
  727. msgctxt "wall_thickness description"
  728. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  729. msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti."
  730. #: fdmprinter.def.json
  731. msgctxt "wall_line_count label"
  732. msgid "Wall Line Count"
  733. msgstr "Numero delle linee perimetrali"
  734. #: fdmprinter.def.json
  735. msgctxt "wall_line_count description"
  736. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  737. msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero."
  738. #: fdmprinter.def.json
  739. msgctxt "wall_0_wipe_dist label"
  740. msgid "Outer Wall Wipe Distance"
  741. msgstr "Distanza del riempimento parete esterna"
  742. #: fdmprinter.def.json
  743. msgctxt "wall_0_wipe_dist description"
  744. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  745. msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z."
  746. #: fdmprinter.def.json
  747. msgctxt "roofing_extruder_nr label"
  748. msgid "Top Surface Skin Extruder"
  749. msgstr "Estrusore rivestimento superficie superiore"
  750. #: fdmprinter.def.json
  751. msgctxt "roofing_extruder_nr description"
  752. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  753. msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla."
  754. #: fdmprinter.def.json
  755. msgctxt "roofing_layer_count label"
  756. msgid "Top Surface Skin Layers"
  757. msgstr "Strati di rivestimento superficie superiore"
  758. #: fdmprinter.def.json
  759. msgctxt "roofing_layer_count description"
  760. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  761. msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata."
  762. #: fdmprinter.def.json
  763. msgctxt "top_bottom_extruder_nr label"
  764. msgid "Top/Bottom Extruder"
  765. msgstr "Estrusore superiore/inferiore"
  766. #: fdmprinter.def.json
  767. msgctxt "top_bottom_extruder_nr description"
  768. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  769. msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla."
  770. #: fdmprinter.def.json
  771. msgctxt "top_bottom_thickness label"
  772. msgid "Top/Bottom Thickness"
  773. msgstr "Spessore dello strato superiore/inferiore"
  774. #: fdmprinter.def.json
  775. msgctxt "top_bottom_thickness description"
  776. 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."
  777. 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."
  778. #: fdmprinter.def.json
  779. msgctxt "top_thickness label"
  780. msgid "Top Thickness"
  781. msgstr "Spessore dello strato superiore"
  782. #: fdmprinter.def.json
  783. msgctxt "top_thickness description"
  784. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  785. msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori."
  786. #: fdmprinter.def.json
  787. msgctxt "top_layers label"
  788. msgid "Top Layers"
  789. msgstr "Strati superiori"
  790. #: fdmprinter.def.json
  791. msgctxt "top_layers description"
  792. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  793. msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero."
  794. #: fdmprinter.def.json
  795. msgctxt "bottom_thickness label"
  796. msgid "Bottom Thickness"
  797. msgstr "Spessore degli strati inferiori"
  798. #: fdmprinter.def.json
  799. msgctxt "bottom_thickness description"
  800. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  801. msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori."
  802. #: fdmprinter.def.json
  803. msgctxt "bottom_layers label"
  804. msgid "Bottom Layers"
  805. msgstr "Strati inferiori"
  806. #: fdmprinter.def.json
  807. msgctxt "bottom_layers description"
  808. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  809. msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero."
  810. #: fdmprinter.def.json
  811. msgctxt "top_bottom_pattern label"
  812. msgid "Top/Bottom Pattern"
  813. msgstr "Configurazione dello strato superiore/inferiore"
  814. #: fdmprinter.def.json
  815. msgctxt "top_bottom_pattern description"
  816. msgid "The pattern of the top/bottom layers."
  817. msgstr "Indica la configurazione degli strati superiori/inferiori."
  818. #: fdmprinter.def.json
  819. msgctxt "top_bottom_pattern option lines"
  820. msgid "Lines"
  821. msgstr "Linee"
  822. #: fdmprinter.def.json
  823. msgctxt "top_bottom_pattern option concentric"
  824. msgid "Concentric"
  825. msgstr "Concentriche"
  826. #: fdmprinter.def.json
  827. msgctxt "top_bottom_pattern option zigzag"
  828. msgid "Zig Zag"
  829. msgstr "Zig Zag"
  830. #: fdmprinter.def.json
  831. msgctxt "top_bottom_pattern_0 label"
  832. msgid "Bottom Pattern Initial Layer"
  833. msgstr "Strato iniziale configurazione inferiore"
  834. #: fdmprinter.def.json
  835. msgctxt "top_bottom_pattern_0 description"
  836. msgid "The pattern on the bottom of the print on the first layer."
  837. msgstr "La configurazione al fondo della stampa sul primo strato."
  838. #: fdmprinter.def.json
  839. msgctxt "top_bottom_pattern_0 option lines"
  840. msgid "Lines"
  841. msgstr "Linee"
  842. #: fdmprinter.def.json
  843. msgctxt "top_bottom_pattern_0 option concentric"
  844. msgid "Concentric"
  845. msgstr "Concentriche"
  846. #: fdmprinter.def.json
  847. msgctxt "top_bottom_pattern_0 option zigzag"
  848. msgid "Zig Zag"
  849. msgstr "Zig Zag"
  850. #: fdmprinter.def.json
  851. msgctxt "skin_angles label"
  852. msgid "Top/Bottom Line Directions"
  853. msgstr "Direzioni delle linee superiori/inferiori"
  854. #: fdmprinter.def.json
  855. msgctxt "skin_angles description"
  856. 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)."
  857. 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)."
  858. #: fdmprinter.def.json
  859. msgctxt "wall_0_inset label"
  860. msgid "Outer Wall Inset"
  861. msgstr "Inserto parete esterna"
  862. #: fdmprinter.def.json
  863. msgctxt "wall_0_inset description"
  864. 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."
  865. 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."
  866. #: fdmprinter.def.json
  867. msgctxt "optimize_wall_printing_order label"
  868. msgid "Optimize Wall Printing Order"
  869. msgstr "Ottimizzazione sequenza di stampa pareti"
  870. #: fdmprinter.def.json
  871. msgctxt "optimize_wall_printing_order description"
  872. 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."
  873. 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."
  874. #: fdmprinter.def.json
  875. msgctxt "outer_inset_first label"
  876. msgid "Outer Before Inner Walls"
  877. msgstr "Pareti esterne prima di quelle interne"
  878. #: fdmprinter.def.json
  879. msgctxt "outer_inset_first description"
  880. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  881. msgstr "Quando abilitata, questa funzione stampa le pareti nell’ordine dall’esterno all’interno. In tal modo è possibile migliorare la precisione dimensionale in X e Y quando si utilizza una plastica ad alta viscosità come ABS; tuttavia può diminuire la qualità di stampa della superficie esterna, in particolare sugli sbalzi."
  882. #: fdmprinter.def.json
  883. msgctxt "alternate_extra_perimeter label"
  884. msgid "Alternate Extra Wall"
  885. msgstr "Parete supplementare alternativa"
  886. #: fdmprinter.def.json
  887. msgctxt "alternate_extra_perimeter description"
  888. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  889. msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti."
  890. #: fdmprinter.def.json
  891. msgctxt "travel_compensate_overlapping_walls_enabled label"
  892. msgid "Compensate Wall Overlaps"
  893. msgstr "Compensazione di sovrapposizioni di pareti"
  894. #: fdmprinter.def.json
  895. msgctxt "travel_compensate_overlapping_walls_enabled description"
  896. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  897. msgstr "Compensa il flusso per le parti di una parete che viene stampata dove è già presente una parete."
  898. #: fdmprinter.def.json
  899. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  900. msgid "Compensate Outer Wall Overlaps"
  901. msgstr "Compensazione di sovrapposizioni pareti esterne"
  902. #: fdmprinter.def.json
  903. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  904. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  905. msgstr "Compensa il flusso per le parti di una parete esterna che viene stampata dove è già presente una parete."
  906. #: fdmprinter.def.json
  907. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  908. msgid "Compensate Inner Wall Overlaps"
  909. msgstr "Compensazione di sovrapposizioni pareti interne"
  910. #: fdmprinter.def.json
  911. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  912. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  913. msgstr "Compensa il flusso per le parti di una parete interna che viene stampata dove è già presente una parete."
  914. #: fdmprinter.def.json
  915. msgctxt "fill_perimeter_gaps label"
  916. msgid "Fill Gaps Between Walls"
  917. msgstr "Riempimento degli interstizi tra le pareti"
  918. #: fdmprinter.def.json
  919. msgctxt "fill_perimeter_gaps description"
  920. msgid "Fills the gaps between walls where no walls fit."
  921. msgstr "Riempie gli spazi dove non è possibile inserire pareti."
  922. #: fdmprinter.def.json
  923. msgctxt "fill_perimeter_gaps option nowhere"
  924. msgid "Nowhere"
  925. msgstr "In nessun punto"
  926. #: fdmprinter.def.json
  927. msgctxt "fill_perimeter_gaps option everywhere"
  928. msgid "Everywhere"
  929. msgstr "In tutti i possibili punti"
  930. #: fdmprinter.def.json
  931. msgctxt "filter_out_tiny_gaps label"
  932. msgid "Filter Out Tiny Gaps"
  933. msgstr "Esclusione spazi minimi"
  934. #: fdmprinter.def.json
  935. msgctxt "filter_out_tiny_gaps description"
  936. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  937. msgstr "Esclude gli spazi minimi per ridurre le gocce sull’esterno del modello."
  938. #: fdmprinter.def.json
  939. msgctxt "fill_outline_gaps label"
  940. msgid "Print Thin Walls"
  941. msgstr "Stampa pareti sottili"
  942. #: fdmprinter.def.json
  943. msgctxt "fill_outline_gaps description"
  944. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  945. msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello."
  946. #: fdmprinter.def.json
  947. msgctxt "xy_offset label"
  948. msgid "Horizontal Expansion"
  949. msgstr "Espansione orizzontale"
  950. #: fdmprinter.def.json
  951. msgctxt "xy_offset description"
  952. 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."
  953. 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."
  954. #: fdmprinter.def.json
  955. msgctxt "xy_offset_layer_0 label"
  956. msgid "Initial Layer Horizontal Expansion"
  957. msgstr "Espansione orizzontale dello strato iniziale"
  958. #: fdmprinter.def.json
  959. msgctxt "xy_offset_layer_0 description"
  960. 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\"."
  961. 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\"."
  962. #: fdmprinter.def.json
  963. msgctxt "z_seam_type label"
  964. msgid "Z Seam Alignment"
  965. msgstr "Allineamento delle giunzioni a Z"
  966. #: fdmprinter.def.json
  967. msgctxt "z_seam_type description"
  968. 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."
  969. 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."
  970. #: fdmprinter.def.json
  971. msgctxt "z_seam_type option back"
  972. msgid "User Specified"
  973. msgstr "Specificato dall’utente"
  974. #: fdmprinter.def.json
  975. msgctxt "z_seam_type option shortest"
  976. msgid "Shortest"
  977. msgstr "Il più breve"
  978. #: fdmprinter.def.json
  979. msgctxt "z_seam_type option random"
  980. msgid "Random"
  981. msgstr "Casuale"
  982. #: fdmprinter.def.json
  983. msgctxt "z_seam_type option sharpest_corner"
  984. msgid "Sharpest Corner"
  985. msgstr "Angolo più acuto"
  986. #: fdmprinter.def.json
  987. msgctxt "z_seam_x label"
  988. msgid "Z Seam X"
  989. msgstr "Giunzione Z X"
  990. #: fdmprinter.def.json
  991. msgctxt "z_seam_x description"
  992. msgid "The X coordinate of the position near where to start printing each part in a layer."
  993. msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  994. #: fdmprinter.def.json
  995. msgctxt "z_seam_y label"
  996. msgid "Z Seam Y"
  997. msgstr "Giunzione Z Y"
  998. #: fdmprinter.def.json
  999. msgctxt "z_seam_y description"
  1000. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1001. msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato."
  1002. #: fdmprinter.def.json
  1003. msgctxt "z_seam_corner label"
  1004. msgid "Seam Corner Preference"
  1005. msgstr "Preferenze angolo giunzione"
  1006. #: fdmprinter.def.json
  1007. msgctxt "z_seam_corner description"
  1008. 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."
  1009. 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."
  1010. #: fdmprinter.def.json
  1011. msgctxt "z_seam_corner option z_seam_corner_none"
  1012. msgid "None"
  1013. msgstr "Nessuno"
  1014. #: fdmprinter.def.json
  1015. msgctxt "z_seam_corner option z_seam_corner_inner"
  1016. msgid "Hide Seam"
  1017. msgstr "Nascondi giunzione"
  1018. #: fdmprinter.def.json
  1019. msgctxt "z_seam_corner option z_seam_corner_outer"
  1020. msgid "Expose Seam"
  1021. msgstr "Esponi giunzione"
  1022. #: fdmprinter.def.json
  1023. msgctxt "z_seam_corner option z_seam_corner_any"
  1024. msgid "Hide or Expose Seam"
  1025. msgstr "Nascondi o esponi giunzione"
  1026. #: fdmprinter.def.json
  1027. msgctxt "z_seam_relative label"
  1028. msgid "Z Seam Relative"
  1029. msgstr "Riferimento giunzione Z"
  1030. #: fdmprinter.def.json
  1031. msgctxt "z_seam_relative description"
  1032. 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."
  1033. 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."
  1034. #: fdmprinter.def.json
  1035. msgctxt "skin_no_small_gaps_heuristic label"
  1036. msgid "Ignore Small Z Gaps"
  1037. msgstr "Ignora i piccoli interstizi a Z"
  1038. #: fdmprinter.def.json
  1039. msgctxt "skin_no_small_gaps_heuristic description"
  1040. msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  1041. msgstr "Quando il modello presenta piccoli spazi vuoti verticali, circa il 5% del tempo di calcolo supplementare può essere utilizzato per la generazione di rivestimenti esterni superiori ed inferiori in questi interstizi. In questo caso disabilitare l’impostazione."
  1042. #: fdmprinter.def.json
  1043. msgctxt "skin_outline_count label"
  1044. msgid "Extra Skin Wall Count"
  1045. msgstr "Numero di pareti di rivestimento esterno supplementari"
  1046. #: fdmprinter.def.json
  1047. msgctxt "skin_outline_count description"
  1048. 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."
  1049. 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."
  1050. #: fdmprinter.def.json
  1051. msgctxt "ironing_enabled label"
  1052. msgid "Enable Ironing"
  1053. msgstr "Abilita stiratura"
  1054. #: fdmprinter.def.json
  1055. msgctxt "ironing_enabled description"
  1056. msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  1057. msgstr "Ulteriore passaggio sopra la superficie superiore, senza estrusione di materiale. Ha lo scopo di fondere ulteriormente la plastica alla sommità, creando una superficie più uniforme."
  1058. #: fdmprinter.def.json
  1059. msgctxt "ironing_only_highest_layer label"
  1060. msgid "Iron Only Highest Layer"
  1061. msgstr "Stiramento del solo strato più elevato"
  1062. #: fdmprinter.def.json
  1063. msgctxt "ironing_only_highest_layer description"
  1064. 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."
  1065. 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."
  1066. #: fdmprinter.def.json
  1067. msgctxt "ironing_pattern label"
  1068. msgid "Ironing Pattern"
  1069. msgstr "Configurazione di stiratura"
  1070. #: fdmprinter.def.json
  1071. msgctxt "ironing_pattern description"
  1072. msgid "The pattern to use for ironing top surfaces."
  1073. msgstr "Configurazione utilizzata per la stiratura della superficie superiore."
  1074. #: fdmprinter.def.json
  1075. msgctxt "ironing_pattern option concentric"
  1076. msgid "Concentric"
  1077. msgstr "Concentrica"
  1078. #: fdmprinter.def.json
  1079. msgctxt "ironing_pattern option zigzag"
  1080. msgid "Zig Zag"
  1081. msgstr "Zig Zag"
  1082. #: fdmprinter.def.json
  1083. msgctxt "ironing_line_spacing label"
  1084. msgid "Ironing Line Spacing"
  1085. msgstr "Spaziatura delle linee di stiratura"
  1086. #: fdmprinter.def.json
  1087. msgctxt "ironing_line_spacing description"
  1088. msgid "The distance between the lines of ironing."
  1089. msgstr "Distanza tra le linee di stiratura."
  1090. #: fdmprinter.def.json
  1091. msgctxt "ironing_flow label"
  1092. msgid "Ironing Flow"
  1093. msgstr "Flusso di stiratura"
  1094. #: fdmprinter.def.json
  1095. msgctxt "ironing_flow description"
  1096. 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."
  1097. 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."
  1098. #: fdmprinter.def.json
  1099. msgctxt "ironing_inset label"
  1100. msgid "Ironing Inset"
  1101. msgstr "Inserto di stiratura"
  1102. #: fdmprinter.def.json
  1103. msgctxt "ironing_inset description"
  1104. 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."
  1105. 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."
  1106. #: fdmprinter.def.json
  1107. msgctxt "speed_ironing label"
  1108. msgid "Ironing Speed"
  1109. msgstr "Velocità di stiratura"
  1110. #: fdmprinter.def.json
  1111. msgctxt "speed_ironing description"
  1112. msgid "The speed at which to pass over the top surface."
  1113. msgstr "Velocità alla quale passare sopra la superficie superiore"
  1114. #: fdmprinter.def.json
  1115. msgctxt "acceleration_ironing label"
  1116. msgid "Ironing Acceleration"
  1117. msgstr "Accelerazione di stiratura"
  1118. #: fdmprinter.def.json
  1119. msgctxt "acceleration_ironing description"
  1120. msgid "The acceleration with which ironing is performed."
  1121. msgstr "L’accelerazione con cui viene effettuata la stiratura."
  1122. #: fdmprinter.def.json
  1123. msgctxt "jerk_ironing label"
  1124. msgid "Ironing Jerk"
  1125. msgstr "Jerk stiratura"
  1126. #: fdmprinter.def.json
  1127. msgctxt "jerk_ironing description"
  1128. msgid "The maximum instantaneous velocity change while performing ironing."
  1129. msgstr "Indica la variazione della velocità istantanea massima durante la stiratura."
  1130. #: fdmprinter.def.json
  1131. msgctxt "infill label"
  1132. msgid "Infill"
  1133. msgstr "Riempimento"
  1134. #: fdmprinter.def.json
  1135. msgctxt "infill description"
  1136. msgid "Infill"
  1137. msgstr "Riempimento"
  1138. #: fdmprinter.def.json
  1139. msgctxt "infill_extruder_nr label"
  1140. msgid "Infill Extruder"
  1141. msgstr "Estrusore riempimento"
  1142. #: fdmprinter.def.json
  1143. msgctxt "infill_extruder_nr description"
  1144. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1145. msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla."
  1146. #: fdmprinter.def.json
  1147. msgctxt "infill_sparse_density label"
  1148. msgid "Infill Density"
  1149. msgstr "Densità del riempimento"
  1150. #: fdmprinter.def.json
  1151. msgctxt "infill_sparse_density description"
  1152. msgid "Adjusts the density of infill of the print."
  1153. msgstr "Regola la densità del riempimento della stampa."
  1154. #: fdmprinter.def.json
  1155. msgctxt "infill_line_distance label"
  1156. msgid "Infill Line Distance"
  1157. msgstr "Distanza tra le linee di riempimento"
  1158. #: fdmprinter.def.json
  1159. msgctxt "infill_line_distance description"
  1160. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1161. 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."
  1162. #: fdmprinter.def.json
  1163. msgctxt "infill_pattern label"
  1164. msgid "Infill Pattern"
  1165. msgstr "Configurazione di riempimento"
  1166. #: fdmprinter.def.json
  1167. msgctxt "infill_pattern description"
  1168. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  1169. msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione."
  1170. #: fdmprinter.def.json
  1171. msgctxt "infill_pattern option grid"
  1172. msgid "Grid"
  1173. msgstr "Griglia"
  1174. #: fdmprinter.def.json
  1175. msgctxt "infill_pattern option lines"
  1176. msgid "Lines"
  1177. msgstr "Linee"
  1178. #: fdmprinter.def.json
  1179. msgctxt "infill_pattern option triangles"
  1180. msgid "Triangles"
  1181. msgstr "Triangoli"
  1182. #: fdmprinter.def.json
  1183. msgctxt "infill_pattern option trihexagon"
  1184. msgid "Tri-Hexagon"
  1185. msgstr "Tri-esagonale"
  1186. #: fdmprinter.def.json
  1187. msgctxt "infill_pattern option cubic"
  1188. msgid "Cubic"
  1189. msgstr "Cubo"
  1190. #: fdmprinter.def.json
  1191. msgctxt "infill_pattern option cubicsubdiv"
  1192. msgid "Cubic Subdivision"
  1193. msgstr "Suddivisione in cubi"
  1194. #: fdmprinter.def.json
  1195. msgctxt "infill_pattern option tetrahedral"
  1196. msgid "Octet"
  1197. msgstr "Ottagonale"
  1198. #: fdmprinter.def.json
  1199. msgctxt "infill_pattern option quarter_cubic"
  1200. msgid "Quarter Cubic"
  1201. msgstr "Quarto di cubo"
  1202. #: fdmprinter.def.json
  1203. msgctxt "infill_pattern option concentric"
  1204. msgid "Concentric"
  1205. msgstr "Concentriche"
  1206. #: fdmprinter.def.json
  1207. msgctxt "infill_pattern option concentric_3d"
  1208. msgid "Concentric 3D"
  1209. msgstr "3D concentrica"
  1210. #: fdmprinter.def.json
  1211. msgctxt "infill_pattern option zigzag"
  1212. msgid "Zig Zag"
  1213. msgstr "Zig Zag"
  1214. #: fdmprinter.def.json
  1215. msgctxt "infill_pattern option cross"
  1216. msgid "Cross"
  1217. msgstr "Incrociata"
  1218. #: fdmprinter.def.json
  1219. msgctxt "infill_pattern option cross_3d"
  1220. msgid "Cross 3D"
  1221. msgstr "Incrociata 3D"
  1222. #: fdmprinter.def.json
  1223. msgctxt "zig_zaggify_infill label"
  1224. msgid "Connect Infill Lines"
  1225. msgstr "Collegamento delle linee di riempimento"
  1226. #: fdmprinter.def.json
  1227. msgctxt "zig_zaggify_infill description"
  1228. 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."
  1229. 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."
  1230. #: fdmprinter.def.json
  1231. msgctxt "infill_angles label"
  1232. msgid "Infill Line Directions"
  1233. msgstr "Direzioni delle linee di riempimento"
  1234. #: fdmprinter.def.json
  1235. msgctxt "infill_angles description"
  1236. 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)."
  1237. 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)."
  1238. #: fdmprinter.def.json
  1239. msgctxt "infill_offset_x label"
  1240. msgid "Infill X Offset"
  1241. msgstr "Offset X riempimento"
  1242. #: fdmprinter.def.json
  1243. msgctxt "infill_offset_x description"
  1244. msgid "The infill pattern is moved this distance along the X axis."
  1245. msgstr "Il riempimento si sposta di questa distanza lungo l'asse X."
  1246. #: fdmprinter.def.json
  1247. msgctxt "infill_offset_y label"
  1248. msgid "Infill Y Offset"
  1249. msgstr "Offset Y riempimento"
  1250. #: fdmprinter.def.json
  1251. msgctxt "infill_offset_y description"
  1252. msgid "The infill pattern is moved this distance along the Y axis."
  1253. msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y."
  1254. #: fdmprinter.def.json
  1255. msgctxt "sub_div_rad_add label"
  1256. msgid "Cubic Subdivision Shell"
  1257. msgstr "Guscio suddivisione in cubi"
  1258. #: fdmprinter.def.json
  1259. msgctxt "sub_div_rad_add description"
  1260. 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."
  1261. 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."
  1262. #: fdmprinter.def.json
  1263. msgctxt "infill_overlap label"
  1264. msgid "Infill Overlap Percentage"
  1265. msgstr "Percentuale di sovrapposizione del riempimento"
  1266. #: fdmprinter.def.json
  1267. msgctxt "infill_overlap description"
  1268. 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."
  1269. 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."
  1270. #: fdmprinter.def.json
  1271. msgctxt "infill_overlap_mm label"
  1272. msgid "Infill Overlap"
  1273. msgstr "Sovrapposizione del riempimento"
  1274. #: fdmprinter.def.json
  1275. msgctxt "infill_overlap_mm description"
  1276. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1277. msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  1278. #: fdmprinter.def.json
  1279. msgctxt "skin_overlap label"
  1280. msgid "Skin Overlap Percentage"
  1281. msgstr "Percentuale di sovrapposizione del rivestimento esterno"
  1282. #: fdmprinter.def.json
  1283. msgctxt "skin_overlap description"
  1284. msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  1285. msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna."
  1286. #: fdmprinter.def.json
  1287. msgctxt "skin_overlap_mm label"
  1288. msgid "Skin Overlap"
  1289. msgstr "Sovrapposizione del rivestimento esterno"
  1290. #: fdmprinter.def.json
  1291. msgctxt "skin_overlap_mm description"
  1292. msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  1293. msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno."
  1294. #: fdmprinter.def.json
  1295. msgctxt "infill_wipe_dist label"
  1296. msgid "Infill Wipe Distance"
  1297. msgstr "Distanza del riempimento"
  1298. #: fdmprinter.def.json
  1299. msgctxt "infill_wipe_dist description"
  1300. 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."
  1301. 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."
  1302. #: fdmprinter.def.json
  1303. msgctxt "infill_sparse_thickness label"
  1304. msgid "Infill Layer Thickness"
  1305. msgstr "Spessore dello strato di riempimento"
  1306. #: fdmprinter.def.json
  1307. msgctxt "infill_sparse_thickness description"
  1308. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1309. 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."
  1310. #: fdmprinter.def.json
  1311. msgctxt "gradual_infill_steps label"
  1312. msgid "Gradual Infill Steps"
  1313. msgstr "Fasi di riempimento graduale"
  1314. #: fdmprinter.def.json
  1315. msgctxt "gradual_infill_steps description"
  1316. 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."
  1317. 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."
  1318. #: fdmprinter.def.json
  1319. msgctxt "gradual_infill_step_height label"
  1320. msgid "Gradual Infill Step Height"
  1321. msgstr "Altezza fasi di riempimento graduale"
  1322. #: fdmprinter.def.json
  1323. msgctxt "gradual_infill_step_height description"
  1324. msgid "The height of infill of a given density before switching to half the density."
  1325. msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità."
  1326. #: fdmprinter.def.json
  1327. msgctxt "infill_before_walls label"
  1328. msgid "Infill Before Walls"
  1329. msgstr "Riempimento prima delle pareti"
  1330. #: fdmprinter.def.json
  1331. msgctxt "infill_before_walls description"
  1332. 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."
  1333. 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."
  1334. #: fdmprinter.def.json
  1335. msgctxt "min_infill_area label"
  1336. msgid "Minimum Infill Area"
  1337. msgstr "Area minima riempimento"
  1338. #: fdmprinter.def.json
  1339. msgctxt "min_infill_area description"
  1340. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1341. msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)."
  1342. #: fdmprinter.def.json
  1343. msgctxt "infill_support_enabled label"
  1344. msgid "Infill Support"
  1345. msgstr "Supporto riempimento"
  1346. #: fdmprinter.def.json
  1347. msgctxt "infill_support_enabled description"
  1348. 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."
  1349. 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."
  1350. #: fdmprinter.def.json
  1351. msgctxt "infill_support_angle label"
  1352. msgid "Infill Overhang Angle"
  1353. msgstr "Angolo di sbalzo del riempimento"
  1354. #: fdmprinter.def.json
  1355. msgctxt "infill_support_angle description"
  1356. 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."
  1357. 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."
  1358. #: fdmprinter.def.json
  1359. msgctxt "skin_preshrink label"
  1360. msgid "Skin Removal Width"
  1361. msgstr "Larghezza rimozione rivestimento"
  1362. #: fdmprinter.def.json
  1363. msgctxt "skin_preshrink description"
  1364. 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."
  1365. 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."
  1366. #: fdmprinter.def.json
  1367. msgctxt "top_skin_preshrink label"
  1368. msgid "Top Skin Removal Width"
  1369. msgstr "Larghezza rimozione rivestimento superiore"
  1370. #: fdmprinter.def.json
  1371. msgctxt "top_skin_preshrink description"
  1372. 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."
  1373. 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."
  1374. #: fdmprinter.def.json
  1375. msgctxt "bottom_skin_preshrink label"
  1376. msgid "Bottom Skin Removal Width"
  1377. msgstr "Larghezza rimozione rivestimento inferiore"
  1378. #: fdmprinter.def.json
  1379. msgctxt "bottom_skin_preshrink description"
  1380. 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."
  1381. 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."
  1382. #: fdmprinter.def.json
  1383. msgctxt "expand_skins_expand_distance label"
  1384. msgid "Skin Expand Distance"
  1385. msgstr "Distanza prolunga rivestimento esterno"
  1386. #: fdmprinter.def.json
  1387. msgctxt "expand_skins_expand_distance description"
  1388. 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."
  1389. 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."
  1390. #: fdmprinter.def.json
  1391. msgctxt "top_skin_expand_distance label"
  1392. msgid "Top Skin Expand Distance"
  1393. msgstr "Distanza prolunga rivestimento superiore"
  1394. #: fdmprinter.def.json
  1395. msgctxt "top_skin_expand_distance description"
  1396. 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."
  1397. 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."
  1398. #: fdmprinter.def.json
  1399. msgctxt "bottom_skin_expand_distance label"
  1400. msgid "Bottom Skin Expand Distance"
  1401. msgstr "Distanza prolunga rivestimento inferiore"
  1402. #: fdmprinter.def.json
  1403. msgctxt "bottom_skin_expand_distance description"
  1404. 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."
  1405. 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."
  1406. #: fdmprinter.def.json
  1407. msgctxt "max_skin_angle_for_expansion label"
  1408. msgid "Maximum Skin Angle for Expansion"
  1409. msgstr "Angolo massimo rivestimento esterno per prolunga"
  1410. #: fdmprinter.def.json
  1411. msgctxt "max_skin_angle_for_expansion description"
  1412. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  1413. msgstr "Per le superfici inferiori e/o superiori dell’oggetto con un angolo maggiore di questa impostazione non verrà prolungato il rivestimento esterno superiore/inferiore. In tal modo si evita di prolungare le aree del rivestimento esterno strette create quando la superficie del modello ha un’inclinazione prossima al verticale. Un angolo di 0° è orizzontale, mentre un angolo di 90° è verticale."
  1414. #: fdmprinter.def.json
  1415. msgctxt "min_skin_width_for_expansion label"
  1416. msgid "Minimum Skin Width for Expansion"
  1417. msgstr "Larghezza minima rivestimento esterno per prolunga"
  1418. #: fdmprinter.def.json
  1419. msgctxt "min_skin_width_for_expansion description"
  1420. 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."
  1421. 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."
  1422. #: fdmprinter.def.json
  1423. msgctxt "material label"
  1424. msgid "Material"
  1425. msgstr "Materiale"
  1426. #: fdmprinter.def.json
  1427. msgctxt "material description"
  1428. msgid "Material"
  1429. msgstr "Materiale"
  1430. #: fdmprinter.def.json
  1431. msgctxt "default_material_print_temperature label"
  1432. msgid "Default Printing Temperature"
  1433. msgstr "Temperatura di stampa preimpostata"
  1434. #: fdmprinter.def.json
  1435. msgctxt "default_material_print_temperature description"
  1436. 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"
  1437. 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."
  1438. #: fdmprinter.def.json
  1439. msgctxt "material_print_temperature label"
  1440. msgid "Printing Temperature"
  1441. msgstr "Temperatura di stampa"
  1442. #: fdmprinter.def.json
  1443. msgctxt "material_print_temperature description"
  1444. msgid "The temperature used for printing."
  1445. msgstr "Indica la temperatura usata per la stampa."
  1446. #: fdmprinter.def.json
  1447. msgctxt "material_print_temperature_layer_0 label"
  1448. msgid "Printing Temperature Initial Layer"
  1449. msgstr "Temperatura di stampa Strato iniziale"
  1450. #: fdmprinter.def.json
  1451. msgctxt "material_print_temperature_layer_0 description"
  1452. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1453. msgstr "Indica la temperatura usata per la stampa del primo strato. Impostare a 0 per disabilitare la manipolazione speciale dello strato iniziale."
  1454. #: fdmprinter.def.json
  1455. msgctxt "material_initial_print_temperature label"
  1456. msgid "Initial Printing Temperature"
  1457. msgstr "Temperatura di stampa iniziale"
  1458. #: fdmprinter.def.json
  1459. msgctxt "material_initial_print_temperature description"
  1460. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1461. msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa."
  1462. #: fdmprinter.def.json
  1463. msgctxt "material_final_print_temperature label"
  1464. msgid "Final Printing Temperature"
  1465. msgstr "Temperatura di stampa finale"
  1466. #: fdmprinter.def.json
  1467. msgctxt "material_final_print_temperature description"
  1468. msgid "The temperature to which to already start cooling down just before the end of printing."
  1469. msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa."
  1470. #: fdmprinter.def.json
  1471. msgctxt "material_extrusion_cool_down_speed label"
  1472. msgid "Extrusion Cool Down Speed Modifier"
  1473. msgstr "Modificatore della velocità di raffreddamento estrusione"
  1474. #: fdmprinter.def.json
  1475. msgctxt "material_extrusion_cool_down_speed description"
  1476. 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."
  1477. 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."
  1478. #: fdmprinter.def.json
  1479. msgctxt "default_material_bed_temperature label"
  1480. msgid "Default Build Plate Temperature"
  1481. msgstr "Temperatura piano di stampa preimpostata"
  1482. #: fdmprinter.def.json
  1483. msgctxt "default_material_bed_temperature description"
  1484. 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"
  1485. 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."
  1486. #: fdmprinter.def.json
  1487. msgctxt "material_bed_temperature label"
  1488. msgid "Build Plate Temperature"
  1489. msgstr "Temperatura piano di stampa"
  1490. #: fdmprinter.def.json
  1491. msgctxt "material_bed_temperature description"
  1492. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1493. msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, la temperatura del piano non si regola."
  1494. #: fdmprinter.def.json
  1495. msgctxt "material_bed_temperature_layer_0 label"
  1496. msgid "Build Plate Temperature Initial Layer"
  1497. msgstr "Temperatura piano di stampa Strato iniziale"
  1498. #: fdmprinter.def.json
  1499. msgctxt "material_bed_temperature_layer_0 description"
  1500. msgid "The temperature used for the heated build plate at the first layer."
  1501. msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato."
  1502. #: fdmprinter.def.json
  1503. msgctxt "material_diameter label"
  1504. msgid "Diameter"
  1505. msgstr "Diametro"
  1506. #: fdmprinter.def.json
  1507. msgctxt "material_diameter description"
  1508. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  1509. msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato."
  1510. #: fdmprinter.def.json
  1511. msgctxt "material_adhesion_tendency label"
  1512. msgid "Adhesion Tendency"
  1513. msgstr "Tendenza di adesione"
  1514. #: fdmprinter.def.json
  1515. msgctxt "material_adhesion_tendency description"
  1516. msgid "Surface adhesion tendency."
  1517. msgstr "Tendenza di adesione superficiale."
  1518. #: fdmprinter.def.json
  1519. msgctxt "material_surface_energy label"
  1520. msgid "Surface Energy"
  1521. msgstr "Energia superficiale"
  1522. #: fdmprinter.def.json
  1523. msgctxt "material_surface_energy description"
  1524. msgid "Surface energy."
  1525. msgstr "Energia superficiale."
  1526. #: fdmprinter.def.json
  1527. msgctxt "material_shrinkage_percentage label"
  1528. msgid "Shrinkage Ratio"
  1529. msgstr "Tasso di contrazione"
  1530. #: fdmprinter.def.json
  1531. msgctxt "material_shrinkage_percentage description"
  1532. msgid "Shrinkage ratio in percentage."
  1533. msgstr "Il tasso di contrazione in percentuale."
  1534. #: fdmprinter.def.json
  1535. msgctxt "material_flow label"
  1536. msgid "Flow"
  1537. msgstr "Flusso"
  1538. #: fdmprinter.def.json
  1539. msgctxt "material_flow description"
  1540. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1541. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore."
  1542. #: fdmprinter.def.json
  1543. msgctxt "material_flow_layer_0 label"
  1544. msgid "Initial Layer Flow"
  1545. msgstr "Flusso dello strato iniziale"
  1546. #: fdmprinter.def.json
  1547. msgctxt "material_flow_layer_0 description"
  1548. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1549. msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore."
  1550. #: fdmprinter.def.json
  1551. msgctxt "retraction_enable label"
  1552. msgid "Enable Retraction"
  1553. msgstr "Abilitazione della retrazione"
  1554. #: fdmprinter.def.json
  1555. msgctxt "retraction_enable description"
  1556. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  1557. msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata. "
  1558. #: fdmprinter.def.json
  1559. msgctxt "retract_at_layer_change label"
  1560. msgid "Retract at Layer Change"
  1561. msgstr "Retrazione al cambio strato"
  1562. #: fdmprinter.def.json
  1563. msgctxt "retract_at_layer_change description"
  1564. msgid "Retract the filament when the nozzle is moving to the next layer."
  1565. msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo. "
  1566. #: fdmprinter.def.json
  1567. msgctxt "retraction_amount label"
  1568. msgid "Retraction Distance"
  1569. msgstr "Distanza di retrazione"
  1570. #: fdmprinter.def.json
  1571. msgctxt "retraction_amount description"
  1572. msgid "The length of material retracted during a retraction move."
  1573. msgstr "La lunghezza del materiale retratto durante il movimento di retrazione."
  1574. #: fdmprinter.def.json
  1575. msgctxt "retraction_speed label"
  1576. msgid "Retraction Speed"
  1577. msgstr "Velocità di retrazione"
  1578. #: fdmprinter.def.json
  1579. msgctxt "retraction_speed description"
  1580. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1581. msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione."
  1582. #: fdmprinter.def.json
  1583. msgctxt "retraction_retract_speed label"
  1584. msgid "Retraction Retract Speed"
  1585. msgstr "Velocità di retrazione"
  1586. #: fdmprinter.def.json
  1587. msgctxt "retraction_retract_speed description"
  1588. msgid "The speed at which the filament is retracted during a retraction move."
  1589. msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione."
  1590. #: fdmprinter.def.json
  1591. msgctxt "retraction_prime_speed label"
  1592. msgid "Retraction Prime Speed"
  1593. msgstr "Velocità di innesco dopo la retrazione"
  1594. #: fdmprinter.def.json
  1595. msgctxt "retraction_prime_speed description"
  1596. msgid "The speed at which the filament is primed during a retraction move."
  1597. msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione."
  1598. #: fdmprinter.def.json
  1599. msgctxt "retraction_extra_prime_amount label"
  1600. msgid "Retraction Extra Prime Amount"
  1601. msgstr "Entità di innesco supplementare dopo la retrazione"
  1602. #: fdmprinter.def.json
  1603. msgctxt "retraction_extra_prime_amount description"
  1604. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1605. msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento."
  1606. #: fdmprinter.def.json
  1607. msgctxt "retraction_min_travel label"
  1608. msgid "Retraction Minimum Travel"
  1609. msgstr "Distanza minima di retrazione"
  1610. #: fdmprinter.def.json
  1611. msgctxt "retraction_min_travel description"
  1612. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1613. msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree."
  1614. #: fdmprinter.def.json
  1615. msgctxt "retraction_count_max label"
  1616. msgid "Maximum Retraction Count"
  1617. msgstr "Numero massimo di retrazioni"
  1618. #: fdmprinter.def.json
  1619. msgctxt "retraction_count_max description"
  1620. 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."
  1621. 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."
  1622. #: fdmprinter.def.json
  1623. msgctxt "retraction_extrusion_window label"
  1624. msgid "Minimum Extrusion Distance Window"
  1625. msgstr "Finestra di minima distanza di estrusione"
  1626. #: fdmprinter.def.json
  1627. msgctxt "retraction_extrusion_window description"
  1628. 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."
  1629. 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."
  1630. #: fdmprinter.def.json
  1631. msgctxt "limit_support_retractions label"
  1632. msgid "Limit Support Retractions"
  1633. msgstr "Limitazione delle retrazioni del supporto"
  1634. #: fdmprinter.def.json
  1635. msgctxt "limit_support_retractions description"
  1636. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  1637. msgstr "Omettere la retrazione negli spostamenti da un supporto ad un altro in linea retta. L'abilitazione di questa impostazione riduce il tempo di stampa, ma può comportare un'eccessiva produzione di filamenti all'interno della struttura del supporto."
  1638. #: fdmprinter.def.json
  1639. msgctxt "material_standby_temperature label"
  1640. msgid "Standby Temperature"
  1641. msgstr "Temperatura di Standby"
  1642. #: fdmprinter.def.json
  1643. msgctxt "material_standby_temperature description"
  1644. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1645. msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa."
  1646. #: fdmprinter.def.json
  1647. msgctxt "switch_extruder_retraction_amount label"
  1648. msgid "Nozzle Switch Retraction Distance"
  1649. msgstr "Distanza di retrazione cambio ugello"
  1650. #: fdmprinter.def.json
  1651. msgctxt "switch_extruder_retraction_amount description"
  1652. msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  1653. msgstr "Indica il valore di retrazione: impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento."
  1654. #: fdmprinter.def.json
  1655. msgctxt "switch_extruder_retraction_speeds label"
  1656. msgid "Nozzle Switch Retraction Speed"
  1657. msgstr "Velocità di retrazione cambio ugello"
  1658. #: fdmprinter.def.json
  1659. msgctxt "switch_extruder_retraction_speeds description"
  1660. 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."
  1661. 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."
  1662. #: fdmprinter.def.json
  1663. msgctxt "switch_extruder_retraction_speed label"
  1664. msgid "Nozzle Switch Retract Speed"
  1665. msgstr "Velocità di retrazione cambio ugello"
  1666. #: fdmprinter.def.json
  1667. msgctxt "switch_extruder_retraction_speed description"
  1668. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  1669. msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello."
  1670. #: fdmprinter.def.json
  1671. msgctxt "switch_extruder_prime_speed label"
  1672. msgid "Nozzle Switch Prime Speed"
  1673. msgstr "Velocità innesco cambio ugello"
  1674. #: fdmprinter.def.json
  1675. msgctxt "switch_extruder_prime_speed description"
  1676. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  1677. msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello."
  1678. #: fdmprinter.def.json
  1679. msgctxt "speed label"
  1680. msgid "Speed"
  1681. msgstr "Velocità"
  1682. #: fdmprinter.def.json
  1683. msgctxt "speed description"
  1684. msgid "Speed"
  1685. msgstr "Velocità"
  1686. #: fdmprinter.def.json
  1687. msgctxt "speed_print label"
  1688. msgid "Print Speed"
  1689. msgstr "Velocità di stampa"
  1690. #: fdmprinter.def.json
  1691. msgctxt "speed_print description"
  1692. msgid "The speed at which printing happens."
  1693. msgstr "Indica la velocità alla quale viene effettuata la stampa."
  1694. #: fdmprinter.def.json
  1695. msgctxt "speed_infill label"
  1696. msgid "Infill Speed"
  1697. msgstr "Velocità di riempimento"
  1698. #: fdmprinter.def.json
  1699. msgctxt "speed_infill description"
  1700. msgid "The speed at which infill is printed."
  1701. msgstr "Indica la velocità alla quale viene stampato il riempimento."
  1702. #: fdmprinter.def.json
  1703. msgctxt "speed_wall label"
  1704. msgid "Wall Speed"
  1705. msgstr "Velocità di stampa della parete"
  1706. #: fdmprinter.def.json
  1707. msgctxt "speed_wall description"
  1708. msgid "The speed at which the walls are printed."
  1709. msgstr "Indica la velocità alla quale vengono stampate le pareti."
  1710. #: fdmprinter.def.json
  1711. msgctxt "speed_wall_0 label"
  1712. msgid "Outer Wall Speed"
  1713. msgstr "Velocità di stampa della parete esterna"
  1714. #: fdmprinter.def.json
  1715. msgctxt "speed_wall_0 description"
  1716. 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."
  1717. 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à."
  1718. #: fdmprinter.def.json
  1719. msgctxt "speed_wall_x label"
  1720. msgid "Inner Wall Speed"
  1721. msgstr "Velocità di stampa della parete interna"
  1722. #: fdmprinter.def.json
  1723. msgctxt "speed_wall_x description"
  1724. 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."
  1725. 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."
  1726. #: fdmprinter.def.json
  1727. msgctxt "speed_roofing label"
  1728. msgid "Top Surface Skin Speed"
  1729. msgstr "Velocità del rivestimento superficie"
  1730. #: fdmprinter.def.json
  1731. msgctxt "speed_roofing description"
  1732. msgid "The speed at which top surface skin layers are printed."
  1733. msgstr "Indica la velocità di stampa degli strati superiori."
  1734. #: fdmprinter.def.json
  1735. msgctxt "speed_topbottom label"
  1736. msgid "Top/Bottom Speed"
  1737. msgstr "Velocità di stampa delle parti superiore/inferiore"
  1738. #: fdmprinter.def.json
  1739. msgctxt "speed_topbottom description"
  1740. msgid "The speed at which top/bottom layers are printed."
  1741. msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore."
  1742. #: fdmprinter.def.json
  1743. msgctxt "speed_support label"
  1744. msgid "Support Speed"
  1745. msgstr "Velocità di stampa del supporto"
  1746. #: fdmprinter.def.json
  1747. msgctxt "speed_support description"
  1748. 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."
  1749. 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."
  1750. #: fdmprinter.def.json
  1751. msgctxt "speed_support_infill label"
  1752. msgid "Support Infill Speed"
  1753. msgstr "Velocità di riempimento del supporto"
  1754. #: fdmprinter.def.json
  1755. msgctxt "speed_support_infill description"
  1756. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1757. msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità."
  1758. #: fdmprinter.def.json
  1759. msgctxt "speed_support_interface label"
  1760. msgid "Support Interface Speed"
  1761. msgstr "Velocità interfaccia supporto"
  1762. #: fdmprinter.def.json
  1763. msgctxt "speed_support_interface description"
  1764. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1765. 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."
  1766. #: fdmprinter.def.json
  1767. msgctxt "speed_support_roof label"
  1768. msgid "Support Roof Speed"
  1769. msgstr "Velocità di stampa della parte superiore (tetto) del supporto"
  1770. #: fdmprinter.def.json
  1771. msgctxt "speed_support_roof description"
  1772. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1773. msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo."
  1774. #: fdmprinter.def.json
  1775. msgctxt "speed_support_bottom label"
  1776. msgid "Support Floor Speed"
  1777. msgstr "Velocità di stampa della parte inferiore del supporto"
  1778. #: fdmprinter.def.json
  1779. msgctxt "speed_support_bottom description"
  1780. 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."
  1781. 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."
  1782. #: fdmprinter.def.json
  1783. msgctxt "speed_prime_tower label"
  1784. msgid "Prime Tower Speed"
  1785. msgstr "Velocità della torre di innesco"
  1786. #: fdmprinter.def.json
  1787. msgctxt "speed_prime_tower description"
  1788. 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."
  1789. 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."
  1790. #: fdmprinter.def.json
  1791. msgctxt "speed_travel label"
  1792. msgid "Travel Speed"
  1793. msgstr "Velocità degli spostamenti"
  1794. #: fdmprinter.def.json
  1795. msgctxt "speed_travel description"
  1796. msgid "The speed at which travel moves are made."
  1797. msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti."
  1798. #: fdmprinter.def.json
  1799. msgctxt "speed_layer_0 label"
  1800. msgid "Initial Layer Speed"
  1801. msgstr "Velocità di stampa dello strato iniziale"
  1802. #: fdmprinter.def.json
  1803. msgctxt "speed_layer_0 description"
  1804. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1805. msgstr "Indica la velocità per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa."
  1806. #: fdmprinter.def.json
  1807. msgctxt "speed_print_layer_0 label"
  1808. msgid "Initial Layer Print Speed"
  1809. msgstr "Velocità di stampa strato iniziale"
  1810. #: fdmprinter.def.json
  1811. msgctxt "speed_print_layer_0 description"
  1812. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1813. msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa."
  1814. #: fdmprinter.def.json
  1815. msgctxt "speed_travel_layer_0 label"
  1816. msgid "Initial Layer Travel Speed"
  1817. msgstr "Velocità di spostamento dello strato iniziale"
  1818. #: fdmprinter.def.json
  1819. msgctxt "speed_travel_layer_0 description"
  1820. 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."
  1821. 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."
  1822. #: fdmprinter.def.json
  1823. msgctxt "skirt_brim_speed label"
  1824. msgid "Skirt/Brim Speed"
  1825. msgstr "Velocità dello skirt/brim"
  1826. #: fdmprinter.def.json
  1827. msgctxt "skirt_brim_speed description"
  1828. 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."
  1829. 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."
  1830. #: fdmprinter.def.json
  1831. msgctxt "max_feedrate_z_override label"
  1832. msgid "Maximum Z Speed"
  1833. msgstr "Velocità massima Z"
  1834. #: fdmprinter.def.json
  1835. msgctxt "max_feedrate_z_override description"
  1836. msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  1837. msgstr "Indica la velocità massima di spostamento del piano di stampa. L’impostazione di questo valore a zero causa l’utilizzo per la stampa dei valori preimpostati in fabbrica per la velocità massima Z."
  1838. #: fdmprinter.def.json
  1839. msgctxt "speed_slowdown_layers label"
  1840. msgid "Number of Slower Layers"
  1841. msgstr "Numero di strati stampati a velocità inferiore"
  1842. #: fdmprinter.def.json
  1843. msgctxt "speed_slowdown_layers description"
  1844. 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."
  1845. 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."
  1846. #: fdmprinter.def.json
  1847. msgctxt "speed_equalize_flow_enabled label"
  1848. msgid "Equalize Filament Flow"
  1849. msgstr "Equalizzazione del flusso del filamento"
  1850. #: fdmprinter.def.json
  1851. msgctxt "speed_equalize_flow_enabled description"
  1852. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  1853. msgstr "Stampa le linee più sottili del normale più velocemente in modo che la quantità di materiale estruso per secondo rimanga la stessa. I pezzi sottili del modello potrebbero richiedere linee stampate con una larghezza minore rispetto a quella indicata nelle impostazioni. Questa impostazione controlla le variazioni di velocità per tali linee."
  1854. #: fdmprinter.def.json
  1855. msgctxt "speed_equalize_flow_max label"
  1856. msgid "Maximum Speed for Flow Equalization"
  1857. msgstr "Velocità massima per l’equalizzazione del flusso"
  1858. #: fdmprinter.def.json
  1859. msgctxt "speed_equalize_flow_max description"
  1860. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  1861. msgstr "Indica la velocità di stampa massima quando si regola la velocità di stampa per equalizzare il flusso."
  1862. #: fdmprinter.def.json
  1863. msgctxt "acceleration_enabled label"
  1864. msgid "Enable Acceleration Control"
  1865. msgstr "Abilita controllo accelerazione"
  1866. #: fdmprinter.def.json
  1867. msgctxt "acceleration_enabled description"
  1868. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1869. 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."
  1870. #: fdmprinter.def.json
  1871. msgctxt "acceleration_print label"
  1872. msgid "Print Acceleration"
  1873. msgstr "Accelerazione di stampa"
  1874. #: fdmprinter.def.json
  1875. msgctxt "acceleration_print description"
  1876. msgid "The acceleration with which printing happens."
  1877. msgstr "L’accelerazione con cui avviene la stampa."
  1878. #: fdmprinter.def.json
  1879. msgctxt "acceleration_infill label"
  1880. msgid "Infill Acceleration"
  1881. msgstr "Accelerazione riempimento"
  1882. #: fdmprinter.def.json
  1883. msgctxt "acceleration_infill description"
  1884. msgid "The acceleration with which infill is printed."
  1885. msgstr "L’accelerazione con cui viene stampato il riempimento."
  1886. #: fdmprinter.def.json
  1887. msgctxt "acceleration_wall label"
  1888. msgid "Wall Acceleration"
  1889. msgstr "Accelerazione parete"
  1890. #: fdmprinter.def.json
  1891. msgctxt "acceleration_wall description"
  1892. msgid "The acceleration with which the walls are printed."
  1893. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti."
  1894. #: fdmprinter.def.json
  1895. msgctxt "acceleration_wall_0 label"
  1896. msgid "Outer Wall Acceleration"
  1897. msgstr "Accelerazione parete esterna"
  1898. #: fdmprinter.def.json
  1899. msgctxt "acceleration_wall_0 description"
  1900. msgid "The acceleration with which the outermost walls are printed."
  1901. msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne."
  1902. #: fdmprinter.def.json
  1903. msgctxt "acceleration_wall_x label"
  1904. msgid "Inner Wall Acceleration"
  1905. msgstr "Accelerazione parete interna"
  1906. #: fdmprinter.def.json
  1907. msgctxt "acceleration_wall_x description"
  1908. msgid "The acceleration with which all inner walls are printed."
  1909. msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne."
  1910. #: fdmprinter.def.json
  1911. msgctxt "acceleration_roofing label"
  1912. msgid "Top Surface Skin Acceleration"
  1913. msgstr "Accelerazione del rivestimento superficie superiore"
  1914. #: fdmprinter.def.json
  1915. msgctxt "acceleration_roofing description"
  1916. msgid "The acceleration with which top surface skin layers are printed."
  1917. msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore."
  1918. #: fdmprinter.def.json
  1919. msgctxt "acceleration_topbottom label"
  1920. msgid "Top/Bottom Acceleration"
  1921. msgstr "Accelerazione strato superiore/inferiore"
  1922. #: fdmprinter.def.json
  1923. msgctxt "acceleration_topbottom description"
  1924. msgid "The acceleration with which top/bottom layers are printed."
  1925. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore."
  1926. #: fdmprinter.def.json
  1927. msgctxt "acceleration_support label"
  1928. msgid "Support Acceleration"
  1929. msgstr "Accelerazione supporto"
  1930. #: fdmprinter.def.json
  1931. msgctxt "acceleration_support description"
  1932. msgid "The acceleration with which the support structure is printed."
  1933. msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto."
  1934. #: fdmprinter.def.json
  1935. msgctxt "acceleration_support_infill label"
  1936. msgid "Support Infill Acceleration"
  1937. msgstr "Accelerazione riempimento supporto"
  1938. #: fdmprinter.def.json
  1939. msgctxt "acceleration_support_infill description"
  1940. msgid "The acceleration with which the infill of support is printed."
  1941. msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto."
  1942. #: fdmprinter.def.json
  1943. msgctxt "acceleration_support_interface label"
  1944. msgid "Support Interface Acceleration"
  1945. msgstr "Accelerazione interfaccia supporto"
  1946. #: fdmprinter.def.json
  1947. msgctxt "acceleration_support_interface description"
  1948. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1949. 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."
  1950. #: fdmprinter.def.json
  1951. msgctxt "acceleration_support_roof label"
  1952. msgid "Support Roof Acceleration"
  1953. msgstr "Accelerazione parte superiore del supporto"
  1954. #: fdmprinter.def.json
  1955. msgctxt "acceleration_support_roof description"
  1956. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1957. msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo."
  1958. #: fdmprinter.def.json
  1959. msgctxt "acceleration_support_bottom label"
  1960. msgid "Support Floor Acceleration"
  1961. msgstr "Accelerazione parte inferiore del supporto"
  1962. #: fdmprinter.def.json
  1963. msgctxt "acceleration_support_bottom description"
  1964. 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."
  1965. 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."
  1966. #: fdmprinter.def.json
  1967. msgctxt "acceleration_prime_tower label"
  1968. msgid "Prime Tower Acceleration"
  1969. msgstr "Accelerazione della torre di innesco"
  1970. #: fdmprinter.def.json
  1971. msgctxt "acceleration_prime_tower description"
  1972. msgid "The acceleration with which the prime tower is printed."
  1973. msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco."
  1974. #: fdmprinter.def.json
  1975. msgctxt "acceleration_travel label"
  1976. msgid "Travel Acceleration"
  1977. msgstr "Accelerazione spostamenti"
  1978. #: fdmprinter.def.json
  1979. msgctxt "acceleration_travel description"
  1980. msgid "The acceleration with which travel moves are made."
  1981. msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti."
  1982. #: fdmprinter.def.json
  1983. msgctxt "acceleration_layer_0 label"
  1984. msgid "Initial Layer Acceleration"
  1985. msgstr "Accelerazione dello strato iniziale"
  1986. #: fdmprinter.def.json
  1987. msgctxt "acceleration_layer_0 description"
  1988. msgid "The acceleration for the initial layer."
  1989. msgstr "Indica l’accelerazione dello strato iniziale."
  1990. #: fdmprinter.def.json
  1991. msgctxt "acceleration_print_layer_0 label"
  1992. msgid "Initial Layer Print Acceleration"
  1993. msgstr "Accelerazione di stampa strato iniziale"
  1994. #: fdmprinter.def.json
  1995. msgctxt "acceleration_print_layer_0 description"
  1996. msgid "The acceleration during the printing of the initial layer."
  1997. msgstr "Indica l’accelerazione durante la stampa dello strato iniziale."
  1998. #: fdmprinter.def.json
  1999. msgctxt "acceleration_travel_layer_0 label"
  2000. msgid "Initial Layer Travel Acceleration"
  2001. msgstr "Accelerazione spostamenti dello strato iniziale"
  2002. #: fdmprinter.def.json
  2003. msgctxt "acceleration_travel_layer_0 description"
  2004. msgid "The acceleration for travel moves in the initial layer."
  2005. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  2006. #: fdmprinter.def.json
  2007. msgctxt "acceleration_skirt_brim label"
  2008. msgid "Skirt/Brim Acceleration"
  2009. msgstr "Accelerazione skirt/brim"
  2010. #: fdmprinter.def.json
  2011. msgctxt "acceleration_skirt_brim description"
  2012. 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."
  2013. 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."
  2014. #: fdmprinter.def.json
  2015. msgctxt "jerk_enabled label"
  2016. msgid "Enable Jerk Control"
  2017. msgstr "Abilita controllo jerk"
  2018. #: fdmprinter.def.json
  2019. msgctxt "jerk_enabled description"
  2020. 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."
  2021. 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."
  2022. #: fdmprinter.def.json
  2023. msgctxt "jerk_print label"
  2024. msgid "Print Jerk"
  2025. msgstr "Jerk stampa"
  2026. #: fdmprinter.def.json
  2027. msgctxt "jerk_print description"
  2028. msgid "The maximum instantaneous velocity change of the print head."
  2029. msgstr "Indica il cambio della velocità istantanea massima della testina di stampa."
  2030. #: fdmprinter.def.json
  2031. msgctxt "jerk_infill label"
  2032. msgid "Infill Jerk"
  2033. msgstr "Jerk riempimento"
  2034. #: fdmprinter.def.json
  2035. msgctxt "jerk_infill description"
  2036. msgid "The maximum instantaneous velocity change with which infill is printed."
  2037. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento."
  2038. #: fdmprinter.def.json
  2039. msgctxt "jerk_wall label"
  2040. msgid "Wall Jerk"
  2041. msgstr "Jerk parete"
  2042. #: fdmprinter.def.json
  2043. msgctxt "jerk_wall description"
  2044. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2045. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti."
  2046. #: fdmprinter.def.json
  2047. msgctxt "jerk_wall_0 label"
  2048. msgid "Outer Wall Jerk"
  2049. msgstr "Jerk parete esterna"
  2050. #: fdmprinter.def.json
  2051. msgctxt "jerk_wall_0 description"
  2052. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2053. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne."
  2054. #: fdmprinter.def.json
  2055. msgctxt "jerk_wall_x label"
  2056. msgid "Inner Wall Jerk"
  2057. msgstr "Jerk parete interna"
  2058. #: fdmprinter.def.json
  2059. msgctxt "jerk_wall_x description"
  2060. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2061. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne."
  2062. #: fdmprinter.def.json
  2063. msgctxt "jerk_roofing label"
  2064. msgid "Top Surface Skin Jerk"
  2065. msgstr "Jerk del rivestimento superficie superiore"
  2066. #: fdmprinter.def.json
  2067. msgctxt "jerk_roofing description"
  2068. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2069. msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore."
  2070. #: fdmprinter.def.json
  2071. msgctxt "jerk_topbottom label"
  2072. msgid "Top/Bottom Jerk"
  2073. msgstr "Jerk strato superiore/inferiore"
  2074. #: fdmprinter.def.json
  2075. msgctxt "jerk_topbottom description"
  2076. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2077. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore."
  2078. #: fdmprinter.def.json
  2079. msgctxt "jerk_support label"
  2080. msgid "Support Jerk"
  2081. msgstr "Jerk supporto"
  2082. #: fdmprinter.def.json
  2083. msgctxt "jerk_support description"
  2084. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2085. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto."
  2086. #: fdmprinter.def.json
  2087. msgctxt "jerk_support_infill label"
  2088. msgid "Support Infill Jerk"
  2089. msgstr "Jerk riempimento supporto"
  2090. #: fdmprinter.def.json
  2091. msgctxt "jerk_support_infill description"
  2092. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2093. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto."
  2094. #: fdmprinter.def.json
  2095. msgctxt "jerk_support_interface label"
  2096. msgid "Support Interface Jerk"
  2097. msgstr "Jerk interfaccia supporto"
  2098. #: fdmprinter.def.json
  2099. msgctxt "jerk_support_interface description"
  2100. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2101. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori."
  2102. #: fdmprinter.def.json
  2103. msgctxt "jerk_support_roof label"
  2104. msgid "Support Roof Jerk"
  2105. msgstr "Jerk parte superiore del supporto"
  2106. #: fdmprinter.def.json
  2107. msgctxt "jerk_support_roof description"
  2108. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2109. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori."
  2110. #: fdmprinter.def.json
  2111. msgctxt "jerk_support_bottom label"
  2112. msgid "Support Floor Jerk"
  2113. msgstr "Jerk parte inferiore del supporto"
  2114. #: fdmprinter.def.json
  2115. msgctxt "jerk_support_bottom description"
  2116. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2117. msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori."
  2118. #: fdmprinter.def.json
  2119. msgctxt "jerk_prime_tower label"
  2120. msgid "Prime Tower Jerk"
  2121. msgstr "Jerk della torre di innesco"
  2122. #: fdmprinter.def.json
  2123. msgctxt "jerk_prime_tower description"
  2124. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2125. msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto."
  2126. #: fdmprinter.def.json
  2127. msgctxt "jerk_travel label"
  2128. msgid "Travel Jerk"
  2129. msgstr "Jerk spostamenti"
  2130. #: fdmprinter.def.json
  2131. msgctxt "jerk_travel description"
  2132. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2133. msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti."
  2134. #: fdmprinter.def.json
  2135. msgctxt "jerk_layer_0 label"
  2136. msgid "Initial Layer Jerk"
  2137. msgstr "Jerk dello strato iniziale"
  2138. #: fdmprinter.def.json
  2139. msgctxt "jerk_layer_0 description"
  2140. msgid "The print maximum instantaneous velocity change for the initial layer."
  2141. msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale."
  2142. #: fdmprinter.def.json
  2143. msgctxt "jerk_print_layer_0 label"
  2144. msgid "Initial Layer Print Jerk"
  2145. msgstr "Jerk di stampa strato iniziale"
  2146. #: fdmprinter.def.json
  2147. msgctxt "jerk_print_layer_0 description"
  2148. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2149. msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale."
  2150. #: fdmprinter.def.json
  2151. msgctxt "jerk_travel_layer_0 label"
  2152. msgid "Initial Layer Travel Jerk"
  2153. msgstr "Jerk spostamenti dello strato iniziale"
  2154. #: fdmprinter.def.json
  2155. msgctxt "jerk_travel_layer_0 description"
  2156. msgid "The acceleration for travel moves in the initial layer."
  2157. msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale."
  2158. #: fdmprinter.def.json
  2159. msgctxt "jerk_skirt_brim label"
  2160. msgid "Skirt/Brim Jerk"
  2161. msgstr "Jerk dello skirt/brim"
  2162. #: fdmprinter.def.json
  2163. msgctxt "jerk_skirt_brim description"
  2164. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2165. msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim."
  2166. #: fdmprinter.def.json
  2167. msgctxt "travel label"
  2168. msgid "Travel"
  2169. msgstr "Spostamenti"
  2170. #: fdmprinter.def.json
  2171. msgctxt "travel description"
  2172. msgid "travel"
  2173. msgstr "spostamenti"
  2174. #: fdmprinter.def.json
  2175. msgctxt "retraction_combing label"
  2176. msgid "Combing Mode"
  2177. msgstr "Modalità Combing"
  2178. #: fdmprinter.def.json
  2179. msgctxt "retraction_combing description"
  2180. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  2181. msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore effettuando il combing solo nel riempimento."
  2182. #: fdmprinter.def.json
  2183. msgctxt "retraction_combing option off"
  2184. msgid "Off"
  2185. msgstr "Disinserita"
  2186. #: fdmprinter.def.json
  2187. msgctxt "retraction_combing option all"
  2188. msgid "All"
  2189. msgstr "Tutto"
  2190. #: fdmprinter.def.json
  2191. msgctxt "retraction_combing option noskin"
  2192. msgid "Not in Skin"
  2193. msgstr "Non nel rivestimento"
  2194. #: fdmprinter.def.json
  2195. msgctxt "retraction_combing_max_distance label"
  2196. msgid "Max Comb Distance With No Retract"
  2197. msgstr "Massima distanza di combing senza retrazione"
  2198. #: fdmprinter.def.json
  2199. msgctxt "retraction_combing_max_distance description"
  2200. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2201. msgstr "Per un valore diverso da zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione."
  2202. #: fdmprinter.def.json
  2203. msgctxt "travel_retract_before_outer_wall label"
  2204. msgid "Retract Before Outer Wall"
  2205. msgstr "Retrazione prima della parete esterna"
  2206. #: fdmprinter.def.json
  2207. msgctxt "travel_retract_before_outer_wall description"
  2208. msgid "Always retract when moving to start an outer wall."
  2209. msgstr "Arretra sempre quando si sposta per iniziare una parete esterna."
  2210. #: fdmprinter.def.json
  2211. msgctxt "travel_avoid_other_parts label"
  2212. msgid "Avoid Printed Parts When Traveling"
  2213. msgstr "Aggiramento delle parti stampate durante gli spostamenti"
  2214. #: fdmprinter.def.json
  2215. msgctxt "travel_avoid_other_parts description"
  2216. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2217. msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing."
  2218. #: fdmprinter.def.json
  2219. msgctxt "travel_avoid_supports label"
  2220. msgid "Avoid Supports When Traveling"
  2221. msgstr "Aggiramento dei supporti durante gli spostamenti"
  2222. #: fdmprinter.def.json
  2223. msgctxt "travel_avoid_supports description"
  2224. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2225. msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing."
  2226. #: fdmprinter.def.json
  2227. msgctxt "travel_avoid_distance label"
  2228. msgid "Travel Avoid Distance"
  2229. msgstr "Distanza di aggiramento durante gli spostamenti"
  2230. #: fdmprinter.def.json
  2231. msgctxt "travel_avoid_distance description"
  2232. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2233. msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento."
  2234. #: fdmprinter.def.json
  2235. msgctxt "start_layers_at_same_position label"
  2236. msgid "Start Layers with the Same Part"
  2237. msgstr "Avvio strati con la stessa parte"
  2238. #: fdmprinter.def.json
  2239. msgctxt "start_layers_at_same_position description"
  2240. msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  2241. msgstr "In ciascuno strato inizia la stampa dell’oggetto vicino allo stesso punto, in modo che non si inizia un nuovo strato con la stampa del pezzo con cui è terminato lo strato precedente. Questo consente di ottenere migliori sovrapposizioni e parti piccole, ma aumenta il tempo di stampa."
  2242. #: fdmprinter.def.json
  2243. msgctxt "layer_start_x label"
  2244. msgid "Layer Start X"
  2245. msgstr "Avvio strato X"
  2246. #: fdmprinter.def.json
  2247. msgctxt "layer_start_x description"
  2248. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2249. msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2250. #: fdmprinter.def.json
  2251. msgctxt "layer_start_y label"
  2252. msgid "Layer Start Y"
  2253. msgstr "Avvio strato Y"
  2254. #: fdmprinter.def.json
  2255. msgctxt "layer_start_y description"
  2256. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2257. msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato."
  2258. #: fdmprinter.def.json
  2259. msgctxt "retraction_hop_enabled label"
  2260. msgid "Z Hop When Retracted"
  2261. msgstr "Z Hop durante la retrazione"
  2262. #: fdmprinter.def.json
  2263. msgctxt "retraction_hop_enabled description"
  2264. 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."
  2265. 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."
  2266. #: fdmprinter.def.json
  2267. msgctxt "retraction_hop_only_when_collides label"
  2268. msgid "Z Hop Only Over Printed Parts"
  2269. msgstr "Z Hop solo su parti stampate"
  2270. #: fdmprinter.def.json
  2271. msgctxt "retraction_hop_only_when_collides description"
  2272. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2273. 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."
  2274. #: fdmprinter.def.json
  2275. msgctxt "retraction_hop label"
  2276. msgid "Z Hop Height"
  2277. msgstr "Altezza Z Hop"
  2278. #: fdmprinter.def.json
  2279. msgctxt "retraction_hop description"
  2280. msgid "The height difference when performing a Z Hop."
  2281. msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop."
  2282. #: fdmprinter.def.json
  2283. msgctxt "retraction_hop_after_extruder_switch label"
  2284. msgid "Z Hop After Extruder Switch"
  2285. msgstr "Z Hop dopo cambio estrusore"
  2286. #: fdmprinter.def.json
  2287. msgctxt "retraction_hop_after_extruder_switch description"
  2288. 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."
  2289. 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."
  2290. #: fdmprinter.def.json
  2291. msgctxt "cooling label"
  2292. msgid "Cooling"
  2293. msgstr "Raffreddamento"
  2294. #: fdmprinter.def.json
  2295. msgctxt "cooling description"
  2296. msgid "Cooling"
  2297. msgstr "Raffreddamento"
  2298. #: fdmprinter.def.json
  2299. msgctxt "cool_fan_enabled label"
  2300. msgid "Enable Print Cooling"
  2301. msgstr "Abilitazione raffreddamento stampa"
  2302. #: fdmprinter.def.json
  2303. msgctxt "cool_fan_enabled description"
  2304. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2305. 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."
  2306. #: fdmprinter.def.json
  2307. msgctxt "cool_fan_speed label"
  2308. msgid "Fan Speed"
  2309. msgstr "Velocità della ventola"
  2310. #: fdmprinter.def.json
  2311. msgctxt "cool_fan_speed description"
  2312. msgid "The speed at which the print cooling fans spin."
  2313. msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa."
  2314. #: fdmprinter.def.json
  2315. msgctxt "cool_fan_speed_min label"
  2316. msgid "Regular Fan Speed"
  2317. msgstr "Velocità regolare della ventola"
  2318. #: fdmprinter.def.json
  2319. msgctxt "cool_fan_speed_min description"
  2320. 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."
  2321. 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."
  2322. #: fdmprinter.def.json
  2323. msgctxt "cool_fan_speed_max label"
  2324. msgid "Maximum Fan Speed"
  2325. msgstr "Velocità massima della ventola"
  2326. #: fdmprinter.def.json
  2327. msgctxt "cool_fan_speed_max description"
  2328. 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."
  2329. 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."
  2330. #: fdmprinter.def.json
  2331. msgctxt "cool_min_layer_time_fan_speed_max label"
  2332. msgid "Regular/Maximum Fan Speed Threshold"
  2333. msgstr "Soglia velocità regolare/massima della ventola"
  2334. #: fdmprinter.def.json
  2335. msgctxt "cool_min_layer_time_fan_speed_max description"
  2336. 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."
  2337. 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."
  2338. #: fdmprinter.def.json
  2339. msgctxt "cool_fan_speed_0 label"
  2340. msgid "Initial Fan Speed"
  2341. msgstr "Velocità iniziale della ventola"
  2342. #: fdmprinter.def.json
  2343. msgctxt "cool_fan_speed_0 description"
  2344. 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."
  2345. 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."
  2346. #: fdmprinter.def.json
  2347. msgctxt "cool_fan_full_at_height label"
  2348. msgid "Regular Fan Speed at Height"
  2349. msgstr "Velocità regolare della ventola in altezza"
  2350. #: fdmprinter.def.json
  2351. msgctxt "cool_fan_full_at_height description"
  2352. 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."
  2353. 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."
  2354. #: fdmprinter.def.json
  2355. msgctxt "cool_fan_full_layer label"
  2356. msgid "Regular Fan Speed at Layer"
  2357. msgstr "Velocità regolare della ventola in corrispondenza dello strato"
  2358. #: fdmprinter.def.json
  2359. msgctxt "cool_fan_full_layer description"
  2360. 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."
  2361. 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."
  2362. #: fdmprinter.def.json
  2363. msgctxt "cool_min_layer_time label"
  2364. msgid "Minimum Layer Time"
  2365. msgstr "Tempo minimo per strato"
  2366. #: fdmprinter.def.json
  2367. msgctxt "cool_min_layer_time description"
  2368. 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."
  2369. 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."
  2370. #: fdmprinter.def.json
  2371. msgctxt "cool_min_speed label"
  2372. msgid "Minimum Speed"
  2373. msgstr "Velocità minima"
  2374. #: fdmprinter.def.json
  2375. msgctxt "cool_min_speed description"
  2376. 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."
  2377. 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."
  2378. #: fdmprinter.def.json
  2379. msgctxt "cool_lift_head label"
  2380. msgid "Lift Head"
  2381. msgstr "Sollevamento della testina"
  2382. #: fdmprinter.def.json
  2383. msgctxt "cool_lift_head description"
  2384. 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."
  2385. 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."
  2386. #: fdmprinter.def.json
  2387. msgctxt "support label"
  2388. msgid "Support"
  2389. msgstr "Supporto"
  2390. #: fdmprinter.def.json
  2391. msgctxt "support description"
  2392. msgid "Support"
  2393. msgstr "Supporto"
  2394. #: fdmprinter.def.json
  2395. msgctxt "support_enable label"
  2396. msgid "Generate Support"
  2397. msgstr "Generazione supporto"
  2398. #: fdmprinter.def.json
  2399. msgctxt "support_enable description"
  2400. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2401. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  2402. #: fdmprinter.def.json
  2403. msgctxt "support_extruder_nr label"
  2404. msgid "Support Extruder"
  2405. msgstr "Estrusore del supporto"
  2406. #: fdmprinter.def.json
  2407. msgctxt "support_extruder_nr description"
  2408. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2409. msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla."
  2410. #: fdmprinter.def.json
  2411. msgctxt "support_infill_extruder_nr label"
  2412. msgid "Support Infill Extruder"
  2413. msgstr "Estrusore riempimento del supporto"
  2414. #: fdmprinter.def.json
  2415. msgctxt "support_infill_extruder_nr description"
  2416. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2417. msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2418. #: fdmprinter.def.json
  2419. msgctxt "support_extruder_nr_layer_0 label"
  2420. msgid "First Layer Support Extruder"
  2421. msgstr "Estrusore del supporto primo strato"
  2422. #: fdmprinter.def.json
  2423. msgctxt "support_extruder_nr_layer_0 description"
  2424. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2425. msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla."
  2426. #: fdmprinter.def.json
  2427. msgctxt "support_interface_extruder_nr label"
  2428. msgid "Support Interface Extruder"
  2429. msgstr "Estrusore interfaccia del supporto"
  2430. #: fdmprinter.def.json
  2431. msgctxt "support_interface_extruder_nr description"
  2432. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2433. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla."
  2434. #: fdmprinter.def.json
  2435. msgctxt "support_roof_extruder_nr label"
  2436. msgid "Support Roof Extruder"
  2437. msgstr "Estrusore parte superiore del supporto"
  2438. #: fdmprinter.def.json
  2439. msgctxt "support_roof_extruder_nr description"
  2440. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2441. msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla."
  2442. #: fdmprinter.def.json
  2443. msgctxt "support_bottom_extruder_nr label"
  2444. msgid "Support Floor Extruder"
  2445. msgstr "Estrusore parte inferiore del supporto"
  2446. #: fdmprinter.def.json
  2447. msgctxt "support_bottom_extruder_nr description"
  2448. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2449. msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla."
  2450. #: fdmprinter.def.json
  2451. msgctxt "support_type label"
  2452. msgid "Support Placement"
  2453. msgstr "Posizionamento supporto"
  2454. #: fdmprinter.def.json
  2455. msgctxt "support_type description"
  2456. 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."
  2457. 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."
  2458. #: fdmprinter.def.json
  2459. msgctxt "support_type option buildplate"
  2460. msgid "Touching Buildplate"
  2461. msgstr "Contatto con il Piano di Stampa"
  2462. #: fdmprinter.def.json
  2463. msgctxt "support_type option everywhere"
  2464. msgid "Everywhere"
  2465. msgstr "In Tutti i Possibili Punti"
  2466. #: fdmprinter.def.json
  2467. msgctxt "support_angle label"
  2468. msgid "Support Overhang Angle"
  2469. msgstr "Angolo di sbalzo del supporto"
  2470. #: fdmprinter.def.json
  2471. msgctxt "support_angle description"
  2472. 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."
  2473. 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."
  2474. #: fdmprinter.def.json
  2475. msgctxt "support_pattern label"
  2476. msgid "Support Pattern"
  2477. msgstr "Configurazione del supporto"
  2478. #: fdmprinter.def.json
  2479. msgctxt "support_pattern description"
  2480. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2481. msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere."
  2482. #: fdmprinter.def.json
  2483. msgctxt "support_pattern option lines"
  2484. msgid "Lines"
  2485. msgstr "Linee"
  2486. #: fdmprinter.def.json
  2487. msgctxt "support_pattern option grid"
  2488. msgid "Grid"
  2489. msgstr "Griglia"
  2490. #: fdmprinter.def.json
  2491. msgctxt "support_pattern option triangles"
  2492. msgid "Triangles"
  2493. msgstr "Triangoli"
  2494. #: fdmprinter.def.json
  2495. msgctxt "support_pattern option concentric"
  2496. msgid "Concentric"
  2497. msgstr "Concentriche"
  2498. #: fdmprinter.def.json
  2499. msgctxt "support_pattern option concentric_3d"
  2500. msgid "Concentric 3D"
  2501. msgstr "3D concentrica"
  2502. #: fdmprinter.def.json
  2503. msgctxt "support_pattern option zigzag"
  2504. msgid "Zig Zag"
  2505. msgstr "Zig Zag"
  2506. #: fdmprinter.def.json
  2507. msgctxt "support_pattern option cross"
  2508. msgid "Cross"
  2509. msgstr "Incrociata"
  2510. #: fdmprinter.def.json
  2511. msgctxt "support_wall_count label"
  2512. msgid "Support Wall Line Count"
  2513. msgstr "Numero delle linee perimetrali supporto"
  2514. #: fdmprinter.def.json
  2515. msgctxt "support_wall_count description"
  2516. 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."
  2517. 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."
  2518. #: fdmprinter.def.json
  2519. msgctxt "zig_zaggify_support label"
  2520. msgid "Connect Support Lines"
  2521. msgstr "Collegamento linee supporto"
  2522. #: fdmprinter.def.json
  2523. msgctxt "zig_zaggify_support description"
  2524. 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."
  2525. 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."
  2526. #: fdmprinter.def.json
  2527. msgctxt "support_connect_zigzags label"
  2528. msgid "Connect Support ZigZags"
  2529. msgstr "Collegamento Zig Zag supporto"
  2530. #: fdmprinter.def.json
  2531. msgctxt "support_connect_zigzags description"
  2532. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2533. msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag."
  2534. #: fdmprinter.def.json
  2535. msgctxt "support_infill_rate label"
  2536. msgid "Support Density"
  2537. msgstr "Densità del supporto"
  2538. #: fdmprinter.def.json
  2539. msgctxt "support_infill_rate description"
  2540. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2541. msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  2542. #: fdmprinter.def.json
  2543. msgctxt "support_line_distance label"
  2544. msgid "Support Line Distance"
  2545. msgstr "Distanza tra le linee del supporto"
  2546. #: fdmprinter.def.json
  2547. msgctxt "support_line_distance description"
  2548. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2549. msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto."
  2550. #: fdmprinter.def.json
  2551. msgctxt "support_z_distance label"
  2552. msgid "Support Z Distance"
  2553. msgstr "Distanza Z supporto"
  2554. #: fdmprinter.def.json
  2555. msgctxt "support_z_distance description"
  2556. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  2557. msgstr "È la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per eccesso a un multiplo dell’altezza strato."
  2558. #: fdmprinter.def.json
  2559. msgctxt "support_top_distance label"
  2560. msgid "Support Top Distance"
  2561. msgstr "Distanza superiore supporto"
  2562. #: fdmprinter.def.json
  2563. msgctxt "support_top_distance description"
  2564. msgid "Distance from the top of the support to the print."
  2565. msgstr "È la distanza tra la parte superiore del supporto e la stampa."
  2566. #: fdmprinter.def.json
  2567. msgctxt "support_bottom_distance label"
  2568. msgid "Support Bottom Distance"
  2569. msgstr "Distanza inferiore supporto"
  2570. #: fdmprinter.def.json
  2571. msgctxt "support_bottom_distance description"
  2572. msgid "Distance from the print to the bottom of the support."
  2573. msgstr "È la distanza tra la stampa e la parte inferiore del supporto."
  2574. #: fdmprinter.def.json
  2575. msgctxt "support_xy_distance label"
  2576. msgid "Support X/Y Distance"
  2577. msgstr "Distanza X/Y supporto"
  2578. #: fdmprinter.def.json
  2579. msgctxt "support_xy_distance description"
  2580. msgid "Distance of the support structure from the print in the X/Y directions."
  2581. msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y."
  2582. #: fdmprinter.def.json
  2583. msgctxt "support_xy_overrides_z label"
  2584. msgid "Support Distance Priority"
  2585. msgstr "Priorità distanza supporto"
  2586. #: fdmprinter.def.json
  2587. msgctxt "support_xy_overrides_z description"
  2588. 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."
  2589. 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."
  2590. #: fdmprinter.def.json
  2591. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2592. msgid "X/Y overrides Z"
  2593. msgstr "X/Y esclude Z"
  2594. #: fdmprinter.def.json
  2595. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2596. msgid "Z overrides X/Y"
  2597. msgstr "Z esclude X/Y"
  2598. #: fdmprinter.def.json
  2599. msgctxt "support_xy_distance_overhang label"
  2600. msgid "Minimum Support X/Y Distance"
  2601. msgstr "Distanza X/Y supporto minima"
  2602. #: fdmprinter.def.json
  2603. msgctxt "support_xy_distance_overhang description"
  2604. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2605. msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y. "
  2606. #: fdmprinter.def.json
  2607. msgctxt "support_bottom_stair_step_height label"
  2608. msgid "Support Stair Step Height"
  2609. msgstr "Altezza gradini supporto"
  2610. #: fdmprinter.def.json
  2611. msgctxt "support_bottom_stair_step_height description"
  2612. 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."
  2613. 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."
  2614. #: fdmprinter.def.json
  2615. msgctxt "support_bottom_stair_step_width label"
  2616. msgid "Support Stair Step Maximum Width"
  2617. msgstr "Larghezza massima gradino supporto"
  2618. #: fdmprinter.def.json
  2619. msgctxt "support_bottom_stair_step_width description"
  2620. 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."
  2621. 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."
  2622. #: fdmprinter.def.json
  2623. msgctxt "support_join_distance label"
  2624. msgid "Support Join Distance"
  2625. msgstr "Distanza giunzione supporto"
  2626. #: fdmprinter.def.json
  2627. msgctxt "support_join_distance description"
  2628. msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  2629. msgstr "Indica la distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica."
  2630. #: fdmprinter.def.json
  2631. msgctxt "support_offset label"
  2632. msgid "Support Horizontal Expansion"
  2633. msgstr "Espansione orizzontale supporto"
  2634. #: fdmprinter.def.json
  2635. msgctxt "support_offset description"
  2636. 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."
  2637. 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."
  2638. #: fdmprinter.def.json
  2639. msgctxt "support_infill_sparse_thickness label"
  2640. msgid "Support Infill Layer Thickness"
  2641. msgstr "Spessore dello strato di riempimento di supporto"
  2642. #: fdmprinter.def.json
  2643. msgctxt "support_infill_sparse_thickness description"
  2644. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2645. 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."
  2646. #: fdmprinter.def.json
  2647. msgctxt "gradual_support_infill_steps label"
  2648. msgid "Gradual Support Infill Steps"
  2649. msgstr "Fasi di riempimento graduale del supporto"
  2650. #: fdmprinter.def.json
  2651. msgctxt "gradual_support_infill_steps description"
  2652. 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."
  2653. 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."
  2654. #: fdmprinter.def.json
  2655. msgctxt "gradual_support_infill_step_height label"
  2656. msgid "Gradual Support Infill Step Height"
  2657. msgstr "Altezza fasi di riempimento graduale del supporto"
  2658. #: fdmprinter.def.json
  2659. msgctxt "gradual_support_infill_step_height description"
  2660. msgid "The height of support infill of a given density before switching to half the density."
  2661. msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità."
  2662. #: fdmprinter.def.json
  2663. msgctxt "support_interface_enable label"
  2664. msgid "Enable Support Interface"
  2665. msgstr "Abilitazione interfaccia supporto"
  2666. #: fdmprinter.def.json
  2667. msgctxt "support_interface_enable description"
  2668. 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."
  2669. 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."
  2670. #: fdmprinter.def.json
  2671. msgctxt "support_roof_enable label"
  2672. msgid "Enable Support Roof"
  2673. msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto"
  2674. #: fdmprinter.def.json
  2675. msgctxt "support_roof_enable description"
  2676. 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."
  2677. msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  2678. #: fdmprinter.def.json
  2679. msgctxt "support_bottom_enable label"
  2680. msgid "Enable Support Floor"
  2681. msgstr "Abilitazione parte inferiore supporto"
  2682. #: fdmprinter.def.json
  2683. msgctxt "support_bottom_enable description"
  2684. 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."
  2685. msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto."
  2686. #: fdmprinter.def.json
  2687. msgctxt "support_interface_height label"
  2688. msgid "Support Interface Thickness"
  2689. msgstr "Spessore interfaccia supporto"
  2690. #: fdmprinter.def.json
  2691. msgctxt "support_interface_height description"
  2692. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2693. msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore."
  2694. #: fdmprinter.def.json
  2695. msgctxt "support_roof_height label"
  2696. msgid "Support Roof Thickness"
  2697. msgstr "Spessore parte superiore (tetto) del supporto"
  2698. #: fdmprinter.def.json
  2699. msgctxt "support_roof_height description"
  2700. 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."
  2701. msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello."
  2702. #: fdmprinter.def.json
  2703. msgctxt "support_bottom_height label"
  2704. msgid "Support Floor Thickness"
  2705. msgstr "Spessore parte inferiore del supporto"
  2706. #: fdmprinter.def.json
  2707. msgctxt "support_bottom_height description"
  2708. 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."
  2709. 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."
  2710. #: fdmprinter.def.json
  2711. msgctxt "support_interface_skip_height label"
  2712. msgid "Support Interface Resolution"
  2713. msgstr "Risoluzione interfaccia supporto"
  2714. #: fdmprinter.def.json
  2715. msgctxt "support_interface_skip_height description"
  2716. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  2717. msgstr "Quando si controlla dove si trova il modello sopra e sotto il supporto, procedere ad intervalli di altezza prestabilita. Valori inferiori causeranno un sezionamento più lento, mentre valori più alti potrebbero causare la stampa del supporto normale in alcuni punti in cui dovrebbe esserci un'interfaccia di supporto."
  2718. #: fdmprinter.def.json
  2719. msgctxt "support_interface_density label"
  2720. msgid "Support Interface Density"
  2721. msgstr "Densità interfaccia supporto"
  2722. #: fdmprinter.def.json
  2723. msgctxt "support_interface_density description"
  2724. 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."
  2725. 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."
  2726. #: fdmprinter.def.json
  2727. msgctxt "support_roof_density label"
  2728. msgid "Support Roof Density"
  2729. msgstr "Densità parte superiore (tetto) del supporto"
  2730. #: fdmprinter.def.json
  2731. msgctxt "support_roof_density description"
  2732. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2733. msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  2734. #: fdmprinter.def.json
  2735. msgctxt "support_roof_line_distance label"
  2736. msgid "Support Roof Line Distance"
  2737. msgstr "Distanza tra le linee della parte superiore (tetto) del supporto"
  2738. #: fdmprinter.def.json
  2739. msgctxt "support_roof_line_distance description"
  2740. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2741. 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."
  2742. #: fdmprinter.def.json
  2743. msgctxt "support_bottom_density label"
  2744. msgid "Support Floor Density"
  2745. msgstr "Densità parte inferiore del supporto"
  2746. #: fdmprinter.def.json
  2747. msgctxt "support_bottom_density description"
  2748. 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."
  2749. msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello."
  2750. #: fdmprinter.def.json
  2751. msgctxt "support_bottom_line_distance label"
  2752. msgid "Support Floor Line Distance"
  2753. msgstr "Distanza della linea di supporto inferiore"
  2754. #: fdmprinter.def.json
  2755. msgctxt "support_bottom_line_distance description"
  2756. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2757. 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."
  2758. #: fdmprinter.def.json
  2759. msgctxt "support_interface_pattern label"
  2760. msgid "Support Interface Pattern"
  2761. msgstr "Configurazione interfaccia supporto"
  2762. #: fdmprinter.def.json
  2763. msgctxt "support_interface_pattern description"
  2764. msgid "The pattern with which the interface of the support with the model is printed."
  2765. msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello."
  2766. #: fdmprinter.def.json
  2767. msgctxt "support_interface_pattern option lines"
  2768. msgid "Lines"
  2769. msgstr "Linee"
  2770. #: fdmprinter.def.json
  2771. msgctxt "support_interface_pattern option grid"
  2772. msgid "Grid"
  2773. msgstr "Griglia"
  2774. #: fdmprinter.def.json
  2775. msgctxt "support_interface_pattern option triangles"
  2776. msgid "Triangles"
  2777. msgstr "Triangoli"
  2778. #: fdmprinter.def.json
  2779. msgctxt "support_interface_pattern option concentric"
  2780. msgid "Concentric"
  2781. msgstr "Concentriche"
  2782. #: fdmprinter.def.json
  2783. msgctxt "support_interface_pattern option concentric_3d"
  2784. msgid "Concentric 3D"
  2785. msgstr "3D concentrica"
  2786. #: fdmprinter.def.json
  2787. msgctxt "support_interface_pattern option zigzag"
  2788. msgid "Zig Zag"
  2789. msgstr "Zig Zag"
  2790. #: fdmprinter.def.json
  2791. msgctxt "support_roof_pattern label"
  2792. msgid "Support Roof Pattern"
  2793. msgstr "Configurazione della parte superiore (tetto) del supporto"
  2794. #: fdmprinter.def.json
  2795. msgctxt "support_roof_pattern description"
  2796. msgid "The pattern with which the roofs of the support are printed."
  2797. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto."
  2798. #: fdmprinter.def.json
  2799. msgctxt "support_roof_pattern option lines"
  2800. msgid "Lines"
  2801. msgstr "Linee"
  2802. #: fdmprinter.def.json
  2803. msgctxt "support_roof_pattern option grid"
  2804. msgid "Grid"
  2805. msgstr "Griglia"
  2806. #: fdmprinter.def.json
  2807. msgctxt "support_roof_pattern option triangles"
  2808. msgid "Triangles"
  2809. msgstr "Triangoli"
  2810. #: fdmprinter.def.json
  2811. msgctxt "support_roof_pattern option concentric"
  2812. msgid "Concentric"
  2813. msgstr "Concentriche"
  2814. #: fdmprinter.def.json
  2815. msgctxt "support_roof_pattern option concentric_3d"
  2816. msgid "Concentric 3D"
  2817. msgstr "3D concentrica"
  2818. #: fdmprinter.def.json
  2819. msgctxt "support_roof_pattern option zigzag"
  2820. msgid "Zig Zag"
  2821. msgstr "Zig Zag"
  2822. #: fdmprinter.def.json
  2823. msgctxt "support_bottom_pattern label"
  2824. msgid "Support Floor Pattern"
  2825. msgstr "Configurazione della parte inferiore del supporto"
  2826. #: fdmprinter.def.json
  2827. msgctxt "support_bottom_pattern description"
  2828. msgid "The pattern with which the floors of the support are printed."
  2829. msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto."
  2830. #: fdmprinter.def.json
  2831. msgctxt "support_bottom_pattern option lines"
  2832. msgid "Lines"
  2833. msgstr "Linee"
  2834. #: fdmprinter.def.json
  2835. msgctxt "support_bottom_pattern option grid"
  2836. msgid "Grid"
  2837. msgstr "Griglia"
  2838. #: fdmprinter.def.json
  2839. msgctxt "support_bottom_pattern option triangles"
  2840. msgid "Triangles"
  2841. msgstr "Triangoli"
  2842. #: fdmprinter.def.json
  2843. msgctxt "support_bottom_pattern option concentric"
  2844. msgid "Concentric"
  2845. msgstr "Concentriche"
  2846. #: fdmprinter.def.json
  2847. msgctxt "support_bottom_pattern option concentric_3d"
  2848. msgid "Concentric 3D"
  2849. msgstr "3D concentrica"
  2850. #: fdmprinter.def.json
  2851. msgctxt "support_bottom_pattern option zigzag"
  2852. msgid "Zig Zag"
  2853. msgstr "Zig Zag"
  2854. #: fdmprinter.def.json
  2855. msgctxt "support_use_towers label"
  2856. msgid "Use Towers"
  2857. msgstr "Utilizzo delle torri"
  2858. #: fdmprinter.def.json
  2859. msgctxt "support_use_towers description"
  2860. 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."
  2861. 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'."
  2862. #: fdmprinter.def.json
  2863. msgctxt "support_tower_diameter label"
  2864. msgid "Tower Diameter"
  2865. msgstr "Diametro della torre"
  2866. #: fdmprinter.def.json
  2867. msgctxt "support_tower_diameter description"
  2868. msgid "The diameter of a special tower."
  2869. msgstr "Corrisponde al diametro di una torre speciale."
  2870. #: fdmprinter.def.json
  2871. msgctxt "support_minimal_diameter label"
  2872. msgid "Minimum Diameter"
  2873. msgstr "Diametro minimo"
  2874. #: fdmprinter.def.json
  2875. msgctxt "support_minimal_diameter description"
  2876. msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2877. msgstr "È il diametro minimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale."
  2878. #: fdmprinter.def.json
  2879. msgctxt "support_tower_roof_angle label"
  2880. msgid "Tower Roof Angle"
  2881. msgstr "Angolazione della parte superiore (tetto) della torre"
  2882. #: fdmprinter.def.json
  2883. msgctxt "support_tower_roof_angle description"
  2884. 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."
  2885. msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte."
  2886. #: fdmprinter.def.json
  2887. msgctxt "support_mesh_drop_down label"
  2888. msgid "Drop Down Support Mesh"
  2889. msgstr "Maglia supporto di discesa"
  2890. #: fdmprinter.def.json
  2891. msgctxt "support_mesh_drop_down description"
  2892. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2893. msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo."
  2894. #: fdmprinter.def.json
  2895. msgctxt "platform_adhesion label"
  2896. msgid "Build Plate Adhesion"
  2897. msgstr "Adesione piano di stampa"
  2898. #: fdmprinter.def.json
  2899. msgctxt "platform_adhesion description"
  2900. msgid "Adhesion"
  2901. msgstr "Adesione"
  2902. #: fdmprinter.def.json
  2903. msgctxt "prime_blob_enable label"
  2904. msgid "Enable Prime Blob"
  2905. msgstr "Abilitazione blob di innesco"
  2906. #: fdmprinter.def.json
  2907. msgctxt "prime_blob_enable description"
  2908. 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."
  2909. 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."
  2910. #: fdmprinter.def.json
  2911. msgctxt "extruder_prime_pos_x label"
  2912. msgid "Extruder Prime X Position"
  2913. msgstr "Posizione X innesco estrusore"
  2914. #: fdmprinter.def.json
  2915. msgctxt "extruder_prime_pos_x description"
  2916. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2917. msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa."
  2918. #: fdmprinter.def.json
  2919. msgctxt "extruder_prime_pos_y label"
  2920. msgid "Extruder Prime Y Position"
  2921. msgstr "Posizione Y innesco estrusore"
  2922. #: fdmprinter.def.json
  2923. msgctxt "extruder_prime_pos_y description"
  2924. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2925. msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa."
  2926. #: fdmprinter.def.json
  2927. msgctxt "adhesion_type label"
  2928. msgid "Build Plate Adhesion Type"
  2929. msgstr "Tipo di adesione piano di stampa"
  2930. #: fdmprinter.def.json
  2931. msgctxt "adhesion_type description"
  2932. 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."
  2933. 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."
  2934. #: fdmprinter.def.json
  2935. msgctxt "adhesion_type option skirt"
  2936. msgid "Skirt"
  2937. msgstr "Skirt"
  2938. #: fdmprinter.def.json
  2939. msgctxt "adhesion_type option brim"
  2940. msgid "Brim"
  2941. msgstr "Brim"
  2942. #: fdmprinter.def.json
  2943. msgctxt "adhesion_type option raft"
  2944. msgid "Raft"
  2945. msgstr "Raft"
  2946. #: fdmprinter.def.json
  2947. msgctxt "adhesion_type option none"
  2948. msgid "None"
  2949. msgstr "Nessuno"
  2950. #: fdmprinter.def.json
  2951. msgctxt "adhesion_extruder_nr label"
  2952. msgid "Build Plate Adhesion Extruder"
  2953. msgstr "Estrusore adesione piano di stampa"
  2954. #: fdmprinter.def.json
  2955. msgctxt "adhesion_extruder_nr description"
  2956. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2957. msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla."
  2958. #: fdmprinter.def.json
  2959. msgctxt "skirt_line_count label"
  2960. msgid "Skirt Line Count"
  2961. msgstr "Numero di linee dello skirt"
  2962. #: fdmprinter.def.json
  2963. msgctxt "skirt_line_count description"
  2964. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2965. 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."
  2966. #: fdmprinter.def.json
  2967. msgctxt "skirt_gap label"
  2968. msgid "Skirt Distance"
  2969. msgstr "Distanza dello skirt"
  2970. #: fdmprinter.def.json
  2971. msgctxt "skirt_gap description"
  2972. msgid ""
  2973. "The horizontal distance between the skirt and the first layer of the print.\n"
  2974. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2975. msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\nQuesta è la distanza minima. Più linee di skirt aumenteranno tale distanza."
  2976. #: fdmprinter.def.json
  2977. msgctxt "skirt_brim_minimal_length label"
  2978. msgid "Skirt/Brim Minimum Length"
  2979. msgstr "Lunghezza minima dello skirt/brim"
  2980. #: fdmprinter.def.json
  2981. msgctxt "skirt_brim_minimal_length description"
  2982. 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."
  2983. 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."
  2984. #: fdmprinter.def.json
  2985. msgctxt "brim_width label"
  2986. msgid "Brim Width"
  2987. msgstr "Larghezza del brim"
  2988. #: fdmprinter.def.json
  2989. msgctxt "brim_width description"
  2990. 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."
  2991. 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."
  2992. #: fdmprinter.def.json
  2993. msgctxt "brim_line_count label"
  2994. msgid "Brim Line Count"
  2995. msgstr "Numero di linee del brim"
  2996. #: fdmprinter.def.json
  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. #: fdmprinter.def.json
  3001. msgctxt "brim_outside_only label"
  3002. msgid "Brim Only on Outside"
  3003. msgstr "Brim solo sull’esterno"
  3004. #: fdmprinter.def.json
  3005. msgctxt "brim_outside_only description"
  3006. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  3007. msgstr "Stampa il brim solo sull’esterno del modello. Questo riduce la quantità del brim che si deve rimuovere in seguito, mentre non riduce particolarmente l’adesione al piano."
  3008. #: fdmprinter.def.json
  3009. msgctxt "raft_margin label"
  3010. msgid "Raft Extra Margin"
  3011. msgstr "Margine extra del raft"
  3012. #: fdmprinter.def.json
  3013. msgctxt "raft_margin description"
  3014. 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."
  3015. 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."
  3016. #: fdmprinter.def.json
  3017. msgctxt "raft_smoothing label"
  3018. msgid "Raft Smoothing"
  3019. msgstr "Smoothing raft"
  3020. #: fdmprinter.def.json
  3021. msgctxt "raft_smoothing description"
  3022. 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."
  3023. 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."
  3024. #: fdmprinter.def.json
  3025. msgctxt "raft_airgap label"
  3026. msgid "Raft Air Gap"
  3027. msgstr "Traferro del raft"
  3028. #: fdmprinter.def.json
  3029. msgctxt "raft_airgap description"
  3030. 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."
  3031. 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."
  3032. #: fdmprinter.def.json
  3033. msgctxt "layer_0_z_overlap label"
  3034. msgid "Initial Layer Z Overlap"
  3035. msgstr "Z Sovrapposizione Primo Strato"
  3036. #: fdmprinter.def.json
  3037. msgctxt "layer_0_z_overlap description"
  3038. 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."
  3039. msgstr "Effettua il primo e secondo strato di sovrapposizione modello nella direzione Z per compensare il filamento perso nel traferro. Tutti i modelli sopra il primo strato del modello saranno spostati verso il basso di questa quantità."
  3040. #: fdmprinter.def.json
  3041. msgctxt "raft_surface_layers label"
  3042. msgid "Raft Top Layers"
  3043. msgstr "Strati superiori del raft"
  3044. #: fdmprinter.def.json
  3045. msgctxt "raft_surface_layers description"
  3046. 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."
  3047. 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."
  3048. #: fdmprinter.def.json
  3049. msgctxt "raft_surface_thickness label"
  3050. msgid "Raft Top Layer Thickness"
  3051. msgstr "Spessore dello strato superiore del raft"
  3052. #: fdmprinter.def.json
  3053. msgctxt "raft_surface_thickness description"
  3054. msgid "Layer thickness of the top raft layers."
  3055. msgstr "È lo spessore degli strati superiori del raft."
  3056. #: fdmprinter.def.json
  3057. msgctxt "raft_surface_line_width label"
  3058. msgid "Raft Top Line Width"
  3059. msgstr "Larghezza delle linee superiori del raft"
  3060. #: fdmprinter.def.json
  3061. msgctxt "raft_surface_line_width description"
  3062. 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."
  3063. msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft."
  3064. #: fdmprinter.def.json
  3065. msgctxt "raft_surface_line_spacing label"
  3066. msgid "Raft Top Spacing"
  3067. msgstr "Spaziatura superiore del raft"
  3068. #: fdmprinter.def.json
  3069. msgctxt "raft_surface_line_spacing description"
  3070. 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."
  3071. 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."
  3072. #: fdmprinter.def.json
  3073. msgctxt "raft_interface_thickness label"
  3074. msgid "Raft Middle Thickness"
  3075. msgstr "Spessore dello strato intermedio del raft"
  3076. #: fdmprinter.def.json
  3077. msgctxt "raft_interface_thickness description"
  3078. msgid "Layer thickness of the middle raft layer."
  3079. msgstr "È lo spessore dello strato intermedio del raft."
  3080. #: fdmprinter.def.json
  3081. msgctxt "raft_interface_line_width label"
  3082. msgid "Raft Middle Line Width"
  3083. msgstr "Larghezza delle linee dello strato intermedio del raft"
  3084. #: fdmprinter.def.json
  3085. msgctxt "raft_interface_line_width description"
  3086. 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."
  3087. 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."
  3088. #: fdmprinter.def.json
  3089. msgctxt "raft_interface_line_spacing label"
  3090. msgid "Raft Middle Spacing"
  3091. msgstr "Spaziatura dello strato intermedio del raft"
  3092. #: fdmprinter.def.json
  3093. msgctxt "raft_interface_line_spacing description"
  3094. 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."
  3095. 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."
  3096. #: fdmprinter.def.json
  3097. msgctxt "raft_base_thickness label"
  3098. msgid "Raft Base Thickness"
  3099. msgstr "Spessore della base del raft"
  3100. #: fdmprinter.def.json
  3101. msgctxt "raft_base_thickness description"
  3102. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3103. msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa."
  3104. #: fdmprinter.def.json
  3105. msgctxt "raft_base_line_width label"
  3106. msgid "Raft Base Line Width"
  3107. msgstr "Larghezza delle linee dello strato di base del raft"
  3108. #: fdmprinter.def.json
  3109. msgctxt "raft_base_line_width description"
  3110. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3111. 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."
  3112. #: fdmprinter.def.json
  3113. msgctxt "raft_base_line_spacing label"
  3114. msgid "Raft Line Spacing"
  3115. msgstr "Spaziatura delle linee del raft"
  3116. #: fdmprinter.def.json
  3117. msgctxt "raft_base_line_spacing description"
  3118. 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."
  3119. 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."
  3120. #: fdmprinter.def.json
  3121. msgctxt "raft_speed label"
  3122. msgid "Raft Print Speed"
  3123. msgstr "Velocità di stampa del raft"
  3124. #: fdmprinter.def.json
  3125. msgctxt "raft_speed description"
  3126. msgid "The speed at which the raft is printed."
  3127. msgstr "Indica la velocità alla quale il raft è stampato."
  3128. #: fdmprinter.def.json
  3129. msgctxt "raft_surface_speed label"
  3130. msgid "Raft Top Print Speed"
  3131. msgstr "Velocità di stampa parte superiore del raft"
  3132. #: fdmprinter.def.json
  3133. msgctxt "raft_surface_speed description"
  3134. 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."
  3135. 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."
  3136. #: fdmprinter.def.json
  3137. msgctxt "raft_interface_speed label"
  3138. msgid "Raft Middle Print Speed"
  3139. msgstr "Velocità di stampa raft intermedio"
  3140. #: fdmprinter.def.json
  3141. msgctxt "raft_interface_speed description"
  3142. 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."
  3143. 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."
  3144. #: fdmprinter.def.json
  3145. msgctxt "raft_base_speed label"
  3146. msgid "Raft Base Print Speed"
  3147. msgstr "Velocità di stampa della base del raft"
  3148. #: fdmprinter.def.json
  3149. msgctxt "raft_base_speed description"
  3150. 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."
  3151. 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."
  3152. #: fdmprinter.def.json
  3153. msgctxt "raft_acceleration label"
  3154. msgid "Raft Print Acceleration"
  3155. msgstr "Accelerazione di stampa del raft"
  3156. #: fdmprinter.def.json
  3157. msgctxt "raft_acceleration description"
  3158. msgid "The acceleration with which the raft is printed."
  3159. msgstr "Indica l’accelerazione con cui viene stampato il raft."
  3160. #: fdmprinter.def.json
  3161. msgctxt "raft_surface_acceleration label"
  3162. msgid "Raft Top Print Acceleration"
  3163. msgstr "Accelerazione di stampa parte superiore del raft"
  3164. #: fdmprinter.def.json
  3165. msgctxt "raft_surface_acceleration description"
  3166. msgid "The acceleration with which the top raft layers are printed."
  3167. msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft."
  3168. #: fdmprinter.def.json
  3169. msgctxt "raft_interface_acceleration label"
  3170. msgid "Raft Middle Print Acceleration"
  3171. msgstr "Accelerazione di stampa raft intermedio"
  3172. #: fdmprinter.def.json
  3173. msgctxt "raft_interface_acceleration description"
  3174. msgid "The acceleration with which the middle raft layer is printed."
  3175. msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft."
  3176. #: fdmprinter.def.json
  3177. msgctxt "raft_base_acceleration label"
  3178. msgid "Raft Base Print Acceleration"
  3179. msgstr "Accelerazione di stampa della base del raft"
  3180. #: fdmprinter.def.json
  3181. msgctxt "raft_base_acceleration description"
  3182. msgid "The acceleration with which the base raft layer is printed."
  3183. msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft."
  3184. #: fdmprinter.def.json
  3185. msgctxt "raft_jerk label"
  3186. msgid "Raft Print Jerk"
  3187. msgstr "Jerk stampa del raft"
  3188. #: fdmprinter.def.json
  3189. msgctxt "raft_jerk description"
  3190. msgid "The jerk with which the raft is printed."
  3191. msgstr "Indica il jerk con cui viene stampato il raft."
  3192. #: fdmprinter.def.json
  3193. msgctxt "raft_surface_jerk label"
  3194. msgid "Raft Top Print Jerk"
  3195. msgstr "Jerk di stampa parte superiore del raft"
  3196. #: fdmprinter.def.json
  3197. msgctxt "raft_surface_jerk description"
  3198. msgid "The jerk with which the top raft layers are printed."
  3199. msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft."
  3200. #: fdmprinter.def.json
  3201. msgctxt "raft_interface_jerk label"
  3202. msgid "Raft Middle Print Jerk"
  3203. msgstr "Jerk di stampa raft intermedio"
  3204. #: fdmprinter.def.json
  3205. msgctxt "raft_interface_jerk description"
  3206. msgid "The jerk with which the middle raft layer is printed."
  3207. msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft."
  3208. #: fdmprinter.def.json
  3209. msgctxt "raft_base_jerk label"
  3210. msgid "Raft Base Print Jerk"
  3211. msgstr "Jerk di stampa della base del raft"
  3212. #: fdmprinter.def.json
  3213. msgctxt "raft_base_jerk description"
  3214. msgid "The jerk with which the base raft layer is printed."
  3215. msgstr "Indica il jerk con cui viene stampato lo strato di base del raft."
  3216. #: fdmprinter.def.json
  3217. msgctxt "raft_fan_speed label"
  3218. msgid "Raft Fan Speed"
  3219. msgstr "Velocità della ventola per il raft"
  3220. #: fdmprinter.def.json
  3221. msgctxt "raft_fan_speed description"
  3222. msgid "The fan speed for the raft."
  3223. msgstr "Indica la velocità di rotazione della ventola per il raft."
  3224. #: fdmprinter.def.json
  3225. msgctxt "raft_surface_fan_speed label"
  3226. msgid "Raft Top Fan Speed"
  3227. msgstr "Velocità della ventola per la parte superiore del raft"
  3228. #: fdmprinter.def.json
  3229. msgctxt "raft_surface_fan_speed description"
  3230. msgid "The fan speed for the top raft layers."
  3231. msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft."
  3232. #: fdmprinter.def.json
  3233. msgctxt "raft_interface_fan_speed label"
  3234. msgid "Raft Middle Fan Speed"
  3235. msgstr "Velocità della ventola per il raft intermedio"
  3236. #: fdmprinter.def.json
  3237. msgctxt "raft_interface_fan_speed description"
  3238. msgid "The fan speed for the middle raft layer."
  3239. msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft."
  3240. #: fdmprinter.def.json
  3241. msgctxt "raft_base_fan_speed label"
  3242. msgid "Raft Base Fan Speed"
  3243. msgstr "Velocità della ventola per la base del raft"
  3244. #: fdmprinter.def.json
  3245. msgctxt "raft_base_fan_speed description"
  3246. msgid "The fan speed for the base raft layer."
  3247. msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft."
  3248. #: fdmprinter.def.json
  3249. msgctxt "dual label"
  3250. msgid "Dual Extrusion"
  3251. msgstr "Doppia estrusione"
  3252. #: fdmprinter.def.json
  3253. msgctxt "dual description"
  3254. msgid "Settings used for printing with multiple extruders."
  3255. msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli."
  3256. #: fdmprinter.def.json
  3257. msgctxt "prime_tower_enable label"
  3258. msgid "Enable Prime Tower"
  3259. msgstr "Abilitazione torre di innesco"
  3260. #: fdmprinter.def.json
  3261. msgctxt "prime_tower_enable description"
  3262. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3263. msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello."
  3264. #: fdmprinter.def.json
  3265. msgctxt "prime_tower_circular label"
  3266. msgid "Circular Prime Tower"
  3267. msgstr "Torre di innesco circolare"
  3268. #: fdmprinter.def.json
  3269. msgctxt "prime_tower_circular description"
  3270. msgid "Make the prime tower as a circular shape."
  3271. msgstr "Conferisce alla torre di innesco una forma circolare."
  3272. #: fdmprinter.def.json
  3273. msgctxt "prime_tower_size label"
  3274. msgid "Prime Tower Size"
  3275. msgstr "Dimensioni torre di innesco"
  3276. #: fdmprinter.def.json
  3277. msgctxt "prime_tower_size description"
  3278. msgid "The width of the prime tower."
  3279. msgstr "Indica la larghezza della torre di innesco."
  3280. #: fdmprinter.def.json
  3281. msgctxt "prime_tower_min_volume label"
  3282. msgid "Prime Tower Minimum Volume"
  3283. msgstr "Volume minimo torre di innesco"
  3284. #: fdmprinter.def.json
  3285. msgctxt "prime_tower_min_volume description"
  3286. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3287. msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza."
  3288. #: fdmprinter.def.json
  3289. msgctxt "prime_tower_wall_thickness label"
  3290. msgid "Prime Tower Thickness"
  3291. msgstr "Spessore torre di innesco"
  3292. #: fdmprinter.def.json
  3293. msgctxt "prime_tower_wall_thickness description"
  3294. msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  3295. msgstr "Lo spessore della torre di innesco cava. Uno spessore superiore alla metà del volume minimo della torre di innesco genera una torre di innesco densa."
  3296. #: fdmprinter.def.json
  3297. msgctxt "prime_tower_position_x label"
  3298. msgid "Prime Tower X Position"
  3299. msgstr "Posizione X torre di innesco"
  3300. #: fdmprinter.def.json
  3301. msgctxt "prime_tower_position_x description"
  3302. msgid "The x coordinate of the position of the prime tower."
  3303. msgstr "Indica la coordinata X della posizione della torre di innesco."
  3304. #: fdmprinter.def.json
  3305. msgctxt "prime_tower_position_y label"
  3306. msgid "Prime Tower Y Position"
  3307. msgstr "Posizione Y torre di innesco"
  3308. #: fdmprinter.def.json
  3309. msgctxt "prime_tower_position_y description"
  3310. msgid "The y coordinate of the position of the prime tower."
  3311. msgstr "Indica la coordinata Y della posizione della torre di innesco."
  3312. #: fdmprinter.def.json
  3313. msgctxt "prime_tower_flow label"
  3314. msgid "Prime Tower Flow"
  3315. msgstr "Flusso torre di innesco"
  3316. #: fdmprinter.def.json
  3317. msgctxt "prime_tower_flow description"
  3318. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  3319. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore."
  3320. #: fdmprinter.def.json
  3321. msgctxt "prime_tower_wipe_enabled label"
  3322. msgid "Wipe Inactive Nozzle on Prime Tower"
  3323. msgstr "Ugello pulitura inattiva sulla torre di innesco"
  3324. #: fdmprinter.def.json
  3325. msgctxt "prime_tower_wipe_enabled description"
  3326. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3327. msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco."
  3328. #: fdmprinter.def.json
  3329. msgctxt "dual_pre_wipe label"
  3330. msgid "Wipe Nozzle After Switch"
  3331. msgstr "Ugello pulitura dopo commutazione"
  3332. #: fdmprinter.def.json
  3333. msgctxt "dual_pre_wipe description"
  3334. msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  3335. msgstr "Dopo la commutazione dell’estrusore, pulire il materiale fuoriuscito dall’ugello sul primo oggetto stampato. Questo effettua un movimento di pulitura lento in un punto in cui il materiale fuoriuscito causa il minor danno alla qualità della superficie della stampa."
  3336. #: fdmprinter.def.json
  3337. msgctxt "prime_tower_purge_volume label"
  3338. msgid "Prime Tower Purge Volume"
  3339. msgstr "Volume di scarico torre di innesco"
  3340. #: fdmprinter.def.json
  3341. msgctxt "prime_tower_purge_volume description"
  3342. msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  3343. msgstr "Quantità di filamento da scaricare durante la pulizia della torre di innesco. Lo scarico è utile per compensare il filamento perso per colatura durante l'inattività dell'ugello."
  3344. #: fdmprinter.def.json
  3345. msgctxt "ooze_shield_enabled label"
  3346. msgid "Enable Ooze Shield"
  3347. msgstr "Abilitazione del riparo materiale fuoriuscito"
  3348. #: fdmprinter.def.json
  3349. msgctxt "ooze_shield_enabled description"
  3350. 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."
  3351. 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."
  3352. #: fdmprinter.def.json
  3353. msgctxt "ooze_shield_angle label"
  3354. msgid "Ooze Shield Angle"
  3355. msgstr "Angolo del riparo materiale fuoriuscito"
  3356. #: fdmprinter.def.json
  3357. msgctxt "ooze_shield_angle description"
  3358. 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."
  3359. 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."
  3360. #: fdmprinter.def.json
  3361. msgctxt "ooze_shield_dist label"
  3362. msgid "Ooze Shield Distance"
  3363. msgstr "Distanza del riparo materiale fuoriuscito"
  3364. #: fdmprinter.def.json
  3365. msgctxt "ooze_shield_dist description"
  3366. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3367. msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y."
  3368. #: fdmprinter.def.json
  3369. msgctxt "meshfix label"
  3370. msgid "Mesh Fixes"
  3371. msgstr "Correzioni delle maglie"
  3372. #: fdmprinter.def.json
  3373. msgctxt "meshfix description"
  3374. msgid "category_fixes"
  3375. msgstr "category_fixes"
  3376. #: fdmprinter.def.json
  3377. msgctxt "meshfix_union_all label"
  3378. msgid "Union Overlapping Volumes"
  3379. msgstr "Unione dei volumi in sovrapposizione"
  3380. #: fdmprinter.def.json
  3381. msgctxt "meshfix_union_all description"
  3382. 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."
  3383. 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."
  3384. #: fdmprinter.def.json
  3385. msgctxt "meshfix_union_all_remove_holes label"
  3386. msgid "Remove All Holes"
  3387. msgstr "Rimozione di tutti i fori"
  3388. #: fdmprinter.def.json
  3389. msgctxt "meshfix_union_all_remove_holes description"
  3390. 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."
  3391. 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."
  3392. #: fdmprinter.def.json
  3393. msgctxt "meshfix_extensive_stitching label"
  3394. msgid "Extensive Stitching"
  3395. msgstr "Ricucitura completa dei fori"
  3396. #: fdmprinter.def.json
  3397. msgctxt "meshfix_extensive_stitching description"
  3398. 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."
  3399. 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."
  3400. #: fdmprinter.def.json
  3401. msgctxt "meshfix_keep_open_polygons label"
  3402. msgid "Keep Disconnected Faces"
  3403. msgstr "Mantenimento delle superfici scollegate"
  3404. #: fdmprinter.def.json
  3405. msgctxt "meshfix_keep_open_polygons description"
  3406. 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."
  3407. 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."
  3408. #: fdmprinter.def.json
  3409. msgctxt "multiple_mesh_overlap label"
  3410. msgid "Merged Meshes Overlap"
  3411. msgstr "Sovrapposizione maglie"
  3412. #: fdmprinter.def.json
  3413. msgctxt "multiple_mesh_overlap description"
  3414. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3415. msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione."
  3416. #: fdmprinter.def.json
  3417. msgctxt "carve_multiple_volumes label"
  3418. msgid "Remove Mesh Intersection"
  3419. msgstr "Rimuovi intersezione maglie"
  3420. #: fdmprinter.def.json
  3421. msgctxt "carve_multiple_volumes description"
  3422. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3423. 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."
  3424. #: fdmprinter.def.json
  3425. msgctxt "alternate_carve_order label"
  3426. msgid "Alternate Mesh Removal"
  3427. msgstr "Rimozione maglie alternate"
  3428. #: fdmprinter.def.json
  3429. msgctxt "alternate_carve_order description"
  3430. 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."
  3431. 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."
  3432. #: fdmprinter.def.json
  3433. msgctxt "remove_empty_first_layers label"
  3434. msgid "Remove Empty First Layers"
  3435. msgstr "Rimuovere i primi strati vuoti"
  3436. #: fdmprinter.def.json
  3437. msgctxt "remove_empty_first_layers description"
  3438. 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."
  3439. 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."
  3440. #: fdmprinter.def.json
  3441. msgctxt "blackmagic label"
  3442. msgid "Special Modes"
  3443. msgstr "Modalità speciali"
  3444. #: fdmprinter.def.json
  3445. msgctxt "blackmagic description"
  3446. msgid "category_blackmagic"
  3447. msgstr "category_blackmagic"
  3448. #: fdmprinter.def.json
  3449. msgctxt "print_sequence label"
  3450. msgid "Print Sequence"
  3451. msgstr "Sequenza di stampa"
  3452. #: fdmprinter.def.json
  3453. msgctxt "print_sequence description"
  3454. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  3455. msgstr "Indica se stampare tutti i modelli uno strato alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità 'uno per volta' è possibile solo se tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e se tutti i modelli sono più bassi della distanza tra l'ugello e gli assi X/Y."
  3456. #: fdmprinter.def.json
  3457. msgctxt "print_sequence option all_at_once"
  3458. msgid "All at Once"
  3459. msgstr "Tutti contemporaneamente"
  3460. #: fdmprinter.def.json
  3461. msgctxt "print_sequence option one_at_a_time"
  3462. msgid "One at a Time"
  3463. msgstr "Uno alla volta"
  3464. #: fdmprinter.def.json
  3465. msgctxt "infill_mesh label"
  3466. msgid "Infill Mesh"
  3467. msgstr "Maglia di riempimento"
  3468. #: fdmprinter.def.json
  3469. msgctxt "infill_mesh description"
  3470. 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."
  3471. 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."
  3472. #: fdmprinter.def.json
  3473. msgctxt "infill_mesh_order label"
  3474. msgid "Infill Mesh Order"
  3475. msgstr "Ordine maglia di riempimento"
  3476. #: fdmprinter.def.json
  3477. msgctxt "infill_mesh_order description"
  3478. msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  3479. msgstr "Determina quale maglia di riempimento è all’interno del riempimento di un’altra maglia di riempimento. Una maglia di riempimento con un ordine superiore modifica il riempimento delle maglie con maglie di ordine inferiore e normali."
  3480. #: fdmprinter.def.json
  3481. msgctxt "cutting_mesh label"
  3482. msgid "Cutting Mesh"
  3483. msgstr "Ritaglio maglia"
  3484. #: fdmprinter.def.json
  3485. msgctxt "cutting_mesh description"
  3486. 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."
  3487. 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."
  3488. #: fdmprinter.def.json
  3489. msgctxt "mold_enabled label"
  3490. msgid "Mold"
  3491. msgstr "Stampo"
  3492. #: fdmprinter.def.json
  3493. msgctxt "mold_enabled description"
  3494. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3495. msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa."
  3496. #: fdmprinter.def.json
  3497. msgctxt "mold_width label"
  3498. msgid "Minimal Mold Width"
  3499. msgstr "Larghezza minimo dello stampo"
  3500. #: fdmprinter.def.json
  3501. msgctxt "mold_width description"
  3502. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  3503. msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello."
  3504. #: fdmprinter.def.json
  3505. msgctxt "mold_roof_height label"
  3506. msgid "Mold Roof Height"
  3507. msgstr "Altezza parte superiore dello stampo"
  3508. #: fdmprinter.def.json
  3509. msgctxt "mold_roof_height description"
  3510. msgid "The height above horizontal parts in your model which to print mold."
  3511. msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo."
  3512. #: fdmprinter.def.json
  3513. msgctxt "mold_angle label"
  3514. msgid "Mold Angle"
  3515. msgstr "Angolo stampo"
  3516. #: fdmprinter.def.json
  3517. msgctxt "mold_angle description"
  3518. 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."
  3519. 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."
  3520. #: fdmprinter.def.json
  3521. msgctxt "support_mesh label"
  3522. msgid "Support Mesh"
  3523. msgstr "Supporto maglia"
  3524. #: fdmprinter.def.json
  3525. msgctxt "support_mesh description"
  3526. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3527. msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto."
  3528. #: fdmprinter.def.json
  3529. msgctxt "anti_overhang_mesh label"
  3530. msgid "Anti Overhang Mesh"
  3531. msgstr "Maglia anti-sovrapposizione"
  3532. #: fdmprinter.def.json
  3533. msgctxt "anti_overhang_mesh description"
  3534. 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."
  3535. 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."
  3536. #: fdmprinter.def.json
  3537. msgctxt "magic_mesh_surface_mode label"
  3538. msgid "Surface Mode"
  3539. msgstr "Modalità superficie"
  3540. #: fdmprinter.def.json
  3541. msgctxt "magic_mesh_surface_mode description"
  3542. 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."
  3543. 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."
  3544. #: fdmprinter.def.json
  3545. msgctxt "magic_mesh_surface_mode option normal"
  3546. msgid "Normal"
  3547. msgstr "Normale"
  3548. #: fdmprinter.def.json
  3549. msgctxt "magic_mesh_surface_mode option surface"
  3550. msgid "Surface"
  3551. msgstr "Superficie"
  3552. #: fdmprinter.def.json
  3553. msgctxt "magic_mesh_surface_mode option both"
  3554. msgid "Both"
  3555. msgstr "Entrambi"
  3556. #: fdmprinter.def.json
  3557. msgctxt "magic_spiralize label"
  3558. msgid "Spiralize Outer Contour"
  3559. msgstr "Stampa del contorno esterno con movimento spiraliforme"
  3560. #: fdmprinter.def.json
  3561. msgctxt "magic_spiralize description"
  3562. 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."
  3563. 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."
  3564. #: fdmprinter.def.json
  3565. msgctxt "smooth_spiralized_contours label"
  3566. msgid "Smooth Spiralized Contours"
  3567. msgstr "Levigazione dei profili con movimento spiraliforme"
  3568. #: fdmprinter.def.json
  3569. msgctxt "smooth_spiralized_contours description"
  3570. 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."
  3571. msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella vista dello strato). Notare che la levigatura tende a rimuovere le bavature fini della superficie."
  3572. #: fdmprinter.def.json
  3573. msgctxt "relative_extrusion label"
  3574. msgid "Relative Extrusion"
  3575. msgstr "Estrusione relativa"
  3576. #: fdmprinter.def.json
  3577. msgctxt "relative_extrusion description"
  3578. 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."
  3579. 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."
  3580. #: fdmprinter.def.json
  3581. msgctxt "experimental label"
  3582. msgid "Experimental"
  3583. msgstr "Sperimentale"
  3584. #: fdmprinter.def.json
  3585. msgctxt "experimental description"
  3586. msgid "experimental!"
  3587. msgstr "sperimentale!"
  3588. #: fdmprinter.def.json
  3589. msgctxt "support_tree_enable label"
  3590. msgid "Tree Support"
  3591. msgstr "Supporto ad albero"
  3592. #: fdmprinter.def.json
  3593. msgctxt "support_tree_enable description"
  3594. msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  3595. msgstr "Genera un supporto tipo albero con rami di sostegno della stampa. Questo può ridurre l’impiego di materiale e il tempo di stampa, ma aumenta notevolmente il tempo di sezionamento."
  3596. #: fdmprinter.def.json
  3597. msgctxt "support_tree_angle label"
  3598. msgid "Tree Support Branch Angle"
  3599. msgstr "Angolo ramo supporto ad albero"
  3600. #: fdmprinter.def.json
  3601. msgctxt "support_tree_angle description"
  3602. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3603. msgstr "L’angolo dei rami. Utilizzare un angolo minore per renderli più verticali e più stabili. Utilizzare un angolo maggiore per avere una portata maggiore."
  3604. #: fdmprinter.def.json
  3605. msgctxt "support_tree_branch_distance label"
  3606. msgid "Tree Support Branch Distance"
  3607. msgstr "Distanza ramo supporto ad albero"
  3608. #: fdmprinter.def.json
  3609. msgctxt "support_tree_branch_distance description"
  3610. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  3611. msgstr "La distanza tra i rami necessaria quando toccano il modello. Una distanza ridotta causa il contatto del supporto ad albero con il modello in più punti, generando migliore sovrapposizione ma rendendo più difficoltosa la rimozione del supporto."
  3612. #: fdmprinter.def.json
  3613. msgctxt "support_tree_branch_diameter label"
  3614. msgid "Tree Support Branch Diameter"
  3615. msgstr "Diametro ramo supporto ad albero"
  3616. #: fdmprinter.def.json
  3617. msgctxt "support_tree_branch_diameter description"
  3618. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3619. msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore."
  3620. #: fdmprinter.def.json
  3621. msgctxt "support_tree_branch_diameter_angle label"
  3622. msgid "Tree Support Branch Diameter Angle"
  3623. msgstr "Angolo diametro ramo supporto ad albero"
  3624. #: fdmprinter.def.json
  3625. msgctxt "support_tree_branch_diameter_angle description"
  3626. 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."
  3627. 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."
  3628. #: fdmprinter.def.json
  3629. msgctxt "support_tree_collision_resolution label"
  3630. msgid "Tree Support Collision Resolution"
  3631. msgstr "Risoluzione collisione supporto ad albero"
  3632. #: fdmprinter.def.json
  3633. msgctxt "support_tree_collision_resolution description"
  3634. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  3635. msgstr "Risoluzione per calcolare le collisioni per evitare di colpire il modello. L’impostazione a un valore basso genera alberi più accurati che si rompono meno sovente, ma aumenta notevolmente il tempo di sezionamento."
  3636. #: fdmprinter.def.json
  3637. msgctxt "support_tree_wall_thickness label"
  3638. msgid "Tree Support Wall Thickness"
  3639. msgstr "Spessore delle pareti supporto ad albero"
  3640. #: fdmprinter.def.json
  3641. msgctxt "support_tree_wall_thickness description"
  3642. msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3643. msgstr "Lo spessore delle pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
  3644. #: fdmprinter.def.json
  3645. msgctxt "support_tree_wall_count label"
  3646. msgid "Tree Support Wall Line Count"
  3647. msgstr "Numero delle linee perimetrali supporto ad albero"
  3648. #: fdmprinter.def.json
  3649. msgctxt "support_tree_wall_count description"
  3650. msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3651. msgstr "Il numero di pareti dei rami del supporto ad albero. Le pareti più spesse hanno un tempo di stampa superiore ma non cadono facilmente."
  3652. #: fdmprinter.def.json
  3653. msgctxt "slicing_tolerance label"
  3654. msgid "Slicing Tolerance"
  3655. msgstr "Tolleranza di sezionamento"
  3656. #: fdmprinter.def.json
  3657. msgctxt "slicing_tolerance description"
  3658. msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  3659. msgstr "Modalità di sezionamento di strati con superfici diagonali. Le aree di uno strato possono essere generate in base al punto in cui la parte intermedia dello strato interseca la superficie (intermedia). In alternativa le aree di ciascuno strato possono ricadere all'interno del volume per tutta l'altezza dello strato (Esclusiva) ovvero possono cadere in qualsiasi punto all'interno dello strato (Inclusiva). La tolleranza esclusiva mantiene il maggior numero di dettagli, la tolleranza inclusiva è la più idonea, mentre la tolleranza intermedia richiede il minor tempo di processo."
  3660. #: fdmprinter.def.json
  3661. msgctxt "slicing_tolerance option middle"
  3662. msgid "Middle"
  3663. msgstr "Intermedia"
  3664. #: fdmprinter.def.json
  3665. msgctxt "slicing_tolerance option exclusive"
  3666. msgid "Exclusive"
  3667. msgstr "Esclusiva"
  3668. #: fdmprinter.def.json
  3669. msgctxt "slicing_tolerance option inclusive"
  3670. msgid "Inclusive"
  3671. msgstr "Inclusiva"
  3672. #: fdmprinter.def.json
  3673. msgctxt "roofing_line_width label"
  3674. msgid "Top Surface Skin Line Width"
  3675. msgstr "Larghezza linea rivestimento superficie superiore"
  3676. #: fdmprinter.def.json
  3677. msgctxt "roofing_line_width description"
  3678. msgid "Width of a single line of the areas at the top of the print."
  3679. msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa"
  3680. #: fdmprinter.def.json
  3681. msgctxt "roofing_pattern label"
  3682. msgid "Top Surface Skin Pattern"
  3683. msgstr "Configurazione del rivestimento superficie superiore"
  3684. #: fdmprinter.def.json
  3685. msgctxt "roofing_pattern description"
  3686. msgid "The pattern of the top most layers."
  3687. msgstr "Configurazione degli strati superiori."
  3688. #: fdmprinter.def.json
  3689. msgctxt "roofing_pattern option lines"
  3690. msgid "Lines"
  3691. msgstr "Linee"
  3692. #: fdmprinter.def.json
  3693. msgctxt "roofing_pattern option concentric"
  3694. msgid "Concentric"
  3695. msgstr "Concentrica"
  3696. #: fdmprinter.def.json
  3697. msgctxt "roofing_pattern option zigzag"
  3698. msgid "Zig Zag"
  3699. msgstr "Zig Zag"
  3700. #: fdmprinter.def.json
  3701. msgctxt "roofing_angles label"
  3702. msgid "Top Surface Skin Line Directions"
  3703. msgstr "Direzioni linea rivestimento superficie superiore"
  3704. #: fdmprinter.def.json
  3705. msgctxt "roofing_angles description"
  3706. 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)."
  3707. 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)."
  3708. #: fdmprinter.def.json
  3709. msgctxt "infill_enable_travel_optimization label"
  3710. msgid "Infill Travel Optimization"
  3711. msgstr "Ottimizzazione spostamenti riempimento"
  3712. #: fdmprinter.def.json
  3713. msgctxt "infill_enable_travel_optimization description"
  3714. 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."
  3715. 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."
  3716. #: fdmprinter.def.json
  3717. msgctxt "material_flow_dependent_temperature label"
  3718. msgid "Auto Temperature"
  3719. msgstr "Temperatura automatica"
  3720. #: fdmprinter.def.json
  3721. msgctxt "material_flow_dependent_temperature description"
  3722. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  3723. msgstr "Modifica automaticamente la temperatura per ciascuno strato con la velocità media del flusso per tale strato."
  3724. #: fdmprinter.def.json
  3725. msgctxt "material_flow_temp_graph label"
  3726. msgid "Flow Temperature Graph"
  3727. msgstr "Grafico della temperatura del flusso"
  3728. #: fdmprinter.def.json
  3729. msgctxt "material_flow_temp_graph description"
  3730. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3731. msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)."
  3732. #: fdmprinter.def.json
  3733. msgctxt "meshfix_maximum_resolution label"
  3734. msgid "Maximum Resolution"
  3735. msgstr "Risoluzione massima"
  3736. #: fdmprinter.def.json
  3737. msgctxt "meshfix_maximum_resolution description"
  3738. 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."
  3739. 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."
  3740. #: fdmprinter.def.json
  3741. msgctxt "meshfix_maximum_travel_resolution label"
  3742. msgid "Maximum Travel Resolution"
  3743. msgstr "Risoluzione massima di spostamento"
  3744. #: fdmprinter.def.json
  3745. msgctxt "meshfix_maximum_travel_resolution description"
  3746. 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."
  3747. 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."
  3748. #: fdmprinter.def.json
  3749. msgctxt "support_skip_some_zags label"
  3750. msgid "Break Up Support In Chunks"
  3751. msgstr "Rottura del supporto in pezzi di grandi dimensioni"
  3752. #: fdmprinter.def.json
  3753. msgctxt "support_skip_some_zags description"
  3754. 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."
  3755. 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."
  3756. #: fdmprinter.def.json
  3757. msgctxt "support_skip_zag_per_mm label"
  3758. msgid "Support Chunk Size"
  3759. msgstr "Dimensioni frammento supporto"
  3760. #: fdmprinter.def.json
  3761. msgctxt "support_skip_zag_per_mm description"
  3762. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3763. msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso."
  3764. #: fdmprinter.def.json
  3765. msgctxt "support_zag_skip_count label"
  3766. msgid "Support Chunk Line Count"
  3767. msgstr "Conteggio linee di rottura supporto"
  3768. #: fdmprinter.def.json
  3769. msgctxt "support_zag_skip_count description"
  3770. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3771. msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere."
  3772. #: fdmprinter.def.json
  3773. msgctxt "draft_shield_enabled label"
  3774. msgid "Enable Draft Shield"
  3775. msgstr "Abilitazione del riparo paravento"
  3776. #: fdmprinter.def.json
  3777. msgctxt "draft_shield_enabled description"
  3778. 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."
  3779. 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."
  3780. #: fdmprinter.def.json
  3781. msgctxt "draft_shield_dist label"
  3782. msgid "Draft Shield X/Y Distance"
  3783. msgstr "Distanza X/Y del riparo paravento"
  3784. #: fdmprinter.def.json
  3785. msgctxt "draft_shield_dist description"
  3786. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3787. msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y."
  3788. #: fdmprinter.def.json
  3789. msgctxt "draft_shield_height_limitation label"
  3790. msgid "Draft Shield Limitation"
  3791. msgstr "Limitazione del riparo paravento"
  3792. #: fdmprinter.def.json
  3793. msgctxt "draft_shield_height_limitation description"
  3794. 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."
  3795. msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata."
  3796. #: fdmprinter.def.json
  3797. msgctxt "draft_shield_height_limitation option full"
  3798. msgid "Full"
  3799. msgstr "Piena altezza"
  3800. #: fdmprinter.def.json
  3801. msgctxt "draft_shield_height_limitation option limited"
  3802. msgid "Limited"
  3803. msgstr "Limitazione in altezza"
  3804. #: fdmprinter.def.json
  3805. msgctxt "draft_shield_height label"
  3806. msgid "Draft Shield Height"
  3807. msgstr "Altezza del riparo paravento"
  3808. #: fdmprinter.def.json
  3809. msgctxt "draft_shield_height description"
  3810. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3811. msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo."
  3812. #: fdmprinter.def.json
  3813. msgctxt "conical_overhang_enabled label"
  3814. msgid "Make Overhang Printable"
  3815. msgstr "Rendi stampabile lo sbalzo"
  3816. #: fdmprinter.def.json
  3817. msgctxt "conical_overhang_enabled description"
  3818. 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."
  3819. 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."
  3820. #: fdmprinter.def.json
  3821. msgctxt "conical_overhang_angle label"
  3822. msgid "Maximum Model Angle"
  3823. msgstr "Massimo angolo modello"
  3824. #: fdmprinter.def.json
  3825. msgctxt "conical_overhang_angle description"
  3826. 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."
  3827. 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."
  3828. #: fdmprinter.def.json
  3829. msgctxt "coasting_enable label"
  3830. msgid "Enable Coasting"
  3831. msgstr "Abilitazione della funzione di Coasting"
  3832. #: fdmprinter.def.json
  3833. msgctxt "coasting_enable description"
  3834. 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."
  3835. 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."
  3836. #: fdmprinter.def.json
  3837. msgctxt "coasting_volume label"
  3838. msgid "Coasting Volume"
  3839. msgstr "Volume di Coasting"
  3840. #: fdmprinter.def.json
  3841. msgctxt "coasting_volume description"
  3842. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3843. msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo."
  3844. #: fdmprinter.def.json
  3845. msgctxt "coasting_min_volume label"
  3846. msgid "Minimum Volume Before Coasting"
  3847. msgstr "Volume minimo prima del Coasting"
  3848. #: fdmprinter.def.json
  3849. msgctxt "coasting_min_volume description"
  3850. 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."
  3851. 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."
  3852. #: fdmprinter.def.json
  3853. msgctxt "coasting_speed label"
  3854. msgid "Coasting Speed"
  3855. msgstr "Velocità di Coasting"
  3856. #: fdmprinter.def.json
  3857. msgctxt "coasting_speed description"
  3858. 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."
  3859. 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."
  3860. #: fdmprinter.def.json
  3861. msgctxt "skin_alternate_rotation label"
  3862. msgid "Alternate Skin Rotation"
  3863. msgstr "Rotazione alternata del rivestimento esterno"
  3864. #: fdmprinter.def.json
  3865. msgctxt "skin_alternate_rotation description"
  3866. msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  3867. msgstr "Alterna la direzione di stampa degli strati superiori/inferiori. Normalmente vengono stampati solo diagonalmente. Questa impostazione aggiunge le direzioni solo X e solo Y."
  3868. #: fdmprinter.def.json
  3869. msgctxt "cross_infill_pocket_size label"
  3870. msgid "Cross 3D Pocket Size"
  3871. msgstr "Dimensioni cavità 3D incrociata"
  3872. #: fdmprinter.def.json
  3873. msgctxt "cross_infill_pocket_size description"
  3874. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3875. msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa."
  3876. #: fdmprinter.def.json
  3877. msgctxt "cross_infill_density_image label"
  3878. msgid "Cross Infill Density Image"
  3879. msgstr "Immagine di densità del riempimento incrociato"
  3880. #: fdmprinter.def.json
  3881. msgctxt "cross_infill_density_image description"
  3882. 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."
  3883. 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."
  3884. #: fdmprinter.def.json
  3885. msgctxt "cross_support_density_image label"
  3886. msgid "Cross Fill Density Image for Support"
  3887. msgstr "Immagine di densità del riempimento incrociato per il supporto"
  3888. #: fdmprinter.def.json
  3889. msgctxt "cross_support_density_image description"
  3890. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3891. msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto."
  3892. #: fdmprinter.def.json
  3893. msgctxt "spaghetti_infill_enabled label"
  3894. msgid "Spaghetti Infill"
  3895. msgstr "Riempimento a spaghetti"
  3896. #: fdmprinter.def.json
  3897. msgctxt "spaghetti_infill_enabled description"
  3898. msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  3899. msgstr "Stampa il riempimento di tanto in tanto, in modo che il filamento si avvolga in modo casuale all'interno dell'oggetto. Questo riduce il tempo di stampa, ma il comportamento rimane imprevedibile."
  3900. #: fdmprinter.def.json
  3901. msgctxt "spaghetti_infill_stepped label"
  3902. msgid "Spaghetti Infill Stepping"
  3903. msgstr "Andatura del riempimento a spaghetti"
  3904. #: fdmprinter.def.json
  3905. msgctxt "spaghetti_infill_stepped description"
  3906. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  3907. msgstr "Stampa del riempimento a spaghetti in più fasi o estrusione di tutto il filamento del riempimento alla fine della stampa."
  3908. #: fdmprinter.def.json
  3909. msgctxt "spaghetti_max_infill_angle label"
  3910. msgid "Spaghetti Maximum Infill Angle"
  3911. msgstr "Angolo di riempimento massimo a spaghetti"
  3912. #: fdmprinter.def.json
  3913. msgctxt "spaghetti_max_infill_angle description"
  3914. msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  3915. msgstr "Angolo massimo attorno all'asse Z dell'interno stampa per le aree da riempire successivamente con riempimento a spaghetti. La riduzione di questo valore causa la formazione di un maggior numero di parti angolate nel modello da riempire su ogni strato."
  3916. #: fdmprinter.def.json
  3917. msgctxt "spaghetti_max_height label"
  3918. msgid "Spaghetti Infill Maximum Height"
  3919. msgstr "Altezza massima riempimento a spaghetti"
  3920. #: fdmprinter.def.json
  3921. msgctxt "spaghetti_max_height description"
  3922. msgid "The maximum height of inside space which can be combined and filled from the top."
  3923. msgstr "Indica l'altezza massima dello spazio interno che può essere combinato e riempito a partire dall'alto."
  3924. #: fdmprinter.def.json
  3925. msgctxt "spaghetti_inset label"
  3926. msgid "Spaghetti Inset"
  3927. msgstr "Inserto spaghetti"
  3928. #: fdmprinter.def.json
  3929. msgctxt "spaghetti_inset description"
  3930. msgid "The offset from the walls from where the spaghetti infill will be printed."
  3931. msgstr "Distanza dalle pareti dalla quale il riempimento a spaghetti verrà stampato."
  3932. #: fdmprinter.def.json
  3933. msgctxt "spaghetti_flow label"
  3934. msgid "Spaghetti Flow"
  3935. msgstr "Flusso spaghetti"
  3936. #: fdmprinter.def.json
  3937. msgctxt "spaghetti_flow description"
  3938. msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  3939. msgstr "Regola la densità del riempimento a spaghetti. Notare che la densità del riempimento controlla solo la spaziatura lineare del percorso di riempimento, non la quantità di estrusione per il riempimento a spaghetti."
  3940. #: fdmprinter.def.json
  3941. msgctxt "spaghetti_infill_extra_volume label"
  3942. msgid "Spaghetti Infill Extra Volume"
  3943. msgstr "Volume extra riempimento a spaghetti"
  3944. #: fdmprinter.def.json
  3945. msgctxt "spaghetti_infill_extra_volume description"
  3946. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  3947. msgstr "Elemento correttivo per regolare il volume totale da estrudere ogni volta durante il riempimento a spaghetti."
  3948. #: fdmprinter.def.json
  3949. msgctxt "support_conical_enabled label"
  3950. msgid "Enable Conical Support"
  3951. msgstr "Abilitazione del supporto conico"
  3952. #: fdmprinter.def.json
  3953. msgctxt "support_conical_enabled description"
  3954. msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  3955. msgstr "Funzione sperimentale: realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo."
  3956. #: fdmprinter.def.json
  3957. msgctxt "support_conical_angle label"
  3958. msgid "Conical Support Angle"
  3959. msgstr "Angolo del supporto conico"
  3960. #: fdmprinter.def.json
  3961. msgctxt "support_conical_angle description"
  3962. 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."
  3963. 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."
  3964. #: fdmprinter.def.json
  3965. msgctxt "support_conical_min_width label"
  3966. msgid "Conical Support Minimum Width"
  3967. msgstr "Larghezza minima del supporto conico"
  3968. #: fdmprinter.def.json
  3969. msgctxt "support_conical_min_width description"
  3970. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3971. msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili."
  3972. #: fdmprinter.def.json
  3973. msgctxt "magic_fuzzy_skin_enabled label"
  3974. msgid "Fuzzy Skin"
  3975. msgstr "Rivestimento esterno incoerente (fuzzy)"
  3976. #: fdmprinter.def.json
  3977. msgctxt "magic_fuzzy_skin_enabled description"
  3978. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3979. msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)."
  3980. #: fdmprinter.def.json
  3981. msgctxt "magic_fuzzy_skin_thickness label"
  3982. msgid "Fuzzy Skin Thickness"
  3983. msgstr "Spessore del rivestimento esterno incoerente (fuzzy)"
  3984. #: fdmprinter.def.json
  3985. msgctxt "magic_fuzzy_skin_thickness description"
  3986. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3987. 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."
  3988. #: fdmprinter.def.json
  3989. msgctxt "magic_fuzzy_skin_point_density label"
  3990. msgid "Fuzzy Skin Density"
  3991. msgstr "Densità del rivestimento esterno incoerente (fuzzy)"
  3992. #: fdmprinter.def.json
  3993. msgctxt "magic_fuzzy_skin_point_density description"
  3994. 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."
  3995. 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."
  3996. #: fdmprinter.def.json
  3997. msgctxt "magic_fuzzy_skin_point_dist label"
  3998. msgid "Fuzzy Skin Point Distance"
  3999. msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)"
  4000. #: fdmprinter.def.json
  4001. msgctxt "magic_fuzzy_skin_point_dist description"
  4002. 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."
  4003. 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)."
  4004. #: fdmprinter.def.json
  4005. msgctxt "flow_rate_max_extrusion_offset label"
  4006. msgid "Flow rate compensation max extrusion offset"
  4007. msgstr "Offset massimo dell'estrusione di compensazione del flusso"
  4008. #: fdmprinter.def.json
  4009. msgctxt "flow_rate_max_extrusion_offset description"
  4010. msgid "The maximum distance in mm to compensate."
  4011. msgstr "La massima distanza in mm da compensare."
  4012. #: fdmprinter.def.json
  4013. msgctxt "flow_rate_extrusion_offset_factor label"
  4014. msgid "Flow rate compensation factor"
  4015. msgstr "Fattore di compensazione del flusso"
  4016. #: fdmprinter.def.json
  4017. msgctxt "flow_rate_extrusion_offset_factor description"
  4018. msgid "The multiplication factor for the flow rate -> distance translation."
  4019. msgstr "Il fattore di moltiplicazione per il flusso -> traslazione distanza."
  4020. #: fdmprinter.def.json
  4021. msgctxt "wireframe_enabled label"
  4022. msgid "Wire Printing"
  4023. msgstr "Funzione Wire Printing (WP)"
  4024. #: fdmprinter.def.json
  4025. msgctxt "wireframe_enabled description"
  4026. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  4027. msgstr "Consente di stampare solo la superficie esterna come una struttura di linee, realizzando una stampa \"sospesa nell'aria\". Questa funzione si realizza mediante la stampa orizzontale dei contorni del modello con determinati intervalli Z che sono collegati tramite linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso."
  4028. #: fdmprinter.def.json
  4029. msgctxt "wireframe_height label"
  4030. msgid "WP Connection Height"
  4031. msgstr "Altezza di connessione WP"
  4032. #: fdmprinter.def.json
  4033. msgctxt "wireframe_height description"
  4034. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  4035. msgstr "Indica l'altezza delle linee che si estendono verticalmente verso l'alto e diagonalmente verso il basso tra due parti orizzontali. Questo determina la densità complessiva della struttura del reticolo. Applicabile solo alla funzione Wire Printing."
  4036. #: fdmprinter.def.json
  4037. msgctxt "wireframe_roof_inset label"
  4038. msgid "WP Roof Inset Distance"
  4039. msgstr "Distanza dalla superficie superiore WP"
  4040. #: fdmprinter.def.json
  4041. msgctxt "wireframe_roof_inset description"
  4042. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4043. msgstr "Indica la distanza percorsa durante la realizzazione di una connessione da un profilo della superficie superiore (tetto) verso l'interno. Applicabile solo alla funzione Wire Printing."
  4044. #: fdmprinter.def.json
  4045. msgctxt "wireframe_printspeed label"
  4046. msgid "WP Speed"
  4047. msgstr "Velocità WP"
  4048. #: fdmprinter.def.json
  4049. msgctxt "wireframe_printspeed description"
  4050. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4051. msgstr "Indica la velocità a cui l'ugello si muove durante l'estrusione del materiale. Applicabile solo alla funzione Wire Printing."
  4052. #: fdmprinter.def.json
  4053. msgctxt "wireframe_printspeed_bottom label"
  4054. msgid "WP Bottom Printing Speed"
  4055. msgstr "Velocità di stampa della parte inferiore WP"
  4056. #: fdmprinter.def.json
  4057. msgctxt "wireframe_printspeed_bottom description"
  4058. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4059. msgstr "Indica la velocità di stampa del primo strato, che è il solo strato a contatto con il piano di stampa. Applicabile solo alla funzione Wire Printing."
  4060. #: fdmprinter.def.json
  4061. msgctxt "wireframe_printspeed_up label"
  4062. msgid "WP Upward Printing Speed"
  4063. msgstr "Velocità di stampa verticale WP"
  4064. #: fdmprinter.def.json
  4065. msgctxt "wireframe_printspeed_up description"
  4066. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4067. msgstr "Indica la velocità di stampa di una linea verticale verso l'alto della struttura \"sospesa nell'aria\". Applicabile solo alla funzione Wire Printing."
  4068. #: fdmprinter.def.json
  4069. msgctxt "wireframe_printspeed_down label"
  4070. msgid "WP Downward Printing Speed"
  4071. msgstr "Velocità di stampa diagonale WP"
  4072. #: fdmprinter.def.json
  4073. msgctxt "wireframe_printspeed_down description"
  4074. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4075. msgstr "Indica la velocità di stampa di una linea diagonale verso il basso. Applicabile solo alla funzione Wire Printing."
  4076. #: fdmprinter.def.json
  4077. msgctxt "wireframe_printspeed_flat label"
  4078. msgid "WP Horizontal Printing Speed"
  4079. msgstr "Velocità di stampa orizzontale WP"
  4080. #: fdmprinter.def.json
  4081. msgctxt "wireframe_printspeed_flat description"
  4082. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4083. msgstr "Indica la velocità di stampa dei contorni orizzontali del modello. Applicabile solo alla funzione Wire Printing."
  4084. #: fdmprinter.def.json
  4085. msgctxt "wireframe_flow label"
  4086. msgid "WP Flow"
  4087. msgstr "Flusso WP"
  4088. #: fdmprinter.def.json
  4089. msgctxt "wireframe_flow description"
  4090. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4091. msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore. Applicabile solo alla funzione Wire Printing."
  4092. #: fdmprinter.def.json
  4093. msgctxt "wireframe_flow_connection label"
  4094. msgid "WP Connection Flow"
  4095. msgstr "Flusso di connessione WP"
  4096. #: fdmprinter.def.json
  4097. msgctxt "wireframe_flow_connection description"
  4098. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4099. msgstr "Determina la compensazione di flusso nei percorsi verso l'alto o verso il basso. Applicabile solo alla funzione Wire Printing."
  4100. #: fdmprinter.def.json
  4101. msgctxt "wireframe_flow_flat label"
  4102. msgid "WP Flat Flow"
  4103. msgstr "Flusso linee piatte WP"
  4104. #: fdmprinter.def.json
  4105. msgctxt "wireframe_flow_flat description"
  4106. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4107. msgstr "Determina la compensazione di flusso durante la stampa di linee piatte. Applicabile solo alla funzione Wire Printing."
  4108. #: fdmprinter.def.json
  4109. msgctxt "wireframe_top_delay label"
  4110. msgid "WP Top Delay"
  4111. msgstr "Ritardo dopo spostamento verso l'alto WP"
  4112. #: fdmprinter.def.json
  4113. msgctxt "wireframe_top_delay description"
  4114. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4115. msgstr "Indica il tempo di ritardo dopo uno spostamento verso l'alto, in modo da consentire l'indurimento della linea verticale indirizzata verso l'alto. Applicabile solo alla funzione Wire Printing."
  4116. #: fdmprinter.def.json
  4117. msgctxt "wireframe_bottom_delay label"
  4118. msgid "WP Bottom Delay"
  4119. msgstr "Ritardo dopo spostamento verso il basso WP"
  4120. #: fdmprinter.def.json
  4121. msgctxt "wireframe_bottom_delay description"
  4122. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4123. msgstr "Indica il tempo di ritardo dopo uno spostamento verso il basso. Applicabile solo alla funzione Wire Printing."
  4124. #: fdmprinter.def.json
  4125. msgctxt "wireframe_flat_delay label"
  4126. msgid "WP Flat Delay"
  4127. msgstr "Ritardo tra due segmenti orizzontali WP"
  4128. #: fdmprinter.def.json
  4129. msgctxt "wireframe_flat_delay description"
  4130. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  4131. msgstr "Indica il tempo di ritardo tra due segmenti orizzontali. Introducendo un tale ritardo si può ottenere una migliore adesione agli strati precedenti in corrispondenza dei punti di collegamento, mentre ritardi troppo prolungati provocano cedimenti. Applicabile solo alla funzione Wire Printing."
  4132. #: fdmprinter.def.json
  4133. msgctxt "wireframe_up_half_speed label"
  4134. msgid "WP Ease Upward"
  4135. msgstr "Spostamento verso l'alto a velocità ridotta WP"
  4136. #: fdmprinter.def.json
  4137. msgctxt "wireframe_up_half_speed description"
  4138. msgid ""
  4139. "Distance of an upward move which is extruded with half speed.\n"
  4140. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4141. msgstr "Indica la distanza di uno spostamento verso l'alto con estrusione a velocità dimezzata.\nCiò può garantire una migliore adesione agli strati precedenti, senza eccessivo riscaldamento del materiale su questi strati. Applicabile solo alla funzione Wire Printing."
  4142. #: fdmprinter.def.json
  4143. msgctxt "wireframe_top_jump label"
  4144. msgid "WP Knot Size"
  4145. msgstr "Dimensione dei nodi WP"
  4146. #: fdmprinter.def.json
  4147. msgctxt "wireframe_top_jump description"
  4148. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  4149. msgstr "Crea un piccolo nodo alla sommità di una linea verticale verso l'alto, in modo che lo strato orizzontale consecutivo abbia una migliore possibilità di collegarsi ad essa. Applicabile solo alla funzione Wire Printing."
  4150. #: fdmprinter.def.json
  4151. msgctxt "wireframe_fall_down label"
  4152. msgid "WP Fall Down"
  4153. msgstr "Caduta del materiale WP"
  4154. #: fdmprinter.def.json
  4155. msgctxt "wireframe_fall_down description"
  4156. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4157. msgstr "Indica la distanza di caduta del materiale dopo un estrusione verso l'alto. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4158. #: fdmprinter.def.json
  4159. msgctxt "wireframe_drag_along label"
  4160. msgid "WP Drag Along"
  4161. msgstr "Trascinamento WP"
  4162. #: fdmprinter.def.json
  4163. msgctxt "wireframe_drag_along description"
  4164. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4165. msgstr "Indica la distanza di trascinamento del materiale di una estrusione verso l'alto nell'estrusione diagonale verso il basso. Tale distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4166. #: fdmprinter.def.json
  4167. msgctxt "wireframe_strategy label"
  4168. msgid "WP Strategy"
  4169. msgstr "Strategia WP"
  4170. #: fdmprinter.def.json
  4171. msgctxt "wireframe_strategy description"
  4172. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  4173. msgstr "Strategia per garantire il collegamento di due strati consecutivi ad ogni punto di connessione. La retrazione consente l'indurimento delle linee verticali verso l'alto nella giusta posizione, ma può causare la deformazione del filamento. È possibile realizzare un nodo all'estremità di una linea verticale verso l'alto per accrescere la possibilità di collegamento e lasciarla raffreddare; tuttavia ciò può richiedere velocità di stampa ridotte. Un'altra strategia consiste nel compensare il cedimento della parte superiore di una linea verticale verso l'alto; tuttavia le linee non sempre ricadono come previsto."
  4174. #: fdmprinter.def.json
  4175. msgctxt "wireframe_strategy option compensate"
  4176. msgid "Compensate"
  4177. msgstr "Compensazione"
  4178. #: fdmprinter.def.json
  4179. msgctxt "wireframe_strategy option knot"
  4180. msgid "Knot"
  4181. msgstr "Nodo"
  4182. #: fdmprinter.def.json
  4183. msgctxt "wireframe_strategy option retract"
  4184. msgid "Retract"
  4185. msgstr "Retrazione"
  4186. #: fdmprinter.def.json
  4187. msgctxt "wireframe_straight_before_down label"
  4188. msgid "WP Straighten Downward Lines"
  4189. msgstr "Correzione delle linee diagonali WP"
  4190. #: fdmprinter.def.json
  4191. msgctxt "wireframe_straight_before_down description"
  4192. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  4193. msgstr "Indica la percentuale di copertura di una linea diagonale verso il basso da un tratto di linea orizzontale. Questa opzione può impedire il cedimento della sommità delle linee verticali verso l'alto. Applicabile solo alla funzione Wire Printing."
  4194. #: fdmprinter.def.json
  4195. msgctxt "wireframe_roof_fall_down label"
  4196. msgid "WP Roof Fall Down"
  4197. msgstr "Caduta delle linee della superficie superiore (tetto) WP"
  4198. #: fdmprinter.def.json
  4199. msgctxt "wireframe_roof_fall_down description"
  4200. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  4201. msgstr "Indica la distanza di caduta delle linee della superficie superiore (tetto) della struttura \"sospesa nell'aria\" durante la stampa. Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4202. #: fdmprinter.def.json
  4203. msgctxt "wireframe_roof_drag_along label"
  4204. msgid "WP Roof Drag Along"
  4205. msgstr "Trascinamento superficie superiore (tetto) WP"
  4206. #: fdmprinter.def.json
  4207. msgctxt "wireframe_roof_drag_along description"
  4208. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  4209. msgstr "Indica la distanza di trascinamento dell'estremità di una linea interna durante lo spostamento di ritorno verso il contorno esterno della superficie superiore (tetto). Questa distanza viene compensata. Applicabile solo alla funzione Wire Printing."
  4210. #: fdmprinter.def.json
  4211. msgctxt "wireframe_roof_outer_delay label"
  4212. msgid "WP Roof Outer Delay"
  4213. msgstr "Ritardo su perimetro esterno foro superficie superiore (tetto) WP"
  4214. #: fdmprinter.def.json
  4215. msgctxt "wireframe_roof_outer_delay description"
  4216. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4217. msgstr "Indica il tempo trascorso sul perimetro esterno del foro di una superficie superiore (tetto). Tempi più lunghi possono garantire un migliore collegamento. Applicabile solo alla funzione Wire Printing."
  4218. #: fdmprinter.def.json
  4219. msgctxt "wireframe_nozzle_clearance label"
  4220. msgid "WP Nozzle Clearance"
  4221. msgstr "Gioco ugello WP"
  4222. #: fdmprinter.def.json
  4223. msgctxt "wireframe_nozzle_clearance description"
  4224. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  4225. msgstr "Indica la distanza tra l'ugello e le linee diagonali verso il basso. Un maggior gioco risulta in linee diagonali verso il basso con un minor angolo di inclinazione, cosa che a sua volta si traduce in meno collegamenti verso l'alto con lo strato successivo. Applicabile solo alla funzione Wire Printing."
  4226. #: fdmprinter.def.json
  4227. msgctxt "adaptive_layer_height_enabled label"
  4228. msgid "Use adaptive layers"
  4229. msgstr "Uso di strati adattivi"
  4230. #: fdmprinter.def.json
  4231. msgctxt "adaptive_layer_height_enabled description"
  4232. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4233. msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello."
  4234. #: fdmprinter.def.json
  4235. msgctxt "adaptive_layer_height_variation label"
  4236. msgid "Adaptive layers maximum variation"
  4237. msgstr "Variazione massima strati adattivi"
  4238. #: fdmprinter.def.json
  4239. msgctxt "adaptive_layer_height_variation description"
  4240. msgid "The maximum allowed height different from the base layer height."
  4241. msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base."
  4242. #: fdmprinter.def.json
  4243. msgctxt "adaptive_layer_height_variation_step label"
  4244. msgid "Adaptive layers variation step size"
  4245. msgstr "Dimensione variazione strati adattivi"
  4246. #: fdmprinter.def.json
  4247. msgctxt "adaptive_layer_height_variation_step description"
  4248. msgid "The difference in height of the next layer height compared to the previous one."
  4249. msgstr "La differenza in altezza dello strato successivo rispetto al precedente."
  4250. #: fdmprinter.def.json
  4251. msgctxt "adaptive_layer_height_threshold label"
  4252. msgid "Adaptive layers threshold"
  4253. msgstr "Soglia strati adattivi"
  4254. #: fdmprinter.def.json
  4255. msgctxt "adaptive_layer_height_threshold description"
  4256. msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  4257. msgstr "Soglia per l’utilizzo o meno di uno strato di dimensioni minori. Questo numero è confrontato al valore dell’inclinazione più ripida di uno strato."
  4258. #: fdmprinter.def.json
  4259. msgctxt "bridge_settings_enabled label"
  4260. msgid "Enable Bridge Settings"
  4261. msgstr "Abilita impostazioni ponte"
  4262. #: fdmprinter.def.json
  4263. msgctxt "bridge_settings_enabled description"
  4264. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4265. msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti."
  4266. #: fdmprinter.def.json
  4267. msgctxt "bridge_wall_min_length label"
  4268. msgid "Minimum Bridge Wall Length"
  4269. msgstr "Lunghezza minima parete ponte"
  4270. #: fdmprinter.def.json
  4271. msgctxt "bridge_wall_min_length description"
  4272. 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."
  4273. 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."
  4274. #: fdmprinter.def.json
  4275. msgctxt "bridge_skin_support_threshold label"
  4276. msgid "Bridge Skin Support Threshold"
  4277. msgstr "Soglia di supporto rivestimento esterno ponte"
  4278. #: fdmprinter.def.json
  4279. msgctxt "bridge_skin_support_threshold description"
  4280. 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."
  4281. 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."
  4282. #: fdmprinter.def.json
  4283. msgctxt "bridge_wall_max_overhang label"
  4284. msgid "Bridge Wall Max Overhang"
  4285. msgstr "Massimo sbalzo parete ponte"
  4286. #: fdmprinter.def.json
  4287. msgctxt "bridge_wall_max_overhang description"
  4288. msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  4289. msgstr "La larghezza massima ammessa per la zona di aria al di sotto di una linea perimetrale prima di stampare la parete utilizzando le impostazioni ponte. Espressa come percentuale della larghezza della linea perimetrale. Quando la distanza è superiore a questo valore, la linea perimetrale viene stampata utilizzando le normali impostazioni. Più è basso il valore, più è probabile che le linee perimetrali a sbalzo siano stampate utilizzando le impostazioni ponte."
  4290. #: fdmprinter.def.json
  4291. msgctxt "bridge_wall_coast label"
  4292. msgid "Bridge Wall Coasting"
  4293. msgstr "Coasting parete ponte"
  4294. #: fdmprinter.def.json
  4295. msgctxt "bridge_wall_coast description"
  4296. 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."
  4297. 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."
  4298. #: fdmprinter.def.json
  4299. msgctxt "bridge_wall_speed label"
  4300. msgid "Bridge Wall Speed"
  4301. msgstr "Velocità di stampa della parete ponte"
  4302. #: fdmprinter.def.json
  4303. msgctxt "bridge_wall_speed description"
  4304. msgid "The speed at which the bridge walls are printed."
  4305. msgstr "Indica la velocità alla quale vengono stampate le pareti ponte."
  4306. #: fdmprinter.def.json
  4307. msgctxt "bridge_wall_material_flow label"
  4308. msgid "Bridge Wall Flow"
  4309. msgstr "Flusso della parete ponte"
  4310. #: fdmprinter.def.json
  4311. msgctxt "bridge_wall_material_flow description"
  4312. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4313. msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4314. #: fdmprinter.def.json
  4315. msgctxt "bridge_skin_speed label"
  4316. msgid "Bridge Skin Speed"
  4317. msgstr "Velocità di stampa del rivestimento esterno ponte"
  4318. #: fdmprinter.def.json
  4319. msgctxt "bridge_skin_speed description"
  4320. msgid "The speed at which bridge skin regions are printed."
  4321. msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte."
  4322. #: fdmprinter.def.json
  4323. msgctxt "bridge_skin_material_flow label"
  4324. msgid "Bridge Skin Flow"
  4325. msgstr "Flusso del rivestimento esterno ponte"
  4326. #: fdmprinter.def.json
  4327. msgctxt "bridge_skin_material_flow description"
  4328. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4329. msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4330. #: fdmprinter.def.json
  4331. msgctxt "bridge_skin_density label"
  4332. msgid "Bridge Skin Density"
  4333. msgstr "Densità del rivestimento esterno ponte"
  4334. #: fdmprinter.def.json
  4335. msgctxt "bridge_skin_density description"
  4336. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4337. msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4338. #: fdmprinter.def.json
  4339. msgctxt "bridge_fan_speed label"
  4340. msgid "Bridge Fan Speed"
  4341. msgstr "Velocità della ventola ponte"
  4342. #: fdmprinter.def.json
  4343. msgctxt "bridge_fan_speed description"
  4344. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4345. msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte."
  4346. #: fdmprinter.def.json
  4347. msgctxt "bridge_enable_more_layers label"
  4348. msgid "Bridge Has Multiple Layers"
  4349. msgstr "Ponte a strati multipli"
  4350. #: fdmprinter.def.json
  4351. msgctxt "bridge_enable_more_layers description"
  4352. 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."
  4353. 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."
  4354. #: fdmprinter.def.json
  4355. msgctxt "bridge_skin_speed_2 label"
  4356. msgid "Bridge Second Skin Speed"
  4357. msgstr "Velocità di stampa del secondo rivestimento esterno ponte"
  4358. #: fdmprinter.def.json
  4359. msgctxt "bridge_skin_speed_2 description"
  4360. msgid "Print speed to use when printing the second bridge skin layer."
  4361. msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte."
  4362. #: fdmprinter.def.json
  4363. msgctxt "bridge_skin_material_flow_2 label"
  4364. msgid "Bridge Second Skin Flow"
  4365. msgstr "Flusso del secondo rivestimento esterno ponte"
  4366. #: fdmprinter.def.json
  4367. msgctxt "bridge_skin_material_flow_2 description"
  4368. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4369. msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4370. #: fdmprinter.def.json
  4371. msgctxt "bridge_skin_density_2 label"
  4372. msgid "Bridge Second Skin Density"
  4373. msgstr "Densità del secondo rivestimento esterno ponte"
  4374. #: fdmprinter.def.json
  4375. msgctxt "bridge_skin_density_2 description"
  4376. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4377. msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4378. #: fdmprinter.def.json
  4379. msgctxt "bridge_fan_speed_2 label"
  4380. msgid "Bridge Second Skin Fan Speed"
  4381. msgstr "Velocità della ventola per il secondo rivestimento esterno ponte"
  4382. #: fdmprinter.def.json
  4383. msgctxt "bridge_fan_speed_2 description"
  4384. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4385. msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte."
  4386. #: fdmprinter.def.json
  4387. msgctxt "bridge_skin_speed_3 label"
  4388. msgid "Bridge Third Skin Speed"
  4389. msgstr "Velocità di stampa del terzo rivestimento esterno ponte"
  4390. #: fdmprinter.def.json
  4391. msgctxt "bridge_skin_speed_3 description"
  4392. msgid "Print speed to use when printing the third bridge skin layer."
  4393. msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte."
  4394. #: fdmprinter.def.json
  4395. msgctxt "bridge_skin_material_flow_3 label"
  4396. msgid "Bridge Third Skin Flow"
  4397. msgstr "Flusso del terzo rivestimento esterno ponte"
  4398. #: fdmprinter.def.json
  4399. msgctxt "bridge_skin_material_flow_3 description"
  4400. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4401. msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore."
  4402. #: fdmprinter.def.json
  4403. msgctxt "bridge_skin_density_3 label"
  4404. msgid "Bridge Third Skin Density"
  4405. msgstr "Densità del terzo rivestimento esterno ponte"
  4406. #: fdmprinter.def.json
  4407. msgctxt "bridge_skin_density_3 description"
  4408. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4409. msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno."
  4410. #: fdmprinter.def.json
  4411. msgctxt "bridge_fan_speed_3 label"
  4412. msgid "Bridge Third Skin Fan Speed"
  4413. msgstr "Velocità della ventola del terzo rivestimento esterno ponte"
  4414. #: fdmprinter.def.json
  4415. msgctxt "bridge_fan_speed_3 description"
  4416. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4417. msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte."
  4418. #: fdmprinter.def.json
  4419. msgctxt "command_line_settings label"
  4420. msgid "Command Line Settings"
  4421. msgstr "Impostazioni riga di comando"
  4422. #: fdmprinter.def.json
  4423. msgctxt "command_line_settings description"
  4424. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4425. msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura."
  4426. #: fdmprinter.def.json
  4427. msgctxt "center_object label"
  4428. msgid "Center Object"
  4429. msgstr "Centra oggetto"
  4430. #: fdmprinter.def.json
  4431. msgctxt "center_object description"
  4432. 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."
  4433. 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."
  4434. #: fdmprinter.def.json
  4435. msgctxt "mesh_position_x label"
  4436. msgid "Mesh Position X"
  4437. msgstr "Posizione maglia X"
  4438. #: fdmprinter.def.json
  4439. msgctxt "mesh_position_x description"
  4440. msgid "Offset applied to the object in the x direction."
  4441. msgstr "Offset applicato all’oggetto per la direzione X."
  4442. #: fdmprinter.def.json
  4443. msgctxt "mesh_position_y label"
  4444. msgid "Mesh Position Y"
  4445. msgstr "Posizione maglia Y"
  4446. #: fdmprinter.def.json
  4447. msgctxt "mesh_position_y description"
  4448. msgid "Offset applied to the object in the y direction."
  4449. msgstr "Offset applicato all’oggetto per la direzione Y."
  4450. #: fdmprinter.def.json
  4451. msgctxt "mesh_position_z label"
  4452. msgid "Mesh Position Z"
  4453. msgstr "Posizione maglia Z"
  4454. #: fdmprinter.def.json
  4455. msgctxt "mesh_position_z description"
  4456. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4457. msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’."
  4458. #: fdmprinter.def.json
  4459. msgctxt "mesh_rotation_matrix label"
  4460. msgid "Mesh Rotation Matrix"
  4461. msgstr "Matrice rotazione maglia"
  4462. #: fdmprinter.def.json
  4463. msgctxt "mesh_rotation_matrix description"
  4464. msgid "Transformation matrix to be applied to the model when loading it from file."
  4465. msgstr "Matrice di rotazione da applicare al modello quando caricato dal file."
  4466. #~ msgctxt "optimize_wall_printing_order description"
  4467. #~ 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."
  4468. #~ msgstr "Ottimizza l'ordine in cui vengono stampate le pareti in modo da ridurre le retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi, ma alcuni potrebbero richiedere un maggior tempo di esecuzione, per cui si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione."
  4469. #~ msgctxt "retraction_combing option noskin"
  4470. #~ msgid "No Skin"
  4471. #~ msgstr "No rivestimento esterno"
  4472. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  4473. #~ msgid "Alternate Cross 3D Pockets"
  4474. #~ msgstr "Cavità 3D incrociate alternate"
  4475. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  4476. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  4477. #~ msgstr "Si applica solo a cavità a metà degli incroci a quattro vie nella configurazione 3D incrociata e alterna la posizione delle cavità tra le altezze in cui la configurazione tocca se stessa."
  4478. #~ msgctxt "infill_hollow label"
  4479. #~ msgid "Hollow Out Objects"
  4480. #~ msgstr "Oggetti cavi"
  4481. #~ msgctxt "infill_hollow description"
  4482. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  4483. #~ msgstr "Rimuove tutto il riempimento e rende l’interno dell’oggetto adatto per il supporto."
  4484. #~ msgctxt "adaptive_layer_height_variation description"
  4485. #~ msgid "The maximum allowed height different from the base layer height in mm."
  4486. #~ msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base in mm."
  4487. #~ msgctxt "center_object label"
  4488. #~ msgid "Center object"
  4489. #~ msgstr "Centra oggetto"
  4490. #~ msgctxt "mesh_position_x label"
  4491. #~ msgid "Mesh position x"
  4492. #~ msgstr "Posizione maglia x"
  4493. #~ msgctxt "mesh_position_y label"
  4494. #~ msgid "Mesh position y"
  4495. #~ msgstr "Posizione maglia y"
  4496. #~ msgctxt "mesh_position_z label"
  4497. #~ msgid "Mesh position z"
  4498. #~ msgstr "Posizione maglia z"
  4499. #~ msgctxt "machine_start_gcode label"
  4500. #~ msgid "Start GCode"
  4501. #~ msgstr "Avvio GCode"
  4502. #~ msgctxt "machine_start_gcode description"
  4503. #~ msgid ""
  4504. #~ "Gcode commands to be executed at the very start - separated by \n"
  4505. #~ "."
  4506. #~ msgstr ""
  4507. #~ "I comandi del Gcode da eseguire all’avvio, separati da \n"
  4508. #~ "."
  4509. #~ msgctxt "machine_end_gcode label"
  4510. #~ msgid "End GCode"
  4511. #~ msgstr "Fine GCode"
  4512. #~ msgctxt "machine_end_gcode description"
  4513. #~ msgid ""
  4514. #~ "Gcode commands to be executed at the very end - separated by \n"
  4515. #~ "."
  4516. #~ msgstr ""
  4517. #~ "I comandi del Gcode da eseguire alla fine, separati da \n"
  4518. #~ "."
  4519. #~ msgctxt "machine_gcode_flavor label"
  4520. #~ msgid "Gcode flavour"
  4521. #~ msgstr "Tipo di Gcode"
  4522. #~ msgctxt "machine_gcode_flavor description"
  4523. #~ msgid "The type of gcode to be generated."
  4524. #~ msgstr "Il tipo di gcode da generare."
  4525. #~ msgctxt "meshfix_keep_open_polygons description"
  4526. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  4527. #~ msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto GCode in nessun altro modo."
  4528. #~ msgctxt "relative_extrusion description"
  4529. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  4530. #~ msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del Gcode. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto agli E-steps assoluti. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script Gcode."
  4531. #~ msgctxt "infill_offset_x description"
  4532. #~ msgid "The infill pattern is offset this distance along the X axis."
  4533. #~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse X."
  4534. #~ msgctxt "infill_offset_y description"
  4535. #~ msgid "The infill pattern is offset this distance along the Y axis."
  4536. #~ msgstr "Il riempimento si scosta di questa distanza lungo l'asse Y."
  4537. #~ msgctxt "infill_overlap description"
  4538. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  4539. #~ msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento."
  4540. #~ msgctxt "skin_overlap description"
  4541. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  4542. #~ msgstr "Entità della sovrapposizione tra il rivestimento e le pareti espressa in percentuale della larghezza della linea. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. È una percentuale delle larghezze medie delle linee del rivestimento e della parete più interna."
  4543. #~ msgctxt "material_bed_temperature description"
  4544. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  4545. #~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Se è 0, il piano non si riscalda per questa stampa."
  4546. #~ msgctxt "wall_x_extruder_nr label"
  4547. #~ msgid "Inner Walls Extruder"
  4548. #~ msgstr "Estrusore parete interna"
  4549. #~ msgctxt "infill_pattern description"
  4550. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  4551. #~ msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e zig zag su layers alternati riduce il costo del materiale. Le configurazioni a griglia, triangolo, a cubo, ottagonale, a quarto di cubo e concentrica comportano la stampa completa in ogni layer. Il riempimento a cubi, a quarto di cubo e a ottagonale cambia a ogni layer per consentire una distribuzione più uniforme della resistenza in ogni direzione."
  4552. #~ msgctxt "zig_zaggify_infill description"
  4553. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  4554. #~ msgstr "Collega le estremità in cui la configurazione del riempimento incontra la parete interna utilizzando linee che seguono il profilo della parete interna stessa. Consentendo tale configurazione è possibile fare in modo che il riempimento aderisca meglio alle pareti riducendo gli effetti dello stesso sulla qualità delle superfici verticali. Disabilitando questa configurazione si riduce la quantità di materiale utilizzato."
  4555. #~ msgctxt "skirt_gap description"
  4556. #~ msgid ""
  4557. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  4558. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  4559. #~ msgstr ""
  4560. #~ "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa.\n"
  4561. #~ "Questa è la distanza minima, più linee di skirt aumenteranno tale distanza."
  4562. #~ msgctxt "z_offset_layer_0 label"
  4563. #~ msgid "Initial Layer Z Offset"
  4564. #~ msgstr "Scostamento Z layer iniziale"
  4565. #~ msgctxt "z_offset_layer_0 description"
  4566. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  4567. #~ msgstr "L'estrusore viene posizionato ad una distanza dall'altezza normale del primo layer pari al valore indicato. Questo scostamento può essere positivo (più in alto) o negativo (più in basso). Alcuni tipi di filamento aderiscono meglio al piano di stampa se l'estrusore viene leggermente sollevato."
  4568. #~ msgctxt "z_offset_taper_layers label"
  4569. #~ msgid "Z Offset Taper Layers"
  4570. #~ msgstr "Scostamento Z layers di rastremazione"
  4571. #~ msgctxt "z_offset_taper_layers description"
  4572. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  4573. #~ msgstr "Se diverso da zero, lo scostamento Z viene ridotto a 0 entro il numero di layers indicato. Un valore di 0 indica che lo scostamento Z rimane costante per tutti i layers di stampa."
  4574. #~ msgctxt "raft_smoothing description"
  4575. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  4576. #~ 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."
  4577. #~ msgctxt "infill_pattern description"
  4578. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  4579. #~ msgstr "Indica la configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su layers alternati, riducendo il costo del materiale. Le configurazioni a griglia, triangolo, cubo, tetraedriche e concentriche sono stampate completamente su ogni layers. Il riempimento delle configurazioni cubiche e tetraedriche cambia ad ogni strato per fornire una distribuzione più uniforme della forza su ciascuna direzione."
  4580. #~ msgctxt "infill_pattern option tetrahedral"
  4581. #~ msgid "Tetrahedral"
  4582. #~ msgstr "Tetraedro"
  4583. #~ msgctxt "expand_skins_into_infill label"
  4584. #~ msgid "Expand Skins Into Infill"
  4585. #~ msgstr "Estende rivestimenti esterni nel riempimento"
  4586. #~ msgctxt "expand_skins_into_infill description"
  4587. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  4588. #~ msgstr "Estende le aree di rivestimento esterno superiori e/o inferiori delle superfici piatte. Per default, i rivestimenti esterni si interrompono sotto le linee delle pareti circostanti il riempimento, ma questo può generare la comparsa di fori quando la densità del riempimento è bassa. Questa impostazione prolunga i rivestimenti esterni oltre le linee delle pareti in modo che il riempimento sullo strato successivo appoggi sul rivestimento esterno."
  4589. #~ msgctxt "expand_upper_skins label"
  4590. #~ msgid "Expand Top Skins Into Infill"
  4591. #~ msgstr "Estendi rivestimenti esterni superiori nel riempimento"
  4592. #~ msgctxt "expand_upper_skins description"
  4593. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  4594. #~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante."
  4595. #~ msgctxt "expand_lower_skins label"
  4596. #~ msgid "Expand Bottom Skins Into Infill"
  4597. #~ msgstr "Estendi rivestimenti esterni inferiori nel riempimento"
  4598. #~ msgctxt "expand_lower_skins description"
  4599. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4600. #~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dai layers di riempimento sovrastanti e sottostanti."
  4601. #~ msgctxt "expand_skins_expand_distance description"
  4602. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  4603. #~ msgstr "La distanza di prolungamento dei rivestimenti esterni nel riempimento. La distanza preimpostata è sufficiente per coprire lo spazio tra le linee di riempimento e chiude i fori che si presentano sul rivestimento esterno nel punto in cui incontra la parete quando la densità del riempimento è bassa. Una distanza inferiore sovente è sufficiente."
  4604. #~ msgctxt "support_skip_some_zags label"
  4605. #~ msgid "Skip Some ZigZags Connections"
  4606. #~ msgstr "Salta alcuni collegamenti a zig-zag"
  4607. #~ msgctxt "support_skip_some_zags description"
  4608. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  4609. #~ msgstr "Salto di alcuni collegamenti a zig-zag per rendere la struttura del supporto più facile da rompere."
  4610. #~ msgctxt "support_zag_skip_count label"
  4611. #~ msgid "ZigZag Connection Skip Count"
  4612. #~ msgstr "Conteggio dei salti dei collegamenti a zig-zag"
  4613. #~ msgctxt "support_zag_skip_count description"
  4614. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  4615. #~ msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere."
  4616. #~ msgctxt "machine_show_variants label"
  4617. #~ msgid "Show machine variants"
  4618. #~ msgstr "Mostra varianti macchina"
  4619. #~ msgctxt "material_bed_temp_wait label"
  4620. #~ msgid "Wait for build plate heatup"
  4621. #~ msgstr "Attendi il riscaldamento del piano di stampa"
  4622. #~ msgctxt "material_print_temp_wait label"
  4623. #~ msgid "Wait for nozzle heatup"
  4624. #~ msgstr "Attendi il riscaldamento dell’ugello"
  4625. #~ msgctxt "material_print_temp_prepend label"
  4626. #~ msgid "Include material temperatures"
  4627. #~ msgstr "Includi le temperature del materiale"
  4628. #~ msgctxt "material_bed_temp_prepend label"
  4629. #~ msgid "Include build plate temperature"
  4630. #~ msgstr "Includi temperatura piano di stampa"
  4631. #~ msgctxt "machine_width label"
  4632. #~ msgid "Machine width"
  4633. #~ msgstr "Larghezza macchina"
  4634. #~ msgctxt "machine_depth label"
  4635. #~ msgid "Machine depth"
  4636. #~ msgstr "Profondità macchina"
  4637. #~ msgctxt "machine_shape label"
  4638. #~ msgid "Build plate shape"
  4639. #~ msgstr "Forma del piano di stampa"
  4640. #~ msgctxt "machine_height label"
  4641. #~ msgid "Machine height"
  4642. #~ msgstr "Altezza macchina"
  4643. #~ msgctxt "machine_heated_bed label"
  4644. #~ msgid "Has heated build plate"
  4645. #~ msgstr "Piano di stampa riscaldato"
  4646. #~ msgctxt "machine_center_is_zero label"
  4647. #~ msgid "Is center origin"
  4648. #~ msgstr "Origine centro"
  4649. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  4650. #~ msgid "RepRap (Marlin/Sprinter)"
  4651. #~ msgstr "RepRap (Marlin/Sprinter)"
  4652. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  4653. #~ msgid "RepRap (Volumetric)"
  4654. #~ msgstr "RepRap (Volumetric)"
  4655. #~ msgctxt "wall_thickness description"
  4656. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4657. #~ msgstr "Indica lo spessore delle pareti esterne in senso orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti."
  4658. #~ msgctxt "skin_overlap description"
  4659. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  4660. #~ msgstr "Indica la quantità di sovrapposizione tra il rivestimento esterno e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al rivestimento esterno."
  4661. #~ msgctxt "support_interface_line_width description"
  4662. #~ msgid "Width of a single support interface line."
  4663. #~ msgstr "Indica la larghezza di una singola linea dell’interfaccia di supporto."
  4664. #~ msgctxt "sub_div_rad_mult label"
  4665. #~ msgid "Cubic Subdivision Radius"
  4666. #~ msgstr "Raggio suddivisione in cubi"
  4667. #~ msgctxt "sub_div_rad_mult description"
  4668. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  4669. #~ msgstr "Un moltiplicatore sul raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano più suddivisioni, vale a dire più cubi piccoli."
  4670. #~ msgctxt "expand_upper_skins label"
  4671. #~ msgid "Expand Upper Skins"
  4672. #~ msgstr "Estendi rivestimenti esterni superiori"
  4673. #~ msgctxt "expand_upper_skins description"
  4674. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  4675. #~ msgstr "Estendi le aree di rivestimento esterno superiori (aree con aria al di sopra) in modo che supportino il riempimento sovrastante."
  4676. #~ msgctxt "expand_lower_skins label"
  4677. #~ msgid "Expand Lower Skins"
  4678. #~ msgstr "Estendi rivestimenti esterni inferiori"
  4679. #~ msgctxt "expand_lower_skins description"
  4680. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4681. #~ msgstr "Estendi aree rivestimento esterno inferiori (aree con aria al di sotto) in modo che siano ancorate dagli strati di riempimento sovrastanti e sottostanti."
  4682. #~ msgctxt "speed_support_interface description"
  4683. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  4684. #~ msgstr "Indica la velocità alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti a velocità inferiori può ottimizzare la qualità delle parti a sbalzo."
  4685. #~ msgctxt "acceleration_support_interface description"
  4686. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  4687. #~ msgstr "Indica l’accelerazione alla quale sono stampate le parti superiori (tetto) e inferiori del supporto. La stampa di queste parti ad accelerazioni inferiori può ottimizzare la qualità delle parti a sbalzo."
  4688. #~ msgctxt "jerk_support_interface description"
  4689. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  4690. #~ msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori."
  4691. #~ msgctxt "support_enable label"
  4692. #~ msgid "Enable Support"
  4693. #~ msgstr "Abilitazione del supporto"
  4694. #~ msgctxt "support_enable description"
  4695. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  4696. #~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi."
  4697. #~ msgctxt "support_interface_extruder_nr description"
  4698. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  4699. #~ msgstr "Il blocco estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla."
  4700. #~ msgctxt "support_bottom_stair_step_height description"
  4701. #~ 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."
  4702. #~ msgstr "Indica l'altezza dei gradini della parte inferiore del supporto (a guisa di scala) in appoggio sul modello. Un valore basso rende difficoltosa la rimozione del supporto, ma un valore troppo alto può comportare strutture di supporto instabili."
  4703. #~ msgctxt "support_bottom_height label"
  4704. #~ msgid "Support Bottom Thickness"
  4705. #~ msgstr "Spessore dei layers inferiori del supporto"
  4706. #~ msgctxt "support_bottom_height description"
  4707. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  4708. #~ msgstr "Indica lo spessore dei layers inferiori del supporto. Questo controlla il numero di slayers fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto."
  4709. #~ msgctxt "support_interface_skip_height description"
  4710. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  4711. #~ msgstr "Quando si controlla la presenza di un modello sopra il supporto, adottare gradini di una data altezza. Valori inferiori generano un sezionamento più lento, mentre valori superiori possono causare la stampa del supporto normale in punti in cui avrebbe dovuto essere presente un’interfaccia supporto."
  4712. #~ msgctxt "support_interface_density description"
  4713. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  4714. #~ msgstr "Regola la densità delle parti superiori e inferiori della struttura del supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere."
  4715. #~ msgctxt "support_interface_line_distance label"
  4716. #~ msgid "Support Interface Line Distance"
  4717. #~ msgstr "Distanza della linea di interfaccia supporto"
  4718. #~ msgctxt "support_interface_line_distance description"
  4719. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  4720. #~ msgstr "Indica la distanza tra le linee di interfaccia del supporto stampato. Questa impostazione viene calcolata mediante la densità dell’interfaccia del supporto, ma può essere regolata separatamente."
  4721. #~ msgctxt "magic_spiralize description"
  4722. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  4723. #~ msgstr "Questa funzione regolarizza il movimento dell'asse Z del bordo esterno. Questo creerà un costante aumento di Z su tutta la stampa. Questa funzione trasforma un modello solido in una stampa a singola parete con un fondo solido. Nelle versioni precedenti questa funzione era denominata Joris."
  4724. #~ msgctxt "material_print_temperature description"
  4725. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  4726. #~ msgstr "Indica la temperatura usata per la stampa. Impostare a 0 per pre-riscaldare la stampante manualmente."
  4727. #~ msgctxt "material_bed_temperature description"
  4728. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  4729. #~ msgstr "Indica la temperatura usata per il piano di stampa riscaldato. Impostare a 0 per pre-riscaldare la stampante manualmente."
  4730. #~ msgctxt "support_z_distance description"
  4731. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  4732. #~ msgstr "Indica la distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questa distanza fornisce lo spazio per rimuovere i supporti dopo aver stampato il modello. Questo valore viene arrotondato per difetto a un multiplo dell’altezza strato."
  4733. #~ msgctxt "z_seam_type option back"
  4734. #~ msgid "Back"
  4735. #~ msgstr "Indietro"
  4736. #~ msgctxt "multiple_mesh_overlap label"
  4737. #~ msgid "Dual Extrusion Overlap"
  4738. #~ msgstr "Sovrapposizione doppia estrusione"