cura.po 368 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.13\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-12-10 12:00+0100\n"
  10. "PO-Revision-Date: 2021-09-07 07:57+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Italian <info@lionbridge.com>, Italian <info@bothof.nl>\n"
  13. "Language: it_IT\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. "X-Generator: Poedit 3.0\n"
  19. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:115
  20. msgctxt "@info:backup_failed"
  21. msgid "Could not create archive from user data directory: {}"
  22. msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}"
  23. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:122
  24. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:159
  25. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  26. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  27. msgctxt "@info:title"
  28. msgid "Backup"
  29. msgstr "Backup"
  30. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:134
  31. msgctxt "@info:backup_failed"
  32. msgid "Tried to restore a Cura backup without having proper data or meta data."
  33. msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati."
  34. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:145
  35. msgctxt "@info:backup_failed"
  36. msgid "Tried to restore a Cura backup that is higher than the current version."
  37. msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente."
  38. #: /home/clamboo/Desktop/Cura/cura/Backups/Backup.py:158
  39. msgctxt "@info:backup_failed"
  40. msgid "The following error occurred while trying to restore a Cura backup:"
  41. msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:"
  42. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  43. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  44. msgctxt "@action:button"
  45. msgid "Please sync the material profiles with your printers before starting to print."
  46. msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare."
  47. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  48. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  49. msgctxt "@action:button"
  50. msgid "New materials installed"
  51. msgstr "Nuovi materiali installati"
  52. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  53. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  54. msgctxt "@action:button"
  55. msgid "Sync materials with printers"
  56. msgstr "Sincronizza materiali"
  57. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  58. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  59. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:80
  60. msgctxt "@action:button"
  61. msgid "Learn more"
  62. msgstr "Ulteriori informazioni"
  63. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  64. msgctxt "@message:text"
  65. msgid "Could not save material archive to {}:"
  66. msgstr "Impossibile salvare archivio materiali in {}:"
  67. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  68. msgctxt "@message:title"
  69. msgid "Failed to save material archive"
  70. msgstr "Impossibile salvare archivio materiali"
  71. #: /home/clamboo/Desktop/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  72. msgctxt "@text"
  73. msgid "Unknown error."
  74. msgstr "Errore sconosciuto."
  75. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:99
  76. msgctxt "@info:status"
  77. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  78. msgstr "L’altezza del volume di stampa è stata ridotta a causa del valore dell’impostazione \"Sequenza di stampa” per impedire la collisione del gantry con i modelli stampati."
  79. #: /home/clamboo/Desktop/Cura/cura/BuildVolume.py:102
  80. msgctxt "@info:title"
  81. msgid "Build Volume"
  82. msgstr "Volume di stampa"
  83. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  84. #, python-brace-format
  85. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  86. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  87. msgstr "Rimuovere {0}? Questa operazione non può essere annullata!"
  88. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/ExtrudersModel.py:219
  89. msgctxt "@menuitem"
  90. msgid "Not overridden"
  91. msgstr "Non sottoposto a override"
  92. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  93. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:361
  94. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1614
  95. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  96. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  97. msgctxt "@label"
  98. msgid "Unknown"
  99. msgstr "Sconosciuto"
  100. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  101. msgctxt "@label"
  102. msgid "The printer(s) below cannot be connected because they are part of a group"
  103. msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo"
  104. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  105. msgctxt "@label"
  106. msgid "Available networked printers"
  107. msgstr "Stampanti disponibili in rete"
  108. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:338
  109. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  110. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:11
  111. msgctxt "@label"
  112. msgid "Default"
  113. msgstr "Default"
  114. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:390
  115. msgctxt "@label"
  116. msgid "Custom profiles"
  117. msgstr "Profili personalizzati"
  118. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:425
  119. #, python-brace-format
  120. msgctxt "@item:inlistbox"
  121. msgid "All Supported Types ({0})"
  122. msgstr "Tutti i tipi supportati ({0})"
  123. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/QualityManagementModel.py:426
  124. msgctxt "@item:inlistbox"
  125. msgid "All Files (*)"
  126. msgstr "Tutti i file (*)"
  127. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  128. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:14
  129. msgctxt "@label"
  130. msgid "Visual"
  131. msgstr "Visivo"
  132. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  133. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:15
  134. msgctxt "@text"
  135. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  136. msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata."
  137. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  138. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:18
  139. msgctxt "@label"
  140. msgid "Engineering"
  141. msgstr "Engineering"
  142. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  143. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:19
  144. msgctxt "@text"
  145. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  146. msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e tolleranze strette."
  147. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  148. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:22
  149. msgctxt "@label"
  150. msgid "Draft"
  151. msgstr "Bozza"
  152. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  153. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/IntentTranslations.py:23
  154. msgctxt "@text"
  155. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  156. msgstr "Il profilo bozza è destinato alla stampa dei prototipi iniziali e alla convalida dei concept, con l'intento di ridurre in modo significativo il tempo di stampa."
  157. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  158. msgctxt "@label"
  159. msgid "Custom Material"
  160. msgstr "Materiale personalizzato"
  161. #: /home/clamboo/Desktop/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  162. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:346
  163. msgctxt "@label"
  164. msgid "Custom"
  165. msgstr "Personalizzata"
  166. #: /home/clamboo/Desktop/Cura/cura/API/Account.py:190
  167. msgctxt "@info:title"
  168. msgid "Login failed"
  169. msgstr "Login non riuscito"
  170. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  171. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  172. msgctxt "@info:status"
  173. msgid "Finding new location for objects"
  174. msgstr "Ricerca nuova posizione per gli oggetti"
  175. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  176. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  177. msgctxt "@info:title"
  178. msgid "Finding Location"
  179. msgstr "Ricerca posizione"
  180. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  181. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  182. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:99
  183. msgctxt "@info:status"
  184. msgid "Unable to find a location within the build volume for all objects"
  185. msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti"
  186. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  187. #: /home/clamboo/Desktop/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:152
  188. msgctxt "@info:title"
  189. msgid "Can't Find Location"
  190. msgstr "Impossibile individuare posizione"
  191. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  192. msgctxt "@text:error"
  193. msgid "Failed to create archive of materials to sync with printers."
  194. msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti."
  195. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  196. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  197. msgctxt "@text:error"
  198. msgid "Failed to load the archive of materials to sync it with printers."
  199. msgstr "Impossibile caricare l'archivio di materiali da sincronizzare con le stampanti."
  200. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  201. msgctxt "@text:error"
  202. msgid "The response from Digital Factory appears to be corrupted."
  203. msgstr "La risposta da Digital Factory sembra essere danneggiata."
  204. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  205. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  206. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  207. msgctxt "@text:error"
  208. msgid "The response from Digital Factory is missing important information."
  209. msgstr "Nella risposta da Digital Factory mancano informazioni importanti."
  210. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  211. msgctxt "@text:error"
  212. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  213. msgstr "Impossibile connettersi a Digital Factory per sincronizzare i materiali con alcune delle stampanti."
  214. #: /home/clamboo/Desktop/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  215. msgctxt "@text:error"
  216. msgid "Failed to connect to Digital Factory."
  217. msgstr "Impossibile connettersi a Digital Factory."
  218. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:530
  219. msgctxt "@info:progress"
  220. msgid "Loading machines..."
  221. msgstr "Caricamento macchine in corso..."
  222. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:537
  223. msgctxt "@info:progress"
  224. msgid "Setting up preferences..."
  225. msgstr "Impostazione delle preferenze..."
  226. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:675
  227. msgctxt "@info:progress"
  228. msgid "Initializing Active Machine..."
  229. msgstr "Inizializzazione Active Machine in corso..."
  230. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:811
  231. msgctxt "@info:progress"
  232. msgid "Initializing machine manager..."
  233. msgstr "Inizializzazione gestore macchina in corso..."
  234. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:825
  235. msgctxt "@info:progress"
  236. msgid "Initializing build volume..."
  237. msgstr "Inizializzazione volume di stampa in corso..."
  238. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:896
  239. msgctxt "@info:progress"
  240. msgid "Setting up scene..."
  241. msgstr "Impostazione scena in corso..."
  242. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:932
  243. msgctxt "@info:progress"
  244. msgid "Loading interface..."
  245. msgstr "Caricamento interfaccia in corso..."
  246. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:937
  247. msgctxt "@info:progress"
  248. msgid "Initializing engine..."
  249. msgstr "Inizializzazione motore in corso..."
  250. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1254
  251. #, python-format
  252. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  253. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  254. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  255. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1807
  256. #, python-brace-format
  257. msgctxt "@info:status"
  258. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  259. msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}"
  260. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1809
  261. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:217
  262. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  263. msgctxt "@info:title"
  264. msgid "Warning"
  265. msgstr "Avvertenza"
  266. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1819
  267. #, python-brace-format
  268. msgctxt "@info:status"
  269. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  270. msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}"
  271. #: /home/clamboo/Desktop/Cura/cura/CuraApplication.py:1821
  272. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:156
  273. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:166
  274. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  275. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  276. msgctxt "@info:title"
  277. msgid "Error"
  278. msgstr "Errore"
  279. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:67
  280. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:286
  281. msgctxt "@action:button"
  282. msgid "Skip"
  283. msgstr "Salta"
  284. #: /home/clamboo/Desktop/Cura/cura/UI/WhatsNewPagesModel.py:72
  285. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  286. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  287. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:485
  288. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  289. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:127
  290. msgctxt "@action:button"
  291. msgid "Close"
  292. msgstr "Chiudi"
  293. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:57
  294. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:277
  295. msgctxt "@action:button"
  296. msgid "Next"
  297. msgstr "Avanti"
  298. #: /home/clamboo/Desktop/Cura/cura/UI/WelcomePagesModel.py:290
  299. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:26
  300. msgctxt "@action:button"
  301. msgid "Finish"
  302. msgstr "Fine"
  303. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:17
  304. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  305. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:48
  306. msgctxt "@action:button"
  307. msgid "Add"
  308. msgstr "Aggiungi"
  309. #: /home/clamboo/Desktop/Cura/cura/UI/AddPrinterPagesModel.py:33
  310. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  311. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:234
  312. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  313. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  314. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  315. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:44
  316. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  317. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  318. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  319. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  320. msgctxt "@action:button"
  321. msgid "Cancel"
  322. msgstr "Annulla"
  323. #: /home/clamboo/Desktop/Cura/cura/UI/ObjectsModel.py:69
  324. #, python-brace-format
  325. msgctxt "@label"
  326. msgid "Group #{group_nr}"
  327. msgstr "Gruppo #{group_nr}"
  328. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:85
  329. msgctxt "@tooltip"
  330. msgid "Outer Wall"
  331. msgstr "Parete esterna"
  332. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:86
  333. msgctxt "@tooltip"
  334. msgid "Inner Walls"
  335. msgstr "Pareti interne"
  336. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:87
  337. msgctxt "@tooltip"
  338. msgid "Skin"
  339. msgstr "Rivestimento esterno"
  340. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:88
  341. msgctxt "@tooltip"
  342. msgid "Infill"
  343. msgstr "Riempimento"
  344. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:89
  345. msgctxt "@tooltip"
  346. msgid "Support Infill"
  347. msgstr "Riempimento del supporto"
  348. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:90
  349. msgctxt "@tooltip"
  350. msgid "Support Interface"
  351. msgstr "Interfaccia supporto"
  352. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:91
  353. msgctxt "@tooltip"
  354. msgid "Support"
  355. msgstr "Supporto"
  356. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:92
  357. msgctxt "@tooltip"
  358. msgid "Skirt"
  359. msgstr "Skirt"
  360. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:93
  361. msgctxt "@tooltip"
  362. msgid "Prime Tower"
  363. msgstr "Torre di innesco"
  364. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:94
  365. msgctxt "@tooltip"
  366. msgid "Travel"
  367. msgstr "Spostamenti"
  368. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:95
  369. msgctxt "@tooltip"
  370. msgid "Retractions"
  371. msgstr "Retrazioni"
  372. #: /home/clamboo/Desktop/Cura/cura/UI/PrintInformation.py:96
  373. msgctxt "@tooltip"
  374. msgid "Other"
  375. msgstr "Altro"
  376. #: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:37
  377. #: /home/clamboo/Desktop/Cura/cura/UI/TextManager.py:61
  378. msgctxt "@text:window"
  379. msgid "The release notes could not be opened."
  380. msgstr "Impossibile aprire le note sulla versione."
  381. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:107
  382. msgctxt "@title:window"
  383. msgid "Cura can't start"
  384. msgstr "Impossibile avviare Cura"
  385. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:113
  386. msgctxt "@label crash message"
  387. msgid ""
  388. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  389. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  390. " <p>Backups can be found in the configuration folder.</p>\n"
  391. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  392. " "
  393. msgstr ""
  394. "<p><b>Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.</p></b>\n"
  395. " <p>Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.</p>\n"
  396. " <p>I backup sono contenuti nella cartella configurazione.</p>\n"
  397. " <p>Si prega di inviare questo Rapporto su crash per correggere il problema.</p>\n"
  398. " "
  399. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:122
  400. msgctxt "@action:button"
  401. msgid "Send crash report to Ultimaker"
  402. msgstr "Inviare il rapporto su crash a Ultimaker"
  403. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:125
  404. msgctxt "@action:button"
  405. msgid "Show detailed crash report"
  406. msgstr "Mostra il rapporto su crash dettagliato"
  407. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:129
  408. msgctxt "@action:button"
  409. msgid "Show configuration folder"
  410. msgstr "Mostra cartella di configurazione"
  411. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:140
  412. msgctxt "@action:button"
  413. msgid "Backup and Reset Configuration"
  414. msgstr "Backup e reset configurazione"
  415. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:171
  416. msgctxt "@title:window"
  417. msgid "Crash Report"
  418. msgstr "Rapporto su crash"
  419. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:190
  420. msgctxt "@label crash message"
  421. msgid ""
  422. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  423. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  424. " "
  425. msgstr ""
  426. "<p><b>Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema</p></b>\n"
  427. " <p>Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  428. " "
  429. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:198
  430. msgctxt "@title:groupbox"
  431. msgid "System information"
  432. msgstr "Informazioni di sistema"
  433. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:207
  434. msgctxt "@label unknown version of Cura"
  435. msgid "Unknown"
  436. msgstr "Sconosciuto"
  437. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:228
  438. msgctxt "@label Cura version number"
  439. msgid "Cura version"
  440. msgstr "Versione Cura"
  441. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:229
  442. msgctxt "@label"
  443. msgid "Cura language"
  444. msgstr "Lingua Cura"
  445. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:230
  446. msgctxt "@label"
  447. msgid "OS language"
  448. msgstr "Lingua sistema operativo"
  449. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:231
  450. msgctxt "@label Type of platform"
  451. msgid "Platform"
  452. msgstr "Piattaforma"
  453. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:232
  454. msgctxt "@label"
  455. msgid "Qt version"
  456. msgstr "Versione Qt"
  457. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:233
  458. msgctxt "@label"
  459. msgid "PyQt version"
  460. msgstr "Versione PyQt"
  461. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:234
  462. msgctxt "@label OpenGL version"
  463. msgid "OpenGL"
  464. msgstr "OpenGL"
  465. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:264
  466. msgctxt "@label"
  467. msgid "Not yet initialized<br/>"
  468. msgstr "Non ancora inizializzato<br/>"
  469. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:267
  470. #, python-brace-format
  471. msgctxt "@label OpenGL version"
  472. msgid "<li>OpenGL Version: {version}</li>"
  473. msgstr "<li>Versione OpenGL: {version}</li>"
  474. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:268
  475. #, python-brace-format
  476. msgctxt "@label OpenGL vendor"
  477. msgid "<li>OpenGL Vendor: {vendor}</li>"
  478. msgstr "<li>Fornitore OpenGL: {vendor}</li>"
  479. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:269
  480. #, python-brace-format
  481. msgctxt "@label OpenGL renderer"
  482. msgid "<li>OpenGL Renderer: {renderer}</li>"
  483. msgstr "<li>Renderer OpenGL: {renderer}</li>"
  484. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:303
  485. msgctxt "@title:groupbox"
  486. msgid "Error traceback"
  487. msgstr "Analisi errori"
  488. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:389
  489. msgctxt "@title:groupbox"
  490. msgid "Logs"
  491. msgstr "Registri"
  492. #: /home/clamboo/Desktop/Cura/cura/CrashHandler.py:417
  493. msgctxt "@action:button"
  494. msgid "Send report"
  495. msgstr "Invia report"
  496. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:216
  497. msgctxt "@info"
  498. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  499. msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso."
  500. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:277
  501. msgctxt "@info"
  502. msgid "Unable to reach the Ultimaker account server."
  503. msgstr "Impossibile raggiungere il server account Ultimaker."
  504. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationService.py:278
  505. msgctxt "@info:title"
  506. msgid "Log-in failed"
  507. msgstr "Log in non riuscito"
  508. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  509. msgctxt "@message"
  510. msgid "The provided state is not correct."
  511. msgstr "Lo stato fornito non è corretto."
  512. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  513. msgctxt "@message"
  514. msgid "Timeout when authenticating with the account server."
  515. msgstr "Timeout durante l'autenticazione con il server account."
  516. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  517. msgctxt "@message"
  518. msgid "Please give the required permissions when authorizing this application."
  519. msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione."
  520. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  521. msgctxt "@message"
  522. msgid "Something unexpected happened when trying to log in, please try again."
  523. msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare."
  524. #: /home/clamboo/Desktop/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  525. msgctxt "@message"
  526. msgid "Could not read response."
  527. msgstr "Impossibile leggere la risposta."
  528. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:30
  529. msgctxt "@info:status"
  530. msgid "Multiplying and placing objects"
  531. msgstr "Moltiplicazione e collocazione degli oggetti"
  532. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:32
  533. msgctxt "@info:title"
  534. msgid "Placing Objects"
  535. msgstr "Sistemazione oggetti"
  536. #: /home/clamboo/Desktop/Cura/cura/MultiplyObjectsJob.py:100
  537. msgctxt "@info:title"
  538. msgid "Placing Object"
  539. msgstr "Sistemazione oggetto"
  540. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:36
  541. msgctxt "@info:not supported profile"
  542. msgid "Not supported"
  543. msgstr "Non supportato"
  544. #: /home/clamboo/Desktop/Cura/cura/Settings/cura_empty_instance_containers.py:55
  545. msgctxt "@info:No intent profile selected"
  546. msgid "Default"
  547. msgstr "Default"
  548. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:713
  549. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  550. msgctxt "@label"
  551. msgid "Nozzle"
  552. msgstr "Ugello"
  553. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:857
  554. msgctxt "@info:message Followed by a list of settings."
  555. msgid "Settings have been changed to match the current availability of extruders:"
  556. msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:"
  557. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:858
  558. msgctxt "@info:title"
  559. msgid "Settings updated"
  560. msgstr "Impostazioni aggiornate"
  561. #: /home/clamboo/Desktop/Cura/cura/Settings/MachineManager.py:1480
  562. msgctxt "@info:title"
  563. msgid "Extruder(s) Disabled"
  564. msgstr "Estrusore disabilitato"
  565. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:207
  566. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:140
  567. msgctxt "@title:window"
  568. msgid "File Already Exists"
  569. msgstr "Il file esiste già"
  570. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:208
  571. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:141
  572. #, python-brace-format
  573. msgctxt "@label Don't translate the XML tag <filename>!"
  574. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  575. msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di volerlo sovrascrivere?"
  576. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:459
  577. #: /home/clamboo/Desktop/Cura/cura/Settings/ContainerManager.py:462
  578. msgctxt "@info:status"
  579. msgid "Invalid file URL:"
  580. msgstr "File URL non valido:"
  581. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:153
  582. #, python-brace-format
  583. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  584. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  585. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: <message>{1}</message>"
  586. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:163
  587. #, python-brace-format
  588. msgctxt "@info:status Don't translate the XML tag <filename>!"
  589. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  590. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: Rilevata anomalia durante scrittura plugin."
  591. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:171
  592. #, python-brace-format
  593. msgctxt "@info:status Don't translate the XML tag <filename>!"
  594. msgid "Exported profile to <filename>{0}</filename>"
  595. msgstr "Profilo esportato su <filename>{0}</filename>"
  596. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:173
  597. msgctxt "@info:title"
  598. msgid "Export succeeded"
  599. msgstr "Esportazione riuscita"
  600. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:205
  601. #, python-brace-format
  602. msgctxt "@info:status Don't translate the XML tags <filename>!"
  603. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  604. msgstr "Impossibile importare il profilo da <filename>{0}</filename>: {1}"
  605. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:209
  606. #, python-brace-format
  607. msgctxt "@info:status Don't translate the XML tags <filename>!"
  608. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  609. msgstr "Impossibile importare il profilo da <filename>{0}</filename> prima di aggiungere una stampante."
  610. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:224
  611. #, python-brace-format
  612. msgctxt "@info:status Don't translate the XML tags <filename>!"
  613. msgid "No custom profile to import in file <filename>{0}</filename>"
  614. msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  615. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:228
  616. #, python-brace-format
  617. msgctxt "@info:status Don't translate the XML tags <filename>!"
  618. msgid "Failed to import profile from <filename>{0}</filename>:"
  619. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  620. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:252
  621. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:262
  622. #, python-brace-format
  623. msgctxt "@info:status Don't translate the XML tags <filename>!"
  624. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  625. msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  626. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:355
  627. #, python-brace-format
  628. msgctxt "@info:status Don't translate the XML tag <filename>!"
  629. msgid "Failed to import profile from <filename>{0}</filename>:"
  630. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  631. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:359
  632. #, python-brace-format
  633. msgctxt "@info:status"
  634. msgid "Successfully imported profile {0}."
  635. msgstr "Profilo {0} importato correttamente."
  636. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:366
  637. #, python-brace-format
  638. msgctxt "@info:status"
  639. msgid "File {0} does not contain any valid profile."
  640. msgstr "Il file {0} non contiene nessun profilo valido."
  641. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:369
  642. #, python-brace-format
  643. msgctxt "@info:status"
  644. msgid "Profile {0} has an unknown file type or is corrupted."
  645. msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto."
  646. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:443
  647. msgctxt "@label"
  648. msgid "Custom profile"
  649. msgstr "Profilo personalizzato"
  650. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:459
  651. msgctxt "@info:status"
  652. msgid "Profile is missing a quality type."
  653. msgstr "Il profilo è privo del tipo di qualità."
  654. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:463
  655. msgctxt "@info:status"
  656. msgid "There is no active printer yet."
  657. msgstr "Non ci sono ancora stampanti attive."
  658. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:469
  659. msgctxt "@info:status"
  660. msgid "Unable to add the profile."
  661. msgstr "Impossibile aggiungere il profilo."
  662. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:483
  663. #, python-brace-format
  664. msgctxt "@info:status"
  665. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  666. msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'."
  667. #: /home/clamboo/Desktop/Cura/cura/Settings/CuraContainerRegistry.py:488
  668. #, python-brace-format
  669. msgctxt "@info:status"
  670. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  671. msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità."
  672. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  673. msgctxt "@label"
  674. msgid "Per Model Settings"
  675. msgstr "Impostazioni per modello"
  676. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  677. msgctxt "@info:tooltip"
  678. msgid "Configure Per Model Settings"
  679. msgstr "Configura impostazioni per modello"
  680. #: /home/clamboo/Desktop/Cura/plugins/CuraProfileReader/__init__.py:14
  681. #: /home/clamboo/Desktop/Cura/plugins/CuraProfileWriter/__init__.py:14
  682. msgctxt "@item:inlistbox"
  683. msgid "Cura Profile"
  684. msgstr "Profilo Cura"
  685. #: /home/clamboo/Desktop/Cura/plugins/X3DReader/__init__.py:13
  686. msgctxt "@item:inlistbox"
  687. msgid "X3D File"
  688. msgstr "File X3D"
  689. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  690. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  691. msgctxt "@info:backup_status"
  692. msgid "There was an error trying to restore your backup."
  693. msgstr "Si è verificato un errore cercando di ripristinare il backup."
  694. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  695. msgctxt "@info:title"
  696. msgid "Backups"
  697. msgstr "Backup"
  698. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  699. msgctxt "@info:backup_status"
  700. msgid "There was an error while uploading your backup."
  701. msgstr "Si è verificato un errore durante il caricamento del backup."
  702. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  703. msgctxt "@info:backup_status"
  704. msgid "Creating your backup..."
  705. msgstr "Creazione del backup in corso..."
  706. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  707. msgctxt "@info:backup_status"
  708. msgid "There was an error while creating your backup."
  709. msgstr "Si è verificato un errore durante la creazione del backup."
  710. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  711. msgctxt "@info:backup_status"
  712. msgid "Uploading your backup..."
  713. msgstr "Caricamento backup in corso..."
  714. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  715. msgctxt "@info:backup_status"
  716. msgid "Your backup has finished uploading."
  717. msgstr "Caricamento backup completato."
  718. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  719. msgctxt "@error:file_size"
  720. msgid "The backup exceeds the maximum file size."
  721. msgstr "Il backup supera la dimensione file massima."
  722. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  723. msgctxt "@item:inmenu"
  724. msgid "Manage backups"
  725. msgstr "Gestione backup"
  726. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  727. msgctxt "@action"
  728. msgid "Machine Settings"
  729. msgstr "Impostazioni macchina"
  730. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:12
  731. msgctxt "@label"
  732. msgid "Support Blocker"
  733. msgstr "Blocco supporto"
  734. #: /home/clamboo/Desktop/Cura/plugins/SupportEraser/__init__.py:13
  735. msgctxt "@info:tooltip"
  736. msgid "Create a volume in which supports are not printed."
  737. msgstr "Crea un volume in cui i supporti non vengono stampati."
  738. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  739. msgctxt "@item:intext"
  740. msgid "Removable Drive"
  741. msgstr "Unità rimovibile"
  742. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  743. msgctxt "@action:button Preceded by 'Ready to'."
  744. msgid "Save to Removable Drive"
  745. msgstr "Salva su unità rimovibile"
  746. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  747. #, python-brace-format
  748. msgctxt "@item:inlistbox"
  749. msgid "Save to Removable Drive {0}"
  750. msgstr "Salva su unità rimovibile {0}"
  751. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  752. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  753. msgctxt "@info:status"
  754. msgid "There are no file formats available to write with!"
  755. msgstr "Non ci sono formati di file disponibili per la scrittura!"
  756. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  757. #, python-brace-format
  758. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  759. msgid "Saving to Removable Drive <filename>{0}</filename>"
  760. msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  761. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  762. msgctxt "@info:title"
  763. msgid "Saving"
  764. msgstr "Salvataggio in corso"
  765. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  766. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  767. #, python-brace-format
  768. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  769. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  770. msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  771. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  772. #, python-brace-format
  773. msgctxt "@info:status Don't translate the tag {device}!"
  774. msgid "Could not find a file name when trying to write to {device}."
  775. msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}."
  776. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  777. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  778. #, python-brace-format
  779. msgctxt "@info:status"
  780. msgid "Could not save to removable drive {0}: {1}"
  781. msgstr "Impossibile salvare su unità rimovibile {0}: {1}"
  782. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  783. #, python-brace-format
  784. msgctxt "@info:status"
  785. msgid "Saved to Removable Drive {0} as {1}"
  786. msgstr "Salvato su unità rimovibile {0} come {1}"
  787. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  788. msgctxt "@info:title"
  789. msgid "File Saved"
  790. msgstr "File salvato"
  791. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  792. msgctxt "@action:button"
  793. msgid "Eject"
  794. msgstr "Rimuovi"
  795. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  796. #, python-brace-format
  797. msgctxt "@action"
  798. msgid "Eject removable device {0}"
  799. msgstr "Rimuovi il dispositivo rimovibile {0}"
  800. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  801. #, python-brace-format
  802. msgctxt "@info:status"
  803. msgid "Ejected {0}. You can now safely remove the drive."
  804. msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità."
  805. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  806. msgctxt "@info:title"
  807. msgid "Safely Remove Hardware"
  808. msgstr "Rimozione sicura dell'hardware"
  809. #: /home/clamboo/Desktop/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  810. #, python-brace-format
  811. msgctxt "@info:status"
  812. msgid "Failed to eject {0}. Another program may be using the drive."
  813. msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità."
  814. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  815. msgctxt "@action"
  816. msgid "Update Firmware"
  817. msgstr "Aggiornamento firmware"
  818. #: /home/clamboo/Desktop/Cura/plugins/LegacyProfileReader/__init__.py:14
  819. msgctxt "@item:inlistbox"
  820. msgid "Cura 15.04 profiles"
  821. msgstr "Profili Cura 15.04"
  822. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  823. msgctxt "@title:tab"
  824. msgid "Recommended"
  825. msgstr "Consigliata"
  826. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  827. msgctxt "@title:tab"
  828. msgid "Custom"
  829. msgstr "Personalizzata"
  830. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:542
  831. #, python-brace-format
  832. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  833. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  834. msgstr "Il file di progetto <filename>{0}</filename> contiene un tipo di macchina sconosciuto <message>{1}</message>. Impossibile importare la macchina. Verranno invece importati i modelli."
  835. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  836. msgctxt "@info:title"
  837. msgid "Open Project File"
  838. msgstr "Apri file progetto"
  839. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  840. #, python-brace-format
  841. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  842. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  843. msgstr "Il file di progetto <filename>{0}</filename> è diventato improvvisamente inaccessibile: <message>{1}</message>."
  844. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:643
  845. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651
  846. msgctxt "@info:title"
  847. msgid "Can't Open Project File"
  848. msgstr "Impossibile aprire il file di progetto"
  849. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  850. #, python-brace-format
  851. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  852. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  853. msgstr "Il file di progetto <filename>{0}</filename> è danneggiato: <message>{1}</message>."
  854. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:703
  855. #, python-brace-format
  856. msgctxt "@info:error Don't translate the XML tag <filename>!"
  857. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  858. msgstr "Il file di progetto <filename>{0}</filename> è realizzato con profili sconosciuti a questa versione di Ultimaker Cura."
  859. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:27
  860. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/__init__.py:33
  861. msgctxt "@item:inlistbox"
  862. msgid "3MF File"
  863. msgstr "File 3MF"
  864. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:57
  865. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:72
  866. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:94
  867. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:149
  868. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/UFPWriter.py:159
  869. msgctxt "@info:error"
  870. msgid "Can't write to UFP file:"
  871. msgstr "Impossibile scrivere nel file UFP:"
  872. #: /home/clamboo/Desktop/Cura/plugins/UFPWriter/__init__.py:28
  873. #: /home/clamboo/Desktop/Cura/plugins/UFPReader/__init__.py:22
  874. msgctxt "@item:inlistbox"
  875. msgid "Ultimaker Format Package"
  876. msgstr "Pacchetto formato Ultimaker"
  877. #: /home/clamboo/Desktop/Cura/plugins/GCodeProfileReader/__init__.py:14
  878. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:14
  879. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/__init__.py:16
  880. msgctxt "@item:inlistbox"
  881. msgid "G-code File"
  882. msgstr "File G-Code"
  883. #: /home/clamboo/Desktop/Cura/plugins/PreviewStage/__init__.py:13
  884. msgctxt "@item:inmenu"
  885. msgid "Preview"
  886. msgstr "Anteprima"
  887. #: /home/clamboo/Desktop/Cura/plugins/XRayView/__init__.py:12
  888. msgctxt "@item:inlistbox"
  889. msgid "X-Ray view"
  890. msgstr "Vista ai raggi X"
  891. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  892. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  893. msgctxt "@info:status"
  894. msgid "Processing Layers"
  895. msgstr "Elaborazione dei livelli"
  896. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  897. msgctxt "@info:title"
  898. msgid "Information"
  899. msgstr "Informazioni"
  900. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  901. msgctxt "@message"
  902. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  903. msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi."
  904. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  905. msgctxt "@message:title"
  906. msgid "Slicing failed"
  907. msgstr "Sezionamento non riuscito"
  908. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  909. msgctxt "@message:button"
  910. msgid "Report a bug"
  911. msgstr "Segnala un errore"
  912. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  913. msgctxt "@message:description"
  914. msgid "Report a bug on Ultimaker Cura's issue tracker."
  915. msgstr "Segnalare un errore nel registro problemi di Ultimaker Cura."
  916. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  917. msgctxt "@info:status"
  918. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  919. msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata."
  920. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  921. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  922. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  923. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  924. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  925. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  926. msgctxt "@info:title"
  927. msgid "Unable to slice"
  928. msgstr "Sezionamento impossibile"
  929. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  930. #, python-brace-format
  931. msgctxt "@info:status"
  932. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  933. msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}"
  934. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  935. #, python-brace-format
  936. msgctxt "@info:status"
  937. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  938. msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}"
  939. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  940. msgctxt "@info:status"
  941. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  942. msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide."
  943. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  944. #, python-format
  945. msgctxt "@info:status"
  946. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  947. msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato."
  948. #: /home/clamboo/Desktop/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  949. msgctxt "@info:status"
  950. msgid ""
  951. "Please review settings and check if your models:\n"
  952. "- Fit within the build volume\n"
  953. "- Are assigned to an enabled extruder\n"
  954. "- Are not all set as modifier meshes"
  955. msgstr ""
  956. "Verificare le impostazioni e controllare se i modelli:\n"
  957. "- Rientrano nel volume di stampa\n"
  958. "- Sono assegnati a un estrusore abilitato\n"
  959. "- Non sono tutti impostati come maglie modificatore"
  960. #: /home/clamboo/Desktop/Cura/plugins/AMFReader/__init__.py:15
  961. msgctxt "@item:inlistbox"
  962. msgid "AMF File"
  963. msgstr "File AMF"
  964. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzReader/__init__.py:17
  965. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/__init__.py:17
  966. msgctxt "@item:inlistbox"
  967. msgid "Compressed G-code File"
  968. msgstr "File G-Code compresso"
  969. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  970. msgctxt "@item:inmenu"
  971. msgid "Post Processing"
  972. msgstr "Post-elaborazione"
  973. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  974. msgctxt "@item:inmenu"
  975. msgid "Modify G-Code"
  976. msgstr "Modifica codice G"
  977. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  978. msgctxt "@item:inmenu"
  979. msgid "USB printing"
  980. msgstr "Stampa USB"
  981. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  982. msgctxt "@action:button Preceded by 'Ready to'."
  983. msgid "Print via USB"
  984. msgstr "Stampa tramite USB"
  985. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  986. msgctxt "@info:tooltip"
  987. msgid "Print via USB"
  988. msgstr "Stampa tramite USB"
  989. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  990. msgctxt "@info:status"
  991. msgid "Connected via USB"
  992. msgstr "Connesso tramite USB"
  993. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  994. msgctxt "@label"
  995. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  996. msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?"
  997. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  998. msgctxt "@message"
  999. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1000. msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata."
  1001. #: /home/clamboo/Desktop/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1002. msgctxt "@message"
  1003. msgid "Print in Progress"
  1004. msgstr "Stampa in corso"
  1005. #: /home/clamboo/Desktop/Cura/plugins/PrepareStage/__init__.py:12
  1006. msgctxt "@item:inmenu"
  1007. msgid "Prepare"
  1008. msgstr "Prepara"
  1009. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:347
  1010. msgctxt "@info:status"
  1011. msgid "Parsing G-code"
  1012. msgstr "Parsing codice G"
  1013. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:349
  1014. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:503
  1015. msgctxt "@info:title"
  1016. msgid "G-code Details"
  1017. msgstr "Dettagli codice G"
  1018. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/FlavorParser.py:501
  1019. msgctxt "@info:generic"
  1020. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1021. msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata."
  1022. #: /home/clamboo/Desktop/Cura/plugins/GCodeReader/__init__.py:18
  1023. msgctxt "@item:inlistbox"
  1024. msgid "G File"
  1025. msgstr "File G"
  1026. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:14
  1027. msgctxt "@item:inlistbox"
  1028. msgid "JPG Image"
  1029. msgstr "Immagine JPG"
  1030. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:18
  1031. msgctxt "@item:inlistbox"
  1032. msgid "JPEG Image"
  1033. msgstr "Immagine JPEG"
  1034. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:22
  1035. msgctxt "@item:inlistbox"
  1036. msgid "PNG Image"
  1037. msgstr "Immagine PNG"
  1038. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:26
  1039. msgctxt "@item:inlistbox"
  1040. msgid "BMP Image"
  1041. msgstr "Immagine BMP"
  1042. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/__init__.py:30
  1043. msgctxt "@item:inlistbox"
  1044. msgid "GIF Image"
  1045. msgstr "Immagine GIF"
  1046. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1047. msgctxt "@action"
  1048. msgid "Level build plate"
  1049. msgstr "Livella piano di stampa"
  1050. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1051. msgctxt "@action"
  1052. msgid "Select upgrades"
  1053. msgstr "Seleziona aggiornamenti"
  1054. #: /home/clamboo/Desktop/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1055. msgctxt "@error:not supported"
  1056. msgid "GCodeGzWriter does not support text mode."
  1057. msgstr "GCodeGzWriter non supporta la modalità di testo."
  1058. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1059. msgctxt "@info"
  1060. msgid "Could not access update information."
  1061. msgstr "Non è possibile accedere alle informazioni di aggiornamento."
  1062. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1063. #, python-brace-format
  1064. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1065. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1066. msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}."
  1067. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1068. #, python-format
  1069. msgctxt "@info:title The %s gets replaced with the printer name."
  1070. msgid "New %s stable firmware available"
  1071. msgstr "Nuovo firmware %s stabile disponibile"
  1072. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1073. msgctxt "@action:button"
  1074. msgid "How to update"
  1075. msgstr "Modalità di aggiornamento"
  1076. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  1077. msgctxt "@text"
  1078. msgid "Unable to read example data file."
  1079. msgstr "Impossibile leggere il file di dati di esempio."
  1080. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:19
  1081. msgctxt "@info:generic"
  1082. msgid "You need to quit and restart {} before changes have effect."
  1083. msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}."
  1084. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:91
  1085. msgctxt "@info:generic"
  1086. msgid "Syncing..."
  1087. msgstr "Sincronizzazione in corso..."
  1088. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:95
  1089. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1090. msgctxt "@info:title"
  1091. msgid "Changes detected from your Ultimaker account"
  1092. msgstr "Modifiche rilevate dal tuo account Ultimaker"
  1093. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1094. msgctxt "@info:generic"
  1095. msgid "Do you want to sync material and software packages with your account?"
  1096. msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?"
  1097. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  1098. msgctxt "@action:button"
  1099. msgid "Sync"
  1100. msgstr "Sincronizza"
  1101. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:41
  1102. msgctxt "@button"
  1103. msgid "Decline and remove from account"
  1104. msgstr "Rifiuta e rimuovi dall'account"
  1105. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  1106. msgctxt "@info:generic"
  1107. msgid "{} plugins failed to download"
  1108. msgstr "Impossibile scaricare i plugin {}"
  1109. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1110. msgctxt "@button"
  1111. msgid "Decline"
  1112. msgstr "Non accetto"
  1113. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1114. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1115. msgctxt "@button"
  1116. msgid "Agree"
  1117. msgstr "Accetta"
  1118. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1119. msgctxt "@title:window"
  1120. msgid "Plugin License Agreement"
  1121. msgstr "Accordo di licenza plugin"
  1122. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1123. msgctxt "@error:not supported"
  1124. msgid "GCodeWriter does not support non-text mode."
  1125. msgstr "GCodeWriter non supporta la modalità non di testo."
  1126. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  1127. #: /home/clamboo/Desktop/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1128. msgctxt "@warning:status"
  1129. msgid "Please prepare G-code before exporting."
  1130. msgstr "Preparare il codice G prima dell’esportazione."
  1131. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:129
  1132. msgctxt "@info:status"
  1133. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1134. msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata."
  1135. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:130
  1136. msgctxt "@info:title"
  1137. msgid "Simulation View"
  1138. msgstr "Vista simulazione"
  1139. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:133
  1140. msgctxt "@info:status"
  1141. msgid "Nothing is shown because you need to slice first."
  1142. msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing."
  1143. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:134
  1144. msgctxt "@info:title"
  1145. msgid "No layers to show"
  1146. msgstr "Nessun layer da visualizzare"
  1147. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationView.py:136
  1148. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:74
  1149. msgctxt "@info:option_text"
  1150. msgid "Do not show this message again"
  1151. msgstr "Non mostrare nuovamente questo messaggio"
  1152. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/__init__.py:15
  1153. msgctxt "@item:inlistbox"
  1154. msgid "Layer view"
  1155. msgstr "Visualizzazione strato"
  1156. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1157. msgctxt "@action:button Preceded by 'Ready to'."
  1158. msgid "Print over network"
  1159. msgstr "Stampa sulla rete"
  1160. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1161. msgctxt "@properties:tooltip"
  1162. msgid "Print over network"
  1163. msgstr "Stampa sulla rete"
  1164. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1165. msgctxt "@info:status"
  1166. msgid "Connected over the network"
  1167. msgstr "Collegato alla rete"
  1168. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1169. msgctxt "@info:status"
  1170. msgid "tomorrow"
  1171. msgstr "domani"
  1172. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1173. msgctxt "@info:status"
  1174. msgid "today"
  1175. msgstr "oggi"
  1176. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1177. msgctxt "@action"
  1178. msgid "Connect via Network"
  1179. msgstr "Collega tramite rete"
  1180. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1181. msgctxt "@info:status"
  1182. msgid "Please wait until the current job has been sent."
  1183. msgstr "Attendere che sia stato inviato il processo corrente."
  1184. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1185. msgctxt "@info:title"
  1186. msgid "Print error"
  1187. msgstr "Errore di stampa"
  1188. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1189. msgctxt "@info:status"
  1190. msgid "Print job was successfully sent to the printer."
  1191. msgstr "Processo di stampa inviato con successo alla stampante."
  1192. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1193. msgctxt "@info:title"
  1194. msgid "Data Sent"
  1195. msgstr "Dati inviati"
  1196. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1197. msgctxt "@info:status"
  1198. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1199. msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente."
  1200. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1201. msgctxt "@info:title"
  1202. msgid "Update your printer"
  1203. msgstr "Aggiornare la stampante"
  1204. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1205. msgctxt "@info:status"
  1206. msgid "Print job queue is full. The printer can't accept a new job."
  1207. msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo."
  1208. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1209. msgctxt "@info:title"
  1210. msgid "Queue Full"
  1211. msgstr "Coda piena"
  1212. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1213. msgctxt "@info:status"
  1214. msgid "Sending Print Job"
  1215. msgstr "Invio di un processo di stampa"
  1216. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1217. msgctxt "@info:status"
  1218. msgid "Uploading print job to printer."
  1219. msgstr "Caricamento del processo di stampa sulla stampante."
  1220. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1221. #, python-brace-format
  1222. msgctxt "@info:status"
  1223. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1224. msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}."
  1225. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1226. msgctxt "@info:title"
  1227. msgid "Sending materials to printer"
  1228. msgstr "Invio dei materiali alla stampante"
  1229. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1230. msgctxt "@info:text"
  1231. msgid "Could not upload the data to the printer."
  1232. msgstr "Impossibile caricare i dati sulla stampante."
  1233. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1234. msgctxt "@info:title"
  1235. msgid "Network error"
  1236. msgstr "Errore di rete"
  1237. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1238. #, python-brace-format
  1239. msgctxt "@info:status"
  1240. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  1241. msgstr "Tentativo di connessione a {0} in corso, che non è l'host di un gruppo. È possibile visitare la pagina web per configurarla come host del gruppo."
  1242. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1243. msgctxt "@info:title"
  1244. msgid "Not a group host"
  1245. msgstr "Non host del gruppo"
  1246. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  1247. msgctxt "@action"
  1248. msgid "Configure group"
  1249. msgstr "Configurare il gruppo"
  1250. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  1251. #, python-brace-format
  1252. msgctxt "@info:status"
  1253. msgid ""
  1254. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  1255. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  1256. msgstr ""
  1257. "Impossibile connettere la stampante <b>{printer_name}</b> tramite cloud.\n"
  1258. " Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory"
  1259. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  1260. msgctxt "@info:title"
  1261. msgid "Are you ready for cloud printing?"
  1262. msgstr "Pronto per la stampa tramite cloud?"
  1263. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  1264. msgctxt "@action"
  1265. msgid "Get started"
  1266. msgstr "Per iniziare"
  1267. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  1268. msgctxt "@action"
  1269. msgid "Learn more"
  1270. msgstr "Ulteriori informazioni"
  1271. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1272. msgctxt "@action:button"
  1273. msgid "Print via cloud"
  1274. msgstr "Stampa tramite cloud"
  1275. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  1276. msgctxt "@properties:tooltip"
  1277. msgid "Print via cloud"
  1278. msgstr "Stampa tramite cloud"
  1279. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  1280. msgctxt "@info:status"
  1281. msgid "Connected via cloud"
  1282. msgstr "Collegato tramite cloud"
  1283. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  1284. msgctxt "@action:button"
  1285. msgid "Monitor print"
  1286. msgstr "Monitora stampa"
  1287. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  1288. msgctxt "@action:tooltip"
  1289. msgid "Track the print in Ultimaker Digital Factory"
  1290. msgstr "Traccia la stampa in Ultimaker Digital Factory"
  1291. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  1292. #, python-brace-format
  1293. msgctxt "@error:send"
  1294. msgid "Unknown error code when uploading print job: {0}"
  1295. msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}"
  1296. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  1297. msgctxt "info:status"
  1298. msgid "New printer detected from your Ultimaker account"
  1299. msgid_plural "New printers detected from your Ultimaker account"
  1300. msgstr[0] "Nuova stampante rilevata dall'account Ultimaker"
  1301. msgstr[1] "Nuove stampanti rilevate dall'account Ultimaker"
  1302. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  1303. #, python-brace-format
  1304. msgctxt "info:status Filled in with printer name and printer model."
  1305. msgid "Adding printer {name} ({model}) from your account"
  1306. msgstr "Aggiunta della stampante {name} ({model}) dall'account"
  1307. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  1308. #, python-brace-format
  1309. msgctxt "info:{0} gets replaced by a number of printers"
  1310. msgid "... and {0} other"
  1311. msgid_plural "... and {0} others"
  1312. msgstr[0] "... e {0} altra"
  1313. msgstr[1] "... e altre {0}"
  1314. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  1315. msgctxt "info:status"
  1316. msgid "Printers added from Digital Factory:"
  1317. msgstr "Stampanti aggiunte da Digital Factory:"
  1318. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  1319. msgctxt "info:status"
  1320. msgid "A cloud connection is not available for a printer"
  1321. msgid_plural "A cloud connection is not available for some printers"
  1322. msgstr[0] "Non è disponibile una connessione cloud per una stampante"
  1323. msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti"
  1324. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1325. msgctxt "info:status"
  1326. msgid "This printer is not linked to the Digital Factory:"
  1327. msgid_plural "These printers are not linked to the Digital Factory:"
  1328. msgstr[0] "Questa stampante non è collegata a Digital Factory:"
  1329. msgstr[1] "Queste stampanti non sono collegate a Digital Factory:"
  1330. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  1331. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  1332. msgctxt "info:name"
  1333. msgid "Ultimaker Digital Factory"
  1334. msgstr "Ultimaker Digital Factory"
  1335. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  1336. #, python-brace-format
  1337. msgctxt "info:status"
  1338. msgid "To establish a connection, please visit the {website_link}"
  1339. msgstr "Per stabilire una connessione, visitare {website_link}"
  1340. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  1341. msgctxt "@action:button"
  1342. msgid "Keep printer configurations"
  1343. msgstr "Mantenere le configurazioni delle stampanti"
  1344. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  1345. msgctxt "@action:button"
  1346. msgid "Remove printers"
  1347. msgstr "Rimuovere le stampanti"
  1348. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  1349. #, python-brace-format
  1350. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1351. msgid "{printer_name} will be removed until the next account sync."
  1352. msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account."
  1353. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  1354. #, python-brace-format
  1355. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1356. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1357. msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}"
  1358. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  1359. #, python-brace-format
  1360. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1361. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1362. msgstr "Rimuovere temporaneamente {printer_name}?"
  1363. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  1364. msgctxt "@title:window"
  1365. msgid "Remove printers?"
  1366. msgstr "Rimuovere le stampanti?"
  1367. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  1368. #, python-brace-format
  1369. msgctxt "@label"
  1370. msgid ""
  1371. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1372. "Are you sure you want to continue?"
  1373. msgid_plural ""
  1374. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1375. "Are you sure you want to continue?"
  1376. msgstr[0] ""
  1377. "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\n"
  1378. "Continuare?"
  1379. msgstr[1] ""
  1380. "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n"
  1381. "Continuare?"
  1382. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  1383. msgctxt "@label"
  1384. msgid ""
  1385. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1386. "Are you sure you want to continue?"
  1387. msgstr ""
  1388. "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n"
  1389. "Continuare?"
  1390. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:15
  1391. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1392. msgid "Open Compressed Triangle Mesh"
  1393. msgstr "Open Compressed Triangle Mesh"
  1394. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:19
  1395. msgctxt "@item:inlistbox"
  1396. msgid "COLLADA Digital Asset Exchange"
  1397. msgstr "COLLADA Digital Asset Exchange"
  1398. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:23
  1399. msgctxt "@item:inlistbox"
  1400. msgid "glTF Binary"
  1401. msgstr "glTF Binary"
  1402. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:27
  1403. msgctxt "@item:inlistbox"
  1404. msgid "glTF Embedded JSON"
  1405. msgstr "glTF Embedded JSON"
  1406. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:36
  1407. msgctxt "@item:inlistbox"
  1408. msgid "Stanford Triangle Format"
  1409. msgstr "Stanford Triangle Format"
  1410. #: /home/clamboo/Desktop/Cura/plugins/TrimeshReader/__init__.py:40
  1411. msgctxt "@item:inlistbox"
  1412. msgid "Compressed COLLADA Digital Asset Exchange"
  1413. msgstr "Compressed COLLADA Digital Asset Exchange"
  1414. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:71
  1415. msgctxt "@info:status"
  1416. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1417. msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura."
  1418. #: /home/clamboo/Desktop/Cura/plugins/SolidView/SolidView.py:73
  1419. msgctxt "@info:title"
  1420. msgid "Model Errors"
  1421. msgstr "Errori modello"
  1422. #: /home/clamboo/Desktop/Cura/plugins/SolidView/__init__.py:12
  1423. msgctxt "@item:inmenu"
  1424. msgid "Solid view"
  1425. msgstr "Visualizzazione compatta"
  1426. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  1427. msgctxt "@error:zip"
  1428. msgid "Error writing 3mf file."
  1429. msgstr "Errore scrittura file 3MF."
  1430. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1431. msgctxt "@error:zip"
  1432. msgid "3MF Writer plug-in is corrupt."
  1433. msgstr "Plug-in Writer 3MF danneggiato."
  1434. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  1435. msgctxt "@error"
  1436. msgid "There is no workspace yet to write. Please add a printer first."
  1437. msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante."
  1438. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  1439. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  1440. msgctxt "@error:zip"
  1441. msgid "No permission to write the workspace here."
  1442. msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui."
  1443. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  1444. msgctxt "@error:zip"
  1445. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1446. msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file."
  1447. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:26
  1448. msgctxt "@item:inlistbox"
  1449. msgid "3MF file"
  1450. msgstr "File 3MF"
  1451. #: /home/clamboo/Desktop/Cura/plugins/3MFWriter/__init__.py:34
  1452. msgctxt "@item:inlistbox"
  1453. msgid "Cura Project 3MF file"
  1454. msgstr "File 3MF Progetto Cura"
  1455. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/__init__.py:14
  1456. msgctxt "@item:inmenu"
  1457. msgid "Monitor"
  1458. msgstr "Controlla"
  1459. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:31
  1460. msgctxt "@info:title"
  1461. msgid "3D Model Assistant"
  1462. msgstr "Assistente modello 3D"
  1463. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.py:97
  1464. #, python-brace-format
  1465. msgctxt "@info:status"
  1466. msgid ""
  1467. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1468. "<p>{model_names}</p>\n"
  1469. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1470. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1471. msgstr ""
  1472. "<p>La stampa di uno o più modelli 3D può non avvenire in modo ottimale a causa della dimensioni modello e della configurazione materiale:</p>\n"
  1473. "<p>{model_names}</p>\n"
  1474. "<p>Scopri come garantire la migliore qualità ed affidabilità di stampa.</p>\n"
  1475. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Visualizza la guida alla qualità di stampa</a></p>"
  1476. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1477. msgctxt "@label"
  1478. msgid "Mesh Type"
  1479. msgstr "Tipo di maglia"
  1480. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1481. msgctxt "@label"
  1482. msgid "Normal model"
  1483. msgstr "Modello normale"
  1484. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1485. msgctxt "@label"
  1486. msgid "Print as support"
  1487. msgstr "Stampa come supporto"
  1488. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1489. msgctxt "@label"
  1490. msgid "Modify settings for overlaps"
  1491. msgstr "Modificare le impostazioni per le sovrapposizioni"
  1492. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1493. msgctxt "@label"
  1494. msgid "Don't support overlaps"
  1495. msgstr "Non supportano le sovrapposizioni"
  1496. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:151
  1497. msgctxt "@item:inlistbox"
  1498. msgid "Infill mesh only"
  1499. msgstr "Solo maglia di riempimento"
  1500. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:152
  1501. msgctxt "@item:inlistbox"
  1502. msgid "Cutting mesh"
  1503. msgstr "Ritaglio mesh"
  1504. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:382
  1505. msgctxt "@action:button"
  1506. msgid "Select settings"
  1507. msgstr "Seleziona impostazioni"
  1508. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1509. msgctxt "@title:window"
  1510. msgid "Select Settings to Customize for this model"
  1511. msgstr "Seleziona impostazioni di personalizzazione per questo modello"
  1512. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1513. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:96
  1514. msgctxt "@label:textbox"
  1515. msgid "Filter..."
  1516. msgstr "Filtro..."
  1517. #: /home/clamboo/Desktop/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1518. msgctxt "@label:checkbox"
  1519. msgid "Show all"
  1520. msgstr "Mostra tutto"
  1521. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1522. msgctxt "@title:window"
  1523. msgid "Cura Backups"
  1524. msgstr "Backup Cura"
  1525. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1526. msgctxt "@backuplist:label"
  1527. msgid "Cura Version"
  1528. msgstr "Versione Cura"
  1529. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1530. msgctxt "@backuplist:label"
  1531. msgid "Machines"
  1532. msgstr "Macchine"
  1533. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1534. msgctxt "@backuplist:label"
  1535. msgid "Materials"
  1536. msgstr "Materiali"
  1537. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1538. msgctxt "@backuplist:label"
  1539. msgid "Profiles"
  1540. msgstr "Profili"
  1541. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1542. msgctxt "@backuplist:label"
  1543. msgid "Plugins"
  1544. msgstr "Plugin"
  1545. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1546. msgctxt "@button"
  1547. msgid "Want more?"
  1548. msgstr "Ulteriori informazioni?"
  1549. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1550. msgctxt "@button"
  1551. msgid "Backup Now"
  1552. msgstr "Esegui backup adesso"
  1553. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1554. msgctxt "@checkbox:description"
  1555. msgid "Auto Backup"
  1556. msgstr "Backup automatico"
  1557. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1558. msgctxt "@checkbox:description"
  1559. msgid "Automatically create a backup each day that Cura is started."
  1560. msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura."
  1561. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1562. msgctxt "@button"
  1563. msgid "Restore"
  1564. msgstr "Ripristina"
  1565. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1566. msgctxt "@dialog:title"
  1567. msgid "Delete Backup"
  1568. msgstr "Cancella backup"
  1569. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:101
  1570. msgctxt "@dialog:info"
  1571. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1572. msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata."
  1573. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1574. msgctxt "@dialog:title"
  1575. msgid "Restore Backup"
  1576. msgstr "Ripristina backup"
  1577. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:110
  1578. msgctxt "@dialog:info"
  1579. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1580. msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?"
  1581. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1582. msgctxt "@description"
  1583. msgid "Backup and synchronize your Cura settings."
  1584. msgstr "Backup e sincronizzazione delle impostazioni Cura."
  1585. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1586. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1587. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  1588. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:171
  1589. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:53
  1590. msgctxt "@button"
  1591. msgid "Sign in"
  1592. msgstr "Accedi"
  1593. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1594. msgctxt "@title"
  1595. msgid "My Backups"
  1596. msgstr "I miei backup"
  1597. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1598. msgctxt "@empty_state"
  1599. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1600. msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno."
  1601. #: /home/clamboo/Desktop/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1602. msgctxt "@backup_limit_info"
  1603. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1604. msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti."
  1605. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1606. msgctxt "@title:label"
  1607. msgid "Printer Settings"
  1608. msgstr "Impostazioni della stampante"
  1609. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1610. msgctxt "@label"
  1611. msgid "X (Width)"
  1612. msgstr "X (Larghezza)"
  1613. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1614. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1615. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1616. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1617. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1618. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1619. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1620. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1621. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1622. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1623. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1624. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1625. msgctxt "@label"
  1626. msgid "mm"
  1627. msgstr "mm"
  1628. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1629. msgctxt "@label"
  1630. msgid "Y (Depth)"
  1631. msgstr "Y (Profondità)"
  1632. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1633. msgctxt "@label"
  1634. msgid "Z (Height)"
  1635. msgstr "Z (Altezza)"
  1636. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1637. msgctxt "@label"
  1638. msgid "Build plate shape"
  1639. msgstr "Forma del piano di stampa"
  1640. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1641. msgctxt "@label"
  1642. msgid "Origin at center"
  1643. msgstr "Origine al centro"
  1644. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1645. msgctxt "@label"
  1646. msgid "Heated bed"
  1647. msgstr "Piano riscaldato"
  1648. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1649. msgctxt "@label"
  1650. msgid "Heated build volume"
  1651. msgstr "Volume di stampa riscaldato"
  1652. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1653. msgctxt "@label"
  1654. msgid "G-code flavor"
  1655. msgstr "Versione codice G"
  1656. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1657. msgctxt "@title:label"
  1658. msgid "Printhead Settings"
  1659. msgstr "Impostazioni della testina di stampa"
  1660. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1661. msgctxt "@label"
  1662. msgid "X min"
  1663. msgstr "X min"
  1664. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1665. msgctxt "@label"
  1666. msgid "Y min"
  1667. msgstr "Y min"
  1668. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1669. msgctxt "@label"
  1670. msgid "X max"
  1671. msgstr "X max"
  1672. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1673. msgctxt "@label"
  1674. msgid "Y max"
  1675. msgstr "Y max"
  1676. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1677. msgctxt "@label"
  1678. msgid "Gantry Height"
  1679. msgstr "Altezza gantry"
  1680. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1681. msgctxt "@label"
  1682. msgid "Number of Extruders"
  1683. msgstr "Numero di estrusori"
  1684. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  1685. msgctxt "@label"
  1686. msgid "Apply Extruder offsets to GCode"
  1687. msgstr "Applica offset estrusore a gcode"
  1688. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  1689. msgctxt "@title:label"
  1690. msgid "Start G-code"
  1691. msgstr "Codice G avvio"
  1692. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  1693. msgctxt "@title:label"
  1694. msgid "End G-code"
  1695. msgstr "Codice G fine"
  1696. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1697. msgctxt "@title:label"
  1698. msgid "Nozzle Settings"
  1699. msgstr "Impostazioni ugello"
  1700. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1701. msgctxt "@label"
  1702. msgid "Nozzle size"
  1703. msgstr "Dimensione ugello"
  1704. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1705. msgctxt "@label"
  1706. msgid "Compatible material diameter"
  1707. msgstr "Diametro del materiale compatibile"
  1708. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1709. msgctxt "@label"
  1710. msgid "Nozzle offset X"
  1711. msgstr "Scostamento X ugello"
  1712. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1713. msgctxt "@label"
  1714. msgid "Nozzle offset Y"
  1715. msgstr "Scostamento Y ugello"
  1716. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1717. msgctxt "@label"
  1718. msgid "Cooling Fan Number"
  1719. msgstr "Numero ventola di raffreddamento"
  1720. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  1721. msgctxt "@title:label"
  1722. msgid "Extruder Start G-code"
  1723. msgstr "Codice G avvio estrusore"
  1724. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  1725. msgctxt "@title:label"
  1726. msgid "Extruder End G-code"
  1727. msgstr "Codice G fine estrusore"
  1728. #: /home/clamboo/Desktop/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1729. msgctxt "@title:tab"
  1730. msgid "Printer"
  1731. msgstr "Stampante"
  1732. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1733. msgctxt "@title"
  1734. msgid "Update Firmware"
  1735. msgstr "Aggiornamento firmware"
  1736. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1737. msgctxt "@label"
  1738. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1739. msgstr "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante."
  1740. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1741. msgctxt "@label"
  1742. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1743. msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni."
  1744. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1745. msgctxt "@action:button"
  1746. msgid "Automatically upgrade Firmware"
  1747. msgstr "Aggiorna automaticamente il firmware"
  1748. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1749. msgctxt "@action:button"
  1750. msgid "Upload custom Firmware"
  1751. msgstr "Carica il firmware personalizzato"
  1752. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1753. msgctxt "@label"
  1754. msgid "Firmware can not be updated because there is no connection with the printer."
  1755. msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante."
  1756. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1757. msgctxt "@label"
  1758. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1759. msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware."
  1760. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1761. msgctxt "@title:window"
  1762. msgid "Select custom firmware"
  1763. msgstr "Seleziona il firmware personalizzato"
  1764. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1765. msgctxt "@title:window"
  1766. msgid "Firmware Update"
  1767. msgstr "Aggiornamento del firmware"
  1768. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1769. msgctxt "@label"
  1770. msgid "Updating firmware."
  1771. msgstr "Aggiornamento firmware."
  1772. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1773. msgctxt "@label"
  1774. msgid "Firmware update completed."
  1775. msgstr "Aggiornamento del firmware completato."
  1776. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1777. msgctxt "@label"
  1778. msgid "Firmware update failed due to an unknown error."
  1779. msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto."
  1780. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1781. msgctxt "@label"
  1782. msgid "Firmware update failed due to an communication error."
  1783. msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione."
  1784. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1785. msgctxt "@label"
  1786. msgid "Firmware update failed due to an input/output error."
  1787. msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output."
  1788. #: /home/clamboo/Desktop/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1789. msgctxt "@label"
  1790. msgid "Firmware update failed due to missing firmware."
  1791. msgstr "Aggiornamento firmware non riuscito per firmware mancante."
  1792. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1793. msgctxt "@title:window"
  1794. msgid "Open Project"
  1795. msgstr "Apri progetto"
  1796. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1797. msgctxt "@action:ComboBox Update/override existing profile"
  1798. msgid "Update existing"
  1799. msgstr "Aggiorna esistente"
  1800. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  1801. msgctxt "@action:ComboBox Save settings in a new profile"
  1802. msgid "Create new"
  1803. msgstr "Crea nuovo"
  1804. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  1805. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:70
  1806. msgctxt "@action:title"
  1807. msgid "Summary - Cura Project"
  1808. msgstr "Riepilogo - Progetto Cura"
  1809. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  1810. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:94
  1811. msgctxt "@action:label"
  1812. msgid "Printer settings"
  1813. msgstr "Impostazioni della stampante"
  1814. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  1815. msgctxt "@info:tooltip"
  1816. msgid "How should the conflict in the machine be resolved?"
  1817. msgstr "Come può essere risolto il conflitto nella macchina?"
  1818. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  1819. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:103
  1820. msgctxt "@action:label"
  1821. msgid "Type"
  1822. msgstr "Tipo"
  1823. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  1824. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1825. msgctxt "@action:label"
  1826. msgid "Printer Group"
  1827. msgstr "Gruppo stampanti"
  1828. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  1829. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:219
  1830. msgctxt "@action:label"
  1831. msgid "Profile settings"
  1832. msgstr "Impostazioni profilo"
  1833. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  1834. msgctxt "@info:tooltip"
  1835. msgid "How should the conflict in the profile be resolved?"
  1836. msgstr "Come può essere risolto il conflitto nel profilo?"
  1837. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  1838. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  1839. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:118
  1840. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:243
  1841. msgctxt "@action:label"
  1842. msgid "Name"
  1843. msgstr "Nome"
  1844. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  1845. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:260
  1846. msgctxt "@action:label"
  1847. msgid "Intent"
  1848. msgstr "Intent"
  1849. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  1850. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:227
  1851. msgctxt "@action:label"
  1852. msgid "Not in profile"
  1853. msgstr "Non nel profilo"
  1854. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  1855. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:232
  1856. msgctxt "@action:label"
  1857. msgid "%1 override"
  1858. msgid_plural "%1 overrides"
  1859. msgstr[0] "%1 override"
  1860. msgstr[1] "%1 override"
  1861. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  1862. msgctxt "@action:label"
  1863. msgid "Derivative from"
  1864. msgstr "Derivato da"
  1865. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  1866. msgctxt "@action:label"
  1867. msgid "%1, %2 override"
  1868. msgid_plural "%1, %2 overrides"
  1869. msgstr[0] "%1, %2 override"
  1870. msgstr[1] "%1, %2 override"
  1871. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  1872. msgctxt "@action:label"
  1873. msgid "Material settings"
  1874. msgstr "Impostazioni materiale"
  1875. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  1876. msgctxt "@info:tooltip"
  1877. msgid "How should the conflict in the material be resolved?"
  1878. msgstr "Come può essere risolto il conflitto nel materiale?"
  1879. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  1880. msgctxt "@action:label"
  1881. msgid "Setting visibility"
  1882. msgstr "Impostazione visibilità"
  1883. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  1884. msgctxt "@action:label"
  1885. msgid "Mode"
  1886. msgstr "Modalità"
  1887. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  1888. msgctxt "@action:label"
  1889. msgid "Visible settings:"
  1890. msgstr "Impostazioni visibili:"
  1891. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  1892. msgctxt "@action:label"
  1893. msgid "%1 out of %2"
  1894. msgstr "%1 su %2"
  1895. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  1896. msgctxt "@action:warning"
  1897. msgid "Loading a project will clear all models on the build plate."
  1898. msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa."
  1899. #: /home/clamboo/Desktop/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  1900. msgctxt "@action:button"
  1901. msgid "Open"
  1902. msgstr "Apri"
  1903. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:20
  1904. msgctxt "@title:window"
  1905. msgid "Post Processing Plugin"
  1906. msgstr "Plug-in di post-elaborazione"
  1907. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:59
  1908. msgctxt "@label"
  1909. msgid "Post Processing Scripts"
  1910. msgstr "Script di post-elaborazione"
  1911. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:235
  1912. msgctxt "@action"
  1913. msgid "Add a script"
  1914. msgstr "Aggiungi uno script"
  1915. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:282
  1916. msgctxt "@label"
  1917. msgid "Settings"
  1918. msgstr "Impostazioni"
  1919. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:502
  1920. msgctxt "@info:tooltip"
  1921. msgid "Change active post-processing scripts."
  1922. msgstr "Modificare gli script di post-elaborazione attivi."
  1923. #: /home/clamboo/Desktop/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:506
  1924. msgctxt "@info:tooltip"
  1925. msgid "The following script is active:"
  1926. msgid_plural "The following scripts are active:"
  1927. msgstr[0] "È attivo il seguente script:"
  1928. msgstr[1] "Sono attivi i seguenti script:"
  1929. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:19
  1930. msgctxt "@title:window"
  1931. msgid "Convert Image..."
  1932. msgstr "Converti immagine..."
  1933. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:33
  1934. msgctxt "@info:tooltip"
  1935. msgid "The maximum distance of each pixel from \"Base.\""
  1936. msgstr "La distanza massima di ciascun pixel da \"Base.\""
  1937. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:38
  1938. msgctxt "@action:label"
  1939. msgid "Height (mm)"
  1940. msgstr "Altezza (mm)"
  1941. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:56
  1942. msgctxt "@info:tooltip"
  1943. msgid "The base height from the build plate in millimeters."
  1944. msgstr "L'altezza della base dal piano di stampa in millimetri."
  1945. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:61
  1946. msgctxt "@action:label"
  1947. msgid "Base (mm)"
  1948. msgstr "Base (mm)"
  1949. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:79
  1950. msgctxt "@info:tooltip"
  1951. msgid "The width in millimeters on the build plate."
  1952. msgstr "La larghezza in millimetri sul piano di stampa."
  1953. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:84
  1954. msgctxt "@action:label"
  1955. msgid "Width (mm)"
  1956. msgstr "Larghezza (mm)"
  1957. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:103
  1958. msgctxt "@info:tooltip"
  1959. msgid "The depth in millimeters on the build plate"
  1960. msgstr "La profondità in millimetri sul piano di stampa"
  1961. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:108
  1962. msgctxt "@action:label"
  1963. msgid "Depth (mm)"
  1964. msgstr "Profondità (mm)"
  1965. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:126
  1966. msgctxt "@info:tooltip"
  1967. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1968. msgstr "Per le litofanie, i pixel scuri devono corrispondere alle posizioni più spesse per bloccare maggiormente il passaggio della luce. Per le mappe con altezze superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più spesse."
  1969. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1970. msgctxt "@item:inlistbox"
  1971. msgid "Darker is higher"
  1972. msgstr "Più scuro è più alto"
  1973. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:139
  1974. msgctxt "@item:inlistbox"
  1975. msgid "Lighter is higher"
  1976. msgstr "Più chiaro è più alto"
  1977. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:149
  1978. msgctxt "@info:tooltip"
  1979. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1980. msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze in modo lineare."
  1981. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161
  1982. msgctxt "@item:inlistbox"
  1983. msgid "Linear"
  1984. msgstr "Lineare"
  1985. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:161
  1986. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:172
  1987. msgctxt "@item:inlistbox"
  1988. msgid "Translucency"
  1989. msgstr "Traslucenza"
  1990. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:171
  1991. msgctxt "@info:tooltip"
  1992. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1993. msgstr "Percentuale di luce che penetra una stampa dello spessore di 1 millimetro. Se questo valore si riduce, il contrasto nelle aree scure dell'immagine aumenta, mentre il contrasto nelle aree chiare dell'immagine diminuisce."
  1994. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:177
  1995. msgctxt "@action:label"
  1996. msgid "1mm Transmittance (%)"
  1997. msgstr "Trasmittanza di 1 mm (%)"
  1998. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:195
  1999. msgctxt "@info:tooltip"
  2000. msgid "The amount of smoothing to apply to the image."
  2001. msgstr "La quantità di smoothing (levigatura) da applicare all'immagine."
  2002. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:200
  2003. msgctxt "@action:label"
  2004. msgid "Smoothing"
  2005. msgstr "Smoothing"
  2006. #: /home/clamboo/Desktop/Cura/plugins/ImageReader/ConfigUI.qml:227
  2007. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2008. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  2009. msgctxt "@action:button"
  2010. msgid "OK"
  2011. msgstr "OK"
  2012. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2013. msgctxt "@label"
  2014. msgid "Please select any upgrades made to this Ultimaker Original"
  2015. msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original"
  2016. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2017. msgctxt "@label"
  2018. msgid "Heated Build Plate (official kit or self-built)"
  2019. msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)"
  2020. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2021. msgctxt "@title"
  2022. msgid "Build Plate Leveling"
  2023. msgstr "Livellamento del piano di stampa"
  2024. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2025. msgctxt "@label"
  2026. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  2027. msgstr "Per assicurarsi stampe di alta qualità, è ora possibile regolare il piano di stampa. Quando si fa clic su 'Spostamento alla posizione successiva' l'ugello si sposterà in diverse posizioni che è possibile regolare."
  2028. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2029. msgctxt "@label"
  2030. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  2031. msgstr "Per ciascuna posizione: inserire un pezzo di carta sotto l'ugello e regolare la stampa dell'altezza del piano di stampa. L'altezza del piano di stampa è corretta quando la carta sfiora la punta dell'ugello."
  2032. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2033. msgctxt "@action:button"
  2034. msgid "Start Build Plate Leveling"
  2035. msgstr "Avvio livellamento del piano di stampa"
  2036. #: /home/clamboo/Desktop/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2037. msgctxt "@action:button"
  2038. msgid "Move to Next Position"
  2039. msgstr "Spostamento alla posizione successiva"
  2040. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2041. msgctxt "@title:window"
  2042. msgid "More information on anonymous data collection"
  2043. msgstr "Maggiori informazioni sulla raccolta di dati anonimi"
  2044. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2045. msgctxt "@text:window"
  2046. msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  2047. msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati condivisi:"
  2048. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2049. msgctxt "@text:window"
  2050. msgid "I don't want to send anonymous data"
  2051. msgstr "Non desidero inviare dati anonimi"
  2052. #: /home/clamboo/Desktop/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2053. msgctxt "@text:window"
  2054. msgid "Allow sending anonymous data"
  2055. msgstr "Consenti l'invio di dati anonimi"
  2056. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2057. msgctxt "@title"
  2058. msgid "Marketplace"
  2059. msgstr "Mercato"
  2060. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2061. msgctxt "@info"
  2062. msgid "You will need to restart Cura before changes in packages have effect."
  2063. msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti."
  2064. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2065. msgctxt "@info:button, %1 is the application name"
  2066. msgid "Quit %1"
  2067. msgstr "Chiudere %1"
  2068. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2069. msgctxt "@action:button"
  2070. msgid "Install"
  2071. msgstr "Installazione"
  2072. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2073. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2074. msgctxt "@action:button"
  2075. msgid "Installed"
  2076. msgstr "Installa"
  2077. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2078. msgctxt "@label"
  2079. msgid "Premium"
  2080. msgstr "Premium"
  2081. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2082. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2083. msgctxt "@info:tooltip"
  2084. msgid "Go to Web Marketplace"
  2085. msgstr "Vai al Marketplace web"
  2086. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2087. msgctxt "@label"
  2088. msgid "Search materials"
  2089. msgstr "Cerca materiali"
  2090. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  2091. msgctxt "@label"
  2092. msgid "Compatibility"
  2093. msgstr "Compatibilità"
  2094. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  2095. msgctxt "@label:table_header"
  2096. msgid "Machine"
  2097. msgstr "Macchina"
  2098. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  2099. msgctxt "@label:table_header"
  2100. msgid "Build Plate"
  2101. msgstr "Piano di stampa"
  2102. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  2103. msgctxt "@label:table_header"
  2104. msgid "Support"
  2105. msgstr "Supporto"
  2106. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  2107. msgctxt "@label:table_header"
  2108. msgid "Quality"
  2109. msgstr "Qualità"
  2110. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  2111. msgctxt "@action:label"
  2112. msgid "Technical Data Sheet"
  2113. msgstr "Scheda dati tecnici"
  2114. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2115. msgctxt "@action:label"
  2116. msgid "Safety Data Sheet"
  2117. msgstr "Scheda dati di sicurezza"
  2118. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2119. msgctxt "@action:label"
  2120. msgid "Printing Guidelines"
  2121. msgstr "Linee guida di stampa"
  2122. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2123. msgctxt "@action:label"
  2124. msgid "Website"
  2125. msgstr "Sito web"
  2126. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2127. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2128. msgid "<a href='%1'>Log in</a> is required to install or update"
  2129. msgstr "<a href='%1'>Log in</a> deve essere installato o aggiornato"
  2130. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2131. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2132. msgid "<a href='%1'>Buy material spools</a>"
  2133. msgstr "<a href='%1'>Acquista bobine di materiale</a>"
  2134. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2135. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2136. msgctxt "@action:button"
  2137. msgid "Update"
  2138. msgstr "Aggiorna"
  2139. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2140. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2141. msgctxt "@action:button"
  2142. msgid "Updating"
  2143. msgstr "Aggiornamento in corso"
  2144. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2145. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2146. msgctxt "@action:button"
  2147. msgid "Updated"
  2148. msgstr "Aggiornamento eseguito"
  2149. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  2150. msgctxt "@action:button"
  2151. msgid "Back"
  2152. msgstr "Indietro"
  2153. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2154. msgctxt "@title:tab"
  2155. msgid "Plugins"
  2156. msgstr "Plugin"
  2157. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2158. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2159. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:475
  2160. msgctxt "@title:tab"
  2161. msgid "Materials"
  2162. msgstr "Materiali"
  2163. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2164. msgctxt "@title:tab"
  2165. msgid "Installed"
  2166. msgstr "Installa"
  2167. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2168. msgctxt "@label"
  2169. msgid "Will install upon restarting"
  2170. msgstr "L'installazione sarà eseguita al riavvio"
  2171. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2172. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2173. msgid "<a href='%1'>Log in</a> is required to update"
  2174. msgstr "<a href='%1'>Log in</a> deve essere aggiornato"
  2175. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2176. msgctxt "@action:button"
  2177. msgid "Downgrade"
  2178. msgstr "Downgrade"
  2179. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2180. msgctxt "@action:button"
  2181. msgid "Uninstall"
  2182. msgstr "Disinstalla"
  2183. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2184. msgctxt "@label"
  2185. msgid "Community Contributions"
  2186. msgstr "Contributi della comunità"
  2187. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2188. msgctxt "@label"
  2189. msgid "Community Plugins"
  2190. msgstr "Plugin della comunità"
  2191. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2192. msgctxt "@label"
  2193. msgid "Generic Materials"
  2194. msgstr "Materiali generici"
  2195. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2196. msgctxt "@info"
  2197. msgid "Fetching packages..."
  2198. msgstr "Recupero dei pacchetti..."
  2199. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2200. msgctxt "@label"
  2201. msgid "Website"
  2202. msgstr "Sito web"
  2203. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2204. msgctxt "@label"
  2205. msgid "Email"
  2206. msgstr "E-mail"
  2207. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2208. msgctxt "@description"
  2209. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2210. msgstr "Accedere per ottenere i plugin e i materiali verificati per Ultimaker Cura Enterprise"
  2211. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2212. msgctxt "@label"
  2213. msgid "Version"
  2214. msgstr "Versione"
  2215. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2216. msgctxt "@label"
  2217. msgid "Last updated"
  2218. msgstr "Ultimo aggiornamento"
  2219. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2220. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2221. msgctxt "@label"
  2222. msgid "Brand"
  2223. msgstr "Marchio"
  2224. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2225. msgctxt "@label"
  2226. msgid "Downloads"
  2227. msgstr "Download"
  2228. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2229. msgctxt "@title:tab"
  2230. msgid "Installed plugins"
  2231. msgstr "Plugin installati"
  2232. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2233. msgctxt "@info"
  2234. msgid "No plugin has been installed."
  2235. msgstr "Non è stato installato alcun plugin."
  2236. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:87
  2237. msgctxt "@title:tab"
  2238. msgid "Installed materials"
  2239. msgstr "Materiali installati"
  2240. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:126
  2241. msgctxt "@info"
  2242. msgid "No material has been installed."
  2243. msgstr "Non è stato installato alcun materiale."
  2244. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:141
  2245. msgctxt "@title:tab"
  2246. msgid "Bundled plugins"
  2247. msgstr "Plugin inseriti nel bundle"
  2248. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:186
  2249. msgctxt "@title:tab"
  2250. msgid "Bundled materials"
  2251. msgstr "Materiali inseriti nel bundle"
  2252. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2253. msgctxt "@info"
  2254. msgid "Could not connect to the Cura Package database. Please check your connection."
  2255. msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione."
  2256. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2257. msgctxt "@label"
  2258. msgid "You need to accept the license to install the package"
  2259. msgstr "È necessario accettare la licenza per installare il pacchetto"
  2260. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2261. msgctxt "@title"
  2262. msgid "Changes from your account"
  2263. msgstr "Modifiche dall'account"
  2264. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2265. msgctxt "@button"
  2266. msgid "Dismiss"
  2267. msgstr "Rimuovi"
  2268. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2269. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2270. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2271. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:186
  2272. msgctxt "@button"
  2273. msgid "Next"
  2274. msgstr "Avanti"
  2275. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2276. msgctxt "@label"
  2277. msgid "The following packages will be added:"
  2278. msgstr "Verranno aggiunti i seguenti pacchetti:"
  2279. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2280. msgctxt "@label"
  2281. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2282. msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:"
  2283. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2284. msgctxt "@title:window"
  2285. msgid "Confirm uninstall"
  2286. msgstr "Conferma disinstalla"
  2287. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2288. msgctxt "@text:window"
  2289. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2290. msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti."
  2291. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2292. msgctxt "@text:window"
  2293. msgid "Materials"
  2294. msgstr "Materiali"
  2295. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2296. msgctxt "@text:window"
  2297. msgid "Profiles"
  2298. msgstr "Profili"
  2299. #: /home/clamboo/Desktop/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2300. msgctxt "@action:button"
  2301. msgid "Confirm"
  2302. msgstr "Conferma"
  2303. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  2304. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2305. msgctxt "@label"
  2306. msgid "Color scheme"
  2307. msgstr "Schema colori"
  2308. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:110
  2309. msgctxt "@label:listbox"
  2310. msgid "Material Color"
  2311. msgstr "Colore materiale"
  2312. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:114
  2313. msgctxt "@label:listbox"
  2314. msgid "Line Type"
  2315. msgstr "Tipo di linea"
  2316. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:118
  2317. msgctxt "@label:listbox"
  2318. msgid "Speed"
  2319. msgstr "Velocità"
  2320. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:122
  2321. msgctxt "@label:listbox"
  2322. msgid "Layer Thickness"
  2323. msgstr "Spessore layer"
  2324. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:126
  2325. msgctxt "@label:listbox"
  2326. msgid "Line Width"
  2327. msgstr "Larghezza della linea"
  2328. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:130
  2329. msgctxt "@label:listbox"
  2330. msgid "Flow"
  2331. msgstr "Flusso"
  2332. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:171
  2333. msgctxt "@label"
  2334. msgid "Compatibility Mode"
  2335. msgstr "Modalità di compatibilità"
  2336. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:245
  2337. msgctxt "@label"
  2338. msgid "Travels"
  2339. msgstr "Spostamenti"
  2340. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:251
  2341. msgctxt "@label"
  2342. msgid "Helpers"
  2343. msgstr "Helper"
  2344. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2345. msgctxt "@label"
  2346. msgid "Shell"
  2347. msgstr "Guscio"
  2348. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2349. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2350. msgctxt "@label"
  2351. msgid "Infill"
  2352. msgstr "Riempimento"
  2353. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:271
  2354. msgctxt "@label"
  2355. msgid "Starts"
  2356. msgstr "Avvia"
  2357. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  2358. msgctxt "@label"
  2359. msgid "Only Show Top Layers"
  2360. msgstr "Mostra solo strati superiori"
  2361. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:332
  2362. msgctxt "@label"
  2363. msgid "Show 5 Detailed Layers On Top"
  2364. msgstr "Mostra 5 strati superiori in dettaglio"
  2365. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:346
  2366. msgctxt "@label"
  2367. msgid "Top / Bottom"
  2368. msgstr "Superiore / Inferiore"
  2369. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:350
  2370. msgctxt "@label"
  2371. msgid "Inner Wall"
  2372. msgstr "Parete interna"
  2373. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:419
  2374. msgctxt "@label"
  2375. msgid "min"
  2376. msgstr "min"
  2377. #: /home/clamboo/Desktop/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:488
  2378. msgctxt "@label"
  2379. msgid "max"
  2380. msgstr "max"
  2381. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2382. msgctxt "@label link to Connect and Cloud interfaces"
  2383. msgid "Manage printer"
  2384. msgstr "Gestione stampanti"
  2385. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2386. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2387. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2388. msgctxt "@label"
  2389. msgid "Glass"
  2390. msgstr "Vetro"
  2391. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2392. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  2393. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2394. msgctxt "@info"
  2395. msgid "Please update your printer's firmware to manage the queue remotely."
  2396. msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto."
  2397. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:288
  2398. msgctxt "@info"
  2399. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2400. msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory e visualizzare questa Webcam."
  2401. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2402. msgctxt "@label:status"
  2403. msgid "Loading..."
  2404. msgstr "Caricamento in corso..."
  2405. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2406. msgctxt "@label:status"
  2407. msgid "Unavailable"
  2408. msgstr "Non disponibile"
  2409. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2410. msgctxt "@label:status"
  2411. msgid "Unreachable"
  2412. msgstr "Non raggiungibile"
  2413. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2414. msgctxt "@label:status"
  2415. msgid "Idle"
  2416. msgstr "Ferma"
  2417. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  2418. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2419. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2420. msgctxt "@label:status"
  2421. msgid "Preparing..."
  2422. msgstr "Preparazione in corso..."
  2423. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2424. msgctxt "@label:status"
  2425. msgid "Printing"
  2426. msgstr "Stampa in corso"
  2427. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2428. msgctxt "@label"
  2429. msgid "Untitled"
  2430. msgstr "Senza titolo"
  2431. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2432. msgctxt "@label"
  2433. msgid "Anonymous"
  2434. msgstr "Anonimo"
  2435. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2436. msgctxt "@label:status"
  2437. msgid "Requires configuration changes"
  2438. msgstr "Richiede modifiche di configurazione"
  2439. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2440. msgctxt "@action:button"
  2441. msgid "Details"
  2442. msgstr "Dettagli"
  2443. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2444. msgctxt "@label"
  2445. msgid "Unavailable printer"
  2446. msgstr "Stampante non disponibile"
  2447. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2448. msgctxt "@label"
  2449. msgid "First available"
  2450. msgstr "Primo disponibile"
  2451. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2452. msgctxt "@label"
  2453. msgid "Queued"
  2454. msgstr "Coda di stampa"
  2455. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2456. msgctxt "@label link to connect manager"
  2457. msgid "Manage in browser"
  2458. msgstr "Gestisci nel browser"
  2459. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2460. msgctxt "@label"
  2461. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2462. msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno."
  2463. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2464. msgctxt "@label"
  2465. msgid "Print jobs"
  2466. msgstr "Processi di stampa"
  2467. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2468. msgctxt "@label"
  2469. msgid "Total print time"
  2470. msgstr "Tempo di stampa totale"
  2471. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2472. msgctxt "@label"
  2473. msgid "Waiting for"
  2474. msgstr "In attesa"
  2475. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:13
  2476. msgctxt "@title:window"
  2477. msgid "Print over network"
  2478. msgstr "Stampa sulla rete"
  2479. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:54
  2480. msgctxt "@action:button"
  2481. msgid "Print"
  2482. msgstr "Stampa"
  2483. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:82
  2484. msgctxt "@label"
  2485. msgid "Printer selection"
  2486. msgstr "Selezione stampante"
  2487. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2488. msgctxt "@title:window"
  2489. msgid "Configuration Changes"
  2490. msgstr "Modifiche configurazione"
  2491. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2492. msgctxt "@action:button"
  2493. msgid "Override"
  2494. msgstr "Override"
  2495. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2496. msgctxt "@label"
  2497. msgid "The assigned printer, %1, requires the following configuration change:"
  2498. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2499. msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:"
  2500. msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  2501. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2502. msgctxt "@label"
  2503. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2504. msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta."
  2505. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2506. msgctxt "@label"
  2507. msgid "Change material %1 from %2 to %3."
  2508. msgstr "Cambia materiale %1 da %2 a %3."
  2509. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2510. msgctxt "@label"
  2511. msgid "Load %3 as material %1 (This cannot be overridden)."
  2512. msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)."
  2513. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2514. msgctxt "@label"
  2515. msgid "Change print core %1 from %2 to %3."
  2516. msgstr "Cambia print core %1 da %2 a %3."
  2517. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2518. msgctxt "@label"
  2519. msgid "Change build plate to %1 (This cannot be overridden)."
  2520. msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)."
  2521. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2522. msgctxt "@label"
  2523. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2524. msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita."
  2525. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2526. msgctxt "@label"
  2527. msgid "Aluminum"
  2528. msgstr "Alluminio"
  2529. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2530. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2531. msgctxt "@label:status"
  2532. msgid "Finished"
  2533. msgstr "Terminato"
  2534. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2535. msgctxt "@label:status"
  2536. msgid "Aborting..."
  2537. msgstr "Interr. in corso..."
  2538. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2539. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2540. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2541. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2542. msgctxt "@label:status"
  2543. msgid "Aborted"
  2544. msgstr "Interrotto"
  2545. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2546. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2547. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2548. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2549. msgctxt "@label:status"
  2550. msgid "Failed"
  2551. msgstr "Non riuscita"
  2552. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2553. msgctxt "@label:status"
  2554. msgid "Pausing..."
  2555. msgstr "Messa in pausa..."
  2556. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2557. msgctxt "@label:status"
  2558. msgid "Paused"
  2559. msgstr "In pausa"
  2560. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2561. msgctxt "@label:status"
  2562. msgid "Resuming..."
  2563. msgstr "Ripresa in corso..."
  2564. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:108
  2565. msgctxt "@label:status"
  2566. msgid "Action required"
  2567. msgstr "Richiede un'azione"
  2568. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:110
  2569. msgctxt "@label:status"
  2570. msgid "Finishes %1 at %2"
  2571. msgstr "Finisce %1 a %2"
  2572. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2573. msgctxt "@title:window"
  2574. msgid "Connect to Networked Printer"
  2575. msgstr "Collega alla stampante in rete"
  2576. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2577. msgctxt "@label"
  2578. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2579. msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante."
  2580. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2581. msgctxt "@label"
  2582. msgid "Select your printer from the list below:"
  2583. msgstr "Selezionare la stampante dall’elenco seguente:"
  2584. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2585. msgctxt "@action:button"
  2586. msgid "Edit"
  2587. msgstr "Modifica"
  2588. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2589. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2590. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2591. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2592. msgctxt "@action:button"
  2593. msgid "Remove"
  2594. msgstr "Rimuovi"
  2595. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2596. msgctxt "@action:button"
  2597. msgid "Refresh"
  2598. msgstr "Aggiorna"
  2599. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2600. msgctxt "@label"
  2601. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2602. msgstr "Se la stampante non è nell’elenco, leggere la <a href='%1'>guida alla risoluzione dei problemi per la stampa in rete</a>"
  2603. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2604. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2605. msgctxt "@label"
  2606. msgid "Type"
  2607. msgstr "Tipo"
  2608. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2609. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2610. msgctxt "@label"
  2611. msgid "Firmware version"
  2612. msgstr "Versione firmware"
  2613. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2614. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2615. msgctxt "@label"
  2616. msgid "Address"
  2617. msgstr "Indirizzo"
  2618. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2619. msgctxt "@label"
  2620. msgid "This printer is not set up to host a group of printers."
  2621. msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti."
  2622. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2623. msgctxt "@label"
  2624. msgid "This printer is the host for a group of %1 printers."
  2625. msgstr "Questa stampante comanda un gruppo di %1 stampanti."
  2626. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2627. msgctxt "@label"
  2628. msgid "The printer at this address has not yet responded."
  2629. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  2630. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2631. msgctxt "@action:button"
  2632. msgid "Connect"
  2633. msgstr "Collega"
  2634. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2635. msgctxt "@title:window"
  2636. msgid "Invalid IP address"
  2637. msgstr "Indirizzo IP non valido"
  2638. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2639. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2640. msgctxt "@text"
  2641. msgid "Please enter a valid IP address."
  2642. msgstr "Inserire un indirizzo IP valido."
  2643. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2644. msgctxt "@title:window"
  2645. msgid "Printer Address"
  2646. msgstr "Indirizzo stampante"
  2647. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2648. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2649. msgctxt "@label"
  2650. msgid "Enter the IP address of your printer on the network."
  2651. msgstr "Inserire l'indirizzo IP della stampante in rete."
  2652. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2653. msgctxt "@label"
  2654. msgid "Move to top"
  2655. msgstr "Sposta in alto"
  2656. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2657. msgctxt "@label"
  2658. msgid "Delete"
  2659. msgstr "Cancella"
  2660. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2661. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:290
  2662. msgctxt "@label"
  2663. msgid "Resume"
  2664. msgstr "Riprendi"
  2665. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2666. msgctxt "@label"
  2667. msgid "Pausing..."
  2668. msgstr "Messa in pausa..."
  2669. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2670. msgctxt "@label"
  2671. msgid "Resuming..."
  2672. msgstr "Ripresa in corso..."
  2673. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2674. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:285
  2675. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:294
  2676. msgctxt "@label"
  2677. msgid "Pause"
  2678. msgstr "Pausa"
  2679. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2680. msgctxt "@label"
  2681. msgid "Aborting..."
  2682. msgstr "Interr. in corso..."
  2683. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2684. msgctxt "@label"
  2685. msgid "Abort"
  2686. msgstr "Interrompi"
  2687. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2688. msgctxt "@label %1 is the name of a print job."
  2689. msgid "Are you sure you want to move %1 to the top of the queue?"
  2690. msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?"
  2691. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2692. msgctxt "@window:title"
  2693. msgid "Move print job to top"
  2694. msgstr "Sposta il processo di stampa in alto"
  2695. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2696. msgctxt "@label %1 is the name of a print job."
  2697. msgid "Are you sure you want to delete %1?"
  2698. msgstr "Sei sicuro di voler cancellare %1?"
  2699. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2700. msgctxt "@window:title"
  2701. msgid "Delete print job"
  2702. msgstr "Cancella processo di stampa"
  2703. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2704. msgctxt "@label %1 is the name of a print job."
  2705. msgid "Are you sure you want to abort %1?"
  2706. msgstr "Sei sicuro di voler interrompere %1?"
  2707. #: /home/clamboo/Desktop/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2708. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:336
  2709. msgctxt "@window:title"
  2710. msgid "Abort print"
  2711. msgstr "Interrompi la stampa"
  2712. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2713. msgctxt "@info"
  2714. msgid ""
  2715. "Please make sure your printer has a connection:\n"
  2716. "- Check if the printer is turned on.\n"
  2717. "- Check if the printer is connected to the network.\n"
  2718. "- Check if you are signed in to discover cloud-connected printers."
  2719. msgstr ""
  2720. "Accertarsi che la stampante sia collegata:\n"
  2721. "- Controllare se la stampante è accesa.\n"
  2722. "- Controllare se la stampante è collegata alla rete.\n"
  2723. "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud."
  2724. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2725. msgctxt "@info"
  2726. msgid "Please connect your printer to the network."
  2727. msgstr "Collegare la stampante alla rete."
  2728. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2729. msgctxt "@label link to technical assistance"
  2730. msgid "View user manuals online"
  2731. msgstr "Visualizza i manuali utente online"
  2732. #: /home/clamboo/Desktop/Cura/plugins/MonitorStage/MonitorMain.qml:172
  2733. msgctxt "@info"
  2734. msgid "In order to monitor your print from Cura, please connect the printer."
  2735. msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante."
  2736. #: /home/clamboo/Desktop/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2737. msgctxt "@info:tooltip"
  2738. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2739. msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione."
  2740. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:27
  2741. msgctxt "@info:tooltip"
  2742. msgid "3D View"
  2743. msgstr "Visualizzazione 3D"
  2744. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:40
  2745. msgctxt "@info:tooltip"
  2746. msgid "Front View"
  2747. msgstr "Visualizzazione frontale"
  2748. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:53
  2749. msgctxt "@info:tooltip"
  2750. msgid "Top View"
  2751. msgstr "Visualizzazione superiore"
  2752. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:66
  2753. msgctxt "@info:tooltip"
  2754. msgid "Left View"
  2755. msgstr "Vista sinistra"
  2756. #: /home/clamboo/Desktop/Cura/resources/qml/ViewOrientationControls.qml:79
  2757. msgctxt "@info:tooltip"
  2758. msgid "Right View"
  2759. msgstr "Vista destra"
  2760. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectSelector.qml:59
  2761. msgctxt "@label"
  2762. msgid "Object list"
  2763. msgstr "Elenco oggetti"
  2764. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  2765. msgctxt "@action:button"
  2766. msgid "Marketplace"
  2767. msgstr "Mercato"
  2768. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2769. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:13
  2770. msgctxt "@title:menu menubar:toplevel"
  2771. msgid "&File"
  2772. msgstr "&File"
  2773. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2774. msgctxt "@title:menu menubar:toplevel"
  2775. msgid "&Edit"
  2776. msgstr "&Modifica"
  2777. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2778. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:12
  2779. msgctxt "@title:menu menubar:toplevel"
  2780. msgid "&View"
  2781. msgstr "&Visualizza"
  2782. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:60
  2783. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2784. msgctxt "@title:menu menubar:toplevel"
  2785. msgid "&Settings"
  2786. msgstr "&Impostazioni"
  2787. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:66
  2788. msgctxt "@title:menu menubar:toplevel"
  2789. msgid "E&xtensions"
  2790. msgstr "Es&tensioni"
  2791. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:112
  2792. msgctxt "@title:menu menubar:toplevel"
  2793. msgid "P&references"
  2794. msgstr "P&referenze"
  2795. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:120
  2796. msgctxt "@title:menu menubar:toplevel"
  2797. msgid "&Help"
  2798. msgstr "&Help"
  2799. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:166
  2800. msgctxt "@title:window"
  2801. msgid "New project"
  2802. msgstr "Nuovo progetto"
  2803. #: /home/clamboo/Desktop/Cura/resources/qml/MainWindow/ApplicationMenu.qml:167
  2804. msgctxt "@info:question"
  2805. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2806. msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate."
  2807. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2808. msgctxt "@label:PrintjobStatus"
  2809. msgid "Slicing..."
  2810. msgstr "Sezionamento in corso..."
  2811. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:82
  2812. msgctxt "@label:PrintjobStatus"
  2813. msgid "Unable to slice"
  2814. msgstr "Sezionamento impossibile"
  2815. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2816. msgctxt "@button"
  2817. msgid "Processing"
  2818. msgstr "Elaborazione in corso"
  2819. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  2820. msgctxt "@button"
  2821. msgid "Slice"
  2822. msgstr "Sezionamento"
  2823. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:122
  2824. msgctxt "@label"
  2825. msgid "Start the slicing process"
  2826. msgstr "Avvia il processo di sezionamento"
  2827. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:136
  2828. msgctxt "@button"
  2829. msgid "Cancel"
  2830. msgstr "Annulla"
  2831. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2832. msgctxt "@label"
  2833. msgid "Time estimation"
  2834. msgstr "Stima del tempo"
  2835. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2836. msgctxt "@label"
  2837. msgid "Material estimation"
  2838. msgstr "Stima del materiale"
  2839. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2840. msgctxt "@label m for meter"
  2841. msgid "%1m"
  2842. msgstr "%1m"
  2843. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2844. msgctxt "@label g for grams"
  2845. msgid "%1g"
  2846. msgstr "%1g"
  2847. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2848. msgctxt "@label"
  2849. msgid "No time estimation available"
  2850. msgstr "Nessuna stima di tempo disponibile"
  2851. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2852. msgctxt "@label"
  2853. msgid "No cost estimation available"
  2854. msgstr "Nessuna stima di costo disponibile"
  2855. #: /home/clamboo/Desktop/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2856. msgctxt "@button"
  2857. msgid "Preview"
  2858. msgstr "Anteprima"
  2859. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  2860. msgctxt "@label"
  2861. msgid "Add a printer"
  2862. msgstr "Aggiungi una stampante"
  2863. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  2864. msgctxt "@label"
  2865. msgid "Add a networked printer"
  2866. msgstr "Aggiungi una stampante in rete"
  2867. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  2868. msgctxt "@label"
  2869. msgid "Add a non-networked printer"
  2870. msgstr "Aggiungi una stampante non in rete"
  2871. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  2872. msgctxt "@label"
  2873. msgid "Add a Cloud printer"
  2874. msgstr "Aggiungere una stampante cloud"
  2875. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  2876. msgctxt "@label"
  2877. msgid "Waiting for Cloud response"
  2878. msgstr "In attesa della risposta del cloud"
  2879. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  2880. msgctxt "@label"
  2881. msgid "No printers found in your account?"
  2882. msgstr "Non sono presenti stampanti nel cloud?"
  2883. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  2884. msgctxt "@label"
  2885. msgid "The following printers in your account have been added in Cura:"
  2886. msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:"
  2887. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  2888. msgctxt "@button"
  2889. msgid "Add printer manually"
  2890. msgstr "Aggiungere la stampante manualmente"
  2891. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  2892. msgctxt "@label"
  2893. msgid "Add printer by IP address"
  2894. msgstr "Aggiungi stampante per indirizzo IP"
  2895. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  2896. msgctxt "@text"
  2897. msgid "Enter your printer's IP address."
  2898. msgstr "Inserire l'indirizzo IP della stampante."
  2899. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  2900. msgctxt "@button"
  2901. msgid "Add"
  2902. msgstr "Aggiungi"
  2903. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  2904. msgctxt "@label"
  2905. msgid "Could not connect to device."
  2906. msgstr "Impossibile connettersi al dispositivo."
  2907. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  2908. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  2909. msgctxt "@label"
  2910. msgid "Can't connect to your Ultimaker printer?"
  2911. msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?"
  2912. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  2913. msgctxt "@label"
  2914. msgid "The printer at this address has not responded yet."
  2915. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  2916. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  2917. msgctxt "@label"
  2918. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  2919. msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo."
  2920. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  2921. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:707
  2922. msgctxt "@button"
  2923. msgid "Back"
  2924. msgstr "Indietro"
  2925. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  2926. msgctxt "@button"
  2927. msgid "Connect"
  2928. msgstr "Collega"
  2929. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  2930. msgctxt "@label"
  2931. msgid "User Agreement"
  2932. msgstr "Contratto di licenza"
  2933. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  2934. msgctxt "@button"
  2935. msgid "Decline and close"
  2936. msgstr "Rifiuta e chiudi"
  2937. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  2938. msgctxt "@label"
  2939. msgid "Welcome to Ultimaker Cura"
  2940. msgstr "Benvenuto in Ultimaker Cura"
  2941. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  2942. msgctxt "@text"
  2943. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  2944. msgstr ""
  2945. "Segui questa procedura per configurare\n"
  2946. "Ultimaker Cura. Questa operazione richiederà solo pochi istanti."
  2947. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  2948. msgctxt "@button"
  2949. msgid "Get started"
  2950. msgstr "Per iniziare"
  2951. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  2952. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:20
  2953. msgctxt "@label"
  2954. msgid "Sign in to the Ultimaker platform"
  2955. msgstr "Accedi alla piattaforma Ultimaker"
  2956. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  2957. msgctxt "@text"
  2958. msgid "Add material settings and plugins from the Marketplace"
  2959. msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace"
  2960. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  2961. msgctxt "@text"
  2962. msgid "Backup and sync your material settings and plugins"
  2963. msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin"
  2964. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  2965. msgctxt "@text"
  2966. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  2967. msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker"
  2968. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  2969. msgctxt "@button"
  2970. msgid "Skip"
  2971. msgstr "Salta"
  2972. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  2973. msgctxt "@text"
  2974. msgid "Create a free Ultimaker Account"
  2975. msgstr "Crea un account Ultimaker gratuito"
  2976. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:234
  2977. msgctxt "@label"
  2978. msgid "Manufacturer"
  2979. msgstr "Produttore"
  2980. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:251
  2981. msgctxt "@label"
  2982. msgid "Profile author"
  2983. msgstr "Autore profilo"
  2984. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:269
  2985. msgctxt "@label"
  2986. msgid "Printer name"
  2987. msgstr "Nome stampante"
  2988. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:278
  2989. msgctxt "@text"
  2990. msgid "Please name your printer"
  2991. msgstr "Dare un nome alla stampante"
  2992. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  2993. msgctxt "@label"
  2994. msgid "There is no printer found over your network."
  2995. msgstr "Non è stata trovata alcuna stampante sulla rete."
  2996. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  2997. msgctxt "@label"
  2998. msgid "Refresh"
  2999. msgstr "Aggiorna"
  3000. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3001. msgctxt "@label"
  3002. msgid "Add printer by IP"
  3003. msgstr "Aggiungi stampante per IP"
  3004. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3005. msgctxt "@label"
  3006. msgid "Add cloud printer"
  3007. msgstr "Aggiungere una stampante cloud"
  3008. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:241
  3009. msgctxt "@label"
  3010. msgid "Troubleshooting"
  3011. msgstr "Ricerca e riparazione dei guasti"
  3012. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3013. msgctxt "@label"
  3014. msgid "Help us to improve Ultimaker Cura"
  3015. msgstr "Aiutaci a migliorare Ultimaker Cura"
  3016. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3017. msgctxt "@text"
  3018. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3019. msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:"
  3020. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3021. msgctxt "@text"
  3022. msgid "Machine types"
  3023. msgstr "Tipi di macchine"
  3024. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3025. msgctxt "@text"
  3026. msgid "Material usage"
  3027. msgstr "Utilizzo dei materiali"
  3028. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3029. msgctxt "@text"
  3030. msgid "Number of slices"
  3031. msgstr "Numero di sezionamenti"
  3032. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3033. msgctxt "@text"
  3034. msgid "Print settings"
  3035. msgstr "Impostazioni di stampa"
  3036. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3037. msgctxt "@text"
  3038. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3039. msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale."
  3040. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3041. msgctxt "@text"
  3042. msgid "More information"
  3043. msgstr "Ulteriori informazioni"
  3044. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  3045. msgctxt "@label"
  3046. msgid "What's New"
  3047. msgstr "Scopri le novità"
  3048. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3049. msgctxt "@label"
  3050. msgid "Empty"
  3051. msgstr "Vuoto"
  3052. #: /home/clamboo/Desktop/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3053. msgctxt "@label"
  3054. msgid "Release Notes"
  3055. msgstr "Note sulla versione"
  3056. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3057. msgctxt "@title:window The argument is the application name."
  3058. msgid "About %1"
  3059. msgstr "Informazioni su %1"
  3060. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3061. msgctxt "@label"
  3062. msgid "version: %1"
  3063. msgstr "versione: %1"
  3064. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3065. msgctxt "@label"
  3066. msgid "End-to-end solution for fused filament 3D printing."
  3067. msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso."
  3068. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3069. msgctxt "@info:credit"
  3070. msgid ""
  3071. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3072. "Cura proudly uses the following open source projects:"
  3073. msgstr ""
  3074. "Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n"
  3075. "Cura è orgogliosa di utilizzare i seguenti progetti open source:"
  3076. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3077. msgctxt "@label"
  3078. msgid "Graphical user interface"
  3079. msgstr "Interfaccia grafica utente"
  3080. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3081. msgctxt "@label"
  3082. msgid "Application framework"
  3083. msgstr "Struttura applicazione"
  3084. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3085. msgctxt "@label"
  3086. msgid "G-code generator"
  3087. msgstr "Generatore codice G"
  3088. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  3089. msgctxt "@label"
  3090. msgid "Interprocess communication library"
  3091. msgstr "Libreria di comunicazione intra-processo"
  3092. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3093. msgctxt "@label"
  3094. msgid "Programming language"
  3095. msgstr "Lingua di programmazione"
  3096. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3097. msgctxt "@label"
  3098. msgid "GUI framework"
  3099. msgstr "Struttura GUI"
  3100. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3101. msgctxt "@label"
  3102. msgid "GUI framework bindings"
  3103. msgstr "Vincoli struttura GUI"
  3104. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3105. msgctxt "@label"
  3106. msgid "C/C++ Binding library"
  3107. msgstr "Libreria vincoli C/C++"
  3108. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3109. msgctxt "@label"
  3110. msgid "Data interchange format"
  3111. msgstr "Formato scambio dati"
  3112. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3113. msgctxt "@label"
  3114. msgid "Support library for scientific computing"
  3115. msgstr "Libreria di supporto per calcolo scientifico"
  3116. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3117. msgctxt "@label"
  3118. msgid "Support library for faster math"
  3119. msgstr "Libreria di supporto per calcolo rapido"
  3120. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3121. msgctxt "@label"
  3122. msgid "Support library for handling STL files"
  3123. msgstr "Libreria di supporto per gestione file STL"
  3124. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3125. msgctxt "@label"
  3126. msgid "Support library for handling planar objects"
  3127. msgstr "Libreria di supporto per gestione oggetti planari"
  3128. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3129. msgctxt "@label"
  3130. msgid "Support library for handling triangular meshes"
  3131. msgstr "Libreria di supporto per gestione maglie triangolari"
  3132. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3133. msgctxt "@label"
  3134. msgid "Support library for handling 3MF files"
  3135. msgstr "Libreria di supporto per gestione file 3MF"
  3136. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3137. msgctxt "@label"
  3138. msgid "Support library for file metadata and streaming"
  3139. msgstr "Libreria di supporto per metadati file e streaming"
  3140. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3141. msgctxt "@label"
  3142. msgid "Serial communication library"
  3143. msgstr "Libreria di comunicazione seriale"
  3144. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3145. msgctxt "@label"
  3146. msgid "ZeroConf discovery library"
  3147. msgstr "Libreria scoperta ZeroConf"
  3148. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3149. msgctxt "@label"
  3150. msgid "Polygon clipping library"
  3151. msgstr "Libreria ritaglio poligono"
  3152. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3153. msgctxt "@Label"
  3154. msgid "Static type checker for Python"
  3155. msgstr "Controllo di tipo statico per Python"
  3156. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3157. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3158. msgctxt "@Label"
  3159. msgid "Root Certificates for validating SSL trustworthiness"
  3160. msgstr "Certificati di origine per la convalida dell'affidabilità SSL"
  3161. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3162. msgctxt "@Label"
  3163. msgid "Python Error tracking library"
  3164. msgstr "Libreria per la traccia degli errori Python"
  3165. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3166. msgctxt "@label"
  3167. msgid "Polygon packing library, developed by Prusa Research"
  3168. msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research"
  3169. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3170. msgctxt "@label"
  3171. msgid "Python bindings for libnest2d"
  3172. msgstr "Vincoli Python per libnest2d"
  3173. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3174. msgctxt "@label"
  3175. msgid "Support library for system keyring access"
  3176. msgstr "Libreria di supporto per accesso a keyring sistema"
  3177. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3178. msgctxt "@label"
  3179. msgid "Python extensions for Microsoft Windows"
  3180. msgstr "Estensioni Python per Microsoft Windows"
  3181. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3182. msgctxt "@label"
  3183. msgid "Font"
  3184. msgstr "Font"
  3185. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3186. msgctxt "@label"
  3187. msgid "SVG icons"
  3188. msgstr "Icone SVG"
  3189. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3190. msgctxt "@label"
  3191. msgid "Linux cross-distribution application deployment"
  3192. msgstr "Apertura applicazione distribuzione incrociata Linux"
  3193. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3194. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:645
  3195. msgctxt "@title:window"
  3196. msgid "Open file(s)"
  3197. msgstr "Apri file"
  3198. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3199. msgctxt "@text:window"
  3200. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3201. msgstr "Rilevata la presenza di uno o più file progetto tra i file selezionati. È possibile aprire solo un file progetto alla volta. Si suggerisce di importare i modelli solo da tali file. Vuoi procedere?"
  3202. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3203. msgctxt "@action:button"
  3204. msgid "Import all as models"
  3205. msgstr "Importa tutto come modelli"
  3206. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:16
  3207. msgctxt "@title:window"
  3208. msgid "Save Project"
  3209. msgstr "Salva progetto"
  3210. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:174
  3211. msgctxt "@action:label"
  3212. msgid "Extruder %1"
  3213. msgstr "Estrusore %1"
  3214. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:190
  3215. msgctxt "@action:label"
  3216. msgid "%1 & material"
  3217. msgstr "%1 & materiale"
  3218. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3219. msgctxt "@action:label"
  3220. msgid "Material"
  3221. msgstr "Materiale"
  3222. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:282
  3223. msgctxt "@action:label"
  3224. msgid "Don't show project summary on save again"
  3225. msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva"
  3226. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:301
  3227. msgctxt "@action:button"
  3228. msgid "Save"
  3229. msgstr "Salva"
  3230. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:16
  3231. msgctxt "@title:window"
  3232. msgid "Discard or Keep changes"
  3233. msgstr "Elimina o mantieni modifiche"
  3234. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:58
  3235. msgctxt "@text:window, %1 is a profile name"
  3236. msgid ""
  3237. "You have customized some profile settings.\n"
  3238. "Would you like to Keep these changed settings after switching profiles?\n"
  3239. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3240. msgstr ""
  3241. "Alcune impostazioni di profilo sono state personalizzate.\n"
  3242. "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n"
  3243. "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'."
  3244. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:112
  3245. msgctxt "@title:column"
  3246. msgid "Profile settings"
  3247. msgstr "Impostazioni profilo"
  3248. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:126
  3249. msgctxt "@title:column"
  3250. msgid "Current changes"
  3251. msgstr "Modifiche correnti"
  3252. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3253. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3254. msgctxt "@option:discardOrKeep"
  3255. msgid "Always ask me this"
  3256. msgstr "Chiedi sempre"
  3257. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:161
  3258. msgctxt "@option:discardOrKeep"
  3259. msgid "Discard and never ask again"
  3260. msgstr "Elimina e non chiedere nuovamente"
  3261. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:162
  3262. msgctxt "@option:discardOrKeep"
  3263. msgid "Keep and never ask again"
  3264. msgstr "Mantieni e non chiedere nuovamente"
  3265. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:199
  3266. msgctxt "@action:button"
  3267. msgid "Discard changes"
  3268. msgstr "Elimina modifiche"
  3269. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:212
  3270. msgctxt "@action:button"
  3271. msgid "Keep changes"
  3272. msgstr "Mantieni modifiche"
  3273. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3274. msgctxt "@title:window"
  3275. msgid "Open project file"
  3276. msgstr "Apri file progetto"
  3277. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3278. msgctxt "@text:window"
  3279. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3280. msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?"
  3281. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3282. msgctxt "@text:window"
  3283. msgid "Remember my choice"
  3284. msgstr "Ricorda la scelta"
  3285. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3286. msgctxt "@action:button"
  3287. msgid "Open as project"
  3288. msgstr "Apri come progetto"
  3289. #: /home/clamboo/Desktop/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3290. msgctxt "@action:button"
  3291. msgid "Import models"
  3292. msgstr "Importa i modelli"
  3293. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:140
  3294. msgctxt "@label"
  3295. msgid "Active print"
  3296. msgstr "Stampa attiva"
  3297. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:148
  3298. msgctxt "@label"
  3299. msgid "Job Name"
  3300. msgstr "Nome del processo"
  3301. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:156
  3302. msgctxt "@label"
  3303. msgid "Printing Time"
  3304. msgstr "Tempo di stampa"
  3305. #: /home/clamboo/Desktop/Cura/resources/qml/PrintMonitor.qml:164
  3306. msgctxt "@label"
  3307. msgid "Estimated time left"
  3308. msgstr "Tempo residuo stimato"
  3309. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3310. msgctxt "@status"
  3311. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3312. msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet."
  3313. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3314. msgctxt "@status"
  3315. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3316. msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione."
  3317. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3318. msgctxt "@status"
  3319. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3320. msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud."
  3321. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3322. msgctxt "@status"
  3323. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3324. msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet."
  3325. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:252
  3326. msgctxt "@button"
  3327. msgid "Add printer"
  3328. msgstr "Aggiungi stampante"
  3329. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelector.qml:269
  3330. msgctxt "@button"
  3331. msgid "Manage printers"
  3332. msgstr "Gestione stampanti"
  3333. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3334. msgctxt "@label"
  3335. msgid "Connected printers"
  3336. msgstr "Stampanti collegate"
  3337. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3338. msgctxt "@label"
  3339. msgid "Preset printers"
  3340. msgstr "Stampanti preimpostate"
  3341. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3342. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3343. msgctxt "@label"
  3344. msgid "Print settings"
  3345. msgstr "Impostazioni di stampa"
  3346. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3347. msgctxt "@label shown when we load a Gcode file"
  3348. msgid "Print setup disabled. G-code file can not be modified."
  3349. msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato."
  3350. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  3351. msgctxt "@label"
  3352. msgid "Profile"
  3353. msgstr "Profilo"
  3354. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  3355. msgctxt "@tooltip"
  3356. msgid ""
  3357. "Some setting/override values are different from the values stored in the profile.\n"
  3358. "\n"
  3359. "Click to open the profile manager."
  3360. msgstr ""
  3361. "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n"
  3362. "\n"
  3363. "Fare clic per aprire la gestione profili."
  3364. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  3365. msgctxt "@label:header"
  3366. msgid "Custom profiles"
  3367. msgstr "Profili personalizzati"
  3368. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3369. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  3370. msgctxt "@action:button"
  3371. msgid "Discard current changes"
  3372. msgstr "Elimina le modifiche correnti"
  3373. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3374. msgctxt "@button"
  3375. msgid "Recommended"
  3376. msgstr "Consigliata"
  3377. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3378. msgctxt "@button"
  3379. msgid "Custom"
  3380. msgstr "Personalizzata"
  3381. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3382. msgctxt "@label:Should be short"
  3383. msgid "On"
  3384. msgstr "Inserita"
  3385. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3386. msgctxt "@label:Should be short"
  3387. msgid "Off"
  3388. msgstr "Disinserita"
  3389. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3390. msgctxt "@label"
  3391. msgid "Experimental"
  3392. msgstr "Sperimentale"
  3393. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3394. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  3395. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3396. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3397. msgstr[0] "Non esiste alcun profilo %1 per la configurazione nelle estrusore %2. In alternativa verrà utilizzato lo scopo predefinito"
  3398. msgstr[1] "Non esiste alcun profilo %1 per le configurazioni negli estrusori %2. In alternativa verrà utilizzato lo scopo predefinito"
  3399. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3400. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:736
  3401. msgctxt "@label"
  3402. msgid "Profiles"
  3403. msgstr "Profili"
  3404. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:82
  3405. msgctxt "@tooltip"
  3406. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3407. msgstr "Sono state modificate alcune impostazioni del profilo. Per modificarle, andare alla modalità personalizzata."
  3408. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  3409. msgctxt "@label"
  3410. msgid "Support"
  3411. msgstr "Supporto"
  3412. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:72
  3413. msgctxt "@label"
  3414. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3415. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  3416. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:196
  3417. msgctxt "@label"
  3418. msgid "Gradual infill"
  3419. msgstr "Riempimento graduale"
  3420. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:235
  3421. msgctxt "@label"
  3422. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3423. msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto."
  3424. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  3425. msgctxt "@label"
  3426. msgid "Adhesion"
  3427. msgstr "Adesione"
  3428. #: /home/clamboo/Desktop/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:75
  3429. msgctxt "@label"
  3430. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  3431. msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente."
  3432. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3433. msgctxt "@title:menu menubar:file"
  3434. msgid "Save Project..."
  3435. msgstr "Salva progetto..."
  3436. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3437. msgctxt "@label:category menu label"
  3438. msgid "Network enabled printers"
  3439. msgstr "Stampanti abilitate per la rete"
  3440. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3441. msgctxt "@label:category menu label"
  3442. msgid "Local printers"
  3443. msgstr "Stampanti locali"
  3444. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3445. msgctxt "@label:category menu label"
  3446. msgid "Material"
  3447. msgstr "Materiale"
  3448. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3449. msgctxt "@label:category menu label"
  3450. msgid "Favorites"
  3451. msgstr "Preferiti"
  3452. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3453. msgctxt "@label:category menu label"
  3454. msgid "Generic"
  3455. msgstr "Generale"
  3456. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:27
  3457. msgctxt "@label"
  3458. msgid "Print Selected Model With:"
  3459. msgid_plural "Print Selected Models With:"
  3460. msgstr[0] "Stampa modello selezionato con:"
  3461. msgstr[1] "Stampa modelli selezionati con:"
  3462. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:116
  3463. msgctxt "@title:window"
  3464. msgid "Multiply Selected Model"
  3465. msgid_plural "Multiply Selected Models"
  3466. msgstr[0] "Moltiplica modello selezionato"
  3467. msgstr[1] "Moltiplica modelli selezionati"
  3468. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ContextMenu.qml:141
  3469. msgctxt "@label"
  3470. msgid "Number of Copies"
  3471. msgstr "Numero di copie"
  3472. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:41
  3473. msgctxt "@title:menu menubar:file"
  3474. msgid "&Save Project..."
  3475. msgstr "&Salva progetto..."
  3476. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:74
  3477. msgctxt "@title:menu menubar:file"
  3478. msgid "&Export..."
  3479. msgstr "&Esporta..."
  3480. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/FileMenu.qml:85
  3481. msgctxt "@action:inmenu menubar:file"
  3482. msgid "Export Selection..."
  3483. msgstr "Esporta selezione..."
  3484. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3485. msgctxt "@header"
  3486. msgid "Configurations"
  3487. msgstr "Configurazioni"
  3488. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3489. msgctxt "@header"
  3490. msgid "Custom"
  3491. msgstr "Personalizzata"
  3492. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3493. msgctxt "@label"
  3494. msgid "Printer"
  3495. msgstr "Stampante"
  3496. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3497. msgctxt "@label"
  3498. msgid "Enabled"
  3499. msgstr "Abilitato"
  3500. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3501. msgctxt "@label"
  3502. msgid "Material"
  3503. msgstr "Materiale"
  3504. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:407
  3505. msgctxt "@label"
  3506. msgid "Use glue for better adhesion with this material combination."
  3507. msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali."
  3508. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:102
  3509. msgctxt "@tooltip"
  3510. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3511. msgstr "La configurazione di questo estrusore non è consentita e proibisce il sezionamento."
  3512. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  3513. msgctxt "@tooltip"
  3514. msgid "There are no profiles matching the configuration of this extruder."
  3515. msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore."
  3516. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:253
  3517. msgctxt "@label"
  3518. msgid "Select configuration"
  3519. msgstr "Seleziona configurazione"
  3520. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:364
  3521. msgctxt "@label"
  3522. msgid "Configurations"
  3523. msgstr "Configurazioni"
  3524. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3525. msgctxt "@label"
  3526. msgid "Loading available configurations from the printer..."
  3527. msgstr "Caricamento in corso configurazioni disponibili dalla stampante..."
  3528. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3529. msgctxt "@label"
  3530. msgid "The configurations are not available because the printer is disconnected."
  3531. msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata."
  3532. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3533. msgctxt "@label"
  3534. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3535. msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto."
  3536. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3537. msgctxt "@label"
  3538. msgid "Marketplace"
  3539. msgstr "Mercato"
  3540. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3541. msgctxt "@title:menu menubar:file"
  3542. msgid "Open File(s)..."
  3543. msgstr "Apri file..."
  3544. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3545. msgctxt "@title:menu menubar:settings"
  3546. msgid "&Printer"
  3547. msgstr "S&tampante"
  3548. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3549. msgctxt "@title:menu"
  3550. msgid "&Material"
  3551. msgstr "Ma&teriale"
  3552. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3553. msgctxt "@action:inmenu"
  3554. msgid "Set as Active Extruder"
  3555. msgstr "Imposta come estrusore attivo"
  3556. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3557. msgctxt "@action:inmenu"
  3558. msgid "Enable Extruder"
  3559. msgstr "Abilita estrusore"
  3560. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3561. msgctxt "@action:inmenu"
  3562. msgid "Disable Extruder"
  3563. msgstr "Disabilita estrusore"
  3564. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3565. msgctxt "@title:menu menubar:file"
  3566. msgid "Open &Recent"
  3567. msgstr "Ap&ri recenti"
  3568. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3569. msgctxt "@action:inmenu"
  3570. msgid "Visible Settings"
  3571. msgstr "Impostazioni visibili"
  3572. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3573. msgctxt "@action:inmenu"
  3574. msgid "Collapse All Categories"
  3575. msgstr "Comprimi tutte le categorie"
  3576. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3577. msgctxt "@action:inmenu"
  3578. msgid "Manage Setting Visibility..."
  3579. msgstr "Gestisci Impostazione visibilità..."
  3580. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:19
  3581. msgctxt "@action:inmenu menubar:view"
  3582. msgid "&Camera position"
  3583. msgstr "&Posizione fotocamera"
  3584. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:45
  3585. msgctxt "@action:inmenu menubar:view"
  3586. msgid "Camera view"
  3587. msgstr "Visualizzazione fotocamera"
  3588. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:48
  3589. msgctxt "@action:inmenu menubar:view"
  3590. msgid "Perspective"
  3591. msgstr "Prospettiva"
  3592. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:59
  3593. msgctxt "@action:inmenu menubar:view"
  3594. msgid "Orthographic"
  3595. msgstr "Ortogonale"
  3596. #: /home/clamboo/Desktop/Cura/resources/qml/Menus/ViewMenu.qml:79
  3597. msgctxt "@action:inmenu menubar:view"
  3598. msgid "&Build plate"
  3599. msgstr "P&iano di stampa"
  3600. #: /home/clamboo/Desktop/Cura/resources/qml/ViewsSelector.qml:50
  3601. msgctxt "@label"
  3602. msgid "View type"
  3603. msgstr "Visualizza tipo"
  3604. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:112
  3605. msgctxt "@label"
  3606. msgid "Is printed as support."
  3607. msgstr "Viene stampato come supporto."
  3608. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:115
  3609. msgctxt "@label"
  3610. msgid "Other models overlapping with this model are modified."
  3611. msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati."
  3612. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:118
  3613. msgctxt "@label"
  3614. msgid "Infill overlapping with this model is modified."
  3615. msgstr "La sovrapposizione del riempimento con questo modello è stata modificata."
  3616. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:121
  3617. msgctxt "@label"
  3618. msgid "Overlaps with this model are not supported."
  3619. msgstr "Le sovrapposizioni con questo modello non sono supportate."
  3620. #: /home/clamboo/Desktop/Cura/resources/qml/ObjectItemButton.qml:128
  3621. msgctxt "@label %1 is the number of settings it overrides."
  3622. msgid "Overrides %1 setting."
  3623. msgid_plural "Overrides %1 settings."
  3624. msgstr[0] "Ignora %1 impostazione."
  3625. msgstr[1] "Ignora %1 impostazioni."
  3626. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3627. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:477
  3628. msgctxt "@title:tab"
  3629. msgid "Profiles"
  3630. msgstr "Profili"
  3631. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3632. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3633. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3634. msgctxt "@action:button"
  3635. msgid "Activate"
  3636. msgstr "Attiva"
  3637. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3638. msgctxt "@label"
  3639. msgid "Create"
  3640. msgstr "Crea"
  3641. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3642. msgctxt "@label"
  3643. msgid "Duplicate"
  3644. msgstr "Duplica"
  3645. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3646. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3647. msgctxt "@action:button"
  3648. msgid "Rename"
  3649. msgstr "Rinomina"
  3650. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3651. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3652. msgctxt "@action:button"
  3653. msgid "Import"
  3654. msgstr "Importa"
  3655. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3656. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3657. msgctxt "@action:button"
  3658. msgid "Export"
  3659. msgstr "Esporta"
  3660. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3661. msgctxt "@title:window"
  3662. msgid "Create Profile"
  3663. msgstr "Crea profilo"
  3664. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3665. msgctxt "@info"
  3666. msgid "Please provide a name for this profile."
  3667. msgstr "Indica un nome per questo profilo."
  3668. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3669. msgctxt "@title:window"
  3670. msgid "Duplicate Profile"
  3671. msgstr "Duplica profilo"
  3672. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3673. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:312
  3674. msgctxt "@title:window"
  3675. msgid "Confirm Remove"
  3676. msgstr "Conferma rimozione"
  3677. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3678. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3679. msgctxt "@label (%1 is object name)"
  3680. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3681. msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!"
  3682. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3683. msgctxt "@title:window"
  3684. msgid "Rename Profile"
  3685. msgstr "Rinomina profilo"
  3686. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3687. msgctxt "@title:window"
  3688. msgid "Import Profile"
  3689. msgstr "Importa profilo"
  3690. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3691. msgctxt "@title:window"
  3692. msgid "Export Profile"
  3693. msgstr "Esporta profilo"
  3694. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3695. msgctxt "@label %1 is printer name"
  3696. msgid "Printer: %1"
  3697. msgstr "Stampante: %1"
  3698. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3699. msgctxt "@action:button"
  3700. msgid "Update profile with current settings/overrides"
  3701. msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti"
  3702. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3703. msgctxt "@action:label"
  3704. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3705. msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito."
  3706. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3707. msgctxt "@action:label"
  3708. msgid "Your current settings match the selected profile."
  3709. msgstr "Le impostazioni correnti corrispondono al profilo selezionato."
  3710. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3711. msgctxt "@title:tab"
  3712. msgid "Global Settings"
  3713. msgstr "Impostazioni globali"
  3714. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:17
  3715. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:468
  3716. msgctxt "@title:tab"
  3717. msgid "General"
  3718. msgstr "Generale"
  3719. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:143
  3720. msgctxt "@label"
  3721. msgid "Interface"
  3722. msgstr "Interfaccia"
  3723. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3724. msgctxt "@label"
  3725. msgid "Currency:"
  3726. msgstr "Valuta:"
  3727. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:228
  3728. msgctxt "@label"
  3729. msgid "Theme:"
  3730. msgstr "Tema:"
  3731. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3732. msgctxt "@label"
  3733. msgid "You will need to restart the application for these changes to have effect."
  3734. msgstr "Riavviare l'applicazione per rendere effettive le modifiche."
  3735. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:290
  3736. msgctxt "@info:tooltip"
  3737. msgid "Slice automatically when changing settings."
  3738. msgstr "Seziona automaticamente alla modifica delle impostazioni."
  3739. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:298
  3740. msgctxt "@option:check"
  3741. msgid "Slice automatically"
  3742. msgstr "Seziona automaticamente"
  3743. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:312
  3744. msgctxt "@label"
  3745. msgid "Viewport behavior"
  3746. msgstr "Comportamento del riquadro di visualizzazione"
  3747. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:320
  3748. msgctxt "@info:tooltip"
  3749. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3750. msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto."
  3751. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:329
  3752. msgctxt "@option:check"
  3753. msgid "Display overhang"
  3754. msgstr "Visualizza sbalzo"
  3755. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:339
  3756. msgctxt "@info:tooltip"
  3757. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3758. msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della geometria prevista."
  3759. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3760. msgctxt "@option:check"
  3761. msgid "Display model errors"
  3762. msgstr "Visualizzare gli errori del modello"
  3763. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:356
  3764. msgctxt "@info:tooltip"
  3765. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3766. msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  3767. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:361
  3768. msgctxt "@action:button"
  3769. msgid "Center camera when item is selected"
  3770. msgstr "Centratura fotocamera alla selezione dell'elemento"
  3771. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:371
  3772. msgctxt "@info:tooltip"
  3773. msgid "Should the default zoom behavior of cura be inverted?"
  3774. msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?"
  3775. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:376
  3776. msgctxt "@action:button"
  3777. msgid "Invert the direction of camera zoom."
  3778. msgstr "Inverti la direzione dello zoom della fotocamera."
  3779. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3780. msgctxt "@info:tooltip"
  3781. msgid "Should zooming move in the direction of the mouse?"
  3782. msgstr "Lo zoom si muove nella direzione del mouse?"
  3783. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:392
  3784. msgctxt "@info:tooltip"
  3785. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3786. msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  3787. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:397
  3788. msgctxt "@action:button"
  3789. msgid "Zoom toward mouse direction"
  3790. msgstr "Zoom verso la direzione del mouse"
  3791. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:423
  3792. msgctxt "@info:tooltip"
  3793. msgid "Should models on the platform be moved so that they no longer intersect?"
  3794. msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?"
  3795. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:428
  3796. msgctxt "@option:check"
  3797. msgid "Ensure models are kept apart"
  3798. msgstr "Assicurarsi che i modelli siano mantenuti separati"
  3799. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3800. msgctxt "@info:tooltip"
  3801. msgid "Should models on the platform be moved down to touch the build plate?"
  3802. msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?"
  3803. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:442
  3804. msgctxt "@option:check"
  3805. msgid "Automatically drop models to the build plate"
  3806. msgstr "Rilascia automaticamente i modelli sul piano di stampa"
  3807. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3808. msgctxt "@info:tooltip"
  3809. msgid "Show caution message in g-code reader."
  3810. msgstr "Visualizza il messaggio di avvertimento sul lettore codice G."
  3811. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:463
  3812. msgctxt "@option:check"
  3813. msgid "Caution message in g-code reader"
  3814. msgstr "Messaggio di avvertimento sul lettore codice G"
  3815. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:471
  3816. msgctxt "@info:tooltip"
  3817. msgid "Should layer be forced into compatibility mode?"
  3818. msgstr "Lo strato deve essere forzato in modalità di compatibilità?"
  3819. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3820. msgctxt "@option:check"
  3821. msgid "Force layer view compatibility mode (restart required)"
  3822. msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)"
  3823. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:486
  3824. msgctxt "@info:tooltip"
  3825. msgid "Should Cura open at the location it was closed?"
  3826. msgstr "Aprire Cura nel punto in cui è stato chiuso?"
  3827. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:491
  3828. msgctxt "@option:check"
  3829. msgid "Restore window position on start"
  3830. msgstr "Ripristinare la posizione della finestra all'avvio"
  3831. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:501
  3832. msgctxt "@info:tooltip"
  3833. msgid "What type of camera rendering should be used?"
  3834. msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?"
  3835. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:508
  3836. msgctxt "@window:text"
  3837. msgid "Camera rendering:"
  3838. msgstr "Rendering fotocamera:"
  3839. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3840. msgid "Perspective"
  3841. msgstr "Prospettiva"
  3842. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:516
  3843. msgid "Orthographic"
  3844. msgstr "Ortogonale"
  3845. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:554
  3846. msgctxt "@label"
  3847. msgid "Opening and saving files"
  3848. msgstr "Apertura e salvataggio file"
  3849. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:561
  3850. msgctxt "@info:tooltip"
  3851. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3852. msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?"
  3853. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:566
  3854. msgctxt "@option:check"
  3855. msgid "Use a single instance of Cura"
  3856. msgstr "Utilizzare una singola istanza di Cura"
  3857. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3858. msgctxt "@info:tooltip"
  3859. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3860. msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?"
  3861. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:582
  3862. msgctxt "@option:check"
  3863. msgid "Clear buildplate before loading model into the single instance"
  3864. msgstr "Pulire il piano di stampa prima di caricare il modello nella singola istanza"
  3865. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:592
  3866. msgctxt "@info:tooltip"
  3867. msgid "Should models be scaled to the build volume if they are too large?"
  3868. msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?"
  3869. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:597
  3870. msgctxt "@option:check"
  3871. msgid "Scale large models"
  3872. msgstr "Ridimensiona i modelli troppo grandi"
  3873. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:607
  3874. msgctxt "@info:tooltip"
  3875. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3876. msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?"
  3877. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:612
  3878. msgctxt "@option:check"
  3879. msgid "Scale extremely small models"
  3880. msgstr "Ridimensiona i modelli eccessivamente piccoli"
  3881. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:622
  3882. msgctxt "@info:tooltip"
  3883. msgid "Should models be selected after they are loaded?"
  3884. msgstr "I modelli devono essere selezionati dopo essere stati caricati?"
  3885. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:627
  3886. msgctxt "@option:check"
  3887. msgid "Select models when loaded"
  3888. msgstr "Selezionare i modelli dopo il caricamento"
  3889. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:637
  3890. msgctxt "@info:tooltip"
  3891. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3892. msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?"
  3893. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:642
  3894. msgctxt "@option:check"
  3895. msgid "Add machine prefix to job name"
  3896. msgstr "Aggiungi al nome del processo un prefisso macchina"
  3897. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:652
  3898. msgctxt "@info:tooltip"
  3899. msgid "Should a summary be shown when saving a project file?"
  3900. msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?"
  3901. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3902. msgctxt "@option:check"
  3903. msgid "Show summary dialog when saving project"
  3904. msgstr "Visualizza una finestra di riepilogo quando si salva un progetto"
  3905. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:666
  3906. msgctxt "@info:tooltip"
  3907. msgid "Default behavior when opening a project file"
  3908. msgstr "Comportamento predefinito all'apertura di un file progetto"
  3909. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:674
  3910. msgctxt "@window:text"
  3911. msgid "Default behavior when opening a project file: "
  3912. msgstr "Comportamento predefinito all'apertura di un file progetto: "
  3913. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:688
  3914. msgctxt "@option:openProject"
  3915. msgid "Always ask me this"
  3916. msgstr "Chiedi sempre"
  3917. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:689
  3918. msgctxt "@option:openProject"
  3919. msgid "Always open as a project"
  3920. msgstr "Apri sempre come progetto"
  3921. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:690
  3922. msgctxt "@option:openProject"
  3923. msgid "Always import models"
  3924. msgstr "Importa sempre i modelli"
  3925. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:727
  3926. msgctxt "@info:tooltip"
  3927. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3928. msgstr "Dopo aver modificato un profilo ed essere passati a un altro, si apre una finestra di dialogo che chiede se mantenere o eliminare le modifiche oppure se scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo."
  3929. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:741
  3930. msgctxt "@window:text"
  3931. msgid "Default behavior for changed setting values when switching to a different profile: "
  3932. msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: "
  3933. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:756
  3934. msgctxt "@option:discardOrKeep"
  3935. msgid "Always discard changed settings"
  3936. msgstr "Elimina sempre le impostazioni modificate"
  3937. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:757
  3938. msgctxt "@option:discardOrKeep"
  3939. msgid "Always transfer changed settings to new profile"
  3940. msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo"
  3941. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:791
  3942. msgctxt "@label"
  3943. msgid "Privacy"
  3944. msgstr "Privacy"
  3945. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:797
  3946. msgctxt "@info:tooltip"
  3947. msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  3948. msgstr "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali."
  3949. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:802
  3950. msgctxt "@option:check"
  3951. msgid "Send (anonymous) print information"
  3952. msgstr "Invia informazioni di stampa (anonime)"
  3953. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:811
  3954. msgctxt "@action:button"
  3955. msgid "More information"
  3956. msgstr "Ulteriori informazioni"
  3957. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:829
  3958. msgctxt "@label"
  3959. msgid "Updates"
  3960. msgstr "Aggiornamenti"
  3961. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:836
  3962. msgctxt "@info:tooltip"
  3963. msgid "Should Cura check for updates when the program is started?"
  3964. msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?"
  3965. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:841
  3966. msgctxt "@option:check"
  3967. msgid "Check for updates on start"
  3968. msgstr "Controlla aggiornamenti all’avvio"
  3969. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:852
  3970. msgctxt "@info:tooltip"
  3971. msgid "When checking for updates, only check for stable releases."
  3972. msgstr "Quando si verifica la presenza di aggiornamenti, cercare solo versioni stabili."
  3973. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:857
  3974. msgctxt "@option:radio"
  3975. msgid "Stable releases only"
  3976. msgstr "Solo versioni stabili"
  3977. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:868
  3978. msgctxt "@info:tooltip"
  3979. msgid "When checking for updates, check for both stable and for beta releases."
  3980. msgstr "Quando si verifica la presenza di aggiornamenti, cercare versioni stabili e beta."
  3981. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:873
  3982. msgctxt "@option:radio"
  3983. msgid "Stable and Beta releases"
  3984. msgstr "Versioni stabili e beta"
  3985. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:884
  3986. msgctxt "@info:tooltip"
  3987. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  3988. msgstr "È necessario verificare automaticamente la presenza di nuovi plugin ad ogni avvio di Cura? Si consiglia di non disabilitare questa opzione!"
  3989. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/GeneralPage.qml:889
  3990. msgctxt "@option:check"
  3991. msgid "Get notifications for plugin updates"
  3992. msgstr "Ricevi notifiche di aggiornamenti plugin"
  3993. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3994. msgctxt "@title"
  3995. msgid "Information"
  3996. msgstr "Informazioni"
  3997. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3998. msgctxt "@title:window"
  3999. msgid "Confirm Diameter Change"
  4000. msgstr "Conferma modifica diametro"
  4001. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  4002. msgctxt "@label (%1 is a number)"
  4003. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4004. msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?"
  4005. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  4006. msgctxt "@label"
  4007. msgid "Display Name"
  4008. msgstr "Visualizza nome"
  4009. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  4010. msgctxt "@label"
  4011. msgid "Material Type"
  4012. msgstr "Tipo di materiale"
  4013. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  4014. msgctxt "@label"
  4015. msgid "Color"
  4016. msgstr "Colore"
  4017. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  4018. msgctxt "@label"
  4019. msgid "Properties"
  4020. msgstr "Proprietà"
  4021. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  4022. msgctxt "@label"
  4023. msgid "Density"
  4024. msgstr "Densità"
  4025. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  4026. msgctxt "@label"
  4027. msgid "Diameter"
  4028. msgstr "Diametro"
  4029. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  4030. msgctxt "@label"
  4031. msgid "Filament Cost"
  4032. msgstr "Costo del filamento"
  4033. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  4034. msgctxt "@label"
  4035. msgid "Filament weight"
  4036. msgstr "Peso del filamento"
  4037. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  4038. msgctxt "@label"
  4039. msgid "Filament length"
  4040. msgstr "Lunghezza del filamento"
  4041. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  4042. msgctxt "@label"
  4043. msgid "Cost per Meter"
  4044. msgstr "Costo al metro"
  4045. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  4046. msgctxt "@label"
  4047. msgid "This material is linked to %1 and shares some of its properties."
  4048. msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà."
  4049. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  4050. msgctxt "@label"
  4051. msgid "Unlink Material"
  4052. msgstr "Scollega materiale"
  4053. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  4054. msgctxt "@label"
  4055. msgid "Description"
  4056. msgstr "Descrizione"
  4057. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  4058. msgctxt "@label"
  4059. msgid "Adhesion Information"
  4060. msgstr "Informazioni sull’aderenza"
  4061. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  4062. msgctxt "@action:button"
  4063. msgid "Create"
  4064. msgstr "Crea"
  4065. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  4066. msgctxt "@action:button"
  4067. msgid "Duplicate"
  4068. msgstr "Duplica"
  4069. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:199
  4070. msgctxt "@action:button Sending materials to printers"
  4071. msgid "Sync with Printers"
  4072. msgstr "Sincronizza con le stampanti"
  4073. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:248
  4074. msgctxt "@action:label"
  4075. msgid "Printer"
  4076. msgstr "Stampante"
  4077. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:329
  4078. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:337
  4079. msgctxt "@title:window"
  4080. msgid "Import Material"
  4081. msgstr "Importa materiale"
  4082. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:338
  4083. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4084. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4085. msgstr "Impossibile importare materiale <filename>{1}</filename>: <message>%2</message>"
  4086. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:342
  4087. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4088. msgid "Successfully imported material <filename>%1</filename>"
  4089. msgstr "Materiale importato correttamente <filename>%1</filename>"
  4090. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:360
  4091. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:368
  4092. msgctxt "@title:window"
  4093. msgid "Export Material"
  4094. msgstr "Esporta materiale"
  4095. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:372
  4096. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4097. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4098. msgstr "Impossibile esportare il materiale su <filename>%1</filename>: <message>%2</message>"
  4099. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:378
  4100. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4101. msgid "Successfully exported material to <filename>%1</filename>"
  4102. msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  4103. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  4104. msgctxt "@title:window"
  4105. msgid "Sync materials with printers"
  4106. msgstr "Sincronizza materiali con stampanti"
  4107. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:47
  4108. msgctxt "@title:header"
  4109. msgid "Sync materials with printers"
  4110. msgstr "Sincronizza materiali con stampanti"
  4111. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:53
  4112. msgctxt "@text"
  4113. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4114. msgstr "Seguendo alcuni semplici passaggi, sarà possibile sincronizzare tutti i profili del materiale con le stampanti."
  4115. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4116. msgctxt "@button"
  4117. msgid "Start"
  4118. msgstr "Avvio"
  4119. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:98
  4120. msgctxt "@button"
  4121. msgid "Why do I need to sync material profiles?"
  4122. msgstr "Cosa occorre per sincronizzare i profili del materiale?"
  4123. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:130
  4124. msgctxt "@title:header"
  4125. msgid "Sign in"
  4126. msgstr "Accedi"
  4127. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:137
  4128. msgctxt "@text"
  4129. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4130. msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura."
  4131. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:165
  4132. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:476
  4133. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:611
  4134. msgctxt "@button"
  4135. msgid "Sync materials with USB"
  4136. msgstr "Sincronizza materiali con USB"
  4137. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:200
  4138. msgctxt "@title:header"
  4139. msgid "The following printers will receive the new material profiles:"
  4140. msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:"
  4141. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4142. msgctxt "@title:header"
  4143. msgid "Something went wrong when sending the materials to the printers."
  4144. msgstr "Si è verificato un errore durante l'invio di materiali alle stampanti."
  4145. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4146. msgctxt "@title:header"
  4147. msgid "Material profiles successfully synced with the following printers:"
  4148. msgstr "I profili del materiale sono stati sincronizzati correttamente con le stampanti seguenti:"
  4149. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:256
  4150. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:444
  4151. msgctxt "@button"
  4152. msgid "Troubleshooting"
  4153. msgstr "Ricerca e riparazione dei guasti"
  4154. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:432
  4155. msgctxt "@text Asking the user whether printers are missing in a list."
  4156. msgid "Printers missing?"
  4157. msgstr "Mancano stampanti?"
  4158. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:434
  4159. msgctxt "@text"
  4160. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4161. msgstr "Accertarsi che tutte le stampanti siano accese e collegate a Digital Factory."
  4162. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  4163. msgctxt "@button"
  4164. msgid "Refresh List"
  4165. msgstr "Aggiorna elenco"
  4166. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:487
  4167. msgctxt "@button"
  4168. msgid "Try again"
  4169. msgstr "Riprova"
  4170. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:491
  4171. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  4172. msgctxt "@button"
  4173. msgid "Done"
  4174. msgstr "Eseguito"
  4175. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:493
  4176. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:618
  4177. msgctxt "@button"
  4178. msgid "Sync"
  4179. msgstr "Sincronizza"
  4180. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:549
  4181. msgctxt "@button"
  4182. msgid "Syncing"
  4183. msgstr "Sincronizzazione"
  4184. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:566
  4185. msgctxt "@title:header"
  4186. msgid "No printers found"
  4187. msgstr "Nessuna stampante trovata"
  4188. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:582
  4189. msgctxt "@text"
  4190. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4191. msgstr "Nessuna stampante compatibile collegata a Digital Factory. Accertarsi che la stampante sia collegata e che il firmware più recente sia in esecuzione."
  4192. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:595
  4193. msgctxt "@button"
  4194. msgid "Learn how to connect your printer to Digital Factory"
  4195. msgstr "Scopri come collegare la stampante a Digital Factory"
  4196. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:625
  4197. msgctxt "@button"
  4198. msgid "Refresh"
  4199. msgstr "Aggiorna"
  4200. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:647
  4201. msgctxt "@title:header"
  4202. msgid "Sync material profiles via USB"
  4203. msgstr "Sincronizza profili del materiale tramite USB"
  4204. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:654
  4205. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4206. msgid "Follow the following steps to load the new material profiles to your printer."
  4207. msgstr "Eseguire le operazioni descritte di seguito per caricare nuovi profili del materiale nella stampante."
  4208. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4209. msgctxt "@text"
  4210. msgid "Click the export material archive button."
  4211. msgstr "Fare clic sul pulsante Esporta archivio materiali."
  4212. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4213. msgctxt "@text"
  4214. msgid "Save the .umm file on a USB stick."
  4215. msgstr "Salvare il file .umm su una chiavetta USB."
  4216. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4217. msgctxt "@text"
  4218. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4219. msgstr "Inserire la chiavetta USB nella stampante e avviare la procedura per caricare nuovi profili del materiale."
  4220. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:692
  4221. msgctxt "@button"
  4222. msgid "How to load new material profiles to my printer"
  4223. msgstr "Come caricare nuovi profili del materiale nella stampante"
  4224. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:716
  4225. msgctxt "@button"
  4226. msgid "Export material archive"
  4227. msgstr "Esporta archivio materiali"
  4228. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:753
  4229. msgctxt "@title:window"
  4230. msgid "Export All Materials"
  4231. msgstr "Esporta tutti i materiali"
  4232. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:16
  4233. msgctxt "@title:tab"
  4234. msgid "Setting Visibility"
  4235. msgstr "Impostazione visibilità"
  4236. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:48
  4237. msgctxt "@label:textbox"
  4238. msgid "Check all"
  4239. msgstr "Controlla tutto"
  4240. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/MachinesPage.qml:16
  4241. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:473
  4242. msgctxt "@title:tab"
  4243. msgid "Printers"
  4244. msgstr "Stampanti"
  4245. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:61
  4246. msgctxt "@info:status"
  4247. msgid "Calculated"
  4248. msgstr "Calcolato"
  4249. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:75
  4250. msgctxt "@title:column"
  4251. msgid "Setting"
  4252. msgstr "Impostazione"
  4253. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:82
  4254. msgctxt "@title:column"
  4255. msgid "Profile"
  4256. msgstr "Profilo"
  4257. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:89
  4258. msgctxt "@title:column"
  4259. msgid "Current"
  4260. msgstr "Corrente"
  4261. #: /home/clamboo/Desktop/Cura/resources/qml/Preferences/ProfileTab.qml:97
  4262. msgctxt "@title:column"
  4263. msgid "Unit"
  4264. msgstr "Unità"
  4265. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:119
  4266. msgctxt "@label:MonitorStatus"
  4267. msgid "Not connected to a printer"
  4268. msgstr "Non collegato ad una stampante"
  4269. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:123
  4270. msgctxt "@label:MonitorStatus"
  4271. msgid "Printer does not accept commands"
  4272. msgstr "La stampante non accetta comandi"
  4273. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:133
  4274. msgctxt "@label:MonitorStatus"
  4275. msgid "In maintenance. Please check the printer"
  4276. msgstr "In manutenzione. Controllare la stampante"
  4277. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:144
  4278. msgctxt "@label:MonitorStatus"
  4279. msgid "Lost connection with the printer"
  4280. msgstr "Persa connessione con la stampante"
  4281. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:146
  4282. msgctxt "@label:MonitorStatus"
  4283. msgid "Printing..."
  4284. msgstr "Stampa in corso..."
  4285. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:149
  4286. msgctxt "@label:MonitorStatus"
  4287. msgid "Paused"
  4288. msgstr "In pausa"
  4289. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:152
  4290. msgctxt "@label:MonitorStatus"
  4291. msgid "Preparing..."
  4292. msgstr "Preparazione in corso..."
  4293. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:154
  4294. msgctxt "@label:MonitorStatus"
  4295. msgid "Please remove the print"
  4296. msgstr "Rimuovere la stampa"
  4297. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:326
  4298. msgctxt "@label"
  4299. msgid "Abort Print"
  4300. msgstr "Interrompi la stampa"
  4301. #: /home/clamboo/Desktop/Cura/resources/qml/MonitorButton.qml:338
  4302. msgctxt "@label"
  4303. msgid "Are you sure you want to abort the print?"
  4304. msgstr "Sei sicuro di voler interrompere la stampa?"
  4305. #: /home/clamboo/Desktop/Cura/resources/qml/ExtruderButton.qml:16
  4306. msgctxt "@label %1 is filled in with the name of an extruder"
  4307. msgid "Print Selected Model with %1"
  4308. msgid_plural "Print Selected Models with %1"
  4309. msgstr[0] "Stampa modello selezionato con %1"
  4310. msgstr[1] "Stampa modelli selezionati con %1"
  4311. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4312. msgctxt "@label:button"
  4313. msgid "My printers"
  4314. msgstr "Le mie stampanti"
  4315. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4316. msgctxt "@tooltip:button"
  4317. msgid "Monitor printers in Ultimaker Digital Factory."
  4318. msgstr "Monitora le stampanti in Ultimaker Digital Factory."
  4319. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4320. msgctxt "@tooltip:button"
  4321. msgid "Create print projects in Digital Library."
  4322. msgstr "Crea progetti di stampa in Digital Library."
  4323. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4324. msgctxt "@label:button"
  4325. msgid "Print jobs"
  4326. msgstr "Processi di stampa"
  4327. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4328. msgctxt "@tooltip:button"
  4329. msgid "Monitor print jobs and reprint from your print history."
  4330. msgstr "Monitora i processi di stampa dalla cronologia di stampa."
  4331. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4332. msgctxt "@tooltip:button"
  4333. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4334. msgstr "Estendi Ultimaker Cura con plugin e profili del materiale."
  4335. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4336. msgctxt "@tooltip:button"
  4337. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4338. msgstr "Diventa un esperto di stampa 3D con e-learning Ultimaker."
  4339. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4340. msgctxt "@label:button"
  4341. msgid "Ultimaker support"
  4342. msgstr "Supporto Ultimaker"
  4343. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4344. msgctxt "@tooltip:button"
  4345. msgid "Learn how to get started with Ultimaker Cura."
  4346. msgstr "Scopri come iniziare a utilizzare Ultimaker Cura."
  4347. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4348. msgctxt "@label:button"
  4349. msgid "Ask a question"
  4350. msgstr "Fai una domanda"
  4351. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4352. msgctxt "@tooltip:button"
  4353. msgid "Consult the Ultimaker Community."
  4354. msgstr "Consulta la community di Ultimaker."
  4355. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4356. msgctxt "@label:button"
  4357. msgid "Report a bug"
  4358. msgstr "Segnala un errore"
  4359. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4360. msgctxt "@tooltip:button"
  4361. msgid "Let developers know that something is going wrong."
  4362. msgstr "Informa gli sviluppatori che si è verificato un errore."
  4363. #: /home/clamboo/Desktop/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4364. msgctxt "@tooltip:button"
  4365. msgid "Visit the Ultimaker website."
  4366. msgstr "Visita il sito Web Ultimaker."
  4367. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4368. msgctxt "@label"
  4369. msgid "Printer control"
  4370. msgstr "Comando stampante"
  4371. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4372. msgctxt "@label"
  4373. msgid "Jog Position"
  4374. msgstr "Posizione Jog"
  4375. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4376. msgctxt "@label"
  4377. msgid "X/Y"
  4378. msgstr "X/Y"
  4379. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4380. msgctxt "@label"
  4381. msgid "Z"
  4382. msgstr "Z"
  4383. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4384. msgctxt "@label"
  4385. msgid "Jog Distance"
  4386. msgstr "Distanza Jog"
  4387. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4388. msgctxt "@label"
  4389. msgid "Send G-code"
  4390. msgstr "Invia codice G"
  4391. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4392. msgctxt "@tooltip of G-code command input"
  4393. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4394. msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando."
  4395. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4396. msgctxt "@label"
  4397. msgid "Extruder"
  4398. msgstr "Estrusore"
  4399. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4400. msgctxt "@tooltip"
  4401. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  4402. msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta."
  4403. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4404. msgctxt "@tooltip"
  4405. msgid "The current temperature of this hotend."
  4406. msgstr "La temperatura corrente di questa estremità calda."
  4407. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4408. msgctxt "@tooltip of temperature input"
  4409. msgid "The temperature to pre-heat the hotend to."
  4410. msgstr "La temperatura di preriscaldo dell’estremità calda."
  4411. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4412. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4413. msgctxt "@button Cancel pre-heating"
  4414. msgid "Cancel"
  4415. msgstr "Annulla"
  4416. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4417. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4418. msgctxt "@button"
  4419. msgid "Pre-heat"
  4420. msgstr "Pre-riscaldo"
  4421. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4422. msgctxt "@tooltip of pre-heat"
  4423. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  4424. msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa."
  4425. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4426. msgctxt "@tooltip"
  4427. msgid "The colour of the material in this extruder."
  4428. msgstr "Il colore del materiale di questo estrusore."
  4429. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4430. msgctxt "@tooltip"
  4431. msgid "The material in this extruder."
  4432. msgstr "Il materiale di questo estrusore."
  4433. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4434. msgctxt "@tooltip"
  4435. msgid "The nozzle inserted in this extruder."
  4436. msgstr "L’ugello inserito in questo estrusore."
  4437. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4438. msgctxt "@info:status"
  4439. msgid "The printer is not connected."
  4440. msgstr "La stampante non è collegata."
  4441. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4442. msgctxt "@label"
  4443. msgid "Build plate"
  4444. msgstr "Piano di stampa"
  4445. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4446. msgctxt "@tooltip"
  4447. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  4448. msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato."
  4449. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4450. msgctxt "@tooltip"
  4451. msgid "The current temperature of the heated bed."
  4452. msgstr "La temperatura corrente del piano riscaldato."
  4453. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4454. msgctxt "@tooltip of temperature input"
  4455. msgid "The temperature to pre-heat the bed to."
  4456. msgstr "La temperatura di preriscaldo del piano."
  4457. #: /home/clamboo/Desktop/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4458. msgctxt "@tooltip of pre-heat"
  4459. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  4460. msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa."
  4461. #: /home/clamboo/Desktop/Cura/resources/qml/Account/AccountWidget.qml:24
  4462. msgctxt "@action:button"
  4463. msgid "Sign in"
  4464. msgstr "Accedi"
  4465. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:42
  4466. msgctxt "@text"
  4467. msgid ""
  4468. "- Add material profiles and plug-ins from the Marketplace\n"
  4469. "- Back-up and sync your material profiles and plug-ins\n"
  4470. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4471. msgstr ""
  4472. "- Aggiungi profili materiale e plugin dal Marketplace\n"
  4473. "- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n"
  4474. "- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker"
  4475. #: /home/clamboo/Desktop/Cura/resources/qml/Account/GeneralOperations.qml:62
  4476. msgctxt "@button"
  4477. msgid "Create a free Ultimaker account"
  4478. msgstr "Crea un account Ultimaker gratuito"
  4479. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:82
  4480. msgctxt "@label The argument is a timestamp"
  4481. msgid "Last update: %1"
  4482. msgstr "Ultimo aggiornamento: %1"
  4483. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:110
  4484. msgctxt "@button"
  4485. msgid "Ultimaker Account"
  4486. msgstr "Account Ultimaker"
  4487. #: /home/clamboo/Desktop/Cura/resources/qml/Account/UserOperations.qml:126
  4488. msgctxt "@button"
  4489. msgid "Sign Out"
  4490. msgstr "Esci"
  4491. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:28
  4492. msgctxt "@label"
  4493. msgid "Checking..."
  4494. msgstr "Verifica in corso..."
  4495. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:35
  4496. msgctxt "@label"
  4497. msgid "Account synced"
  4498. msgstr "Account sincronizzato"
  4499. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:42
  4500. msgctxt "@label"
  4501. msgid "Something went wrong..."
  4502. msgstr "Si è verificato un errore..."
  4503. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:96
  4504. msgctxt "@button"
  4505. msgid "Install pending updates"
  4506. msgstr "Installare gli aggiornamenti in attesa"
  4507. #: /home/clamboo/Desktop/Cura/resources/qml/Account/SyncState.qml:118
  4508. msgctxt "@button"
  4509. msgid "Check for account updates"
  4510. msgstr "Verificare gli aggiornamenti dell'account"
  4511. #: /home/clamboo/Desktop/Cura/resources/qml/JobSpecs.qml:99
  4512. msgctxt "@text Print job name"
  4513. msgid "Untitled"
  4514. msgstr "Senza titolo"
  4515. #: /home/clamboo/Desktop/Cura/resources/qml/Widgets/ComboBox.qml:18
  4516. msgctxt "@label"
  4517. msgid "No items to select from"
  4518. msgstr "Nessun elemento da selezionare da"
  4519. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:83
  4520. msgctxt "@action:inmenu"
  4521. msgid "Show Online Troubleshooting Guide"
  4522. msgstr "Mostra la Guida ricerca e riparazione dei guasti online"
  4523. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:90
  4524. msgctxt "@action:inmenu"
  4525. msgid "Toggle Full Screen"
  4526. msgstr "Attiva/disattiva schermo intero"
  4527. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:98
  4528. msgctxt "@action:inmenu"
  4529. msgid "Exit Full Screen"
  4530. msgstr "Esci da schermo intero"
  4531. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:105
  4532. msgctxt "@action:inmenu menubar:edit"
  4533. msgid "&Undo"
  4534. msgstr "&Annulla"
  4535. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:115
  4536. msgctxt "@action:inmenu menubar:edit"
  4537. msgid "&Redo"
  4538. msgstr "Ri&peti"
  4539. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:133
  4540. msgctxt "@action:inmenu menubar:file"
  4541. msgid "&Quit"
  4542. msgstr "&Esci"
  4543. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:141
  4544. msgctxt "@action:inmenu menubar:view"
  4545. msgid "3D View"
  4546. msgstr "Visualizzazione 3D"
  4547. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:148
  4548. msgctxt "@action:inmenu menubar:view"
  4549. msgid "Front View"
  4550. msgstr "Visualizzazione frontale"
  4551. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:155
  4552. msgctxt "@action:inmenu menubar:view"
  4553. msgid "Top View"
  4554. msgstr "Visualizzazione superiore"
  4555. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:162
  4556. msgctxt "@action:inmenu menubar:view"
  4557. msgid "Bottom View"
  4558. msgstr "Vista inferiore"
  4559. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:169
  4560. msgctxt "@action:inmenu menubar:view"
  4561. msgid "Left Side View"
  4562. msgstr "Visualizzazione lato sinistro"
  4563. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:176
  4564. msgctxt "@action:inmenu menubar:view"
  4565. msgid "Right Side View"
  4566. msgstr "Visualizzazione lato destro"
  4567. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:190
  4568. msgctxt "@action:inmenu"
  4569. msgid "Configure Cura..."
  4570. msgstr "Configura Cura..."
  4571. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:197
  4572. msgctxt "@action:inmenu menubar:printer"
  4573. msgid "&Add Printer..."
  4574. msgstr "&Aggiungi stampante..."
  4575. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:203
  4576. msgctxt "@action:inmenu menubar:printer"
  4577. msgid "Manage Pr&inters..."
  4578. msgstr "Gestione stampanti..."
  4579. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:210
  4580. msgctxt "@action:inmenu"
  4581. msgid "Manage Materials..."
  4582. msgstr "Gestione materiali..."
  4583. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:218
  4584. msgctxt "@action:inmenu"
  4585. msgid "Add more materials from Marketplace"
  4586. msgstr "Aggiungere altri materiali da Marketplace"
  4587. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:225
  4588. msgctxt "@action:inmenu menubar:profile"
  4589. msgid "&Update profile with current settings/overrides"
  4590. msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti"
  4591. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:233
  4592. msgctxt "@action:inmenu menubar:profile"
  4593. msgid "&Discard current changes"
  4594. msgstr "&Elimina le modifiche correnti"
  4595. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:245
  4596. msgctxt "@action:inmenu menubar:profile"
  4597. msgid "&Create profile from current settings/overrides..."
  4598. msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..."
  4599. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:251
  4600. msgctxt "@action:inmenu menubar:profile"
  4601. msgid "Manage Profiles..."
  4602. msgstr "Gestione profili..."
  4603. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:259
  4604. msgctxt "@action:inmenu menubar:help"
  4605. msgid "Show Online &Documentation"
  4606. msgstr "Mostra documentazione &online"
  4607. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:267
  4608. msgctxt "@action:inmenu menubar:help"
  4609. msgid "Report a &Bug"
  4610. msgstr "Se&gnala un errore"
  4611. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:275
  4612. msgctxt "@action:inmenu menubar:help"
  4613. msgid "What's New"
  4614. msgstr "Scopri le novità"
  4615. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:289
  4616. msgctxt "@action:inmenu menubar:help"
  4617. msgid "About..."
  4618. msgstr "Informazioni..."
  4619. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:296
  4620. msgctxt "@action:inmenu menubar:edit"
  4621. msgid "Delete Selected"
  4622. msgstr "Cancella selezionati"
  4623. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:306
  4624. msgctxt "@action:inmenu menubar:edit"
  4625. msgid "Center Selected"
  4626. msgstr "Centra selezionati"
  4627. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:315
  4628. msgctxt "@action:inmenu menubar:edit"
  4629. msgid "Multiply Selected"
  4630. msgstr "Moltiplica selezionati"
  4631. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:324
  4632. msgctxt "@action:inmenu"
  4633. msgid "Delete Model"
  4634. msgstr "Elimina modello"
  4635. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:332
  4636. msgctxt "@action:inmenu"
  4637. msgid "Ce&nter Model on Platform"
  4638. msgstr "C&entra modello su piattaforma"
  4639. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:338
  4640. msgctxt "@action:inmenu menubar:edit"
  4641. msgid "&Group Models"
  4642. msgstr "&Raggruppa modelli"
  4643. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:358
  4644. msgctxt "@action:inmenu menubar:edit"
  4645. msgid "Ungroup Models"
  4646. msgstr "Separa modelli"
  4647. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:368
  4648. msgctxt "@action:inmenu menubar:edit"
  4649. msgid "&Merge Models"
  4650. msgstr "&Unisci modelli"
  4651. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:378
  4652. msgctxt "@action:inmenu"
  4653. msgid "&Multiply Model..."
  4654. msgstr "Mo&ltiplica modello..."
  4655. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:385
  4656. msgctxt "@action:inmenu menubar:edit"
  4657. msgid "Select All Models"
  4658. msgstr "Seleziona tutti i modelli"
  4659. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:395
  4660. msgctxt "@action:inmenu menubar:edit"
  4661. msgid "Clear Build Plate"
  4662. msgstr "Cancellare piano di stampa"
  4663. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:405
  4664. msgctxt "@action:inmenu menubar:file"
  4665. msgid "Reload All Models"
  4666. msgstr "Ricarica tutti i modelli"
  4667. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:414
  4668. msgctxt "@action:inmenu menubar:edit"
  4669. msgid "Arrange All Models To All Build Plates"
  4670. msgstr "Sistema tutti i modelli su tutti i piani di stampa"
  4671. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:421
  4672. msgctxt "@action:inmenu menubar:edit"
  4673. msgid "Arrange All Models"
  4674. msgstr "Sistema tutti i modelli"
  4675. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:429
  4676. msgctxt "@action:inmenu menubar:edit"
  4677. msgid "Arrange Selection"
  4678. msgstr "Sistema selezione"
  4679. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:436
  4680. msgctxt "@action:inmenu menubar:edit"
  4681. msgid "Reset All Model Positions"
  4682. msgstr "Reimposta tutte le posizioni dei modelli"
  4683. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:443
  4684. msgctxt "@action:inmenu menubar:edit"
  4685. msgid "Reset All Model Transformations"
  4686. msgstr "Reimposta tutte le trasformazioni dei modelli"
  4687. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:452
  4688. msgctxt "@action:inmenu menubar:file"
  4689. msgid "&Open File(s)..."
  4690. msgstr "&Apri file..."
  4691. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:462
  4692. msgctxt "@action:inmenu menubar:file"
  4693. msgid "&New Project..."
  4694. msgstr "&Nuovo Progetto..."
  4695. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:469
  4696. msgctxt "@action:inmenu menubar:help"
  4697. msgid "Show Configuration Folder"
  4698. msgstr "Mostra cartella di configurazione"
  4699. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:476
  4700. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:535
  4701. msgctxt "@action:menu"
  4702. msgid "Configure setting visibility..."
  4703. msgstr "Configura visibilità delle impostazioni..."
  4704. #: /home/clamboo/Desktop/Cura/resources/qml/Actions.qml:483
  4705. msgctxt "@action:menu"
  4706. msgid "&Marketplace"
  4707. msgstr "&Mercato"
  4708. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:81
  4709. msgctxt "@label"
  4710. msgid "This setting is not used because all the settings that it influences are overridden."
  4711. msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override."
  4712. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:86
  4713. msgctxt "@label Header for list of settings."
  4714. msgid "Affects"
  4715. msgstr "Influisce su"
  4716. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:91
  4717. msgctxt "@label Header for list of settings."
  4718. msgid "Affected By"
  4719. msgstr "Influenzato da"
  4720. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:188
  4721. msgctxt "@label"
  4722. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4723. msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori."
  4724. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:192
  4725. msgctxt "@label"
  4726. msgid "This setting is resolved from conflicting extruder-specific values:"
  4727. msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:"
  4728. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:232
  4729. msgctxt "@label"
  4730. msgid ""
  4731. "This setting has a value that is different from the profile.\n"
  4732. "\n"
  4733. "Click to restore the value of the profile."
  4734. msgstr ""
  4735. "Questa impostazione ha un valore diverso dal profilo.\n"
  4736. "\n"
  4737. "Fare clic per ripristinare il valore del profilo."
  4738. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingItem.qml:332
  4739. msgctxt "@label"
  4740. msgid ""
  4741. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4742. "\n"
  4743. "Click to restore the calculated value."
  4744. msgstr ""
  4745. "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n"
  4746. "\n"
  4747. "Fare clic per ripristinare il valore calcolato."
  4748. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:51
  4749. msgctxt "@label:textbox"
  4750. msgid "Search settings"
  4751. msgstr "Impostazioni ricerca"
  4752. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:453
  4753. msgctxt "@action:menu"
  4754. msgid "Copy value to all extruders"
  4755. msgstr "Copia valore su tutti gli estrusori"
  4756. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:462
  4757. msgctxt "@action:menu"
  4758. msgid "Copy all changed values to all extruders"
  4759. msgstr "Copia tutti i valori modificati su tutti gli estrusori"
  4760. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:499
  4761. msgctxt "@action:menu"
  4762. msgid "Hide this setting"
  4763. msgstr "Nascondi questa impostazione"
  4764. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:512
  4765. msgctxt "@action:menu"
  4766. msgid "Don't show this setting"
  4767. msgstr "Nascondi questa impostazione"
  4768. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingView.qml:516
  4769. msgctxt "@action:menu"
  4770. msgid "Keep this setting visible"
  4771. msgstr "Mantieni visibile questa impostazione"
  4772. #: /home/clamboo/Desktop/Cura/resources/qml/Settings/SettingCategory.qml:203
  4773. msgctxt "@label"
  4774. msgid ""
  4775. "Some hidden settings use values different from their normal calculated value.\n"
  4776. "\n"
  4777. "Click to make these settings visible."
  4778. msgstr ""
  4779. "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n"
  4780. "\n"
  4781. "Fare clic per rendere visibili queste impostazioni."
  4782. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:257
  4783. msgctxt "@label"
  4784. msgid "This package will be installed after restarting."
  4785. msgstr "Questo pacchetto sarà installato dopo il riavvio."
  4786. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:471
  4787. msgctxt "@title:tab"
  4788. msgid "Settings"
  4789. msgstr "Impostazioni"
  4790. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:594
  4791. msgctxt "@title:window %1 is the application name"
  4792. msgid "Closing %1"
  4793. msgstr "Chiusura di %1"
  4794. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:595
  4795. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:607
  4796. msgctxt "@label %1 is the application name"
  4797. msgid "Are you sure you want to exit %1?"
  4798. msgstr "Chiudere %1?"
  4799. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:755
  4800. msgctxt "@window:title"
  4801. msgid "Install Package"
  4802. msgstr "Installa il pacchetto"
  4803. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:763
  4804. msgctxt "@title:window"
  4805. msgid "Open File(s)"
  4806. msgstr "Apri file"
  4807. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:766
  4808. msgctxt "@text:window"
  4809. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  4810. msgstr "Rilevata la presenza di uno o più file codice G tra i file selezionati. È possibile aprire solo un file codice G alla volta. Se desideri aprire un file codice G, selezionane uno solo."
  4811. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:875
  4812. msgctxt "@title:window"
  4813. msgid "Add Printer"
  4814. msgstr "Aggiungi stampante"
  4815. #: /home/clamboo/Desktop/Cura/resources/qml/Cura.qml:883
  4816. msgctxt "@title:window"
  4817. msgid "What's New"
  4818. msgstr "Scopri le novità"
  4819. #: PerObjectSettingsTool/plugin.json
  4820. msgctxt "description"
  4821. msgid "Provides the Per Model Settings."
  4822. msgstr "Fornisce le impostazioni per modello."
  4823. #: PerObjectSettingsTool/plugin.json
  4824. msgctxt "name"
  4825. msgid "Per Model Settings Tool"
  4826. msgstr "Utilità impostazioni per modello"
  4827. #: CuraProfileReader/plugin.json
  4828. msgctxt "description"
  4829. msgid "Provides support for importing Cura profiles."
  4830. msgstr "Fornisce supporto per l'importazione dei profili Cura."
  4831. #: CuraProfileReader/plugin.json
  4832. msgctxt "name"
  4833. msgid "Cura Profile Reader"
  4834. msgstr "Lettore profilo Cura"
  4835. #: X3DReader/plugin.json
  4836. msgctxt "description"
  4837. msgid "Provides support for reading X3D files."
  4838. msgstr "Fornisce il supporto per la lettura di file X3D."
  4839. #: X3DReader/plugin.json
  4840. msgctxt "name"
  4841. msgid "X3D Reader"
  4842. msgstr "Lettore X3D"
  4843. #: CuraDrive/plugin.json
  4844. msgctxt "description"
  4845. msgid "Backup and restore your configuration."
  4846. msgstr "Effettua il backup o ripristina la configurazione."
  4847. #: CuraDrive/plugin.json
  4848. msgctxt "name"
  4849. msgid "Cura Backups"
  4850. msgstr "Backup Cura"
  4851. #: MachineSettingsAction/plugin.json
  4852. msgctxt "description"
  4853. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4854. msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  4855. #: MachineSettingsAction/plugin.json
  4856. msgctxt "name"
  4857. msgid "Machine Settings Action"
  4858. msgstr "Azione Impostazioni macchina"
  4859. #: SupportEraser/plugin.json
  4860. msgctxt "description"
  4861. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4862. msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni"
  4863. #: SupportEraser/plugin.json
  4864. msgctxt "name"
  4865. msgid "Support Eraser"
  4866. msgstr "Cancellazione supporto"
  4867. #: RemovableDriveOutputDevice/plugin.json
  4868. msgctxt "description"
  4869. msgid "Provides removable drive hotplugging and writing support."
  4870. msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  4871. #: RemovableDriveOutputDevice/plugin.json
  4872. msgctxt "name"
  4873. msgid "Removable Drive Output Device Plugin"
  4874. msgstr "Plugin dispositivo di output unità rimovibile"
  4875. #: FirmwareUpdater/plugin.json
  4876. msgctxt "description"
  4877. msgid "Provides a machine actions for updating firmware."
  4878. msgstr "Fornisce azioni macchina per l’aggiornamento del firmware."
  4879. #: FirmwareUpdater/plugin.json
  4880. msgctxt "name"
  4881. msgid "Firmware Updater"
  4882. msgstr "Aggiornamento firmware"
  4883. #: LegacyProfileReader/plugin.json
  4884. msgctxt "description"
  4885. msgid "Provides support for importing profiles from legacy Cura versions."
  4886. msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  4887. #: LegacyProfileReader/plugin.json
  4888. msgctxt "name"
  4889. msgid "Legacy Cura Profile Reader"
  4890. msgstr "Lettore legacy profilo Cura"
  4891. #: 3MFReader/plugin.json
  4892. msgctxt "description"
  4893. msgid "Provides support for reading 3MF files."
  4894. msgstr "Fornisce il supporto per la lettura di file 3MF."
  4895. #: 3MFReader/plugin.json
  4896. msgctxt "name"
  4897. msgid "3MF Reader"
  4898. msgstr "Lettore 3MF"
  4899. #: UFPWriter/plugin.json
  4900. msgctxt "description"
  4901. msgid "Provides support for writing Ultimaker Format Packages."
  4902. msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker."
  4903. #: UFPWriter/plugin.json
  4904. msgctxt "name"
  4905. msgid "UFP Writer"
  4906. msgstr "Writer UFP"
  4907. #: SentryLogger/plugin.json
  4908. msgctxt "description"
  4909. msgid "Logs certain events so that they can be used by the crash reporter"
  4910. msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash"
  4911. #: SentryLogger/plugin.json
  4912. msgctxt "name"
  4913. msgid "Sentry Logger"
  4914. msgstr "Logger sentinella"
  4915. #: GCodeProfileReader/plugin.json
  4916. msgctxt "description"
  4917. msgid "Provides support for importing profiles from g-code files."
  4918. msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  4919. #: GCodeProfileReader/plugin.json
  4920. msgctxt "name"
  4921. msgid "G-code Profile Reader"
  4922. msgstr "Lettore profilo codice G"
  4923. #: PreviewStage/plugin.json
  4924. msgctxt "description"
  4925. msgid "Provides a preview stage in Cura."
  4926. msgstr "Fornisce una fase di anteprima in Cura."
  4927. #: PreviewStage/plugin.json
  4928. msgctxt "name"
  4929. msgid "Preview Stage"
  4930. msgstr "Fase di anteprima"
  4931. #: XRayView/plugin.json
  4932. msgctxt "description"
  4933. msgid "Provides the X-Ray view."
  4934. msgstr "Fornisce la vista a raggi X."
  4935. #: XRayView/plugin.json
  4936. msgctxt "name"
  4937. msgid "X-Ray View"
  4938. msgstr "Vista ai raggi X"
  4939. #: CuraEngineBackend/plugin.json
  4940. msgctxt "description"
  4941. msgid "Provides the link to the CuraEngine slicing backend."
  4942. msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
  4943. #: CuraEngineBackend/plugin.json
  4944. msgctxt "name"
  4945. msgid "CuraEngine Backend"
  4946. msgstr "Back-end CuraEngine"
  4947. #: AMFReader/plugin.json
  4948. msgctxt "description"
  4949. msgid "Provides support for reading AMF files."
  4950. msgstr "Fornisce il supporto per la lettura di file 3MF."
  4951. #: AMFReader/plugin.json
  4952. msgctxt "name"
  4953. msgid "AMF Reader"
  4954. msgstr "Lettore 3MF"
  4955. #: GCodeGzReader/plugin.json
  4956. msgctxt "description"
  4957. msgid "Reads g-code from a compressed archive."
  4958. msgstr "Legge il codice G da un archivio compresso."
  4959. #: GCodeGzReader/plugin.json
  4960. msgctxt "name"
  4961. msgid "Compressed G-code Reader"
  4962. msgstr "Lettore codice G compresso"
  4963. #: PostProcessingPlugin/plugin.json
  4964. msgctxt "description"
  4965. msgid "Extension that allows for user created scripts for post processing"
  4966. msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  4967. #: PostProcessingPlugin/plugin.json
  4968. msgctxt "name"
  4969. msgid "Post Processing"
  4970. msgstr "Post-elaborazione"
  4971. #: CuraProfileWriter/plugin.json
  4972. msgctxt "description"
  4973. msgid "Provides support for exporting Cura profiles."
  4974. msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  4975. #: CuraProfileWriter/plugin.json
  4976. msgctxt "name"
  4977. msgid "Cura Profile Writer"
  4978. msgstr "Writer profilo Cura"
  4979. #: USBPrinting/plugin.json
  4980. msgctxt "description"
  4981. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4982. msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware."
  4983. #: USBPrinting/plugin.json
  4984. msgctxt "name"
  4985. msgid "USB printing"
  4986. msgstr "Stampa USB"
  4987. #: PrepareStage/plugin.json
  4988. msgctxt "description"
  4989. msgid "Provides a prepare stage in Cura."
  4990. msgstr "Fornisce una fase di preparazione in Cura."
  4991. #: PrepareStage/plugin.json
  4992. msgctxt "name"
  4993. msgid "Prepare Stage"
  4994. msgstr "Fase di preparazione"
  4995. #: GCodeReader/plugin.json
  4996. msgctxt "description"
  4997. msgid "Allows loading and displaying G-code files."
  4998. msgstr "Consente il caricamento e la visualizzazione dei file codice G."
  4999. #: GCodeReader/plugin.json
  5000. msgctxt "name"
  5001. msgid "G-code Reader"
  5002. msgstr "Lettore codice G"
  5003. #: ImageReader/plugin.json
  5004. msgctxt "description"
  5005. msgid "Enables ability to generate printable geometry from 2D image files."
  5006. msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  5007. #: ImageReader/plugin.json
  5008. msgctxt "name"
  5009. msgid "Image Reader"
  5010. msgstr "Lettore di immagine"
  5011. #: UltimakerMachineActions/plugin.json
  5012. msgctxt "description"
  5013. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  5014. msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  5015. #: UltimakerMachineActions/plugin.json
  5016. msgctxt "name"
  5017. msgid "Ultimaker machine actions"
  5018. msgstr "Azioni della macchina Ultimaker"
  5019. #: GCodeGzWriter/plugin.json
  5020. msgctxt "description"
  5021. msgid "Writes g-code to a compressed archive."
  5022. msgstr "Scrive il codice G in un archivio compresso."
  5023. #: GCodeGzWriter/plugin.json
  5024. msgctxt "name"
  5025. msgid "Compressed G-code Writer"
  5026. msgstr "Writer codice G compresso"
  5027. #: FirmwareUpdateChecker/plugin.json
  5028. msgctxt "description"
  5029. msgid "Checks for firmware updates."
  5030. msgstr "Controlla disponibilità di aggiornamenti firmware."
  5031. #: FirmwareUpdateChecker/plugin.json
  5032. msgctxt "name"
  5033. msgid "Firmware Update Checker"
  5034. msgstr "Controllo aggiornamento firmware"
  5035. #: SliceInfoPlugin/plugin.json
  5036. msgctxt "description"
  5037. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5038. msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze."
  5039. #: SliceInfoPlugin/plugin.json
  5040. msgctxt "name"
  5041. msgid "Slice info"
  5042. msgstr "Informazioni su sezionamento"
  5043. #: XmlMaterialProfile/plugin.json
  5044. msgctxt "description"
  5045. msgid "Provides capabilities to read and write XML-based material profiles."
  5046. msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  5047. #: XmlMaterialProfile/plugin.json
  5048. msgctxt "name"
  5049. msgid "Material Profiles"
  5050. msgstr "Profili del materiale"
  5051. #: DigitalLibrary/plugin.json
  5052. msgctxt "description"
  5053. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  5054. msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library."
  5055. #: DigitalLibrary/plugin.json
  5056. msgctxt "name"
  5057. msgid "Ultimaker Digital Library"
  5058. msgstr "Ultimaker Digital Library"
  5059. #: Toolbox/plugin.json
  5060. msgctxt "description"
  5061. msgid "Find, manage and install new Cura packages."
  5062. msgstr "Trova, gestisce ed installa nuovi pacchetti Cura."
  5063. #: Toolbox/plugin.json
  5064. msgctxt "name"
  5065. msgid "Toolbox"
  5066. msgstr "Casella degli strumenti"
  5067. #: GCodeWriter/plugin.json
  5068. msgctxt "description"
  5069. msgid "Writes g-code to a file."
  5070. msgstr "Scrive il codice G in un file."
  5071. #: GCodeWriter/plugin.json
  5072. msgctxt "name"
  5073. msgid "G-code Writer"
  5074. msgstr "Writer codice G"
  5075. #: SimulationView/plugin.json
  5076. msgctxt "description"
  5077. msgid "Provides the Simulation view."
  5078. msgstr "Fornisce la vista di simulazione."
  5079. #: SimulationView/plugin.json
  5080. msgctxt "name"
  5081. msgid "Simulation View"
  5082. msgstr "Vista simulazione"
  5083. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5084. msgctxt "description"
  5085. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5086. msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6."
  5087. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5088. msgctxt "name"
  5089. msgid "Version Upgrade 4.5 to 4.6"
  5090. msgstr "Aggiornamento della versione da 4.5 a 4.6"
  5091. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5092. msgctxt "description"
  5093. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5094. msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  5095. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5096. msgctxt "name"
  5097. msgid "Version Upgrade 2.5 to 2.6"
  5098. msgstr "Aggiornamento della versione da 2.5 a 2.6"
  5099. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5100. msgctxt "description"
  5101. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5102. msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2."
  5103. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5104. msgctxt "name"
  5105. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5106. msgstr "Aggiornamento versione da 4.6.0 a 4.6.2"
  5107. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5108. msgctxt "description"
  5109. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5110. msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8."
  5111. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5112. msgctxt "name"
  5113. msgid "Version Upgrade 4.7 to 4.8"
  5114. msgstr "Aggiornamento della versione da 4.7 a 4.8"
  5115. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5116. msgctxt "description"
  5117. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5118. msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5."
  5119. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5120. msgctxt "name"
  5121. msgid "Version Upgrade 3.4 to 3.5"
  5122. msgstr "Aggiornamento della versione da 3.4 a 3.5"
  5123. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5124. msgctxt "description"
  5125. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5126. msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  5127. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5128. msgctxt "name"
  5129. msgid "Version Upgrade 2.1 to 2.2"
  5130. msgstr "Aggiornamento della versione da 2.1 a 2.2"
  5131. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5132. msgctxt "description"
  5133. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5134. msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3."
  5135. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5136. msgctxt "name"
  5137. msgid "Version Upgrade 3.2 to 3.3"
  5138. msgstr "Aggiornamento della versione da 3.2 a 3.3"
  5139. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5140. msgctxt "description"
  5141. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5142. msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9."
  5143. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5144. msgctxt "name"
  5145. msgid "Version Upgrade 4.8 to 4.9"
  5146. msgstr "Aggiornamento della versione da 4.8 a 4.9"
  5147. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5148. msgctxt "description"
  5149. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5150. msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7."
  5151. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5152. msgctxt "name"
  5153. msgid "Version Upgrade 4.6.2 to 4.7"
  5154. msgstr "Aggiornamento versione da 4.6.2 a 4.7"
  5155. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5156. msgctxt "description"
  5157. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5158. msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3."
  5159. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5160. msgctxt "name"
  5161. msgid "Version Upgrade 4.2 to 4.3"
  5162. msgstr "Aggiornamento della versione da 4.2 a 4.3"
  5163. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5164. msgctxt "description"
  5165. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5166. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4."
  5167. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5168. msgctxt "name"
  5169. msgid "Version Upgrade 4.3 to 4.4"
  5170. msgstr "Aggiornamento della versione da 4.3 a 4.4"
  5171. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5172. msgctxt "description"
  5173. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5174. msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10."
  5175. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5176. msgctxt "name"
  5177. msgid "Version Upgrade 4.9 to 4.10"
  5178. msgstr "Aggiornamento della versione da 4.9 a 4.10"
  5179. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5180. msgctxt "description"
  5181. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5182. msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0."
  5183. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5184. msgctxt "name"
  5185. msgid "Version Upgrade 2.7 to 3.0"
  5186. msgstr "Aggiornamento della versione da 2.7 a 3.0"
  5187. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5188. msgctxt "description"
  5189. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5190. msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7."
  5191. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5192. msgctxt "name"
  5193. msgid "Version Upgrade 2.6 to 2.7"
  5194. msgstr "Aggiornamento della versione da 2.6 a 2.7"
  5195. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5196. msgctxt "description"
  5197. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5198. msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12."
  5199. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5200. msgctxt "name"
  5201. msgid "Version Upgrade 4.11 to 4.12"
  5202. msgstr "Aggiornamento della versione da 4.11 a 4.12"
  5203. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5204. msgctxt "description"
  5205. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5206. msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4."
  5207. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5208. msgctxt "name"
  5209. msgid "Version Upgrade 3.3 to 3.4"
  5210. msgstr "Aggiornamento della versione da 3.3 a 3.4"
  5211. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5212. msgctxt "description"
  5213. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5214. msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1."
  5215. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5216. msgctxt "name"
  5217. msgid "Version Upgrade 3.0 to 3.1"
  5218. msgstr "Aggiornamento della versione da 3.0 a 3.1"
  5219. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5220. msgctxt "description"
  5221. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5222. msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1."
  5223. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5224. msgctxt "name"
  5225. msgid "Version Upgrade 4.0 to 4.1"
  5226. msgstr "Aggiornamento della versione da 4.0 a 4.1"
  5227. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5228. msgctxt "description"
  5229. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5230. msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5."
  5231. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5232. msgctxt "name"
  5233. msgid "Version Upgrade 4.4 to 4.5"
  5234. msgstr "Aggiornamento della versione da 4.4 a 4.5"
  5235. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5236. msgctxt "description"
  5237. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5238. msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  5239. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5240. msgctxt "name"
  5241. msgid "Version Upgrade 2.2 to 2.4"
  5242. msgstr "Aggiornamento della versione da 2.2 a 2.4"
  5243. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5244. msgctxt "description"
  5245. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5246. msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2."
  5247. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5248. msgctxt "name"
  5249. msgid "Version Upgrade 4.1 to 4.2"
  5250. msgstr "Aggiornamento della versione da 4.1 a 4.2"
  5251. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5252. msgctxt "description"
  5253. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5254. msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0."
  5255. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5256. msgctxt "name"
  5257. msgid "Version Upgrade 3.5 to 4.0"
  5258. msgstr "Aggiornamento della versione da 3.5 a 4.0"
  5259. #: UM3NetworkPrinting/plugin.json
  5260. msgctxt "description"
  5261. msgid "Manages network connections to Ultimaker networked printers."
  5262. msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete."
  5263. #: UM3NetworkPrinting/plugin.json
  5264. msgctxt "name"
  5265. msgid "Ultimaker Network Connection"
  5266. msgstr "Connessione di rete Ultimaker"
  5267. #: TrimeshReader/plugin.json
  5268. msgctxt "description"
  5269. msgid "Provides support for reading model files."
  5270. msgstr "Fornisce supporto per la lettura dei file modello."
  5271. #: TrimeshReader/plugin.json
  5272. msgctxt "name"
  5273. msgid "Trimesh Reader"
  5274. msgstr "Trimesh Reader"
  5275. #: UFPReader/plugin.json
  5276. msgctxt "description"
  5277. msgid "Provides support for reading Ultimaker Format Packages."
  5278. msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker."
  5279. #: UFPReader/plugin.json
  5280. msgctxt "name"
  5281. msgid "UFP Reader"
  5282. msgstr "Lettore UFP"
  5283. #: SolidView/plugin.json
  5284. msgctxt "description"
  5285. msgid "Provides a normal solid mesh view."
  5286. msgstr "Fornisce una normale visualizzazione a griglia compatta."
  5287. #: SolidView/plugin.json
  5288. msgctxt "name"
  5289. msgid "Solid View"
  5290. msgstr "Visualizzazione compatta"
  5291. #: 3MFWriter/plugin.json
  5292. msgctxt "description"
  5293. msgid "Provides support for writing 3MF files."
  5294. msgstr "Fornisce il supporto per la scrittura di file 3MF."
  5295. #: 3MFWriter/plugin.json
  5296. msgctxt "name"
  5297. msgid "3MF Writer"
  5298. msgstr "Writer 3MF"
  5299. #: MonitorStage/plugin.json
  5300. msgctxt "description"
  5301. msgid "Provides a monitor stage in Cura."
  5302. msgstr "Fornisce una fase di controllo in Cura."
  5303. #: MonitorStage/plugin.json
  5304. msgctxt "name"
  5305. msgid "Monitor Stage"
  5306. msgstr "Fase di controllo"
  5307. #: ModelChecker/plugin.json
  5308. msgctxt "description"
  5309. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5310. msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti."
  5311. #: ModelChecker/plugin.json
  5312. msgctxt "name"
  5313. msgid "Model Checker"
  5314. msgstr "Controllo modello"
  5315. #~ msgctxt "@info:status"
  5316. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5317. #~ msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker."
  5318. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5319. #~ msgid "Connect to Ultimaker Digital Factory"
  5320. #~ msgstr "Effettuare la connessione a Ultimaker Digital Factory"
  5321. #~ msgctxt "@info"
  5322. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5323. #~ msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura."
  5324. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5325. #~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  5326. #~ msgstr "È possibile che per {machine_name} siano disponibili nuove funzionalità o bug fix. Se non si dispone della versione più recente, è consigliabile aggiornare il firmware della stampante alla versione {latest_version}."
  5327. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5328. #~ msgid "New %s firmware available"
  5329. #~ msgstr "Nuovo firmware %s disponibile"
  5330. #~ msgctxt "@info:status"
  5331. #~ msgid "Global stack is missing."
  5332. #~ msgstr "Pila globale mancante."
  5333. #~ msgctxt "@info:status"
  5334. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5335. #~ msgstr "Il modello in uso non è multiforme. Le aree evidenziate indicano superfici mancanti o estranee."
  5336. #~ msgctxt "@info:title"
  5337. #~ msgid "Model errors"
  5338. #~ msgstr "Errori modello"
  5339. #~ msgctxt "@label:listbox"
  5340. #~ msgid "Layer thickness"
  5341. #~ msgstr "Spessore strato"
  5342. #~ msgctxt "@label"
  5343. #~ msgid "Your key to connected 3D printing"
  5344. #~ msgstr "La chiave per la stampa 3D connessa"
  5345. #~ msgctxt "@text"
  5346. #~ msgid ""
  5347. #~ "- Customize your experience with more print profiles and plugins\n"
  5348. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5349. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5350. #~ msgstr ""
  5351. #~ "- Personalizza la tua esperienza con più profili di stampa e plugin\n"
  5352. #~ "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque\n"
  5353. #~ "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker"
  5354. #~ msgctxt "@button"
  5355. #~ msgid "Create account"
  5356. #~ msgstr "Crea account"
  5357. #~ msgctxt "@action:inmenu menubar:edit"
  5358. #~ msgid "Delete Selected Model"
  5359. #~ msgid_plural "Delete Selected Models"
  5360. #~ msgstr[0] "Cancella modello selezionato"
  5361. #~ msgstr[1] "Cancella modelli selezionati"
  5362. #~ msgctxt "@action:inmenu menubar:edit"
  5363. #~ msgid "Center Selected Model"
  5364. #~ msgid_plural "Center Selected Models"
  5365. #~ msgstr[0] "Centra modello selezionato"
  5366. #~ msgstr[1] "Centra modelli selezionati"
  5367. #~ msgctxt "@action:inmenu menubar:edit"
  5368. #~ msgid "Multiply Selected Model"
  5369. #~ msgid_plural "Multiply Selected Models"
  5370. #~ msgstr[0] "Moltiplica modello selezionato"
  5371. #~ msgstr[1] "Moltiplica modelli selezionati"
  5372. #~ msgctxt "@button"
  5373. #~ msgid "Finish"
  5374. #~ msgstr "Fine"
  5375. #~ msgctxt "@label"
  5376. #~ msgid "Ultimaker Account"
  5377. #~ msgstr "Account Ultimaker"
  5378. #~ msgctxt "@text"
  5379. #~ msgid "Your key to connected 3D printing"
  5380. #~ msgstr "La chiave per la stampa 3D connessa"
  5381. #~ msgctxt "@text"
  5382. #~ msgid "- Customize your experience with more print profiles and plugins"
  5383. #~ msgstr "- Personalizza la tua esperienza con più profili di stampa e plugin"
  5384. #~ msgctxt "@text"
  5385. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5386. #~ msgstr "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque"
  5387. #~ msgctxt "@text"
  5388. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5389. #~ msgstr "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker"
  5390. #~ msgctxt "@text"
  5391. #~ msgid ""
  5392. #~ "Please follow these steps to set up\n"
  5393. #~ "Ultimaker Cura. This will only take a few moments."
  5394. #~ msgstr ""
  5395. #~ "Segui questa procedura per configurare\n"
  5396. #~ "Ultimaker Cura. Questa operazione richiederà solo pochi istanti."
  5397. #~ msgctxt "@label"
  5398. #~ msgid "What's new in Ultimaker Cura"
  5399. #~ msgstr "Scopri le novità in Ultimaker Cura"
  5400. #~ msgctxt "@label ({} is object name)"
  5401. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5402. #~ msgstr "Desideri rimuovere {}? Questa operazione non può essere annullata!"
  5403. #~ msgctxt "@info:status"
  5404. #~ msgid "The selected model was too small to load."
  5405. #~ msgstr "Il modello selezionato è troppo piccolo per il caricamento."
  5406. #~ msgctxt "@info:status"
  5407. #~ msgid "Successfully imported profile {0}"
  5408. #~ msgstr "Profilo importato correttamente {0}"
  5409. #~ msgctxt "@info:status"
  5410. #~ msgid "Could not find a quality type {0} for the current configuration."
  5411. #~ msgstr "Impossibile trovare un tipo qualità {0} per la configurazione corrente."
  5412. #~ msgctxt "info:status"
  5413. #~ msgid "Adding printer {} ({}) from your account"
  5414. #~ msgstr "Aggiunta della stampante {} ({}) dall'account dell'utente"
  5415. #~ msgctxt "info:hidden list items"
  5416. #~ msgid "<li>... and {} others</li>"
  5417. #~ msgstr "<li>... e {} altre</li>"
  5418. #~ msgctxt "info:status"
  5419. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5420. #~ msgstr "Stampanti aggiunte da Digital Factory:<ul>{}</ul>"
  5421. #~ msgctxt "info:status"
  5422. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5423. #~ msgstr "<ul>{}</ul>Per stabilire una connessione, visitare <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5424. #~ msgctxt "@label ({} is printer name)"
  5425. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5426. #~ msgstr "{} saranno rimosse fino alla successiva sincronizzazione account. <br> Per rimuovere definitivamente {}, visitare <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Rimuovere temporaneamente {}?"
  5427. #~ msgctxt "@label"
  5428. #~ msgid ""
  5429. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5430. #~ "Are you sure you want to continue?"
  5431. #~ msgstr ""
  5432. #~ "Si sta per rimuovere {} stampanti da Cura. Questa azione non può essere annullata. \n"
  5433. #~ "Continuare?"
  5434. #~ msgctxt "@label"
  5435. #~ msgid ""
  5436. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5437. #~ "Are you sure you want to continue?"
  5438. #~ msgstr ""
  5439. #~ "Si sta per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n"
  5440. #~ "Continuare?"
  5441. #~ msgctxt "@action:ComboBox option"
  5442. #~ msgid "Update"
  5443. #~ msgstr "Aggiorna"
  5444. #~ msgctxt "@action:ComboBox option"
  5445. #~ msgid "Create new"
  5446. #~ msgstr "Crea nuovo"
  5447. #~ msgctxt "@label"
  5448. #~ msgid "Shared Heater"
  5449. #~ msgstr "Riscaldatore condiviso"
  5450. #~ msgctxt "@info"
  5451. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5452. #~ msgstr "La webcam non è disponibile perché si sta controllando una stampante cloud."
  5453. #~ msgctxt "@button"
  5454. #~ msgid "Ultimaker Digital Factory"
  5455. #~ msgstr "Ultimaker Digital Factory"
  5456. #~ msgctxt "@text:window, %1 is a profile name"
  5457. #~ msgid ""
  5458. #~ "You have customized some profile settings.\n"
  5459. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5460. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5461. #~ msgstr ""
  5462. #~ "Alcune impostazioni di profilo sono state personalizzate.\n"
  5463. #~ "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n"
  5464. #~ "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'."
  5465. #~ msgctxt "@label"
  5466. #~ msgid "Overrides %1 setting."
  5467. #~ msgid_plural "Overrides %1 settings."
  5468. #~ msgstr[0] "Ignora %1 impostazione."
  5469. #~ msgstr[1] "Ignora %1 impostazioni."
  5470. #~ msgctxt "@text"
  5471. #~ msgid "Please give your printer a name"
  5472. #~ msgstr "Assegna un nome alla stampante"
  5473. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5474. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5475. #~ msgstr "Sono disponibili nuove funzioni per la {machine_name}! Si consiglia di aggiornare il firmware sulla stampante."
  5476. #~ msgctxt "@action:button"
  5477. #~ msgid "Print via Cloud"
  5478. #~ msgstr "Stampa tramite Cloud"
  5479. #~ msgctxt "@properties:tooltip"
  5480. #~ msgid "Print via Cloud"
  5481. #~ msgstr "Stampa tramite Cloud"
  5482. #~ msgctxt "@info:status"
  5483. #~ msgid "Connected via Cloud"
  5484. #~ msgstr "Collegato tramite Cloud"
  5485. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5486. #~ msgid "Connect to Ultimaker Cloud"
  5487. #~ msgstr "Connettiti a Ultimaker Cloud"
  5488. #~ msgctxt "@label"
  5489. #~ msgid "You need to login first before you can rate"
  5490. #~ msgstr "Prima della valutazione è necessario effettuare l’accesso"
  5491. #~ msgctxt "@label"
  5492. #~ msgid "You need to install the package before you can rate"
  5493. #~ msgstr "Prima della valutazione è necessario installare il pacchetto"
  5494. #~ msgctxt "@label"
  5495. #~ msgid "ratings"
  5496. #~ msgstr "valori"
  5497. #~ msgctxt "@label"
  5498. #~ msgid "Featured"
  5499. #~ msgstr "In primo piano"
  5500. #~ msgctxt "@label"
  5501. #~ msgid "Your rating"
  5502. #~ msgstr "I tuoi valori"
  5503. #~ msgctxt "@label"
  5504. #~ msgid "Author"
  5505. #~ msgstr "Autore"
  5506. #~ msgctxt "@description"
  5507. #~ msgid "Get plugins and materials verified by Ultimaker"
  5508. #~ msgstr "Ottieni plugin e materiali verificati da Ultimaker"
  5509. #~ msgctxt "@label The argument is a username."
  5510. #~ msgid "Hi %1"
  5511. #~ msgstr "Alto %1"
  5512. #~ msgctxt "@button"
  5513. #~ msgid "Ultimaker account"
  5514. #~ msgstr "Account Ultimaker"
  5515. #~ msgctxt "@button"
  5516. #~ msgid "Sign out"
  5517. #~ msgstr "Esci"
  5518. #~ msgctxt "@label"
  5519. #~ msgid "Support library for analysis of complex networks"
  5520. #~ msgstr "Libreria di supporto per l’analisi di reti complesse"
  5521. #~ msgctxt "@Label"
  5522. #~ msgid "Python HTTP library"
  5523. #~ msgstr "Libreria Python HTTP"
  5524. #~ msgctxt "@text:window"
  5525. #~ msgid ""
  5526. #~ "You have customized some profile settings.\n"
  5527. #~ "Would you like to keep or discard those settings?"
  5528. #~ msgstr ""
  5529. #~ "Sono state personalizzate alcune impostazioni del profilo.\n"
  5530. #~ "Mantenere o eliminare tali impostazioni?"
  5531. #~ msgctxt "@title:column"
  5532. #~ msgid "Default"
  5533. #~ msgstr "Valore predefinito"
  5534. #~ msgctxt "@title:column"
  5535. #~ msgid "Customized"
  5536. #~ msgstr "Valore personalizzato"
  5537. #~ msgctxt "@action:button"
  5538. #~ msgid "Discard"
  5539. #~ msgstr "Elimina"
  5540. #~ msgctxt "@action:button"
  5541. #~ msgid "Keep"
  5542. #~ msgstr "Mantieni"
  5543. #~ msgctxt "@action:button"
  5544. #~ msgid "Create New Profile"
  5545. #~ msgstr "Crea nuovo profilo"
  5546. #~ msgctxt "@title:menu menubar:file"
  5547. #~ msgid "&Save..."
  5548. #~ msgstr "&Salva..."
  5549. #~ msgctxt "@text"
  5550. #~ msgid "Place enter your printer's IP address."
  5551. #~ msgstr "Inserisci l'indirizzo IP della stampante."
  5552. #~ msgctxt "@button"
  5553. #~ msgid "Create an account"
  5554. #~ msgstr "Crea un account"
  5555. #~ msgctxt "@info:generic"
  5556. #~ msgid ""
  5557. #~ "\n"
  5558. #~ "Do you want to sync material and software packages with your account?"
  5559. #~ msgstr ""
  5560. #~ "\n"
  5561. #~ "Desiderate sincronizzare pacchetti materiale e software con il vostro account?"
  5562. #~ msgctxt "@info:generic"
  5563. #~ msgid ""
  5564. #~ "\n"
  5565. #~ "Syncing..."
  5566. #~ msgstr ""
  5567. #~ "\n"
  5568. #~ "Sincronizzazione in corso..."
  5569. #~ msgctxt "@info:status"
  5570. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5571. #~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa o è assegnato a un estrusore disabilitato. Ridimensionare o ruotare i modelli secondo necessità o abilitare un estrusore."
  5572. #~ msgctxt "@info:backup_status"
  5573. #~ msgid "There was an error listing your backups."
  5574. #~ msgstr "Si è verificato un errore nell’elenco dei backup."
  5575. #~ msgctxt "@title:groupbox"
  5576. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5577. #~ msgstr "Descrizione utente (Nota: gli sviluppatori potrebbero non parlare la lingua dell'utente. Se possibile, usare l'inglese)"
  5578. #~ msgctxt "@title:window"
  5579. #~ msgid "Closing Cura"
  5580. #~ msgstr "Chiusura di Cura"
  5581. #~ msgctxt "@label"
  5582. #~ msgid "Are you sure you want to exit Cura?"
  5583. #~ msgstr "Sei sicuro di voler uscire da Cura?"
  5584. #~ msgctxt "@label"
  5585. #~ msgid "Language:"
  5586. #~ msgstr "Lingua:"
  5587. #~ msgctxt "@label"
  5588. #~ msgid "Ultimaker Cloud"
  5589. #~ msgstr "Ultimaker Cloud"
  5590. #~ msgctxt "@text"
  5591. #~ msgid "The next generation 3D printing workflow"
  5592. #~ msgstr "Flusso di stampa 3D di ultima generazione"
  5593. #~ msgctxt "@text"
  5594. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5595. #~ msgstr "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale"
  5596. #~ msgctxt "@text"
  5597. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5598. #~ msgstr "- Memorizza le impostazioni Ultimaker Cura nel cloud per usarle ovunque"
  5599. #~ msgctxt "@text"
  5600. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5601. #~ msgstr "- Ottieni l'accesso esclusivo ai profili di stampa dai principali marchi"
  5602. #~ msgctxt "@label"
  5603. #~ msgid "The value is resolved from per-extruder values "
  5604. #~ msgstr "Questo valore è risolto da valori per estrusore "
  5605. #~ msgctxt "@label"
  5606. #~ msgid "The next generation 3D printing workflow"
  5607. #~ msgstr "Flusso di stampa 3D di ultima generazione"
  5608. #~ msgctxt "@text"
  5609. #~ msgid ""
  5610. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5611. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5612. #~ "- Get exclusive access to print profiles from leading brands"
  5613. #~ msgstr ""
  5614. #~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  5615. #~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  5616. #~ "- Ottieni l’accesso esclusivo ai profili di stampa dai principali marchi"
  5617. #~ msgctxt "@title:window"
  5618. #~ msgid "About "
  5619. #~ msgstr "Informazioni su "
  5620. #~ msgctxt "@info:button"
  5621. #~ msgid "Quit Cura"
  5622. #~ msgstr "Esci da Cura"
  5623. #~ msgctxt "@action:checkbox"
  5624. #~ msgid "Infill only"
  5625. #~ msgstr "Solo riempimento"
  5626. #~ msgctxt "@info:tooltip"
  5627. #~ msgid "Change active post-processing scripts"
  5628. #~ msgstr "Modifica script di post-elaborazione attivi"
  5629. #~ msgctxt "@label:listbox"
  5630. #~ msgid "Feedrate"
  5631. #~ msgstr "Velocità"
  5632. #~ msgctxt "name"
  5633. #~ msgid "Machine Settings action"
  5634. #~ msgstr "Azione Impostazioni macchina"
  5635. #~ msgctxt "@info:title"
  5636. #~ msgid "New cloud printers found"
  5637. #~ msgstr "Nuove stampanti in cloud rilevate"
  5638. #~ msgctxt "@info:message"
  5639. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5640. #~ msgstr "Sono state trovate nuove stampanti collegate al tuo account. Puoi vederle nell'elenco delle stampanti rilevate."
  5641. #~ msgctxt "@info:status"
  5642. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5643. #~ msgstr "Cura non visualizza in modo accurato gli strati se la funzione Wire Printing è abilitata"
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Pre-sliced file {0}"
  5646. #~ msgstr "File pre-sezionato {0}"
  5647. #~ msgctxt "@label"
  5648. #~ msgid ""
  5649. #~ "This plugin contains a license.\n"
  5650. #~ "You need to accept this license to install this plugin.\n"
  5651. #~ "Do you agree with the terms below?"
  5652. #~ msgstr ""
  5653. #~ "Questo plugin contiene una licenza.\n"
  5654. #~ "È necessario accettare questa licenza per poter installare il plugin.\n"
  5655. #~ "Accetti i termini sotto riportati?"
  5656. #~ msgctxt "@action:button"
  5657. #~ msgid "Accept"
  5658. #~ msgstr "Accetto"
  5659. #~ msgctxt "@action:button"
  5660. #~ msgid "Decline"
  5661. #~ msgstr "Non accetto"
  5662. #~ msgctxt "@action:inmenu"
  5663. #~ msgid "Show All Settings"
  5664. #~ msgstr "Mostra tutte le impostazioni"
  5665. #~ msgctxt "@title:window"
  5666. #~ msgid "Ultimaker Cura"
  5667. #~ msgstr "Ultimaker Cura"
  5668. #~ msgctxt "@title:window"
  5669. #~ msgid "About Cura"
  5670. #~ msgstr "Informazioni su Cura"
  5671. #~ msgctxt "@item:inmenu"
  5672. #~ msgid "Flatten active settings"
  5673. #~ msgstr "Impostazioni attive profilo appiattito"
  5674. #~ msgctxt "@info:status"
  5675. #~ msgid "Profile has been flattened & activated."
  5676. #~ msgstr "Il profilo è stato appiattito e attivato."
  5677. #~ msgctxt "X3g Writer Plugin Description"
  5678. #~ msgid "Writes X3g to files"
  5679. #~ msgstr "Scrive X3g sui file"
  5680. #~ msgctxt "X3g Writer File Description"
  5681. #~ msgid "X3g File"
  5682. #~ msgstr "File X3g"
  5683. #~ msgctxt "X3G Writer File Description"
  5684. #~ msgid "X3G File"
  5685. #~ msgstr "File X3G"
  5686. #~ msgctxt "@item:inmenu"
  5687. #~ msgid "Profile Assistant"
  5688. #~ msgstr "Assistente profilo"
  5689. #~ msgctxt "@item:inlistbox"
  5690. #~ msgid "Profile Assistant"
  5691. #~ msgstr "Assistente profilo"
  5692. #~ msgctxt "@action:button"
  5693. #~ msgid "Retry"
  5694. #~ msgstr "Riprova"
  5695. #~ msgctxt "@label:table_header"
  5696. #~ msgid "Print Core"
  5697. #~ msgstr "Print Core"
  5698. #~ msgctxt "@label"
  5699. #~ msgid "Don't support overlap with other models"
  5700. #~ msgstr "Non supporta sovrapposizione con altri modelli"
  5701. #~ msgctxt "@label"
  5702. #~ msgid "Modify settings for overlap with other models"
  5703. #~ msgstr "Modifica impostazioni per sovrapposizione con altri modelli"
  5704. #~ msgctxt "@label"
  5705. #~ msgid "Modify settings for infill of other models"
  5706. #~ msgstr "Modifica impostazioni per riempimento di altri modelli"
  5707. #~ msgctxt "@action:ComboBox option"
  5708. #~ msgid "Update existing"
  5709. #~ msgstr "Aggiorna esistente"
  5710. #~ msgctxt "@label"
  5711. #~ msgid "Not supported"
  5712. #~ msgstr "Non supportato"
  5713. #~ msgctxt "@action:button"
  5714. #~ msgid "Previous"
  5715. #~ msgstr "Precedente"
  5716. #~ msgctxt "@label"
  5717. #~ msgid "Tip"
  5718. #~ msgstr "Suggerimento"
  5719. #~ msgctxt "@label"
  5720. #~ msgid "Print experiment"
  5721. #~ msgstr "Prova di stampa"
  5722. #~ msgctxt "@label"
  5723. #~ msgid "Checklist"
  5724. #~ msgstr "Lista di controllo"
  5725. #~ msgctxt "@label"
  5726. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5727. #~ msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker 2."
  5728. #~ msgctxt "@label"
  5729. #~ msgid "Olsson Block"
  5730. #~ msgstr "Blocco Olsson"
  5731. #~ msgctxt "@window:text"
  5732. #~ msgid "Camera rendering: "
  5733. #~ msgstr "Rendering fotocamera: "
  5734. #~ msgctxt "@info:tooltip"
  5735. #~ msgid "Use multi build plate functionality"
  5736. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo"
  5737. #~ msgctxt "@option:check"
  5738. #~ msgid "Use multi build plate functionality (restart required)"
  5739. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo (necessario riavvio)"
  5740. #~ msgctxt "@label"
  5741. #~ msgid "Default profiles"
  5742. #~ msgstr "Profili predefiniti"
  5743. #~ msgctxt "@label:textbox"
  5744. #~ msgid "search settings"
  5745. #~ msgstr "impostazioni ricerca"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Layer Height"
  5748. #~ msgstr "Altezza dello strato"
  5749. #~ msgctxt "@tooltip"
  5750. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5751. #~ msgstr "Questo profilo di qualità non è disponibile per la configurazione attuale del materiale e degli ugelli. Modificare tali configurazioni per abilitare il profilo di qualità desiderato."
  5752. #~ msgctxt "@tooltip"
  5753. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5754. #~ msgstr "Un profilo personalizzato è attualmente attivo. Per attivare il cursore qualità, selezionare un profilo di qualità predefinito nella scheda Personalizza"
  5755. #~ msgctxt "@title:menu"
  5756. #~ msgid "&Build plate"
  5757. #~ msgstr "&Piano di stampa"
  5758. #~ msgctxt "@title:settings"
  5759. #~ msgid "&Profile"
  5760. #~ msgstr "&Profilo"
  5761. #~ msgctxt "@action:label"
  5762. #~ msgid "Build plate"
  5763. #~ msgstr "Piano di stampa"
  5764. #~ msgctxt "description"
  5765. #~ msgid "Dump the contents of all settings to a HTML file."
  5766. #~ msgstr "Scarica contenuto di tutte le impostazioni in un file HTML."
  5767. #~ msgctxt "name"
  5768. #~ msgid "God Mode"
  5769. #~ msgstr "Modalità God"
  5770. #~ msgctxt "description"
  5771. #~ msgid "Create a flattened quality changes profile."
  5772. #~ msgstr "Crea un profilo appiattito di modifiche di qualità."
  5773. #~ msgctxt "name"
  5774. #~ msgid "Profile Flattener"
  5775. #~ msgstr "Appiattitore di profilo"
  5776. #~ msgctxt "description"
  5777. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5778. #~ msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in."
  5779. #~ msgctxt "name"
  5780. #~ msgid "Print Profile Assistant"
  5781. #~ msgstr "Assistente profilo di stampa"
  5782. #~ msgctxt "@info:status"
  5783. #~ msgid "Connected over the network."
  5784. #~ msgstr "Collegato alla rete."
  5785. #~ msgctxt "@info:status"
  5786. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5787. #~ msgstr "Collegato alla rete. Si prega di approvare la richiesta di accesso sulla stampante."
  5788. #~ msgctxt "@info:status"
  5789. #~ msgid "Connected over the network. No access to control the printer."
  5790. #~ msgstr "Collegato alla rete. Nessun accesso per controllare la stampante."
  5791. #~ msgctxt "@info:status"
  5792. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5793. #~ msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante"
  5794. #~ msgctxt "@info:title"
  5795. #~ msgid "Authentication status"
  5796. #~ msgstr "Stato di autenticazione"
  5797. #~ msgctxt "@info:title"
  5798. #~ msgid "Authentication Status"
  5799. #~ msgstr "Stato di autenticazione"
  5800. #~ msgctxt "@info:tooltip"
  5801. #~ msgid "Re-send the access request"
  5802. #~ msgstr "Invia nuovamente la richiesta di accesso"
  5803. #~ msgctxt "@info:status"
  5804. #~ msgid "Access to the printer accepted"
  5805. #~ msgstr "Accesso alla stampante accettato"
  5806. #~ msgctxt "@info:status"
  5807. #~ msgid "No access to print with this printer. Unable to send print job."
  5808. #~ msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa."
  5809. #~ msgctxt "@action:button"
  5810. #~ msgid "Request Access"
  5811. #~ msgstr "Richiesta di accesso"
  5812. #~ msgctxt "@info:tooltip"
  5813. #~ msgid "Send access request to the printer"
  5814. #~ msgstr "Invia la richiesta di accesso alla stampante"
  5815. #~ msgctxt "@label"
  5816. #~ msgid "Unable to start a new print job."
  5817. #~ msgstr "Impossibile avviare un nuovo processo di stampa."
  5818. #~ msgctxt "@label"
  5819. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5820. #~ msgstr "È presente un problema di configurazione della stampante che rende impossibile l’avvio della stampa. Risolvere il problema prima di continuare."
  5821. #~ msgctxt "@window:title"
  5822. #~ msgid "Mismatched configuration"
  5823. #~ msgstr "Mancata corrispondenza della configurazione"
  5824. #~ msgctxt "@label"
  5825. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5826. #~ msgstr "Sei sicuro di voler stampare con la configurazione selezionata?"
  5827. #~ msgctxt "@label"
  5828. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5829. #~ msgstr "Le configurazioni o la calibrazione della stampante e di Cura non corrispondono. Per ottenere i migliori risultati, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata."
  5830. #~ msgctxt "@info:status"
  5831. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5832. #~ msgstr "Invio nuovi processi (temporaneamente) bloccato, invio in corso precedente processo di stampa."
  5833. #~ msgctxt "@info:status"
  5834. #~ msgid "Sending data to printer"
  5835. #~ msgstr "Invio dati alla stampante in corso"
  5836. #~ msgctxt "@info:title"
  5837. #~ msgid "Sending Data"
  5838. #~ msgstr "Invio dati"
  5839. #~ msgctxt "@info:status"
  5840. #~ msgid "No Printcore loaded in slot {slot_number}"
  5841. #~ msgstr "Nessun PrintCore caricato nello slot {slot_number}"
  5842. #~ msgctxt "@info:status"
  5843. #~ msgid "No material loaded in slot {slot_number}"
  5844. #~ msgstr "Nessun materiale caricato nello slot {slot_number}"
  5845. #~ msgctxt "@label"
  5846. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5847. #~ msgstr "PrintCore diverso (Cura: {cura_printcore_name}, Stampante: {remote_printcore_name}) selezionata per estrusore {extruder_id}"
  5848. #~ msgctxt "@label"
  5849. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5850. #~ msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  5851. #~ msgctxt "@window:title"
  5852. #~ msgid "Sync with your printer"
  5853. #~ msgstr "Sincronizzazione con la stampante"
  5854. #~ msgctxt "@label"
  5855. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5856. #~ msgstr "Desideri utilizzare la configurazione corrente della tua stampante in Cura?"
  5857. #~ msgctxt "@label"
  5858. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5859. #~ msgstr "I PrintCore e/o i materiali sulla stampante differiscono da quelli contenuti nel tuo attuale progetto. Per ottenere i risultati migliori, sezionare sempre per i PrintCore e i materiali inseriti nella stampante utilizzata."
  5860. #~ msgctxt "@action:button"
  5861. #~ msgid "View in Monitor"
  5862. #~ msgstr "Visualizzazione in Controlla"
  5863. #~ msgctxt "@info:status"
  5864. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5865. #~ msgstr "La stampante '{printer_name}' ha finito di stampare '{job_name}'."
  5866. #~ msgctxt "@info:status"
  5867. #~ msgid "The print job '{job_name}' was finished."
  5868. #~ msgstr "Il processo di stampa '{job_name}' è terminato."
  5869. #~ msgctxt "@info:status"
  5870. #~ msgid "Print finished"
  5871. #~ msgstr "Stampa finita"
  5872. #~ msgctxt "@label:material"
  5873. #~ msgid "Empty"
  5874. #~ msgstr "Vuoto"
  5875. #~ msgctxt "@label:material"
  5876. #~ msgid "Unknown"
  5877. #~ msgstr "Sconosciuto"
  5878. #~ msgctxt "@info:title"
  5879. #~ msgid "Cloud error"
  5880. #~ msgstr "Errore cloud"
  5881. #~ msgctxt "@info:status"
  5882. #~ msgid "Could not export print job."
  5883. #~ msgstr "Impossibile esportare il processo di stampa."
  5884. #~ msgctxt "@info:description"
  5885. #~ msgid "There was an error connecting to the cloud."
  5886. #~ msgstr "Si è verificato un errore di collegamento al cloud."
  5887. #~ msgctxt "@info:status"
  5888. #~ msgid "Uploading via Ultimaker Cloud"
  5889. #~ msgstr "Caricamento tramite Ultimaker Cloud"
  5890. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5891. #~ msgid "Connect to Ultimaker Cloud"
  5892. #~ msgstr "Collegato a Ultimaker Cloud"
  5893. #~ msgctxt "@action"
  5894. #~ msgid "Don't ask me again for this printer."
  5895. #~ msgstr "Non chiedere nuovamente per questa stampante."
  5896. #~ msgctxt "@info:status"
  5897. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5898. #~ msgstr "Ora è possibile inviare e controllare i processi di stampa ovunque con l’account Ultimaker."
  5899. #~ msgctxt "@info:status"
  5900. #~ msgid "Connected!"
  5901. #~ msgstr "Collegato!"
  5902. #~ msgctxt "@action"
  5903. #~ msgid "Review your connection"
  5904. #~ msgstr "Controlla collegamento"
  5905. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5906. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5907. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarla."
  5908. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5909. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5910. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  5911. #~ msgctxt "@window:title"
  5912. #~ msgid "Existing Connection"
  5913. #~ msgstr "Collegamento esistente"
  5914. #~ msgctxt "@message:text"
  5915. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5916. #~ msgstr "Stampante/gruppo già aggiunto a Cura. Selezionare un’altra stampante o un altro gruppo."
  5917. #~ msgctxt "@label"
  5918. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5919. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  5920. #~ msgctxt "@info:tooltip"
  5921. #~ msgid "Connect to a printer"
  5922. #~ msgstr "Collega a una stampante"
  5923. #~ msgctxt "@title"
  5924. #~ msgid "Cura Settings Guide"
  5925. #~ msgstr "Guida alle impostazioni Cura"
  5926. #~ msgctxt "@info:tooltip"
  5927. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5928. #~ msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  5929. #~ msgid "Orthogonal"
  5930. #~ msgstr "Ortogonale"
  5931. #~ msgctxt "description"
  5932. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5933. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3."
  5934. #~ msgctxt "name"
  5935. #~ msgid "UM3 Network Connection"
  5936. #~ msgstr "Connessione di rete UM3"
  5937. #~ msgctxt "description"
  5938. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5939. #~ msgstr "Fornisce informazioni e spiegazioni aggiuntive sulle impostazioni in Cura, con immagini e animazioni."
  5940. #~ msgctxt "name"
  5941. #~ msgid "Settings Guide"
  5942. #~ msgstr "Guida alle impostazioni"
  5943. #~ msgctxt "@item:inmenu"
  5944. #~ msgid "Cura Settings Guide"
  5945. #~ msgstr "Guida alle impostazioni Cura"
  5946. #~ msgctxt "@info:generic"
  5947. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5948. #~ msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori: [%s]"
  5949. #~ msgctxt "@title:groupbox"
  5950. #~ msgid "User description"
  5951. #~ msgstr "Descrizione utente"
  5952. #~ msgctxt "@info"
  5953. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5954. #~ msgstr "Queste opzioni non sono disponibili perché si sta controllando una stampante cloud."
  5955. #~ msgctxt "@label link to connect manager"
  5956. #~ msgid "Go to Cura Connect"
  5957. #~ msgstr "Vai a Cura Connect"
  5958. #~ msgctxt "@info"
  5959. #~ msgid "All jobs are printed."
  5960. #~ msgstr "Tutti i processi sono stampati."
  5961. #~ msgctxt "@label link to connect manager"
  5962. #~ msgid "View print history"
  5963. #~ msgstr "Visualizza cronologia di stampa"
  5964. #~ msgctxt "@label"
  5965. #~ msgid ""
  5966. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  5967. #~ "\n"
  5968. #~ "Select your printer from the list below:"
  5969. #~ msgstr ""
  5970. #~ "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se si collega Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante.\n"
  5971. #~ "\n"
  5972. #~ "Selezionare la stampante dall’elenco seguente:"
  5973. #~ msgctxt "@info"
  5974. #~ msgid ""
  5975. #~ "Please make sure your printer has a connection:\n"
  5976. #~ "- Check if the printer is turned on.\n"
  5977. #~ "- Check if the printer is connected to the network."
  5978. #~ msgstr ""
  5979. #~ "Accertarsi che la stampante sia collegata:\n"
  5980. #~ "- Controllare se la stampante è accesa.\n"
  5981. #~ "- Controllare se la stampante è collegata alla rete."
  5982. #~ msgctxt "@option:check"
  5983. #~ msgid "See only current build plate"
  5984. #~ msgstr "Vedi solo il piano di stampa corrente"
  5985. #~ msgctxt "@action:button"
  5986. #~ msgid "Arrange to all build plates"
  5987. #~ msgstr "Sistema su tutti i piani di stampa"
  5988. #~ msgctxt "@action:button"
  5989. #~ msgid "Arrange current build plate"
  5990. #~ msgstr "Sistema il piano di stampa corrente"
  5991. #~ msgctxt "description"
  5992. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5993. #~ msgstr "Consente di salvare il sezionamento risultante come un file X3G, per supportare le stampanti che leggono questo formato (Malyan, Makerbot ed altre stampanti basate su firmware Sailfish)."
  5994. #~ msgctxt "name"
  5995. #~ msgid "X3GWriter"
  5996. #~ msgstr "X3GWriter"
  5997. #~ msgctxt "description"
  5998. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5999. #~ msgstr "Legge i file SVG come toolpath (percorsi utensile), per eseguire il debug dei movimenti della stampante."
  6000. #~ msgctxt "name"
  6001. #~ msgid "SVG Toolpath Reader"
  6002. #~ msgstr "Lettore di toolpath (percorso utensile) SVG"
  6003. #~ msgctxt "@item:inmenu"
  6004. #~ msgid "Changelog"
  6005. #~ msgstr "Registro modifiche"
  6006. #~ msgctxt "@item:inmenu"
  6007. #~ msgid "Show Changelog"
  6008. #~ msgstr "Visualizza registro modifiche"
  6009. #~ msgctxt "@info:status"
  6010. #~ msgid "Sending data to remote cluster"
  6011. #~ msgstr "Invio dati al cluster remoto"
  6012. #~ msgctxt "@info:status"
  6013. #~ msgid "Connect to Ultimaker Cloud"
  6014. #~ msgstr "Collegato a Ultimaker Cloud"
  6015. #~ msgctxt "@info"
  6016. #~ msgid "Cura collects anonymized usage statistics."
  6017. #~ msgstr "Cura raccoglie statistiche di utilizzo in forma anonima."
  6018. #~ msgctxt "@info:title"
  6019. #~ msgid "Collecting Data"
  6020. #~ msgstr "Acquisizione dati"
  6021. #~ msgctxt "@action:button"
  6022. #~ msgid "More info"
  6023. #~ msgstr "Per saperne di più"
  6024. #~ msgctxt "@action:tooltip"
  6025. #~ msgid "See more information on what data Cura sends."
  6026. #~ msgstr "Vedere ulteriori informazioni sui dati inviati da Cura."
  6027. #~ msgctxt "@action:button"
  6028. #~ msgid "Allow"
  6029. #~ msgstr "Consenti"
  6030. #~ msgctxt "@action:tooltip"
  6031. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  6032. #~ msgstr "Consente a Cura di inviare in forma anonima statistiche d’uso, riguardanti alcune delle preferenze e impostazioni, la versione cura e una serie di modelli in sezionamento, per aiutare a dare priorità a miglioramenti futuri in Cura."
  6033. #~ msgctxt "@item:inmenu"
  6034. #~ msgid "Evaluation"
  6035. #~ msgstr "Valutazione"
  6036. #~ msgctxt "@info:title"
  6037. #~ msgid "Network enabled printers"
  6038. #~ msgstr "Stampanti abilitate per la rete"
  6039. #~ msgctxt "@info:title"
  6040. #~ msgid "Local printers"
  6041. #~ msgstr "Stampanti locali"
  6042. #~ msgctxt "@info:backup_failed"
  6043. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6044. #~ msgstr "Tentativo di ripristinare un backup di Cura non corrispondente alla versione corrente."
  6045. #~ msgctxt "@title"
  6046. #~ msgid "Machine Settings"
  6047. #~ msgstr "Impostazioni macchina"
  6048. #~ msgctxt "@label"
  6049. #~ msgid "Printer Settings"
  6050. #~ msgstr "Impostazioni della stampante"
  6051. #~ msgctxt "@option:check"
  6052. #~ msgid "Origin at center"
  6053. #~ msgstr "Origine al centro"
  6054. #~ msgctxt "@option:check"
  6055. #~ msgid "Heated bed"
  6056. #~ msgstr "Piano riscaldato"
  6057. #~ msgctxt "@label"
  6058. #~ msgid "Printhead Settings"
  6059. #~ msgstr "Impostazioni della testina di stampa"
  6060. #~ msgctxt "@tooltip"
  6061. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6062. #~ msgstr "Distanza tra il lato sinistro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"."
  6063. #~ msgctxt "@tooltip"
  6064. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6065. #~ msgstr "Distanza tra il lato anteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"."
  6066. #~ msgctxt "@tooltip"
  6067. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6068. #~ msgstr "Distanza tra il lato destro della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"."
  6069. #~ msgctxt "@tooltip"
  6070. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6071. #~ msgstr "Distanza tra il lato posteriore della testina di stampa e il centro dell'ugello. Utilizzata per evitare collisioni tra le stampe precedenti e la testina di stampa durante la stampa \"Uno alla volta\"."
  6072. #~ msgctxt "@label"
  6073. #~ msgid "Gantry height"
  6074. #~ msgstr "Altezza gantry"
  6075. #~ msgctxt "@tooltip"
  6076. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  6077. #~ msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assi X e Y). Utilizzata per evitare collisioni tra le stampe precedenti e il gantry durante la stampa \"Uno alla volta\"."
  6078. #~ msgctxt "@label"
  6079. #~ msgid "Start G-code"
  6080. #~ msgstr "Codice G avvio"
  6081. #~ msgctxt "@tooltip"
  6082. #~ msgid "G-code commands to be executed at the very start."
  6083. #~ msgstr "Comandi codice G da eseguire all’avvio."
  6084. #~ msgctxt "@label"
  6085. #~ msgid "End G-code"
  6086. #~ msgstr "Codice G fine"
  6087. #~ msgctxt "@tooltip"
  6088. #~ msgid "G-code commands to be executed at the very end."
  6089. #~ msgstr "Comandi codice G da eseguire alla fine."
  6090. #~ msgctxt "@label"
  6091. #~ msgid "Nozzle Settings"
  6092. #~ msgstr "Impostazioni ugello"
  6093. #~ msgctxt "@tooltip"
  6094. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6095. #~ msgstr "Diametro nominale del filamento supportato dalla stampante. Il diametro esatto verrà sovrapposto dal materiale e/o dal profilo."
  6096. #~ msgctxt "@label"
  6097. #~ msgid "Extruder Start G-code"
  6098. #~ msgstr "Codice G avvio estrusore"
  6099. #~ msgctxt "@label"
  6100. #~ msgid "Extruder End G-code"
  6101. #~ msgstr "Codice G fine estrusore"
  6102. #~ msgctxt "@label"
  6103. #~ msgid "Changelog"
  6104. #~ msgstr "Registro modifiche"
  6105. #~ msgctxt "@title:window"
  6106. #~ msgid "User Agreement"
  6107. #~ msgstr "Contratto di licenza"
  6108. #~ msgctxt "@alabel"
  6109. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6110. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  6111. #~ msgctxt "@info"
  6112. #~ msgid "Please select a network connected printer to monitor."
  6113. #~ msgstr "Selezionare una stampante collegata alla rete per controllare."
  6114. #~ msgctxt "@info"
  6115. #~ msgid "Please connect your Ultimaker printer to your local network."
  6116. #~ msgstr "Collegare la stampante Ultimaker alla rete locale."
  6117. #~ msgctxt "@text:window"
  6118. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  6119. #~ msgstr "Cura invia dati anonimi ad Ultimaker per migliorare la qualità di stampa e l'esperienza dell'utente. Di seguito è riportato un esempio dei dati inviati."
  6120. #~ msgctxt "@text:window"
  6121. #~ msgid "I don't want to send this data"
  6122. #~ msgstr "Non desidero inviare questi dati"
  6123. #~ msgctxt "@text:window"
  6124. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6125. #~ msgstr "Consenti l’invio di questi dati ad Ultimaker e aiutaci ad ottimizzare Cura"
  6126. #~ msgctxt "@label"
  6127. #~ msgid "No print selected"
  6128. #~ msgstr "Nessuna stampante selezionata"
  6129. #~ msgctxt "@info:tooltip"
  6130. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  6131. #~ msgstr "Per impostazione predefinita, i pixel bianchi rappresentano i punti alti sulla griglia, mentre i pixel neri rappresentano i punti bassi sulla griglia. Modificare questa opzione per invertire la situazione in modo tale che i pixel neri rappresentino i punti alti sulla griglia e i pixel bianchi rappresentino i punti bassi."
  6132. #~ msgctxt "@title"
  6133. #~ msgid "Select Printer Upgrades"
  6134. #~ msgstr "Seleziona gli aggiornamenti della stampante"
  6135. #~ msgctxt "@label"
  6136. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  6137. #~ msgstr "Seleziona l’estrusore da utilizzare per la stampa di strutture di supporto. Ciò consentirà di costruire strutture di supporto sotto il modello per evitare cedimenti del modello o di stampare a mezz'aria."
  6138. #~ msgctxt "@tooltip"
  6139. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6140. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  6141. #~ msgctxt "@label shown when we load a Gcode file"
  6142. #~ msgid "Print setup disabled. G code file can not be modified."
  6143. #~ msgstr "Impostazione di stampa disabilitata. Impossibile modificare il file codice G."
  6144. #~ msgctxt "@label"
  6145. #~ msgid "See the material compatibility chart"
  6146. #~ msgstr "Vedere il grafico di compatibilità dei materiali"
  6147. #~ msgctxt "@label"
  6148. #~ msgid "View types"
  6149. #~ msgstr "Visualizza tipi"
  6150. #~ msgctxt "@label"
  6151. #~ msgid "Hi "
  6152. #~ msgstr "Ciao "
  6153. #~ msgctxt "@text"
  6154. #~ msgid ""
  6155. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6156. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6157. #~ "- Get exclusive access to material profiles from leading brands"
  6158. #~ msgstr ""
  6159. #~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  6160. #~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  6161. #~ "- Ottieni l’accesso esclusivo ai profili materiale da marchi leader"
  6162. #~ msgctxt "@label:PrintjobStatus"
  6163. #~ msgid "Unable to Slice"
  6164. #~ msgstr "Sezionamento impossibile"
  6165. #~ msgctxt "@label"
  6166. #~ msgid "Time specification"
  6167. #~ msgstr "Indicazioni di tempo"
  6168. #~ msgctxt "@label"
  6169. #~ msgid "Material specification"
  6170. #~ msgstr "Specifiche materiale"
  6171. #~ msgctxt "@title:tab"
  6172. #~ msgid "Add a printer to Cura"
  6173. #~ msgstr "Aggiungi una stampante a Cura"
  6174. #~ msgctxt "@title:tab"
  6175. #~ msgid ""
  6176. #~ "Select the printer you want to use from the list below.\n"
  6177. #~ "\n"
  6178. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  6179. #~ msgstr ""
  6180. #~ "Seleziona la stampante da usare dell’elenco seguente.\n"
  6181. #~ "\n"
  6182. #~ "Se la stampante non è nell’elenco, usare la “Stampante FFF personalizzata\" dalla categoria “Personalizzata\" e regolare le impostazioni in modo che corrispondano alla stampante nella finestra di dialogo successiva."
  6183. #~ msgctxt "@label"
  6184. #~ msgid "Printer Name"
  6185. #~ msgstr "Nome stampante"
  6186. #~ msgctxt "@action:button"
  6187. #~ msgid "Add Printer"
  6188. #~ msgstr "Aggiungi stampante"
  6189. #~ msgid "Modify G-Code"
  6190. #~ msgstr "Modifica G-code"
  6191. #~ msgctxt "@info:status"
  6192. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6193. #~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa. Ridimensionare o ruotare i modelli secondo necessità."
  6194. #~ msgctxt "@info:status"
  6195. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6196. #~ msgstr "Il materiale selezionato è incompatibile con la macchina o la configurazione selezionata."
  6197. #~ msgctxt "@info:title"
  6198. #~ msgid "Incompatible Material"
  6199. #~ msgstr "Materiale incompatibile"
  6200. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6201. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6202. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>: <message>{1}</message>"
  6203. #~ msgctxt "@title"
  6204. #~ msgid "Toolbox"
  6205. #~ msgstr "Casella degli strumenti"
  6206. #~ msgctxt "@label"
  6207. #~ msgid "Not available"
  6208. #~ msgstr "Non disponibile"
  6209. #~ msgctxt "@label"
  6210. #~ msgid "Unreachable"
  6211. #~ msgstr "Non raggiungibile"
  6212. #~ msgctxt "@label"
  6213. #~ msgid "Available"
  6214. #~ msgstr "Disponibile"
  6215. #~ msgctxt "@label:status"
  6216. #~ msgid "Preparing"
  6217. #~ msgstr "Preparazione in corso"
  6218. #~ msgctxt "@label:status"
  6219. #~ msgid "Pausing"
  6220. #~ msgstr "Messa in pausa"
  6221. #~ msgctxt "@label:status"
  6222. #~ msgid "Resuming"
  6223. #~ msgstr "Ripresa"
  6224. #~ msgctxt "@label"
  6225. #~ msgid "Waiting for: Unavailable printer"
  6226. #~ msgstr "In attesa: stampante non disponibile"
  6227. #~ msgctxt "@label"
  6228. #~ msgid "Waiting for: First available"
  6229. #~ msgstr "In attesa della prima disponibile"
  6230. #~ msgctxt "@label"
  6231. #~ msgid "Waiting for: "
  6232. #~ msgstr "In attesa: "
  6233. #~ msgctxt "@label"
  6234. #~ msgid "Configuration change"
  6235. #~ msgstr "Modifica configurazione"
  6236. #~ msgctxt "@label"
  6237. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6238. #~ msgstr "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  6239. #~ msgctxt "@label"
  6240. #~ msgid "Override"
  6241. #~ msgstr "Override"
  6242. #~ msgctxt "@label"
  6243. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  6244. #~ msgstr "L’avvio di un processo di stampa con una configurazione non compatibile potrebbe danneggiare la stampante 3D. Sei sicuro di voler annullare la configurazione e stampare %1?"
  6245. #~ msgctxt "@window:title"
  6246. #~ msgid "Override configuration configuration and start print"
  6247. #~ msgstr "Annullare la configurazione e avviare la stampa"
  6248. #~ msgctxt "@label link to connect manager"
  6249. #~ msgid "Manage queue"
  6250. #~ msgstr "Gestione coda di stampa"
  6251. #~ msgctxt "@label"
  6252. #~ msgid "Printing"
  6253. #~ msgstr "Stampa in corso"
  6254. #~ msgctxt "@label link to connect manager"
  6255. #~ msgid "Manage printers"
  6256. #~ msgstr "Gestione stampanti"
  6257. #~ msgctxt "@action:button"
  6258. #~ msgid "Activate Configuration"
  6259. #~ msgstr "Attiva la configurazione"
  6260. #~ msgctxt "@info:tooltip"
  6261. #~ msgid "Load the configuration of the printer into Cura"
  6262. #~ msgstr "Carica la configurazione della stampante in Cura"
  6263. #~ msgctxt "@label"
  6264. #~ msgid "Show Travels"
  6265. #~ msgstr "Mostra spostamenti"
  6266. #~ msgctxt "@label"
  6267. #~ msgid "Show Helpers"
  6268. #~ msgstr "Mostra helper"
  6269. #~ msgctxt "@label"
  6270. #~ msgid "Show Shell"
  6271. #~ msgstr "Mostra guscio"
  6272. #~ msgctxt "@label"
  6273. #~ msgid "Show Infill"
  6274. #~ msgstr "Mostra riempimento"
  6275. #~ msgctxt "@text:window"
  6276. #~ msgid "I don't want to send these data"
  6277. #~ msgstr "Non voglio inviare questi dati"
  6278. #~ msgctxt "@text:window"
  6279. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6280. #~ msgstr "Il consenso all'invio di questi dati ad Ultimaker ci aiuta ad ottimizzare Cura"
  6281. #~ msgctxt "@label"
  6282. #~ msgid "Printer type:"
  6283. #~ msgstr "Tipo di stampante:"
  6284. #~ msgctxt "@label"
  6285. #~ msgid "Connection:"
  6286. #~ msgstr "Collegamento:"
  6287. #~ msgctxt "@label"
  6288. #~ msgid "State:"
  6289. #~ msgstr "Stato:"
  6290. #~ msgctxt "@label:MonitorStatus"
  6291. #~ msgid "Waiting for a printjob"
  6292. #~ msgstr "In attesa di un processo di stampa"
  6293. #~ msgctxt "@label:MonitorStatus"
  6294. #~ msgid "Waiting for someone to clear the build plate"
  6295. #~ msgstr "In attesa di qualcuno che cancelli il piano di stampa"
  6296. #~ msgctxt "@label:MonitorStatus"
  6297. #~ msgid "Aborting print..."
  6298. #~ msgstr "Interruzione stampa in corso..."
  6299. #~ msgctxt "@label"
  6300. #~ msgid "Protected profiles"
  6301. #~ msgstr "Profili protetti"
  6302. #~ msgctxt "@label"
  6303. #~ msgid "Printer Name:"
  6304. #~ msgstr "Nome stampante:"
  6305. #~ msgctxt "@label"
  6306. #~ msgid "Profile:"
  6307. #~ msgstr "Profilo:"
  6308. #~ msgctxt "@label:textbox"
  6309. #~ msgid "Search..."
  6310. #~ msgstr "Ricerca..."
  6311. #~ msgctxt "@action:inmenu"
  6312. #~ msgid "Collapse All"
  6313. #~ msgstr "Comprimi tutto"
  6314. #~ msgctxt "@action:inmenu"
  6315. #~ msgid "Expand All"
  6316. #~ msgstr "Espandi tutto"
  6317. #~ msgctxt "@label:header configurations"
  6318. #~ msgid "Available configurations"
  6319. #~ msgstr "Configurazioni disponibili"
  6320. #~ msgctxt "@label:extruder label"
  6321. #~ msgid "Extruder"
  6322. #~ msgstr "Estrusore"
  6323. #~ msgctxt "@label:extruder label"
  6324. #~ msgid "Yes"
  6325. #~ msgstr "Sì"
  6326. #~ msgctxt "@label:extruder label"
  6327. #~ msgid "No"
  6328. #~ msgstr "No"
  6329. #~ msgctxt "@label:listbox"
  6330. #~ msgid "Print Setup"
  6331. #~ msgstr "Impostazione di stampa"
  6332. #~ msgctxt "@label:listbox"
  6333. #~ msgid ""
  6334. #~ "Print Setup disabled\n"
  6335. #~ "G-code files cannot be modified"
  6336. #~ msgstr ""
  6337. #~ "Impostazione di stampa disabilitata\n"
  6338. #~ "I file codice G non possono essere modificati"
  6339. #~ msgctxt "@label Hours and minutes"
  6340. #~ msgid "00h 00min"
  6341. #~ msgstr "00h 00min"
  6342. #~ msgctxt "@tooltip"
  6343. #~ msgid "Time specification"
  6344. #~ msgstr "Indicazioni di tempo"
  6345. #~ msgctxt "@label"
  6346. #~ msgid "Cost specification"
  6347. #~ msgstr "Indicazione di costo"
  6348. #~ msgctxt "@label"
  6349. #~ msgid "Total:"
  6350. #~ msgstr "Totale:"
  6351. #~ msgctxt "@tooltip"
  6352. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6353. #~ msgstr "<b>Impostazione di stampa consigliata</b><br/><br/>Stampa con le impostazioni consigliate per la stampante, il materiale e la qualità selezionati."
  6354. #~ msgctxt "@tooltip"
  6355. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6356. #~ msgstr "<b>Impostazione di stampa personalizzata</b><br/><br/>Stampa con il controllo grana fine su ogni sezione finale del processo di sezionamento."
  6357. #~ msgctxt "@action:inmenu menubar:help"
  6358. #~ msgid "Show Engine &Log..."
  6359. #~ msgstr "Mostra &log motore..."
  6360. #~ msgctxt "@action:menu"
  6361. #~ msgid "Browse packages..."
  6362. #~ msgstr "Sfoglia i pacchetti..."
  6363. #~ msgctxt "@action:inmenu menubar:view"
  6364. #~ msgid "Expand/Collapse Sidebar"
  6365. #~ msgstr "Espandi/Riduci barra laterale"
  6366. #~ msgctxt "@label:PrintjobStatus"
  6367. #~ msgid "Please load a 3D model"
  6368. #~ msgstr "Caricare un modello 3D"
  6369. #~ msgctxt "@label:PrintjobStatus"
  6370. #~ msgid "Ready to slice"
  6371. #~ msgstr "Pronto per il sezionamento"
  6372. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6373. #~ msgid "Ready to %1"
  6374. #~ msgstr "Pronto a %1"
  6375. #~ msgctxt "@label:PrintjobStatus"
  6376. #~ msgid "Slicing unavailable"
  6377. #~ msgstr "Sezionamento non disponibile"
  6378. #~ msgctxt "@info:tooltip"
  6379. #~ msgid "Slice current printjob"
  6380. #~ msgstr "Seziona processo di stampa corrente"
  6381. #~ msgctxt "@info:tooltip"
  6382. #~ msgid "Cancel slicing process"
  6383. #~ msgstr "Annulla processo di sezionamento"
  6384. #~ msgctxt "@label:Printjob"
  6385. #~ msgid "Prepare"
  6386. #~ msgstr "Prepara"
  6387. #~ msgctxt "@label:Printjob"
  6388. #~ msgid "Cancel"
  6389. #~ msgstr "Annulla"
  6390. #~ msgctxt "@info:tooltip"
  6391. #~ msgid "Select the active output device"
  6392. #~ msgstr "Seleziona l'unità di uscita attiva"
  6393. #~ msgctxt "@title:menu"
  6394. #~ msgid "&View"
  6395. #~ msgstr "&Visualizza"
  6396. #~ msgctxt "@title:menu"
  6397. #~ msgid "&Settings"
  6398. #~ msgstr "&Impostazioni"
  6399. #~ msgctxt "@title:menu menubar:toplevel"
  6400. #~ msgid "&Toolbox"
  6401. #~ msgstr "&Casella degli strumenti"
  6402. #~ msgctxt "@action:button"
  6403. #~ msgid "Open File"
  6404. #~ msgstr "Apri file"
  6405. #~ msgctxt "@tooltip"
  6406. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6407. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  6408. #~ msgctxt "@label"
  6409. #~ msgid "Print Speed"
  6410. #~ msgstr "Velocità di stampa"
  6411. #~ msgctxt "@label"
  6412. #~ msgid "Slower"
  6413. #~ msgstr "Più lenta"
  6414. #~ msgctxt "@label"
  6415. #~ msgid "Faster"
  6416. #~ msgstr "Più veloce"
  6417. #~ msgctxt "@label"
  6418. #~ msgid "Enable gradual"
  6419. #~ msgstr "Consenti variazione graduale"
  6420. #~ msgctxt "@label"
  6421. #~ msgid "Generate Support"
  6422. #~ msgstr "Generazione supporto"
  6423. #~ msgctxt "@label"
  6424. #~ msgid "Build Plate Adhesion"
  6425. #~ msgstr "Adesione piano di stampa"
  6426. #~ msgctxt "@label"
  6427. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6428. #~ msgstr "Serve aiuto per migliorare le tue stampe? <br>Leggi <a href='%1'>la Guida alla ricerca e riparazione guasti Ultimaker</a>"
  6429. #~ msgctxt "@title:window"
  6430. #~ msgid "Engine Log"
  6431. #~ msgstr "Log motore"
  6432. #~ msgctxt "@label"
  6433. #~ msgid "Printer type"
  6434. #~ msgstr "Tipo di stampante"
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Use glue with this material combination"
  6437. #~ msgstr "Utilizzare la colla con questa combinazione di materiali"
  6438. #~ msgctxt "@label"
  6439. #~ msgid "Check compatibility"
  6440. #~ msgstr "Controlla compatibilità"
  6441. #~ msgctxt "@tooltip"
  6442. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6443. #~ msgstr "Fai clic per verificare la compatibilità del materiale su Ultimaker.com."
  6444. #~ msgctxt "description"
  6445. #~ msgid "Shows changes since latest checked version."
  6446. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  6447. #~ msgctxt "name"
  6448. #~ msgid "Changelog"
  6449. #~ msgstr "Registro modifiche"
  6450. #~ msgctxt "description"
  6451. #~ msgid "Create a flattend quality changes profile."
  6452. #~ msgstr "Crea un profilo appiattito."
  6453. #~ msgctxt "name"
  6454. #~ msgid "Profile flatener"
  6455. #~ msgstr "Appiattitore di profilo"
  6456. #~ msgctxt "description"
  6457. #~ msgid "Ask the user once if he/she agrees with our license."
  6458. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza."
  6459. #~ msgctxt "name"
  6460. #~ msgid "UserAgreement"
  6461. #~ msgstr "Contratto di licenza"
  6462. #~ msgctxt "@warning:status"
  6463. #~ msgid "Please generate G-code before saving."
  6464. #~ msgstr "Generare il codice G prima di salvare."
  6465. #~ msgctxt "@action"
  6466. #~ msgid "Upgrade Firmware"
  6467. #~ msgstr "Aggiorna firmware"
  6468. #~ msgctxt "@label unknown material"
  6469. #~ msgid "Unknown"
  6470. #~ msgstr "Sconosciuto"
  6471. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6472. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6473. #~ msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  6474. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6475. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6476. #~ msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  6477. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6478. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6479. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarlo."
  6480. #~ msgctxt "@title:window"
  6481. #~ msgid "Confirm uninstall "
  6482. #~ msgstr "Conferma disinstalla "
  6483. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6484. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6485. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6486. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6487. #~ msgid "%1m / ~ %2g"
  6488. #~ msgstr "%1m / ~ %2g"
  6489. #~ msgctxt "@title"
  6490. #~ msgid "Upgrade Firmware"
  6491. #~ msgstr "Aggiorna firmware"
  6492. #~ msgctxt "@action:button"
  6493. #~ msgid "Print with Doodle3D WiFi-Box"
  6494. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  6495. #~ msgctxt "@properties:tooltip"
  6496. #~ msgid "Print with Doodle3D WiFi-Box"
  6497. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  6498. #~ msgctxt "@info:status"
  6499. #~ msgid "Connecting to Doodle3D Connect"
  6500. #~ msgstr "Collegamento a Doodle3D Connect"
  6501. #~ msgctxt "@info:status"
  6502. #~ msgid "Sending data to Doodle3D Connect"
  6503. #~ msgstr "Invio dati a Doodle3D Connect"
  6504. #~ msgctxt "@info:status"
  6505. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6506. #~ msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?"
  6507. #~ msgctxt "@info:status"
  6508. #~ msgid "Storing data on Doodle3D Connect"
  6509. #~ msgstr "Memorizzazione dati su Doodle3D Connect"
  6510. #~ msgctxt "@info:status"
  6511. #~ msgid "File sent to Doodle3D Connect"
  6512. #~ msgstr "File inviato a Doodle3D Connect"
  6513. #~ msgctxt "@action:button"
  6514. #~ msgid "Open Connect..."
  6515. #~ msgstr "Apri Connect..."
  6516. #~ msgctxt "@info:tooltip"
  6517. #~ msgid "Open the Doodle3D Connect web interface"
  6518. #~ msgstr "Apri interfaccia web Doodle3D Connect"
  6519. #~ msgctxt "@item:inlistbox"
  6520. #~ msgid "Blender file"
  6521. #~ msgstr "File Blender"
  6522. #~ msgctxt "@info:status"
  6523. #~ msgid ""
  6524. #~ "Could not export using \"{}\" quality!\n"
  6525. #~ "Felt back to \"{}\"."
  6526. #~ msgstr ""
  6527. #~ "Impossibile esportare utilizzando qualità \"{}\" quality!\n"
  6528. #~ "Tornato a \"{}\"."
  6529. #~ msgctxt "@label"
  6530. #~ msgid "Contact"
  6531. #~ msgstr "Contatto"
  6532. #~ msgctxt "@label"
  6533. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6534. #~ msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3."
  6535. #~ msgctxt "@label"
  6536. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6537. #~ msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3."
  6538. #~ msgctxt "@label: arg 1 is group name"
  6539. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6540. #~ msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  6541. #~ msgctxt "@label link to connect manager"
  6542. #~ msgid "Add/Remove printers"
  6543. #~ msgstr "Aggiungi/Rimuovi stampanti"
  6544. #~ msgctxt "@info:tooltip"
  6545. #~ msgid "Opens the print jobs page with your default web browser."
  6546. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  6547. #~ msgctxt "@action:button"
  6548. #~ msgid "View print jobs"
  6549. #~ msgstr "Visualizza processi di stampa"
  6550. #~ msgctxt "@label:status"
  6551. #~ msgid "Preparing to print"
  6552. #~ msgstr "Preparazione della stampa"
  6553. #~ msgctxt "@label:status"
  6554. #~ msgid "Available"
  6555. #~ msgstr "Disponibile"
  6556. #~ msgctxt "@label:status"
  6557. #~ msgid "Lost connection with the printer"
  6558. #~ msgstr "Persa connessione con la stampante"
  6559. #~ msgctxt "@label:status"
  6560. #~ msgid "Unknown"
  6561. #~ msgstr "Sconosciuto"
  6562. #~ msgctxt "@label:status"
  6563. #~ msgid "Disabled"
  6564. #~ msgstr "Disabilitato"
  6565. #~ msgctxt "@label:status"
  6566. #~ msgid "Reserved"
  6567. #~ msgstr "Riservato"
  6568. #~ msgctxt "@label"
  6569. #~ msgid "Preparing to print"
  6570. #~ msgstr "Preparazione della stampa"
  6571. #~ msgctxt "@label:status"
  6572. #~ msgid "Print aborted"
  6573. #~ msgstr "Stampa interrotta"
  6574. #~ msgctxt "@label"
  6575. #~ msgid "Not accepting print jobs"
  6576. #~ msgstr "Mancata accettazione processi di stampa"
  6577. #~ msgctxt "@label"
  6578. #~ msgid "Finishes at: "
  6579. #~ msgstr "Finisce alle: "
  6580. #~ msgctxt "@label"
  6581. #~ msgid "Clear build plate"
  6582. #~ msgstr "Cancellare piano di stampa"
  6583. #~ msgctxt "@label"
  6584. #~ msgid "Waiting for configuration change"
  6585. #~ msgstr "In attesa di modifica configurazione"
  6586. #~ msgctxt "@title"
  6587. #~ msgid "Print jobs"
  6588. #~ msgstr "Processi di stampa"
  6589. #~ msgctxt "@label:title"
  6590. #~ msgid "Printers"
  6591. #~ msgstr "Stampanti"
  6592. #~ msgctxt "@action:button"
  6593. #~ msgid "View printers"
  6594. #~ msgstr "Visualizza stampanti"
  6595. #~ msgctxt "@label:"
  6596. #~ msgid "Pause"
  6597. #~ msgstr "Pausa"
  6598. #~ msgctxt "@label:"
  6599. #~ msgid "Resume"
  6600. #~ msgstr "Riprendi"
  6601. #~ msgctxt "@label:"
  6602. #~ msgid "Abort Print"
  6603. #~ msgstr "Interrompi la stampa"
  6604. #~ msgctxt "@option:openProject"
  6605. #~ msgid "Always ask"
  6606. #~ msgstr "Chiedi sempre"
  6607. #~ msgctxt "@label"
  6608. #~ msgid "Override Profile"
  6609. #~ msgstr "Override profilo"
  6610. #~ msgctxt "@info:tooltip"
  6611. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6612. #~ msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)"
  6613. #~ msgctxt "@option:check"
  6614. #~ msgid "Do not arrange objects on load"
  6615. #~ msgstr "Non posizionare oggetti sul carico"
  6616. #~ msgctxt "@action:inmenu menubar:file"
  6617. #~ msgid "&Save Selection to File"
  6618. #~ msgstr "&Salva selezione su file"
  6619. #~ msgctxt "@title:menu menubar:file"
  6620. #~ msgid "Save &As..."
  6621. #~ msgstr "Salva &come..."
  6622. #~ msgctxt "@title:menu menubar:file"
  6623. #~ msgid "Save &Project..."
  6624. #~ msgstr "Salva &progetto..."
  6625. # Added after the string freeze.
  6626. #~ msgctxt "@label"
  6627. #~ msgid "Use adhesion sheet or glue with this material combination"
  6628. #~ msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali"
  6629. #~ msgctxt "description"
  6630. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6631. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  6632. #~ msgctxt "name"
  6633. #~ msgid "Doodle3D WiFi-Box"
  6634. #~ msgstr "Doodle3D WiFi-Box"
  6635. #~ msgctxt "description"
  6636. #~ msgid "Provides an edit window for direct script editing."
  6637. #~ msgstr "Fornisce una finestra di modifica per la modifica script diretta."
  6638. #~ msgctxt "name"
  6639. #~ msgid "Live scripting tool"
  6640. #~ msgstr "Strumento di script diretto"
  6641. #~ msgctxt "description"
  6642. #~ msgid "Helps to open Blender files directly in Cura."
  6643. #~ msgstr "Aiuta ad aprire i file Blender direttamente in Cura."
  6644. #~ msgctxt "name"
  6645. #~ msgid "Blender Integration (experimental)"
  6646. #~ msgstr "Integrazione Blender (sperimentale)"
  6647. #~ msgctxt "@info:title"
  6648. #~ msgid "Model Checker Warning"
  6649. #~ msgstr "Avvertenza controllo modello"
  6650. #~ msgctxt "@info:status"
  6651. #~ msgid ""
  6652. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6653. #~ "Tips that may be useful to improve the print quality:\n"
  6654. #~ "1) Use rounded corners.\n"
  6655. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6656. #~ "3) Use a different material."
  6657. #~ msgstr ""
  6658. #~ "Alcuni modelli potrebbero non essere stampati in modo ottimale a causa delle dimensioni dell’oggetto e del materiale scelto: {model_names}.\n"
  6659. #~ "Suggerimenti utili per migliorare la qualità di stampa:\n"
  6660. #~ "1) Utilizzare angoli arrotondati.\n"
  6661. #~ "2) Spegnere la ventola (solo se non vi sono piccoli dettagli sul modello).\n"
  6662. #~ "3) Utilizzare un materiale diverso."
  6663. #~ msgctxt "@info:status"
  6664. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6665. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  6666. #~ msgctxt "@info:status"
  6667. #~ msgid ""
  6668. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6669. #~ "\n"
  6670. #~ "Thanks!"
  6671. #~ msgstr ""
  6672. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  6673. #~ "\n"
  6674. #~ "Grazie."
  6675. #~ msgctxt "@info:status"
  6676. #~ msgid ""
  6677. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6678. #~ "\n"
  6679. #~ "Sorry!"
  6680. #~ msgstr ""
  6681. #~ "Trovato più di un componente o gruppo all’interno del disegno. Attualmente sono supportati solo i disegni con esattamente un componente o gruppo all’interno.\n"
  6682. #~ "\n"
  6683. #~ " Spiacenti."
  6684. #~ msgctxt "@item:inlistbox"
  6685. #~ msgid "SolidWorks part file"
  6686. #~ msgstr "File part SolidWorks"
  6687. #~ msgctxt "@item:inlistbox"
  6688. #~ msgid "SolidWorks assembly file"
  6689. #~ msgstr "File gruppo SolidWorks"
  6690. #~ msgctxt "@item:inlistbox"
  6691. #~ msgid "SolidWorks drawing file"
  6692. #~ msgstr "File disegno SolidWorks"
  6693. #~ msgctxt "@info:status"
  6694. #~ msgid ""
  6695. #~ "Dear customer,\n"
  6696. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6697. #~ "\n"
  6698. #~ "With kind regards\n"
  6699. #~ " - Thomas Karl Pietrowski"
  6700. #~ msgstr ""
  6701. #~ "Gentile cliente,\n"
  6702. #~ "non abbiamo trovato un’installazione valida di SolidWorks nel suo sistema. Questo significa che SolidWorks non è installato o che non possiede una licenza valida. La invitiamo a verificare che l’esecuzione di SolidWorks avvenga senza problemi e/o a contattare il suo ICT.\n"
  6703. #~ "\n"
  6704. #~ "Cordiali saluti\n"
  6705. #~ " - Thomas Karl Pietrowski"
  6706. #~ msgctxt "@info:status"
  6707. #~ msgid ""
  6708. #~ "Dear customer,\n"
  6709. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6710. #~ "\n"
  6711. #~ "With kind regards\n"
  6712. #~ " - Thomas Karl Pietrowski"
  6713. #~ msgstr ""
  6714. #~ "Gentile cliente,\n"
  6715. #~ "attualmente ha in esecuzione questo plugin su un sistema operativo diverso da Windows. Questo plugin funziona solo su Windows con SolidWorks installato, con inclusa una licenza valida. Si prega di installare questo plugin su una macchina Windows con SolidWorks installato.\n"
  6716. #~ "\n"
  6717. #~ "Cordiali saluti\n"
  6718. #~ " - Thomas Karl Pietrowski"
  6719. #~ msgid "Configure"
  6720. #~ msgstr "Configura"
  6721. #~ msgid "Installation guide for SolidWorks macro"
  6722. #~ msgstr "Guida per l’installazione di macro SolidWorks"
  6723. #~ msgctxt "@action:button"
  6724. #~ msgid "Disable"
  6725. #~ msgstr "Disabilita"
  6726. #~ msgctxt "@action:tooltip"
  6727. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6728. #~ msgstr "Non consente a Cura di inviare statistiche di utilizzo in forma anonima. È possibile riabilitare nelle preferenze."
  6729. #~ msgid "Install"
  6730. #~ msgstr "Installazione"
  6731. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6732. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR. Non è assegnato ad alcuna directory."
  6733. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6734. #~ msgstr "Installato correttamente plugin Siemens NX Cura."
  6735. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6736. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR."
  6737. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6738. #~ msgstr "Impossibile installare plugin Siemens NX. Impossibile impostare la variabile di ambiente UGII_USER_DIR per Siemens NX."
  6739. #~ msgctxt "@info:status"
  6740. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6741. #~ msgstr "Impossibile ottenere ID plugin da <filename>{0}</filename>"
  6742. #~ msgctxt "@info:tile"
  6743. #~ msgid "Warning"
  6744. #~ msgstr "Avvertenza"
  6745. #~ msgctxt "@window:title"
  6746. #~ msgid "Plugin browser"
  6747. #~ msgstr "Browser plugin"
  6748. #~ msgctxt "@label"
  6749. #~ msgid "Ultimaker 3"
  6750. #~ msgstr "Ultimaker 3"
  6751. #~ msgctxt "@label"
  6752. #~ msgid "Ultimaker 3 Extended"
  6753. #~ msgstr "Ultimaker 3 Extended"
  6754. #~ msgctxt "@title:window"
  6755. #~ msgid "SolidWorks: Export wizard"
  6756. #~ msgstr "SolidWorks: procedura guidata per l’esportazione"
  6757. #~ msgctxt "@action:label"
  6758. #~ msgid "Quality:"
  6759. #~ msgstr "Qualità:"
  6760. #~ msgctxt "@option:curaSolidworksStlQuality"
  6761. #~ msgid "Fine (3D-printing)"
  6762. #~ msgstr "Fine (stampa 3D)"
  6763. #~ msgctxt "@option:curaSolidworksStlQuality"
  6764. #~ msgid "Coarse (3D-printing)"
  6765. #~ msgstr "Grossolana (stampa 3D)"
  6766. #~ msgctxt "@option:curaSolidworksStlQuality"
  6767. #~ msgid "Fine (SolidWorks)"
  6768. #~ msgstr "Fine (SolidWorks)"
  6769. #~ msgctxt "@option:curaSolidworksStlQuality"
  6770. #~ msgid "Coarse (SolidWorks)"
  6771. #~ msgstr "Grossolana (SolidWorks)"
  6772. #~ msgctxt "@text:window"
  6773. #~ msgid "Show this dialog again"
  6774. #~ msgstr "Mostra nuovamente questa finestra di dialogo"
  6775. #~ msgctxt "@action:button"
  6776. #~ msgid "Continue"
  6777. #~ msgstr "Continua"
  6778. #~ msgctxt "@action:button"
  6779. #~ msgid "Abort"
  6780. #~ msgstr "Interrompi"
  6781. #~ msgctxt "@title:window"
  6782. #~ msgid "How to install Cura SolidWorks macro"
  6783. #~ msgstr "Come installare la macro Cura SolidWorks"
  6784. #~ msgctxt "@description:label"
  6785. #~ msgid "Steps:"
  6786. #~ msgstr "Fasi:"
  6787. #~ msgctxt "@action:button"
  6788. #~ msgid ""
  6789. #~ "Open the directory\n"
  6790. #~ "with macro and icon"
  6791. #~ msgstr ""
  6792. #~ "Aprire la directory\n"
  6793. #~ "con macro e icona"
  6794. #~ msgctxt "@description:label"
  6795. #~ msgid "Instructions:"
  6796. #~ msgstr "Istruzioni:"
  6797. #~ msgctxt "@action:playpause"
  6798. #~ msgid "Play"
  6799. #~ msgstr "Riproduci"
  6800. #~ msgctxt "@action:playpause"
  6801. #~ msgid "Pause"
  6802. #~ msgstr "Pausa"
  6803. #~ msgctxt "@action:button"
  6804. #~ msgid "Previous Step"
  6805. #~ msgstr "Fase precedente"
  6806. #~ msgctxt "@action:button"
  6807. #~ msgid "Done"
  6808. #~ msgstr "Eseguito"
  6809. #~ msgctxt "@action:button"
  6810. #~ msgid "Next Step"
  6811. #~ msgstr "Fase successiva"
  6812. #~ msgctxt "@title:window"
  6813. #~ msgid "SolidWorks plugin: Configuration"
  6814. #~ msgstr "Plugin SolidWorks: configurazione"
  6815. #~ msgctxt "@title:tab"
  6816. #~ msgid "Conversion settings"
  6817. #~ msgstr "Impostazioni di conversione"
  6818. #~ msgctxt "@label"
  6819. #~ msgid "First choice:"
  6820. #~ msgstr "Prima scelta:"
  6821. #~ msgctxt "@text:menu"
  6822. #~ msgid "Latest installed version (Recommended)"
  6823. #~ msgstr "Ultima versione installata (consigliata)"
  6824. #~ msgctxt "@text:menu"
  6825. #~ msgid "Default version"
  6826. #~ msgstr "Versione predefinita"
  6827. #~ msgctxt "@label"
  6828. #~ msgid "Show wizard before opening SolidWorks files"
  6829. #~ msgstr "Mostra la procedura guidata prima di aprire i file SolidWorks"
  6830. #~ msgctxt "@label"
  6831. #~ msgid "Automatically rotate opened file into normed orientation"
  6832. #~ msgstr "Ruota automaticamente il file aperto nell’orientamento corretto"
  6833. #~ msgctxt "@title:tab"
  6834. #~ msgid "Installation(s)"
  6835. #~ msgstr "Installazione(i)"
  6836. #~ msgctxt "@label"
  6837. #~ msgid "COM service found"
  6838. #~ msgstr "Servizio COM trovato"
  6839. #~ msgctxt "@label"
  6840. #~ msgid "Executable found"
  6841. #~ msgstr "Eseguibile trovato"
  6842. #~ msgctxt "@label"
  6843. #~ msgid "COM starting"
  6844. #~ msgstr "COM in avvio"
  6845. #~ msgctxt "@label"
  6846. #~ msgid "Revision number"
  6847. #~ msgstr "Numero di revisione"
  6848. #~ msgctxt "@label"
  6849. #~ msgid "Functions available"
  6850. #~ msgstr "Funzioni disponibili"
  6851. #~ msgctxt "@label (%1 is object name)"
  6852. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6853. #~ msgstr "Il nuovo diametro materiale è impostato a %1 mm, che non è compatibile con la macchina corrente. Continuare?"
  6854. #~ msgctxt "@action:menu"
  6855. #~ msgid "Browse plugins..."
  6856. #~ msgstr "Sfoglia plugin..."
  6857. #~ msgctxt "@title:menu menubar:toplevel"
  6858. #~ msgid "P&lugins"
  6859. #~ msgstr "&Plugin"
  6860. #~ msgctxt "@window:title"
  6861. #~ msgid "Install Plugin"
  6862. #~ msgstr "Installa plugin"
  6863. #~ msgctxt "description"
  6864. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6865. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  6866. #~ msgctxt "description"
  6867. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6868. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  6869. #~ msgctxt "description"
  6870. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6871. #~ msgstr "Offre la possibilità di aprire alcuni file utilizzando SolidWorks. La conversione viene effettuata da questo plugin e ottimizzazioni addizionali."
  6872. #~ msgctxt "name"
  6873. #~ msgid "SolidWorks Integration"
  6874. #~ msgstr "Integrazione SolidWorks"
  6875. #~ msgctxt "description"
  6876. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6877. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  6878. #~ msgctxt "name"
  6879. #~ msgid "Auto Save"
  6880. #~ msgstr "Salvataggio automatico"
  6881. #~ msgctxt "description"
  6882. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6883. #~ msgstr "Consente di installare un pulsante 'Esporta in Cura' in Siemens NX."
  6884. #~ msgctxt "name"
  6885. #~ msgid "Siemens NX Integration"
  6886. #~ msgstr "Integrazione Siemens NX"
  6887. #~ msgctxt "description"
  6888. #~ msgid "Find, manage and install new plugins."
  6889. #~ msgstr "Trova, gestisce e installa nuovi plugin."
  6890. #~ msgctxt "name"
  6891. #~ msgid "Plugin Browser"
  6892. #~ msgstr "Browser plugin"
  6893. #~ msgctxt "description"
  6894. #~ msgid "Ask the user once if he/she agrees with our license"
  6895. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza"
  6896. #~ msgctxt "description"
  6897. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6898. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  6899. #~ msgctxt "@item:inlistbox"
  6900. #~ msgid "GCode File"
  6901. #~ msgstr "File GCode"
  6902. #~ msgctxt "@info:status"
  6903. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6904. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata o non collegata."
  6905. #~ msgctxt "@info:title"
  6906. #~ msgid "Printer Unavailable"
  6907. #~ msgstr "Stampante non disponibile"
  6908. #~ msgctxt "@info:status"
  6909. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6910. #~ msgstr "Questa stampante non supporta la stampa tramite USB in quanto utilizza la versione UltiGCode."
  6911. #~ msgctxt "@info:title"
  6912. #~ msgid "USB Printing"
  6913. #~ msgstr "Stampa USB"
  6914. #~ msgctxt "@info:status"
  6915. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6916. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante non supporta la stampa tramite USB."
  6917. #~ msgctxt "@info"
  6918. #~ msgid "Unable to update firmware because there are no printers connected."
  6919. #~ msgstr "Impossibile aggiornare il firmware perché non ci sono stampanti collegate."
  6920. #~ msgctxt "@info"
  6921. #~ msgid "Could not find firmware required for the printer at %s."
  6922. #~ msgstr "Impossibile trovare il firmware richiesto per la stampante a %s."
  6923. #~ msgctxt "@info:title"
  6924. #~ msgid "Printer Firmware"
  6925. #~ msgstr "Firmware stampante"
  6926. #~ msgctxt "@info:title"
  6927. #~ msgid "Connection status"
  6928. #~ msgstr "Stato di connessione"
  6929. #~ msgctxt "@info:title"
  6930. #~ msgid "Connection Status"
  6931. #~ msgstr "Stato di connessione"
  6932. #~ msgctxt "@info:status"
  6933. #~ msgid "Access request was denied on the printer."
  6934. #~ msgstr "Richiesta di accesso negata sulla stampante."
  6935. #~ msgctxt "@info:status"
  6936. #~ msgid "Access request failed due to a timeout."
  6937. #~ msgstr "Richiesta di accesso non riuscita per superamento tempo."
  6938. #~ msgctxt "@info:status"
  6939. #~ msgid "The connection with the network was lost."
  6940. #~ msgstr "Il collegamento con la rete si è interrotto."
  6941. #~ msgctxt "@info:status"
  6942. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6943. #~ msgstr "Il collegamento con la stampante si è interrotto. Controllare la stampante per verificare se è collegata."
  6944. #~ msgctxt "@info:status"
  6945. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6946. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Stato stampante corrente %s."
  6947. #~ msgctxt "@info:title"
  6948. #~ msgid "Printer Status"
  6949. #~ msgstr "Stato stampante"
  6950. #~ msgctxt "@info:status"
  6951. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6952. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun Printcore caricato nello slot {0}"
  6953. #~ msgctxt "@info:status"
  6954. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6955. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun materiale caricato nello slot {0}"
  6956. #~ msgctxt "@label"
  6957. #~ msgid "Not enough material for spool {0}."
  6958. #~ msgstr "Materiale per la bobina insufficiente {0}."
  6959. #~ msgctxt "@label"
  6960. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6961. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionata per estrusore {2}"
  6962. #~ msgctxt "@label"
  6963. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6964. #~ msgstr "PrintCore {0} non correttamente calibrato. Necessario eseguire calibrazione XY sulla stampante."
  6965. #~ msgctxt "@info:status"
  6966. #~ msgid "Unable to send data to printer. Is another job still active?"
  6967. #~ msgstr "Impossibile inviare i dati alla stampante. Altro processo ancora attivo?"
  6968. #~ msgctxt "@label:MonitorStatus"
  6969. #~ msgid "Print aborted. Please check the printer"
  6970. #~ msgstr "Stampa interrotta. Controllare la stampante"
  6971. #~ msgctxt "@label:MonitorStatus"
  6972. #~ msgid "Pausing print..."
  6973. #~ msgstr "Messa in pausa stampa..."
  6974. #~ msgctxt "@label:MonitorStatus"
  6975. #~ msgid "Resuming print..."
  6976. #~ msgstr "Ripresa stampa..."
  6977. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6978. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  6979. #~ msgctxt "Count is number of printers."
  6980. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6981. #~ msgstr "Questa stampante fa da host per un gruppo di {count} stampanti Ultimaker 3 connesse."
  6982. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6983. #~ msgstr "{printer_name} ha terminato la stampa '{job_name}'. Rimuovere la stampa e confermare la pulizia del piano di stampa."
  6984. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6985. #~ msgstr "{printer_name} è riservata per la stampa di '{job_name}'. Modificare la configurazione della stampante in modo che corrisponda al lavoro da eseguire per avviare il processo di stampa."
  6986. #~ msgctxt "@info:status"
  6987. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6988. #~ msgstr "Impossibile inviare nuovo processo di stampa: questa stampante 3D non è (ancora) configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  6989. #~ msgctxt "@info:status"
  6990. #~ msgid "Unable to send print job to group {cluster_name}."
  6991. #~ msgstr "Impossibile inviare processo di stampa a gruppo {cluster_name}."
  6992. #~ msgctxt "@info:status"
  6993. #~ msgid "Sent {file_name} to group {cluster_name}."
  6994. #~ msgstr "Inviato {file_name} a gruppo {cluster_name}."
  6995. #~ msgctxt "@action:button"
  6996. #~ msgid "Show print jobs"
  6997. #~ msgstr "Mostra processi di stampa"
  6998. #~ msgctxt "@info:tooltip"
  6999. #~ msgid "Opens the print jobs interface in your browser."
  7000. #~ msgstr "Apre l'interfaccia processi di stampa sul browser."
  7001. #~ msgctxt "@label Printer name"
  7002. #~ msgid "Unknown"
  7003. #~ msgstr "Sconosciuto"
  7004. #~ msgctxt "@info:progress"
  7005. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7006. #~ msgstr "Invio <filename>{file_name}</filename> a gruppo {cluster_name}"
  7007. #~ msgctxt "@info:status"
  7008. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7009. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  7010. #~ msgctxt "@info:status"
  7011. #~ msgid ""
  7012. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7013. #~ "\n"
  7014. #~ " Thanks!."
  7015. #~ msgstr ""
  7016. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  7017. #~ "\n"
  7018. #~ " Grazie."
  7019. #~ msgctxt "@info:status"
  7020. #~ msgid ""
  7021. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7022. #~ "\n"
  7023. #~ "Sorry!"
  7024. #~ msgstr ""
  7025. #~ "Trovato più di un componente o gruppo all’interno del disegno. Attualmente sono supportati solo i disegni con esattamente un componente o gruppo all’interno.\n"
  7026. #~ "\n"
  7027. #~ " Spiacenti."
  7028. #~ msgctxt "@item:material"
  7029. #~ msgid "No material loaded"
  7030. #~ msgstr "Nessun materiale caricato"
  7031. #~ msgctxt "@item:material"
  7032. #~ msgid "Unknown material"
  7033. #~ msgstr "Materiale sconosciuto"
  7034. #~ msgctxt "@info:status Has a cancel button next to it."
  7035. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7036. #~ msgstr "Il diametro del materiale selezionato lo rende incompatibile con l'attuale stampante."
  7037. #~ msgctxt "@action:button"
  7038. #~ msgid "Undo"
  7039. #~ msgstr "Annulla"
  7040. #~ msgctxt "@action"
  7041. #~ msgid "Undo changing the material diameter."
  7042. #~ msgstr "Annulla modifica del diametro del materiale."
  7043. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7044. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7045. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> non corrisponde alla macchina corrente, impossibile importarlo."
  7046. #~ msgctxt "@label crash message"
  7047. #~ msgid ""
  7048. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7049. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7050. #~ " "
  7051. #~ msgstr ""
  7052. #~ "<p><b>Si è verificato un errore fatale. Si prega di inviare questo Report su crash per correggere il problema</p></b>\n"
  7053. #~ " <p>Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  7054. #~ " "
  7055. #~ msgctxt "@label"
  7056. #~ msgid "not yet initialised<br/>"
  7057. #~ msgstr "non ancora inizializzato<br/>"
  7058. #~ msgctxt "@label"
  7059. #~ msgid "Gcode flavor"
  7060. #~ msgstr "Versione GCode"
  7061. #~ msgctxt "@label"
  7062. #~ msgid "Start Gcode"
  7063. #~ msgstr "Avvio GCode"
  7064. #~ msgctxt "@tooltip"
  7065. #~ msgid "Gcode commands to be executed at the very start."
  7066. #~ msgstr "Comandi Gcode da eseguire all’avvio."
  7067. #~ msgctxt "@label"
  7068. #~ msgid "End Gcode"
  7069. #~ msgstr "Fine GCode"
  7070. #~ msgctxt "@tooltip"
  7071. #~ msgid "Gcode commands to be executed at the very end."
  7072. #~ msgstr "Comandi Gcode da eseguire alla fine."
  7073. #~ msgctxt "@label"
  7074. #~ msgid "Extruder Start Gcode"
  7075. #~ msgstr "Gcode avvio estrusore"
  7076. #~ msgctxt "@label"
  7077. #~ msgid "Extruder End Gcode"
  7078. #~ msgstr "Gcode fine estrusore"
  7079. #~ msgctxt "@label"
  7080. #~ msgid "Starting firmware update, this may take a while."
  7081. #~ msgstr "Avvio aggiornamento firmware. Questa operazione può richiedere qualche istante."
  7082. #~ msgctxt "@label"
  7083. #~ msgid "Unknown error code: %1"
  7084. #~ msgstr "Codice errore sconosciuto: %1"
  7085. #~ msgctxt "@label Printer name"
  7086. #~ msgid "Ultimaker 3"
  7087. #~ msgstr "Ultimaker 3"
  7088. #~ msgctxt "@label Printer name"
  7089. #~ msgid "Ultimaker 3 Extended"
  7090. #~ msgstr "Ultimaker 3 Extended"
  7091. #~ msgctxt "@label Printer status"
  7092. #~ msgid "Unknown"
  7093. #~ msgstr "Sconosciuto"
  7094. #~ msgctxt "@title:window"
  7095. #~ msgid "Find & Update plugins"
  7096. #~ msgstr "Trova e Aggiorna plugin"
  7097. #~ msgctxt "@label"
  7098. #~ msgid "Here you can find a list of Third Party plugins."
  7099. #~ msgstr "Qui è possibile trovare un elenco dei plugin forniti da terzi."
  7100. #~ msgctxt "@action:button"
  7101. #~ msgid "Upgrade"
  7102. #~ msgstr "Aggiorna"
  7103. #~ msgctxt "@action:button"
  7104. #~ msgid "Download"
  7105. #~ msgstr "Download"
  7106. #~ msgctxt "@info:tooltip"
  7107. #~ msgid "Show caution message in gcode reader."
  7108. #~ msgstr "Visualizza il messaggio di avvertimento sul lettore gcode."
  7109. #~ msgctxt "@option:check"
  7110. #~ msgid "Caution message in gcode reader"
  7111. #~ msgstr "Messaggio di avvertimento sul lettore gcode"
  7112. #~ msgctxt "@window:title"
  7113. #~ msgid "Import Profile"
  7114. #~ msgstr "Importa profilo"
  7115. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7116. #~ msgid "Printer: %1, %2: %3"
  7117. #~ msgstr "Stampante: %1, %2: %3"
  7118. #~ msgctxt "@action:label %1 is printer name"
  7119. #~ msgid "Printer: %1"
  7120. #~ msgstr "Stampante: %1"
  7121. #~ msgctxt "@label"
  7122. #~ msgid "GCode generator"
  7123. #~ msgstr "GCode generator"
  7124. #~ msgctxt "@action:menu"
  7125. #~ msgid "Configure setting visiblity..."
  7126. #~ msgstr "Configurazione visibilità delle impostazioni in corso..."
  7127. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7128. #~ msgid "Automatic: %1"
  7129. #~ msgstr "Automatico: %1"
  7130. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7131. #~ msgid "Automatic: %1"
  7132. #~ msgstr "Automatico: %1"
  7133. #~ msgctxt "@info:status"
  7134. #~ msgid "No printer connected"
  7135. #~ msgstr "Nessuna stampante collegata"
  7136. #~ msgctxt "@tooltip"
  7137. #~ msgid "The current temperature of this extruder."
  7138. #~ msgstr "La temperatura corrente di questo estrusore."
  7139. #~ msgctxt "@action:menu"
  7140. #~ msgid "Installed plugins..."
  7141. #~ msgstr "Plugin installati..."
  7142. #~ msgctxt "@label"
  7143. #~ msgid "Support Extruder"
  7144. #~ msgstr "Estrusore del supporto"
  7145. #~ msgctxt "description"
  7146. #~ msgid "Writes GCode to a file."
  7147. #~ msgstr "Scrive il GCode in un file."
  7148. #~ msgctxt "name"
  7149. #~ msgid "GCode Writer"
  7150. #~ msgstr "Writer GCode"
  7151. #~ msgctxt "name"
  7152. #~ msgid "GCode Profile Reader"
  7153. #~ msgstr "Lettore profilo GCode"
  7154. #~ msgctxt "@info:status"
  7155. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  7156. #~ msgstr "Rilevati errori all'apertura del file SolidWorks! Controllare se è possibile aprire il file in SolidWorks senza che si verifichino problemi!"
  7157. #~ msgctxt "@info:status"
  7158. #~ msgid "Error while starting %s!"
  7159. #~ msgstr "Errore durante l'avvio di %s!"
  7160. #~ msgctxt "@item:inlistbox"
  7161. #~ msgid "Simulation view"
  7162. #~ msgstr "Vista simulazione"
  7163. #~ msgctxt "@info"
  7164. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7165. #~ msgstr "Cura acquisisce dati statistici elaborati in forma anonima. L'acquisizione può essere disabilitata nelle preferenze."
  7166. #~ msgctxt "@action:button"
  7167. #~ msgid "Dismiss"
  7168. #~ msgstr "Ignora"
  7169. #~ msgctxt "@menuitem"
  7170. #~ msgid "Global"
  7171. #~ msgstr "Globale"
  7172. #~ msgctxt "@label crash message"
  7173. #~ msgid ""
  7174. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7175. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7176. #~ " "
  7177. #~ msgstr ""
  7178. #~ "<p><b>Si è verificata un'eccezione irreversibile. Si prega di inviarci questo crash report per risolvere il problema</p></b> \n"
  7179. #~ " <p>Utilizzare il pulsante \"Invia report\" per inviare un report sui bug automaticamente ai nostri server</p>\n"
  7180. #~ " "
  7181. #~ msgctxt "@label Cura version"
  7182. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7183. #~ msgstr "<b>Versione Cura:</b> {version}<br/>"
  7184. #~ msgctxt "@label Platform"
  7185. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7186. #~ msgstr "<b>Piattaforma:</b> {platform}<br/>"
  7187. #~ msgctxt "@label Qt version"
  7188. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7189. #~ msgstr "<b>Versione Qt:</b> {qt}<br/>"
  7190. #~ msgctxt "@label PyQt version"
  7191. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7192. #~ msgstr "<b>Versione PyQt:</b> {pyqt}<br/>"
  7193. #~ msgctxt "@label OpenGL"
  7194. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7195. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7196. #~ msgctxt "@title:groupbox"
  7197. #~ msgid "Exception traceback"
  7198. #~ msgstr "Analisi eccezione"
  7199. #~ msgctxt "@label"
  7200. #~ msgid "Material diameter"
  7201. #~ msgstr "Diametro materiale"
  7202. #~ msgctxt "@title:window"
  7203. #~ msgid "Cura SolidWorks Plugin Configuration"
  7204. #~ msgstr "Configurazione plugin Cura SolidWorks"
  7205. #~ msgctxt "@action:label"
  7206. #~ msgid "Default quality of the exported STL:"
  7207. #~ msgstr "Qualità predefinita STL esportato:"
  7208. #~ msgctxt "@option:curaSolidworksStlQuality"
  7209. #~ msgid "Always ask"
  7210. #~ msgstr "Chiedi sempre"
  7211. #~ msgctxt "@option:curaSolidworksStlQuality"
  7212. #~ msgid "Always use Fine quality"
  7213. #~ msgstr "Utilizza sempre la qualità Fine"
  7214. #~ msgctxt "@option:curaSolidworksStlQuality"
  7215. #~ msgid "Always use Coarse quality"
  7216. #~ msgstr "Utilizza sempre la qualità Grossolana"
  7217. #~ msgctxt "@title:window"
  7218. #~ msgid "Import SolidWorks File as STL..."
  7219. #~ msgstr "Importa file SolidWorks come STL..."
  7220. #~ msgctxt "@info:tooltip"
  7221. #~ msgid "Quality of the Exported STL"
  7222. #~ msgstr "Qualità STL esportato"
  7223. #~ msgctxt "@action:label"
  7224. #~ msgid "Quality"
  7225. #~ msgstr "Qualità"
  7226. #~ msgctxt "@option:curaSolidworksStlQuality"
  7227. #~ msgid "Coarse"
  7228. #~ msgstr "Grossolana"
  7229. #~ msgctxt "@option:curaSolidworksStlQuality"
  7230. #~ msgid "Fine"
  7231. #~ msgstr "Fine"
  7232. #~ msgctxt "@"
  7233. #~ msgid "No Profile Available"
  7234. #~ msgstr "Nessun profilo disponibile"
  7235. #~ msgctxt "@label"
  7236. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7237. #~ msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori"
  7238. #~ msgctxt "@tooltip"
  7239. #~ msgid "<b>Time specification</b><br/><table>"
  7240. #~ msgstr "<b>Indicazione del tempo</b><br/><table>"
  7241. #~ msgctxt "@action:inmenu menubar:view"
  7242. #~ msgid "&Reset camera position"
  7243. #~ msgstr "&Ripristina la posizione della telecamera"
  7244. #~ msgctxt "@title:menu menubar:file"
  7245. #~ msgid "Save project"
  7246. #~ msgstr "Salva progetto"
  7247. #~ msgctxt "@title:tab"
  7248. #~ msgid "Prepare"
  7249. #~ msgstr "Prepara"
  7250. #~ msgctxt "@title:tab"
  7251. #~ msgid "Monitor"
  7252. #~ msgstr "Controlla"
  7253. #~ msgctxt "@label"
  7254. #~ msgid "<a href='%1'>Check compatibility</a>"
  7255. #~ msgstr "<a href='%1'>Controllo compatibilità</a>"
  7256. #~ msgctxt "description"
  7257. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7258. #~ msgstr "Offre la possibilità di aprire alcuni file tramite SolidWorks stessa. Questi vengono quindi convertiti e caricati in Cura"
  7259. #~ msgctxt "@label:status"
  7260. #~ msgid "Blocked"
  7261. #~ msgstr "Bloccato"
  7262. #~ msgctxt "@label:status"
  7263. #~ msgid "Can't start print"
  7264. #~ msgstr "Impossibile avviare la stampa"
  7265. #~ msgctxt "@action:button"
  7266. #~ msgid "Open Connect.."
  7267. #~ msgstr "Apri Connect.."
  7268. #~ msgctxt "@info:title"
  7269. #~ msgid "Print Details"
  7270. #~ msgstr "Dettagli stampa"
  7271. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7272. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  7273. #~ msgstr "Per verificare che la vostra {machine_name} sia dotata delle funzionalità più recenti, si consiglia di aggiornare periodicamente il firmware. Questo può essere fatto sulla {machine_name} (quando connessa alla rete) o via USB."
  7274. #~ msgctxt "@info:title"
  7275. #~ msgid "Layer View"
  7276. #~ msgstr "Visualizzazione layer"
  7277. #~ msgctxt "@menuitem"
  7278. #~ msgid "Browse plugins"
  7279. #~ msgstr "Sfoglia plugin"
  7280. #~ msgctxt "@info:title"
  7281. #~ msgid "Export Details"
  7282. #~ msgstr "Dettagli esportazione"
  7283. #~ msgctxt "@label"
  7284. #~ msgid ""
  7285. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7286. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7287. #~ " "
  7288. #~ msgstr ""
  7289. #~ "<p>Si è verificata un'eccezione fatale che non stato possibile superare!</p>\n"
  7290. #~ " <p>Utilizzare le informazioni sotto riportate per inviare un rapporto sull'errore a <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7291. #~ " "
  7292. #~ msgctxt "@action:button"
  7293. #~ msgid "Open Web Page"
  7294. #~ msgstr "Apri pagina Web"
  7295. #~ msgctxt "@action:button"
  7296. #~ msgid "Ok"
  7297. #~ msgstr "Ok"
  7298. #~ msgctxt "@label"
  7299. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7300. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  7301. #~ msgctxt "@label"
  7302. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7303. #~ msgstr "Questa stampante fa da host per un gruppo di %1 stampanti Ultimaker 3 connesse"
  7304. #~ msgctxt "@label"
  7305. #~ msgid "Completed on: "
  7306. #~ msgstr "Completato su: "
  7307. #~ msgctxt "@info:tooltip"
  7308. #~ msgid "Opens the print jobs page with your default web browser."
  7309. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  7310. #~ msgctxt "@label"
  7311. #~ msgid "PRINTER GROUP"
  7312. #~ msgstr "GRUPPO STAMPANTI"
  7313. #~ msgctxt "@action:warning"
  7314. #~ msgid "Loading a project will clear all models on the buildplate"
  7315. #~ msgstr "Il caricamento di un modello annulla tutti i modelli sul piano di stampa"
  7316. #~ msgctxt "@label"
  7317. #~ msgid ""
  7318. #~ " plugin contains a license.\n"
  7319. #~ "You need to accept this license to install this plugin.\n"
  7320. #~ "Do you agree with the terms below?"
  7321. #~ msgstr ""
  7322. #~ " I plugin contengono una licenza.\n"
  7323. #~ "È necessario accettare questa licenza per poter installare il plugin.\n"
  7324. #~ "Accetti i termini sotto riportati?"
  7325. #~ msgctxt "@label"
  7326. #~ msgid "00h 00min"
  7327. #~ msgstr "00h 00min"
  7328. #~ msgctxt "@tooltip"
  7329. #~ msgid "<b>Time information</b>"
  7330. #~ msgstr "<b>Informazioni su tempo</b>"
  7331. #~ msgctxt "@description"
  7332. #~ msgid "Print time"
  7333. #~ msgstr "Tempo di stampa"
  7334. #~ msgctxt "@label"
  7335. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7336. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7337. #~ msgctxt "@label"
  7338. #~ msgid "%1m / ~ %2g"
  7339. #~ msgstr "%1m / ~ %2g"
  7340. #~ msgctxt "@title:window"
  7341. #~ msgid "Cura"
  7342. #~ msgstr "Cura"
  7343. #~ msgctxt "@label"
  7344. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7345. #~ msgstr "<a href='%1'>Controllo compatibilità materiale</a>"
  7346. #~ msgctxt "name"
  7347. #~ msgid "UM3 Network Connection (Cluster)"
  7348. #~ msgstr "Connessione di rete UM3 (Cluster)"
  7349. #~ msgctxt "description"
  7350. #~ msgid "Provides the Layer view."
  7351. #~ msgstr "Fornisce la visualizzazione degli strati."
  7352. #~ msgctxt "name"
  7353. #~ msgid "Layer View"
  7354. #~ msgstr "Visualizzazione layer"
  7355. #~ msgctxt "@item:inlistbox"
  7356. #~ msgid "X-Ray"
  7357. #~ msgstr "Raggi X"
  7358. #~ msgctxt "@label"
  7359. #~ msgid "Doodle3D"
  7360. #~ msgstr "Doodle3D"
  7361. #~ msgctxt "@info:whatsthis"
  7362. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7363. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  7364. #~ msgctxt "@item:inmenu"
  7365. #~ msgid "Doodle3D printing"
  7366. #~ msgstr "Stampa Doodle3D"
  7367. #~ msgctxt "@action:button"
  7368. #~ msgid "Print with Doodle3D"
  7369. #~ msgstr "Stampa con Doodle3D"
  7370. #~ msgctxt "@info:tooltip"
  7371. #~ msgid "Print with "
  7372. #~ msgstr "Stampa con"
  7373. #~ msgctxt "@title:menu"
  7374. #~ msgid "Doodle3D"
  7375. #~ msgstr "Doodle3D"
  7376. #~ msgctxt "@item:inlistbox"
  7377. #~ msgid "Enable Scan devices..."
  7378. #~ msgstr "Abilita dispositivi di scansione..."
  7379. #~ msgctxt "@info:progress"
  7380. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7381. #~ msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  7382. #~ msgctxt "@info:status"
  7383. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7384. #~ msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  7385. #~ msgctxt "@info:status"
  7386. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7387. #~ msgstr "Tenere presente che è necessario riaprire il file SolidWorks manualmente! Il ricaricamento del modello non funziona!"
  7388. #~ msgctxt "@item:inlistbox"
  7389. #~ msgid "Layers"
  7390. #~ msgstr "Strati"
  7391. #~ msgid "Browse plugins"
  7392. #~ msgstr "Sfoglia plugin"
  7393. #~ msgctxt "@item:inmenu"
  7394. #~ msgid "Solid"
  7395. #~ msgstr "Solido"
  7396. #~ msgctxt "@label"
  7397. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7398. #~ msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di voler sovrascrivere?"
  7399. #~ msgctxt "@info:status"
  7400. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7401. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: <message>{1}</message>"
  7402. #~ msgctxt "@info:status"
  7403. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7404. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: Errore di plugin writer."
  7405. #~ msgctxt "@info:status"
  7406. #~ msgid "Exported profile to <filename>{0}</filename>"
  7407. #~ msgstr "Profilo esportato su <filename>{0}</filename>"
  7408. #~ msgctxt "@info:status"
  7409. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7410. #~ msgstr "Impossibile importare profilo da <filename>{0}</filename>: <message>{1}</message>"
  7411. #~ msgctxt "@title:window"
  7412. #~ msgid "Doodle3D Settings"
  7413. #~ msgstr "Impostazioni Doodle3D"
  7414. #~ msgctxt "@title:window"
  7415. #~ msgid "Print to: %1"
  7416. #~ msgstr "Stampa a: %1"
  7417. #~ msgctxt "@label"
  7418. #~ msgid "Extruder Temperature: %1/%2°C"
  7419. #~ msgstr "Temperatura estrusore: %1/%2°C"
  7420. #~ msgctxt "@label"
  7421. #~ msgid "Bed Temperature: %1/%2°C"
  7422. #~ msgstr "Temperatura piano di stampa: %1/%2°C"
  7423. #~ msgctxt "@label"
  7424. #~ msgid "%1"
  7425. #~ msgstr "%1"
  7426. #~ msgctxt "@label"
  7427. #~ msgid "View Mode: Layers"
  7428. #~ msgstr "Modalità di visualizzazione: strati"
  7429. #~ msgctxt "@info:status"
  7430. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7431. #~ msgstr "Impossibile importare materiale <filename>%1</filename>: <message>%2</message>"
  7432. #~ msgctxt "@info:status"
  7433. #~ msgid "Successfully imported material <filename>%1</filename>"
  7434. #~ msgstr "Materiale importato correttamente <filename>%1</filename>"
  7435. #~ msgctxt "@info:status"
  7436. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7437. #~ msgstr "Impossibile esportare materiale su <filename>%1</filename>: <message>%2</message>"
  7438. #~ msgctxt "@info:status"
  7439. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7440. #~ msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  7441. #~ msgctxt "@label"
  7442. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7443. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7444. #~ msgctxt "@label"
  7445. #~ msgid "%1 m / ~ %2 g"
  7446. #~ msgstr "%1 m / ~ %2 g"
  7447. #~ msgctxt "@label"
  7448. #~ msgid "Hotend"
  7449. #~ msgstr "Hotend"
  7450. #~ msgctxt "@action:button"
  7451. #~ msgid "View Mode"
  7452. #~ msgstr "Modalità di visualizzazione"
  7453. #~ msgctxt "@title:tab"
  7454. #~ msgid "Print"
  7455. #~ msgstr "Stampa"
  7456. #~ msgctxt "@label"
  7457. #~ msgid "0%"
  7458. #~ msgstr "0%"
  7459. #~ msgctxt "@label"
  7460. #~ msgid "Empty infill will leave your model hollow with low strength."
  7461. #~ msgstr "Un riempimento vuoto lascerà il modello cavo e poco resistente."
  7462. #~ msgctxt "@label"
  7463. #~ msgid "20%"
  7464. #~ msgstr "20%"
  7465. #~ msgctxt "@label"
  7466. #~ msgid "Light (20%) infill will give your model an average strength."
  7467. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media."
  7468. #~ msgctxt "@label"
  7469. #~ msgid "50%"
  7470. #~ msgstr "50%"
  7471. #~ msgctxt "@label"
  7472. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7473. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media."
  7474. #~ msgctxt "@label"
  7475. #~ msgid "100%"
  7476. #~ msgstr "100%"
  7477. #~ msgctxt "@label"
  7478. #~ msgid "Solid (100%) infill will make your model completely solid."
  7479. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno."
  7480. #~ msgctxt "@label"
  7481. #~ msgid "Gradual"
  7482. #~ msgstr "Graduale"
  7483. #~ msgctxt "description"
  7484. #~ msgid "Provides support for writing X3G files"
  7485. #~ msgstr "Fornisce il supporto per la scrittura di file X3G"
  7486. #~ msgctxt "name"
  7487. #~ msgid "X3G Writer"
  7488. #~ msgstr "Writer X3G"
  7489. #~ msgctxt "@label"
  7490. #~ msgid "Machine Settings action"
  7491. #~ msgstr "Azione Impostazioni macchina"
  7492. #~ msgctxt "@info:whatsthis"
  7493. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7494. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  7495. #~ msgctxt "@label"
  7496. #~ msgid "X-Ray View"
  7497. #~ msgstr "Vista ai raggi X"
  7498. #~ msgctxt "@info:whatsthis"
  7499. #~ msgid "Provides the X-Ray view."
  7500. #~ msgstr "Fornisce la vista a raggi X."
  7501. #~ msgctxt "@label"
  7502. #~ msgid "X3D Reader"
  7503. #~ msgstr "Lettore X3D"
  7504. #~ msgctxt "@info:whatsthis"
  7505. #~ msgid "Provides support for reading X3D files."
  7506. #~ msgstr "Fornisce il supporto per la lettura di file X3D."
  7507. #~ msgctxt "@label"
  7508. #~ msgid "GCode Writer"
  7509. #~ msgstr "Writer GCode"
  7510. #~ msgctxt "@info:whatsthis"
  7511. #~ msgid "Writes GCode to a file."
  7512. #~ msgstr "Scrive il GCode in un file."
  7513. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7514. #~ msgid "Print with Doodle3D"
  7515. #~ msgstr "Stampa con Doodle3D"
  7516. #~ msgctxt "@info:whatsthis"
  7517. #~ msgid "Shows changes since latest checked version."
  7518. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  7519. #~ msgctxt "@label"
  7520. #~ msgid "Profile flatener"
  7521. #~ msgstr "Appiattitore di profilo"
  7522. #~ msgctxt "@info:whatsthis"
  7523. #~ msgid "Create a flattend quality changes profile."
  7524. #~ msgstr "Crea un profilo appiattito."
  7525. #~ msgctxt "@label"
  7526. #~ msgid "USB printing"
  7527. #~ msgstr "Stampa USB"
  7528. #~ msgctxt "@info:whatsthis"
  7529. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7530. #~ msgstr "Accetta i G-Code e li invia ad una stampante. Il Plugin può anche aggiornare il firmware."
  7531. #~ msgctxt "X3G Writer Plugin Description"
  7532. #~ msgid "Writes X3G to a file"
  7533. #~ msgstr "Scrive X3G in un file"
  7534. #~ msgctxt "@label"
  7535. #~ msgid "Removable Drive Output Device Plugin"
  7536. #~ msgstr "Plugin dispositivo di output unità rimovibile"
  7537. #~ msgctxt "@info:whatsthis"
  7538. #~ msgid "Provides removable drive hotplugging and writing support."
  7539. #~ msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  7540. #~ msgctxt "@info:whatsthis"
  7541. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7542. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  7543. #~ msgctxt "@label"
  7544. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7545. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  7546. #~ msgctxt "@label"
  7547. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7548. #~ msgstr "Print core {0} non correttamente calibrato. Eseguire la calibrazione XY sulla stampante."
  7549. #~ msgctxt "@label"
  7550. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  7551. #~ msgstr "I PrintCore e/o i materiali della stampante sono diversi da quelli del progetto corrente. Per risultati ottimali, sezionare sempre i PrintCore e i materiali inseriti nella stampante utilizzata."
  7552. #~ msgctxt "@label"
  7553. #~ msgid "Post Processing"
  7554. #~ msgstr "Post-elaborazione"
  7555. #~ msgctxt "Description of plugin"
  7556. #~ msgid "Extension that allows for user created scripts for post processing"
  7557. #~ msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  7558. #~ msgctxt "@label"
  7559. #~ msgid "Auto Save"
  7560. #~ msgstr "Salvataggio automatico"
  7561. #~ msgctxt "@info:whatsthis"
  7562. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7563. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  7564. #~ msgctxt "@label"
  7565. #~ msgid "Slice info"
  7566. #~ msgstr "Informazioni su sezionamento"
  7567. #~ msgctxt "@info:whatsthis"
  7568. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7569. #~ msgstr "Inoltra informazioni anonime su sezionamento. Può essere disabilitato tramite preferenze."
  7570. #~ msgctxt "@info"
  7571. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7572. #~ msgstr "Cura raccoglie dati per analisi statistiche anonime. È possibile disabilitare questa opzione in preferenze"
  7573. #~ msgctxt "@label"
  7574. #~ msgid "Material Profiles"
  7575. #~ msgstr "Profili del materiale"
  7576. #~ msgctxt "@info:whatsthis"
  7577. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7578. #~ msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  7579. #~ msgctxt "@label"
  7580. #~ msgid "Legacy Cura Profile Reader"
  7581. #~ msgstr "Lettore legacy profilo Cura"
  7582. #~ msgctxt "@info:whatsthis"
  7583. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7584. #~ msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  7585. #~ msgctxt "@label"
  7586. #~ msgid "GCode Profile Reader"
  7587. #~ msgstr "Lettore profilo GCode"
  7588. #~ msgctxt "@info:whatsthis"
  7589. #~ msgid "Provides support for importing profiles from g-code files."
  7590. #~ msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  7591. #~ msgctxt "@label"
  7592. #~ msgid "Layer View"
  7593. #~ msgstr "Visualizzazione layer"
  7594. #~ msgctxt "@info:whatsthis"
  7595. #~ msgid "Provides the Layer view."
  7596. #~ msgstr "Fornisce la visualizzazione dei layer."
  7597. #~ msgctxt "@label"
  7598. #~ msgid "Version Upgrade 2.5 to 2.6"
  7599. #~ msgstr "Aggiornamento della versione da 2.5 a 2.6"
  7600. #~ msgctxt "@info:whatsthis"
  7601. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7602. #~ msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  7603. #~ msgctxt "@label"
  7604. #~ msgid "Version Upgrade 2.1 to 2.2"
  7605. #~ msgstr "Aggiornamento della versione da 2.1 a 2.2"
  7606. #~ msgctxt "@info:whatsthis"
  7607. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7608. #~ msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  7609. #~ msgctxt "@label"
  7610. #~ msgid "Version Upgrade 2.2 to 2.4"
  7611. #~ msgstr "Aggiornamento della versione da 2.2 a 2.4"
  7612. #~ msgctxt "@info:whatsthis"
  7613. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7614. #~ msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  7615. #~ msgctxt "@label"
  7616. #~ msgid "Image Reader"
  7617. #~ msgstr "Lettore di immagine"
  7618. #~ msgctxt "@info:whatsthis"
  7619. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7620. #~ msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  7621. #~ msgctxt "@label"
  7622. #~ msgid "CuraEngine Backend"
  7623. #~ msgstr "Back-end CuraEngine"
  7624. #~ msgctxt "@info:whatsthis"
  7625. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7626. #~ msgstr "Fornisce il collegamento al back-end di slicing di CuraEngine."
  7627. #~ msgctxt "@label"
  7628. #~ msgid "Per Model Settings Tool"
  7629. #~ msgstr "Utilità impostazioni per modello"
  7630. #~ msgctxt "@info:whatsthis"
  7631. #~ msgid "Provides the Per Model Settings."
  7632. #~ msgstr "Fornisce le impostazioni per modello."
  7633. #~ msgctxt "@label"
  7634. #~ msgid "3MF Reader"
  7635. #~ msgstr "Lettore 3MF"
  7636. #~ msgctxt "@info:whatsthis"
  7637. #~ msgid "Provides support for reading 3MF files."
  7638. #~ msgstr "Fornisce il supporto per la lettura di file 3MF."
  7639. #~ msgctxt "@label"
  7640. #~ msgid "Solid View"
  7641. #~ msgstr "Visualizzazione compatta"
  7642. #~ msgctxt "@info:whatsthis"
  7643. #~ msgid "Provides a normal solid mesh view."
  7644. #~ msgstr "Fornisce una normale visualizzazione a griglia compatta."
  7645. #~ msgctxt "@label"
  7646. #~ msgid "G-code Reader"
  7647. #~ msgstr "Lettore G-code"
  7648. #~ msgctxt "@info:whatsthis"
  7649. #~ msgid "Allows loading and displaying G-code files."
  7650. #~ msgstr "Consente il caricamento e la visualizzazione dei file G-code."
  7651. #~ msgctxt "@label"
  7652. #~ msgid "Cura Profile Writer"
  7653. #~ msgstr "Writer profilo Cura"
  7654. #~ msgctxt "@info:whatsthis"
  7655. #~ msgid "Provides support for exporting Cura profiles."
  7656. #~ msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  7657. #~ msgctxt "@label"
  7658. #~ msgid "3MF Writer"
  7659. #~ msgstr "Writer 3MF"
  7660. #~ msgctxt "@info:whatsthis"
  7661. #~ msgid "Provides support for writing 3MF files."
  7662. #~ msgstr "Fornisce il supporto per la scrittura di file 3MF."
  7663. #~ msgctxt "@label"
  7664. #~ msgid "Ultimaker machine actions"
  7665. #~ msgstr "Azioni della macchina Ultimaker"
  7666. #~ msgctxt "@info:whatsthis"
  7667. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7668. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  7669. #~ msgctxt "@label"
  7670. #~ msgid "Cura Profile Reader"
  7671. #~ msgstr "Lettore profilo Cura"
  7672. #~ msgctxt "@info:whatsthis"
  7673. #~ msgid "Provides support for importing Cura profiles."
  7674. #~ msgstr "Fornisce supporto per l'importazione dei profili Cura."
  7675. #~ msgctxt "@info"
  7676. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7677. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7678. #~ msgctxt "@label"
  7679. #~ msgid "Build Plate Shape"
  7680. #~ msgstr "Forma del piano di stampa"
  7681. #~ msgctxt "@option:check"
  7682. #~ msgid "Machine Center is Zero"
  7683. #~ msgstr "Centro macchina a zero"
  7684. #~ msgctxt "@option:check"
  7685. #~ msgid "Heated Bed"
  7686. #~ msgstr "Piano riscaldato"
  7687. #~ msgctxt "@label"
  7688. #~ msgid "GCode Flavor"
  7689. #~ msgstr "Versione GCode"
  7690. #~ msgctxt "@label"
  7691. #~ msgid "Material Diameter"
  7692. #~ msgstr "Diametro materiale"
  7693. #~ msgctxt "@label"
  7694. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7695. #~ msgstr "Se la stampante non è nell’elenco, leggere la <a href=’%1’>guida alla ricerca guasti per la stampa in rete</a>"
  7696. #~ msgctxt "@item:inlistbox"
  7697. #~ msgid "Ultimaker"
  7698. #~ msgstr "Ultimaker"
  7699. #~ msgctxt "@label"
  7700. #~ msgid "Support library for scientific computing "
  7701. #~ msgstr "Libreria di supporto per calcolo scientifico "
  7702. #~ msgctxt "@tooltip"
  7703. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7704. #~ msgstr "<b>Impostazione di stampa</b><br/><br/>Modifica o revisiona le impostazioni per il lavoro di stampa attivo."
  7705. #~ msgctxt "@tooltip"
  7706. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7707. #~ msgstr "<b>Monitoraggio stampa</b><br/><br/>Controlla lo stato della stampante collegata e il lavoro di stampa in corso."
  7708. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7709. #~ msgid "Automatic: %1"
  7710. #~ msgstr "Automatico: %1"
  7711. #~ msgctxt "@label:PrintjobStatus"
  7712. #~ msgid "Please load a 3d model"
  7713. #~ msgstr "Carica un modello 3d"
  7714. #~ msgctxt "@label"
  7715. #~ msgid "Print Selected Model with %1"
  7716. #~ msgid_plural "Print Selected Models With %1"
  7717. #~ msgstr[0] "Stampa modello selezionato con %1"
  7718. #~ msgstr[1] "Stampa modelli selezionati con %1"
  7719. #~ msgctxt "@info:status"
  7720. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7721. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun PrinterCore caricato nello slot {0}"
  7722. #~ msgctxt "@label"
  7723. #~ msgid "Version Upgrade 2.4 to 2.5"
  7724. #~ msgstr "Aggiornamento della versione da 2.4 a 2.5"
  7725. #~ msgctxt "@info:whatsthis"
  7726. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7727. #~ msgstr "Aggiorna le configurazioni da Cura 2.4 a Cura 2.5."
  7728. #~ msgctxt "@info:status"
  7729. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7730. #~ msgstr "Impossibile trovare un profilo di qualità per questa combinazione. Saranno utilizzate le impostazioni predefinite."
  7731. #~ msgctxt "@title:window"
  7732. #~ msgid "Oops!"
  7733. #~ msgstr "Oops!"
  7734. #~ msgctxt "@label"
  7735. #~ msgid ""
  7736. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7737. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7738. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7739. #~ " "
  7740. #~ msgstr ""
  7741. #~ "<p>Si è verificata un'eccezione fatale impossibile da ripristinare!</p>\n"
  7742. #~ " <p>Ci auguriamo che l’immagine di questo gattino vi aiuti a superare lo shock.</p>\n"
  7743. #~ " <p>Utilizzare le informazioni riportate di seguito per pubblicare una segnalazione errori all'indirizzo <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7744. #~ msgctxt "@label"
  7745. #~ msgid "Please enter the correct settings for your printer below:"
  7746. #~ msgstr "Inserire le impostazioni corrette per la stampante:"
  7747. #~ msgctxt "@label"
  7748. #~ msgid "Extruder %1"
  7749. #~ msgstr "Estrusore %1"
  7750. #~ msgctxt "@label Followed by extruder selection drop-down."
  7751. #~ msgid "Print model with"
  7752. #~ msgstr "Modello di stampa con"
  7753. #~ msgctxt "@label"
  7754. #~ msgid "You will need to restart the application for language changes to have effect."
  7755. #~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche della lingua."
  7756. #~ msgctxt "@info:tooltip"
  7757. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7758. #~ msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  7759. #~ msgctxt "@action:inmenu menubar:edit"
  7760. #~ msgid "Delete &Selection"
  7761. #~ msgstr "&Elimina selezione"
  7762. #~ msgctxt "@action:inmenu menubar:file"
  7763. #~ msgid "&Open File..."
  7764. #~ msgstr "Apr&i file..."
  7765. #~ msgctxt "@action:inmenu menubar:file"
  7766. #~ msgid "&Open Project..."
  7767. #~ msgstr "&Apri progetto..."
  7768. #~ msgctxt "@title:window"
  7769. #~ msgid "Multiply Model"
  7770. #~ msgstr "Moltiplica modello"
  7771. #~ msgctxt "@title:menu menubar:file"
  7772. #~ msgid "Save &All"
  7773. #~ msgstr "S&alva tutto"
  7774. #~ msgctxt "@title:window"
  7775. #~ msgid "Open file"
  7776. #~ msgstr "Apri file"
  7777. #~ msgctxt "@title:window"
  7778. #~ msgid "Open workspace"
  7779. #~ msgstr "Apri spazio di lavoro"
  7780. #~ msgctxt "@label"
  7781. #~ msgid "Hollow"
  7782. #~ msgstr "Cavo"
  7783. #~ msgctxt "@label"
  7784. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7785. #~ msgstr "Nessun (0%) riempimento lascerà il tuo cavo modello a scapito della resistenza (bassa resistenza)"
  7786. #~ msgctxt "@label"
  7787. #~ msgid "Light"
  7788. #~ msgstr "Leggero"
  7789. #~ msgctxt "@label"
  7790. #~ msgid "Light (20%) infill will give your model an average strength"
  7791. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media"
  7792. #~ msgctxt "@label"
  7793. #~ msgid "Dense"
  7794. #~ msgstr "Denso"
  7795. #~ msgctxt "@label"
  7796. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7797. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media"
  7798. #~ msgctxt "@label"
  7799. #~ msgid "Solid"
  7800. #~ msgstr "Solido"
  7801. #~ msgctxt "@label"
  7802. #~ msgid "Solid (100%) infill will make your model completely solid"
  7803. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno"
  7804. #~ msgctxt "@label"
  7805. #~ msgid "Enable Support"
  7806. #~ msgstr "Abilita supporto"
  7807. #~ msgctxt "@label"
  7808. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7809. #~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi."
  7810. #~ msgctxt "@label"
  7811. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7812. #~ msgstr "Serve aiuto per migliorare le tue stampe? Leggi la <a href='%1'>Guida alla ricerca e riparazione guasti Ultimaker</a>"
  7813. #~ msgctxt "@info:status"
  7814. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7815. #~ msgstr "Collegato alla rete a {0}. Si prega di approvare la richiesta di accesso sulla stampante."
  7816. #~ msgctxt "@info:status"
  7817. #~ msgid "Connected over the network to {0}."
  7818. #~ msgstr "Collegato alla rete a {0}."
  7819. #~ msgctxt "@info:status"
  7820. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7821. #~ msgstr "Collegato alla rete a {0}. Nessun accesso per controllare la stampante."
  7822. #~ msgctxt "@info:status"
  7823. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7824. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Controllare la stampante."
  7825. #~ msgctxt "@label"
  7826. #~ msgid "You made changes to the following setting(s)/override(s):"
  7827. #~ msgstr "Sono state apportate modifiche alle seguenti impostazioni/esclusioni:"
  7828. #~ msgctxt "@window:title"
  7829. #~ msgid "Switched profiles"
  7830. #~ msgstr "Profili modificati"
  7831. #~ msgctxt "@label"
  7832. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7833. #~ msgstr "Si desidera trasferire le %d impostazioni/esclusioni modificate a questo profilo?"
  7834. #~ msgctxt "@label"
  7835. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7836. #~ msgstr "Se si trasferiscono le nuove impostazioni, le impostazioni esistenti del profilo saranno sovrascritte. Se non si trasferiscono, tali impostazioni verranno perse."
  7837. #~ msgctxt "@label"
  7838. #~ msgid "Cost per Meter (Approx.)"
  7839. #~ msgstr "Costo al metro (circa)"
  7840. #~ msgctxt "@label"
  7841. #~ msgid "%1/m"
  7842. #~ msgstr "%1/m"
  7843. #~ msgctxt "@info:tooltip"
  7844. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7845. #~ msgstr "In visualizzazione strato, visualizzare i 5 strati superiori o solo lo strato a livello superiore. Il rendering di 5 strati richiede più tempo, ma può fornire un maggior numero di informazioni."
  7846. #~ msgctxt "@action:button"
  7847. #~ msgid "Display five top layers in layer view"
  7848. #~ msgstr "Visualizza i cinque strati superiori in visualizzazione strato"
  7849. #~ msgctxt "@info:tooltip"
  7850. #~ msgid "Should only the top layers be displayed in layerview?"
  7851. #~ msgstr "In visualizzazione strato devono essere visualizzati solo gli strati superiori?"
  7852. #~ msgctxt "@option:check"
  7853. #~ msgid "Only display top layer(s) in layer view"
  7854. #~ msgstr "In visualizzazione layer, visualizza solo il/i layer(s) superiore/i"
  7855. #~ msgctxt "@label"
  7856. #~ msgid "Opening files"
  7857. #~ msgstr "Apertura file in corso"
  7858. #~ msgctxt "@label"
  7859. #~ msgid "Printer Monitor"
  7860. #~ msgstr "Monitoraggio stampante"
  7861. #~ msgctxt "@label"
  7862. #~ msgid "Temperatures"
  7863. #~ msgstr "Temperature"
  7864. #~ msgctxt "@label:PrintjobStatus"
  7865. #~ msgid "Preparing to slice..."
  7866. #~ msgstr "Preparazione al sezionamento in corso..."
  7867. #~ msgctxt "@window:title"
  7868. #~ msgid "Changes on the Printer"
  7869. #~ msgstr "Modifiche alla stampante."
  7870. #~ msgctxt "@action:inmenu"
  7871. #~ msgid "&Duplicate Model"
  7872. #~ msgstr "&Duplica modello"
  7873. #~ msgctxt "@label"
  7874. #~ msgid "Helper Parts:"
  7875. #~ msgstr "Parti Helper:"
  7876. #~ msgctxt "@label"
  7877. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  7878. #~ msgstr "Consente di stampare strutture di supporto. Ciò consentirà di costruire strutture di supporto sotto il modello per evitare cedimenti del modello o di stampare a mezz'aria."
  7879. #~ msgctxt "@label"
  7880. #~ msgid "Don't print support"
  7881. #~ msgstr "Non stampare alcuna struttura di supporto"
  7882. #~ msgctxt "@label"
  7883. #~ msgid "Print support using %1"
  7884. #~ msgstr "Stampa struttura di supporto utilizzando %1"
  7885. #~ msgctxt "@label:listbox"
  7886. #~ msgid "Printer:"
  7887. #~ msgstr "Stampante:"
  7888. #~ msgctxt "@info:status"
  7889. #~ msgid "Successfully imported profiles {0}"
  7890. #~ msgstr "Profili importati correttamente {0}"
  7891. #~ msgctxt "@label"
  7892. #~ msgid "Scripts"
  7893. #~ msgstr "Script"
  7894. #~ msgctxt "@label"
  7895. #~ msgid "Active Scripts"
  7896. #~ msgstr "Script attivi"
  7897. #~ msgctxt "@label"
  7898. #~ msgid "Done"
  7899. #~ msgstr "Eseguito"
  7900. #~ msgctxt "@item:inlistbox"
  7901. #~ msgid "English"
  7902. #~ msgstr "Inglese"
  7903. #~ msgctxt "@item:inlistbox"
  7904. #~ msgid "Finnish"
  7905. #~ msgstr "Finlandese"
  7906. #~ msgctxt "@item:inlistbox"
  7907. #~ msgid "French"
  7908. #~ msgstr "Francese"
  7909. #~ msgctxt "@item:inlistbox"
  7910. #~ msgid "German"
  7911. #~ msgstr "Tedesco"
  7912. #~ msgctxt "@item:inlistbox"
  7913. #~ msgid "Italian"
  7914. #~ msgstr "Italiano"
  7915. #~ msgctxt "@item:inlistbox"
  7916. #~ msgid "Dutch"
  7917. #~ msgstr "Olandese"
  7918. #~ msgctxt "@item:inlistbox"
  7919. #~ msgid "Spanish"
  7920. #~ msgstr "Spagnolo"
  7921. #~ msgctxt "@label"
  7922. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  7923. #~ msgstr "Desideri modificare i PrintCore e i materiali in Cura per abbinare la stampante?"
  7924. #~ msgctxt "@label:"
  7925. #~ msgid "Print Again"
  7926. #~ msgstr "Ripeti stampa"