cura.po 390 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: PACKAGE VERSION\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0200\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE <LL@li.org>\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. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PrepareStage/__init__.py:12
  19. msgctxt "@item:inmenu"
  20. msgid "Prepare"
  21. msgstr "Prepara"
  22. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileWriter/__init__.py:14
  23. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileReader/__init__.py:14
  24. msgctxt "@item:inlistbox"
  25. msgid "Cura Profile"
  26. msgstr "Profilo Cura"
  27. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:15
  28. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  29. msgid "Open Compressed Triangle Mesh"
  30. msgstr "Open Compressed Triangle Mesh"
  31. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:19
  32. msgctxt "@item:inlistbox"
  33. msgid "COLLADA Digital Asset Exchange"
  34. msgstr "COLLADA Digital Asset Exchange"
  35. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:23
  36. msgctxt "@item:inlistbox"
  37. msgid "glTF Binary"
  38. msgstr "glTF Binary"
  39. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:27
  40. msgctxt "@item:inlistbox"
  41. msgid "glTF Embedded JSON"
  42. msgstr "glTF Embedded JSON"
  43. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:36
  44. msgctxt "@item:inlistbox"
  45. msgid "Stanford Triangle Format"
  46. msgstr "Stanford Triangle Format"
  47. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:40
  48. msgctxt "@item:inlistbox"
  49. msgid "Compressed COLLADA Digital Asset Exchange"
  50. msgstr "Compressed COLLADA Digital Asset Exchange"
  51. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  52. msgctxt "@info"
  53. msgid "Could not access update information."
  54. msgstr "Non è possibile accedere alle informazioni di aggiornamento."
  55. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  56. #, python-brace-format
  57. msgctxt ""
  58. "@info Don't translate {machine_name}, since it gets replaced by a printer "
  59. "name!"
  60. msgid ""
  61. "New features or bug-fixes may be available for your {machine_name}! If you "
  62. "haven't done so already, it is recommended to update the firmware on your "
  63. "printer to version {latest_version}."
  64. 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"
  65. " della stampante alla versione {latest_version}."
  66. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  67. #, python-format
  68. msgctxt "@info:title The %s gets replaced with the printer name."
  69. msgid "New %s stable firmware available"
  70. msgstr "Nuovo firmware %s stabile disponibile"
  71. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  72. msgctxt "@action:button"
  73. msgid "How to update"
  74. msgstr "Modalità di aggiornamento"
  75. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/__init__.py:14
  76. msgctxt "@item:inmenu"
  77. msgid "Monitor"
  78. msgstr "Controlla"
  79. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  80. msgctxt "@action:button Preceded by 'Ready to'."
  81. msgid "Save to Removable Drive"
  82. msgstr "Salva su unità rimovibile"
  83. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  84. #, python-brace-format
  85. msgctxt "@item:inlistbox"
  86. msgid "Save to Removable Drive {0}"
  87. msgstr "Salva su unità rimovibile {0}"
  88. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  89. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  90. msgctxt "@info:status"
  91. msgid "There are no file formats available to write with!"
  92. msgstr "Non ci sono formati di file disponibili per la scrittura!"
  93. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  94. #, python-brace-format
  95. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  96. msgid "Saving to Removable Drive <filename>{0}</filename>"
  97. msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  98. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  99. msgctxt "@info:title"
  100. msgid "Saving"
  101. msgstr "Salvataggio in corso"
  102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  103. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  104. #, python-brace-format
  105. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  106. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  107. msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  108. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  109. #, python-brace-format
  110. msgctxt "@info:status Don't translate the tag {device}!"
  111. msgid "Could not find a file name when trying to write to {device}."
  112. msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}."
  113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  114. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  115. #, python-brace-format
  116. msgctxt "@info:status"
  117. msgid "Could not save to removable drive {0}: {1}"
  118. msgstr "Impossibile salvare su unità rimovibile {0}: {1}"
  119. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  121. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1782
  122. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:156
  123. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:166
  124. msgctxt "@info:title"
  125. msgid "Error"
  126. msgstr "Errore"
  127. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  128. #, python-brace-format
  129. msgctxt "@info:status"
  130. msgid "Saved to Removable Drive {0} as {1}"
  131. msgstr "Salvato su unità rimovibile {0} come {1}"
  132. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  133. msgctxt "@info:title"
  134. msgid "File Saved"
  135. msgstr "File salvato"
  136. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  137. msgctxt "@action:button"
  138. msgid "Eject"
  139. msgstr "Rimuovi"
  140. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  141. #, python-brace-format
  142. msgctxt "@action"
  143. msgid "Eject removable device {0}"
  144. msgstr "Rimuovi il dispositivo rimovibile {0}"
  145. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  146. #, python-brace-format
  147. msgctxt "@info:status"
  148. msgid "Ejected {0}. You can now safely remove the drive."
  149. msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità."
  150. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  151. msgctxt "@info:title"
  152. msgid "Safely Remove Hardware"
  153. msgstr "Rimozione sicura dell'hardware"
  154. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  155. #, python-brace-format
  156. msgctxt "@info:status"
  157. msgid "Failed to eject {0}. Another program may be using the drive."
  158. msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità."
  159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  160. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1770
  161. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:217
  162. msgctxt "@info:title"
  163. msgid "Warning"
  164. msgstr "Avvertenza"
  165. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  166. msgctxt "@item:intext"
  167. msgid "Removable Drive"
  168. msgstr "Unità rimovibile"
  169. #: /home/remco/dev/code/ulti/trans/Cura/plugins/AMFReader/__init__.py:15
  170. msgctxt "@item:inlistbox"
  171. msgid "AMF File"
  172. msgstr "File AMF"
  173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPReader/__init__.py:22
  174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/__init__.py:28
  175. msgctxt "@item:inlistbox"
  176. msgid "Ultimaker Format Package"
  177. msgstr "Pacchetto formato Ultimaker"
  178. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  179. msgctxt "@label"
  180. msgid "Per Model Settings"
  181. msgstr "Impostazioni per modello"
  182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  183. msgctxt "@info:tooltip"
  184. msgid "Configure Per Model Settings"
  185. msgstr "Configura impostazioni per modello"
  186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  187. msgctxt "@action"
  188. msgid "Update Firmware"
  189. msgstr "Aggiornamento firmware"
  190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  191. #, python-brace-format
  192. msgctxt "@info:status"
  193. msgid ""
  194. "Cura has detected material profiles that were not yet installed on the host "
  195. "printer of group {0}."
  196. msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}."
  197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  198. msgctxt "@info:title"
  199. msgid "Sending materials to printer"
  200. msgstr "Invio dei materiali alla stampante"
  201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  202. #, python-brace-format
  203. msgctxt "@info:status"
  204. msgid ""
  205. "You are attempting to connect to {0} but it is not the host of a group. You "
  206. "can visit the web page to configure it as a group host."
  207. 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."
  208. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  209. msgctxt "@info:title"
  210. msgid "Not a group host"
  211. msgstr "Non host del gruppo"
  212. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  213. msgctxt "@action"
  214. msgid "Configure group"
  215. msgstr "Configurare il gruppo"
  216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  217. msgctxt "@info:status"
  218. msgid "Sending Print Job"
  219. msgstr "Invio di un processo di stampa"
  220. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  221. msgctxt "@info:status"
  222. msgid "Uploading print job to printer."
  223. msgstr "Caricamento del processo di stampa sulla stampante."
  224. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  225. msgctxt "@info:status"
  226. msgid "Print job queue is full. The printer can't accept a new job."
  227. msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo."
  228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  229. msgctxt "@info:title"
  230. msgid "Queue Full"
  231. msgstr "Coda piena"
  232. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  233. msgctxt "@info:status"
  234. msgid "Please wait until the current job has been sent."
  235. msgstr "Attendere che sia stato inviato il processo corrente."
  236. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  237. msgctxt "@info:title"
  238. msgid "Print error"
  239. msgstr "Errore di stampa"
  240. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  241. msgctxt "@info:status"
  242. msgid "Print job was successfully sent to the printer."
  243. msgstr "Processo di stampa inviato con successo alla stampante."
  244. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  245. msgctxt "@info:title"
  246. msgid "Data Sent"
  247. msgstr "Dati inviati"
  248. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  249. #, python-brace-format
  250. msgctxt "@info:status"
  251. msgid ""
  252. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  253. " Manage your print queue and monitor your prints from anywhere connecting "
  254. "your printer to Digital Factory"
  255. msgstr "Impossibile connettere la stampante <b>{printer_name}</b> tramite cloud.\n Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando"
  256. " la stampante a Digital Factory"
  257. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  258. msgctxt "@info:title"
  259. msgid "Are you ready for cloud printing?"
  260. msgstr "Pronto per la stampa tramite cloud?"
  261. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  262. msgctxt "@action"
  263. msgid "Get started"
  264. msgstr "Per iniziare"
  265. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  266. msgctxt "@action"
  267. msgid "Learn more"
  268. msgstr "Ulteriori informazioni"
  269. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  270. msgctxt "@info:status"
  271. msgid ""
  272. "You are attempting to connect to a printer that is not running Ultimaker "
  273. "Connect. Please update the printer to the latest firmware."
  274. msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente."
  275. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  276. msgctxt "@info:title"
  277. msgid "Update your printer"
  278. msgstr "Aggiornare la stampante"
  279. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  280. msgctxt "@info:text"
  281. msgid "Could not upload the data to the printer."
  282. msgstr "Impossibile caricare i dati sulla stampante."
  283. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  284. msgctxt "@info:title"
  285. msgid "Network error"
  286. msgstr "Errore di rete"
  287. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  288. msgctxt "@action:button Preceded by 'Ready to'."
  289. msgid "Print over network"
  290. msgstr "Stampa sulla rete"
  291. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  292. msgctxt "@properties:tooltip"
  293. msgid "Print over network"
  294. msgstr "Stampa sulla rete"
  295. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  296. msgctxt "@info:status"
  297. msgid "Connected over the network"
  298. msgstr "Collegato alla rete"
  299. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  300. msgctxt "@info:status"
  301. msgid "tomorrow"
  302. msgstr "domani"
  303. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  304. msgctxt "@info:status"
  305. msgid "today"
  306. msgstr "oggi"
  307. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  308. msgctxt "@action"
  309. msgid "Connect via Network"
  310. msgstr "Collega tramite rete"
  311. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  312. msgctxt "info:status"
  313. msgid "New printer detected from your Ultimaker account"
  314. msgid_plural "New printers detected from your Ultimaker account"
  315. msgstr[0] "Nuova stampante rilevata dall'account Ultimaker"
  316. msgstr[1] "Nuove stampanti rilevate dall'account Ultimaker"
  317. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  318. #, python-brace-format
  319. msgctxt "info:status Filled in with printer name and printer model."
  320. msgid "Adding printer {name} ({model}) from your account"
  321. msgstr "Aggiunta della stampante {name} ({model}) dall'account"
  322. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  323. #, python-brace-format
  324. msgctxt "info:{0} gets replaced by a number of printers"
  325. msgid "... and {0} other"
  326. msgid_plural "... and {0} others"
  327. msgstr[0] "... e {0} altra"
  328. msgstr[1] "... e altre {0}"
  329. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  330. msgctxt "info:status"
  331. msgid "Printers added from Digital Factory:"
  332. msgstr "Stampanti aggiunte da Digital Factory:"
  333. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  334. msgctxt "info:status"
  335. msgid "A cloud connection is not available for a printer"
  336. msgid_plural "A cloud connection is not available for some printers"
  337. msgstr[0] "Non è disponibile una connessione cloud per una stampante"
  338. msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti"
  339. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  340. msgctxt "info:status"
  341. msgid "This printer is not linked to the Digital Factory:"
  342. msgid_plural "These printers are not linked to the Digital Factory:"
  343. msgstr[0] "Questa stampante non è collegata a Digital Factory:"
  344. msgstr[1] "Queste stampanti non sono collegate a Digital Factory:"
  345. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  346. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  347. msgctxt "info:name"
  348. msgid "Ultimaker Digital Factory"
  349. msgstr "Ultimaker Digital Factory"
  350. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  351. #, python-brace-format
  352. msgctxt "info:status"
  353. msgid "To establish a connection, please visit the {website_link}"
  354. msgstr "Per stabilire una connessione, visitare {website_link}"
  355. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  356. msgctxt "@action:button"
  357. msgid "Keep printer configurations"
  358. msgstr "Mantenere le configurazioni delle stampanti"
  359. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  360. msgctxt "@action:button"
  361. msgid "Remove printers"
  362. msgstr "Rimuovere le stampanti"
  363. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  364. #, python-brace-format
  365. msgctxt "@message {printer_name} is replaced with the name of the printer"
  366. msgid "{printer_name} will be removed until the next account sync."
  367. msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account."
  368. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  369. #, python-brace-format
  370. msgctxt "@message {printer_name} is replaced with the name of the printer"
  371. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  372. msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}"
  373. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  374. #, python-brace-format
  375. msgctxt "@message {printer_name} is replaced with the name of the printer"
  376. msgid "Are you sure you want to remove {printer_name} temporarily?"
  377. msgstr "Rimuovere temporaneamente {printer_name}?"
  378. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  379. msgctxt "@title:window"
  380. msgid "Remove printers?"
  381. msgstr "Rimuovere le stampanti?"
  382. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  383. #, python-brace-format
  384. msgctxt "@label"
  385. msgid ""
  386. "You are about to remove {0} printer from Cura. This action cannot be "
  387. "undone.\n"
  388. "Are you sure you want to continue?"
  389. msgid_plural ""
  390. "You are about to remove {0} printers from Cura. This action cannot be "
  391. "undone.\n"
  392. "Are you sure you want to continue?"
  393. msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?"
  394. msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?"
  395. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  396. msgctxt "@label"
  397. msgid ""
  398. "You are about to remove all printers from Cura. This action cannot be "
  399. "undone.\n"
  400. "Are you sure you want to continue?"
  401. msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \nContinuare?"
  402. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  403. msgctxt "@action:button"
  404. msgid "Print via cloud"
  405. msgstr "Stampa tramite cloud"
  406. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  407. msgctxt "@properties:tooltip"
  408. msgid "Print via cloud"
  409. msgstr "Stampa tramite cloud"
  410. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  411. msgctxt "@info:status"
  412. msgid "Connected via cloud"
  413. msgstr "Collegato tramite cloud"
  414. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  415. msgctxt "@action:button"
  416. msgid "Monitor print"
  417. msgstr "Monitora stampa"
  418. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  419. msgctxt "@action:tooltip"
  420. msgid "Track the print in Ultimaker Digital Factory"
  421. msgstr "Traccia la stampa in Ultimaker Digital Factory"
  422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  423. #, python-brace-format
  424. msgctxt "@error:send"
  425. msgid "Unknown error code when uploading print job: {0}"
  426. msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}"
  427. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:31
  428. msgctxt "@info:title"
  429. msgid "3D Model Assistant"
  430. msgstr "Assistente modello 3D"
  431. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:97
  432. #, python-brace-format
  433. msgctxt "@info:status"
  434. msgid ""
  435. "<p>One or more 3D models may not print optimally due to the model size and "
  436. "material configuration:</p>\n"
  437. "<p>{model_names}</p>\n"
  438. "<p>Find out how to ensure the best possible print quality and reliability.</"
  439. "p>\n"
  440. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality "
  441. "guide</a></p>"
  442. msgstr "<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<p>{model_names}</p>\n<p>Scopri"
  443. " come garantire la migliore qualità ed affidabilità di stampa.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">Visualizza la guida alla qualità"
  444. " di stampa</a></p>"
  445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:129
  446. msgctxt "@info:status"
  447. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  448. msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata."
  449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:130
  450. msgctxt "@info:title"
  451. msgid "Simulation View"
  452. msgstr "Vista simulazione"
  453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:133
  454. msgctxt "@info:status"
  455. msgid "Nothing is shown because you need to slice first."
  456. msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing."
  457. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:134
  458. msgctxt "@info:title"
  459. msgid "No layers to show"
  460. msgstr "Nessun layer da visualizzare"
  461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:136
  462. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:74
  463. msgctxt "@info:option_text"
  464. msgid "Do not show this message again"
  465. msgstr "Non mostrare nuovamente questo messaggio"
  466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/__init__.py:15
  467. msgctxt "@item:inlistbox"
  468. msgid "Layer view"
  469. msgstr "Visualizzazione strato"
  470. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  471. msgctxt "@error:not supported"
  472. msgid "GCodeWriter does not support non-text mode."
  473. msgstr "GCodeWriter non supporta la modalità non di testo."
  474. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  476. msgctxt "@warning:status"
  477. msgid "Please prepare G-code before exporting."
  478. msgstr "Preparare il codice G prima dell’esportazione."
  479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/__init__.py:16
  480. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeProfileReader/__init__.py:14
  481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:14
  482. msgctxt "@item:inlistbox"
  483. msgid "G-code File"
  484. msgstr "File G-Code"
  485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  486. msgctxt "@error:zip"
  487. msgid "Error writing 3mf file."
  488. msgstr "Errore scrittura file 3MF."
  489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  490. msgctxt "@error:zip"
  491. msgid "3MF Writer plug-in is corrupt."
  492. msgstr "Plug-in Writer 3MF danneggiato."
  493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  494. msgctxt "@error"
  495. msgid "There is no workspace yet to write. Please add a printer first."
  496. msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante."
  497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  498. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  499. msgctxt "@error:zip"
  500. msgid "No permission to write the workspace here."
  501. msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui."
  502. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  503. msgctxt "@error:zip"
  504. msgid ""
  505. "The operating system does not allow saving a project file to this location "
  506. "or with this file name."
  507. msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file."
  508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:26
  509. msgctxt "@item:inlistbox"
  510. msgid "3MF file"
  511. msgstr "File 3MF"
  512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:34
  513. msgctxt "@item:inlistbox"
  514. msgid "Cura Project 3MF file"
  515. msgstr "File 3MF Progetto Cura"
  516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzReader/__init__.py:17
  517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/__init__.py:17
  518. msgctxt "@item:inlistbox"
  519. msgid "Compressed G-code File"
  520. msgstr "File G-Code compresso"
  521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  522. msgctxt "@message"
  523. msgid ""
  524. "Slicing failed with an unexpected error. Please consider reporting a bug on "
  525. "our issue tracker."
  526. msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi."
  527. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  528. msgctxt "@message:title"
  529. msgid "Slicing failed"
  530. msgstr "Sezionamento non riuscito"
  531. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  532. msgctxt "@message:button"
  533. msgid "Report a bug"
  534. msgstr "Segnala un errore"
  535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  536. msgctxt "@message:description"
  537. msgid "Report a bug on Ultimaker Cura's issue tracker."
  538. msgstr "Segnalare un errore nel registro problemi di Ultimaker Cura."
  539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  540. msgctxt "@info:status"
  541. msgid ""
  542. "Unable to slice with the current material as it is incompatible with the "
  543. "selected machine or configuration."
  544. msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata."
  545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  546. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  547. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  550. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  551. msgctxt "@info:title"
  552. msgid "Unable to slice"
  553. msgstr "Sezionamento impossibile"
  554. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  555. #, python-brace-format
  556. msgctxt "@info:status"
  557. msgid ""
  558. "Unable to slice with the current settings. The following settings have "
  559. "errors: {0}"
  560. msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}"
  561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  562. #, python-brace-format
  563. msgctxt "@info:status"
  564. msgid ""
  565. "Unable to slice due to some per-model settings. The following settings have "
  566. "errors on one or more models: {error_labels}"
  567. msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}"
  568. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  569. msgctxt "@info:status"
  570. msgid ""
  571. "Unable to slice because the prime tower or prime position(s) are invalid."
  572. msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide."
  573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  574. #, python-format
  575. msgctxt "@info:status"
  576. msgid ""
  577. "Unable to slice because there are objects associated with disabled Extruder "
  578. "%s."
  579. msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato."
  580. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  581. msgctxt "@info:status"
  582. msgid ""
  583. "Please review settings and check if your models:\n"
  584. "- Fit within the build volume\n"
  585. "- Are assigned to an enabled extruder\n"
  586. "- Are not all set as modifier meshes"
  587. msgstr "Verificare le impostazioni e controllare se i modelli:\n- Rientrano nel volume di stampa\n- Sono assegnati a un estrusore abilitato\n- Non sono tutti impostati"
  588. " come maglie modificatore"
  589. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  591. msgctxt "@info:status"
  592. msgid "Processing Layers"
  593. msgstr "Elaborazione dei livelli"
  594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  595. msgctxt "@info:title"
  596. msgid "Information"
  597. msgstr "Informazioni"
  598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/X3DReader/__init__.py:13
  599. msgctxt "@item:inlistbox"
  600. msgid "X3D File"
  601. msgstr "File X3D"
  602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:14
  603. msgctxt "@item:inlistbox"
  604. msgid "JPG Image"
  605. msgstr "Immagine JPG"
  606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:18
  607. msgctxt "@item:inlistbox"
  608. msgid "JPEG Image"
  609. msgstr "Immagine JPEG"
  610. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:22
  611. msgctxt "@item:inlistbox"
  612. msgid "PNG Image"
  613. msgstr "Immagine PNG"
  614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:26
  615. msgctxt "@item:inlistbox"
  616. msgid "BMP Image"
  617. msgstr "Immagine BMP"
  618. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:30
  619. msgctxt "@item:inlistbox"
  620. msgid "GIF Image"
  621. msgstr "Immagine GIF"
  622. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  623. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:713
  624. msgctxt "@label"
  625. msgid "Nozzle"
  626. msgstr "Ugello"
  627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:544
  628. #, python-brace-format
  629. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  630. msgid ""
  631. "Project file <filename>{0}</filename> contains an unknown machine type "
  632. "<message>{1}</message>. Cannot import the machine. Models will be imported "
  633. "instead."
  634. msgstr "Il file di progetto <filename>{0}</filename> contiene un tipo di macchina sconosciuto <message>{1}</message>. Impossibile importare la macchina. Verranno"
  635. " invece importati i modelli."
  636. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  637. msgctxt "@info:title"
  638. msgid "Open Project File"
  639. msgstr "Apri file progetto"
  640. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:644
  641. #, python-brace-format
  642. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  643. msgid ""
  644. "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}"
  645. "</message>."
  646. msgstr "Il file di progetto <filename>{0}</filename> è diventato improvvisamente inaccessibile: <message>{1}</message>."
  647. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:645
  648. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:653
  649. msgctxt "@info:title"
  650. msgid "Can't Open Project File"
  651. msgstr "Impossibile aprire il file di progetto"
  652. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:652
  653. #, python-brace-format
  654. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  655. msgid ""
  656. "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  657. msgstr "Il file di progetto <filename>{0}</filename> è danneggiato: <message>{1}</message>."
  658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:705
  659. #, python-brace-format
  660. msgctxt "@info:error Don't translate the XML tag <filename>!"
  661. msgid ""
  662. "Project file <filename>{0}</filename> is made using profiles that are "
  663. "unknown to this version of Ultimaker Cura."
  664. msgstr "Il file di progetto <filename>{0}</filename> è realizzato con profili sconosciuti a questa versione di Ultimaker Cura."
  665. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  666. msgctxt "@title:tab"
  667. msgid "Recommended"
  668. msgstr "Consigliata"
  669. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  670. msgctxt "@title:tab"
  671. msgid "Custom"
  672. msgstr "Personalizzata"
  673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:27
  674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:33
  675. msgctxt "@item:inlistbox"
  676. msgid "3MF File"
  677. msgstr "File 3MF"
  678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:57
  679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:72
  680. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:94
  681. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:149
  682. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:159
  683. msgctxt "@info:error"
  684. msgid "Can't write to UFP file:"
  685. msgstr "Impossibile scrivere nel file UFP:"
  686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/LegacyProfileReader/__init__.py:14
  687. msgctxt "@item:inlistbox"
  688. msgid "Cura 15.04 profiles"
  689. msgstr "Profili Cura 15.04"
  690. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  691. msgctxt "@info:title"
  692. msgid "Backups"
  693. msgstr "Backup"
  694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  695. msgctxt "@info:backup_status"
  696. msgid "There was an error while uploading your backup."
  697. msgstr "Si è verificato un errore durante il caricamento del backup."
  698. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  699. msgctxt "@info:backup_status"
  700. msgid "Creating your backup..."
  701. msgstr "Creazione del backup in corso..."
  702. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  703. msgctxt "@info:backup_status"
  704. msgid "There was an error while creating your backup."
  705. msgstr "Si è verificato un errore durante la creazione del backup."
  706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  707. msgctxt "@info:backup_status"
  708. msgid "Uploading your backup..."
  709. msgstr "Caricamento backup in corso..."
  710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  711. msgctxt "@info:backup_status"
  712. msgid "Your backup has finished uploading."
  713. msgstr "Caricamento backup completato."
  714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  715. msgctxt "@error:file_size"
  716. msgid "The backup exceeds the maximum file size."
  717. msgstr "Il backup supera la dimensione file massima."
  718. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  719. msgctxt "@item:inmenu"
  720. msgid "Manage backups"
  721. msgstr "Gestione backup"
  722. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  723. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  724. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:122
  725. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:159
  726. msgctxt "@info:title"
  727. msgid "Backup"
  728. msgstr "Backup"
  729. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  731. msgctxt "@info:backup_status"
  732. msgid "There was an error trying to restore your backup."
  733. msgstr "Si è verificato un errore cercando di ripristinare il backup."
  734. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  735. msgctxt "@text"
  736. msgid "Unable to read example data file."
  737. msgstr "Impossibile leggere il file di dati di esempio."
  738. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  739. msgctxt "@error:not supported"
  740. msgid "GCodeGzWriter does not support text mode."
  741. msgstr "GCodeGzWriter non supporta la modalità di testo."
  742. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  743. msgctxt "@item:inmenu"
  744. msgid "Post Processing"
  745. msgstr "Post-elaborazione"
  746. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  747. msgctxt "@item:inmenu"
  748. msgid "Modify G-Code"
  749. msgstr "Modifica codice G"
  750. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:12
  751. msgctxt "@label"
  752. msgid "Support Blocker"
  753. msgstr "Blocco supporto"
  754. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:13
  755. msgctxt "@info:tooltip"
  756. msgid "Create a volume in which supports are not printed."
  757. msgstr "Crea un volume in cui i supporti non vengono stampati."
  758. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PreviewStage/__init__.py:13
  759. msgctxt "@item:inmenu"
  760. msgid "Preview"
  761. msgstr "Anteprima"
  762. #: /home/remco/dev/code/ulti/trans/Cura/plugins/XRayView/__init__.py:12
  763. msgctxt "@item:inlistbox"
  764. msgid "X-Ray view"
  765. msgstr "Vista ai raggi X"
  766. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  767. msgctxt "@action"
  768. msgid "Level build plate"
  769. msgstr "Livella piano di stampa"
  770. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  771. msgctxt "@action"
  772. msgid "Select upgrades"
  773. msgstr "Seleziona aggiornamenti"
  774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:43
  775. msgctxt "@label:property"
  776. msgid "Unknown Package"
  777. msgstr "Pacchetto sconosciuto"
  778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:66
  779. msgctxt "@label:property"
  780. msgid "Unknown Author"
  781. msgstr "Autore sconosciuto"
  782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:116
  783. msgctxt "@info:error"
  784. msgid "Could not interpret the server's response."
  785. msgstr "Impossibile interpretare la risposta del server."
  786. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:146
  787. msgctxt "@info:error"
  788. msgid "Could not reach Marketplace."
  789. msgstr "Impossibile raggiungere Marketplace."
  790. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:28
  791. msgctxt "@label"
  792. msgid "Installed Plugins"
  793. msgstr "Plugin installati"
  794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:29
  795. msgctxt "@label"
  796. msgid "Installed Materials"
  797. msgstr "Materiali installati"
  798. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:33
  799. msgctxt "@label"
  800. msgid "Bundled Plugins"
  801. msgstr "Plugin inseriti nel bundle"
  802. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:34
  803. msgctxt "@label"
  804. msgid "Bundled Materials"
  805. msgstr "Materiali inseriti nel bundle"
  806. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:71
  807. msgctxt "@info:status"
  808. msgid ""
  809. "The highlighted areas indicate either missing or extraneous surfaces. Fix "
  810. "your model and open it again into Cura."
  811. msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura."
  812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:73
  813. msgctxt "@info:title"
  814. msgid "Model Errors"
  815. msgstr "Errori modello"
  816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:80
  817. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  818. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  819. msgctxt "@action:button"
  820. msgid "Learn more"
  821. msgstr "Ulteriori informazioni"
  822. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/__init__.py:12
  823. msgctxt "@item:inmenu"
  824. msgid "Solid view"
  825. msgstr "Visualizzazione compatta"
  826. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:350
  827. msgctxt "@info:status"
  828. msgid "Parsing G-code"
  829. msgstr "Parsing codice G"
  830. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:352
  831. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:506
  832. msgctxt "@info:title"
  833. msgid "G-code Details"
  834. msgstr "Dettagli codice G"
  835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:504
  836. msgctxt "@info:generic"
  837. msgid ""
  838. "Make sure the g-code is suitable for your printer and printer configuration "
  839. "before sending the file to it. The g-code representation may not be accurate."
  840. 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"
  841. " non essere accurata."
  842. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:18
  843. msgctxt "@item:inlistbox"
  844. msgid "G File"
  845. msgstr "File G"
  846. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  847. msgctxt "@action"
  848. msgid "Machine Settings"
  849. msgstr "Impostazioni macchina"
  850. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  851. msgctxt "@item:inmenu"
  852. msgid "USB printing"
  853. msgstr "Stampa USB"
  854. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  855. msgctxt "@action:button Preceded by 'Ready to'."
  856. msgid "Print via USB"
  857. msgstr "Stampa tramite USB"
  858. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  859. msgctxt "@info:tooltip"
  860. msgid "Print via USB"
  861. msgstr "Stampa tramite USB"
  862. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  863. msgctxt "@info:status"
  864. msgid "Connected via USB"
  865. msgstr "Connesso tramite USB"
  866. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  867. msgctxt "@label"
  868. msgid ""
  869. "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  870. msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?"
  871. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  872. msgctxt "@message"
  873. msgid ""
  874. "A print is still in progress. Cura cannot start another print via USB until "
  875. "the previous print has completed."
  876. msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata."
  877. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  878. msgctxt "@message"
  879. msgid "Print in Progress"
  880. msgstr "Stampa in corso"
  881. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:529
  882. msgctxt "@info:progress"
  883. msgid "Loading machines..."
  884. msgstr "Caricamento macchine in corso..."
  885. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:536
  886. msgctxt "@info:progress"
  887. msgid "Setting up preferences..."
  888. msgstr "Impostazione delle preferenze..."
  889. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:678
  890. msgctxt "@info:progress"
  891. msgid "Initializing Active Machine..."
  892. msgstr "Inizializzazione Active Machine in corso..."
  893. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:802
  894. msgctxt "@info:progress"
  895. msgid "Initializing machine manager..."
  896. msgstr "Inizializzazione gestore macchina in corso..."
  897. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:816
  898. msgctxt "@info:progress"
  899. msgid "Initializing build volume..."
  900. msgstr "Inizializzazione volume di stampa in corso..."
  901. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:884
  902. msgctxt "@info:progress"
  903. msgid "Setting up scene..."
  904. msgstr "Impostazione scena in corso..."
  905. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:920
  906. msgctxt "@info:progress"
  907. msgid "Loading interface..."
  908. msgstr "Caricamento interfaccia in corso..."
  909. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:925
  910. msgctxt "@info:progress"
  911. msgid "Initializing engine..."
  912. msgstr "Inizializzazione motore in corso..."
  913. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1242
  914. #, python-format
  915. msgctxt ""
  916. "@info 'width', 'depth' and 'height' are variable names that must NOT be "
  917. "translated; just translate the format of ##x##x## mm."
  918. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  919. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  920. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1768
  921. #, python-brace-format
  922. msgctxt "@info:status"
  923. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  924. msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}"
  925. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1780
  926. #, python-brace-format
  927. msgctxt "@info:status"
  928. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  929. msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}"
  930. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  931. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:338
  932. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:11
  933. msgctxt "@label"
  934. msgid "Default"
  935. msgstr "Default"
  936. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  937. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:14
  938. msgctxt "@label"
  939. msgid "Visual"
  940. msgstr "Visivo"
  941. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  942. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:15
  943. msgctxt "@text"
  944. msgid ""
  945. "The visual profile is designed to print visual prototypes and models with "
  946. "the intent of high visual and surface quality."
  947. msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata."
  948. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  949. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:18
  950. msgctxt "@label"
  951. msgid "Engineering"
  952. msgstr "Engineering"
  953. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  954. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:19
  955. msgctxt "@text"
  956. msgid ""
  957. "The engineering profile is designed to print functional prototypes and end-"
  958. "use parts with the intent of better accuracy and for closer tolerances."
  959. msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e"
  960. " tolleranze strette."
  961. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  962. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:22
  963. msgctxt "@label"
  964. msgid "Draft"
  965. msgstr "Bozza"
  966. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  967. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:23
  968. msgctxt "@text"
  969. msgid ""
  970. "The draft profile is designed to print initial prototypes and concept "
  971. "validation with the intent of significant print time reduction."
  972. 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"
  973. " stampa."
  974. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/ExtrudersModel.py:219
  975. msgctxt "@menuitem"
  976. msgid "Not overridden"
  977. msgstr "Non sottoposto a override"
  978. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  979. #, python-brace-format
  980. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  981. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  982. msgstr "Rimuovere {0}? Questa operazione non può essere annullata!"
  983. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  984. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:361
  985. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1614
  986. msgctxt "@label"
  987. msgid "Unknown"
  988. msgstr "Sconosciuto"
  989. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  990. msgctxt "@label"
  991. msgid ""
  992. "The printer(s) below cannot be connected because they are part of a group"
  993. msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo"
  994. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  995. msgctxt "@label"
  996. msgid "Available networked printers"
  997. msgstr "Stampanti disponibili in rete"
  998. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  999. msgctxt "@info:status"
  1000. msgid "Calculated"
  1001. msgstr "Calcolato"
  1002. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  1003. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  1004. msgctxt "@action:button"
  1005. msgid ""
  1006. "Please sync the material profiles with your printers before starting to "
  1007. "print."
  1008. msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare."
  1009. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  1010. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  1011. msgctxt "@action:button"
  1012. msgid "New materials installed"
  1013. msgstr "Nuovi materiali installati"
  1014. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  1015. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  1016. msgctxt "@action:button"
  1017. msgid "Sync materials"
  1018. msgstr "Sincronizza materiali"
  1019. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  1020. msgctxt "@label"
  1021. msgid "Custom Material"
  1022. msgstr "Materiale personalizzato"
  1023. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  1024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:336
  1025. msgctxt "@label"
  1026. msgid "Custom"
  1027. msgstr "Personalizzata"
  1028. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:390
  1029. msgctxt "@label"
  1030. msgid "Custom profiles"
  1031. msgstr "Profili personalizzati"
  1032. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:425
  1033. #, python-brace-format
  1034. msgctxt "@item:inlistbox"
  1035. msgid "All Supported Types ({0})"
  1036. msgstr "Tutti i tipi supportati ({0})"
  1037. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:426
  1038. msgctxt "@item:inlistbox"
  1039. msgid "All Files (*)"
  1040. msgstr "Tutti i file (*)"
  1041. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  1042. msgctxt "@text:error"
  1043. msgid "Failed to create archive of materials to sync with printers."
  1044. msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti."
  1045. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  1046. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  1047. msgctxt "@text:error"
  1048. msgid "Failed to load the archive of materials to sync it with printers."
  1049. msgstr "Impossibile caricare l'archivio di materiali da sincronizzare con le stampanti."
  1050. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  1051. msgctxt "@text:error"
  1052. msgid "The response from Digital Factory appears to be corrupted."
  1053. msgstr "La risposta da Digital Factory sembra essere danneggiata."
  1054. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  1055. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  1056. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  1057. msgctxt "@text:error"
  1058. msgid "The response from Digital Factory is missing important information."
  1059. msgstr "Nella risposta da Digital Factory mancano informazioni importanti."
  1060. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  1061. msgctxt "@text:error"
  1062. msgid ""
  1063. "Failed to connect to Digital Factory to sync materials with some of the "
  1064. "printers."
  1065. msgstr "Impossibile connettersi a Digital Factory per sincronizzare i materiali con alcune delle stampanti."
  1066. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  1067. msgctxt "@text:error"
  1068. msgid "Failed to connect to Digital Factory."
  1069. msgstr "Impossibile connettersi a Digital Factory."
  1070. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:115
  1071. msgctxt "@info:backup_failed"
  1072. msgid "Could not create archive from user data directory: {}"
  1073. msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}"
  1074. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:134
  1075. msgctxt "@info:backup_failed"
  1076. msgid "Tried to restore a Cura backup without having proper data or meta data."
  1077. msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati."
  1078. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:145
  1079. msgctxt "@info:backup_failed"
  1080. msgid "Tried to restore a Cura backup that is higher than the current version."
  1081. msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente."
  1082. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:158
  1083. msgctxt "@info:backup_failed"
  1084. msgid "The following error occurred while trying to restore a Cura backup:"
  1085. msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:"
  1086. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  1087. msgctxt "@info:status"
  1088. msgid "Finding new location for objects"
  1089. msgstr "Ricerca nuova posizione per gli oggetti"
  1090. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  1091. msgctxt "@info:title"
  1092. msgid "Finding Location"
  1093. msgstr "Ricerca posizione"
  1094. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  1095. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:99
  1096. msgctxt "@info:status"
  1097. msgid "Unable to find a location within the build volume for all objects"
  1098. msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti"
  1099. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  1100. msgctxt "@info:title"
  1101. msgid "Can't Find Location"
  1102. msgstr "Impossibile individuare posizione"
  1103. #: /home/remco/dev/code/ulti/trans/Cura/cura/API/Account.py:190
  1104. msgctxt "@info:title"
  1105. msgid "Login failed"
  1106. msgstr "Login non riuscito"
  1107. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:85
  1108. msgctxt "@tooltip"
  1109. msgid "Outer Wall"
  1110. msgstr "Parete esterna"
  1111. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:86
  1112. msgctxt "@tooltip"
  1113. msgid "Inner Walls"
  1114. msgstr "Pareti interne"
  1115. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:87
  1116. msgctxt "@tooltip"
  1117. msgid "Skin"
  1118. msgstr "Rivestimento esterno"
  1119. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:88
  1120. msgctxt "@tooltip"
  1121. msgid "Infill"
  1122. msgstr "Riempimento"
  1123. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:89
  1124. msgctxt "@tooltip"
  1125. msgid "Support Infill"
  1126. msgstr "Riempimento del supporto"
  1127. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:90
  1128. msgctxt "@tooltip"
  1129. msgid "Support Interface"
  1130. msgstr "Interfaccia supporto"
  1131. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:91
  1132. msgctxt "@tooltip"
  1133. msgid "Support"
  1134. msgstr "Supporto"
  1135. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:92
  1136. msgctxt "@tooltip"
  1137. msgid "Skirt"
  1138. msgstr "Skirt"
  1139. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:93
  1140. msgctxt "@tooltip"
  1141. msgid "Prime Tower"
  1142. msgstr "Torre di innesco"
  1143. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:94
  1144. msgctxt "@tooltip"
  1145. msgid "Travel"
  1146. msgstr "Spostamenti"
  1147. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:95
  1148. msgctxt "@tooltip"
  1149. msgid "Retractions"
  1150. msgstr "Retrazioni"
  1151. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:96
  1152. msgctxt "@tooltip"
  1153. msgid "Other"
  1154. msgstr "Altro"
  1155. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/ObjectsModel.py:69
  1156. #, python-brace-format
  1157. msgctxt "@label"
  1158. msgid "Group #{group_nr}"
  1159. msgstr "Gruppo #{group_nr}"
  1160. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:37
  1161. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:63
  1162. msgctxt "@text:window"
  1163. msgid "The release notes could not be opened."
  1164. msgstr "Impossibile aprire le note sulla versione."
  1165. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:67
  1166. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:286
  1167. msgctxt "@action:button"
  1168. msgid "Skip"
  1169. msgstr "Salta"
  1170. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:72
  1171. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  1172. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:178
  1173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:450
  1174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  1175. msgctxt "@action:button"
  1176. msgid "Close"
  1177. msgstr "Chiudi"
  1178. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:17
  1179. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  1180. msgctxt "@action:button"
  1181. msgid "Add"
  1182. msgstr "Aggiungi"
  1183. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:26
  1184. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:290
  1185. msgctxt "@action:button"
  1186. msgid "Finish"
  1187. msgstr "Fine"
  1188. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:33
  1189. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  1191. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:323
  1192. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:451
  1193. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  1194. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  1195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  1196. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:74
  1197. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:136
  1198. msgctxt "@action:button"
  1199. msgid "Cancel"
  1200. msgstr "Annulla"
  1201. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:57
  1202. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:277
  1203. msgctxt "@action:button"
  1204. msgid "Next"
  1205. msgstr "Avanti"
  1206. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:100
  1207. msgctxt "@info:status"
  1208. msgid ""
  1209. "The build volume height has been reduced due to the value of the \"Print "
  1210. "Sequence\" setting to prevent the gantry from colliding with printed models."
  1211. 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"
  1212. " stampati."
  1213. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:103
  1214. msgctxt "@info:title"
  1215. msgid "Build Volume"
  1216. msgstr "Volume di stampa"
  1217. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  1218. msgctxt "@message:text"
  1219. msgid "Could not save material archive to {}:"
  1220. msgstr "Impossibile salvare archivio materiali in {}:"
  1221. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  1222. msgctxt "@message:title"
  1223. msgid "Failed to save material archive"
  1224. msgstr "Impossibile salvare archivio materiali"
  1225. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  1226. msgctxt "@text"
  1227. msgid "Unknown error."
  1228. msgstr "Errore sconosciuto."
  1229. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:207
  1230. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:140
  1231. msgctxt "@title:window"
  1232. msgid "File Already Exists"
  1233. msgstr "Il file esiste già"
  1234. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:208
  1235. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:141
  1236. #, python-brace-format
  1237. msgctxt "@label Don't translate the XML tag <filename>!"
  1238. msgid ""
  1239. "The file <filename>{0}</filename> already exists. Are you sure you want to "
  1240. "overwrite it?"
  1241. msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di volerlo sovrascrivere?"
  1242. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:459
  1243. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:462
  1244. msgctxt "@info:status"
  1245. msgid "Invalid file URL:"
  1246. msgstr "File URL non valido:"
  1247. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1248. msgctxt "@info:not supported profile"
  1249. msgid "Not supported"
  1250. msgstr "Non supportato"
  1251. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1252. msgctxt "@info:No intent profile selected"
  1253. msgid "Default"
  1254. msgstr "Default"
  1255. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:857
  1256. msgctxt "@info:message Followed by a list of settings."
  1257. msgid ""
  1258. "Settings have been changed to match the current availability of extruders:"
  1259. msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:"
  1260. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:858
  1261. msgctxt "@info:title"
  1262. msgid "Settings updated"
  1263. msgstr "Impostazioni aggiornate"
  1264. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1480
  1265. msgctxt "@info:title"
  1266. msgid "Extruder(s) Disabled"
  1267. msgstr "Estrusore disabilitato"
  1268. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:153
  1269. #, python-brace-format
  1270. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1271. msgid ""
  1272. "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1273. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: <message>{1}</message>"
  1274. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:163
  1275. #, python-brace-format
  1276. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1277. msgid ""
  1278. "Failed to export profile to <filename>{0}</filename>: Writer plugin reported "
  1279. "failure."
  1280. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: Rilevata anomalia durante scrittura plugin."
  1281. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:171
  1282. #, python-brace-format
  1283. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1284. msgid "Exported profile to <filename>{0}</filename>"
  1285. msgstr "Profilo esportato su <filename>{0}</filename>"
  1286. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:173
  1287. msgctxt "@info:title"
  1288. msgid "Export succeeded"
  1289. msgstr "Esportazione riuscita"
  1290. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:205
  1291. #, python-brace-format
  1292. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1293. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1294. msgstr "Impossibile importare il profilo da <filename>{0}</filename>: {1}"
  1295. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:209
  1296. #, python-brace-format
  1297. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1298. msgid ""
  1299. "Can't import profile from <filename>{0}</filename> before a printer is added."
  1300. msgstr "Impossibile importare il profilo da <filename>{0}</filename> prima di aggiungere una stampante."
  1301. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:224
  1302. #, python-brace-format
  1303. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1304. msgid "No custom profile to import in file <filename>{0}</filename>"
  1305. msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  1306. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:228
  1307. #, python-brace-format
  1308. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1309. msgid "Failed to import profile from <filename>{0}</filename>:"
  1310. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  1311. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:252
  1312. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:262
  1313. #, python-brace-format
  1314. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1315. msgid ""
  1316. "This profile <filename>{0}</filename> contains incorrect data, could not "
  1317. "import it."
  1318. msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  1319. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:355
  1320. #, python-brace-format
  1321. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1322. msgid "Failed to import profile from <filename>{0}</filename>:"
  1323. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  1324. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:359
  1325. #, python-brace-format
  1326. msgctxt "@info:status"
  1327. msgid "Successfully imported profile {0}."
  1328. msgstr "Profilo {0} importato correttamente."
  1329. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:366
  1330. #, python-brace-format
  1331. msgctxt "@info:status"
  1332. msgid "File {0} does not contain any valid profile."
  1333. msgstr "Il file {0} non contiene nessun profilo valido."
  1334. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:369
  1335. #, python-brace-format
  1336. msgctxt "@info:status"
  1337. msgid "Profile {0} has an unknown file type or is corrupted."
  1338. msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto."
  1339. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:443
  1340. msgctxt "@label"
  1341. msgid "Custom profile"
  1342. msgstr "Profilo personalizzato"
  1343. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:459
  1344. msgctxt "@info:status"
  1345. msgid "Profile is missing a quality type."
  1346. msgstr "Il profilo è privo del tipo di qualità."
  1347. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:463
  1348. msgctxt "@info:status"
  1349. msgid "There is no active printer yet."
  1350. msgstr "Non ci sono ancora stampanti attive."
  1351. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:469
  1352. msgctxt "@info:status"
  1353. msgid "Unable to add the profile."
  1354. msgstr "Impossibile aggiungere il profilo."
  1355. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:483
  1356. #, python-brace-format
  1357. msgctxt "@info:status"
  1358. msgid ""
  1359. "Quality type '{0}' is not compatible with the current active machine "
  1360. "definition '{1}'."
  1361. msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'."
  1362. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:488
  1363. #, python-brace-format
  1364. msgctxt "@info:status"
  1365. msgid ""
  1366. "Warning: The profile is not visible because its quality type '{0}' is not "
  1367. "available for the current configuration. Switch to a material/nozzle "
  1368. "combination that can use this quality type."
  1369. msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello"
  1370. " che consente di utilizzare questo tipo di qualità."
  1371. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:30
  1372. msgctxt "@info:status"
  1373. msgid "Multiplying and placing objects"
  1374. msgstr "Moltiplicazione e collocazione degli oggetti"
  1375. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:32
  1376. msgctxt "@info:title"
  1377. msgid "Placing Objects"
  1378. msgstr "Sistemazione oggetti"
  1379. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:100
  1380. msgctxt "@info:title"
  1381. msgid "Placing Object"
  1382. msgstr "Sistemazione oggetto"
  1383. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:216
  1384. msgctxt "@info"
  1385. msgid ""
  1386. "Unable to start a new sign in process. Check if another sign in attempt is "
  1387. "still active."
  1388. msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso."
  1389. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:277
  1390. msgctxt "@info"
  1391. msgid "Unable to reach the Ultimaker account server."
  1392. msgstr "Impossibile raggiungere il server account Ultimaker."
  1393. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:278
  1394. msgctxt "@info:title"
  1395. msgid "Log-in failed"
  1396. msgstr "Log in non riuscito"
  1397. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  1398. msgctxt "@message"
  1399. msgid "Could not read response."
  1400. msgstr "Impossibile leggere la risposta."
  1401. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  1402. msgctxt "@message"
  1403. msgid "The provided state is not correct."
  1404. msgstr "Lo stato fornito non è corretto."
  1405. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  1406. msgctxt "@message"
  1407. msgid "Timeout when authenticating with the account server."
  1408. msgstr "Timeout durante l'autenticazione con il server account."
  1409. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  1410. msgctxt "@message"
  1411. msgid "Please give the required permissions when authorizing this application."
  1412. msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione."
  1413. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  1414. msgctxt "@message"
  1415. msgid "Something unexpected happened when trying to log in, please try again."
  1416. msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare."
  1417. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:107
  1418. msgctxt "@title:window"
  1419. msgid "Cura can't start"
  1420. msgstr "Impossibile avviare Cura"
  1421. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:113
  1422. msgctxt "@label crash message"
  1423. msgid ""
  1424. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right."
  1425. "</p></b>\n"
  1426. " <p>We encountered an unrecoverable error during start "
  1427. "up. It was possibly caused by some incorrect configuration files. We suggest "
  1428. "to backup and reset your configuration.</p>\n"
  1429. " <p>Backups can be found in the configuration folder.</"
  1430. "p>\n"
  1431. " <p>Please send us this Crash Report to fix the problem.</"
  1432. "p>\n"
  1433. " "
  1434. msgstr "<p><b>Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.</p></b>\n <p>Abbiamo riscontrato un errore irrecuperabile durante"
  1435. " l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.</p>\n"
  1436. " <p>I backup sono contenuti nella cartella configurazione.</p>\n <p>Si prega di inviare questo Rapporto su crash"
  1437. " per correggere il problema.</p>\n "
  1438. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:122
  1439. msgctxt "@action:button"
  1440. msgid "Send crash report to Ultimaker"
  1441. msgstr "Inviare il rapporto su crash a Ultimaker"
  1442. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:125
  1443. msgctxt "@action:button"
  1444. msgid "Show detailed crash report"
  1445. msgstr "Mostra il rapporto su crash dettagliato"
  1446. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:129
  1447. msgctxt "@action:button"
  1448. msgid "Show configuration folder"
  1449. msgstr "Mostra cartella di configurazione"
  1450. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:140
  1451. msgctxt "@action:button"
  1452. msgid "Backup and Reset Configuration"
  1453. msgstr "Backup e reset configurazione"
  1454. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:171
  1455. msgctxt "@title:window"
  1456. msgid "Crash Report"
  1457. msgstr "Rapporto su crash"
  1458. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:190
  1459. msgctxt "@label crash message"
  1460. msgid ""
  1461. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report "
  1462. "to fix the problem</p></b>\n"
  1463. " <p>Please use the \"Send report\" button to post a bug report "
  1464. "automatically to our servers</p>\n"
  1465. " "
  1466. msgstr "<p><b>Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema</p></b>\n <p>Usare il"
  1467. " pulsante “Invia report&quot; per inviare automaticamente una segnalazione errore ai nostri server</p>\n "
  1468. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:198
  1469. msgctxt "@title:groupbox"
  1470. msgid "System information"
  1471. msgstr "Informazioni di sistema"
  1472. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:207
  1473. msgctxt "@label unknown version of Cura"
  1474. msgid "Unknown"
  1475. msgstr "Sconosciuto"
  1476. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:228
  1477. msgctxt "@label Cura version number"
  1478. msgid "Cura version"
  1479. msgstr "Versione Cura"
  1480. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:229
  1481. msgctxt "@label"
  1482. msgid "Cura language"
  1483. msgstr "Lingua Cura"
  1484. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:230
  1485. msgctxt "@label"
  1486. msgid "OS language"
  1487. msgstr "Lingua sistema operativo"
  1488. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:231
  1489. msgctxt "@label Type of platform"
  1490. msgid "Platform"
  1491. msgstr "Piattaforma"
  1492. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:232
  1493. msgctxt "@label"
  1494. msgid "Qt version"
  1495. msgstr "Versione Qt"
  1496. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:233
  1497. msgctxt "@label"
  1498. msgid "PyQt version"
  1499. msgstr "Versione PyQt"
  1500. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:234
  1501. msgctxt "@label OpenGL version"
  1502. msgid "OpenGL"
  1503. msgstr "OpenGL"
  1504. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:264
  1505. msgctxt "@label"
  1506. msgid "Not yet initialized<br/>"
  1507. msgstr "Non ancora inizializzato<br/>"
  1508. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:267
  1509. #, python-brace-format
  1510. msgctxt "@label OpenGL version"
  1511. msgid "<li>OpenGL Version: {version}</li>"
  1512. msgstr "<li>Versione OpenGL: {version}</li>"
  1513. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:268
  1514. #, python-brace-format
  1515. msgctxt "@label OpenGL vendor"
  1516. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1517. msgstr "<li>Fornitore OpenGL: {vendor}</li>"
  1518. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:269
  1519. #, python-brace-format
  1520. msgctxt "@label OpenGL renderer"
  1521. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1522. msgstr "<li>Renderer OpenGL: {renderer}</li>"
  1523. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:303
  1524. msgctxt "@title:groupbox"
  1525. msgid "Error traceback"
  1526. msgstr "Analisi errori"
  1527. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:389
  1528. msgctxt "@title:groupbox"
  1529. msgid "Logs"
  1530. msgstr "Registri"
  1531. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:417
  1532. msgctxt "@action:button"
  1533. msgid "Send report"
  1534. msgstr "Invia report"
  1535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1536. msgctxt "@info"
  1537. msgid ""
  1538. "Please make sure your printer has a connection:\n"
  1539. "- Check if the printer is turned on.\n"
  1540. "- Check if the printer is connected to the network.\n"
  1541. "- Check if you are signed in to discover cloud-connected printers."
  1542. msgstr "Accertarsi che la stampante sia collegata:\n- Controllare se la stampante è accesa.\n- Controllare se la stampante è collegata alla rete.\n- Controllare"
  1543. " se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud."
  1544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:113
  1545. msgctxt "@info"
  1546. msgid "Please connect your printer to the network."
  1547. msgstr "Collegare la stampante alla rete."
  1548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:146
  1549. msgctxt "@label link to technical assistance"
  1550. msgid "View user manuals online"
  1551. msgstr "Visualizza i manuali utente online"
  1552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:163
  1553. msgctxt "@info"
  1554. msgid "In order to monitor your print from Cura, please connect the printer."
  1555. msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante."
  1556. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  1557. msgctxt "@title:window"
  1558. msgid "Select Settings to Customize for this model"
  1559. msgstr "Seleziona impostazioni di personalizzazione per questo modello"
  1560. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  1561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:100
  1562. msgctxt "@label:textbox"
  1563. msgid "Filter..."
  1564. msgstr "Filtro..."
  1565. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  1566. msgctxt "@label:checkbox"
  1567. msgid "Show all"
  1568. msgstr "Mostra tutto"
  1569. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1570. msgctxt "@label"
  1571. msgid "Mesh Type"
  1572. msgstr "Tipo di maglia"
  1573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1574. msgctxt "@label"
  1575. msgid "Normal model"
  1576. msgstr "Modello normale"
  1577. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1578. msgctxt "@label"
  1579. msgid "Print as support"
  1580. msgstr "Stampa come supporto"
  1581. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1582. msgctxt "@label"
  1583. msgid "Modify settings for overlaps"
  1584. msgstr "Modificare le impostazioni per le sovrapposizioni"
  1585. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  1586. msgctxt "@label"
  1587. msgid "Don't support overlaps"
  1588. msgstr "Non supportano le sovrapposizioni"
  1589. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  1590. msgctxt "@item:inlistbox"
  1591. msgid "Infill mesh only"
  1592. msgstr "Solo maglia di riempimento"
  1593. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  1594. msgctxt "@item:inlistbox"
  1595. msgid "Cutting mesh"
  1596. msgstr "Ritaglio mesh"
  1597. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  1598. msgctxt "@action:button"
  1599. msgid "Select settings"
  1600. msgstr "Seleziona impostazioni"
  1601. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1602. msgctxt "@title"
  1603. msgid "Update Firmware"
  1604. msgstr "Aggiornamento firmware"
  1605. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1606. msgctxt "@label"
  1607. msgid ""
  1608. "Firmware is the piece of software running directly on your 3D printer. This "
  1609. "firmware controls the step motors, regulates the temperature and ultimately "
  1610. "makes your printer work."
  1611. msgstr "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in"
  1612. " ultima analisi, consente il funzionamento della stampante."
  1613. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1614. msgctxt "@label"
  1615. msgid ""
  1616. "The firmware shipping with new printers works, but new versions tend to have "
  1617. "more features and improvements."
  1618. msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni."
  1619. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1620. msgctxt "@action:button"
  1621. msgid "Automatically upgrade Firmware"
  1622. msgstr "Aggiorna automaticamente il firmware"
  1623. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1624. msgctxt "@action:button"
  1625. msgid "Upload custom Firmware"
  1626. msgstr "Carica il firmware personalizzato"
  1627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1628. msgctxt "@label"
  1629. msgid ""
  1630. "Firmware can not be updated because there is no connection with the printer."
  1631. msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante."
  1632. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1633. msgctxt "@label"
  1634. msgid ""
  1635. "Firmware can not be updated because the connection with the printer does not "
  1636. "support upgrading firmware."
  1637. msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware."
  1638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1639. msgctxt "@title:window"
  1640. msgid "Select custom firmware"
  1641. msgstr "Seleziona il firmware personalizzato"
  1642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:114
  1643. msgctxt "@title:window"
  1644. msgid "Firmware Update"
  1645. msgstr "Aggiornamento del firmware"
  1646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:138
  1647. msgctxt "@label"
  1648. msgid "Updating firmware."
  1649. msgstr "Aggiornamento firmware."
  1650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:140
  1651. msgctxt "@label"
  1652. msgid "Firmware update completed."
  1653. msgstr "Aggiornamento del firmware completato."
  1654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:142
  1655. msgctxt "@label"
  1656. msgid "Firmware update failed due to an unknown error."
  1657. msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto."
  1658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:144
  1659. msgctxt "@label"
  1660. msgid "Firmware update failed due to an communication error."
  1661. msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione."
  1662. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:146
  1663. msgctxt "@label"
  1664. msgid "Firmware update failed due to an input/output error."
  1665. msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output."
  1666. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:148
  1667. msgctxt "@label"
  1668. msgid "Firmware update failed due to missing firmware."
  1669. msgstr "Aggiornamento firmware non riuscito per firmware mancante."
  1670. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  1671. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1672. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1675. msgctxt "@label:status"
  1676. msgid "Aborted"
  1677. msgstr "Interrotto"
  1678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  1679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1680. msgctxt "@label:status"
  1681. msgid "Finished"
  1682. msgstr "Terminato"
  1683. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1685. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1686. msgctxt "@label:status"
  1687. msgid "Preparing..."
  1688. msgstr "Preparazione in corso..."
  1689. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1690. msgctxt "@label:status"
  1691. msgid "Aborting..."
  1692. msgstr "Interr. in corso..."
  1693. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1695. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1696. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1697. msgctxt "@label:status"
  1698. msgid "Failed"
  1699. msgstr "Non riuscita"
  1700. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1701. msgctxt "@label:status"
  1702. msgid "Pausing..."
  1703. msgstr "Messa in pausa..."
  1704. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1705. msgctxt "@label:status"
  1706. msgid "Paused"
  1707. msgstr "In pausa"
  1708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1709. msgctxt "@label:status"
  1710. msgid "Resuming..."
  1711. msgstr "Ripresa in corso..."
  1712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1713. msgctxt "@label:status"
  1714. msgid "Action required"
  1715. msgstr "Richiede un'azione"
  1716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1717. msgctxt "@label:status"
  1718. msgid "Finishes %1 at %2"
  1719. msgstr "Finisce %1 a %2"
  1720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1721. msgctxt "@label link to Connect and Cloud interfaces"
  1722. msgid "Manage printer"
  1723. msgstr "Gestione stampanti"
  1724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178
  1725. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1726. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175
  1727. msgctxt "@label"
  1728. msgid "Glass"
  1729. msgstr "Vetro"
  1730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241
  1731. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467
  1732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239
  1733. msgctxt "@info"
  1734. msgid "Please update your printer's firmware to manage the queue remotely."
  1735. msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto."
  1736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275
  1737. msgctxt "@info"
  1738. msgid ""
  1739. "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click "
  1740. "\"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1741. msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory"
  1742. " e visualizzare questa Webcam."
  1743. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335
  1744. msgctxt "@label:status"
  1745. msgid "Loading..."
  1746. msgstr "Caricamento in corso..."
  1747. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339
  1748. msgctxt "@label:status"
  1749. msgid "Unavailable"
  1750. msgstr "Non disponibile"
  1751. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343
  1752. msgctxt "@label:status"
  1753. msgid "Unreachable"
  1754. msgstr "Non raggiungibile"
  1755. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1756. msgctxt "@label:status"
  1757. msgid "Idle"
  1758. msgstr "Ferma"
  1759. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1760. msgctxt "@label:status"
  1761. msgid "Printing"
  1762. msgstr "Stampa in corso"
  1763. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397
  1764. msgctxt "@label"
  1765. msgid "Untitled"
  1766. msgstr "Senza titolo"
  1767. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412
  1768. msgctxt "@label"
  1769. msgid "Anonymous"
  1770. msgstr "Anonimo"
  1771. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433
  1772. msgctxt "@label:status"
  1773. msgid "Requires configuration changes"
  1774. msgstr "Richiede modifiche di configurazione"
  1775. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447
  1776. msgctxt "@action:button"
  1777. msgid "Details"
  1778. msgstr "Dettagli"
  1779. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1780. msgctxt "@title:window"
  1781. msgid "Configuration Changes"
  1782. msgstr "Modifiche configurazione"
  1783. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1784. msgctxt "@action:button"
  1785. msgid "Override"
  1786. msgstr "Override"
  1787. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1788. msgctxt "@label"
  1789. msgid "The assigned printer, %1, requires the following configuration change:"
  1790. msgid_plural ""
  1791. "The assigned printer, %1, requires the following configuration changes:"
  1792. msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:"
  1793. msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  1794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1795. msgctxt "@label"
  1796. msgid ""
  1797. "The printer %1 is assigned, but the job contains an unknown material "
  1798. "configuration."
  1799. msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta."
  1800. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1801. msgctxt "@label"
  1802. msgid "Change material %1 from %2 to %3."
  1803. msgstr "Cambia materiale %1 da %2 a %3."
  1804. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1805. msgctxt "@label"
  1806. msgid "Load %3 as material %1 (This cannot be overridden)."
  1807. msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)."
  1808. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1809. msgctxt "@label"
  1810. msgid "Change print core %1 from %2 to %3."
  1811. msgstr "Cambia print core %1 da %2 a %3."
  1812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1813. msgctxt "@label"
  1814. msgid "Change build plate to %1 (This cannot be overridden)."
  1815. msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)."
  1816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1817. msgctxt "@label"
  1818. msgid ""
  1819. "Override will use the specified settings with the existing printer "
  1820. "configuration. This may result in a failed print."
  1821. msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita."
  1822. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1823. msgctxt "@label"
  1824. msgid "Aluminum"
  1825. msgstr "Alluminio"
  1826. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1827. msgctxt "@title:window"
  1828. msgid "Print over network"
  1829. msgstr "Stampa sulla rete"
  1830. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1831. msgctxt "@action:button"
  1832. msgid "Print"
  1833. msgstr "Stampa"
  1834. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1835. msgctxt "@label"
  1836. msgid "Printer selection"
  1837. msgstr "Selezione stampante"
  1838. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1839. msgctxt "@title:window"
  1840. msgid "Connect to Networked Printer"
  1841. msgstr "Collega alla stampante in rete"
  1842. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1843. msgctxt "@label"
  1844. msgid ""
  1845. "To print directly to your printer over the network, please make sure your "
  1846. "printer is connected to the network using a network cable or by connecting "
  1847. "your printer to your WIFI network. If you don't connect Cura with your "
  1848. "printer, you can still use a USB drive to transfer g-code files to your "
  1849. "printer."
  1850. 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"
  1851. " alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice"
  1852. " G alla stampante."
  1853. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1854. msgctxt "@label"
  1855. msgid "Select your printer from the list below:"
  1856. msgstr "Selezionare la stampante dall’elenco seguente:"
  1857. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1858. msgctxt "@action:button"
  1859. msgid "Edit"
  1860. msgstr "Modifica"
  1861. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:141
  1863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1864. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:320
  1865. msgctxt "@action:button"
  1866. msgid "Remove"
  1867. msgstr "Rimuovi"
  1868. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1869. msgctxt "@action:button"
  1870. msgid "Refresh"
  1871. msgstr "Aggiorna"
  1872. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1873. msgctxt "@label"
  1874. msgid ""
  1875. "If your printer is not listed, read the <a href='%1'>network printing "
  1876. "troubleshooting guide</a>"
  1877. msgstr "Se la stampante non è nell’elenco, leggere la <a href='%1'>guida alla risoluzione dei problemi per la stampa in rete</a>"
  1878. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  1879. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1880. msgctxt "@label"
  1881. msgid "Type"
  1882. msgstr "Tipo"
  1883. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  1884. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1885. msgctxt "@label"
  1886. msgid "Firmware version"
  1887. msgstr "Versione firmware"
  1888. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  1889. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1890. msgctxt "@label"
  1891. msgid "Address"
  1892. msgstr "Indirizzo"
  1893. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1894. msgctxt "@label"
  1895. msgid "This printer is not set up to host a group of printers."
  1896. msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti."
  1897. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1898. msgctxt "@label"
  1899. msgid "This printer is the host for a group of %1 printers."
  1900. msgstr "Questa stampante comanda un gruppo di %1 stampanti."
  1901. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1902. msgctxt "@label"
  1903. msgid "The printer at this address has not yet responded."
  1904. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  1905. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1906. msgctxt "@action:button"
  1907. msgid "Connect"
  1908. msgstr "Collega"
  1909. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1910. msgctxt "@title:window"
  1911. msgid "Invalid IP address"
  1912. msgstr "Indirizzo IP non valido"
  1913. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  1914. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1915. msgctxt "@text"
  1916. msgid "Please enter a valid IP address."
  1917. msgstr "Inserire un indirizzo IP valido."
  1918. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1919. msgctxt "@title:window"
  1920. msgid "Printer Address"
  1921. msgstr "Indirizzo stampante"
  1922. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1923. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1924. msgctxt "@label"
  1925. msgid "Enter the IP address of your printer on the network."
  1926. msgstr "Inserire l'indirizzo IP della stampante in rete."
  1927. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1928. msgctxt "@label"
  1929. msgid "Unavailable printer"
  1930. msgstr "Stampante non disponibile"
  1931. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1932. msgctxt "@label"
  1933. msgid "First available"
  1934. msgstr "Primo disponibile"
  1935. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1936. msgctxt "@label"
  1937. msgid "Move to top"
  1938. msgstr "Sposta in alto"
  1939. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1940. msgctxt "@label"
  1941. msgid "Delete"
  1942. msgstr "Cancella"
  1943. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:284
  1945. msgctxt "@label"
  1946. msgid "Resume"
  1947. msgstr "Riprendi"
  1948. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1949. msgctxt "@label"
  1950. msgid "Pausing..."
  1951. msgstr "Messa in pausa..."
  1952. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1953. msgctxt "@label"
  1954. msgid "Resuming..."
  1955. msgstr "Ripresa in corso..."
  1956. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:279
  1958. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:288
  1959. msgctxt "@label"
  1960. msgid "Pause"
  1961. msgstr "Pausa"
  1962. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1963. msgctxt "@label"
  1964. msgid "Aborting..."
  1965. msgstr "Interr. in corso..."
  1966. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1967. msgctxt "@label"
  1968. msgid "Abort"
  1969. msgstr "Interrompi"
  1970. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142
  1971. msgctxt "@label %1 is the name of a print job."
  1972. msgid "Are you sure you want to move %1 to the top of the queue?"
  1973. msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?"
  1974. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1975. msgctxt "@window:title"
  1976. msgid "Move print job to top"
  1977. msgstr "Sposta il processo di stampa in alto"
  1978. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151
  1979. msgctxt "@label %1 is the name of a print job."
  1980. msgid "Are you sure you want to delete %1?"
  1981. msgstr "Sei sicuro di voler cancellare %1?"
  1982. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152
  1983. msgctxt "@window:title"
  1984. msgid "Delete print job"
  1985. msgstr "Cancella processo di stampa"
  1986. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160
  1987. msgctxt "@label %1 is the name of a print job."
  1988. msgid "Are you sure you want to abort %1?"
  1989. msgstr "Sei sicuro di voler interrompere %1?"
  1990. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161
  1991. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:326
  1992. msgctxt "@window:title"
  1993. msgid "Abort print"
  1994. msgstr "Interrompi la stampa"
  1995. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1996. msgctxt "@label"
  1997. msgid "Queued"
  1998. msgstr "Coda di stampa"
  1999. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63
  2000. msgctxt "@label link to connect manager"
  2001. msgid "Manage in browser"
  2002. msgstr "Gestisci nel browser"
  2003. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90
  2004. msgctxt "@label"
  2005. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2006. msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno."
  2007. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98
  2008. msgctxt "@label"
  2009. msgid "Print jobs"
  2010. msgstr "Processi di stampa"
  2011. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107
  2012. msgctxt "@label"
  2013. msgid "Total print time"
  2014. msgstr "Tempo di stampa totale"
  2015. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  2016. msgctxt "@label"
  2017. msgid "Waiting for"
  2018. msgstr "In attesa"
  2019. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:19
  2020. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:48
  2021. msgctxt "@label"
  2022. msgid "Color scheme"
  2023. msgstr "Schema colori"
  2024. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  2025. msgctxt "@label:listbox"
  2026. msgid "Material Color"
  2027. msgstr "Colore materiale"
  2028. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2029. msgctxt "@label:listbox"
  2030. msgid "Line Type"
  2031. msgstr "Tipo di linea"
  2032. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2033. msgctxt "@label:listbox"
  2034. msgid "Speed"
  2035. msgstr "Velocità"
  2036. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2037. msgctxt "@label:listbox"
  2038. msgid "Layer Thickness"
  2039. msgstr "Spessore layer"
  2040. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2041. msgctxt "@label:listbox"
  2042. msgid "Line Width"
  2043. msgstr "Larghezza della linea"
  2044. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2045. msgctxt "@label:listbox"
  2046. msgid "Flow"
  2047. msgstr "Flusso"
  2048. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:165
  2049. msgctxt "@label"
  2050. msgid "Compatibility Mode"
  2051. msgstr "Modalità di compatibilità"
  2052. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:232
  2053. msgctxt "@label"
  2054. msgid "Travels"
  2055. msgstr "Spostamenti"
  2056. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:238
  2057. msgctxt "@label"
  2058. msgid "Helpers"
  2059. msgstr "Helper"
  2060. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:244
  2061. msgctxt "@label"
  2062. msgid "Shell"
  2063. msgstr "Guscio"
  2064. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:250
  2065. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64
  2066. msgctxt "@label"
  2067. msgid "Infill"
  2068. msgstr "Riempimento"
  2069. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:258
  2070. msgctxt "@label"
  2071. msgid "Starts"
  2072. msgstr "Avvia"
  2073. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  2074. msgctxt "@label"
  2075. msgid "Only Show Top Layers"
  2076. msgstr "Mostra solo strati superiori"
  2077. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:316
  2078. msgctxt "@label"
  2079. msgid "Show 5 Detailed Layers On Top"
  2080. msgstr "Mostra 5 strati superiori in dettaglio"
  2081. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:329
  2082. msgctxt "@label"
  2083. msgid "Top / Bottom"
  2084. msgstr "Superiore / Inferiore"
  2085. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:333
  2086. msgctxt "@label"
  2087. msgid "Inner Wall"
  2088. msgstr "Parete interna"
  2089. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:400
  2090. msgctxt "@label"
  2091. msgid "min"
  2092. msgstr "min"
  2093. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:465
  2094. msgctxt "@label"
  2095. msgid "max"
  2096. msgstr "max"
  2097. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:14
  2098. msgctxt "@title:window"
  2099. msgid "Convert Image"
  2100. msgstr "Converti immagine"
  2101. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:33
  2102. msgctxt "@action:label"
  2103. msgid "Height (mm)"
  2104. msgstr "Altezza (mm)"
  2105. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:56
  2106. msgctxt "@info:tooltip"
  2107. msgid "The maximum distance of each pixel from \"Base.\""
  2108. msgstr "La distanza massima di ciascun pixel da \"Base.\""
  2109. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:66
  2110. msgctxt "@action:label"
  2111. msgid "Base (mm)"
  2112. msgstr "Base (mm)"
  2113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:90
  2114. msgctxt "@info:tooltip"
  2115. msgid "The base height from the build plate in millimeters."
  2116. msgstr "L'altezza della base dal piano di stampa in millimetri."
  2117. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:100
  2118. msgctxt "@action:label"
  2119. msgid "Width (mm)"
  2120. msgstr "Larghezza (mm)"
  2121. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:124
  2122. msgctxt "@info:tooltip"
  2123. msgid "The width in millimeters on the build plate"
  2124. msgstr "La larghezza in millimetri sul piano di stampa"
  2125. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:134
  2126. msgctxt "@action:label"
  2127. msgid "Depth (mm)"
  2128. msgstr "Profondità (mm)"
  2129. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:158
  2130. msgctxt "@info:tooltip"
  2131. msgid "The depth in millimeters on the build plate"
  2132. msgstr "La profondità in millimetri sul piano di stampa"
  2133. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:187
  2134. msgctxt "@item:inlistbox"
  2135. msgid "Darker is higher"
  2136. msgstr "Più scuro è più alto"
  2137. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:188
  2138. msgctxt "@item:inlistbox"
  2139. msgid "Lighter is higher"
  2140. msgstr "Più chiaro è più alto"
  2141. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:195
  2142. msgctxt "@info:tooltip"
  2143. msgid ""
  2144. "For lithophanes dark pixels should correspond to thicker locations in order "
  2145. "to block more light coming through. For height maps lighter pixels signify "
  2146. "higher terrain, so lighter pixels should correspond to thicker locations in "
  2147. "the generated 3D model."
  2148. 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"
  2149. " superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più"
  2150. " spesse."
  2151. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:205
  2152. msgctxt "@action:label"
  2153. msgid "Color Model"
  2154. msgstr "Modello a colori"
  2155. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:224
  2156. msgctxt "@item:inlistbox"
  2157. msgid "Linear"
  2158. msgstr "Lineare"
  2159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:225
  2160. msgctxt "@item:inlistbox"
  2161. msgid "Translucency"
  2162. msgstr "Traslucenza"
  2163. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:232
  2164. msgctxt "@info:tooltip"
  2165. msgid ""
  2166. "For lithophanes a simple logarithmic model for translucency is available. "
  2167. "For height maps the pixel values correspond to heights linearly."
  2168. msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze"
  2169. " in modo lineare."
  2170. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:242
  2171. msgctxt "@action:label"
  2172. msgid "1mm Transmittance (%)"
  2173. msgstr "Trasmittanza di 1 mm (%)"
  2174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:263
  2175. msgctxt "@info:tooltip"
  2176. msgid ""
  2177. "The percentage of light penetrating a print with a thickness of 1 "
  2178. "millimeter. Lowering this value increases the contrast in dark regions and "
  2179. "decreases the contrast in light regions of the image."
  2180. 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,"
  2181. " mentre il contrasto nelle aree chiare dell'immagine diminuisce."
  2182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:274
  2183. msgctxt "@action:label"
  2184. msgid "Smoothing"
  2185. msgstr "Smoothing"
  2186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:298
  2187. msgctxt "@info:tooltip"
  2188. msgid "The amount of smoothing to apply to the image."
  2189. msgstr "La quantità di smoothing (levigatura) da applicare all'immagine."
  2190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:329
  2191. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2192. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:80
  2193. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:140
  2194. msgctxt "@action:button"
  2195. msgid "OK"
  2196. msgstr "OK"
  2197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2198. msgctxt "@title:window"
  2199. msgid "Open Project"
  2200. msgstr "Apri progetto"
  2201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:55
  2202. msgctxt "@action:ComboBox Update/override existing profile"
  2203. msgid "Update existing"
  2204. msgstr "Aggiorna esistente"
  2205. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:56
  2206. msgctxt "@action:ComboBox Save settings in a new profile"
  2207. msgid "Create new"
  2208. msgstr "Crea nuovo"
  2209. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  2210. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:52
  2211. msgctxt "@action:title"
  2212. msgid "Summary - Cura Project"
  2213. msgstr "Riepilogo - Progetto Cura"
  2214. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:100
  2215. msgctxt "@info:tooltip"
  2216. msgid "How should the conflict in the machine be resolved?"
  2217. msgstr "Come può essere risolto il conflitto nella macchina?"
  2218. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:156
  2219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:88
  2220. msgctxt "@action:label"
  2221. msgid "Printer settings"
  2222. msgstr "Impostazioni della stampante"
  2223. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2224. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2225. msgctxt "@action:label"
  2226. msgid "Type"
  2227. msgstr "Tipo"
  2228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:184
  2229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2230. msgctxt "@action:label"
  2231. msgid "Printer Group"
  2232. msgstr "Gruppo stampanti"
  2233. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:209
  2234. msgctxt "@info:tooltip"
  2235. msgid "How should the conflict in the profile be resolved?"
  2236. msgstr "Come può essere risolto il conflitto nel profilo?"
  2237. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2238. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:213
  2239. msgctxt "@action:label"
  2240. msgid "Profile settings"
  2241. msgstr "Impostazioni profilo"
  2242. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2243. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  2244. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:237
  2246. msgctxt "@action:label"
  2247. msgid "Name"
  2248. msgstr "Nome"
  2249. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:260
  2250. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  2251. msgctxt "@action:label"
  2252. msgid "Intent"
  2253. msgstr "Intent"
  2254. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:278
  2255. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2256. msgctxt "@action:label"
  2257. msgid "Not in profile"
  2258. msgstr "Non nel profilo"
  2259. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  2260. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2261. msgctxt "@action:label"
  2262. msgid "%1 override"
  2263. msgid_plural "%1 overrides"
  2264. msgstr[0] "%1 override"
  2265. msgstr[1] "%1 override"
  2266. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:297
  2267. msgctxt "@action:label"
  2268. msgid "Derivative from"
  2269. msgstr "Derivato da"
  2270. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:303
  2271. msgctxt "@action:label"
  2272. msgid "%1, %2 override"
  2273. msgid_plural "%1, %2 overrides"
  2274. msgstr[0] "%1, %2 override"
  2275. msgstr[1] "%1, %2 override"
  2276. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  2277. msgctxt "@info:tooltip"
  2278. msgid "How should the conflict in the material be resolved?"
  2279. msgstr "Come può essere risolto il conflitto nel materiale?"
  2280. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2281. msgctxt "@action:label"
  2282. msgid "Material settings"
  2283. msgstr "Impostazioni materiale"
  2284. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:388
  2285. msgctxt "@action:label"
  2286. msgid "Setting visibility"
  2287. msgstr "Impostazione visibilità"
  2288. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2289. msgctxt "@action:label"
  2290. msgid "Mode"
  2291. msgstr "Modalità"
  2292. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:413
  2293. msgctxt "@action:label"
  2294. msgid "Visible settings:"
  2295. msgstr "Impostazioni visibili:"
  2296. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:418
  2297. msgctxt "@action:label"
  2298. msgid "%1 out of %2"
  2299. msgstr "%1 su %2"
  2300. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:439
  2301. msgctxt "@action:warning"
  2302. msgid "Loading a project will clear all models on the build plate."
  2303. msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa."
  2304. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:456
  2305. msgctxt "@action:button"
  2306. msgid "Open"
  2307. msgstr "Apri"
  2308. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2309. msgctxt "@button"
  2310. msgid "Want more?"
  2311. msgstr "Ulteriori informazioni?"
  2312. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2313. msgctxt "@button"
  2314. msgid "Backup Now"
  2315. msgstr "Esegui backup adesso"
  2316. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2317. msgctxt "@checkbox:description"
  2318. msgid "Auto Backup"
  2319. msgstr "Backup automatico"
  2320. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2321. msgctxt "@checkbox:description"
  2322. msgid "Automatically create a backup each day that Cura is started."
  2323. msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura."
  2324. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2325. msgctxt "@backuplist:label"
  2326. msgid "Cura Version"
  2327. msgstr "Versione Cura"
  2328. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2329. msgctxt "@backuplist:label"
  2330. msgid "Machines"
  2331. msgstr "Macchine"
  2332. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2333. msgctxt "@backuplist:label"
  2334. msgid "Materials"
  2335. msgstr "Materiali"
  2336. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2337. msgctxt "@backuplist:label"
  2338. msgid "Profiles"
  2339. msgstr "Profili"
  2340. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2341. msgctxt "@backuplist:label"
  2342. msgid "Plugins"
  2343. msgstr "Plugin"
  2344. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2345. msgctxt "@button"
  2346. msgid "Restore"
  2347. msgstr "Ripristina"
  2348. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2349. msgctxt "@dialog:title"
  2350. msgid "Delete Backup"
  2351. msgstr "Cancella backup"
  2352. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2353. msgctxt "@dialog:info"
  2354. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2355. msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata."
  2356. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2357. msgctxt "@dialog:title"
  2358. msgid "Restore Backup"
  2359. msgstr "Ripristina backup"
  2360. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2361. msgctxt "@dialog:info"
  2362. msgid ""
  2363. "You will need to restart Cura before your backup is restored. Do you want to "
  2364. "close Cura now?"
  2365. msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?"
  2366. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2367. msgctxt "@description"
  2368. msgid "Backup and synchronize your Cura settings."
  2369. msgstr "Backup e sincronizzazione delle impostazioni Cura."
  2370. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:49
  2372. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:163
  2373. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  2374. msgctxt "@button"
  2375. msgid "Sign in"
  2376. msgstr "Accedi"
  2377. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2378. msgctxt "@title"
  2379. msgid "My Backups"
  2380. msgstr "I miei backup"
  2381. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2382. msgctxt "@empty_state"
  2383. msgid ""
  2384. "You don't have any backups currently. Use the 'Backup Now' button to create "
  2385. "one."
  2386. msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno."
  2387. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2388. msgctxt "@backup_limit_info"
  2389. msgid ""
  2390. "During the preview phase, you'll be limited to 5 visible backups. Remove a "
  2391. "backup to see older ones."
  2392. msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti."
  2393. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2394. msgctxt "@title:window"
  2395. msgid "Cura Backups"
  2396. msgstr "Backup Cura"
  2397. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2398. msgctxt "@title:window"
  2399. msgid "More information on anonymous data collection"
  2400. msgstr "Maggiori informazioni sulla raccolta di dati anonimi"
  2401. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2402. msgctxt "@text:window"
  2403. msgid ""
  2404. "Ultimaker Cura collects anonymous data in order to improve the print quality "
  2405. "and user experience. Below is an example of all the data that is shared:"
  2406. 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:"
  2407. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2408. msgctxt "@text:window"
  2409. msgid "I don't want to send anonymous data"
  2410. msgstr "Non desidero inviare dati anonimi"
  2411. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2412. msgctxt "@text:window"
  2413. msgid "Allow sending anonymous data"
  2414. msgstr "Consenti l'invio di dati anonimi"
  2415. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2416. msgctxt "@title:window"
  2417. msgid "Post Processing Plugin"
  2418. msgstr "Plug-in di post-elaborazione"
  2419. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2420. msgctxt "@label"
  2421. msgid "Post Processing Scripts"
  2422. msgstr "Script di post-elaborazione"
  2423. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:221
  2424. msgctxt "@action"
  2425. msgid "Add a script"
  2426. msgstr "Aggiungi uno script"
  2427. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:257
  2428. msgctxt "@label"
  2429. msgid "Settings"
  2430. msgstr "Impostazioni"
  2431. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:466
  2432. msgctxt "@info:tooltip"
  2433. msgid "Change active post-processing scripts."
  2434. msgstr "Modificare gli script di post-elaborazione attivi."
  2435. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:470
  2436. msgctxt "@info:tooltip"
  2437. msgid "The following script is active:"
  2438. msgid_plural "The following scripts are active:"
  2439. msgstr[0] "È attivo il seguente script:"
  2440. msgstr[1] "Sono attivi i seguenti script:"
  2441. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2442. msgctxt "@label"
  2443. msgid "Please select any upgrades made to this Ultimaker Original"
  2444. msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original"
  2445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2446. msgctxt "@label"
  2447. msgid "Heated Build Plate (official kit or self-built)"
  2448. msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)"
  2449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2450. msgctxt "@title"
  2451. msgid "Build Plate Leveling"
  2452. msgstr "Livellamento del piano di stampa"
  2453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2454. msgctxt "@label"
  2455. msgid ""
  2456. "To make sure your prints will come out great, you can now adjust your "
  2457. "buildplate. When you click 'Move to Next Position' the nozzle will move to "
  2458. "the different positions that can be adjusted."
  2459. 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"
  2460. " si sposterà in diverse posizioni che è possibile regolare."
  2461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2462. msgctxt "@label"
  2463. msgid ""
  2464. "For every position; insert a piece of paper under the nozzle and adjust the "
  2465. "print build plate height. The print build plate height is right when the "
  2466. "paper is slightly gripped by the tip of the nozzle."
  2467. 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"
  2468. " è corretta quando la carta sfiora la punta dell'ugello."
  2469. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2470. msgctxt "@action:button"
  2471. msgid "Start Build Plate Leveling"
  2472. msgstr "Avvio livellamento del piano di stampa"
  2473. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2474. msgctxt "@action:button"
  2475. msgid "Move to Next Position"
  2476. msgstr "Spostamento alla posizione successiva"
  2477. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2478. msgctxt "@info"
  2479. msgid "Ultimaker Verified Plug-in"
  2480. msgstr "Plug-in verificato Ultimaker"
  2481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2482. msgctxt "@info"
  2483. msgid "Ultimaker Certified Material"
  2484. msgstr "Materiale certificato Ultimaker"
  2485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2486. msgctxt "@info"
  2487. msgid "Ultimaker Verified Package"
  2488. msgstr "Pacchetto verificato Ultimaker"
  2489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:84
  2490. msgctxt "@title"
  2491. msgid "Loading..."
  2492. msgstr "Caricamento in corso..."
  2493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:143
  2494. msgctxt "@button"
  2495. msgid "Plugins"
  2496. msgstr "Plugin"
  2497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:151
  2498. msgctxt "@button"
  2499. msgid "Materials"
  2500. msgstr "Materiali"
  2501. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:188
  2502. msgctxt "@info"
  2503. msgid "Search in the browser"
  2504. msgstr "Cerca nel browser"
  2505. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:266
  2506. msgctxt "@button"
  2507. msgid "In order to use the package you will need to restart Cura"
  2508. msgstr "Per utilizzare il pacchetto è necessario riavviare Cura"
  2509. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:274
  2510. msgctxt "@info:button, %1 is the application name"
  2511. msgid "Quit %1"
  2512. msgstr "Chiudere %1"
  2513. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:165
  2514. msgctxt "@label"
  2515. msgid "By"
  2516. msgstr "Per mezzo di"
  2517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2518. msgctxt "@button"
  2519. msgid "Enable"
  2520. msgstr "Abilita"
  2521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2522. msgctxt "@button"
  2523. msgid "Disable"
  2524. msgstr "Disabilita"
  2525. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:217
  2526. msgctxt "@button"
  2527. msgid "Downgrading..."
  2528. msgstr "Downgrade in corso..."
  2529. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:218
  2530. msgctxt "@button"
  2531. msgid "Downgrade"
  2532. msgstr "Downgrade"
  2533. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:222
  2534. msgctxt "@button"
  2535. msgid "Installing..."
  2536. msgstr "Installazione in corso..."
  2537. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:223
  2538. msgctxt "@button"
  2539. msgid "Install"
  2540. msgstr "Installazione"
  2541. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:227
  2542. msgctxt "@button"
  2543. msgid "Uninstall"
  2544. msgstr "Disinstalla"
  2545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2546. msgctxt "@button"
  2547. msgid "Updating..."
  2548. msgstr "Aggiornamento in corso..."
  2549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2550. msgctxt "@button"
  2551. msgid "Update"
  2552. msgstr "Aggiorna"
  2553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2554. msgctxt "@header"
  2555. msgid "Install Plugins"
  2556. msgstr "Installa plugin"
  2557. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2558. msgctxt "@text"
  2559. msgid ""
  2560. "Streamline your workflow and customize your Ultimaker Cura experience with "
  2561. "plugins contributed by our amazing community of users."
  2562. msgstr "Semplifica il flusso di lavoro e personalizza l'esperienza Ultimaker Cura experience con plugin forniti dalla nostra eccezionale comunità di utenti."
  2563. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2564. msgctxt "@info:tooltip"
  2565. msgid "Manage packages"
  2566. msgstr "Gestisci pacchetti"
  2567. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:85
  2568. msgctxt "@header"
  2569. msgid "Description"
  2570. msgstr "Descrizione"
  2571. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:117
  2572. msgctxt "@header"
  2573. msgid "Compatible printers"
  2574. msgstr "Stampanti compatibili"
  2575. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:143
  2576. msgctxt "@info"
  2577. msgid "No compatibility information"
  2578. msgstr "Nessuna informazione sulla compatibilità"
  2579. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:162
  2580. msgctxt "@header"
  2581. msgid "Compatible support materials"
  2582. msgstr "Materiali di supporto compatibili"
  2583. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:188
  2584. msgctxt "@info No materials"
  2585. msgid "None"
  2586. msgstr "Nessuno"
  2587. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:206
  2588. msgctxt "@header"
  2589. msgid "Compatible with Material Station"
  2590. msgstr "Compatibile con Material Station"
  2591. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2592. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2593. msgctxt "@info"
  2594. msgid "Yes"
  2595. msgstr "Sì"
  2596. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2597. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2598. msgctxt "@info"
  2599. msgid "No"
  2600. msgstr "No"
  2601. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:234
  2602. msgctxt "@header"
  2603. msgid "Optimized for Air Manager"
  2604. msgstr "Ottimizzato per Air Manager"
  2605. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2606. msgctxt "@button"
  2607. msgid "Visit plug-in website"
  2608. msgstr "Visita il sito web del plug-in"
  2609. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2610. msgctxt "@button"
  2611. msgid "Website"
  2612. msgstr "Sito web"
  2613. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:269
  2614. msgctxt "@button"
  2615. msgid "Buy spool"
  2616. msgstr "Acquista bobina"
  2617. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:278
  2618. msgctxt "@button"
  2619. msgid "Safety datasheet"
  2620. msgstr "Scheda tecnica sulla sicurezza"
  2621. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:287
  2622. msgctxt "@button"
  2623. msgid "Technical datasheet"
  2624. msgstr "Scheda tecnica"
  2625. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2626. msgctxt "@header"
  2627. msgid "Package details"
  2628. msgstr "Dettagli pacchetto"
  2629. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2630. msgctxt "@button:tooltip"
  2631. msgid "Back"
  2632. msgstr "Indietro"
  2633. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:16
  2634. msgctxt "@button"
  2635. msgid "Plugin license agreement"
  2636. msgstr "Accordo di licenza plugin"
  2637. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:48
  2638. msgctxt "@text"
  2639. msgid "Please read and agree with the plugin licence."
  2640. msgstr "Leggi e accetta la licenza del plugin."
  2641. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:74
  2642. msgctxt "@button"
  2643. msgid "Accept"
  2644. msgstr "Accetto"
  2645. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:83
  2646. msgctxt "@button"
  2647. msgid "Decline"
  2648. msgstr "Non accetto"
  2649. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2650. msgctxt "@button"
  2651. msgid "Failed to load packages:"
  2652. msgstr "Impossibile caricare pacchetti:"
  2653. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2654. msgctxt "@button"
  2655. msgid "Retry?"
  2656. msgstr "Riprovare?"
  2657. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:180
  2658. msgctxt "@button"
  2659. msgid "Loading"
  2660. msgstr "Caricamento in corso"
  2661. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2662. msgctxt "@message"
  2663. msgid "No more results to load"
  2664. msgstr "Nessun altro risultato da caricare"
  2665. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2666. msgctxt "@message"
  2667. msgid "No results found with current filter"
  2668. msgstr "Nessun risultato trovato con il filtro corrente"
  2669. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:239
  2670. msgctxt "@button"
  2671. msgid "Load more"
  2672. msgstr "Carica altro"
  2673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2674. msgctxt "@header"
  2675. msgid "Manage packages"
  2676. msgstr "Gestisci pacchetti"
  2677. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2678. msgctxt "@text"
  2679. msgid ""
  2680. "Manage your Ultimaker Cura plugins and material profiles here. Make sure to "
  2681. "keep your plugins up to date and backup your setup regularly."
  2682. msgstr "Gestisci i plugin Ultimaker Cura e i profili del materiale qui. Accertarsi di mantenere i plugin aggiornati e di eseguire regolarmente il backup dell'impostazione."
  2683. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2684. msgctxt "@header"
  2685. msgid "Install Materials"
  2686. msgstr "Installa materiali"
  2687. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2688. msgctxt "@text"
  2689. msgid ""
  2690. "Select and install material profiles optimised for your Ultimaker 3D "
  2691. "printers."
  2692. msgstr "Selezionare e installare i profili dei materiali ottimizzati per le stampanti 3D Ultimaker."
  2693. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2694. msgctxt "@title:tab"
  2695. msgid "Printer"
  2696. msgstr "Stampante"
  2697. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2698. msgctxt "@title:label"
  2699. msgid "Nozzle Settings"
  2700. msgstr "Impostazioni ugello"
  2701. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2702. msgctxt "@label"
  2703. msgid "Nozzle size"
  2704. msgstr "Dimensione ugello"
  2705. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2707. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2709. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2711. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2713. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2715. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2717. msgctxt "@label"
  2718. msgid "mm"
  2719. msgstr "mm"
  2720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2721. msgctxt "@label"
  2722. msgid "Compatible material diameter"
  2723. msgstr "Diametro del materiale compatibile"
  2724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2725. msgctxt "@label"
  2726. msgid "Nozzle offset X"
  2727. msgstr "Scostamento X ugello"
  2728. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2729. msgctxt "@label"
  2730. msgid "Nozzle offset Y"
  2731. msgstr "Scostamento Y ugello"
  2732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2733. msgctxt "@label"
  2734. msgid "Cooling Fan Number"
  2735. msgstr "Numero ventola di raffreddamento"
  2736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2737. msgctxt "@title:label"
  2738. msgid "Extruder Start G-code"
  2739. msgstr "Codice G avvio estrusore"
  2740. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2741. msgctxt "@title:label"
  2742. msgid "Extruder End G-code"
  2743. msgstr "Codice G fine estrusore"
  2744. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2745. msgctxt "@title:label"
  2746. msgid "Printer Settings"
  2747. msgstr "Impostazioni della stampante"
  2748. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2749. msgctxt "@label"
  2750. msgid "X (Width)"
  2751. msgstr "X (Larghezza)"
  2752. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2753. msgctxt "@label"
  2754. msgid "Y (Depth)"
  2755. msgstr "Y (Profondità)"
  2756. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2757. msgctxt "@label"
  2758. msgid "Z (Height)"
  2759. msgstr "Z (Altezza)"
  2760. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2761. msgctxt "@label"
  2762. msgid "Build plate shape"
  2763. msgstr "Forma del piano di stampa"
  2764. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2765. msgctxt "@label"
  2766. msgid "Origin at center"
  2767. msgstr "Origine al centro"
  2768. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2769. msgctxt "@label"
  2770. msgid "Heated bed"
  2771. msgstr "Piano riscaldato"
  2772. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2773. msgctxt "@label"
  2774. msgid "Heated build volume"
  2775. msgstr "Volume di stampa riscaldato"
  2776. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2777. msgctxt "@label"
  2778. msgid "G-code flavor"
  2779. msgstr "Versione codice G"
  2780. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2781. msgctxt "@title:label"
  2782. msgid "Printhead Settings"
  2783. msgstr "Impostazioni della testina di stampa"
  2784. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2785. msgctxt "@label"
  2786. msgid "X min"
  2787. msgstr "X min"
  2788. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2789. msgctxt "@label"
  2790. msgid "Y min"
  2791. msgstr "Y min"
  2792. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2793. msgctxt "@label"
  2794. msgid "X max"
  2795. msgstr "X max"
  2796. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2797. msgctxt "@label"
  2798. msgid "Y max"
  2799. msgstr "Y max"
  2800. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2801. msgctxt "@label"
  2802. msgid "Gantry Height"
  2803. msgstr "Altezza gantry"
  2804. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2805. msgctxt "@label"
  2806. msgid "Number of Extruders"
  2807. msgstr "Numero di estrusori"
  2808. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2809. msgctxt "@label"
  2810. msgid "Apply Extruder offsets to GCode"
  2811. msgstr "Applica offset estrusore a gcode"
  2812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2813. msgctxt "@title:label"
  2814. msgid "Start G-code"
  2815. msgstr "Codice G avvio"
  2816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2817. msgctxt "@title:label"
  2818. msgid "End G-code"
  2819. msgstr "Codice G fine"
  2820. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2821. msgctxt "@label:button"
  2822. msgid "My printers"
  2823. msgstr "Le mie stampanti"
  2824. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2825. msgctxt "@tooltip:button"
  2826. msgid "Monitor printers in Ultimaker Digital Factory."
  2827. msgstr "Monitora le stampanti in Ultimaker Digital Factory."
  2828. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2829. msgctxt "@tooltip:button"
  2830. msgid "Create print projects in Digital Library."
  2831. msgstr "Crea progetti di stampa in Digital Library."
  2832. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2833. msgctxt "@label:button"
  2834. msgid "Print jobs"
  2835. msgstr "Processi di stampa"
  2836. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2837. msgctxt "@tooltip:button"
  2838. msgid "Monitor print jobs and reprint from your print history."
  2839. msgstr "Monitora i processi di stampa dalla cronologia di stampa."
  2840. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2841. msgctxt "@tooltip:button"
  2842. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2843. msgstr "Estendi Ultimaker Cura con plugin e profili del materiale."
  2844. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2845. msgctxt "@tooltip:button"
  2846. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2847. msgstr "Diventa un esperto di stampa 3D con e-learning Ultimaker."
  2848. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2849. msgctxt "@label:button"
  2850. msgid "Ultimaker support"
  2851. msgstr "Supporto Ultimaker"
  2852. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  2853. msgctxt "@tooltip:button"
  2854. msgid "Learn how to get started with Ultimaker Cura."
  2855. msgstr "Scopri come iniziare a utilizzare Ultimaker Cura."
  2856. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  2857. msgctxt "@label:button"
  2858. msgid "Ask a question"
  2859. msgstr "Fai una domanda"
  2860. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  2861. msgctxt "@tooltip:button"
  2862. msgid "Consult the Ultimaker Community."
  2863. msgstr "Consulta la community di Ultimaker."
  2864. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  2865. msgctxt "@label:button"
  2866. msgid "Report a bug"
  2867. msgstr "Segnala un errore"
  2868. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  2869. msgctxt "@tooltip:button"
  2870. msgid "Let developers know that something is going wrong."
  2871. msgstr "Informa gli sviluppatori che si è verificato un errore."
  2872. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  2873. msgctxt "@tooltip:button"
  2874. msgid "Visit the Ultimaker website."
  2875. msgstr "Visita il sito Web Ultimaker."
  2876. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ExtruderButton.qml:16
  2877. msgctxt "@label %1 is filled in with the name of an extruder"
  2878. msgid "Print Selected Model with %1"
  2879. msgid_plural "Print Selected Models with %1"
  2880. msgstr[0] "Stampa modello selezionato con %1"
  2881. msgstr[1] "Stampa modelli selezionati con %1"
  2882. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  2883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2884. msgctxt "@title:menu menubar:toplevel"
  2885. msgid "&Settings"
  2886. msgstr "&Impostazioni"
  2887. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2888. msgctxt "@title:window"
  2889. msgid "New project"
  2890. msgstr "Nuovo progetto"
  2891. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2892. msgctxt "@info:question"
  2893. msgid ""
  2894. "Are you sure you want to start a new project? This will clear the build "
  2895. "plate and any unsaved settings."
  2896. msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate."
  2897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2898. msgctxt "@action:button"
  2899. msgid "Marketplace"
  2900. msgstr "Mercato"
  2901. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2902. msgctxt "@label"
  2903. msgid "Build plate"
  2904. msgstr "Piano di stampa"
  2905. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2906. msgctxt "@tooltip"
  2907. msgid ""
  2908. "The target temperature of the heated bed. The bed will heat up or cool down "
  2909. "towards this temperature. If this is 0, the bed heating is turned off."
  2910. msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato."
  2911. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  2912. msgctxt "@tooltip"
  2913. msgid "The current temperature of the heated bed."
  2914. msgstr "La temperatura corrente del piano riscaldato."
  2915. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  2916. msgctxt "@tooltip of temperature input"
  2917. msgid "The temperature to pre-heat the bed to."
  2918. msgstr "La temperatura di preriscaldo del piano."
  2919. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  2920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  2921. msgctxt "@button Cancel pre-heating"
  2922. msgid "Cancel"
  2923. msgstr "Annulla"
  2924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  2925. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  2926. msgctxt "@button"
  2927. msgid "Pre-heat"
  2928. msgstr "Pre-riscaldo"
  2929. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  2930. msgctxt "@tooltip of pre-heat"
  2931. msgid ""
  2932. "Heat the bed in advance before printing. You can continue adjusting your "
  2933. "print while it is heating, and you won't have to wait for the bed to heat up "
  2934. "when you're ready to print."
  2935. msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento"
  2936. " del piano quando si è pronti per la stampa."
  2937. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:56
  2938. msgctxt "@info:status"
  2939. msgid "The printer is not connected."
  2940. msgstr "La stampante non è collegata."
  2941. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  2942. msgctxt "@label"
  2943. msgid "Printer control"
  2944. msgstr "Comando stampante"
  2945. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  2946. msgctxt "@label"
  2947. msgid "Jog Position"
  2948. msgstr "Posizione Jog"
  2949. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  2950. msgctxt "@label"
  2951. msgid "X/Y"
  2952. msgstr "X/Y"
  2953. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2954. msgctxt "@label"
  2955. msgid "Z"
  2956. msgstr "Z"
  2957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  2958. msgctxt "@label"
  2959. msgid "Jog Distance"
  2960. msgstr "Distanza Jog"
  2961. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  2962. msgctxt "@label"
  2963. msgid "Send G-code"
  2964. msgstr "Invia codice G"
  2965. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  2966. msgctxt "@tooltip of G-code command input"
  2967. msgid ""
  2968. "Send a custom G-code command to the connected printer. Press 'enter' to send "
  2969. "the command."
  2970. msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando."
  2971. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  2972. msgctxt "@label"
  2973. msgid "Extruder"
  2974. msgstr "Estrusore"
  2975. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  2976. msgctxt "@tooltip"
  2977. msgid ""
  2978. "The target temperature of the hotend. The hotend will heat up or cool down "
  2979. "towards this temperature. If this is 0, the hotend heating is turned off."
  2980. msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità"
  2981. " riscaldata verrà spenta."
  2982. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  2983. msgctxt "@tooltip"
  2984. msgid "The current temperature of this hotend."
  2985. msgstr "La temperatura corrente di questa estremità calda."
  2986. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  2987. msgctxt "@tooltip of temperature input"
  2988. msgid "The temperature to pre-heat the hotend to."
  2989. msgstr "La temperatura di preriscaldo dell’estremità calda."
  2990. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  2991. msgctxt "@tooltip of pre-heat"
  2992. msgid ""
  2993. "Heat the hotend in advance before printing. You can continue adjusting your "
  2994. "print while it is heating, and you won't have to wait for the hotend to heat "
  2995. "up when you're ready to print."
  2996. msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento"
  2997. " dell’estremità calda quando si è pronti per la stampa."
  2998. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  2999. msgctxt "@tooltip"
  3000. msgid "The colour of the material in this extruder."
  3001. msgstr "Il colore del materiale di questo estrusore."
  3002. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  3003. msgctxt "@tooltip"
  3004. msgid "The material in this extruder."
  3005. msgstr "Il materiale di questo estrusore."
  3006. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  3007. msgctxt "@tooltip"
  3008. msgid "The nozzle inserted in this extruder."
  3009. msgstr "L’ugello inserito in questo estrusore."
  3010. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3011. msgctxt "@title:window"
  3012. msgid "Open project file"
  3013. msgstr "Apri file progetto"
  3014. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83
  3015. msgctxt "@text:window"
  3016. msgid ""
  3017. "This is a Cura project file. Would you like to open it as a project or "
  3018. "import the models from it?"
  3019. msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?"
  3020. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3021. msgctxt "@text:window"
  3022. msgid "Remember my choice"
  3023. msgstr "Ricorda la scelta"
  3024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3025. msgctxt "@action:button"
  3026. msgid "Open as project"
  3027. msgstr "Apri come progetto"
  3028. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3029. msgctxt "@action:button"
  3030. msgid "Import models"
  3031. msgstr "Importa i modelli"
  3032. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  3033. msgctxt "@title:window"
  3034. msgid "Save Project"
  3035. msgstr "Salva progetto"
  3036. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:168
  3037. msgctxt "@action:label"
  3038. msgid "Extruder %1"
  3039. msgstr "Estrusore %1"
  3040. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:184
  3041. msgctxt "@action:label"
  3042. msgid "%1 & material"
  3043. msgstr "%1 & materiale"
  3044. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:186
  3045. msgctxt "@action:label"
  3046. msgid "Material"
  3047. msgstr "Materiale"
  3048. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:275
  3049. msgctxt "@action:label"
  3050. msgid "Don't show project summary on save again"
  3051. msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva"
  3052. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:289
  3053. msgctxt "@action:button"
  3054. msgid "Save"
  3055. msgstr "Salva"
  3056. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3057. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:637
  3058. msgctxt "@title:window"
  3059. msgid "Open file(s)"
  3060. msgstr "Apri file"
  3061. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3062. msgctxt "@text:window"
  3063. msgid ""
  3064. "We have found one or more project file(s) within the files you have "
  3065. "selected. You can open only one project file at a time. We suggest to only "
  3066. "import models from those files. Would you like to proceed?"
  3067. 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"
  3068. " i modelli solo da tali file. Vuoi procedere?"
  3069. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3070. msgctxt "@action:button"
  3071. msgid "Import all as models"
  3072. msgstr "Importa tutto come modelli"
  3073. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3074. msgctxt "@title:window The argument is the application name."
  3075. msgid "About %1"
  3076. msgstr "Informazioni su %1"
  3077. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3078. msgctxt "@label"
  3079. msgid "version: %1"
  3080. msgstr "versione: %1"
  3081. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3082. msgctxt "@label"
  3083. msgid "End-to-end solution for fused filament 3D printing."
  3084. msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso."
  3085. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3086. msgctxt "@info:credit"
  3087. msgid ""
  3088. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3089. "Cura proudly uses the following open source projects:"
  3090. msgstr "Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\nCura è orgogliosa di utilizzare i seguenti progetti open source:"
  3091. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  3092. msgctxt "@label"
  3093. msgid "Graphical user interface"
  3094. msgstr "Interfaccia grafica utente"
  3095. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3096. msgctxt "@label"
  3097. msgid "Application framework"
  3098. msgstr "Struttura applicazione"
  3099. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3100. msgctxt "@label"
  3101. msgid "G-code generator"
  3102. msgstr "Generatore codice G"
  3103. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3104. msgctxt "@label"
  3105. msgid "Interprocess communication library"
  3106. msgstr "Libreria di comunicazione intra-processo"
  3107. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  3108. msgctxt "@label"
  3109. msgid "Programming language"
  3110. msgstr "Lingua di programmazione"
  3111. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3112. msgctxt "@label"
  3113. msgid "GUI framework"
  3114. msgstr "Struttura GUI"
  3115. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3116. msgctxt "@label"
  3117. msgid "GUI framework bindings"
  3118. msgstr "Vincoli struttura GUI"
  3119. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3120. msgctxt "@label"
  3121. msgid "C/C++ Binding library"
  3122. msgstr "Libreria vincoli C/C++"
  3123. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3124. msgctxt "@label"
  3125. msgid "Data interchange format"
  3126. msgstr "Formato scambio dati"
  3127. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3128. msgctxt "@label"
  3129. msgid "Support library for scientific computing"
  3130. msgstr "Libreria di supporto per calcolo scientifico"
  3131. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3132. msgctxt "@label"
  3133. msgid "Support library for faster math"
  3134. msgstr "Libreria di supporto per calcolo rapido"
  3135. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3136. msgctxt "@label"
  3137. msgid "Support library for handling STL files"
  3138. msgstr "Libreria di supporto per gestione file STL"
  3139. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3140. msgctxt "@label"
  3141. msgid "Support library for handling triangular meshes"
  3142. msgstr "Libreria di supporto per gestione maglie triangolari"
  3143. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3144. msgctxt "@label"
  3145. msgid "Support library for handling 3MF files"
  3146. msgstr "Libreria di supporto per gestione file 3MF"
  3147. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3148. msgctxt "@label"
  3149. msgid "Support library for file metadata and streaming"
  3150. msgstr "Libreria di supporto per metadati file e streaming"
  3151. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3152. msgctxt "@label"
  3153. msgid "Serial communication library"
  3154. msgstr "Libreria di comunicazione seriale"
  3155. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3156. msgctxt "@label"
  3157. msgid "ZeroConf discovery library"
  3158. msgstr "Libreria scoperta ZeroConf"
  3159. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3160. msgctxt "@label"
  3161. msgid "Polygon clipping library"
  3162. msgstr "Libreria ritaglio poligono"
  3163. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3164. msgctxt "@label"
  3165. msgid "Python bindings for Clipper"
  3166. msgstr "Vincoli Python per Clipper"
  3167. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3168. msgctxt "@Label"
  3169. msgid "Static type checker for Python"
  3170. msgstr "Controllo di tipo statico per Python"
  3171. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3172. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3173. msgctxt "@Label"
  3174. msgid "Root Certificates for validating SSL trustworthiness"
  3175. msgstr "Certificati di origine per la convalida dell'affidabilità SSL"
  3176. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3177. msgctxt "@Label"
  3178. msgid "Python Error tracking library"
  3179. msgstr "Libreria per la traccia degli errori Python"
  3180. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3181. msgctxt "@label"
  3182. msgid "Polygon packing library, developed by Prusa Research"
  3183. msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research"
  3184. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3185. msgctxt "@label"
  3186. msgid "Python bindings for libnest2d"
  3187. msgstr "Vincoli Python per libnest2d"
  3188. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3189. msgctxt "@label"
  3190. msgid "Support library for system keyring access"
  3191. msgstr "Libreria di supporto per accesso a keyring sistema"
  3192. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3193. msgctxt "@label"
  3194. msgid "Python extensions for Microsoft Windows"
  3195. msgstr "Estensioni Python per Microsoft Windows"
  3196. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3197. msgctxt "@label"
  3198. msgid "Font"
  3199. msgstr "Font"
  3200. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3201. msgctxt "@label"
  3202. msgid "SVG icons"
  3203. msgstr "Icone SVG"
  3204. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3205. msgctxt "@label"
  3206. msgid "Linux cross-distribution application deployment"
  3207. msgstr "Apertura applicazione distribuzione incrociata Linux"
  3208. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:14
  3209. msgctxt "@title:window"
  3210. msgid "Discard or Keep changes"
  3211. msgstr "Elimina o mantieni modifiche"
  3212. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:50
  3213. msgctxt "@text:window, %1 is a profile name"
  3214. msgid ""
  3215. "You have customized some profile settings. Would you like to Keep these "
  3216. "changed settings after switching profiles? Alternatively, you can discard "
  3217. "the changes to load the defaults from '%1'."
  3218. msgstr "Alcune impostazioni di profilo sono state personalizzate.\nMantenere queste impostazioni modificate dopo il cambio dei profili?\nIn alternativa, è possibile"
  3219. " eliminare le modifiche per caricare i valori predefiniti da '%1'."
  3220. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:76
  3221. msgctxt "@title:column"
  3222. msgid "Profile settings"
  3223. msgstr "Impostazioni profilo"
  3224. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:78
  3225. msgctxt "@title:column"
  3226. msgid "Current changes"
  3227. msgstr "Modifiche correnti"
  3228. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:107
  3229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:798
  3230. msgctxt "@option:discardOrKeep"
  3231. msgid "Always ask me this"
  3232. msgstr "Chiedi sempre"
  3233. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:108
  3234. msgctxt "@option:discardOrKeep"
  3235. msgid "Discard and never ask again"
  3236. msgstr "Elimina e non chiedere nuovamente"
  3237. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  3238. msgctxt "@option:discardOrKeep"
  3239. msgid "Keep and never ask again"
  3240. msgstr "Mantieni e non chiedere nuovamente"
  3241. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:139
  3242. msgctxt "@action:button"
  3243. msgid "Discard changes"
  3244. msgstr "Elimina modifiche"
  3245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:145
  3246. msgctxt "@action:button"
  3247. msgid "Keep changes"
  3248. msgstr "Mantieni modifiche"
  3249. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Widgets/ComboBox.qml:18
  3250. msgctxt "@label"
  3251. msgid "No items to select from"
  3252. msgstr "Nessun elemento da selezionare da"
  3253. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3254. msgctxt "@title:menu menubar:file"
  3255. msgid "Open File(s)..."
  3256. msgstr "Apri file..."
  3257. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3258. msgctxt "@title:menu menubar:file"
  3259. msgid "Open &Recent"
  3260. msgstr "Ap&ri recenti"
  3261. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3262. msgctxt "@action:inmenu"
  3263. msgid "Visible Settings"
  3264. msgstr "Impostazioni visibili"
  3265. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3266. msgctxt "@action:inmenu"
  3267. msgid "Collapse All Categories"
  3268. msgstr "Comprimi tutte le categorie"
  3269. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3270. msgctxt "@action:inmenu"
  3271. msgid "Manage Setting Visibility..."
  3272. msgstr "Gestisci Impostazione visibilità..."
  3273. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3274. msgctxt "@title:menu"
  3275. msgid "&Material"
  3276. msgstr "Ma&teriale"
  3277. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3278. msgctxt "@action:inmenu"
  3279. msgid "Set as Active Extruder"
  3280. msgstr "Imposta come estrusore attivo"
  3281. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3282. msgctxt "@action:inmenu"
  3283. msgid "Enable Extruder"
  3284. msgstr "Abilita estrusore"
  3285. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3286. msgctxt "@action:inmenu"
  3287. msgid "Disable Extruder"
  3288. msgstr "Disabilita estrusore"
  3289. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3290. msgctxt "@label:category menu label"
  3291. msgid "Material"
  3292. msgstr "Materiale"
  3293. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:53
  3294. msgctxt "@label:category menu label"
  3295. msgid "Favorites"
  3296. msgstr "Preferiti"
  3297. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:78
  3298. msgctxt "@label:category menu label"
  3299. msgid "Generic"
  3300. msgstr "Generale"
  3301. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/HelpMenu.qml:14
  3302. msgctxt "@title:menu menubar:toplevel"
  3303. msgid "&Help"
  3304. msgstr "&Help"
  3305. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:13
  3306. msgctxt "@title:menu menubar:toplevel"
  3307. msgid "&File"
  3308. msgstr "&File"
  3309. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:44
  3310. msgctxt "@title:menu menubar:file"
  3311. msgid "&Save Project..."
  3312. msgstr "&Salva progetto..."
  3313. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:77
  3314. msgctxt "@title:menu menubar:file"
  3315. msgid "&Export..."
  3316. msgstr "&Esporta..."
  3317. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:88
  3318. msgctxt "@action:inmenu menubar:file"
  3319. msgid "Export Selection..."
  3320. msgstr "Esporta selezione..."
  3321. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  3322. msgctxt "@title:menu menubar:toplevel"
  3323. msgid "P&references"
  3324. msgstr "P&referenze"
  3325. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/EditMenu.qml:12
  3326. msgctxt "@title:menu menubar:toplevel"
  3327. msgid "&Edit"
  3328. msgstr "&Modifica"
  3329. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:13
  3330. msgctxt "@title:menu menubar:settings"
  3331. msgid "&Printer"
  3332. msgstr "S&tampante"
  3333. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:17
  3334. msgctxt "@label:category menu label"
  3335. msgid "Network enabled printers"
  3336. msgstr "Stampanti abilitate per la rete"
  3337. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:50
  3338. msgctxt "@label:category menu label"
  3339. msgid "Local printers"
  3340. msgstr "Stampanti locali"
  3341. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  3342. msgctxt "@title:menu menubar:toplevel"
  3343. msgid "E&xtensions"
  3344. msgstr "Es&tensioni"
  3345. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3346. msgctxt "@header"
  3347. msgid "Configurations"
  3348. msgstr "Configurazioni"
  3349. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3350. msgctxt "@label"
  3351. msgid "Loading available configurations from the printer..."
  3352. msgstr "Caricamento in corso configurazioni disponibili dalla stampante..."
  3353. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3354. msgctxt "@label"
  3355. msgid ""
  3356. "The configurations are not available because the printer is disconnected."
  3357. msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata."
  3358. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3359. msgctxt "@label"
  3360. msgid ""
  3361. "This configuration is not available because %1 is not recognized. Please "
  3362. "visit %2 to download the correct material profile."
  3363. msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto."
  3364. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3365. msgctxt "@label"
  3366. msgid "Marketplace"
  3367. msgstr "Mercato"
  3368. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:101
  3369. msgctxt "@tooltip"
  3370. msgid ""
  3371. "The configuration of this extruder is not allowed, and prohibits slicing."
  3372. msgstr "La configurazione di questo estrusore non è consentita e proibisce il sezionamento."
  3373. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:105
  3374. msgctxt "@tooltip"
  3375. msgid "There are no profiles matching the configuration of this extruder."
  3376. msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore."
  3377. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:245
  3378. msgctxt "@label"
  3379. msgid "Select configuration"
  3380. msgstr "Seleziona configurazione"
  3381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:354
  3382. msgctxt "@label"
  3383. msgid "Configurations"
  3384. msgstr "Configurazioni"
  3385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  3386. msgctxt "@header"
  3387. msgid "Custom"
  3388. msgstr "Personalizzata"
  3389. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62
  3390. msgctxt "@label"
  3391. msgid "Printer"
  3392. msgstr "Stampante"
  3393. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:214
  3394. msgctxt "@label"
  3395. msgid "Enabled"
  3396. msgstr "Abilitato"
  3397. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:263
  3398. msgctxt "@label"
  3399. msgid "Material"
  3400. msgstr "Materiale"
  3401. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:391
  3402. msgctxt "@label"
  3403. msgid "Use glue for better adhesion with this material combination."
  3404. msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali."
  3405. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:29
  3406. msgctxt "@label"
  3407. msgid "Print Selected Model With:"
  3408. msgid_plural "Print Selected Models With:"
  3409. msgstr[0] "Stampa modello selezionato con:"
  3410. msgstr[1] "Stampa modelli selezionati con:"
  3411. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:92
  3412. msgctxt "@title:window"
  3413. msgid "Multiply Selected Model"
  3414. msgid_plural "Multiply Selected Models"
  3415. msgstr[0] "Moltiplica modello selezionato"
  3416. msgstr[1] "Moltiplica modelli selezionati"
  3417. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:123
  3418. msgctxt "@label"
  3419. msgid "Number of Copies"
  3420. msgstr "Numero di copie"
  3421. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3422. msgctxt "@title:menu menubar:file"
  3423. msgid "Save Project..."
  3424. msgstr "Salva progetto..."
  3425. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:13
  3426. msgctxt "@title:menu menubar:toplevel"
  3427. msgid "&View"
  3428. msgstr "&Visualizza"
  3429. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:17
  3430. msgctxt "@action:inmenu menubar:view"
  3431. msgid "&Camera position"
  3432. msgstr "&Posizione fotocamera"
  3433. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:30
  3434. msgctxt "@action:inmenu menubar:view"
  3435. msgid "Camera view"
  3436. msgstr "Visualizzazione fotocamera"
  3437. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:48
  3438. msgctxt "@action:inmenu menubar:view"
  3439. msgid "Perspective"
  3440. msgstr "Prospettiva"
  3441. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:59
  3442. msgctxt "@action:inmenu menubar:view"
  3443. msgid "Orthographic"
  3444. msgstr "Ortogonale"
  3445. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewsSelector.qml:50
  3446. msgctxt "@label"
  3447. msgid "View type"
  3448. msgstr "Visualizza tipo"
  3449. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:19
  3450. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3451. msgctxt "@label"
  3452. msgid "Sign in to the Ultimaker platform"
  3453. msgstr "Accedi alla piattaforma Ultimaker"
  3454. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:39
  3455. msgctxt "@text"
  3456. msgid ""
  3457. "- Add material profiles and plug-ins from the Marketplace\n"
  3458. "- Back-up and sync your material profiles and plug-ins\n"
  3459. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3460. msgstr "- Aggiungi profili materiale e plugin dal Marketplace\n- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n- Condividi idee e"
  3461. " ottieni supporto da più di 48.000 utenti nella community di Ultimaker"
  3462. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:58
  3463. msgctxt "@button"
  3464. msgid "Create a free Ultimaker account"
  3465. msgstr "Crea un account Ultimaker gratuito"
  3466. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/AccountWidget.qml:24
  3467. msgctxt "@action:button"
  3468. msgid "Sign in"
  3469. msgstr "Accedi"
  3470. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:77
  3471. msgctxt "@label The argument is a timestamp"
  3472. msgid "Last update: %1"
  3473. msgstr "Ultimo aggiornamento: %1"
  3474. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:104
  3475. msgctxt "@button"
  3476. msgid "Ultimaker Account"
  3477. msgstr "Account Ultimaker"
  3478. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:120
  3479. msgctxt "@button"
  3480. msgid "Sign Out"
  3481. msgstr "Esci"
  3482. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:28
  3483. msgctxt "@label"
  3484. msgid "Checking..."
  3485. msgstr "Verifica in corso..."
  3486. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:35
  3487. msgctxt "@label"
  3488. msgid "Account synced"
  3489. msgstr "Account sincronizzato"
  3490. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:42
  3491. msgctxt "@label"
  3492. msgid "Something went wrong..."
  3493. msgstr "Si è verificato un errore..."
  3494. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:95
  3495. msgctxt "@button"
  3496. msgid "Install pending updates"
  3497. msgstr "Installare gli aggiornamenti in attesa"
  3498. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:116
  3499. msgctxt "@button"
  3500. msgid "Check for account updates"
  3501. msgstr "Verificare gli aggiornamenti dell'account"
  3502. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3503. msgctxt "@label:PrintjobStatus"
  3504. msgid "Slicing..."
  3505. msgstr "Sezionamento in corso..."
  3506. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:81
  3507. msgctxt "@label:PrintjobStatus"
  3508. msgid "Unable to slice"
  3509. msgstr "Sezionamento impossibile"
  3510. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3511. msgctxt "@button"
  3512. msgid "Processing"
  3513. msgstr "Elaborazione in corso"
  3514. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3515. msgctxt "@button"
  3516. msgid "Slice"
  3517. msgstr "Sezionamento"
  3518. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  3519. msgctxt "@label"
  3520. msgid "Start the slicing process"
  3521. msgstr "Avvia il processo di sezionamento"
  3522. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:137
  3523. msgctxt "@button"
  3524. msgid "Cancel"
  3525. msgstr "Annulla"
  3526. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3527. msgctxt "@label"
  3528. msgid "Time estimation"
  3529. msgstr "Stima del tempo"
  3530. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3531. msgctxt "@label"
  3532. msgid "Material estimation"
  3533. msgstr "Stima del materiale"
  3534. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3535. msgctxt "@label m for meter"
  3536. msgid "%1m"
  3537. msgstr "%1m"
  3538. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3539. msgctxt "@label g for grams"
  3540. msgid "%1g"
  3541. msgstr "%1g"
  3542. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3543. msgctxt "@label"
  3544. msgid "No time estimation available"
  3545. msgstr "Nessuna stima di tempo disponibile"
  3546. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3547. msgctxt "@label"
  3548. msgid "No cost estimation available"
  3549. msgstr "Nessuna stima di costo disponibile"
  3550. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3551. msgctxt "@button"
  3552. msgid "Preview"
  3553. msgstr "Anteprima"
  3554. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:253
  3555. msgctxt "@label"
  3556. msgid "This package will be installed after restarting."
  3557. msgstr "Questo pacchetto sarà installato dopo il riavvio."
  3558. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:463
  3559. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3560. msgctxt "@title:tab"
  3561. msgid "General"
  3562. msgstr "Generale"
  3563. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:466
  3564. msgctxt "@title:tab"
  3565. msgid "Settings"
  3566. msgstr "Impostazioni"
  3567. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:468
  3568. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3569. msgctxt "@title:tab"
  3570. msgid "Printers"
  3571. msgstr "Stampanti"
  3572. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:470
  3573. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3574. msgctxt "@title:tab"
  3575. msgid "Materials"
  3576. msgstr "Materiali"
  3577. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:472
  3578. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:56
  3579. msgctxt "@title:tab"
  3580. msgid "Profiles"
  3581. msgstr "Profili"
  3582. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:589
  3583. msgctxt "@title:window %1 is the application name"
  3584. msgid "Closing %1"
  3585. msgstr "Chiusura di %1"
  3586. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:590
  3587. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:599
  3588. msgctxt "@label %1 is the application name"
  3589. msgid "Are you sure you want to exit %1?"
  3590. msgstr "Chiudere %1?"
  3591. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:747
  3592. msgctxt "@window:title"
  3593. msgid "Install Package"
  3594. msgstr "Installa il pacchetto"
  3595. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:754
  3596. msgctxt "@title:window"
  3597. msgid "Open File(s)"
  3598. msgstr "Apri file"
  3599. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:756
  3600. msgctxt "@text:window"
  3601. msgid ""
  3602. "We have found one or more G-Code files within the files you have selected. "
  3603. "You can only open one G-Code file at a time. If you want to open a G-Code "
  3604. "file, please just select only one."
  3605. 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"
  3606. " codice G, selezionane uno solo."
  3607. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:836
  3608. msgctxt "@title:window"
  3609. msgid "Add Printer"
  3610. msgstr "Aggiungi stampante"
  3611. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:844
  3612. msgctxt "@title:window"
  3613. msgid "What's New"
  3614. msgstr "Scopri le novità"
  3615. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3616. msgctxt "@label:Should be short"
  3617. msgid "On"
  3618. msgstr "Inserita"
  3619. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3620. msgctxt "@label:Should be short"
  3621. msgid "Off"
  3622. msgstr "Disinserita"
  3623. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3624. msgctxt "@label"
  3625. msgid "Experimental"
  3626. msgstr "Sperimentale"
  3627. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3628. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3629. msgctxt "@label"
  3630. msgid "Print settings"
  3631. msgstr "Impostazioni di stampa"
  3632. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3633. msgctxt "@label shown when we load a Gcode file"
  3634. msgid "Print setup disabled. G-code file can not be modified."
  3635. msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato."
  3636. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3637. msgctxt "@button"
  3638. msgid "Recommended"
  3639. msgstr "Consigliata"
  3640. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3641. msgctxt "@button"
  3642. msgid "Custom"
  3643. msgstr "Personalizzata"
  3644. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3645. msgctxt ""
  3646. "@label %1 is filled in with the type of a profile. %2 is filled with a list "
  3647. "of numbers (eg '1' or '1, 2')"
  3648. msgid ""
  3649. "There is no %1 profile for the configuration in extruder %2. The default "
  3650. "intent will be used instead"
  3651. msgid_plural ""
  3652. "There is no %1 profile for the configurations in extruders %2. The default "
  3653. "intent will be used instead"
  3654. msgstr[0] "Non esiste alcun profilo %1 per la configurazione nelle estrusore %2. In alternativa verrà utilizzato lo scopo predefinito"
  3655. msgstr[1] "Non esiste alcun profilo %1 per le configurazioni negli estrusori %2. In alternativa verrà utilizzato lo scopo predefinito"
  3656. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:195
  3657. msgctxt "@label"
  3658. msgid "Gradual infill"
  3659. msgstr "Riempimento graduale"
  3660. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:233
  3661. msgctxt "@label"
  3662. msgid ""
  3663. "Gradual infill will gradually increase the amount of infill towards the top."
  3664. msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto."
  3665. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28
  3666. msgctxt "@label"
  3667. msgid "Support"
  3668. msgstr "Supporto"
  3669. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69
  3670. msgctxt "@label"
  3671. msgid ""
  3672. "Generate structures to support parts of the model which have overhangs. "
  3673. "Without these structures, such parts would collapse during printing."
  3674. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  3675. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:50
  3676. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3677. msgctxt "@label"
  3678. msgid "Profiles"
  3679. msgstr "Profili"
  3680. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:80
  3681. msgctxt "@tooltip"
  3682. msgid ""
  3683. "You have modified some profile settings. If you want to change these go to "
  3684. "custom mode."
  3685. msgstr "Sono state modificate alcune impostazioni del profilo. Per modificarle, andare alla modalità personalizzata."
  3686. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  3687. msgctxt "@label"
  3688. msgid "Adhesion"
  3689. msgstr "Adesione"
  3690. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72
  3691. msgctxt "@label"
  3692. msgid ""
  3693. "Enable printing a brim or raft. This will add a flat area around or under "
  3694. "your object which is easy to cut off afterwards."
  3695. msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente."
  3696. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  3697. msgctxt "@label:header"
  3698. msgid "Custom profiles"
  3699. msgstr "Profili personalizzati"
  3700. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3701. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:147
  3702. msgctxt "@action:button"
  3703. msgid "Discard current changes"
  3704. msgstr "Elimina le modifiche correnti"
  3705. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  3706. msgctxt "@label"
  3707. msgid "Profile"
  3708. msgstr "Profilo"
  3709. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:157
  3710. msgctxt "@tooltip"
  3711. msgid ""
  3712. "Some setting/override values are different from the values stored in the "
  3713. "profile.\n"
  3714. "\n"
  3715. "Click to open the profile manager."
  3716. msgstr "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n\nFare clic per aprire la gestione profili."
  3717. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:37
  3718. msgctxt "@title:column"
  3719. msgid "Setting"
  3720. msgstr "Impostazione"
  3721. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:38
  3722. msgctxt "@title:column"
  3723. msgid "Profile"
  3724. msgstr "Profilo"
  3725. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:39
  3726. msgctxt "@title:column"
  3727. msgid "Current"
  3728. msgstr "Corrente"
  3729. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:40
  3730. msgctxt "@title:column Unit of measurement"
  3731. msgid "Unit"
  3732. msgstr "Unità"
  3733. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3734. msgctxt "@title:window"
  3735. msgid "Rename"
  3736. msgstr "Rinomina"
  3737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3738. msgctxt "@info"
  3739. msgid "Please provide a new name."
  3740. msgstr "Indicare un nuovo nome."
  3741. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3742. msgctxt "@item:tooltip"
  3743. msgid ""
  3744. "This setting has been hidden by the active machine and will not be visible."
  3745. msgstr "Questa impostazione è stata nascosta dalla macchina attiva e non sarà visibile."
  3746. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3747. msgctxt "@item:tooltip %1 is list of setting names"
  3748. msgid ""
  3749. "This setting has been hidden by the value of %1. Change the value of that "
  3750. "setting to make this setting visible."
  3751. msgid_plural ""
  3752. "This setting has been hidden by the values of %1. Change the values of those "
  3753. "settings to make this setting visible."
  3754. msgstr[0] "Questa impostazione è stata nascosta dal valore di %1. Modifica il valore di tale impostazione per rendere visibile l’impostazione."
  3755. msgstr[1] "Questa impostazione è stata nascosta dai valori di %1. Modifica i valori di tali impostazioni per rendere visibile questa impostazione."
  3756. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3757. msgctxt "@title:tab"
  3758. msgid "Setting Visibility"
  3759. msgstr "Impostazione visibilità"
  3760. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:22
  3761. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:131
  3762. msgctxt "@action:button"
  3763. msgid "Defaults"
  3764. msgstr "Valori predefiniti"
  3765. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:53
  3766. msgctxt "@label:textbox"
  3767. msgid "Check all"
  3768. msgstr "Controlla tutto"
  3769. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:49
  3770. msgctxt "@action:button"
  3771. msgid "Add New"
  3772. msgstr "Aggiungi nuovo"
  3773. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:135
  3774. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3775. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:293
  3776. msgctxt "@action:button"
  3777. msgid "Activate"
  3778. msgstr "Attiva"
  3779. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:147
  3780. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:330
  3781. msgctxt "@action:button"
  3782. msgid "Rename"
  3783. msgstr "Rinomina"
  3784. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3785. msgctxt "@title:window"
  3786. msgid "Confirm Diameter Change"
  3787. msgstr "Conferma modifica diametro"
  3788. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3789. msgctxt "@label (%1 is a number)"
  3790. msgid ""
  3791. "The new filament diameter is set to %1 mm, which is not compatible with the "
  3792. "current extruder. Do you wish to continue?"
  3793. msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?"
  3794. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3795. msgctxt "@label"
  3796. msgid "Display Name"
  3797. msgstr "Visualizza nome"
  3798. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3799. msgctxt "@label"
  3800. msgid "Brand"
  3801. msgstr "Marchio"
  3802. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3803. msgctxt "@label"
  3804. msgid "Material Type"
  3805. msgstr "Tipo di materiale"
  3806. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:209
  3807. msgctxt "@label"
  3808. msgid "Color"
  3809. msgstr "Colore"
  3810. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:261
  3811. msgctxt "@title"
  3812. msgid "Material color picker"
  3813. msgstr "Selettore colore materiale"
  3814. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:274
  3815. msgctxt "@label"
  3816. msgid "Properties"
  3817. msgstr "Proprietà"
  3818. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:285
  3819. msgctxt "@label"
  3820. msgid "Density"
  3821. msgstr "Densità"
  3822. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:318
  3823. msgctxt "@label"
  3824. msgid "Diameter"
  3825. msgstr "Diametro"
  3826. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:368
  3827. msgctxt "@label"
  3828. msgid "Filament Cost"
  3829. msgstr "Costo del filamento"
  3830. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:400
  3831. msgctxt "@label"
  3832. msgid "Filament weight"
  3833. msgstr "Peso del filamento"
  3834. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:432
  3835. msgctxt "@label"
  3836. msgid "Filament length"
  3837. msgstr "Lunghezza del filamento"
  3838. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:450
  3839. msgctxt "@label"
  3840. msgid "Cost per Meter"
  3841. msgstr "Costo al metro"
  3842. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:464
  3843. msgctxt "@label"
  3844. msgid "This material is linked to %1 and shares some of its properties."
  3845. msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà."
  3846. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:471
  3847. msgctxt "@label"
  3848. msgid "Unlink Material"
  3849. msgstr "Scollega materiale"
  3850. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:484
  3851. msgctxt "@label"
  3852. msgid "Description"
  3853. msgstr "Descrizione"
  3854. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:502
  3855. msgctxt "@label"
  3856. msgid "Adhesion Information"
  3857. msgstr "Informazioni sull’aderenza"
  3858. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:637
  3859. msgctxt "@title"
  3860. msgid "Information"
  3861. msgstr "Informazioni"
  3862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3863. msgctxt "@title:window"
  3864. msgid "Sync materials with printers"
  3865. msgstr "Sincronizza materiali con stampanti"
  3866. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:48
  3867. msgctxt "@title:header"
  3868. msgid "Sync materials with printers"
  3869. msgstr "Sincronizza materiali con stampanti"
  3870. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:54
  3871. msgctxt "@text"
  3872. msgid ""
  3873. "Following a few simple steps, you will be able to synchronize all your "
  3874. "material profiles with your printers."
  3875. msgstr "Seguendo alcuni semplici passaggi, sarà possibile sincronizzare tutti i profili del materiale con le stampanti."
  3876. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:76
  3877. msgctxt "@button"
  3878. msgid "Why do I need to sync material profiles?"
  3879. msgstr "Cosa occorre per sincronizzare i profili del materiale?"
  3880. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:85
  3881. msgctxt "@button"
  3882. msgid "Start"
  3883. msgstr "Avvio"
  3884. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:127
  3885. msgctxt "@title:header"
  3886. msgid "Sign in"
  3887. msgstr "Accedi"
  3888. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:133
  3889. msgctxt "@text"
  3890. msgid ""
  3891. "To automatically sync the material profiles with all your printers connected "
  3892. "to Digital Factory you need to be signed in in Cura."
  3893. msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura."
  3894. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:157
  3895. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446
  3896. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:587
  3897. msgctxt "@button"
  3898. msgid "Sync materials with USB"
  3899. msgstr "Sincronizza materiali con USB"
  3900. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:190
  3901. msgctxt "@title:header"
  3902. msgid "The following printers will receive the new material profiles:"
  3903. msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:"
  3904. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:197
  3905. msgctxt "@title:header"
  3906. msgid "Something went wrong when sending the materials to the printers."
  3907. msgstr "Si è verificato un errore durante l'invio di materiali alle stampanti."
  3908. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:204
  3909. msgctxt "@title:header"
  3910. msgid "Material profiles successfully synced with the following printers:"
  3911. msgstr "I profili del materiale sono stati sincronizzati correttamente con le stampanti seguenti:"
  3912. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242
  3913. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429
  3914. msgctxt "@button"
  3915. msgid "Troubleshooting"
  3916. msgstr "Ricerca e riparazione dei guasti"
  3917. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406
  3918. msgctxt "@text Asking the user whether printers are missing in a list."
  3919. msgid "Printers missing?"
  3920. msgstr "Mancano stampanti?"
  3921. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408
  3922. msgctxt "@text"
  3923. msgid ""
  3924. "Make sure all your printers are turned ON and connected to Digital Factory."
  3925. msgstr "Accertarsi che tutte le stampanti siano accese e collegate a Digital Factory."
  3926. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417
  3927. msgctxt "@button"
  3928. msgid "Refresh List"
  3929. msgstr "Aggiorna elenco"
  3930. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3931. msgctxt "@button"
  3932. msgid "Try again"
  3933. msgstr "Riprova"
  3934. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461
  3935. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3936. msgctxt "@button"
  3937. msgid "Done"
  3938. msgstr "Eseguito"
  3939. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463
  3940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:607
  3941. msgctxt "@button"
  3942. msgid "Sync"
  3943. msgstr "Sincronizza"
  3944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519
  3945. msgctxt "@button"
  3946. msgid "Syncing"
  3947. msgstr "Sincronizzazione"
  3948. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537
  3949. msgctxt "@title:header"
  3950. msgid "No printers found"
  3951. msgstr "Nessuna stampante trovata"
  3952. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558
  3953. msgctxt "@text"
  3954. msgid ""
  3955. "It seems like you don't have any compatible printers connected to Digital "
  3956. "Factory. Make sure your printer is connected and it's running the latest "
  3957. "firmware."
  3958. msgstr "Nessuna stampante compatibile collegata a Digital Factory. Accertarsi che la stampante sia collegata e che il firmware più recente sia in esecuzione."
  3959. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:570
  3960. msgctxt "@button"
  3961. msgid "Learn how to connect your printer to Digital Factory"
  3962. msgstr "Scopri come collegare la stampante a Digital Factory"
  3963. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:598
  3964. msgctxt "@button"
  3965. msgid "Refresh"
  3966. msgstr "Aggiorna"
  3967. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:627
  3968. msgctxt "@title:header"
  3969. msgid "Sync material profiles via USB"
  3970. msgstr "Sincronizza profili del materiale tramite USB"
  3971. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:633
  3972. msgctxt ""
  3973. "@text In the UI this is followed by a list of steps the user needs to take."
  3974. msgid ""
  3975. "Follow the following steps to load the new material profiles to your printer."
  3976. msgstr "Eseguire le operazioni descritte di seguito per caricare nuovi profili del materiale nella stampante."
  3977. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665
  3978. msgctxt "@text"
  3979. msgid "Click the export material archive button."
  3980. msgstr "Fare clic sul pulsante Esporta archivio materiali."
  3981. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:666
  3982. msgctxt "@text"
  3983. msgid "Save the .umm file on a USB stick."
  3984. msgstr "Salvare il file .umm su una chiavetta USB."
  3985. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:667
  3986. msgctxt "@text"
  3987. msgid ""
  3988. "Insert the USB stick into your printer and launch the procedure to load new "
  3989. "material profiles."
  3990. msgstr "Inserire la chiavetta USB nella stampante e avviare la procedura per caricare nuovi profili del materiale."
  3991. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:675
  3992. msgctxt "@button"
  3993. msgid "How to load new material profiles to my printer"
  3994. msgstr "Come caricare nuovi profili del materiale nella stampante"
  3995. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  3996. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3997. msgctxt "@button"
  3998. msgid "Back"
  3999. msgstr "Indietro"
  4000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  4001. msgctxt "@button"
  4002. msgid "Export material archive"
  4003. msgstr "Esporta archivio materiali"
  4004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:733
  4005. msgctxt "@title:window"
  4006. msgid "Export All Materials"
  4007. msgstr "Esporta tutti i materiali"
  4008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4009. msgctxt "@label"
  4010. msgid "Materials compatible with active printer:"
  4011. msgstr "Materiali compatibili con la stampante attiva:"
  4012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4013. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:93
  4014. msgctxt "@action:button"
  4015. msgid "Create new"
  4016. msgstr "Crea nuovo"
  4017. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4018. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  4019. msgctxt "@action:button"
  4020. msgid "Import"
  4021. msgstr "Importa"
  4022. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4023. msgctxt "@action:button"
  4024. msgid "Sync with Printers"
  4025. msgstr "Sincronizza con le stampanti"
  4026. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4027. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:310
  4028. msgctxt "@action:button"
  4029. msgid "Duplicate"
  4030. msgstr "Duplica"
  4031. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4032. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:341
  4033. msgctxt "@action:button"
  4034. msgid "Export"
  4035. msgstr "Esporta"
  4036. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4037. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:386
  4038. msgctxt "@title:window"
  4039. msgid "Confirm Remove"
  4040. msgstr "Conferma rimozione"
  4041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4042. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:387
  4043. msgctxt "@label (%1 is object name)"
  4044. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4045. msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!"
  4046. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4047. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4048. msgctxt "@title:window"
  4049. msgid "Import Material"
  4050. msgstr "Importa materiale"
  4051. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4052. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4053. msgid "Successfully imported material <filename>%1</filename>"
  4054. msgstr "Materiale importato correttamente <filename>%1</filename>"
  4055. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4056. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4057. msgid ""
  4058. "Could not import material <filename>%1</filename>: <message>%2</message>"
  4059. msgstr "Impossibile importare materiale <filename>{1}</filename>: <message>%2</message>"
  4060. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4061. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:265
  4062. msgctxt "@title:window"
  4063. msgid "Export Material"
  4064. msgstr "Esporta materiale"
  4065. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:270
  4066. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4067. msgid ""
  4068. "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4069. msgstr "Impossibile esportare il materiale su <filename>%1</filename>: <message>%2</message>"
  4070. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:273
  4071. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4072. msgid "Successfully exported material to <filename>%1</filename>"
  4073. msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  4074. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:58
  4075. msgctxt "@label"
  4076. msgid "Profiles compatible with active printer:"
  4077. msgstr "Profili compatibili con la stampante attiva:"
  4078. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:97
  4079. msgctxt "@action:tooltip"
  4080. msgid "Create new profile from current settings/overrides"
  4081. msgstr "Crea nuovo profilo dalle impostazioni/esclusioni correnti"
  4082. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:124
  4083. msgctxt "@action:label"
  4084. msgid "Some settings from current profile were overwritten."
  4085. msgstr "Alcune impostazioni del profilo corrente sono state sovrascritte."
  4086. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:139
  4087. msgctxt "@action:button"
  4088. msgid "Update profile."
  4089. msgstr "Aggiornare il profilo."
  4090. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  4091. msgctxt "@action:tooltip"
  4092. msgid "Update profile with current settings/overrides"
  4093. msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti"
  4094. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:157
  4095. msgctxt "@action:label"
  4096. msgid ""
  4097. "This profile uses the defaults specified by the printer, so it has no "
  4098. "settings/overrides in the list below."
  4099. msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito."
  4100. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:164
  4101. msgctxt "@action:label"
  4102. msgid "Your current settings match the selected profile."
  4103. msgstr "Le impostazioni correnti corrispondono al profilo selezionato."
  4104. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  4105. msgctxt "@title:tab"
  4106. msgid "Global Settings"
  4107. msgstr "Impostazioni globali"
  4108. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  4109. msgctxt "@title:window"
  4110. msgid "Create Profile"
  4111. msgstr "Crea profilo"
  4112. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:279
  4113. msgctxt "@info"
  4114. msgid "Please provide a name for this profile."
  4115. msgstr "Indica un nome per questo profilo."
  4116. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:351
  4117. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:362
  4118. msgctxt "@title:window"
  4119. msgid "Export Profile"
  4120. msgstr "Esporta profilo"
  4121. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:376
  4122. msgctxt "@title:window"
  4123. msgid "Duplicate Profile"
  4124. msgstr "Duplica profilo"
  4125. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  4126. msgctxt "@title:window"
  4127. msgid "Rename Profile"
  4128. msgstr "Rinomina profilo"
  4129. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:416
  4130. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:423
  4131. msgctxt "@title:window"
  4132. msgid "Import Profile"
  4133. msgstr "Importa profilo"
  4134. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:169
  4135. msgctxt "@label"
  4136. msgid "Interface"
  4137. msgstr "Interfaccia"
  4138. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:213
  4139. msgctxt "@heading"
  4140. msgid "-- incomplete --"
  4141. msgstr "-- incompleto --"
  4142. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:258
  4143. msgctxt "@label"
  4144. msgid "Currency:"
  4145. msgstr "Valuta:"
  4146. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:273
  4147. msgctxt ""
  4148. "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4149. msgid "Theme*:"
  4150. msgstr "Tema*:"
  4151. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:319
  4152. msgctxt "@info:tooltip"
  4153. msgid "Slice automatically when changing settings."
  4154. msgstr "Seziona automaticamente alla modifica delle impostazioni."
  4155. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:327
  4156. msgctxt "@option:check"
  4157. msgid "Slice automatically"
  4158. msgstr "Seziona automaticamente"
  4159. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:336
  4160. msgctxt "@label"
  4161. msgid ""
  4162. "*You will need to restart the application for these changes to have effect."
  4163. msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione."
  4164. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:351
  4165. msgctxt "@label"
  4166. msgid "Viewport behavior"
  4167. msgstr "Comportamento del riquadro di visualizzazione"
  4168. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:359
  4169. msgctxt "@info:tooltip"
  4170. msgid ""
  4171. "Highlight unsupported areas of the model in red. Without support these areas "
  4172. "will not print properly."
  4173. msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto."
  4174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:368
  4175. msgctxt "@option:check"
  4176. msgid "Display overhang"
  4177. msgstr "Visualizza sbalzo"
  4178. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:378
  4179. msgctxt "@info:tooltip"
  4180. msgid ""
  4181. "Highlight missing or extraneous surfaces of the model using warning signs. "
  4182. "The toolpaths will often be missing parts of the intended geometry."
  4183. msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della"
  4184. " geometria prevista."
  4185. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:387
  4186. msgctxt "@option:check"
  4187. msgid "Display model errors"
  4188. msgstr "Visualizzare gli errori del modello"
  4189. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:395
  4190. msgctxt "@info:tooltip"
  4191. msgid ""
  4192. "Moves the camera so the model is in the center of the view when a model is "
  4193. "selected"
  4194. msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  4195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:400
  4196. msgctxt "@action:button"
  4197. msgid "Center camera when item is selected"
  4198. msgstr "Centratura fotocamera alla selezione dell'elemento"
  4199. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:410
  4200. msgctxt "@info:tooltip"
  4201. msgid "Should the default zoom behavior of cura be inverted?"
  4202. msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?"
  4203. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:415
  4204. msgctxt "@action:button"
  4205. msgid "Invert the direction of camera zoom."
  4206. msgstr "Inverti la direzione dello zoom della fotocamera."
  4207. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4208. msgctxt "@info:tooltip"
  4209. msgid "Should zooming move in the direction of the mouse?"
  4210. msgstr "Lo zoom si muove nella direzione del mouse?"
  4211. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4212. msgctxt "@info:tooltip"
  4213. msgid ""
  4214. "Zooming towards the mouse is not supported in the orthographic perspective."
  4215. msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  4216. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:436
  4217. msgctxt "@action:button"
  4218. msgid "Zoom toward mouse direction"
  4219. msgstr "Zoom verso la direzione del mouse"
  4220. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:462
  4221. msgctxt "@info:tooltip"
  4222. msgid ""
  4223. "Should models on the platform be moved so that they no longer intersect?"
  4224. msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?"
  4225. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:467
  4226. msgctxt "@option:check"
  4227. msgid "Ensure models are kept apart"
  4228. msgstr "Assicurarsi che i modelli siano mantenuti separati"
  4229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:476
  4230. msgctxt "@info:tooltip"
  4231. msgid "Should models on the platform be moved down to touch the build plate?"
  4232. msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?"
  4233. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:481
  4234. msgctxt "@option:check"
  4235. msgid "Automatically drop models to the build plate"
  4236. msgstr "Rilascia automaticamente i modelli sul piano di stampa"
  4237. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:493
  4238. msgctxt "@info:tooltip"
  4239. msgid "Show caution message in g-code reader."
  4240. msgstr "Visualizza il messaggio di avvertimento sul lettore codice G."
  4241. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:502
  4242. msgctxt "@option:check"
  4243. msgid "Caution message in g-code reader"
  4244. msgstr "Messaggio di avvertimento sul lettore codice G"
  4245. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:510
  4246. msgctxt "@info:tooltip"
  4247. msgid "Should layer be forced into compatibility mode?"
  4248. msgstr "Lo strato deve essere forzato in modalità di compatibilità?"
  4249. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:515
  4250. msgctxt "@option:check"
  4251. msgid "Force layer view compatibility mode (restart required)"
  4252. msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)"
  4253. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:525
  4254. msgctxt "@info:tooltip"
  4255. msgid "Should Cura open at the location it was closed?"
  4256. msgstr "Aprire Cura nel punto in cui è stato chiuso?"
  4257. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:530
  4258. msgctxt "@option:check"
  4259. msgid "Restore window position on start"
  4260. msgstr "Ripristinare la posizione della finestra all'avvio"
  4261. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:540
  4262. msgctxt "@info:tooltip"
  4263. msgid "What type of camera rendering should be used?"
  4264. msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?"
  4265. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:547
  4266. msgctxt "@window:text"
  4267. msgid "Camera rendering:"
  4268. msgstr "Rendering fotocamera:"
  4269. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:554
  4270. msgid "Perspective"
  4271. msgstr "Prospettiva"
  4272. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:555
  4273. msgid "Orthographic"
  4274. msgstr "Ortogonale"
  4275. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:595
  4276. msgctxt "@label"
  4277. msgid "Opening and saving files"
  4278. msgstr "Apertura e salvataggio file"
  4279. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:602
  4280. msgctxt "@info:tooltip"
  4281. msgid ""
  4282. "Should opening files from the desktop or external applications open in the "
  4283. "same instance of Cura?"
  4284. msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?"
  4285. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:607
  4286. msgctxt "@option:check"
  4287. msgid "Use a single instance of Cura"
  4288. msgstr "Utilizzare una singola istanza di Cura"
  4289. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:618
  4290. msgctxt "@info:tooltip"
  4291. msgid ""
  4292. "Should the build plate be cleared before loading a new model in the single "
  4293. "instance of Cura?"
  4294. msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?"
  4295. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:624
  4296. msgctxt "@option:check"
  4297. msgid "Clear buildplate before loading model into the single instance"
  4298. msgstr "Pulire il piano di stampa prima di caricare il modello nella singola istanza"
  4299. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:634
  4300. msgctxt "@info:tooltip"
  4301. msgid "Should models be scaled to the build volume if they are too large?"
  4302. msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?"
  4303. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:639
  4304. msgctxt "@option:check"
  4305. msgid "Scale large models"
  4306. msgstr "Ridimensiona i modelli troppo grandi"
  4307. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:649
  4308. msgctxt "@info:tooltip"
  4309. msgid ""
  4310. "An model may appear extremely small if its unit is for example in meters "
  4311. "rather than millimeters. Should these models be scaled up?"
  4312. msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?"
  4313. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:654
  4314. msgctxt "@option:check"
  4315. msgid "Scale extremely small models"
  4316. msgstr "Ridimensiona i modelli eccessivamente piccoli"
  4317. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:664
  4318. msgctxt "@info:tooltip"
  4319. msgid "Should models be selected after they are loaded?"
  4320. msgstr "I modelli devono essere selezionati dopo essere stati caricati?"
  4321. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:669
  4322. msgctxt "@option:check"
  4323. msgid "Select models when loaded"
  4324. msgstr "Selezionare i modelli dopo il caricamento"
  4325. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:679
  4326. msgctxt "@info:tooltip"
  4327. msgid ""
  4328. "Should a prefix based on the printer name be added to the print job name "
  4329. "automatically?"
  4330. msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?"
  4331. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:684
  4332. msgctxt "@option:check"
  4333. msgid "Add machine prefix to job name"
  4334. msgstr "Aggiungi al nome del processo un prefisso macchina"
  4335. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:694
  4336. msgctxt "@info:tooltip"
  4337. msgid "Should a summary be shown when saving a project file?"
  4338. msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?"
  4339. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:698
  4340. msgctxt "@option:check"
  4341. msgid "Show summary dialog when saving project"
  4342. msgstr "Visualizza una finestra di riepilogo quando si salva un progetto"
  4343. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:708
  4344. msgctxt "@info:tooltip"
  4345. msgid "Default behavior when opening a project file"
  4346. msgstr "Comportamento predefinito all'apertura di un file progetto"
  4347. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:716
  4348. msgctxt "@window:text"
  4349. msgid "Default behavior when opening a project file: "
  4350. msgstr "Comportamento predefinito all'apertura di un file progetto: "
  4351. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:731
  4352. msgctxt "@option:openProject"
  4353. msgid "Always ask me this"
  4354. msgstr "Chiedi sempre"
  4355. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:732
  4356. msgctxt "@option:openProject"
  4357. msgid "Always open as a project"
  4358. msgstr "Apri sempre come progetto"
  4359. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:733
  4360. msgctxt "@option:openProject"
  4361. msgid "Always import models"
  4362. msgstr "Importa sempre i modelli"
  4363. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:770
  4364. msgctxt "@info:tooltip"
  4365. msgid ""
  4366. "When you have made changes to a profile and switched to a different one, a "
  4367. "dialog will be shown asking whether you want to keep your modifications or "
  4368. "not, or you can choose a default behaviour and never show that dialog again."
  4369. 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"
  4370. " scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo."
  4371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:784
  4372. msgctxt "@window:text"
  4373. msgid ""
  4374. "Default behavior for changed setting values when switching to a different "
  4375. "profile: "
  4376. msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: "
  4377. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:799
  4378. msgctxt "@option:discardOrKeep"
  4379. msgid "Always discard changed settings"
  4380. msgstr "Elimina sempre le impostazioni modificate"
  4381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:800
  4382. msgctxt "@option:discardOrKeep"
  4383. msgid "Always transfer changed settings to new profile"
  4384. msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo"
  4385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:834
  4386. msgctxt "@label"
  4387. msgid "Privacy"
  4388. msgstr "Privacy"
  4389. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:840
  4390. msgctxt "@info:tooltip"
  4391. msgid ""
  4392. "Should anonymous data about your print be sent to Ultimaker? Note, no "
  4393. "models, IP addresses or other personally identifiable information is sent or "
  4394. "stored."
  4395. msgstr "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali."
  4396. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:845
  4397. msgctxt "@option:check"
  4398. msgid "Send (anonymous) print information"
  4399. msgstr "Invia informazioni di stampa (anonime)"
  4400. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:875
  4401. msgctxt "@label"
  4402. msgid "Updates"
  4403. msgstr "Aggiornamenti"
  4404. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:882
  4405. msgctxt "@info:tooltip"
  4406. msgid "Should Cura check for updates when the program is started?"
  4407. msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?"
  4408. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:887
  4409. msgctxt "@option:check"
  4410. msgid "Check for updates on start"
  4411. msgstr "Controlla aggiornamenti all’avvio"
  4412. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:903
  4413. msgctxt "@info:tooltip"
  4414. msgid "When checking for updates, only check for stable releases."
  4415. msgstr "Quando si verifica la presenza di aggiornamenti, cercare solo versioni stabili."
  4416. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:909
  4417. msgctxt "@option:radio"
  4418. msgid "Stable releases only"
  4419. msgstr "Solo versioni stabili"
  4420. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:919
  4421. msgctxt "@info:tooltip"
  4422. msgid "When checking for updates, check for both stable and for beta releases."
  4423. msgstr "Quando si verifica la presenza di aggiornamenti, cercare versioni stabili e beta."
  4424. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:925
  4425. msgctxt "@option:radio"
  4426. msgid "Stable and Beta releases"
  4427. msgstr "Versioni stabili e beta"
  4428. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:935
  4429. msgctxt "@info:tooltip"
  4430. msgid ""
  4431. "Should an automatic check for new plugins be done every time Cura is "
  4432. "started? It is highly recommended that you do not disable this!"
  4433. msgstr "È necessario verificare automaticamente la presenza di nuovi plugin ad ogni avvio di Cura? Si consiglia di non disabilitare questa opzione!"
  4434. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:940
  4435. msgctxt "@option:check"
  4436. msgid "Get notifications for plugin updates"
  4437. msgstr "Ricevi notifiche di aggiornamenti plugin"
  4438. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4439. msgctxt "@label"
  4440. msgid "Add printer by IP address"
  4441. msgstr "Aggiungi stampante per indirizzo IP"
  4442. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4443. msgctxt "@text"
  4444. msgid "Enter your printer's IP address."
  4445. msgstr "Inserire l'indirizzo IP della stampante."
  4446. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4447. msgctxt "@button"
  4448. msgid "Add"
  4449. msgstr "Aggiungi"
  4450. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4451. msgctxt "@label"
  4452. msgid "Could not connect to device."
  4453. msgstr "Impossibile connettersi al dispositivo."
  4454. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4455. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4456. msgctxt "@label"
  4457. msgid "Can't connect to your Ultimaker printer?"
  4458. msgstr "Non è possibile effettuare la connessione alla stampante Ultimaker?"
  4459. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4460. msgctxt "@label"
  4461. msgid "The printer at this address has not responded yet."
  4462. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  4463. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4464. msgctxt "@label"
  4465. msgid ""
  4466. "This printer cannot be added because it's an unknown printer or it's not the "
  4467. "host of a group."
  4468. msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo."
  4469. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4470. msgctxt "@button"
  4471. msgid "Connect"
  4472. msgstr "Collega"
  4473. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4474. msgctxt "@label"
  4475. msgid "Release Notes"
  4476. msgstr "Note sulla versione"
  4477. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4478. msgctxt "@label"
  4479. msgid "User Agreement"
  4480. msgstr "Contratto di licenza"
  4481. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  4482. msgctxt "@button"
  4483. msgid "Agree"
  4484. msgstr "Accetta"
  4485. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4486. msgctxt "@button"
  4487. msgid "Decline and close"
  4488. msgstr "Rifiuta e chiudi"
  4489. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4490. msgctxt "@label"
  4491. msgid "What's New"
  4492. msgstr "Scopri le novità"
  4493. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:184
  4494. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  4495. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  4496. msgctxt "@button"
  4497. msgid "Next"
  4498. msgstr "Avanti"
  4499. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4500. msgctxt "@label"
  4501. msgid "Add a Cloud printer"
  4502. msgstr "Aggiungere una stampante cloud"
  4503. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4504. msgctxt "@label"
  4505. msgid "Waiting for Cloud response"
  4506. msgstr "In attesa della risposta del cloud"
  4507. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4508. msgctxt "@label"
  4509. msgid "No printers found in your account?"
  4510. msgstr "Non sono presenti stampanti nel cloud?"
  4511. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4512. msgctxt "@label"
  4513. msgid "The following printers in your account have been added in Cura:"
  4514. msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:"
  4515. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:194
  4516. msgctxt "@button"
  4517. msgid "Add printer manually"
  4518. msgstr "Aggiungere la stampante manualmente"
  4519. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4520. msgctxt "@text"
  4521. msgid "Add material settings and plugins from the Marketplace"
  4522. msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace"
  4523. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4524. msgctxt "@text"
  4525. msgid "Backup and sync your material settings and plugins"
  4526. msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin"
  4527. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4528. msgctxt "@text"
  4529. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4530. msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker"
  4531. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4532. msgctxt "@button"
  4533. msgid "Skip"
  4534. msgstr "Salta"
  4535. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4536. msgctxt "@text"
  4537. msgid "Create a free Ultimaker Account"
  4538. msgstr "Crea un account Ultimaker gratuito"
  4539. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4540. msgctxt "@label"
  4541. msgid "Welcome to Ultimaker Cura"
  4542. msgstr "Benvenuto in Ultimaker Cura"
  4543. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4544. msgctxt "@text"
  4545. msgid ""
  4546. "Please follow these steps to set up Ultimaker Cura. This will only take a "
  4547. "few moments."
  4548. msgstr "Segui questa procedura per configurare\nUltimaker Cura. Questa operazione richiederà solo pochi istanti."
  4549. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4550. msgctxt "@button"
  4551. msgid "Get started"
  4552. msgstr "Per iniziare"
  4553. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4554. msgctxt "@label"
  4555. msgid "Empty"
  4556. msgstr "Vuoto"
  4557. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:206
  4558. msgctxt "@label"
  4559. msgid "Manufacturer"
  4560. msgstr "Produttore"
  4561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:217
  4562. msgctxt "@label"
  4563. msgid "Profile author"
  4564. msgstr "Autore profilo"
  4565. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:229
  4566. msgctxt "@label"
  4567. msgid "Printer name"
  4568. msgstr "Nome stampante"
  4569. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  4570. msgctxt "@text"
  4571. msgid "Please name your printer"
  4572. msgstr "Dare un nome alla stampante"
  4573. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4574. msgctxt "@label"
  4575. msgid "Add a printer"
  4576. msgstr "Aggiungi una stampante"
  4577. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4578. msgctxt "@label"
  4579. msgid "Add a networked printer"
  4580. msgstr "Aggiungi una stampante in rete"
  4581. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:88
  4582. msgctxt "@label"
  4583. msgid "Add a non-networked printer"
  4584. msgstr "Aggiungi una stampante non in rete"
  4585. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4586. msgctxt "@label"
  4587. msgid "There is no printer found over your network."
  4588. msgstr "Non è stata trovata alcuna stampante sulla rete."
  4589. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  4590. msgctxt "@label"
  4591. msgid "Refresh"
  4592. msgstr "Aggiorna"
  4593. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  4594. msgctxt "@label"
  4595. msgid "Add printer by IP"
  4596. msgstr "Aggiungi stampante per IP"
  4597. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  4598. msgctxt "@label"
  4599. msgid "Add cloud printer"
  4600. msgstr "Aggiungere una stampante cloud"
  4601. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:221
  4602. msgctxt "@label"
  4603. msgid "Troubleshooting"
  4604. msgstr "Ricerca e riparazione dei guasti"
  4605. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4606. msgctxt "@label"
  4607. msgid "Help us to improve Ultimaker Cura"
  4608. msgstr "Aiutaci a migliorare Ultimaker Cura"
  4609. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4610. msgctxt "@text"
  4611. msgid ""
  4612. "Ultimaker Cura collects anonymous data to improve print quality and user "
  4613. "experience, including:"
  4614. msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:"
  4615. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4616. msgctxt "@text"
  4617. msgid "Machine types"
  4618. msgstr "Tipi di macchine"
  4619. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4620. msgctxt "@text"
  4621. msgid "Material usage"
  4622. msgstr "Utilizzo dei materiali"
  4623. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4624. msgctxt "@text"
  4625. msgid "Number of slices"
  4626. msgstr "Numero di sezionamenti"
  4627. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4628. msgctxt "@text"
  4629. msgid "Print settings"
  4630. msgstr "Impostazioni di stampa"
  4631. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4632. msgctxt "@text"
  4633. msgid ""
  4634. "Data collected by Ultimaker Cura will not contain any personal information."
  4635. msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale."
  4636. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4637. msgctxt "@text"
  4638. msgid "More information"
  4639. msgstr "Ulteriori informazioni"
  4640. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectSelector.qml:59
  4641. msgctxt "@label"
  4642. msgid "Object list"
  4643. msgstr "Elenco oggetti"
  4644. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:109
  4645. msgctxt "@label"
  4646. msgid "Is printed as support."
  4647. msgstr "Viene stampato come supporto."
  4648. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:112
  4649. msgctxt "@label"
  4650. msgid "Other models overlapping with this model are modified."
  4651. msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati."
  4652. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:115
  4653. msgctxt "@label"
  4654. msgid "Infill overlapping with this model is modified."
  4655. msgstr "La sovrapposizione del riempimento con questo modello è stata modificata."
  4656. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:118
  4657. msgctxt "@label"
  4658. msgid "Overlaps with this model are not supported."
  4659. msgstr "Le sovrapposizioni con questo modello non sono supportate."
  4660. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:125
  4661. msgctxt "@label %1 is the number of settings it overrides."
  4662. msgid "Overrides %1 setting."
  4663. msgid_plural "Overrides %1 settings."
  4664. msgstr[0] "Ignora %1 impostazione."
  4665. msgstr[1] "Ignora %1 impostazioni."
  4666. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4667. msgctxt "@label"
  4668. msgid "Connected printers"
  4669. msgstr "Stampanti collegate"
  4670. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4671. msgctxt "@label"
  4672. msgid "Preset printers"
  4673. msgstr "Stampanti preimpostate"
  4674. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4675. msgctxt "@status"
  4676. msgid ""
  4677. "The cloud printer is offline. Please check if the printer is turned on and "
  4678. "connected to the internet."
  4679. msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet."
  4680. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4681. msgctxt "@status"
  4682. msgid ""
  4683. "This printer is not linked to your account. Please visit the Ultimaker "
  4684. "Digital Factory to establish a connection."
  4685. msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione."
  4686. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4687. msgctxt "@status"
  4688. msgid ""
  4689. "The cloud connection is currently unavailable. Please sign in to connect to "
  4690. "the cloud printer."
  4691. msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud."
  4692. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4693. msgctxt "@status"
  4694. msgid ""
  4695. "The cloud connection is currently unavailable. Please check your internet "
  4696. "connection."
  4697. msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet."
  4698. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:236
  4699. msgctxt "@button"
  4700. msgid "Add printer"
  4701. msgstr "Aggiungi stampante"
  4702. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:253
  4703. msgctxt "@button"
  4704. msgid "Manage printers"
  4705. msgstr "Gestione stampanti"
  4706. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/SearchBar.qml:17
  4707. msgctxt "@placeholder"
  4708. msgid "Search"
  4709. msgstr "Cerca"
  4710. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/JobSpecs.qml:93
  4711. msgctxt "@text Print job name"
  4712. msgid "Untitled"
  4713. msgstr "Senza titolo"
  4714. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:115
  4715. msgctxt "@label:MonitorStatus"
  4716. msgid "Not connected to a printer"
  4717. msgstr "Non collegato ad una stampante"
  4718. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:119
  4719. msgctxt "@label:MonitorStatus"
  4720. msgid "Printer does not accept commands"
  4721. msgstr "La stampante non accetta comandi"
  4722. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:129
  4723. msgctxt "@label:MonitorStatus"
  4724. msgid "In maintenance. Please check the printer"
  4725. msgstr "In manutenzione. Controllare la stampante"
  4726. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:140
  4727. msgctxt "@label:MonitorStatus"
  4728. msgid "Lost connection with the printer"
  4729. msgstr "Persa connessione con la stampante"
  4730. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:142
  4731. msgctxt "@label:MonitorStatus"
  4732. msgid "Printing..."
  4733. msgstr "Stampa in corso..."
  4734. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:145
  4735. msgctxt "@label:MonitorStatus"
  4736. msgid "Paused"
  4737. msgstr "In pausa"
  4738. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:148
  4739. msgctxt "@label:MonitorStatus"
  4740. msgid "Preparing..."
  4741. msgstr "Preparazione in corso..."
  4742. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:150
  4743. msgctxt "@label:MonitorStatus"
  4744. msgid "Please remove the print"
  4745. msgstr "Rimuovere la stampa"
  4746. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:318
  4747. msgctxt "@label"
  4748. msgid "Abort Print"
  4749. msgstr "Interrompi la stampa"
  4750. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:327
  4751. msgctxt "@label"
  4752. msgid "Are you sure you want to abort the print?"
  4753. msgstr "Sei sicuro di voler interrompere la stampa?"
  4754. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingCategory.qml:115
  4755. msgctxt "@label"
  4756. msgid ""
  4757. "Some hidden settings use values different from their normal calculated "
  4758. "value.\n"
  4759. "\n"
  4760. "Click to make these settings visible."
  4761. msgstr "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n\nFare clic per rendere visibili queste impostazioni."
  4762. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:47
  4763. msgctxt "@label:textbox"
  4764. msgid "Search settings"
  4765. msgstr "Impostazioni ricerca"
  4766. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:428
  4767. msgctxt "@action:menu"
  4768. msgid "Copy value to all extruders"
  4769. msgstr "Copia valore su tutti gli estrusori"
  4770. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:437
  4771. msgctxt "@action:menu"
  4772. msgid "Copy all changed values to all extruders"
  4773. msgstr "Copia tutti i valori modificati su tutti gli estrusori"
  4774. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:473
  4775. msgctxt "@action:menu"
  4776. msgid "Hide this setting"
  4777. msgstr "Nascondi questa impostazione"
  4778. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:486
  4779. msgctxt "@action:menu"
  4780. msgid "Don't show this setting"
  4781. msgstr "Nascondi questa impostazione"
  4782. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:490
  4783. msgctxt "@action:menu"
  4784. msgid "Keep this setting visible"
  4785. msgstr "Mantieni visibile questa impostazione"
  4786. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:509
  4787. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:467
  4788. msgctxt "@action:menu"
  4789. msgid "Configure setting visibility..."
  4790. msgstr "Configura visibilità delle impostazioni..."
  4791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:78
  4792. msgctxt "@label"
  4793. msgid ""
  4794. "This setting is not used because all the settings that it influences are "
  4795. "overridden."
  4796. msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override."
  4797. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:83
  4798. msgctxt "@label Header for list of settings."
  4799. msgid "Affects"
  4800. msgstr "Influisce su"
  4801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:88
  4802. msgctxt "@label Header for list of settings."
  4803. msgid "Affected By"
  4804. msgstr "Influenzato da"
  4805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:185
  4806. msgctxt "@label"
  4807. msgid ""
  4808. "This setting is always shared between all extruders. Changing it here will "
  4809. "change the value for all extruders."
  4810. msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori."
  4811. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:189
  4812. msgctxt "@label"
  4813. msgid "This setting is resolved from conflicting extruder-specific values:"
  4814. msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:"
  4815. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:229
  4816. msgctxt "@label"
  4817. msgid ""
  4818. "This setting has a value that is different from the profile.\n"
  4819. "\n"
  4820. "Click to restore the value of the profile."
  4821. msgstr "Questa impostazione ha un valore diverso dal profilo.\n\nFare clic per ripristinare il valore del profilo."
  4822. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:329
  4823. msgctxt "@label"
  4824. msgid ""
  4825. "This setting is normally calculated, but it currently has an absolute value "
  4826. "set.\n"
  4827. "\n"
  4828. "Click to restore the calculated value."
  4829. msgstr "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n\nFare clic per ripristinare il valore calcolato."
  4830. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:104
  4831. msgctxt "@label"
  4832. msgid "Hex"
  4833. msgstr "Esagonale"
  4834. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:156
  4835. msgctxt "@label"
  4836. msgid "Active print"
  4837. msgstr "Stampa attiva"
  4838. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:164
  4839. msgctxt "@label"
  4840. msgid "Job Name"
  4841. msgstr "Nome del processo"
  4842. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:172
  4843. msgctxt "@label"
  4844. msgid "Printing Time"
  4845. msgstr "Tempo di stampa"
  4846. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:180
  4847. msgctxt "@label"
  4848. msgid "Estimated time left"
  4849. msgstr "Tempo residuo stimato"
  4850. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:81
  4851. msgctxt "@action:inmenu"
  4852. msgid "Show Online Troubleshooting"
  4853. msgstr "Mostra ricerca e riparazione dei guasti online"
  4854. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:88
  4855. msgctxt "@action:inmenu"
  4856. msgid "Toggle Full Screen"
  4857. msgstr "Attiva/disattiva schermo intero"
  4858. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:96
  4859. msgctxt "@action:inmenu"
  4860. msgid "Exit Full Screen"
  4861. msgstr "Esci da schermo intero"
  4862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:103
  4863. msgctxt "@action:inmenu menubar:edit"
  4864. msgid "&Undo"
  4865. msgstr "&Annulla"
  4866. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:113
  4867. msgctxt "@action:inmenu menubar:edit"
  4868. msgid "&Redo"
  4869. msgstr "Ri&peti"
  4870. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:131
  4871. msgctxt "@action:inmenu menubar:file"
  4872. msgid "&Quit"
  4873. msgstr "&Esci"
  4874. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:139
  4875. msgctxt "@action:inmenu menubar:view"
  4876. msgid "3D View"
  4877. msgstr "Visualizzazione 3D"
  4878. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:146
  4879. msgctxt "@action:inmenu menubar:view"
  4880. msgid "Front View"
  4881. msgstr "Visualizzazione frontale"
  4882. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:153
  4883. msgctxt "@action:inmenu menubar:view"
  4884. msgid "Top View"
  4885. msgstr "Visualizzazione superiore"
  4886. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:160
  4887. msgctxt "@action:inmenu menubar:view"
  4888. msgid "Bottom View"
  4889. msgstr "Vista inferiore"
  4890. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:167
  4891. msgctxt "@action:inmenu menubar:view"
  4892. msgid "Left Side View"
  4893. msgstr "Visualizzazione lato sinistro"
  4894. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:174
  4895. msgctxt "@action:inmenu menubar:view"
  4896. msgid "Right Side View"
  4897. msgstr "Visualizzazione lato destro"
  4898. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:188
  4899. msgctxt "@action:inmenu"
  4900. msgid "Configure Cura..."
  4901. msgstr "Configura Cura..."
  4902. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:195
  4903. msgctxt "@action:inmenu menubar:printer"
  4904. msgid "&Add Printer..."
  4905. msgstr "&Aggiungi stampante..."
  4906. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:201
  4907. msgctxt "@action:inmenu menubar:printer"
  4908. msgid "Manage Pr&inters..."
  4909. msgstr "Gestione stampanti..."
  4910. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:208
  4911. msgctxt "@action:inmenu"
  4912. msgid "Manage Materials..."
  4913. msgstr "Gestione materiali..."
  4914. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:216
  4915. msgctxt ""
  4916. "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't "
  4917. "translate."
  4918. msgid "Add more materials from Marketplace"
  4919. msgstr "Aggiungere altri materiali da Marketplace"
  4920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:223
  4921. msgctxt "@action:inmenu menubar:profile"
  4922. msgid "&Update profile with current settings/overrides"
  4923. msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti"
  4924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:231
  4925. msgctxt "@action:inmenu menubar:profile"
  4926. msgid "&Discard current changes"
  4927. msgstr "&Elimina le modifiche correnti"
  4928. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:243
  4929. msgctxt "@action:inmenu menubar:profile"
  4930. msgid "&Create profile from current settings/overrides..."
  4931. msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..."
  4932. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:249
  4933. msgctxt "@action:inmenu menubar:profile"
  4934. msgid "Manage Profiles..."
  4935. msgstr "Gestione profili..."
  4936. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:257
  4937. msgctxt "@action:inmenu menubar:help"
  4938. msgid "Show Online &Documentation"
  4939. msgstr "Mostra documentazione &online"
  4940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:265
  4941. msgctxt "@action:inmenu menubar:help"
  4942. msgid "Report a &Bug"
  4943. msgstr "Se&gnala un errore"
  4944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:273
  4945. msgctxt "@action:inmenu menubar:help"
  4946. msgid "What's New"
  4947. msgstr "Scopri le novità"
  4948. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:287
  4949. msgctxt "@action:inmenu menubar:help"
  4950. msgid "About..."
  4951. msgstr "Informazioni..."
  4952. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:294
  4953. msgctxt "@action:inmenu menubar:edit"
  4954. msgid "Delete Selected"
  4955. msgstr "Cancella selezionati"
  4956. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:304
  4957. msgctxt "@action:inmenu menubar:edit"
  4958. msgid "Center Selected"
  4959. msgstr "Centra selezionati"
  4960. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:313
  4961. msgctxt "@action:inmenu menubar:edit"
  4962. msgid "Multiply Selected"
  4963. msgstr "Moltiplica selezionati"
  4964. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:322
  4965. msgctxt "@action:inmenu"
  4966. msgid "Delete Model"
  4967. msgstr "Elimina modello"
  4968. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:330
  4969. msgctxt "@action:inmenu"
  4970. msgid "Ce&nter Model on Platform"
  4971. msgstr "C&entra modello su piattaforma"
  4972. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:336
  4973. msgctxt "@action:inmenu menubar:edit"
  4974. msgid "&Group Models"
  4975. msgstr "&Raggruppa modelli"
  4976. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:356
  4977. msgctxt "@action:inmenu menubar:edit"
  4978. msgid "Ungroup Models"
  4979. msgstr "Separa modelli"
  4980. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:366
  4981. msgctxt "@action:inmenu menubar:edit"
  4982. msgid "&Merge Models"
  4983. msgstr "&Unisci modelli"
  4984. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:376
  4985. msgctxt "@action:inmenu"
  4986. msgid "&Multiply Model..."
  4987. msgstr "Mo&ltiplica modello..."
  4988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:383
  4989. msgctxt "@action:inmenu menubar:edit"
  4990. msgid "Select All Models"
  4991. msgstr "Seleziona tutti i modelli"
  4992. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:393
  4993. msgctxt "@action:inmenu menubar:edit"
  4994. msgid "Clear Build Plate"
  4995. msgstr "Cancellare piano di stampa"
  4996. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:403
  4997. msgctxt "@action:inmenu menubar:file"
  4998. msgid "Reload All Models"
  4999. msgstr "Ricarica tutti i modelli"
  5000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:412
  5001. msgctxt "@action:inmenu menubar:edit"
  5002. msgid "Arrange All Models"
  5003. msgstr "Sistema tutti i modelli"
  5004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:420
  5005. msgctxt "@action:inmenu menubar:edit"
  5006. msgid "Arrange Selection"
  5007. msgstr "Sistema selezione"
  5008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:427
  5009. msgctxt "@action:inmenu menubar:edit"
  5010. msgid "Reset All Model Positions"
  5011. msgstr "Reimposta tutte le posizioni dei modelli"
  5012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:434
  5013. msgctxt "@action:inmenu menubar:edit"
  5014. msgid "Reset All Model Transformations"
  5015. msgstr "Reimposta tutte le trasformazioni dei modelli"
  5016. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:443
  5017. msgctxt "@action:inmenu menubar:file"
  5018. msgid "&Open File(s)..."
  5019. msgstr "&Apri file..."
  5020. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:453
  5021. msgctxt "@action:inmenu menubar:file"
  5022. msgid "&New Project..."
  5023. msgstr "&Nuovo Progetto..."
  5024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:460
  5025. msgctxt "@action:inmenu menubar:help"
  5026. msgid "Show Configuration Folder"
  5027. msgstr "Mostra cartella di configurazione"
  5028. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:25
  5029. msgctxt "@info:tooltip"
  5030. msgid "3D View"
  5031. msgstr "Visualizzazione 3D"
  5032. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:38
  5033. msgctxt "@info:tooltip"
  5034. msgid "Front View"
  5035. msgstr "Visualizzazione frontale"
  5036. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:51
  5037. msgctxt "@info:tooltip"
  5038. msgid "Top View"
  5039. msgstr "Visualizzazione superiore"
  5040. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:64
  5041. msgctxt "@info:tooltip"
  5042. msgid "Left View"
  5043. msgstr "Vista sinistra"
  5044. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:77
  5045. msgctxt "@info:tooltip"
  5046. msgid "Right View"
  5047. msgstr "Vista destra"
  5048. #: PrepareStage/plugin.json
  5049. msgctxt "description"
  5050. msgid "Provides a prepare stage in Cura."
  5051. msgstr "Fornisce una fase di preparazione in Cura."
  5052. #: PrepareStage/plugin.json
  5053. msgctxt "name"
  5054. msgid "Prepare Stage"
  5055. msgstr "Fase di preparazione"
  5056. #: CuraProfileWriter/plugin.json
  5057. msgctxt "description"
  5058. msgid "Provides support for exporting Cura profiles."
  5059. msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  5060. #: CuraProfileWriter/plugin.json
  5061. msgctxt "name"
  5062. msgid "Cura Profile Writer"
  5063. msgstr "Writer profilo Cura"
  5064. #: TrimeshReader/plugin.json
  5065. msgctxt "description"
  5066. msgid "Provides support for reading model files."
  5067. msgstr "Fornisce supporto per la lettura dei file modello."
  5068. #: TrimeshReader/plugin.json
  5069. msgctxt "name"
  5070. msgid "Trimesh Reader"
  5071. msgstr "Trimesh Reader"
  5072. #: FirmwareUpdateChecker/plugin.json
  5073. msgctxt "description"
  5074. msgid "Checks for firmware updates."
  5075. msgstr "Controlla disponibilità di aggiornamenti firmware."
  5076. #: FirmwareUpdateChecker/plugin.json
  5077. msgctxt "name"
  5078. msgid "Firmware Update Checker"
  5079. msgstr "Controllo aggiornamento firmware"
  5080. #: SentryLogger/plugin.json
  5081. msgctxt "description"
  5082. msgid "Logs certain events so that they can be used by the crash reporter"
  5083. msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash"
  5084. #: SentryLogger/plugin.json
  5085. msgctxt "name"
  5086. msgid "Sentry Logger"
  5087. msgstr "Logger sentinella"
  5088. #: MonitorStage/plugin.json
  5089. msgctxt "description"
  5090. msgid "Provides a monitor stage in Cura."
  5091. msgstr "Fornisce una fase di controllo in Cura."
  5092. #: MonitorStage/plugin.json
  5093. msgctxt "name"
  5094. msgid "Monitor Stage"
  5095. msgstr "Fase di controllo"
  5096. #: RemovableDriveOutputDevice/plugin.json
  5097. msgctxt "description"
  5098. msgid "Provides removable drive hotplugging and writing support."
  5099. msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  5100. #: RemovableDriveOutputDevice/plugin.json
  5101. msgctxt "name"
  5102. msgid "Removable Drive Output Device Plugin"
  5103. msgstr "Plugin dispositivo di output unità rimovibile"
  5104. #: AMFReader/plugin.json
  5105. msgctxt "description"
  5106. msgid "Provides support for reading AMF files."
  5107. msgstr "Fornisce il supporto per la lettura di file 3MF."
  5108. #: AMFReader/plugin.json
  5109. msgctxt "name"
  5110. msgid "AMF Reader"
  5111. msgstr "Lettore 3MF"
  5112. #: UFPReader/plugin.json
  5113. msgctxt "description"
  5114. msgid "Provides support for reading Ultimaker Format Packages."
  5115. msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker."
  5116. #: UFPReader/plugin.json
  5117. msgctxt "name"
  5118. msgid "UFP Reader"
  5119. msgstr "Lettore UFP"
  5120. #: DigitalLibrary/plugin.json
  5121. msgctxt "description"
  5122. msgid ""
  5123. "Connects to the Digital Library, allowing Cura to open files from and save "
  5124. "files to the Digital Library."
  5125. msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library."
  5126. #: DigitalLibrary/plugin.json
  5127. msgctxt "name"
  5128. msgid "Ultimaker Digital Library"
  5129. msgstr "Ultimaker Digital Library"
  5130. #: PerObjectSettingsTool/plugin.json
  5131. msgctxt "description"
  5132. msgid "Provides the Per Model Settings."
  5133. msgstr "Fornisce le impostazioni per modello."
  5134. #: PerObjectSettingsTool/plugin.json
  5135. msgctxt "name"
  5136. msgid "Per Model Settings Tool"
  5137. msgstr "Utilità impostazioni per modello"
  5138. #: FirmwareUpdater/plugin.json
  5139. msgctxt "description"
  5140. msgid "Provides a machine actions for updating firmware."
  5141. msgstr "Fornisce azioni macchina per l’aggiornamento del firmware."
  5142. #: FirmwareUpdater/plugin.json
  5143. msgctxt "name"
  5144. msgid "Firmware Updater"
  5145. msgstr "Aggiornamento firmware"
  5146. #: UM3NetworkPrinting/plugin.json
  5147. msgctxt "description"
  5148. msgid "Manages network connections to Ultimaker networked printers."
  5149. msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete."
  5150. #: UM3NetworkPrinting/plugin.json
  5151. msgctxt "name"
  5152. msgid "Ultimaker Network Connection"
  5153. msgstr "Connessione di rete Ultimaker"
  5154. #: ModelChecker/plugin.json
  5155. msgctxt "description"
  5156. msgid ""
  5157. "Checks models and print configuration for possible printing issues and give "
  5158. "suggestions."
  5159. msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti."
  5160. #: ModelChecker/plugin.json
  5161. msgctxt "name"
  5162. msgid "Model Checker"
  5163. msgstr "Controllo modello"
  5164. #: SimulationView/plugin.json
  5165. msgctxt "description"
  5166. msgid "Provides the preview of sliced layerdata."
  5167. msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni."
  5168. #: SimulationView/plugin.json
  5169. msgctxt "name"
  5170. msgid "Simulation View"
  5171. msgstr "Vista simulazione"
  5172. #: GCodeWriter/plugin.json
  5173. msgctxt "description"
  5174. msgid "Writes g-code to a file."
  5175. msgstr "Scrive il codice G in un file."
  5176. #: GCodeWriter/plugin.json
  5177. msgctxt "name"
  5178. msgid "G-code Writer"
  5179. msgstr "Writer codice G"
  5180. #: 3MFWriter/plugin.json
  5181. msgctxt "description"
  5182. msgid "Provides support for writing 3MF files."
  5183. msgstr "Fornisce il supporto per la scrittura di file 3MF."
  5184. #: 3MFWriter/plugin.json
  5185. msgctxt "name"
  5186. msgid "3MF Writer"
  5187. msgstr "Writer 3MF"
  5188. #: GCodeGzReader/plugin.json
  5189. msgctxt "description"
  5190. msgid "Reads g-code from a compressed archive."
  5191. msgstr "Legge il codice G da un archivio compresso."
  5192. #: GCodeGzReader/plugin.json
  5193. msgctxt "name"
  5194. msgid "Compressed G-code Reader"
  5195. msgstr "Lettore codice G compresso"
  5196. #: XmlMaterialProfile/plugin.json
  5197. msgctxt "description"
  5198. msgid "Provides capabilities to read and write XML-based material profiles."
  5199. msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  5200. #: XmlMaterialProfile/plugin.json
  5201. msgctxt "name"
  5202. msgid "Material Profiles"
  5203. msgstr "Profili del materiale"
  5204. #: CuraEngineBackend/plugin.json
  5205. msgctxt "description"
  5206. msgid "Provides the link to the CuraEngine slicing backend."
  5207. msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
  5208. #: CuraEngineBackend/plugin.json
  5209. msgctxt "name"
  5210. msgid "CuraEngine Backend"
  5211. msgstr "Back-end CuraEngine"
  5212. #: X3DReader/plugin.json
  5213. msgctxt "description"
  5214. msgid "Provides support for reading X3D files."
  5215. msgstr "Fornisce il supporto per la lettura di file X3D."
  5216. #: X3DReader/plugin.json
  5217. msgctxt "name"
  5218. msgid "X3D Reader"
  5219. msgstr "Lettore X3D"
  5220. #: ImageReader/plugin.json
  5221. msgctxt "description"
  5222. msgid "Enables ability to generate printable geometry from 2D image files."
  5223. msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  5224. #: ImageReader/plugin.json
  5225. msgctxt "name"
  5226. msgid "Image Reader"
  5227. msgstr "Lettore di immagine"
  5228. #: 3MFReader/plugin.json
  5229. msgctxt "description"
  5230. msgid "Provides support for reading 3MF files."
  5231. msgstr "Fornisce il supporto per la lettura di file 3MF."
  5232. #: 3MFReader/plugin.json
  5233. msgctxt "name"
  5234. msgid "3MF Reader"
  5235. msgstr "Lettore 3MF"
  5236. #: UFPWriter/plugin.json
  5237. msgctxt "description"
  5238. msgid "Provides support for writing Ultimaker Format Packages."
  5239. msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker."
  5240. #: UFPWriter/plugin.json
  5241. msgctxt "name"
  5242. msgid "UFP Writer"
  5243. msgstr "Writer UFP"
  5244. #: LegacyProfileReader/plugin.json
  5245. msgctxt "description"
  5246. msgid "Provides support for importing profiles from legacy Cura versions."
  5247. msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  5248. #: LegacyProfileReader/plugin.json
  5249. msgctxt "name"
  5250. msgid "Legacy Cura Profile Reader"
  5251. msgstr "Lettore legacy profilo Cura"
  5252. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5253. msgctxt "description"
  5254. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5255. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4."
  5256. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5257. msgctxt "name"
  5258. msgid "Version Upgrade 4.3 to 4.4"
  5259. msgstr "Aggiornamento della versione da 4.3 a 4.4"
  5260. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5261. msgctxt "description"
  5262. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5263. msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  5264. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5265. msgctxt "name"
  5266. msgid "Version Upgrade 2.1 to 2.2"
  5267. msgstr "Aggiornamento della versione da 2.1 a 2.2"
  5268. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5269. msgctxt "description"
  5270. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5271. msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2."
  5272. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5273. msgctxt "name"
  5274. msgid "Version Upgrade 4.1 to 4.2"
  5275. msgstr "Aggiornamento della versione da 4.1 a 4.2"
  5276. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5277. msgctxt "description"
  5278. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5279. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0."
  5280. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5281. msgctxt "name"
  5282. msgid "Version Upgrade 4.13 to 5.0"
  5283. msgstr "Aggiornamento della versione da 4.13 a 5.0"
  5284. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5285. msgctxt "description"
  5286. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5287. msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6."
  5288. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5289. msgctxt "name"
  5290. msgid "Version Upgrade 4.5 to 4.6"
  5291. msgstr "Aggiornamento della versione da 4.5 a 4.6"
  5292. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5293. msgctxt "description"
  5294. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5295. msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4."
  5296. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5297. msgctxt "name"
  5298. msgid "Version Upgrade 3.3 to 3.4"
  5299. msgstr "Aggiornamento della versione da 3.3 a 3.4"
  5300. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5301. msgctxt "description"
  5302. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5303. msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9."
  5304. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5305. msgctxt "name"
  5306. msgid "Version Upgrade 4.8 to 4.9"
  5307. msgstr "Aggiornamento della versione da 4.8 a 4.9"
  5308. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5309. msgctxt "description"
  5310. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5311. msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0."
  5312. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5313. msgctxt "name"
  5314. msgid "Version Upgrade 2.7 to 3.0"
  5315. msgstr "Aggiornamento della versione da 2.7 a 3.0"
  5316. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5317. msgctxt "description"
  5318. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5319. msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5."
  5320. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5321. msgctxt "name"
  5322. msgid "Version Upgrade 4.4 to 4.5"
  5323. msgstr "Aggiornamento della versione da 4.4 a 4.5"
  5324. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5325. msgctxt "description"
  5326. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5327. msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1."
  5328. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5329. msgctxt "name"
  5330. msgid "Version Upgrade 3.0 to 3.1"
  5331. msgstr "Aggiornamento della versione da 3.0 a 3.1"
  5332. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5333. msgctxt "description"
  5334. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5335. msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2."
  5336. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5337. msgctxt "name"
  5338. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5339. msgstr "Aggiornamento versione da 4.6.0 a 4.6.2"
  5340. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5341. msgctxt "description"
  5342. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5343. msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7."
  5344. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5345. msgctxt "name"
  5346. msgid "Version Upgrade 2.6 to 2.7"
  5347. msgstr "Aggiornamento della versione da 2.6 a 2.7"
  5348. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5349. msgctxt "description"
  5350. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5351. msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3."
  5352. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5353. msgctxt "name"
  5354. msgid "Version Upgrade 4.2 to 4.3"
  5355. msgstr "Aggiornamento della versione da 4.2 a 4.3"
  5356. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5357. msgctxt "description"
  5358. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5359. msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1."
  5360. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5361. msgctxt "name"
  5362. msgid "Version Upgrade 4.0 to 4.1"
  5363. msgstr "Aggiornamento della versione da 4.0 a 4.1"
  5364. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5365. msgctxt "description"
  5366. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5367. msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7."
  5368. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5369. msgctxt "name"
  5370. msgid "Version Upgrade 4.6.2 to 4.7"
  5371. msgstr "Aggiornamento versione da 4.6.2 a 4.7"
  5372. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5373. msgctxt "description"
  5374. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5375. msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10."
  5376. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5377. msgctxt "name"
  5378. msgid "Version Upgrade 4.9 to 4.10"
  5379. msgstr "Aggiornamento della versione da 4.9 a 4.10"
  5380. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5381. msgctxt "description"
  5382. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5383. msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  5384. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5385. msgctxt "name"
  5386. msgid "Version Upgrade 2.2 to 2.4"
  5387. msgstr "Aggiornamento della versione da 2.2 a 2.4"
  5388. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5389. msgctxt "description"
  5390. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5391. msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3."
  5392. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5393. msgctxt "name"
  5394. msgid "Version Upgrade 3.2 to 3.3"
  5395. msgstr "Aggiornamento della versione da 3.2 a 3.3"
  5396. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5397. msgctxt "description"
  5398. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5399. msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  5400. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5401. msgctxt "name"
  5402. msgid "Version Upgrade 2.5 to 2.6"
  5403. msgstr "Aggiornamento della versione da 2.5 a 2.6"
  5404. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5405. msgctxt "description"
  5406. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5407. msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0."
  5408. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5409. msgctxt "name"
  5410. msgid "Version Upgrade 3.5 to 4.0"
  5411. msgstr "Aggiornamento della versione da 3.5 a 4.0"
  5412. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5413. msgctxt "description"
  5414. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5415. msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5."
  5416. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5417. msgctxt "name"
  5418. msgid "Version Upgrade 3.4 to 3.5"
  5419. msgstr "Aggiornamento della versione da 3.4 a 3.5"
  5420. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5421. msgctxt "description"
  5422. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5423. msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8."
  5424. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5425. msgctxt "name"
  5426. msgid "Version Upgrade 4.7 to 4.8"
  5427. msgstr "Aggiornamento della versione da 4.7 a 4.8"
  5428. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5429. msgctxt "description"
  5430. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5431. msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12."
  5432. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5433. msgctxt "name"
  5434. msgid "Version Upgrade 4.11 to 4.12"
  5435. msgstr "Aggiornamento della versione da 4.11 a 4.12"
  5436. #: CuraDrive/plugin.json
  5437. msgctxt "description"
  5438. msgid "Backup and restore your configuration."
  5439. msgstr "Effettua il backup o ripristina la configurazione."
  5440. #: CuraDrive/plugin.json
  5441. msgctxt "name"
  5442. msgid "Cura Backups"
  5443. msgstr "Backup Cura"
  5444. #: CuraProfileReader/plugin.json
  5445. msgctxt "description"
  5446. msgid "Provides support for importing Cura profiles."
  5447. msgstr "Fornisce supporto per l'importazione dei profili Cura."
  5448. #: CuraProfileReader/plugin.json
  5449. msgctxt "name"
  5450. msgid "Cura Profile Reader"
  5451. msgstr "Lettore profilo Cura"
  5452. #: SliceInfoPlugin/plugin.json
  5453. msgctxt "description"
  5454. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5455. msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze."
  5456. #: SliceInfoPlugin/plugin.json
  5457. msgctxt "name"
  5458. msgid "Slice info"
  5459. msgstr "Informazioni su sezionamento"
  5460. #: GCodeProfileReader/plugin.json
  5461. msgctxt "description"
  5462. msgid "Provides support for importing profiles from g-code files."
  5463. msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  5464. #: GCodeProfileReader/plugin.json
  5465. msgctxt "name"
  5466. msgid "G-code Profile Reader"
  5467. msgstr "Lettore profilo codice G"
  5468. #: GCodeGzWriter/plugin.json
  5469. msgctxt "description"
  5470. msgid "Writes g-code to a compressed archive."
  5471. msgstr "Scrive il codice G in un archivio compresso."
  5472. #: GCodeGzWriter/plugin.json
  5473. msgctxt "name"
  5474. msgid "Compressed G-code Writer"
  5475. msgstr "Writer codice G compresso"
  5476. #: PostProcessingPlugin/plugin.json
  5477. msgctxt "description"
  5478. msgid "Extension that allows for user created scripts for post processing"
  5479. msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  5480. #: PostProcessingPlugin/plugin.json
  5481. msgctxt "name"
  5482. msgid "Post Processing"
  5483. msgstr "Post-elaborazione"
  5484. #: SupportEraser/plugin.json
  5485. msgctxt "description"
  5486. msgid ""
  5487. "Creates an eraser mesh to block the printing of support in certain places"
  5488. msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni"
  5489. #: SupportEraser/plugin.json
  5490. msgctxt "name"
  5491. msgid "Support Eraser"
  5492. msgstr "Cancellazione supporto"
  5493. #: PreviewStage/plugin.json
  5494. msgctxt "description"
  5495. msgid "Provides a preview stage in Cura."
  5496. msgstr "Fornisce una fase di anteprima in Cura."
  5497. #: PreviewStage/plugin.json
  5498. msgctxt "name"
  5499. msgid "Preview Stage"
  5500. msgstr "Fase di anteprima"
  5501. #: XRayView/plugin.json
  5502. msgctxt "description"
  5503. msgid "Provides the X-Ray view."
  5504. msgstr "Fornisce la vista a raggi X."
  5505. #: XRayView/plugin.json
  5506. msgctxt "name"
  5507. msgid "X-Ray View"
  5508. msgstr "Vista ai raggi X"
  5509. #: UltimakerMachineActions/plugin.json
  5510. msgctxt "description"
  5511. msgid ""
  5512. "Provides machine actions for Ultimaker machines (such as bed leveling "
  5513. "wizard, selecting upgrades, etc.)."
  5514. msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  5515. #: UltimakerMachineActions/plugin.json
  5516. msgctxt "name"
  5517. msgid "Ultimaker machine actions"
  5518. msgstr "Azioni della macchina Ultimaker"
  5519. #: Marketplace/plugin.json
  5520. msgctxt "description"
  5521. msgid ""
  5522. "Manages extensions to the application and allows browsing extensions from "
  5523. "the Ultimaker website."
  5524. msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web Ultimaker."
  5525. #: Marketplace/plugin.json
  5526. msgctxt "name"
  5527. msgid "Marketplace"
  5528. msgstr "Mercato"
  5529. #: SolidView/plugin.json
  5530. msgctxt "description"
  5531. msgid "Provides a normal solid mesh view."
  5532. msgstr "Fornisce una normale visualizzazione a griglia compatta."
  5533. #: SolidView/plugin.json
  5534. msgctxt "name"
  5535. msgid "Solid View"
  5536. msgstr "Visualizzazione compatta"
  5537. #: GCodeReader/plugin.json
  5538. msgctxt "description"
  5539. msgid "Allows loading and displaying G-code files."
  5540. msgstr "Consente il caricamento e la visualizzazione dei file codice G."
  5541. #: GCodeReader/plugin.json
  5542. msgctxt "name"
  5543. msgid "G-code Reader"
  5544. msgstr "Lettore codice G"
  5545. #: MachineSettingsAction/plugin.json
  5546. msgctxt "description"
  5547. msgid ""
  5548. "Provides a way to change machine settings (such as build volume, nozzle "
  5549. "size, etc.)."
  5550. msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  5551. #: MachineSettingsAction/plugin.json
  5552. msgctxt "name"
  5553. msgid "Machine Settings Action"
  5554. msgstr "Azione Impostazioni macchina"
  5555. #: USBPrinting/plugin.json
  5556. msgctxt "description"
  5557. msgid ""
  5558. "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5559. msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware."
  5560. #: USBPrinting/plugin.json
  5561. msgctxt "name"
  5562. msgid "USB printing"
  5563. msgstr "Stampa USB"
  5564. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:35
  5565. msgctxt "@button:label"
  5566. msgid "Learn More"
  5567. msgstr "Ulteriori Informazioni"
  5568. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  5569. msgctxt "@label"
  5570. msgid "You need to accept the license to install the package"
  5571. msgstr "È necessario accettare la licenza per installare il pacchetto"
  5572. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  5573. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  5574. msgctxt "@info:title"
  5575. msgid "Changes detected from your Ultimaker account"
  5576. msgstr "Modifiche rilevate dal tuo account Ultimaker"
  5577. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  5578. msgctxt "@title"
  5579. msgid "Changes from your account"
  5580. msgstr "Modifiche dall'account"
  5581. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  5582. msgctxt "@button"
  5583. msgid "Dismiss"
  5584. msgstr "Rimuovi"
  5585. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  5586. msgctxt "@button"
  5587. msgid "Decline and remove from account"
  5588. msgstr "Rifiuta e rimuovi dall'account"
  5589. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  5590. msgctxt "@info:generic"
  5591. msgid "Do you want to sync material and software packages with your account?"
  5592. msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?"
  5593. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  5594. msgctxt "@info:generic"
  5595. msgid "Syncing..."
  5596. msgstr "Sincronizzazione in corso..."
  5597. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  5598. msgctxt "@label"
  5599. msgid "The following packages will be added:"
  5600. msgstr "Verranno aggiunti i seguenti pacchetti:"
  5601. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  5602. msgctxt "@info:generic"
  5603. msgid "You need to quit and restart {} before changes have effect."
  5604. msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}."
  5605. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  5606. msgctxt "@info:generic"
  5607. msgid "{} plugins failed to download"
  5608. msgstr "Impossibile scaricare i plugin {}"
  5609. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  5610. msgctxt "@title:window"
  5611. msgid "Plugin License Agreement"
  5612. msgstr "Accordo di licenza plugin"
  5613. #~ msgctxt "@action:button"
  5614. #~ msgid "Sync materials with printers"
  5615. #~ msgstr "Sincronizza materiali"
  5616. #~ msgctxt "@action:button"
  5617. #~ msgid "Sync"
  5618. #~ msgstr "Sincronizza"
  5619. #~ msgctxt "@title:window"
  5620. #~ msgid "Convert Image..."
  5621. #~ msgstr "Converti immagine..."
  5622. #~ msgctxt "@info:tooltip"
  5623. #~ msgid "The width in millimeters on the build plate."
  5624. #~ msgstr "La larghezza in millimetri sul piano di stampa."
  5625. #~ msgctxt "@title"
  5626. #~ msgid "Marketplace"
  5627. #~ msgstr "Mercato"
  5628. #~ msgctxt "@info"
  5629. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5630. #~ msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti."
  5631. #~ msgctxt "@action:button"
  5632. #~ msgid "Install"
  5633. #~ msgstr "Installazione"
  5634. #~ msgctxt "@action:button"
  5635. #~ msgid "Installed"
  5636. #~ msgstr "Installa"
  5637. #~ msgctxt "@label"
  5638. #~ msgid "Premium"
  5639. #~ msgstr "Premium"
  5640. #~ msgctxt "@info:tooltip"
  5641. #~ msgid "Go to Web Marketplace"
  5642. #~ msgstr "Vai al Marketplace web"
  5643. #~ msgctxt "@label"
  5644. #~ msgid "Search materials"
  5645. #~ msgstr "Cerca materiali"
  5646. #~ msgctxt "@label"
  5647. #~ msgid "Compatibility"
  5648. #~ msgstr "Compatibilità"
  5649. #~ msgctxt "@label:table_header"
  5650. #~ msgid "Machine"
  5651. #~ msgstr "Macchina"
  5652. #~ msgctxt "@label:table_header"
  5653. #~ msgid "Build Plate"
  5654. #~ msgstr "Piano di stampa"
  5655. #~ msgctxt "@label:table_header"
  5656. #~ msgid "Support"
  5657. #~ msgstr "Supporto"
  5658. #~ msgctxt "@label:table_header"
  5659. #~ msgid "Quality"
  5660. #~ msgstr "Qualità"
  5661. #~ msgctxt "@action:label"
  5662. #~ msgid "Technical Data Sheet"
  5663. #~ msgstr "Scheda dati tecnici"
  5664. #~ msgctxt "@action:label"
  5665. #~ msgid "Safety Data Sheet"
  5666. #~ msgstr "Scheda dati di sicurezza"
  5667. #~ msgctxt "@action:label"
  5668. #~ msgid "Printing Guidelines"
  5669. #~ msgstr "Linee guida di stampa"
  5670. #~ msgctxt "@action:label"
  5671. #~ msgid "Website"
  5672. #~ msgstr "Sito web"
  5673. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5674. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5675. #~ msgstr "<a href='%1'>Log in</a> deve essere installato o aggiornato"
  5676. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5677. #~ msgid "<a href='%1'>Buy material spools</a>"
  5678. #~ msgstr "<a href='%1'>Acquista bobine di materiale</a>"
  5679. #~ msgctxt "@action:button"
  5680. #~ msgid "Update"
  5681. #~ msgstr "Aggiorna"
  5682. #~ msgctxt "@action:button"
  5683. #~ msgid "Updating"
  5684. #~ msgstr "Aggiornamento in corso"
  5685. #~ msgctxt "@action:button"
  5686. #~ msgid "Updated"
  5687. #~ msgstr "Aggiornamento eseguito"
  5688. #~ msgctxt "@action:button"
  5689. #~ msgid "Back"
  5690. #~ msgstr "Indietro"
  5691. #~ msgctxt "@title:tab"
  5692. #~ msgid "Plugins"
  5693. #~ msgstr "Plugin"
  5694. #~ msgctxt "@title:tab"
  5695. #~ msgid "Installed"
  5696. #~ msgstr "Installa"
  5697. #~ msgctxt "@label"
  5698. #~ msgid "Will install upon restarting"
  5699. #~ msgstr "L'installazione sarà eseguita al riavvio"
  5700. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5701. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5702. #~ msgstr "<a href='%1'>Log in</a> deve essere aggiornato"
  5703. #~ msgctxt "@action:button"
  5704. #~ msgid "Downgrade"
  5705. #~ msgstr "Downgrade"
  5706. #~ msgctxt "@action:button"
  5707. #~ msgid "Uninstall"
  5708. #~ msgstr "Disinstalla"
  5709. #~ msgctxt "@label"
  5710. #~ msgid "Community Contributions"
  5711. #~ msgstr "Contributi della comunità"
  5712. #~ msgctxt "@label"
  5713. #~ msgid "Community Plugins"
  5714. #~ msgstr "Plugin della comunità"
  5715. #~ msgctxt "@label"
  5716. #~ msgid "Generic Materials"
  5717. #~ msgstr "Materiali generici"
  5718. #~ msgctxt "@info"
  5719. #~ msgid "Fetching packages..."
  5720. #~ msgstr "Recupero dei pacchetti..."
  5721. #~ msgctxt "@label"
  5722. #~ msgid "Website"
  5723. #~ msgstr "Sito web"
  5724. #~ msgctxt "@label"
  5725. #~ msgid "Email"
  5726. #~ msgstr "E-mail"
  5727. #~ msgctxt "@description"
  5728. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5729. #~ msgstr "Accedere per ottenere i plugin e i materiali verificati per Ultimaker Cura Enterprise"
  5730. #~ msgctxt "@label"
  5731. #~ msgid "Version"
  5732. #~ msgstr "Versione"
  5733. #~ msgctxt "@label"
  5734. #~ msgid "Last updated"
  5735. #~ msgstr "Ultimo aggiornamento"
  5736. #~ msgctxt "@label"
  5737. #~ msgid "Downloads"
  5738. #~ msgstr "Download"
  5739. #~ msgctxt "@title:tab"
  5740. #~ msgid "Installed plugins"
  5741. #~ msgstr "Plugin installati"
  5742. #~ msgctxt "@info"
  5743. #~ msgid "No plugin has been installed."
  5744. #~ msgstr "Non è stato installato alcun plugin."
  5745. #~ msgctxt "@title:tab"
  5746. #~ msgid "Installed materials"
  5747. #~ msgstr "Materiali installati"
  5748. #~ msgctxt "@info"
  5749. #~ msgid "No material has been installed."
  5750. #~ msgstr "Non è stato installato alcun materiale."
  5751. #~ msgctxt "@title:tab"
  5752. #~ msgid "Bundled plugins"
  5753. #~ msgstr "Plugin inseriti nel bundle"
  5754. #~ msgctxt "@title:tab"
  5755. #~ msgid "Bundled materials"
  5756. #~ msgstr "Materiali inseriti nel bundle"
  5757. #~ msgctxt "@info"
  5758. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5759. #~ msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione."
  5760. #~ msgctxt "@label"
  5761. #~ msgid "The following packages can not be installed because of an incompatible Cura version:"
  5762. #~ msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:"
  5763. #~ msgctxt "@title:window"
  5764. #~ msgid "Confirm uninstall"
  5765. #~ msgstr "Conferma disinstalla"
  5766. #~ msgctxt "@text:window"
  5767. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5768. #~ msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti."
  5769. #~ msgctxt "@text:window"
  5770. #~ msgid "Materials"
  5771. #~ msgstr "Materiali"
  5772. #~ msgctxt "@text:window"
  5773. #~ msgid "Profiles"
  5774. #~ msgstr "Profili"
  5775. #~ msgctxt "@action:button"
  5776. #~ msgid "Confirm"
  5777. #~ msgstr "Conferma"
  5778. #~ msgctxt "@info:tooltip"
  5779. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5780. #~ msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione."
  5781. #~ msgctxt "@label"
  5782. #~ msgid "Support library for handling planar objects"
  5783. #~ msgstr "Libreria di supporto per gestione oggetti planari"
  5784. #~ msgctxt "@text:window, %1 is a profile name"
  5785. #~ msgid ""
  5786. #~ "You have customized some profile settings.\n"
  5787. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5788. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5789. #~ msgstr ""
  5790. #~ "Alcune impostazioni di profilo sono state personalizzate.\n"
  5791. #~ "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n"
  5792. #~ "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'."
  5793. #~ msgctxt "@action:inmenu menubar:view"
  5794. #~ msgid "&Build plate"
  5795. #~ msgstr "P&iano di stampa"
  5796. #~ msgctxt "@label"
  5797. #~ msgid "Create"
  5798. #~ msgstr "Crea"
  5799. #~ msgctxt "@label"
  5800. #~ msgid "Duplicate"
  5801. #~ msgstr "Duplica"
  5802. #~ msgctxt "@label %1 is printer name"
  5803. #~ msgid "Printer: %1"
  5804. #~ msgstr "Stampante: %1"
  5805. #~ msgctxt "@action:button"
  5806. #~ msgid "Update profile with current settings/overrides"
  5807. #~ msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti"
  5808. #~ msgctxt "@label"
  5809. #~ msgid "Theme:"
  5810. #~ msgstr "Tema:"
  5811. #~ msgctxt "@label"
  5812. #~ msgid "You will need to restart the application for these changes to have effect."
  5813. #~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche."
  5814. #~ msgctxt "@action:button"
  5815. #~ msgid "More information"
  5816. #~ msgstr "Ulteriori informazioni"
  5817. #~ msgctxt "@action:button"
  5818. #~ msgid "Create"
  5819. #~ msgstr "Crea"
  5820. #~ msgctxt "@action:button Sending materials to printers"
  5821. #~ msgid "Sync with Printers"
  5822. #~ msgstr "Sincronizza con le stampanti"
  5823. #~ msgctxt "@action:label"
  5824. #~ msgid "Printer"
  5825. #~ msgstr "Stampante"
  5826. #~ msgctxt "@title:column"
  5827. #~ msgid "Unit"
  5828. #~ msgstr "Unità"
  5829. #~ msgctxt "@action:inmenu"
  5830. #~ msgid "Show Online Troubleshooting Guide"
  5831. #~ msgstr "Mostra la Guida ricerca e riparazione dei guasti online"
  5832. #~ msgctxt "@action:inmenu"
  5833. #~ msgid "Add more materials from Marketplace"
  5834. #~ msgstr "Aggiungere altri materiali da Marketplace"
  5835. #~ msgctxt "@action:inmenu menubar:edit"
  5836. #~ msgid "Arrange All Models To All Build Plates"
  5837. #~ msgstr "Sistema tutti i modelli su tutti i piani di stampa"
  5838. #~ msgctxt "@action:menu"
  5839. #~ msgid "&Marketplace"
  5840. #~ msgstr "&Mercato"
  5841. #~ msgctxt "description"
  5842. #~ msgid "Find, manage and install new Cura packages."
  5843. #~ msgstr "Trova, gestisce ed installa nuovi pacchetti Cura."
  5844. #~ msgctxt "name"
  5845. #~ msgid "Toolbox"
  5846. #~ msgstr "Casella degli strumenti"
  5847. #~ msgctxt "description"
  5848. #~ msgid "Provides the Simulation view."
  5849. #~ msgstr "Fornisce la vista di simulazione."
  5850. #~ msgctxt "@info:status"
  5851. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5852. #~ msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker."
  5853. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5854. #~ msgid "Connect to Ultimaker Digital Factory"
  5855. #~ msgstr "Effettuare la connessione a Ultimaker Digital Factory"
  5856. #~ msgctxt "@info"
  5857. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5858. #~ msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da Ultimaker Cura."
  5859. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5860. #~ 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}."
  5861. #~ 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}."
  5862. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5863. #~ msgid "New %s firmware available"
  5864. #~ msgstr "Nuovo firmware %s disponibile"
  5865. #~ msgctxt "@info:status"
  5866. #~ msgid "Global stack is missing."
  5867. #~ msgstr "Pila globale mancante."
  5868. #~ msgctxt "@info:status"
  5869. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5870. #~ msgstr "Il modello in uso non è multiforme. Le aree evidenziate indicano superfici mancanti o estranee."
  5871. #~ msgctxt "@info:title"
  5872. #~ msgid "Model errors"
  5873. #~ msgstr "Errori modello"
  5874. #~ msgctxt "@label:listbox"
  5875. #~ msgid "Layer thickness"
  5876. #~ msgstr "Spessore strato"
  5877. #~ msgctxt "@label"
  5878. #~ msgid "Your key to connected 3D printing"
  5879. #~ msgstr "La chiave per la stampa 3D connessa"
  5880. #~ msgctxt "@text"
  5881. #~ msgid ""
  5882. #~ "- Customize your experience with more print profiles and plugins\n"
  5883. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5884. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5885. #~ msgstr ""
  5886. #~ "- Personalizza la tua esperienza con più profili di stampa e plugin\n"
  5887. #~ "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque\n"
  5888. #~ "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker"
  5889. #~ msgctxt "@button"
  5890. #~ msgid "Create account"
  5891. #~ msgstr "Crea account"
  5892. #~ msgctxt "@action:inmenu menubar:edit"
  5893. #~ msgid "Delete Selected Model"
  5894. #~ msgid_plural "Delete Selected Models"
  5895. #~ msgstr[0] "Cancella modello selezionato"
  5896. #~ msgstr[1] "Cancella modelli selezionati"
  5897. #~ msgctxt "@action:inmenu menubar:edit"
  5898. #~ msgid "Center Selected Model"
  5899. #~ msgid_plural "Center Selected Models"
  5900. #~ msgstr[0] "Centra modello selezionato"
  5901. #~ msgstr[1] "Centra modelli selezionati"
  5902. #~ msgctxt "@action:inmenu menubar:edit"
  5903. #~ msgid "Multiply Selected Model"
  5904. #~ msgid_plural "Multiply Selected Models"
  5905. #~ msgstr[0] "Moltiplica modello selezionato"
  5906. #~ msgstr[1] "Moltiplica modelli selezionati"
  5907. #~ msgctxt "@button"
  5908. #~ msgid "Finish"
  5909. #~ msgstr "Fine"
  5910. #~ msgctxt "@label"
  5911. #~ msgid "Ultimaker Account"
  5912. #~ msgstr "Account Ultimaker"
  5913. #~ msgctxt "@text"
  5914. #~ msgid "Your key to connected 3D printing"
  5915. #~ msgstr "La chiave per la stampa 3D connessa"
  5916. #~ msgctxt "@text"
  5917. #~ msgid "- Customize your experience with more print profiles and plugins"
  5918. #~ msgstr "- Personalizza la tua esperienza con più profili di stampa e plugin"
  5919. #~ msgctxt "@text"
  5920. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5921. #~ msgstr "- Mantieni la flessibilità sincronizzando la configurazione e caricandola ovunque"
  5922. #~ msgctxt "@text"
  5923. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5924. #~ msgstr "- Aumenta l'efficienza grazie a un flusso di lavoro remoto sulle stampanti Ultimaker"
  5925. #~ msgctxt "@text"
  5926. #~ msgid ""
  5927. #~ "Please follow these steps to set up\n"
  5928. #~ "Ultimaker Cura. This will only take a few moments."
  5929. #~ msgstr ""
  5930. #~ "Segui questa procedura per configurare\n"
  5931. #~ "Ultimaker Cura. Questa operazione richiederà solo pochi istanti."
  5932. #~ msgctxt "@label"
  5933. #~ msgid "What's new in Ultimaker Cura"
  5934. #~ msgstr "Scopri le novità in Ultimaker Cura"
  5935. #~ msgctxt "@label ({} is object name)"
  5936. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5937. #~ msgstr "Desideri rimuovere {}? Questa operazione non può essere annullata!"
  5938. #~ msgctxt "@info:status"
  5939. #~ msgid "The selected model was too small to load."
  5940. #~ msgstr "Il modello selezionato è troppo piccolo per il caricamento."
  5941. #~ msgctxt "@info:status"
  5942. #~ msgid "Successfully imported profile {0}"
  5943. #~ msgstr "Profilo importato correttamente {0}"
  5944. #~ msgctxt "@info:status"
  5945. #~ msgid "Could not find a quality type {0} for the current configuration."
  5946. #~ msgstr "Impossibile trovare un tipo qualità {0} per la configurazione corrente."
  5947. #~ msgctxt "info:status"
  5948. #~ msgid "Adding printer {} ({}) from your account"
  5949. #~ msgstr "Aggiunta della stampante {} ({}) dall'account dell'utente"
  5950. #~ msgctxt "info:hidden list items"
  5951. #~ msgid "<li>... and {} others</li>"
  5952. #~ msgstr "<li>... e {} altre</li>"
  5953. #~ msgctxt "info:status"
  5954. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5955. #~ msgstr "Stampanti aggiunte da Digital Factory:<ul>{}</ul>"
  5956. #~ msgctxt "info:status"
  5957. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5958. #~ msgstr "<ul>{}</ul>Per stabilire una connessione, visitare <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5959. #~ msgctxt "@label ({} is printer name)"
  5960. #~ 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?"
  5961. #~ 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 {}?"
  5962. #~ msgctxt "@label"
  5963. #~ msgid ""
  5964. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5965. #~ "Are you sure you want to continue?"
  5966. #~ msgstr ""
  5967. #~ "Si sta per rimuovere {} stampanti da Cura. Questa azione non può essere annullata. \n"
  5968. #~ "Continuare?"
  5969. #~ msgctxt "@label"
  5970. #~ msgid ""
  5971. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5972. #~ "Are you sure you want to continue?"
  5973. #~ msgstr ""
  5974. #~ "Si sta per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n"
  5975. #~ "Continuare?"
  5976. #~ msgctxt "@action:ComboBox option"
  5977. #~ msgid "Update"
  5978. #~ msgstr "Aggiorna"
  5979. #~ msgctxt "@action:ComboBox option"
  5980. #~ msgid "Create new"
  5981. #~ msgstr "Crea nuovo"
  5982. #~ msgctxt "@label"
  5983. #~ msgid "Shared Heater"
  5984. #~ msgstr "Riscaldatore condiviso"
  5985. #~ msgctxt "@info"
  5986. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5987. #~ msgstr "La webcam non è disponibile perché si sta controllando una stampante cloud."
  5988. #~ msgctxt "@button"
  5989. #~ msgid "Ultimaker Digital Factory"
  5990. #~ msgstr "Ultimaker Digital Factory"
  5991. #~ msgctxt "@text:window, %1 is a profile name"
  5992. #~ msgid ""
  5993. #~ "You have customized some profile settings.\n"
  5994. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5995. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5996. #~ msgstr ""
  5997. #~ "Alcune impostazioni di profilo sono state personalizzate.\n"
  5998. #~ "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n"
  5999. #~ "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'."
  6000. #~ msgctxt "@label"
  6001. #~ msgid "Overrides %1 setting."
  6002. #~ msgid_plural "Overrides %1 settings."
  6003. #~ msgstr[0] "Ignora %1 impostazione."
  6004. #~ msgstr[1] "Ignora %1 impostazioni."
  6005. #~ msgctxt "@text"
  6006. #~ msgid "Please give your printer a name"
  6007. #~ msgstr "Assegna un nome alla stampante"
  6008. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6009. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  6010. #~ msgstr "Sono disponibili nuove funzioni per la {machine_name}! Si consiglia di aggiornare il firmware sulla stampante."
  6011. #~ msgctxt "@action:button"
  6012. #~ msgid "Print via Cloud"
  6013. #~ msgstr "Stampa tramite Cloud"
  6014. #~ msgctxt "@properties:tooltip"
  6015. #~ msgid "Print via Cloud"
  6016. #~ msgstr "Stampa tramite Cloud"
  6017. #~ msgctxt "@info:status"
  6018. #~ msgid "Connected via Cloud"
  6019. #~ msgstr "Collegato tramite Cloud"
  6020. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  6021. #~ msgid "Connect to Ultimaker Cloud"
  6022. #~ msgstr "Connettiti a Ultimaker Cloud"
  6023. #~ msgctxt "@label"
  6024. #~ msgid "You need to login first before you can rate"
  6025. #~ msgstr "Prima della valutazione è necessario effettuare l’accesso"
  6026. #~ msgctxt "@label"
  6027. #~ msgid "You need to install the package before you can rate"
  6028. #~ msgstr "Prima della valutazione è necessario installare il pacchetto"
  6029. #~ msgctxt "@label"
  6030. #~ msgid "ratings"
  6031. #~ msgstr "valori"
  6032. #~ msgctxt "@label"
  6033. #~ msgid "Featured"
  6034. #~ msgstr "In primo piano"
  6035. #~ msgctxt "@label"
  6036. #~ msgid "Your rating"
  6037. #~ msgstr "I tuoi valori"
  6038. #~ msgctxt "@label"
  6039. #~ msgid "Author"
  6040. #~ msgstr "Autore"
  6041. #~ msgctxt "@description"
  6042. #~ msgid "Get plugins and materials verified by Ultimaker"
  6043. #~ msgstr "Ottieni plugin e materiali verificati da Ultimaker"
  6044. #~ msgctxt "@label The argument is a username."
  6045. #~ msgid "Hi %1"
  6046. #~ msgstr "Alto %1"
  6047. #~ msgctxt "@button"
  6048. #~ msgid "Ultimaker account"
  6049. #~ msgstr "Account Ultimaker"
  6050. #~ msgctxt "@button"
  6051. #~ msgid "Sign out"
  6052. #~ msgstr "Esci"
  6053. #~ msgctxt "@label"
  6054. #~ msgid "Support library for analysis of complex networks"
  6055. #~ msgstr "Libreria di supporto per l’analisi di reti complesse"
  6056. #~ msgctxt "@Label"
  6057. #~ msgid "Python HTTP library"
  6058. #~ msgstr "Libreria Python HTTP"
  6059. #~ msgctxt "@text:window"
  6060. #~ msgid ""
  6061. #~ "You have customized some profile settings.\n"
  6062. #~ "Would you like to keep or discard those settings?"
  6063. #~ msgstr ""
  6064. #~ "Sono state personalizzate alcune impostazioni del profilo.\n"
  6065. #~ "Mantenere o eliminare tali impostazioni?"
  6066. #~ msgctxt "@title:column"
  6067. #~ msgid "Default"
  6068. #~ msgstr "Valore predefinito"
  6069. #~ msgctxt "@title:column"
  6070. #~ msgid "Customized"
  6071. #~ msgstr "Valore personalizzato"
  6072. #~ msgctxt "@action:button"
  6073. #~ msgid "Discard"
  6074. #~ msgstr "Elimina"
  6075. #~ msgctxt "@action:button"
  6076. #~ msgid "Keep"
  6077. #~ msgstr "Mantieni"
  6078. #~ msgctxt "@action:button"
  6079. #~ msgid "Create New Profile"
  6080. #~ msgstr "Crea nuovo profilo"
  6081. #~ msgctxt "@title:menu menubar:file"
  6082. #~ msgid "&Save..."
  6083. #~ msgstr "&Salva..."
  6084. #~ msgctxt "@text"
  6085. #~ msgid "Place enter your printer's IP address."
  6086. #~ msgstr "Inserisci l'indirizzo IP della stampante."
  6087. #~ msgctxt "@button"
  6088. #~ msgid "Create an account"
  6089. #~ msgstr "Crea un account"
  6090. #~ msgctxt "@info:generic"
  6091. #~ msgid ""
  6092. #~ "\n"
  6093. #~ "Do you want to sync material and software packages with your account?"
  6094. #~ msgstr ""
  6095. #~ "\n"
  6096. #~ "Desiderate sincronizzare pacchetti materiale e software con il vostro account?"
  6097. #~ msgctxt "@info:generic"
  6098. #~ msgid ""
  6099. #~ "\n"
  6100. #~ "Syncing..."
  6101. #~ msgstr ""
  6102. #~ "\n"
  6103. #~ "Sincronizzazione in corso..."
  6104. #~ msgctxt "@info:status"
  6105. #~ 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."
  6106. #~ 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."
  6107. #~ msgctxt "@info:backup_status"
  6108. #~ msgid "There was an error listing your backups."
  6109. #~ msgstr "Si è verificato un errore nell’elenco dei backup."
  6110. #~ msgctxt "@title:groupbox"
  6111. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6112. #~ msgstr "Descrizione utente (Nota: gli sviluppatori potrebbero non parlare la lingua dell'utente. Se possibile, usare l'inglese)"
  6113. #~ msgctxt "@title:window"
  6114. #~ msgid "Closing Cura"
  6115. #~ msgstr "Chiusura di Cura"
  6116. #~ msgctxt "@label"
  6117. #~ msgid "Are you sure you want to exit Cura?"
  6118. #~ msgstr "Sei sicuro di voler uscire da Cura?"
  6119. #~ msgctxt "@label"
  6120. #~ msgid "Language:"
  6121. #~ msgstr "Lingua:"
  6122. #~ msgctxt "@label"
  6123. #~ msgid "Ultimaker Cloud"
  6124. #~ msgstr "Ultimaker Cloud"
  6125. #~ msgctxt "@text"
  6126. #~ msgid "The next generation 3D printing workflow"
  6127. #~ msgstr "Flusso di stampa 3D di ultima generazione"
  6128. #~ msgctxt "@text"
  6129. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  6130. #~ msgstr "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale"
  6131. #~ msgctxt "@text"
  6132. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  6133. #~ msgstr "- Memorizza le impostazioni Ultimaker Cura nel cloud per usarle ovunque"
  6134. #~ msgctxt "@text"
  6135. #~ msgid "- Get exclusive access to print profiles from leading brands"
  6136. #~ msgstr "- Ottieni l'accesso esclusivo ai profili di stampa dai principali marchi"
  6137. #~ msgctxt "@label"
  6138. #~ msgid "The value is resolved from per-extruder values "
  6139. #~ msgstr "Questo valore è risolto da valori per estrusore "
  6140. #~ msgctxt "@label"
  6141. #~ msgid "The next generation 3D printing workflow"
  6142. #~ msgstr "Flusso di stampa 3D di ultima generazione"
  6143. #~ msgctxt "@text"
  6144. #~ msgid ""
  6145. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6146. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6147. #~ "- Get exclusive access to print profiles from leading brands"
  6148. #~ msgstr ""
  6149. #~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  6150. #~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  6151. #~ "- Ottieni l’accesso esclusivo ai profili di stampa dai principali marchi"
  6152. #~ msgctxt "@title:window"
  6153. #~ msgid "About "
  6154. #~ msgstr "Informazioni su "
  6155. #~ msgctxt "@info:button"
  6156. #~ msgid "Quit Cura"
  6157. #~ msgstr "Esci da Cura"
  6158. #~ msgctxt "@action:checkbox"
  6159. #~ msgid "Infill only"
  6160. #~ msgstr "Solo riempimento"
  6161. #~ msgctxt "@info:tooltip"
  6162. #~ msgid "Change active post-processing scripts"
  6163. #~ msgstr "Modifica script di post-elaborazione attivi"
  6164. #~ msgctxt "@label:listbox"
  6165. #~ msgid "Feedrate"
  6166. #~ msgstr "Velocità"
  6167. #~ msgctxt "name"
  6168. #~ msgid "Machine Settings action"
  6169. #~ msgstr "Azione Impostazioni macchina"
  6170. #~ msgctxt "@info:title"
  6171. #~ msgid "New cloud printers found"
  6172. #~ msgstr "Nuove stampanti in cloud rilevate"
  6173. #~ msgctxt "@info:message"
  6174. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  6175. #~ msgstr "Sono state trovate nuove stampanti collegate al tuo account. Puoi vederle nell'elenco delle stampanti rilevate."
  6176. #~ msgctxt "@info:status"
  6177. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  6178. #~ msgstr "Cura non visualizza in modo accurato gli strati se la funzione Wire Printing è abilitata"
  6179. #~ msgctxt "@label"
  6180. #~ msgid "Pre-sliced file {0}"
  6181. #~ msgstr "File pre-sezionato {0}"
  6182. #~ msgctxt "@label"
  6183. #~ msgid ""
  6184. #~ "This plugin contains a license.\n"
  6185. #~ "You need to accept this license to install this plugin.\n"
  6186. #~ "Do you agree with the terms below?"
  6187. #~ msgstr ""
  6188. #~ "Questo plugin contiene una licenza.\n"
  6189. #~ "È necessario accettare questa licenza per poter installare il plugin.\n"
  6190. #~ "Accetti i termini sotto riportati?"
  6191. #~ msgctxt "@action:button"
  6192. #~ msgid "Accept"
  6193. #~ msgstr "Accetto"
  6194. #~ msgctxt "@action:button"
  6195. #~ msgid "Decline"
  6196. #~ msgstr "Non accetto"
  6197. #~ msgctxt "@action:inmenu"
  6198. #~ msgid "Show All Settings"
  6199. #~ msgstr "Mostra tutte le impostazioni"
  6200. #~ msgctxt "@title:window"
  6201. #~ msgid "Ultimaker Cura"
  6202. #~ msgstr "Ultimaker Cura"
  6203. #~ msgctxt "@title:window"
  6204. #~ msgid "About Cura"
  6205. #~ msgstr "Informazioni su Cura"
  6206. #~ msgctxt "@item:inmenu"
  6207. #~ msgid "Flatten active settings"
  6208. #~ msgstr "Impostazioni attive profilo appiattito"
  6209. #~ msgctxt "@info:status"
  6210. #~ msgid "Profile has been flattened & activated."
  6211. #~ msgstr "Il profilo è stato appiattito e attivato."
  6212. #~ msgctxt "X3g Writer Plugin Description"
  6213. #~ msgid "Writes X3g to files"
  6214. #~ msgstr "Scrive X3g sui file"
  6215. #~ msgctxt "X3g Writer File Description"
  6216. #~ msgid "X3g File"
  6217. #~ msgstr "File X3g"
  6218. #~ msgctxt "X3G Writer File Description"
  6219. #~ msgid "X3G File"
  6220. #~ msgstr "File X3G"
  6221. #~ msgctxt "@item:inmenu"
  6222. #~ msgid "Profile Assistant"
  6223. #~ msgstr "Assistente profilo"
  6224. #~ msgctxt "@item:inlistbox"
  6225. #~ msgid "Profile Assistant"
  6226. #~ msgstr "Assistente profilo"
  6227. #~ msgctxt "@action:button"
  6228. #~ msgid "Retry"
  6229. #~ msgstr "Riprova"
  6230. #~ msgctxt "@label:table_header"
  6231. #~ msgid "Print Core"
  6232. #~ msgstr "Print Core"
  6233. #~ msgctxt "@label"
  6234. #~ msgid "Don't support overlap with other models"
  6235. #~ msgstr "Non supporta sovrapposizione con altri modelli"
  6236. #~ msgctxt "@label"
  6237. #~ msgid "Modify settings for overlap with other models"
  6238. #~ msgstr "Modifica impostazioni per sovrapposizione con altri modelli"
  6239. #~ msgctxt "@label"
  6240. #~ msgid "Modify settings for infill of other models"
  6241. #~ msgstr "Modifica impostazioni per riempimento di altri modelli"
  6242. #~ msgctxt "@action:ComboBox option"
  6243. #~ msgid "Update existing"
  6244. #~ msgstr "Aggiorna esistente"
  6245. #~ msgctxt "@label"
  6246. #~ msgid "Not supported"
  6247. #~ msgstr "Non supportato"
  6248. #~ msgctxt "@action:button"
  6249. #~ msgid "Previous"
  6250. #~ msgstr "Precedente"
  6251. #~ msgctxt "@label"
  6252. #~ msgid "Tip"
  6253. #~ msgstr "Suggerimento"
  6254. #~ msgctxt "@label"
  6255. #~ msgid "Print experiment"
  6256. #~ msgstr "Prova di stampa"
  6257. #~ msgctxt "@label"
  6258. #~ msgid "Checklist"
  6259. #~ msgstr "Lista di controllo"
  6260. #~ msgctxt "@label"
  6261. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  6262. #~ msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker 2."
  6263. #~ msgctxt "@label"
  6264. #~ msgid "Olsson Block"
  6265. #~ msgstr "Blocco Olsson"
  6266. #~ msgctxt "@window:text"
  6267. #~ msgid "Camera rendering: "
  6268. #~ msgstr "Rendering fotocamera: "
  6269. #~ msgctxt "@info:tooltip"
  6270. #~ msgid "Use multi build plate functionality"
  6271. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo"
  6272. #~ msgctxt "@option:check"
  6273. #~ msgid "Use multi build plate functionality (restart required)"
  6274. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo (necessario riavvio)"
  6275. #~ msgctxt "@label"
  6276. #~ msgid "Default profiles"
  6277. #~ msgstr "Profili predefiniti"
  6278. #~ msgctxt "@label:textbox"
  6279. #~ msgid "search settings"
  6280. #~ msgstr "impostazioni ricerca"
  6281. #~ msgctxt "@label"
  6282. #~ msgid "Layer Height"
  6283. #~ msgstr "Altezza dello strato"
  6284. #~ msgctxt "@tooltip"
  6285. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6286. #~ 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."
  6287. #~ msgctxt "@tooltip"
  6288. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6289. #~ msgstr "Un profilo personalizzato è attualmente attivo. Per attivare il cursore qualità, selezionare un profilo di qualità predefinito nella scheda Personalizza"
  6290. #~ msgctxt "@title:menu"
  6291. #~ msgid "&Build plate"
  6292. #~ msgstr "&Piano di stampa"
  6293. #~ msgctxt "@title:settings"
  6294. #~ msgid "&Profile"
  6295. #~ msgstr "&Profilo"
  6296. #~ msgctxt "@action:label"
  6297. #~ msgid "Build plate"
  6298. #~ msgstr "Piano di stampa"
  6299. #~ msgctxt "description"
  6300. #~ msgid "Dump the contents of all settings to a HTML file."
  6301. #~ msgstr "Scarica contenuto di tutte le impostazioni in un file HTML."
  6302. #~ msgctxt "name"
  6303. #~ msgid "God Mode"
  6304. #~ msgstr "Modalità God"
  6305. #~ msgctxt "description"
  6306. #~ msgid "Create a flattened quality changes profile."
  6307. #~ msgstr "Crea un profilo appiattito di modifiche di qualità."
  6308. #~ msgctxt "name"
  6309. #~ msgid "Profile Flattener"
  6310. #~ msgstr "Appiattitore di profilo"
  6311. #~ msgctxt "description"
  6312. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6313. #~ msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in."
  6314. #~ msgctxt "name"
  6315. #~ msgid "Print Profile Assistant"
  6316. #~ msgstr "Assistente profilo di stampa"
  6317. #~ msgctxt "@info:status"
  6318. #~ msgid "Connected over the network."
  6319. #~ msgstr "Collegato alla rete."
  6320. #~ msgctxt "@info:status"
  6321. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6322. #~ msgstr "Collegato alla rete. Si prega di approvare la richiesta di accesso sulla stampante."
  6323. #~ msgctxt "@info:status"
  6324. #~ msgid "Connected over the network. No access to control the printer."
  6325. #~ msgstr "Collegato alla rete. Nessun accesso per controllare la stampante."
  6326. #~ msgctxt "@info:status"
  6327. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6328. #~ msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante"
  6329. #~ msgctxt "@info:title"
  6330. #~ msgid "Authentication status"
  6331. #~ msgstr "Stato di autenticazione"
  6332. #~ msgctxt "@info:title"
  6333. #~ msgid "Authentication Status"
  6334. #~ msgstr "Stato di autenticazione"
  6335. #~ msgctxt "@info:tooltip"
  6336. #~ msgid "Re-send the access request"
  6337. #~ msgstr "Invia nuovamente la richiesta di accesso"
  6338. #~ msgctxt "@info:status"
  6339. #~ msgid "Access to the printer accepted"
  6340. #~ msgstr "Accesso alla stampante accettato"
  6341. #~ msgctxt "@info:status"
  6342. #~ msgid "No access to print with this printer. Unable to send print job."
  6343. #~ msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa."
  6344. #~ msgctxt "@action:button"
  6345. #~ msgid "Request Access"
  6346. #~ msgstr "Richiesta di accesso"
  6347. #~ msgctxt "@info:tooltip"
  6348. #~ msgid "Send access request to the printer"
  6349. #~ msgstr "Invia la richiesta di accesso alla stampante"
  6350. #~ msgctxt "@label"
  6351. #~ msgid "Unable to start a new print job."
  6352. #~ msgstr "Impossibile avviare un nuovo processo di stampa."
  6353. #~ msgctxt "@label"
  6354. #~ 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."
  6355. #~ msgstr "È presente un problema di configurazione della stampante che rende impossibile l’avvio della stampa. Risolvere il problema prima di continuare."
  6356. #~ msgctxt "@window:title"
  6357. #~ msgid "Mismatched configuration"
  6358. #~ msgstr "Mancata corrispondenza della configurazione"
  6359. #~ msgctxt "@label"
  6360. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6361. #~ msgstr "Sei sicuro di voler stampare con la configurazione selezionata?"
  6362. #~ msgctxt "@label"
  6363. #~ 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."
  6364. #~ 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."
  6365. #~ msgctxt "@info:status"
  6366. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6367. #~ msgstr "Invio nuovi processi (temporaneamente) bloccato, invio in corso precedente processo di stampa."
  6368. #~ msgctxt "@info:status"
  6369. #~ msgid "Sending data to printer"
  6370. #~ msgstr "Invio dati alla stampante in corso"
  6371. #~ msgctxt "@info:title"
  6372. #~ msgid "Sending Data"
  6373. #~ msgstr "Invio dati"
  6374. #~ msgctxt "@info:status"
  6375. #~ msgid "No Printcore loaded in slot {slot_number}"
  6376. #~ msgstr "Nessun PrintCore caricato nello slot {slot_number}"
  6377. #~ msgctxt "@info:status"
  6378. #~ msgid "No material loaded in slot {slot_number}"
  6379. #~ msgstr "Nessun materiale caricato nello slot {slot_number}"
  6380. #~ msgctxt "@label"
  6381. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6382. #~ msgstr "PrintCore diverso (Cura: {cura_printcore_name}, Stampante: {remote_printcore_name}) selezionata per estrusore {extruder_id}"
  6383. #~ msgctxt "@label"
  6384. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6385. #~ msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  6386. #~ msgctxt "@window:title"
  6387. #~ msgid "Sync with your printer"
  6388. #~ msgstr "Sincronizzazione con la stampante"
  6389. #~ msgctxt "@label"
  6390. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6391. #~ msgstr "Desideri utilizzare la configurazione corrente della tua stampante in Cura?"
  6392. #~ msgctxt "@label"
  6393. #~ 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."
  6394. #~ 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."
  6395. #~ msgctxt "@action:button"
  6396. #~ msgid "View in Monitor"
  6397. #~ msgstr "Visualizzazione in Controlla"
  6398. #~ msgctxt "@info:status"
  6399. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6400. #~ msgstr "La stampante '{printer_name}' ha finito di stampare '{job_name}'."
  6401. #~ msgctxt "@info:status"
  6402. #~ msgid "The print job '{job_name}' was finished."
  6403. #~ msgstr "Il processo di stampa '{job_name}' è terminato."
  6404. #~ msgctxt "@info:status"
  6405. #~ msgid "Print finished"
  6406. #~ msgstr "Stampa finita"
  6407. #~ msgctxt "@label:material"
  6408. #~ msgid "Empty"
  6409. #~ msgstr "Vuoto"
  6410. #~ msgctxt "@label:material"
  6411. #~ msgid "Unknown"
  6412. #~ msgstr "Sconosciuto"
  6413. #~ msgctxt "@info:title"
  6414. #~ msgid "Cloud error"
  6415. #~ msgstr "Errore cloud"
  6416. #~ msgctxt "@info:status"
  6417. #~ msgid "Could not export print job."
  6418. #~ msgstr "Impossibile esportare il processo di stampa."
  6419. #~ msgctxt "@info:description"
  6420. #~ msgid "There was an error connecting to the cloud."
  6421. #~ msgstr "Si è verificato un errore di collegamento al cloud."
  6422. #~ msgctxt "@info:status"
  6423. #~ msgid "Uploading via Ultimaker Cloud"
  6424. #~ msgstr "Caricamento tramite Ultimaker Cloud"
  6425. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6426. #~ msgid "Connect to Ultimaker Cloud"
  6427. #~ msgstr "Collegato a Ultimaker Cloud"
  6428. #~ msgctxt "@action"
  6429. #~ msgid "Don't ask me again for this printer."
  6430. #~ msgstr "Non chiedere nuovamente per questa stampante."
  6431. #~ msgctxt "@info:status"
  6432. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6433. #~ msgstr "Ora è possibile inviare e controllare i processi di stampa ovunque con l’account Ultimaker."
  6434. #~ msgctxt "@info:status"
  6435. #~ msgid "Connected!"
  6436. #~ msgstr "Collegato!"
  6437. #~ msgctxt "@action"
  6438. #~ msgid "Review your connection"
  6439. #~ msgstr "Controlla collegamento"
  6440. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6441. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6442. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarla."
  6443. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6444. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6445. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  6446. #~ msgctxt "@window:title"
  6447. #~ msgid "Existing Connection"
  6448. #~ msgstr "Collegamento esistente"
  6449. #~ msgctxt "@message:text"
  6450. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6451. #~ msgstr "Stampante/gruppo già aggiunto a Cura. Selezionare un’altra stampante o un altro gruppo."
  6452. #~ msgctxt "@label"
  6453. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6454. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  6455. #~ msgctxt "@info:tooltip"
  6456. #~ msgid "Connect to a printer"
  6457. #~ msgstr "Collega a una stampante"
  6458. #~ msgctxt "@title"
  6459. #~ msgid "Cura Settings Guide"
  6460. #~ msgstr "Guida alle impostazioni Cura"
  6461. #~ msgctxt "@info:tooltip"
  6462. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6463. #~ msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  6464. #~ msgid "Orthogonal"
  6465. #~ msgstr "Ortogonale"
  6466. #~ msgctxt "description"
  6467. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6468. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3."
  6469. #~ msgctxt "name"
  6470. #~ msgid "UM3 Network Connection"
  6471. #~ msgstr "Connessione di rete UM3"
  6472. #~ msgctxt "description"
  6473. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6474. #~ msgstr "Fornisce informazioni e spiegazioni aggiuntive sulle impostazioni in Cura, con immagini e animazioni."
  6475. #~ msgctxt "name"
  6476. #~ msgid "Settings Guide"
  6477. #~ msgstr "Guida alle impostazioni"
  6478. #~ msgctxt "@item:inmenu"
  6479. #~ msgid "Cura Settings Guide"
  6480. #~ msgstr "Guida alle impostazioni Cura"
  6481. #~ msgctxt "@info:generic"
  6482. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6483. #~ msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori: [%s]"
  6484. #~ msgctxt "@title:groupbox"
  6485. #~ msgid "User description"
  6486. #~ msgstr "Descrizione utente"
  6487. #~ msgctxt "@info"
  6488. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6489. #~ msgstr "Queste opzioni non sono disponibili perché si sta controllando una stampante cloud."
  6490. #~ msgctxt "@label link to connect manager"
  6491. #~ msgid "Go to Cura Connect"
  6492. #~ msgstr "Vai a Cura Connect"
  6493. #~ msgctxt "@info"
  6494. #~ msgid "All jobs are printed."
  6495. #~ msgstr "Tutti i processi sono stampati."
  6496. #~ msgctxt "@label link to connect manager"
  6497. #~ msgid "View print history"
  6498. #~ msgstr "Visualizza cronologia di stampa"
  6499. #~ msgctxt "@label"
  6500. #~ msgid ""
  6501. #~ "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"
  6502. #~ "\n"
  6503. #~ "Select your printer from the list below:"
  6504. #~ msgstr ""
  6505. #~ "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"
  6506. #~ "\n"
  6507. #~ "Selezionare la stampante dall’elenco seguente:"
  6508. #~ msgctxt "@info"
  6509. #~ msgid ""
  6510. #~ "Please make sure your printer has a connection:\n"
  6511. #~ "- Check if the printer is turned on.\n"
  6512. #~ "- Check if the printer is connected to the network."
  6513. #~ msgstr ""
  6514. #~ "Accertarsi che la stampante sia collegata:\n"
  6515. #~ "- Controllare se la stampante è accesa.\n"
  6516. #~ "- Controllare se la stampante è collegata alla rete."
  6517. #~ msgctxt "@option:check"
  6518. #~ msgid "See only current build plate"
  6519. #~ msgstr "Vedi solo il piano di stampa corrente"
  6520. #~ msgctxt "@action:button"
  6521. #~ msgid "Arrange to all build plates"
  6522. #~ msgstr "Sistema su tutti i piani di stampa"
  6523. #~ msgctxt "@action:button"
  6524. #~ msgid "Arrange current build plate"
  6525. #~ msgstr "Sistema il piano di stampa corrente"
  6526. #~ msgctxt "description"
  6527. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6528. #~ 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)."
  6529. #~ msgctxt "name"
  6530. #~ msgid "X3GWriter"
  6531. #~ msgstr "X3GWriter"
  6532. #~ msgctxt "description"
  6533. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6534. #~ msgstr "Legge i file SVG come toolpath (percorsi utensile), per eseguire il debug dei movimenti della stampante."
  6535. #~ msgctxt "name"
  6536. #~ msgid "SVG Toolpath Reader"
  6537. #~ msgstr "Lettore di toolpath (percorso utensile) SVG"
  6538. #~ msgctxt "@item:inmenu"
  6539. #~ msgid "Changelog"
  6540. #~ msgstr "Registro modifiche"
  6541. #~ msgctxt "@item:inmenu"
  6542. #~ msgid "Show Changelog"
  6543. #~ msgstr "Visualizza registro modifiche"
  6544. #~ msgctxt "@info:status"
  6545. #~ msgid "Sending data to remote cluster"
  6546. #~ msgstr "Invio dati al cluster remoto"
  6547. #~ msgctxt "@info:status"
  6548. #~ msgid "Connect to Ultimaker Cloud"
  6549. #~ msgstr "Collegato a Ultimaker Cloud"
  6550. #~ msgctxt "@info"
  6551. #~ msgid "Cura collects anonymized usage statistics."
  6552. #~ msgstr "Cura raccoglie statistiche di utilizzo in forma anonima."
  6553. #~ msgctxt "@info:title"
  6554. #~ msgid "Collecting Data"
  6555. #~ msgstr "Acquisizione dati"
  6556. #~ msgctxt "@action:button"
  6557. #~ msgid "More info"
  6558. #~ msgstr "Per saperne di più"
  6559. #~ msgctxt "@action:tooltip"
  6560. #~ msgid "See more information on what data Cura sends."
  6561. #~ msgstr "Vedere ulteriori informazioni sui dati inviati da Cura."
  6562. #~ msgctxt "@action:button"
  6563. #~ msgid "Allow"
  6564. #~ msgstr "Consenti"
  6565. #~ msgctxt "@action:tooltip"
  6566. #~ 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."
  6567. #~ 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."
  6568. #~ msgctxt "@item:inmenu"
  6569. #~ msgid "Evaluation"
  6570. #~ msgstr "Valutazione"
  6571. #~ msgctxt "@info:title"
  6572. #~ msgid "Network enabled printers"
  6573. #~ msgstr "Stampanti abilitate per la rete"
  6574. #~ msgctxt "@info:title"
  6575. #~ msgid "Local printers"
  6576. #~ msgstr "Stampanti locali"
  6577. #~ msgctxt "@info:backup_failed"
  6578. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6579. #~ msgstr "Tentativo di ripristinare un backup di Cura non corrispondente alla versione corrente."
  6580. #~ msgctxt "@title"
  6581. #~ msgid "Machine Settings"
  6582. #~ msgstr "Impostazioni macchina"
  6583. #~ msgctxt "@label"
  6584. #~ msgid "Printer Settings"
  6585. #~ msgstr "Impostazioni della stampante"
  6586. #~ msgctxt "@option:check"
  6587. #~ msgid "Origin at center"
  6588. #~ msgstr "Origine al centro"
  6589. #~ msgctxt "@option:check"
  6590. #~ msgid "Heated bed"
  6591. #~ msgstr "Piano riscaldato"
  6592. #~ msgctxt "@label"
  6593. #~ msgid "Printhead Settings"
  6594. #~ msgstr "Impostazioni della testina di stampa"
  6595. #~ msgctxt "@tooltip"
  6596. #~ 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\"."
  6597. #~ 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\"."
  6598. #~ msgctxt "@tooltip"
  6599. #~ 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\"."
  6600. #~ 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\"."
  6601. #~ msgctxt "@tooltip"
  6602. #~ 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\"."
  6603. #~ 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\"."
  6604. #~ msgctxt "@tooltip"
  6605. #~ 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\"."
  6606. #~ 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\"."
  6607. #~ msgctxt "@label"
  6608. #~ msgid "Gantry height"
  6609. #~ msgstr "Altezza gantry"
  6610. #~ msgctxt "@tooltip"
  6611. #~ 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\"."
  6612. #~ 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\"."
  6613. #~ msgctxt "@label"
  6614. #~ msgid "Start G-code"
  6615. #~ msgstr "Codice G avvio"
  6616. #~ msgctxt "@tooltip"
  6617. #~ msgid "G-code commands to be executed at the very start."
  6618. #~ msgstr "Comandi codice G da eseguire all’avvio."
  6619. #~ msgctxt "@label"
  6620. #~ msgid "End G-code"
  6621. #~ msgstr "Codice G fine"
  6622. #~ msgctxt "@tooltip"
  6623. #~ msgid "G-code commands to be executed at the very end."
  6624. #~ msgstr "Comandi codice G da eseguire alla fine."
  6625. #~ msgctxt "@label"
  6626. #~ msgid "Nozzle Settings"
  6627. #~ msgstr "Impostazioni ugello"
  6628. #~ msgctxt "@tooltip"
  6629. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6630. #~ msgstr "Diametro nominale del filamento supportato dalla stampante. Il diametro esatto verrà sovrapposto dal materiale e/o dal profilo."
  6631. #~ msgctxt "@label"
  6632. #~ msgid "Extruder Start G-code"
  6633. #~ msgstr "Codice G avvio estrusore"
  6634. #~ msgctxt "@label"
  6635. #~ msgid "Extruder End G-code"
  6636. #~ msgstr "Codice G fine estrusore"
  6637. #~ msgctxt "@label"
  6638. #~ msgid "Changelog"
  6639. #~ msgstr "Registro modifiche"
  6640. #~ msgctxt "@title:window"
  6641. #~ msgid "User Agreement"
  6642. #~ msgstr "Contratto di licenza"
  6643. #~ msgctxt "@alabel"
  6644. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6645. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  6646. #~ msgctxt "@info"
  6647. #~ msgid "Please select a network connected printer to monitor."
  6648. #~ msgstr "Selezionare una stampante collegata alla rete per controllare."
  6649. #~ msgctxt "@info"
  6650. #~ msgid "Please connect your Ultimaker printer to your local network."
  6651. #~ msgstr "Collegare la stampante Ultimaker alla rete locale."
  6652. #~ msgctxt "@text:window"
  6653. #~ 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."
  6654. #~ 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."
  6655. #~ msgctxt "@text:window"
  6656. #~ msgid "I don't want to send this data"
  6657. #~ msgstr "Non desidero inviare questi dati"
  6658. #~ msgctxt "@text:window"
  6659. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6660. #~ msgstr "Consenti l’invio di questi dati ad Ultimaker e aiutaci ad ottimizzare Cura"
  6661. #~ msgctxt "@label"
  6662. #~ msgid "No print selected"
  6663. #~ msgstr "Nessuna stampante selezionata"
  6664. #~ msgctxt "@info:tooltip"
  6665. #~ 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."
  6666. #~ 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."
  6667. #~ msgctxt "@title"
  6668. #~ msgid "Select Printer Upgrades"
  6669. #~ msgstr "Seleziona gli aggiornamenti della stampante"
  6670. #~ msgctxt "@label"
  6671. #~ 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."
  6672. #~ 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."
  6673. #~ msgctxt "@tooltip"
  6674. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6675. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  6676. #~ msgctxt "@label shown when we load a Gcode file"
  6677. #~ msgid "Print setup disabled. G code file can not be modified."
  6678. #~ msgstr "Impostazione di stampa disabilitata. Impossibile modificare il file codice G."
  6679. #~ msgctxt "@label"
  6680. #~ msgid "See the material compatibility chart"
  6681. #~ msgstr "Vedere il grafico di compatibilità dei materiali"
  6682. #~ msgctxt "@label"
  6683. #~ msgid "View types"
  6684. #~ msgstr "Visualizza tipi"
  6685. #~ msgctxt "@label"
  6686. #~ msgid "Hi "
  6687. #~ msgstr "Ciao "
  6688. #~ msgctxt "@text"
  6689. #~ msgid ""
  6690. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6691. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6692. #~ "- Get exclusive access to material profiles from leading brands"
  6693. #~ msgstr ""
  6694. #~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  6695. #~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  6696. #~ "- Ottieni l’accesso esclusivo ai profili materiale da marchi leader"
  6697. #~ msgctxt "@label:PrintjobStatus"
  6698. #~ msgid "Unable to Slice"
  6699. #~ msgstr "Sezionamento impossibile"
  6700. #~ msgctxt "@label"
  6701. #~ msgid "Time specification"
  6702. #~ msgstr "Indicazioni di tempo"
  6703. #~ msgctxt "@label"
  6704. #~ msgid "Material specification"
  6705. #~ msgstr "Specifiche materiale"
  6706. #~ msgctxt "@title:tab"
  6707. #~ msgid "Add a printer to Cura"
  6708. #~ msgstr "Aggiungi una stampante a Cura"
  6709. #~ msgctxt "@title:tab"
  6710. #~ msgid ""
  6711. #~ "Select the printer you want to use from the list below.\n"
  6712. #~ "\n"
  6713. #~ "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."
  6714. #~ msgstr ""
  6715. #~ "Seleziona la stampante da usare dell’elenco seguente.\n"
  6716. #~ "\n"
  6717. #~ "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."
  6718. #~ msgctxt "@label"
  6719. #~ msgid "Printer Name"
  6720. #~ msgstr "Nome stampante"
  6721. #~ msgctxt "@action:button"
  6722. #~ msgid "Add Printer"
  6723. #~ msgstr "Aggiungi stampante"
  6724. #~ msgid "Modify G-Code"
  6725. #~ msgstr "Modifica G-code"
  6726. #~ msgctxt "@info:status"
  6727. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6728. #~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa. Ridimensionare o ruotare i modelli secondo necessità."
  6729. #~ msgctxt "@info:status"
  6730. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6731. #~ msgstr "Il materiale selezionato è incompatibile con la macchina o la configurazione selezionata."
  6732. #~ msgctxt "@info:title"
  6733. #~ msgid "Incompatible Material"
  6734. #~ msgstr "Materiale incompatibile"
  6735. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6736. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6737. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>: <message>{1}</message>"
  6738. #~ msgctxt "@title"
  6739. #~ msgid "Toolbox"
  6740. #~ msgstr "Casella degli strumenti"
  6741. #~ msgctxt "@label"
  6742. #~ msgid "Not available"
  6743. #~ msgstr "Non disponibile"
  6744. #~ msgctxt "@label"
  6745. #~ msgid "Unreachable"
  6746. #~ msgstr "Non raggiungibile"
  6747. #~ msgctxt "@label"
  6748. #~ msgid "Available"
  6749. #~ msgstr "Disponibile"
  6750. #~ msgctxt "@label:status"
  6751. #~ msgid "Preparing"
  6752. #~ msgstr "Preparazione in corso"
  6753. #~ msgctxt "@label:status"
  6754. #~ msgid "Pausing"
  6755. #~ msgstr "Messa in pausa"
  6756. #~ msgctxt "@label:status"
  6757. #~ msgid "Resuming"
  6758. #~ msgstr "Ripresa"
  6759. #~ msgctxt "@label"
  6760. #~ msgid "Waiting for: Unavailable printer"
  6761. #~ msgstr "In attesa: stampante non disponibile"
  6762. #~ msgctxt "@label"
  6763. #~ msgid "Waiting for: First available"
  6764. #~ msgstr "In attesa della prima disponibile"
  6765. #~ msgctxt "@label"
  6766. #~ msgid "Waiting for: "
  6767. #~ msgstr "In attesa: "
  6768. #~ msgctxt "@label"
  6769. #~ msgid "Configuration change"
  6770. #~ msgstr "Modifica configurazione"
  6771. #~ msgctxt "@label"
  6772. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6773. #~ msgstr "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  6774. #~ msgctxt "@label"
  6775. #~ msgid "Override"
  6776. #~ msgstr "Override"
  6777. #~ msgctxt "@label"
  6778. #~ 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?"
  6779. #~ 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?"
  6780. #~ msgctxt "@window:title"
  6781. #~ msgid "Override configuration configuration and start print"
  6782. #~ msgstr "Annullare la configurazione e avviare la stampa"
  6783. #~ msgctxt "@label link to connect manager"
  6784. #~ msgid "Manage queue"
  6785. #~ msgstr "Gestione coda di stampa"
  6786. #~ msgctxt "@label"
  6787. #~ msgid "Printing"
  6788. #~ msgstr "Stampa in corso"
  6789. #~ msgctxt "@label link to connect manager"
  6790. #~ msgid "Manage printers"
  6791. #~ msgstr "Gestione stampanti"
  6792. #~ msgctxt "@action:button"
  6793. #~ msgid "Activate Configuration"
  6794. #~ msgstr "Attiva la configurazione"
  6795. #~ msgctxt "@info:tooltip"
  6796. #~ msgid "Load the configuration of the printer into Cura"
  6797. #~ msgstr "Carica la configurazione della stampante in Cura"
  6798. #~ msgctxt "@label"
  6799. #~ msgid "Show Travels"
  6800. #~ msgstr "Mostra spostamenti"
  6801. #~ msgctxt "@label"
  6802. #~ msgid "Show Helpers"
  6803. #~ msgstr "Mostra helper"
  6804. #~ msgctxt "@label"
  6805. #~ msgid "Show Shell"
  6806. #~ msgstr "Mostra guscio"
  6807. #~ msgctxt "@label"
  6808. #~ msgid "Show Infill"
  6809. #~ msgstr "Mostra riempimento"
  6810. #~ msgctxt "@text:window"
  6811. #~ msgid "I don't want to send these data"
  6812. #~ msgstr "Non voglio inviare questi dati"
  6813. #~ msgctxt "@text:window"
  6814. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6815. #~ msgstr "Il consenso all'invio di questi dati ad Ultimaker ci aiuta ad ottimizzare Cura"
  6816. #~ msgctxt "@label"
  6817. #~ msgid "Printer type:"
  6818. #~ msgstr "Tipo di stampante:"
  6819. #~ msgctxt "@label"
  6820. #~ msgid "Connection:"
  6821. #~ msgstr "Collegamento:"
  6822. #~ msgctxt "@label"
  6823. #~ msgid "State:"
  6824. #~ msgstr "Stato:"
  6825. #~ msgctxt "@label:MonitorStatus"
  6826. #~ msgid "Waiting for a printjob"
  6827. #~ msgstr "In attesa di un processo di stampa"
  6828. #~ msgctxt "@label:MonitorStatus"
  6829. #~ msgid "Waiting for someone to clear the build plate"
  6830. #~ msgstr "In attesa di qualcuno che cancelli il piano di stampa"
  6831. #~ msgctxt "@label:MonitorStatus"
  6832. #~ msgid "Aborting print..."
  6833. #~ msgstr "Interruzione stampa in corso..."
  6834. #~ msgctxt "@label"
  6835. #~ msgid "Protected profiles"
  6836. #~ msgstr "Profili protetti"
  6837. #~ msgctxt "@label"
  6838. #~ msgid "Printer Name:"
  6839. #~ msgstr "Nome stampante:"
  6840. #~ msgctxt "@label"
  6841. #~ msgid "Profile:"
  6842. #~ msgstr "Profilo:"
  6843. #~ msgctxt "@label:textbox"
  6844. #~ msgid "Search..."
  6845. #~ msgstr "Ricerca..."
  6846. #~ msgctxt "@action:inmenu"
  6847. #~ msgid "Collapse All"
  6848. #~ msgstr "Comprimi tutto"
  6849. #~ msgctxt "@action:inmenu"
  6850. #~ msgid "Expand All"
  6851. #~ msgstr "Espandi tutto"
  6852. #~ msgctxt "@label:header configurations"
  6853. #~ msgid "Available configurations"
  6854. #~ msgstr "Configurazioni disponibili"
  6855. #~ msgctxt "@label:extruder label"
  6856. #~ msgid "Extruder"
  6857. #~ msgstr "Estrusore"
  6858. #~ msgctxt "@label:extruder label"
  6859. #~ msgid "Yes"
  6860. #~ msgstr "Sì"
  6861. #~ msgctxt "@label:extruder label"
  6862. #~ msgid "No"
  6863. #~ msgstr "No"
  6864. #~ msgctxt "@label:listbox"
  6865. #~ msgid "Print Setup"
  6866. #~ msgstr "Impostazione di stampa"
  6867. #~ msgctxt "@label:listbox"
  6868. #~ msgid ""
  6869. #~ "Print Setup disabled\n"
  6870. #~ "G-code files cannot be modified"
  6871. #~ msgstr ""
  6872. #~ "Impostazione di stampa disabilitata\n"
  6873. #~ "I file codice G non possono essere modificati"
  6874. #~ msgctxt "@label Hours and minutes"
  6875. #~ msgid "00h 00min"
  6876. #~ msgstr "00h 00min"
  6877. #~ msgctxt "@tooltip"
  6878. #~ msgid "Time specification"
  6879. #~ msgstr "Indicazioni di tempo"
  6880. #~ msgctxt "@label"
  6881. #~ msgid "Cost specification"
  6882. #~ msgstr "Indicazione di costo"
  6883. #~ msgctxt "@label"
  6884. #~ msgid "Total:"
  6885. #~ msgstr "Totale:"
  6886. #~ msgctxt "@tooltip"
  6887. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6888. #~ msgstr "<b>Impostazione di stampa consigliata</b><br/><br/>Stampa con le impostazioni consigliate per la stampante, il materiale e la qualità selezionati."
  6889. #~ msgctxt "@tooltip"
  6890. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6891. #~ msgstr "<b>Impostazione di stampa personalizzata</b><br/><br/>Stampa con il controllo grana fine su ogni sezione finale del processo di sezionamento."
  6892. #~ msgctxt "@action:inmenu menubar:help"
  6893. #~ msgid "Show Engine &Log..."
  6894. #~ msgstr "Mostra &log motore..."
  6895. #~ msgctxt "@action:menu"
  6896. #~ msgid "Browse packages..."
  6897. #~ msgstr "Sfoglia i pacchetti..."
  6898. #~ msgctxt "@action:inmenu menubar:view"
  6899. #~ msgid "Expand/Collapse Sidebar"
  6900. #~ msgstr "Espandi/Riduci barra laterale"
  6901. #~ msgctxt "@label:PrintjobStatus"
  6902. #~ msgid "Please load a 3D model"
  6903. #~ msgstr "Caricare un modello 3D"
  6904. #~ msgctxt "@label:PrintjobStatus"
  6905. #~ msgid "Ready to slice"
  6906. #~ msgstr "Pronto per il sezionamento"
  6907. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6908. #~ msgid "Ready to %1"
  6909. #~ msgstr "Pronto a %1"
  6910. #~ msgctxt "@label:PrintjobStatus"
  6911. #~ msgid "Slicing unavailable"
  6912. #~ msgstr "Sezionamento non disponibile"
  6913. #~ msgctxt "@info:tooltip"
  6914. #~ msgid "Slice current printjob"
  6915. #~ msgstr "Seziona processo di stampa corrente"
  6916. #~ msgctxt "@info:tooltip"
  6917. #~ msgid "Cancel slicing process"
  6918. #~ msgstr "Annulla processo di sezionamento"
  6919. #~ msgctxt "@label:Printjob"
  6920. #~ msgid "Prepare"
  6921. #~ msgstr "Prepara"
  6922. #~ msgctxt "@label:Printjob"
  6923. #~ msgid "Cancel"
  6924. #~ msgstr "Annulla"
  6925. #~ msgctxt "@info:tooltip"
  6926. #~ msgid "Select the active output device"
  6927. #~ msgstr "Seleziona l'unità di uscita attiva"
  6928. #~ msgctxt "@title:menu"
  6929. #~ msgid "&View"
  6930. #~ msgstr "&Visualizza"
  6931. #~ msgctxt "@title:menu"
  6932. #~ msgid "&Settings"
  6933. #~ msgstr "&Impostazioni"
  6934. #~ msgctxt "@title:menu menubar:toplevel"
  6935. #~ msgid "&Toolbox"
  6936. #~ msgstr "&Casella degli strumenti"
  6937. #~ msgctxt "@action:button"
  6938. #~ msgid "Open File"
  6939. #~ msgstr "Apri file"
  6940. #~ msgctxt "@tooltip"
  6941. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6942. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  6943. #~ msgctxt "@label"
  6944. #~ msgid "Print Speed"
  6945. #~ msgstr "Velocità di stampa"
  6946. #~ msgctxt "@label"
  6947. #~ msgid "Slower"
  6948. #~ msgstr "Più lenta"
  6949. #~ msgctxt "@label"
  6950. #~ msgid "Faster"
  6951. #~ msgstr "Più veloce"
  6952. #~ msgctxt "@label"
  6953. #~ msgid "Enable gradual"
  6954. #~ msgstr "Consenti variazione graduale"
  6955. #~ msgctxt "@label"
  6956. #~ msgid "Generate Support"
  6957. #~ msgstr "Generazione supporto"
  6958. #~ msgctxt "@label"
  6959. #~ msgid "Build Plate Adhesion"
  6960. #~ msgstr "Adesione piano di stampa"
  6961. #~ msgctxt "@label"
  6962. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6963. #~ msgstr "Serve aiuto per migliorare le tue stampe? <br>Leggi <a href='%1'>la Guida alla ricerca e riparazione guasti Ultimaker</a>"
  6964. #~ msgctxt "@title:window"
  6965. #~ msgid "Engine Log"
  6966. #~ msgstr "Log motore"
  6967. #~ msgctxt "@label"
  6968. #~ msgid "Printer type"
  6969. #~ msgstr "Tipo di stampante"
  6970. #~ msgctxt "@label"
  6971. #~ msgid "Use glue with this material combination"
  6972. #~ msgstr "Utilizzare la colla con questa combinazione di materiali"
  6973. #~ msgctxt "@label"
  6974. #~ msgid "Check compatibility"
  6975. #~ msgstr "Controlla compatibilità"
  6976. #~ msgctxt "@tooltip"
  6977. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6978. #~ msgstr "Fai clic per verificare la compatibilità del materiale su Ultimaker.com."
  6979. #~ msgctxt "description"
  6980. #~ msgid "Shows changes since latest checked version."
  6981. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  6982. #~ msgctxt "name"
  6983. #~ msgid "Changelog"
  6984. #~ msgstr "Registro modifiche"
  6985. #~ msgctxt "description"
  6986. #~ msgid "Create a flattend quality changes profile."
  6987. #~ msgstr "Crea un profilo appiattito."
  6988. #~ msgctxt "name"
  6989. #~ msgid "Profile flatener"
  6990. #~ msgstr "Appiattitore di profilo"
  6991. #~ msgctxt "description"
  6992. #~ msgid "Ask the user once if he/she agrees with our license."
  6993. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza."
  6994. #~ msgctxt "name"
  6995. #~ msgid "UserAgreement"
  6996. #~ msgstr "Contratto di licenza"
  6997. #~ msgctxt "@warning:status"
  6998. #~ msgid "Please generate G-code before saving."
  6999. #~ msgstr "Generare il codice G prima di salvare."
  7000. #~ msgctxt "@action"
  7001. #~ msgid "Upgrade Firmware"
  7002. #~ msgstr "Aggiorna firmware"
  7003. #~ msgctxt "@label unknown material"
  7004. #~ msgid "Unknown"
  7005. #~ msgstr "Sconosciuto"
  7006. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7007. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  7008. #~ msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  7009. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7010. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  7011. #~ msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  7012. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7013. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  7014. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarlo."
  7015. #~ msgctxt "@title:window"
  7016. #~ msgid "Confirm uninstall "
  7017. #~ msgstr "Conferma disinstalla "
  7018. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  7019. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7020. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7021. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  7022. #~ msgid "%1m / ~ %2g"
  7023. #~ msgstr "%1m / ~ %2g"
  7024. #~ msgctxt "@title"
  7025. #~ msgid "Upgrade Firmware"
  7026. #~ msgstr "Aggiorna firmware"
  7027. #~ msgctxt "@action:button"
  7028. #~ msgid "Print with Doodle3D WiFi-Box"
  7029. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  7030. #~ msgctxt "@properties:tooltip"
  7031. #~ msgid "Print with Doodle3D WiFi-Box"
  7032. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  7033. #~ msgctxt "@info:status"
  7034. #~ msgid "Connecting to Doodle3D Connect"
  7035. #~ msgstr "Collegamento a Doodle3D Connect"
  7036. #~ msgctxt "@info:status"
  7037. #~ msgid "Sending data to Doodle3D Connect"
  7038. #~ msgstr "Invio dati a Doodle3D Connect"
  7039. #~ msgctxt "@info:status"
  7040. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  7041. #~ msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?"
  7042. #~ msgctxt "@info:status"
  7043. #~ msgid "Storing data on Doodle3D Connect"
  7044. #~ msgstr "Memorizzazione dati su Doodle3D Connect"
  7045. #~ msgctxt "@info:status"
  7046. #~ msgid "File sent to Doodle3D Connect"
  7047. #~ msgstr "File inviato a Doodle3D Connect"
  7048. #~ msgctxt "@action:button"
  7049. #~ msgid "Open Connect..."
  7050. #~ msgstr "Apri Connect..."
  7051. #~ msgctxt "@info:tooltip"
  7052. #~ msgid "Open the Doodle3D Connect web interface"
  7053. #~ msgstr "Apri interfaccia web Doodle3D Connect"
  7054. #~ msgctxt "@item:inlistbox"
  7055. #~ msgid "Blender file"
  7056. #~ msgstr "File Blender"
  7057. #~ msgctxt "@info:status"
  7058. #~ msgid ""
  7059. #~ "Could not export using \"{}\" quality!\n"
  7060. #~ "Felt back to \"{}\"."
  7061. #~ msgstr ""
  7062. #~ "Impossibile esportare utilizzando qualità \"{}\" quality!\n"
  7063. #~ "Tornato a \"{}\"."
  7064. #~ msgctxt "@label"
  7065. #~ msgid "Contact"
  7066. #~ msgstr "Contatto"
  7067. #~ msgctxt "@label"
  7068. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  7069. #~ msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3."
  7070. #~ msgctxt "@label"
  7071. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  7072. #~ msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3."
  7073. #~ msgctxt "@label: arg 1 is group name"
  7074. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  7075. #~ msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  7076. #~ msgctxt "@label link to connect manager"
  7077. #~ msgid "Add/Remove printers"
  7078. #~ msgstr "Aggiungi/Rimuovi stampanti"
  7079. #~ msgctxt "@info:tooltip"
  7080. #~ msgid "Opens the print jobs page with your default web browser."
  7081. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  7082. #~ msgctxt "@action:button"
  7083. #~ msgid "View print jobs"
  7084. #~ msgstr "Visualizza processi di stampa"
  7085. #~ msgctxt "@label:status"
  7086. #~ msgid "Preparing to print"
  7087. #~ msgstr "Preparazione della stampa"
  7088. #~ msgctxt "@label:status"
  7089. #~ msgid "Available"
  7090. #~ msgstr "Disponibile"
  7091. #~ msgctxt "@label:status"
  7092. #~ msgid "Lost connection with the printer"
  7093. #~ msgstr "Persa connessione con la stampante"
  7094. #~ msgctxt "@label:status"
  7095. #~ msgid "Unknown"
  7096. #~ msgstr "Sconosciuto"
  7097. #~ msgctxt "@label:status"
  7098. #~ msgid "Disabled"
  7099. #~ msgstr "Disabilitato"
  7100. #~ msgctxt "@label:status"
  7101. #~ msgid "Reserved"
  7102. #~ msgstr "Riservato"
  7103. #~ msgctxt "@label"
  7104. #~ msgid "Preparing to print"
  7105. #~ msgstr "Preparazione della stampa"
  7106. #~ msgctxt "@label:status"
  7107. #~ msgid "Print aborted"
  7108. #~ msgstr "Stampa interrotta"
  7109. #~ msgctxt "@label"
  7110. #~ msgid "Not accepting print jobs"
  7111. #~ msgstr "Mancata accettazione processi di stampa"
  7112. #~ msgctxt "@label"
  7113. #~ msgid "Finishes at: "
  7114. #~ msgstr "Finisce alle: "
  7115. #~ msgctxt "@label"
  7116. #~ msgid "Clear build plate"
  7117. #~ msgstr "Cancellare piano di stampa"
  7118. #~ msgctxt "@label"
  7119. #~ msgid "Waiting for configuration change"
  7120. #~ msgstr "In attesa di modifica configurazione"
  7121. #~ msgctxt "@title"
  7122. #~ msgid "Print jobs"
  7123. #~ msgstr "Processi di stampa"
  7124. #~ msgctxt "@label:title"
  7125. #~ msgid "Printers"
  7126. #~ msgstr "Stampanti"
  7127. #~ msgctxt "@action:button"
  7128. #~ msgid "View printers"
  7129. #~ msgstr "Visualizza stampanti"
  7130. #~ msgctxt "@label:"
  7131. #~ msgid "Pause"
  7132. #~ msgstr "Pausa"
  7133. #~ msgctxt "@label:"
  7134. #~ msgid "Resume"
  7135. #~ msgstr "Riprendi"
  7136. #~ msgctxt "@label:"
  7137. #~ msgid "Abort Print"
  7138. #~ msgstr "Interrompi la stampa"
  7139. #~ msgctxt "@option:openProject"
  7140. #~ msgid "Always ask"
  7141. #~ msgstr "Chiedi sempre"
  7142. #~ msgctxt "@label"
  7143. #~ msgid "Override Profile"
  7144. #~ msgstr "Override profilo"
  7145. #~ msgctxt "@info:tooltip"
  7146. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  7147. #~ msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)"
  7148. #~ msgctxt "@option:check"
  7149. #~ msgid "Do not arrange objects on load"
  7150. #~ msgstr "Non posizionare oggetti sul carico"
  7151. #~ msgctxt "@action:inmenu menubar:file"
  7152. #~ msgid "&Save Selection to File"
  7153. #~ msgstr "&Salva selezione su file"
  7154. #~ msgctxt "@title:menu menubar:file"
  7155. #~ msgid "Save &As..."
  7156. #~ msgstr "Salva &come..."
  7157. #~ msgctxt "@title:menu menubar:file"
  7158. #~ msgid "Save &Project..."
  7159. #~ msgstr "Salva &progetto..."
  7160. # Added after the string freeze.
  7161. #~ msgctxt "@label"
  7162. #~ msgid "Use adhesion sheet or glue with this material combination"
  7163. #~ msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali"
  7164. #~ msgctxt "description"
  7165. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7166. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  7167. #~ msgctxt "name"
  7168. #~ msgid "Doodle3D WiFi-Box"
  7169. #~ msgstr "Doodle3D WiFi-Box"
  7170. #~ msgctxt "description"
  7171. #~ msgid "Provides an edit window for direct script editing."
  7172. #~ msgstr "Fornisce una finestra di modifica per la modifica script diretta."
  7173. #~ msgctxt "name"
  7174. #~ msgid "Live scripting tool"
  7175. #~ msgstr "Strumento di script diretto"
  7176. #~ msgctxt "description"
  7177. #~ msgid "Helps to open Blender files directly in Cura."
  7178. #~ msgstr "Aiuta ad aprire i file Blender direttamente in Cura."
  7179. #~ msgctxt "name"
  7180. #~ msgid "Blender Integration (experimental)"
  7181. #~ msgstr "Integrazione Blender (sperimentale)"
  7182. #~ msgctxt "@info:title"
  7183. #~ msgid "Model Checker Warning"
  7184. #~ msgstr "Avvertenza controllo modello"
  7185. #~ msgctxt "@info:status"
  7186. #~ msgid ""
  7187. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  7188. #~ "Tips that may be useful to improve the print quality:\n"
  7189. #~ "1) Use rounded corners.\n"
  7190. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  7191. #~ "3) Use a different material."
  7192. #~ msgstr ""
  7193. #~ "Alcuni modelli potrebbero non essere stampati in modo ottimale a causa delle dimensioni dell’oggetto e del materiale scelto: {model_names}.\n"
  7194. #~ "Suggerimenti utili per migliorare la qualità di stampa:\n"
  7195. #~ "1) Utilizzare angoli arrotondati.\n"
  7196. #~ "2) Spegnere la ventola (solo se non vi sono piccoli dettagli sul modello).\n"
  7197. #~ "3) Utilizzare un materiale diverso."
  7198. #~ msgctxt "@info:status"
  7199. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7200. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  7201. #~ msgctxt "@info:status"
  7202. #~ msgid ""
  7203. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  7204. #~ "\n"
  7205. #~ "Thanks!"
  7206. #~ msgstr ""
  7207. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  7208. #~ "\n"
  7209. #~ "Grazie."
  7210. #~ msgctxt "@info:status"
  7211. #~ msgid ""
  7212. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7213. #~ "\n"
  7214. #~ "Sorry!"
  7215. #~ msgstr ""
  7216. #~ "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"
  7217. #~ "\n"
  7218. #~ " Spiacenti."
  7219. #~ msgctxt "@item:inlistbox"
  7220. #~ msgid "SolidWorks part file"
  7221. #~ msgstr "File part SolidWorks"
  7222. #~ msgctxt "@item:inlistbox"
  7223. #~ msgid "SolidWorks assembly file"
  7224. #~ msgstr "File gruppo SolidWorks"
  7225. #~ msgctxt "@item:inlistbox"
  7226. #~ msgid "SolidWorks drawing file"
  7227. #~ msgstr "File disegno SolidWorks"
  7228. #~ msgctxt "@info:status"
  7229. #~ msgid ""
  7230. #~ "Dear customer,\n"
  7231. #~ "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"
  7232. #~ "\n"
  7233. #~ "With kind regards\n"
  7234. #~ " - Thomas Karl Pietrowski"
  7235. #~ msgstr ""
  7236. #~ "Gentile cliente,\n"
  7237. #~ "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"
  7238. #~ "\n"
  7239. #~ "Cordiali saluti\n"
  7240. #~ " - Thomas Karl Pietrowski"
  7241. #~ msgctxt "@info:status"
  7242. #~ msgid ""
  7243. #~ "Dear customer,\n"
  7244. #~ "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"
  7245. #~ "\n"
  7246. #~ "With kind regards\n"
  7247. #~ " - Thomas Karl Pietrowski"
  7248. #~ msgstr ""
  7249. #~ "Gentile cliente,\n"
  7250. #~ "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"
  7251. #~ "\n"
  7252. #~ "Cordiali saluti\n"
  7253. #~ " - Thomas Karl Pietrowski"
  7254. #~ msgid "Configure"
  7255. #~ msgstr "Configura"
  7256. #~ msgid "Installation guide for SolidWorks macro"
  7257. #~ msgstr "Guida per l’installazione di macro SolidWorks"
  7258. #~ msgctxt "@action:button"
  7259. #~ msgid "Disable"
  7260. #~ msgstr "Disabilita"
  7261. #~ msgctxt "@action:tooltip"
  7262. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7263. #~ msgstr "Non consente a Cura di inviare statistiche di utilizzo in forma anonima. È possibile riabilitare nelle preferenze."
  7264. #~ msgid "Install"
  7265. #~ msgstr "Installazione"
  7266. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7267. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR. Non è assegnato ad alcuna directory."
  7268. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7269. #~ msgstr "Installato correttamente plugin Siemens NX Cura."
  7270. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7271. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR."
  7272. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7273. #~ msgstr "Impossibile installare plugin Siemens NX. Impossibile impostare la variabile di ambiente UGII_USER_DIR per Siemens NX."
  7274. #~ msgctxt "@info:status"
  7275. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7276. #~ msgstr "Impossibile ottenere ID plugin da <filename>{0}</filename>"
  7277. #~ msgctxt "@info:tile"
  7278. #~ msgid "Warning"
  7279. #~ msgstr "Avvertenza"
  7280. #~ msgctxt "@window:title"
  7281. #~ msgid "Plugin browser"
  7282. #~ msgstr "Browser plugin"
  7283. #~ msgctxt "@label"
  7284. #~ msgid "Ultimaker 3"
  7285. #~ msgstr "Ultimaker 3"
  7286. #~ msgctxt "@label"
  7287. #~ msgid "Ultimaker 3 Extended"
  7288. #~ msgstr "Ultimaker 3 Extended"
  7289. #~ msgctxt "@title:window"
  7290. #~ msgid "SolidWorks: Export wizard"
  7291. #~ msgstr "SolidWorks: procedura guidata per l’esportazione"
  7292. #~ msgctxt "@action:label"
  7293. #~ msgid "Quality:"
  7294. #~ msgstr "Qualità:"
  7295. #~ msgctxt "@option:curaSolidworksStlQuality"
  7296. #~ msgid "Fine (3D-printing)"
  7297. #~ msgstr "Fine (stampa 3D)"
  7298. #~ msgctxt "@option:curaSolidworksStlQuality"
  7299. #~ msgid "Coarse (3D-printing)"
  7300. #~ msgstr "Grossolana (stampa 3D)"
  7301. #~ msgctxt "@option:curaSolidworksStlQuality"
  7302. #~ msgid "Fine (SolidWorks)"
  7303. #~ msgstr "Fine (SolidWorks)"
  7304. #~ msgctxt "@option:curaSolidworksStlQuality"
  7305. #~ msgid "Coarse (SolidWorks)"
  7306. #~ msgstr "Grossolana (SolidWorks)"
  7307. #~ msgctxt "@text:window"
  7308. #~ msgid "Show this dialog again"
  7309. #~ msgstr "Mostra nuovamente questa finestra di dialogo"
  7310. #~ msgctxt "@action:button"
  7311. #~ msgid "Continue"
  7312. #~ msgstr "Continua"
  7313. #~ msgctxt "@action:button"
  7314. #~ msgid "Abort"
  7315. #~ msgstr "Interrompi"
  7316. #~ msgctxt "@title:window"
  7317. #~ msgid "How to install Cura SolidWorks macro"
  7318. #~ msgstr "Come installare la macro Cura SolidWorks"
  7319. #~ msgctxt "@description:label"
  7320. #~ msgid "Steps:"
  7321. #~ msgstr "Fasi:"
  7322. #~ msgctxt "@action:button"
  7323. #~ msgid ""
  7324. #~ "Open the directory\n"
  7325. #~ "with macro and icon"
  7326. #~ msgstr ""
  7327. #~ "Aprire la directory\n"
  7328. #~ "con macro e icona"
  7329. #~ msgctxt "@description:label"
  7330. #~ msgid "Instructions:"
  7331. #~ msgstr "Istruzioni:"
  7332. #~ msgctxt "@action:playpause"
  7333. #~ msgid "Play"
  7334. #~ msgstr "Riproduci"
  7335. #~ msgctxt "@action:playpause"
  7336. #~ msgid "Pause"
  7337. #~ msgstr "Pausa"
  7338. #~ msgctxt "@action:button"
  7339. #~ msgid "Previous Step"
  7340. #~ msgstr "Fase precedente"
  7341. #~ msgctxt "@action:button"
  7342. #~ msgid "Done"
  7343. #~ msgstr "Eseguito"
  7344. #~ msgctxt "@action:button"
  7345. #~ msgid "Next Step"
  7346. #~ msgstr "Fase successiva"
  7347. #~ msgctxt "@title:window"
  7348. #~ msgid "SolidWorks plugin: Configuration"
  7349. #~ msgstr "Plugin SolidWorks: configurazione"
  7350. #~ msgctxt "@title:tab"
  7351. #~ msgid "Conversion settings"
  7352. #~ msgstr "Impostazioni di conversione"
  7353. #~ msgctxt "@label"
  7354. #~ msgid "First choice:"
  7355. #~ msgstr "Prima scelta:"
  7356. #~ msgctxt "@text:menu"
  7357. #~ msgid "Latest installed version (Recommended)"
  7358. #~ msgstr "Ultima versione installata (consigliata)"
  7359. #~ msgctxt "@text:menu"
  7360. #~ msgid "Default version"
  7361. #~ msgstr "Versione predefinita"
  7362. #~ msgctxt "@label"
  7363. #~ msgid "Show wizard before opening SolidWorks files"
  7364. #~ msgstr "Mostra la procedura guidata prima di aprire i file SolidWorks"
  7365. #~ msgctxt "@label"
  7366. #~ msgid "Automatically rotate opened file into normed orientation"
  7367. #~ msgstr "Ruota automaticamente il file aperto nell’orientamento corretto"
  7368. #~ msgctxt "@title:tab"
  7369. #~ msgid "Installation(s)"
  7370. #~ msgstr "Installazione(i)"
  7371. #~ msgctxt "@label"
  7372. #~ msgid "COM service found"
  7373. #~ msgstr "Servizio COM trovato"
  7374. #~ msgctxt "@label"
  7375. #~ msgid "Executable found"
  7376. #~ msgstr "Eseguibile trovato"
  7377. #~ msgctxt "@label"
  7378. #~ msgid "COM starting"
  7379. #~ msgstr "COM in avvio"
  7380. #~ msgctxt "@label"
  7381. #~ msgid "Revision number"
  7382. #~ msgstr "Numero di revisione"
  7383. #~ msgctxt "@label"
  7384. #~ msgid "Functions available"
  7385. #~ msgstr "Funzioni disponibili"
  7386. #~ msgctxt "@label (%1 is object name)"
  7387. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7388. #~ msgstr "Il nuovo diametro materiale è impostato a %1 mm, che non è compatibile con la macchina corrente. Continuare?"
  7389. #~ msgctxt "@action:menu"
  7390. #~ msgid "Browse plugins..."
  7391. #~ msgstr "Sfoglia plugin..."
  7392. #~ msgctxt "@title:menu menubar:toplevel"
  7393. #~ msgid "P&lugins"
  7394. #~ msgstr "&Plugin"
  7395. #~ msgctxt "@window:title"
  7396. #~ msgid "Install Plugin"
  7397. #~ msgstr "Installa plugin"
  7398. #~ msgctxt "description"
  7399. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7400. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  7401. #~ msgctxt "description"
  7402. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7403. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  7404. #~ msgctxt "description"
  7405. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7406. #~ msgstr "Offre la possibilità di aprire alcuni file utilizzando SolidWorks. La conversione viene effettuata da questo plugin e ottimizzazioni addizionali."
  7407. #~ msgctxt "name"
  7408. #~ msgid "SolidWorks Integration"
  7409. #~ msgstr "Integrazione SolidWorks"
  7410. #~ msgctxt "description"
  7411. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7412. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  7413. #~ msgctxt "name"
  7414. #~ msgid "Auto Save"
  7415. #~ msgstr "Salvataggio automatico"
  7416. #~ msgctxt "description"
  7417. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7418. #~ msgstr "Consente di installare un pulsante 'Esporta in Cura' in Siemens NX."
  7419. #~ msgctxt "name"
  7420. #~ msgid "Siemens NX Integration"
  7421. #~ msgstr "Integrazione Siemens NX"
  7422. #~ msgctxt "description"
  7423. #~ msgid "Find, manage and install new plugins."
  7424. #~ msgstr "Trova, gestisce e installa nuovi plugin."
  7425. #~ msgctxt "name"
  7426. #~ msgid "Plugin Browser"
  7427. #~ msgstr "Browser plugin"
  7428. #~ msgctxt "description"
  7429. #~ msgid "Ask the user once if he/she agrees with our license"
  7430. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza"
  7431. #~ msgctxt "description"
  7432. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7433. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  7434. #~ msgctxt "@item:inlistbox"
  7435. #~ msgid "GCode File"
  7436. #~ msgstr "File GCode"
  7437. #~ msgctxt "@info:status"
  7438. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7439. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata o non collegata."
  7440. #~ msgctxt "@info:title"
  7441. #~ msgid "Printer Unavailable"
  7442. #~ msgstr "Stampante non disponibile"
  7443. #~ msgctxt "@info:status"
  7444. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7445. #~ msgstr "Questa stampante non supporta la stampa tramite USB in quanto utilizza la versione UltiGCode."
  7446. #~ msgctxt "@info:title"
  7447. #~ msgid "USB Printing"
  7448. #~ msgstr "Stampa USB"
  7449. #~ msgctxt "@info:status"
  7450. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7451. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante non supporta la stampa tramite USB."
  7452. #~ msgctxt "@info"
  7453. #~ msgid "Unable to update firmware because there are no printers connected."
  7454. #~ msgstr "Impossibile aggiornare il firmware perché non ci sono stampanti collegate."
  7455. #~ msgctxt "@info"
  7456. #~ msgid "Could not find firmware required for the printer at %s."
  7457. #~ msgstr "Impossibile trovare il firmware richiesto per la stampante a %s."
  7458. #~ msgctxt "@info:title"
  7459. #~ msgid "Printer Firmware"
  7460. #~ msgstr "Firmware stampante"
  7461. #~ msgctxt "@info:title"
  7462. #~ msgid "Connection status"
  7463. #~ msgstr "Stato di connessione"
  7464. #~ msgctxt "@info:title"
  7465. #~ msgid "Connection Status"
  7466. #~ msgstr "Stato di connessione"
  7467. #~ msgctxt "@info:status"
  7468. #~ msgid "Access request was denied on the printer."
  7469. #~ msgstr "Richiesta di accesso negata sulla stampante."
  7470. #~ msgctxt "@info:status"
  7471. #~ msgid "Access request failed due to a timeout."
  7472. #~ msgstr "Richiesta di accesso non riuscita per superamento tempo."
  7473. #~ msgctxt "@info:status"
  7474. #~ msgid "The connection with the network was lost."
  7475. #~ msgstr "Il collegamento con la rete si è interrotto."
  7476. #~ msgctxt "@info:status"
  7477. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7478. #~ msgstr "Il collegamento con la stampante si è interrotto. Controllare la stampante per verificare se è collegata."
  7479. #~ msgctxt "@info:status"
  7480. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7481. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Stato stampante corrente %s."
  7482. #~ msgctxt "@info:title"
  7483. #~ msgid "Printer Status"
  7484. #~ msgstr "Stato stampante"
  7485. #~ msgctxt "@info:status"
  7486. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7487. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun Printcore caricato nello slot {0}"
  7488. #~ msgctxt "@info:status"
  7489. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7490. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun materiale caricato nello slot {0}"
  7491. #~ msgctxt "@label"
  7492. #~ msgid "Not enough material for spool {0}."
  7493. #~ msgstr "Materiale per la bobina insufficiente {0}."
  7494. #~ msgctxt "@label"
  7495. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7496. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionata per estrusore {2}"
  7497. #~ msgctxt "@label"
  7498. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7499. #~ msgstr "PrintCore {0} non correttamente calibrato. Necessario eseguire calibrazione XY sulla stampante."
  7500. #~ msgctxt "@info:status"
  7501. #~ msgid "Unable to send data to printer. Is another job still active?"
  7502. #~ msgstr "Impossibile inviare i dati alla stampante. Altro processo ancora attivo?"
  7503. #~ msgctxt "@label:MonitorStatus"
  7504. #~ msgid "Print aborted. Please check the printer"
  7505. #~ msgstr "Stampa interrotta. Controllare la stampante"
  7506. #~ msgctxt "@label:MonitorStatus"
  7507. #~ msgid "Pausing print..."
  7508. #~ msgstr "Messa in pausa stampa..."
  7509. #~ msgctxt "@label:MonitorStatus"
  7510. #~ msgid "Resuming print..."
  7511. #~ msgstr "Ripresa stampa..."
  7512. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  7513. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  7514. #~ msgctxt "Count is number of printers."
  7515. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  7516. #~ msgstr "Questa stampante fa da host per un gruppo di {count} stampanti Ultimaker 3 connesse."
  7517. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7518. #~ msgstr "{printer_name} ha terminato la stampa '{job_name}'. Rimuovere la stampa e confermare la pulizia del piano di stampa."
  7519. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7520. #~ 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."
  7521. #~ msgctxt "@info:status"
  7522. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  7523. #~ msgstr "Impossibile inviare nuovo processo di stampa: questa stampante 3D non è (ancora) configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  7524. #~ msgctxt "@info:status"
  7525. #~ msgid "Unable to send print job to group {cluster_name}."
  7526. #~ msgstr "Impossibile inviare processo di stampa a gruppo {cluster_name}."
  7527. #~ msgctxt "@info:status"
  7528. #~ msgid "Sent {file_name} to group {cluster_name}."
  7529. #~ msgstr "Inviato {file_name} a gruppo {cluster_name}."
  7530. #~ msgctxt "@action:button"
  7531. #~ msgid "Show print jobs"
  7532. #~ msgstr "Mostra processi di stampa"
  7533. #~ msgctxt "@info:tooltip"
  7534. #~ msgid "Opens the print jobs interface in your browser."
  7535. #~ msgstr "Apre l'interfaccia processi di stampa sul browser."
  7536. #~ msgctxt "@label Printer name"
  7537. #~ msgid "Unknown"
  7538. #~ msgstr "Sconosciuto"
  7539. #~ msgctxt "@info:progress"
  7540. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7541. #~ msgstr "Invio <filename>{file_name}</filename> a gruppo {cluster_name}"
  7542. #~ msgctxt "@info:status"
  7543. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7544. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  7545. #~ msgctxt "@info:status"
  7546. #~ msgid ""
  7547. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7548. #~ "\n"
  7549. #~ " Thanks!."
  7550. #~ msgstr ""
  7551. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  7552. #~ "\n"
  7553. #~ " Grazie."
  7554. #~ msgctxt "@info:status"
  7555. #~ msgid ""
  7556. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7557. #~ "\n"
  7558. #~ "Sorry!"
  7559. #~ msgstr ""
  7560. #~ "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"
  7561. #~ "\n"
  7562. #~ " Spiacenti."
  7563. #~ msgctxt "@item:material"
  7564. #~ msgid "No material loaded"
  7565. #~ msgstr "Nessun materiale caricato"
  7566. #~ msgctxt "@item:material"
  7567. #~ msgid "Unknown material"
  7568. #~ msgstr "Materiale sconosciuto"
  7569. #~ msgctxt "@info:status Has a cancel button next to it."
  7570. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7571. #~ msgstr "Il diametro del materiale selezionato lo rende incompatibile con l'attuale stampante."
  7572. #~ msgctxt "@action:button"
  7573. #~ msgid "Undo"
  7574. #~ msgstr "Annulla"
  7575. #~ msgctxt "@action"
  7576. #~ msgid "Undo changing the material diameter."
  7577. #~ msgstr "Annulla modifica del diametro del materiale."
  7578. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7579. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7580. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> non corrisponde alla macchina corrente, impossibile importarlo."
  7581. #~ msgctxt "@label crash message"
  7582. #~ msgid ""
  7583. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7584. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7585. #~ " "
  7586. #~ msgstr ""
  7587. #~ "<p><b>Si è verificato un errore fatale. Si prega di inviare questo Report su crash per correggere il problema</p></b>\n"
  7588. #~ " <p>Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  7589. #~ " "
  7590. #~ msgctxt "@label"
  7591. #~ msgid "not yet initialised<br/>"
  7592. #~ msgstr "non ancora inizializzato<br/>"
  7593. #~ msgctxt "@label"
  7594. #~ msgid "Gcode flavor"
  7595. #~ msgstr "Versione GCode"
  7596. #~ msgctxt "@label"
  7597. #~ msgid "Start Gcode"
  7598. #~ msgstr "Avvio GCode"
  7599. #~ msgctxt "@tooltip"
  7600. #~ msgid "Gcode commands to be executed at the very start."
  7601. #~ msgstr "Comandi Gcode da eseguire all’avvio."
  7602. #~ msgctxt "@label"
  7603. #~ msgid "End Gcode"
  7604. #~ msgstr "Fine GCode"
  7605. #~ msgctxt "@tooltip"
  7606. #~ msgid "Gcode commands to be executed at the very end."
  7607. #~ msgstr "Comandi Gcode da eseguire alla fine."
  7608. #~ msgctxt "@label"
  7609. #~ msgid "Extruder Start Gcode"
  7610. #~ msgstr "Gcode avvio estrusore"
  7611. #~ msgctxt "@label"
  7612. #~ msgid "Extruder End Gcode"
  7613. #~ msgstr "Gcode fine estrusore"
  7614. #~ msgctxt "@label"
  7615. #~ msgid "Starting firmware update, this may take a while."
  7616. #~ msgstr "Avvio aggiornamento firmware. Questa operazione può richiedere qualche istante."
  7617. #~ msgctxt "@label"
  7618. #~ msgid "Unknown error code: %1"
  7619. #~ msgstr "Codice errore sconosciuto: %1"
  7620. #~ msgctxt "@label Printer name"
  7621. #~ msgid "Ultimaker 3"
  7622. #~ msgstr "Ultimaker 3"
  7623. #~ msgctxt "@label Printer name"
  7624. #~ msgid "Ultimaker 3 Extended"
  7625. #~ msgstr "Ultimaker 3 Extended"
  7626. #~ msgctxt "@label Printer status"
  7627. #~ msgid "Unknown"
  7628. #~ msgstr "Sconosciuto"
  7629. #~ msgctxt "@title:window"
  7630. #~ msgid "Find & Update plugins"
  7631. #~ msgstr "Trova e Aggiorna plugin"
  7632. #~ msgctxt "@label"
  7633. #~ msgid "Here you can find a list of Third Party plugins."
  7634. #~ msgstr "Qui è possibile trovare un elenco dei plugin forniti da terzi."
  7635. #~ msgctxt "@action:button"
  7636. #~ msgid "Upgrade"
  7637. #~ msgstr "Aggiorna"
  7638. #~ msgctxt "@action:button"
  7639. #~ msgid "Download"
  7640. #~ msgstr "Download"
  7641. #~ msgctxt "@info:tooltip"
  7642. #~ msgid "Show caution message in gcode reader."
  7643. #~ msgstr "Visualizza il messaggio di avvertimento sul lettore gcode."
  7644. #~ msgctxt "@option:check"
  7645. #~ msgid "Caution message in gcode reader"
  7646. #~ msgstr "Messaggio di avvertimento sul lettore gcode"
  7647. #~ msgctxt "@window:title"
  7648. #~ msgid "Import Profile"
  7649. #~ msgstr "Importa profilo"
  7650. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7651. #~ msgid "Printer: %1, %2: %3"
  7652. #~ msgstr "Stampante: %1, %2: %3"
  7653. #~ msgctxt "@action:label %1 is printer name"
  7654. #~ msgid "Printer: %1"
  7655. #~ msgstr "Stampante: %1"
  7656. #~ msgctxt "@label"
  7657. #~ msgid "GCode generator"
  7658. #~ msgstr "GCode generator"
  7659. #~ msgctxt "@action:menu"
  7660. #~ msgid "Configure setting visiblity..."
  7661. #~ msgstr "Configurazione visibilità delle impostazioni in corso..."
  7662. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7663. #~ msgid "Automatic: %1"
  7664. #~ msgstr "Automatico: %1"
  7665. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7666. #~ msgid "Automatic: %1"
  7667. #~ msgstr "Automatico: %1"
  7668. #~ msgctxt "@info:status"
  7669. #~ msgid "No printer connected"
  7670. #~ msgstr "Nessuna stampante collegata"
  7671. #~ msgctxt "@tooltip"
  7672. #~ msgid "The current temperature of this extruder."
  7673. #~ msgstr "La temperatura corrente di questo estrusore."
  7674. #~ msgctxt "@action:menu"
  7675. #~ msgid "Installed plugins..."
  7676. #~ msgstr "Plugin installati..."
  7677. #~ msgctxt "@label"
  7678. #~ msgid "Support Extruder"
  7679. #~ msgstr "Estrusore del supporto"
  7680. #~ msgctxt "description"
  7681. #~ msgid "Writes GCode to a file."
  7682. #~ msgstr "Scrive il GCode in un file."
  7683. #~ msgctxt "name"
  7684. #~ msgid "GCode Writer"
  7685. #~ msgstr "Writer GCode"
  7686. #~ msgctxt "name"
  7687. #~ msgid "GCode Profile Reader"
  7688. #~ msgstr "Lettore profilo GCode"
  7689. #~ msgctxt "@info:status"
  7690. #~ 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!"
  7691. #~ msgstr "Rilevati errori all'apertura del file SolidWorks! Controllare se è possibile aprire il file in SolidWorks senza che si verifichino problemi!"
  7692. #~ msgctxt "@info:status"
  7693. #~ msgid "Error while starting %s!"
  7694. #~ msgstr "Errore durante l'avvio di %s!"
  7695. #~ msgctxt "@item:inlistbox"
  7696. #~ msgid "Simulation view"
  7697. #~ msgstr "Vista simulazione"
  7698. #~ msgctxt "@info"
  7699. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7700. #~ msgstr "Cura acquisisce dati statistici elaborati in forma anonima. L'acquisizione può essere disabilitata nelle preferenze."
  7701. #~ msgctxt "@action:button"
  7702. #~ msgid "Dismiss"
  7703. #~ msgstr "Ignora"
  7704. #~ msgctxt "@menuitem"
  7705. #~ msgid "Global"
  7706. #~ msgstr "Globale"
  7707. #~ msgctxt "@label crash message"
  7708. #~ msgid ""
  7709. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7710. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7711. #~ " "
  7712. #~ msgstr ""
  7713. #~ "<p><b>Si è verificata un'eccezione irreversibile. Si prega di inviarci questo crash report per risolvere il problema</p></b> \n"
  7714. #~ " <p>Utilizzare il pulsante \"Invia report\" per inviare un report sui bug automaticamente ai nostri server</p>\n"
  7715. #~ " "
  7716. #~ msgctxt "@label Cura version"
  7717. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7718. #~ msgstr "<b>Versione Cura:</b> {version}<br/>"
  7719. #~ msgctxt "@label Platform"
  7720. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7721. #~ msgstr "<b>Piattaforma:</b> {platform}<br/>"
  7722. #~ msgctxt "@label Qt version"
  7723. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7724. #~ msgstr "<b>Versione Qt:</b> {qt}<br/>"
  7725. #~ msgctxt "@label PyQt version"
  7726. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7727. #~ msgstr "<b>Versione PyQt:</b> {pyqt}<br/>"
  7728. #~ msgctxt "@label OpenGL"
  7729. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7730. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7731. #~ msgctxt "@title:groupbox"
  7732. #~ msgid "Exception traceback"
  7733. #~ msgstr "Analisi eccezione"
  7734. #~ msgctxt "@label"
  7735. #~ msgid "Material diameter"
  7736. #~ msgstr "Diametro materiale"
  7737. #~ msgctxt "@title:window"
  7738. #~ msgid "Cura SolidWorks Plugin Configuration"
  7739. #~ msgstr "Configurazione plugin Cura SolidWorks"
  7740. #~ msgctxt "@action:label"
  7741. #~ msgid "Default quality of the exported STL:"
  7742. #~ msgstr "Qualità predefinita STL esportato:"
  7743. #~ msgctxt "@option:curaSolidworksStlQuality"
  7744. #~ msgid "Always ask"
  7745. #~ msgstr "Chiedi sempre"
  7746. #~ msgctxt "@option:curaSolidworksStlQuality"
  7747. #~ msgid "Always use Fine quality"
  7748. #~ msgstr "Utilizza sempre la qualità Fine"
  7749. #~ msgctxt "@option:curaSolidworksStlQuality"
  7750. #~ msgid "Always use Coarse quality"
  7751. #~ msgstr "Utilizza sempre la qualità Grossolana"
  7752. #~ msgctxt "@title:window"
  7753. #~ msgid "Import SolidWorks File as STL..."
  7754. #~ msgstr "Importa file SolidWorks come STL..."
  7755. #~ msgctxt "@info:tooltip"
  7756. #~ msgid "Quality of the Exported STL"
  7757. #~ msgstr "Qualità STL esportato"
  7758. #~ msgctxt "@action:label"
  7759. #~ msgid "Quality"
  7760. #~ msgstr "Qualità"
  7761. #~ msgctxt "@option:curaSolidworksStlQuality"
  7762. #~ msgid "Coarse"
  7763. #~ msgstr "Grossolana"
  7764. #~ msgctxt "@option:curaSolidworksStlQuality"
  7765. #~ msgid "Fine"
  7766. #~ msgstr "Fine"
  7767. #~ msgctxt "@"
  7768. #~ msgid "No Profile Available"
  7769. #~ msgstr "Nessun profilo disponibile"
  7770. #~ msgctxt "@label"
  7771. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7772. #~ msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori"
  7773. #~ msgctxt "@tooltip"
  7774. #~ msgid "<b>Time specification</b><br/><table>"
  7775. #~ msgstr "<b>Indicazione del tempo</b><br/><table>"
  7776. #~ msgctxt "@action:inmenu menubar:view"
  7777. #~ msgid "&Reset camera position"
  7778. #~ msgstr "&Ripristina la posizione della telecamera"
  7779. #~ msgctxt "@title:menu menubar:file"
  7780. #~ msgid "Save project"
  7781. #~ msgstr "Salva progetto"
  7782. #~ msgctxt "@title:tab"
  7783. #~ msgid "Prepare"
  7784. #~ msgstr "Prepara"
  7785. #~ msgctxt "@title:tab"
  7786. #~ msgid "Monitor"
  7787. #~ msgstr "Controlla"
  7788. #~ msgctxt "@label"
  7789. #~ msgid "<a href='%1'>Check compatibility</a>"
  7790. #~ msgstr "<a href='%1'>Controllo compatibilità</a>"
  7791. #~ msgctxt "description"
  7792. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7793. #~ msgstr "Offre la possibilità di aprire alcuni file tramite SolidWorks stessa. Questi vengono quindi convertiti e caricati in Cura"
  7794. #~ msgctxt "@label:status"
  7795. #~ msgid "Blocked"
  7796. #~ msgstr "Bloccato"
  7797. #~ msgctxt "@label:status"
  7798. #~ msgid "Can't start print"
  7799. #~ msgstr "Impossibile avviare la stampa"
  7800. #~ msgctxt "@action:button"
  7801. #~ msgid "Open Connect.."
  7802. #~ msgstr "Apri Connect.."
  7803. #~ msgctxt "@info:title"
  7804. #~ msgid "Print Details"
  7805. #~ msgstr "Dettagli stampa"
  7806. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7807. #~ 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."
  7808. #~ 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."
  7809. #~ msgctxt "@info:title"
  7810. #~ msgid "Layer View"
  7811. #~ msgstr "Visualizzazione layer"
  7812. #~ msgctxt "@menuitem"
  7813. #~ msgid "Browse plugins"
  7814. #~ msgstr "Sfoglia plugin"
  7815. #~ msgctxt "@info:title"
  7816. #~ msgid "Export Details"
  7817. #~ msgstr "Dettagli esportazione"
  7818. #~ msgctxt "@label"
  7819. #~ msgid ""
  7820. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7821. #~ " <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"
  7822. #~ " "
  7823. #~ msgstr ""
  7824. #~ "<p>Si è verificata un'eccezione fatale che non stato possibile superare!</p>\n"
  7825. #~ " <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"
  7826. #~ " "
  7827. #~ msgctxt "@action:button"
  7828. #~ msgid "Open Web Page"
  7829. #~ msgstr "Apri pagina Web"
  7830. #~ msgctxt "@action:button"
  7831. #~ msgid "Ok"
  7832. #~ msgstr "Ok"
  7833. #~ msgctxt "@label"
  7834. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7835. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  7836. #~ msgctxt "@label"
  7837. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7838. #~ msgstr "Questa stampante fa da host per un gruppo di %1 stampanti Ultimaker 3 connesse"
  7839. #~ msgctxt "@label"
  7840. #~ msgid "Completed on: "
  7841. #~ msgstr "Completato su: "
  7842. #~ msgctxt "@info:tooltip"
  7843. #~ msgid "Opens the print jobs page with your default web browser."
  7844. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  7845. #~ msgctxt "@label"
  7846. #~ msgid "PRINTER GROUP"
  7847. #~ msgstr "GRUPPO STAMPANTI"
  7848. #~ msgctxt "@action:warning"
  7849. #~ msgid "Loading a project will clear all models on the buildplate"
  7850. #~ msgstr "Il caricamento di un modello annulla tutti i modelli sul piano di stampa"
  7851. #~ msgctxt "@label"
  7852. #~ msgid ""
  7853. #~ " plugin contains a license.\n"
  7854. #~ "You need to accept this license to install this plugin.\n"
  7855. #~ "Do you agree with the terms below?"
  7856. #~ msgstr ""
  7857. #~ " I plugin contengono una licenza.\n"
  7858. #~ "È necessario accettare questa licenza per poter installare il plugin.\n"
  7859. #~ "Accetti i termini sotto riportati?"
  7860. #~ msgctxt "@label"
  7861. #~ msgid "00h 00min"
  7862. #~ msgstr "00h 00min"
  7863. #~ msgctxt "@tooltip"
  7864. #~ msgid "<b>Time information</b>"
  7865. #~ msgstr "<b>Informazioni su tempo</b>"
  7866. #~ msgctxt "@description"
  7867. #~ msgid "Print time"
  7868. #~ msgstr "Tempo di stampa"
  7869. #~ msgctxt "@label"
  7870. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7871. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7872. #~ msgctxt "@label"
  7873. #~ msgid "%1m / ~ %2g"
  7874. #~ msgstr "%1m / ~ %2g"
  7875. #~ msgctxt "@title:window"
  7876. #~ msgid "Cura"
  7877. #~ msgstr "Cura"
  7878. #~ msgctxt "@label"
  7879. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7880. #~ msgstr "<a href='%1'>Controllo compatibilità materiale</a>"
  7881. #~ msgctxt "name"
  7882. #~ msgid "UM3 Network Connection (Cluster)"
  7883. #~ msgstr "Connessione di rete UM3 (Cluster)"
  7884. #~ msgctxt "description"
  7885. #~ msgid "Provides the Layer view."
  7886. #~ msgstr "Fornisce la visualizzazione degli strati."
  7887. #~ msgctxt "name"
  7888. #~ msgid "Layer View"
  7889. #~ msgstr "Visualizzazione layer"
  7890. #~ msgctxt "@item:inlistbox"
  7891. #~ msgid "X-Ray"
  7892. #~ msgstr "Raggi X"
  7893. #~ msgctxt "@label"
  7894. #~ msgid "Doodle3D"
  7895. #~ msgstr "Doodle3D"
  7896. #~ msgctxt "@info:whatsthis"
  7897. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7898. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  7899. #~ msgctxt "@item:inmenu"
  7900. #~ msgid "Doodle3D printing"
  7901. #~ msgstr "Stampa Doodle3D"
  7902. #~ msgctxt "@action:button"
  7903. #~ msgid "Print with Doodle3D"
  7904. #~ msgstr "Stampa con Doodle3D"
  7905. #~ msgctxt "@info:tooltip"
  7906. #~ msgid "Print with "
  7907. #~ msgstr "Stampa con"
  7908. #~ msgctxt "@title:menu"
  7909. #~ msgid "Doodle3D"
  7910. #~ msgstr "Doodle3D"
  7911. #~ msgctxt "@item:inlistbox"
  7912. #~ msgid "Enable Scan devices..."
  7913. #~ msgstr "Abilita dispositivi di scansione..."
  7914. #~ msgctxt "@info:progress"
  7915. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7916. #~ msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  7917. #~ msgctxt "@info:status"
  7918. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7919. #~ msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  7920. #~ msgctxt "@info:status"
  7921. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7922. #~ msgstr "Tenere presente che è necessario riaprire il file SolidWorks manualmente! Il ricaricamento del modello non funziona!"
  7923. #~ msgctxt "@item:inlistbox"
  7924. #~ msgid "Layers"
  7925. #~ msgstr "Strati"
  7926. #~ msgid "Browse plugins"
  7927. #~ msgstr "Sfoglia plugin"
  7928. #~ msgctxt "@item:inmenu"
  7929. #~ msgid "Solid"
  7930. #~ msgstr "Solido"
  7931. #~ msgctxt "@label"
  7932. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7933. #~ msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di voler sovrascrivere?"
  7934. #~ msgctxt "@info:status"
  7935. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7936. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: <message>{1}</message>"
  7937. #~ msgctxt "@info:status"
  7938. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7939. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: Errore di plugin writer."
  7940. #~ msgctxt "@info:status"
  7941. #~ msgid "Exported profile to <filename>{0}</filename>"
  7942. #~ msgstr "Profilo esportato su <filename>{0}</filename>"
  7943. #~ msgctxt "@info:status"
  7944. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7945. #~ msgstr "Impossibile importare profilo da <filename>{0}</filename>: <message>{1}</message>"
  7946. #~ msgctxt "@title:window"
  7947. #~ msgid "Doodle3D Settings"
  7948. #~ msgstr "Impostazioni Doodle3D"
  7949. #~ msgctxt "@title:window"
  7950. #~ msgid "Print to: %1"
  7951. #~ msgstr "Stampa a: %1"
  7952. #~ msgctxt "@label"
  7953. #~ msgid "Extruder Temperature: %1/%2°C"
  7954. #~ msgstr "Temperatura estrusore: %1/%2°C"
  7955. #~ msgctxt "@label"
  7956. #~ msgid "Bed Temperature: %1/%2°C"
  7957. #~ msgstr "Temperatura piano di stampa: %1/%2°C"
  7958. #~ msgctxt "@label"
  7959. #~ msgid "%1"
  7960. #~ msgstr "%1"
  7961. #~ msgctxt "@label"
  7962. #~ msgid "View Mode: Layers"
  7963. #~ msgstr "Modalità di visualizzazione: strati"
  7964. #~ msgctxt "@info:status"
  7965. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7966. #~ msgstr "Impossibile importare materiale <filename>%1</filename>: <message>%2</message>"
  7967. #~ msgctxt "@info:status"
  7968. #~ msgid "Successfully imported material <filename>%1</filename>"
  7969. #~ msgstr "Materiale importato correttamente <filename>%1</filename>"
  7970. #~ msgctxt "@info:status"
  7971. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7972. #~ msgstr "Impossibile esportare materiale su <filename>%1</filename>: <message>%2</message>"
  7973. #~ msgctxt "@info:status"
  7974. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7975. #~ msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  7976. #~ msgctxt "@label"
  7977. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7978. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7979. #~ msgctxt "@label"
  7980. #~ msgid "%1 m / ~ %2 g"
  7981. #~ msgstr "%1 m / ~ %2 g"
  7982. #~ msgctxt "@label"
  7983. #~ msgid "Hotend"
  7984. #~ msgstr "Hotend"
  7985. #~ msgctxt "@action:button"
  7986. #~ msgid "View Mode"
  7987. #~ msgstr "Modalità di visualizzazione"
  7988. #~ msgctxt "@title:tab"
  7989. #~ msgid "Print"
  7990. #~ msgstr "Stampa"
  7991. #~ msgctxt "@label"
  7992. #~ msgid "0%"
  7993. #~ msgstr "0%"
  7994. #~ msgctxt "@label"
  7995. #~ msgid "Empty infill will leave your model hollow with low strength."
  7996. #~ msgstr "Un riempimento vuoto lascerà il modello cavo e poco resistente."
  7997. #~ msgctxt "@label"
  7998. #~ msgid "20%"
  7999. #~ msgstr "20%"
  8000. #~ msgctxt "@label"
  8001. #~ msgid "Light (20%) infill will give your model an average strength."
  8002. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media."
  8003. #~ msgctxt "@label"
  8004. #~ msgid "50%"
  8005. #~ msgstr "50%"
  8006. #~ msgctxt "@label"
  8007. #~ msgid "Dense (50%) infill will give your model an above average strength."
  8008. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media."
  8009. #~ msgctxt "@label"
  8010. #~ msgid "100%"
  8011. #~ msgstr "100%"
  8012. #~ msgctxt "@label"
  8013. #~ msgid "Solid (100%) infill will make your model completely solid."
  8014. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno."
  8015. #~ msgctxt "@label"
  8016. #~ msgid "Gradual"
  8017. #~ msgstr "Graduale"
  8018. #~ msgctxt "description"
  8019. #~ msgid "Provides support for writing X3G files"
  8020. #~ msgstr "Fornisce il supporto per la scrittura di file X3G"
  8021. #~ msgctxt "name"
  8022. #~ msgid "X3G Writer"
  8023. #~ msgstr "Writer X3G"
  8024. #~ msgctxt "@label"
  8025. #~ msgid "Machine Settings action"
  8026. #~ msgstr "Azione Impostazioni macchina"
  8027. #~ msgctxt "@info:whatsthis"
  8028. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  8029. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  8030. #~ msgctxt "@label"
  8031. #~ msgid "X-Ray View"
  8032. #~ msgstr "Vista ai raggi X"
  8033. #~ msgctxt "@info:whatsthis"
  8034. #~ msgid "Provides the X-Ray view."
  8035. #~ msgstr "Fornisce la vista a raggi X."
  8036. #~ msgctxt "@label"
  8037. #~ msgid "X3D Reader"
  8038. #~ msgstr "Lettore X3D"
  8039. #~ msgctxt "@info:whatsthis"
  8040. #~ msgid "Provides support for reading X3D files."
  8041. #~ msgstr "Fornisce il supporto per la lettura di file X3D."
  8042. #~ msgctxt "@label"
  8043. #~ msgid "GCode Writer"
  8044. #~ msgstr "Writer GCode"
  8045. #~ msgctxt "@info:whatsthis"
  8046. #~ msgid "Writes GCode to a file."
  8047. #~ msgstr "Scrive il GCode in un file."
  8048. #~ msgctxt "@action:button Preceded by 'Ready to'."
  8049. #~ msgid "Print with Doodle3D"
  8050. #~ msgstr "Stampa con Doodle3D"
  8051. #~ msgctxt "@info:whatsthis"
  8052. #~ msgid "Shows changes since latest checked version."
  8053. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  8054. #~ msgctxt "@label"
  8055. #~ msgid "Profile flatener"
  8056. #~ msgstr "Appiattitore di profilo"
  8057. #~ msgctxt "@info:whatsthis"
  8058. #~ msgid "Create a flattend quality changes profile."
  8059. #~ msgstr "Crea un profilo appiattito."
  8060. #~ msgctxt "@label"
  8061. #~ msgid "USB printing"
  8062. #~ msgstr "Stampa USB"
  8063. #~ msgctxt "@info:whatsthis"
  8064. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  8065. #~ msgstr "Accetta i G-Code e li invia ad una stampante. Il Plugin può anche aggiornare il firmware."
  8066. #~ msgctxt "X3G Writer Plugin Description"
  8067. #~ msgid "Writes X3G to a file"
  8068. #~ msgstr "Scrive X3G in un file"
  8069. #~ msgctxt "@label"
  8070. #~ msgid "Removable Drive Output Device Plugin"
  8071. #~ msgstr "Plugin dispositivo di output unità rimovibile"
  8072. #~ msgctxt "@info:whatsthis"
  8073. #~ msgid "Provides removable drive hotplugging and writing support."
  8074. #~ msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  8075. #~ msgctxt "@info:whatsthis"
  8076. #~ msgid "Manages network connections to Ultimaker 3 printers"
  8077. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  8078. #~ msgctxt "@label"
  8079. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  8080. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  8081. #~ msgctxt "@label"
  8082. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  8083. #~ msgstr "Print core {0} non correttamente calibrato. Eseguire la calibrazione XY sulla stampante."
  8084. #~ msgctxt "@label"
  8085. #~ 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."
  8086. #~ 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."
  8087. #~ msgctxt "@label"
  8088. #~ msgid "Post Processing"
  8089. #~ msgstr "Post-elaborazione"
  8090. #~ msgctxt "Description of plugin"
  8091. #~ msgid "Extension that allows for user created scripts for post processing"
  8092. #~ msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  8093. #~ msgctxt "@label"
  8094. #~ msgid "Auto Save"
  8095. #~ msgstr "Salvataggio automatico"
  8096. #~ msgctxt "@info:whatsthis"
  8097. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  8098. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  8099. #~ msgctxt "@label"
  8100. #~ msgid "Slice info"
  8101. #~ msgstr "Informazioni su sezionamento"
  8102. #~ msgctxt "@info:whatsthis"
  8103. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  8104. #~ msgstr "Inoltra informazioni anonime su sezionamento. Può essere disabilitato tramite preferenze."
  8105. #~ msgctxt "@info"
  8106. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  8107. #~ msgstr "Cura raccoglie dati per analisi statistiche anonime. È possibile disabilitare questa opzione in preferenze"
  8108. #~ msgctxt "@label"
  8109. #~ msgid "Material Profiles"
  8110. #~ msgstr "Profili del materiale"
  8111. #~ msgctxt "@info:whatsthis"
  8112. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  8113. #~ msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  8114. #~ msgctxt "@label"
  8115. #~ msgid "Legacy Cura Profile Reader"
  8116. #~ msgstr "Lettore legacy profilo Cura"
  8117. #~ msgctxt "@info:whatsthis"
  8118. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  8119. #~ msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  8120. #~ msgctxt "@label"
  8121. #~ msgid "GCode Profile Reader"
  8122. #~ msgstr "Lettore profilo GCode"
  8123. #~ msgctxt "@info:whatsthis"
  8124. #~ msgid "Provides support for importing profiles from g-code files."
  8125. #~ msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  8126. #~ msgctxt "@label"
  8127. #~ msgid "Layer View"
  8128. #~ msgstr "Visualizzazione layer"
  8129. #~ msgctxt "@info:whatsthis"
  8130. #~ msgid "Provides the Layer view."
  8131. #~ msgstr "Fornisce la visualizzazione dei layer."
  8132. #~ msgctxt "@label"
  8133. #~ msgid "Version Upgrade 2.5 to 2.6"
  8134. #~ msgstr "Aggiornamento della versione da 2.5 a 2.6"
  8135. #~ msgctxt "@info:whatsthis"
  8136. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  8137. #~ msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  8138. #~ msgctxt "@label"
  8139. #~ msgid "Version Upgrade 2.1 to 2.2"
  8140. #~ msgstr "Aggiornamento della versione da 2.1 a 2.2"
  8141. #~ msgctxt "@info:whatsthis"
  8142. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  8143. #~ msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  8144. #~ msgctxt "@label"
  8145. #~ msgid "Version Upgrade 2.2 to 2.4"
  8146. #~ msgstr "Aggiornamento della versione da 2.2 a 2.4"
  8147. #~ msgctxt "@info:whatsthis"
  8148. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  8149. #~ msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  8150. #~ msgctxt "@label"
  8151. #~ msgid "Image Reader"
  8152. #~ msgstr "Lettore di immagine"
  8153. #~ msgctxt "@info:whatsthis"
  8154. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  8155. #~ msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  8156. #~ msgctxt "@label"
  8157. #~ msgid "CuraEngine Backend"
  8158. #~ msgstr "Back-end CuraEngine"
  8159. #~ msgctxt "@info:whatsthis"
  8160. #~ msgid "Provides the link to the CuraEngine slicing backend."
  8161. #~ msgstr "Fornisce il collegamento al back-end di slicing di CuraEngine."
  8162. #~ msgctxt "@label"
  8163. #~ msgid "Per Model Settings Tool"
  8164. #~ msgstr "Utilità impostazioni per modello"
  8165. #~ msgctxt "@info:whatsthis"
  8166. #~ msgid "Provides the Per Model Settings."
  8167. #~ msgstr "Fornisce le impostazioni per modello."
  8168. #~ msgctxt "@label"
  8169. #~ msgid "3MF Reader"
  8170. #~ msgstr "Lettore 3MF"
  8171. #~ msgctxt "@info:whatsthis"
  8172. #~ msgid "Provides support for reading 3MF files."
  8173. #~ msgstr "Fornisce il supporto per la lettura di file 3MF."
  8174. #~ msgctxt "@label"
  8175. #~ msgid "Solid View"
  8176. #~ msgstr "Visualizzazione compatta"
  8177. #~ msgctxt "@info:whatsthis"
  8178. #~ msgid "Provides a normal solid mesh view."
  8179. #~ msgstr "Fornisce una normale visualizzazione a griglia compatta."
  8180. #~ msgctxt "@label"
  8181. #~ msgid "G-code Reader"
  8182. #~ msgstr "Lettore G-code"
  8183. #~ msgctxt "@info:whatsthis"
  8184. #~ msgid "Allows loading and displaying G-code files."
  8185. #~ msgstr "Consente il caricamento e la visualizzazione dei file G-code."
  8186. #~ msgctxt "@label"
  8187. #~ msgid "Cura Profile Writer"
  8188. #~ msgstr "Writer profilo Cura"
  8189. #~ msgctxt "@info:whatsthis"
  8190. #~ msgid "Provides support for exporting Cura profiles."
  8191. #~ msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  8192. #~ msgctxt "@label"
  8193. #~ msgid "3MF Writer"
  8194. #~ msgstr "Writer 3MF"
  8195. #~ msgctxt "@info:whatsthis"
  8196. #~ msgid "Provides support for writing 3MF files."
  8197. #~ msgstr "Fornisce il supporto per la scrittura di file 3MF."
  8198. #~ msgctxt "@label"
  8199. #~ msgid "Ultimaker machine actions"
  8200. #~ msgstr "Azioni della macchina Ultimaker"
  8201. #~ msgctxt "@info:whatsthis"
  8202. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  8203. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  8204. #~ msgctxt "@label"
  8205. #~ msgid "Cura Profile Reader"
  8206. #~ msgstr "Lettore profilo Cura"
  8207. #~ msgctxt "@info:whatsthis"
  8208. #~ msgid "Provides support for importing Cura profiles."
  8209. #~ msgstr "Fornisce supporto per l'importazione dei profili Cura."
  8210. #~ msgctxt "@info"
  8211. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  8212. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  8213. #~ msgctxt "@label"
  8214. #~ msgid "Build Plate Shape"
  8215. #~ msgstr "Forma del piano di stampa"
  8216. #~ msgctxt "@option:check"
  8217. #~ msgid "Machine Center is Zero"
  8218. #~ msgstr "Centro macchina a zero"
  8219. #~ msgctxt "@option:check"
  8220. #~ msgid "Heated Bed"
  8221. #~ msgstr "Piano riscaldato"
  8222. #~ msgctxt "@label"
  8223. #~ msgid "GCode Flavor"
  8224. #~ msgstr "Versione GCode"
  8225. #~ msgctxt "@label"
  8226. #~ msgid "Material Diameter"
  8227. #~ msgstr "Diametro materiale"
  8228. #~ msgctxt "@label"
  8229. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  8230. #~ msgstr "Se la stampante non è nell’elenco, leggere la <a href=’%1’>guida alla ricerca guasti per la stampa in rete</a>"
  8231. #~ msgctxt "@item:inlistbox"
  8232. #~ msgid "Ultimaker"
  8233. #~ msgstr "Ultimaker"
  8234. #~ msgctxt "@label"
  8235. #~ msgid "Support library for scientific computing "
  8236. #~ msgstr "Libreria di supporto per calcolo scientifico "
  8237. #~ msgctxt "@tooltip"
  8238. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  8239. #~ msgstr "<b>Impostazione di stampa</b><br/><br/>Modifica o revisiona le impostazioni per il lavoro di stampa attivo."
  8240. #~ msgctxt "@tooltip"
  8241. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  8242. #~ msgstr "<b>Monitoraggio stampa</b><br/><br/>Controlla lo stato della stampante collegata e il lavoro di stampa in corso."
  8243. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  8244. #~ msgid "Automatic: %1"
  8245. #~ msgstr "Automatico: %1"
  8246. #~ msgctxt "@label:PrintjobStatus"
  8247. #~ msgid "Please load a 3d model"
  8248. #~ msgstr "Carica un modello 3d"
  8249. #~ msgctxt "@label"
  8250. #~ msgid "Print Selected Model with %1"
  8251. #~ msgid_plural "Print Selected Models With %1"
  8252. #~ msgstr[0] "Stampa modello selezionato con %1"
  8253. #~ msgstr[1] "Stampa modelli selezionati con %1"
  8254. #~ msgctxt "@info:status"
  8255. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  8256. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun PrinterCore caricato nello slot {0}"
  8257. #~ msgctxt "@label"
  8258. #~ msgid "Version Upgrade 2.4 to 2.5"
  8259. #~ msgstr "Aggiornamento della versione da 2.4 a 2.5"
  8260. #~ msgctxt "@info:whatsthis"
  8261. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  8262. #~ msgstr "Aggiorna le configurazioni da Cura 2.4 a Cura 2.5."
  8263. #~ msgctxt "@info:status"
  8264. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  8265. #~ msgstr "Impossibile trovare un profilo di qualità per questa combinazione. Saranno utilizzate le impostazioni predefinite."
  8266. #~ msgctxt "@title:window"
  8267. #~ msgid "Oops!"
  8268. #~ msgstr "Oops!"
  8269. #~ msgctxt "@label"
  8270. #~ msgid ""
  8271. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  8272. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  8273. #~ " <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"
  8274. #~ " "
  8275. #~ msgstr ""
  8276. #~ "<p>Si è verificata un'eccezione fatale impossibile da ripristinare!</p>\n"
  8277. #~ " <p>Ci auguriamo che l’immagine di questo gattino vi aiuti a superare lo shock.</p>\n"
  8278. #~ " <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>"
  8279. #~ msgctxt "@label"
  8280. #~ msgid "Please enter the correct settings for your printer below:"
  8281. #~ msgstr "Inserire le impostazioni corrette per la stampante:"
  8282. #~ msgctxt "@label"
  8283. #~ msgid "Extruder %1"
  8284. #~ msgstr "Estrusore %1"
  8285. #~ msgctxt "@label Followed by extruder selection drop-down."
  8286. #~ msgid "Print model with"
  8287. #~ msgstr "Modello di stampa con"
  8288. #~ msgctxt "@label"
  8289. #~ msgid "You will need to restart the application for language changes to have effect."
  8290. #~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche della lingua."
  8291. #~ msgctxt "@info:tooltip"
  8292. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  8293. #~ msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  8294. #~ msgctxt "@action:inmenu menubar:edit"
  8295. #~ msgid "Delete &Selection"
  8296. #~ msgstr "&Elimina selezione"
  8297. #~ msgctxt "@action:inmenu menubar:file"
  8298. #~ msgid "&Open File..."
  8299. #~ msgstr "Apr&i file..."
  8300. #~ msgctxt "@action:inmenu menubar:file"
  8301. #~ msgid "&Open Project..."
  8302. #~ msgstr "&Apri progetto..."
  8303. #~ msgctxt "@title:window"
  8304. #~ msgid "Multiply Model"
  8305. #~ msgstr "Moltiplica modello"
  8306. #~ msgctxt "@title:menu menubar:file"
  8307. #~ msgid "Save &All"
  8308. #~ msgstr "S&alva tutto"
  8309. #~ msgctxt "@title:window"
  8310. #~ msgid "Open file"
  8311. #~ msgstr "Apri file"
  8312. #~ msgctxt "@title:window"
  8313. #~ msgid "Open workspace"
  8314. #~ msgstr "Apri spazio di lavoro"
  8315. #~ msgctxt "@label"
  8316. #~ msgid "Hollow"
  8317. #~ msgstr "Cavo"
  8318. #~ msgctxt "@label"
  8319. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  8320. #~ msgstr "Nessun (0%) riempimento lascerà il tuo cavo modello a scapito della resistenza (bassa resistenza)"
  8321. #~ msgctxt "@label"
  8322. #~ msgid "Light"
  8323. #~ msgstr "Leggero"
  8324. #~ msgctxt "@label"
  8325. #~ msgid "Light (20%) infill will give your model an average strength"
  8326. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media"
  8327. #~ msgctxt "@label"
  8328. #~ msgid "Dense"
  8329. #~ msgstr "Denso"
  8330. #~ msgctxt "@label"
  8331. #~ msgid "Dense (50%) infill will give your model an above average strength"
  8332. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media"
  8333. #~ msgctxt "@label"
  8334. #~ msgid "Solid"
  8335. #~ msgstr "Solido"
  8336. #~ msgctxt "@label"
  8337. #~ msgid "Solid (100%) infill will make your model completely solid"
  8338. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno"
  8339. #~ msgctxt "@label"
  8340. #~ msgid "Enable Support"
  8341. #~ msgstr "Abilita supporto"
  8342. #~ msgctxt "@label"
  8343. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  8344. #~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi."
  8345. #~ msgctxt "@label"
  8346. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  8347. #~ msgstr "Serve aiuto per migliorare le tue stampe? Leggi la <a href='%1'>Guida alla ricerca e riparazione guasti Ultimaker</a>"
  8348. #~ msgctxt "@info:status"
  8349. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  8350. #~ msgstr "Collegato alla rete a {0}. Si prega di approvare la richiesta di accesso sulla stampante."
  8351. #~ msgctxt "@info:status"
  8352. #~ msgid "Connected over the network to {0}."
  8353. #~ msgstr "Collegato alla rete a {0}."
  8354. #~ msgctxt "@info:status"
  8355. #~ msgid "Connected over the network to {0}. No access to control the printer."
  8356. #~ msgstr "Collegato alla rete a {0}. Nessun accesso per controllare la stampante."
  8357. #~ msgctxt "@info:status"
  8358. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  8359. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Controllare la stampante."
  8360. #~ msgctxt "@label"
  8361. #~ msgid "You made changes to the following setting(s)/override(s):"
  8362. #~ msgstr "Sono state apportate modifiche alle seguenti impostazioni/esclusioni:"
  8363. #~ msgctxt "@window:title"
  8364. #~ msgid "Switched profiles"
  8365. #~ msgstr "Profili modificati"
  8366. #~ msgctxt "@label"
  8367. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  8368. #~ msgstr "Si desidera trasferire le %d impostazioni/esclusioni modificate a questo profilo?"
  8369. #~ msgctxt "@label"
  8370. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  8371. #~ msgstr "Se si trasferiscono le nuove impostazioni, le impostazioni esistenti del profilo saranno sovrascritte. Se non si trasferiscono, tali impostazioni verranno perse."
  8372. #~ msgctxt "@label"
  8373. #~ msgid "Cost per Meter (Approx.)"
  8374. #~ msgstr "Costo al metro (circa)"
  8375. #~ msgctxt "@label"
  8376. #~ msgid "%1/m"
  8377. #~ msgstr "%1/m"
  8378. #~ msgctxt "@info:tooltip"
  8379. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  8380. #~ 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."
  8381. #~ msgctxt "@action:button"
  8382. #~ msgid "Display five top layers in layer view"
  8383. #~ msgstr "Visualizza i cinque strati superiori in visualizzazione strato"
  8384. #~ msgctxt "@info:tooltip"
  8385. #~ msgid "Should only the top layers be displayed in layerview?"
  8386. #~ msgstr "In visualizzazione strato devono essere visualizzati solo gli strati superiori?"
  8387. #~ msgctxt "@option:check"
  8388. #~ msgid "Only display top layer(s) in layer view"
  8389. #~ msgstr "In visualizzazione layer, visualizza solo il/i layer(s) superiore/i"
  8390. #~ msgctxt "@label"
  8391. #~ msgid "Opening files"
  8392. #~ msgstr "Apertura file in corso"
  8393. #~ msgctxt "@label"
  8394. #~ msgid "Printer Monitor"
  8395. #~ msgstr "Monitoraggio stampante"
  8396. #~ msgctxt "@label"
  8397. #~ msgid "Temperatures"
  8398. #~ msgstr "Temperature"
  8399. #~ msgctxt "@label:PrintjobStatus"
  8400. #~ msgid "Preparing to slice..."
  8401. #~ msgstr "Preparazione al sezionamento in corso..."
  8402. #~ msgctxt "@window:title"
  8403. #~ msgid "Changes on the Printer"
  8404. #~ msgstr "Modifiche alla stampante."
  8405. #~ msgctxt "@action:inmenu"
  8406. #~ msgid "&Duplicate Model"
  8407. #~ msgstr "&Duplica modello"
  8408. #~ msgctxt "@label"
  8409. #~ msgid "Helper Parts:"
  8410. #~ msgstr "Parti Helper:"
  8411. #~ msgctxt "@label"
  8412. #~ 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."
  8413. #~ 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."
  8414. #~ msgctxt "@label"
  8415. #~ msgid "Don't print support"
  8416. #~ msgstr "Non stampare alcuna struttura di supporto"
  8417. #~ msgctxt "@label"
  8418. #~ msgid "Print support using %1"
  8419. #~ msgstr "Stampa struttura di supporto utilizzando %1"
  8420. #~ msgctxt "@label:listbox"
  8421. #~ msgid "Printer:"
  8422. #~ msgstr "Stampante:"
  8423. #~ msgctxt "@info:status"
  8424. #~ msgid "Successfully imported profiles {0}"
  8425. #~ msgstr "Profili importati correttamente {0}"
  8426. #~ msgctxt "@label"
  8427. #~ msgid "Scripts"
  8428. #~ msgstr "Script"
  8429. #~ msgctxt "@label"
  8430. #~ msgid "Active Scripts"
  8431. #~ msgstr "Script attivi"
  8432. #~ msgctxt "@label"
  8433. #~ msgid "Done"
  8434. #~ msgstr "Eseguito"
  8435. #~ msgctxt "@item:inlistbox"
  8436. #~ msgid "English"
  8437. #~ msgstr "Inglese"
  8438. #~ msgctxt "@item:inlistbox"
  8439. #~ msgid "Finnish"
  8440. #~ msgstr "Finlandese"
  8441. #~ msgctxt "@item:inlistbox"
  8442. #~ msgid "French"
  8443. #~ msgstr "Francese"
  8444. #~ msgctxt "@item:inlistbox"
  8445. #~ msgid "German"
  8446. #~ msgstr "Tedesco"
  8447. #~ msgctxt "@item:inlistbox"
  8448. #~ msgid "Italian"
  8449. #~ msgstr "Italiano"
  8450. #~ msgctxt "@item:inlistbox"
  8451. #~ msgid "Dutch"
  8452. #~ msgstr "Olandese"
  8453. #~ msgctxt "@item:inlistbox"
  8454. #~ msgid "Spanish"
  8455. #~ msgstr "Spagnolo"
  8456. #~ msgctxt "@label"
  8457. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  8458. #~ msgstr "Desideri modificare i PrintCore e i materiali in Cura per abbinare la stampante?"
  8459. #~ msgctxt "@label:"
  8460. #~ msgid "Print Again"
  8461. #~ msgstr "Ripeti stampa"