cura.po 302 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430
  1. # Cura
  2. # Copyright (C) 2019 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2019.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2019-11-05 13:13+0100\n"
  11. "PO-Revision-Date: 2019-07-29 15:51+0100\n"
  12. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  13. "Language-Team: Italian <info@lionbridge.com>, Italian <info@bothof.nl>\n"
  14. "Language: it_IT\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Generator: Poedit 2.1.1\n"
  20. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:30
  21. msgctxt "@action"
  22. msgid "Machine Settings"
  23. msgstr "Impostazioni macchina"
  24. #: /home/ruben/Projects/Cura/plugins/XRayView/__init__.py:12
  25. msgctxt "@item:inlistbox"
  26. msgid "X-Ray view"
  27. msgstr "Vista ai raggi X"
  28. #: /home/ruben/Projects/Cura/plugins/X3DReader/__init__.py:13
  29. msgctxt "@item:inlistbox"
  30. msgid "X3D File"
  31. msgstr "File X3D"
  32. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  33. #: /home/ruben/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  34. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:14
  35. msgctxt "@item:inlistbox"
  36. msgid "G-code File"
  37. msgstr "File G-Code"
  38. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:66
  39. msgctxt "@error:not supported"
  40. msgid "GCodeWriter does not support non-text mode."
  41. msgstr "GCodeWriter non supporta la modalità non di testo."
  42. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:72
  43. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:88
  44. msgctxt "@warning:status"
  45. msgid "Please prepare G-code before exporting."
  46. msgstr "Preparare il codice G prima dell’esportazione."
  47. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  48. msgctxt "@info:title"
  49. msgid "3D Model Assistant"
  50. msgstr "Assistente modello 3D"
  51. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:92
  52. #, python-brace-format
  53. msgctxt "@info:status"
  54. msgid ""
  55. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  56. "<p>{model_names}</p>\n"
  57. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  58. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  59. msgstr ""
  60. "<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"
  61. "<p>{model_names}</p>\n"
  62. "<p>Scopri come garantire la migliore qualità ed affidabilità di stampa.</p>\n"
  63. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Visualizza la guida alla qualità di stampa</a></p>"
  64. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:25
  65. msgctxt "@action"
  66. msgid "Update Firmware"
  67. msgstr "Aggiornamento firmware"
  68. #: /home/ruben/Projects/Cura/plugins/AMFReader/__init__.py:15
  69. msgctxt "@item:inlistbox"
  70. msgid "AMF File"
  71. msgstr "File AMF"
  72. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  73. msgctxt "@item:inmenu"
  74. msgid "USB printing"
  75. msgstr "Stampa USB"
  76. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  77. msgctxt "@action:button Preceded by 'Ready to'."
  78. msgid "Print via USB"
  79. msgstr "Stampa tramite USB"
  80. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  81. msgctxt "@info:tooltip"
  82. msgid "Print via USB"
  83. msgstr "Stampa tramite USB"
  84. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  85. msgctxt "@info:status"
  86. msgid "Connected via USB"
  87. msgstr "Connesso tramite USB"
  88. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:105
  89. msgctxt "@label"
  90. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  91. msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?"
  92. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
  93. msgctxt "@message"
  94. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  95. msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata."
  96. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:127
  97. msgctxt "@message"
  98. msgid "Print in Progress"
  99. msgstr "Stampa in corso"
  100. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  101. #: /home/ruben/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  102. msgctxt "@item:inlistbox"
  103. msgid "Compressed G-code File"
  104. msgstr "File G-Code compresso"
  105. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38
  106. msgctxt "@error:not supported"
  107. msgid "GCodeGzWriter does not support text mode."
  108. msgstr "GCodeGzWriter non supporta la modalità di testo."
  109. #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:28
  110. #: /home/ruben/Projects/Cura/plugins/UFPReader/__init__.py:22
  111. msgctxt "@item:inlistbox"
  112. msgid "Ultimaker Format Package"
  113. msgstr "Pacchetto formato Ultimaker"
  114. #: /home/ruben/Projects/Cura/plugins/PrepareStage/__init__.py:12
  115. msgctxt "@item:inmenu"
  116. msgid "Prepare"
  117. msgstr "Prepara"
  118. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  119. msgctxt "@action:button Preceded by 'Ready to'."
  120. msgid "Save to Removable Drive"
  121. msgstr "Salva su unità rimovibile"
  122. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  123. #, python-brace-format
  124. msgctxt "@item:inlistbox"
  125. msgid "Save to Removable Drive {0}"
  126. msgstr "Salva su unità rimovibile {0}"
  127. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  128. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:107
  129. msgctxt "@info:status"
  130. msgid "There are no file formats available to write with!"
  131. msgstr "Non ci sono formati di file disponibili per la scrittura!"
  132. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  133. #, python-brace-format
  134. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  135. msgid "Saving to Removable Drive <filename>{0}</filename>"
  136. msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  137. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  138. msgctxt "@info:title"
  139. msgid "Saving"
  140. msgstr "Salvataggio in corso"
  141. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  142. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  143. #, python-brace-format
  144. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  145. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  146. msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  147. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  148. #, python-brace-format
  149. msgctxt "@info:status Don't translate the tag {device}!"
  150. msgid "Could not find a file name when trying to write to {device}."
  151. msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}."
  152. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  153. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  154. #, python-brace-format
  155. msgctxt "@info:status"
  156. msgid "Could not save to removable drive {0}: {1}"
  157. msgstr "Impossibile salvare su unità rimovibile {0}: {1}"
  158. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  159. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:139
  160. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
  161. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1668
  162. msgctxt "@info:title"
  163. msgid "Error"
  164. msgstr "Errore"
  165. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  166. #, python-brace-format
  167. msgctxt "@info:status"
  168. msgid "Saved to Removable Drive {0} as {1}"
  169. msgstr "Salvato su unità rimovibile {0} come {1}"
  170. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  171. msgctxt "@info:title"
  172. msgid "File Saved"
  173. msgstr "File salvato"
  174. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  175. msgctxt "@action:button"
  176. msgid "Eject"
  177. msgstr "Rimuovi"
  178. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  179. #, python-brace-format
  180. msgctxt "@action"
  181. msgid "Eject removable device {0}"
  182. msgstr "Rimuovi il dispositivo rimovibile {0}"
  183. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  184. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  185. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  186. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1658
  187. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1758
  188. msgctxt "@info:title"
  189. msgid "Warning"
  190. msgstr "Avvertenza"
  191. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  192. #, python-brace-format
  193. msgctxt "@info:status"
  194. msgid "Ejected {0}. You can now safely remove the drive."
  195. msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità."
  196. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  197. msgctxt "@info:title"
  198. msgid "Safely Remove Hardware"
  199. msgstr "Rimozione sicura dell'hardware"
  200. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  201. #, python-brace-format
  202. msgctxt "@info:status"
  203. msgid "Failed to eject {0}. Another program may be using the drive."
  204. msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità."
  205. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:68
  206. msgctxt "@item:intext"
  207. msgid "Removable Drive"
  208. msgstr "Unità rimovibile"
  209. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:26
  210. msgctxt "@action"
  211. msgid "Connect via Network"
  212. msgstr "Collega tramite rete"
  213. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:57
  214. msgctxt "@action:button Preceded by 'Ready to'."
  215. msgid "Print over network"
  216. msgstr "Stampa sulla rete"
  217. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  218. msgctxt "@properties:tooltip"
  219. msgid "Print over network"
  220. msgstr "Stampa sulla rete"
  221. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  222. msgctxt "@info:status"
  223. msgid "Connected over the network"
  224. msgstr "Collegato alla rete"
  225. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  226. msgctxt "@info:status"
  227. msgid "Please wait until the current job has been sent."
  228. msgstr "Attendere che sia stato inviato il processo corrente."
  229. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  230. msgctxt "@info:title"
  231. msgid "Print error"
  232. msgstr "Errore di stampa"
  233. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudPrinterDetectedMessage.py:21
  234. msgctxt "@info:title"
  235. msgid "New cloud printers found"
  236. msgstr "Nuove stampanti in cloud rilevate"
  237. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudPrinterDetectedMessage.py:22
  238. msgctxt "@info:message"
  239. msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  240. msgstr "Sono state trovate nuove stampanti collegate al tuo account. Puoi vederle nell'elenco delle stampanti rilevate."
  241. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudPrinterDetectedMessage.py:27
  242. msgctxt "@info:option_text"
  243. msgid "Do not show this message again"
  244. msgstr "Non mostrare nuovamente questo messaggio"
  245. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  246. #, python-brace-format
  247. msgctxt "@info:status"
  248. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  249. 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."
  250. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  251. msgctxt "@info:title"
  252. msgid "Not a group host"
  253. msgstr "Non host del gruppo"
  254. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  255. msgctxt "@action"
  256. msgid "Configure group"
  257. msgstr "Configurare il gruppo"
  258. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  259. msgctxt "@info:status"
  260. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  261. msgstr "Invia e controlla i processi di stampa ovunque con l’account Ultimaker."
  262. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  263. msgctxt "@info:status Ultimaker Cloud should not be translated."
  264. msgid "Connect to Ultimaker Cloud"
  265. msgstr "Connettiti a Ultimaker Cloud"
  266. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  267. msgctxt "@action"
  268. msgid "Get started"
  269. msgstr "Per iniziare"
  270. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:14
  271. msgctxt "@info:status"
  272. msgid "Sending Print Job"
  273. msgstr "Invio di un processo di stampa"
  274. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  275. msgctxt "@info:status"
  276. msgid "Uploading print job to printer."
  277. msgstr "Caricamento del processo di stampa sulla stampante."
  278. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  279. msgctxt "@info:status"
  280. msgid "Print job was successfully sent to the printer."
  281. msgstr "Processo di stampa inviato con successo alla stampante."
  282. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  283. msgctxt "@info:title"
  284. msgid "Data Sent"
  285. msgstr "Dati inviati"
  286. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  287. msgctxt "@info:status"
  288. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  289. msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente."
  290. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  291. msgctxt "@info:title"
  292. msgid "Update your printer"
  293. msgstr "Aggiornare la stampante"
  294. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  295. #, python-brace-format
  296. msgctxt "@info:status"
  297. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  298. msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}."
  299. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  300. msgctxt "@info:title"
  301. msgid "Sending materials to printer"
  302. msgstr "Invio dei materiali alla stampante"
  303. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  304. msgctxt "@info:text"
  305. msgid "Could not upload the data to the printer."
  306. msgstr "Impossibile caricare i dati sulla stampante."
  307. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  308. msgctxt "@info:title"
  309. msgid "Network error"
  310. msgstr "Errore di rete"
  311. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  312. msgctxt "@info:status"
  313. msgid "tomorrow"
  314. msgstr "domani"
  315. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  316. msgctxt "@info:status"
  317. msgid "today"
  318. msgstr "oggi"
  319. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:138
  320. msgctxt "@action:button"
  321. msgid "Print via Cloud"
  322. msgstr "Stampa tramite Cloud"
  323. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:139
  324. msgctxt "@properties:tooltip"
  325. msgid "Print via Cloud"
  326. msgstr "Stampa tramite Cloud"
  327. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:140
  328. msgctxt "@info:status"
  329. msgid "Connected via Cloud"
  330. msgstr "Collegato tramite Cloud"
  331. #: /home/ruben/Projects/Cura/plugins/MonitorStage/__init__.py:14
  332. msgctxt "@item:inmenu"
  333. msgid "Monitor"
  334. msgstr "Controlla"
  335. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:125
  336. msgctxt "@info"
  337. msgid "Could not access update information."
  338. msgstr "Non è possibile accedere alle informazioni di aggiornamento."
  339. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  340. #, python-brace-format
  341. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  342. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  343. msgstr "Sono disponibili nuove funzioni per la {machine_name}! Si consiglia di aggiornare il firmware sulla stampante."
  344. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:21
  345. #, python-format
  346. msgctxt "@info:title The %s gets replaced with the printer name."
  347. msgid "New %s firmware available"
  348. msgstr "Nuovo firmware %s disponibile"
  349. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:27
  350. msgctxt "@action:button"
  351. msgid "How to update"
  352. msgstr "Modalità di aggiornamento"
  353. #: /home/ruben/Projects/Cura/plugins/SimulationView/__init__.py:15
  354. msgctxt "@item:inlistbox"
  355. msgid "Layer view"
  356. msgstr "Visualizzazione strato"
  357. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:117
  358. msgctxt "@info:status"
  359. msgid "Cura does not accurately display layers when Wire Printing is enabled"
  360. msgstr "Cura non visualizza in modo accurato gli strati se la funzione Wire Printing è abilitata"
  361. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:118
  362. msgctxt "@info:title"
  363. msgid "Simulation View"
  364. msgstr "Vista simulazione"
  365. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  366. msgctxt "@item:inmenu"
  367. msgid "Post Processing"
  368. msgstr "Post-elaborazione"
  369. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  370. msgctxt "@item:inmenu"
  371. msgid "Modify G-Code"
  372. msgstr "Modifica codice G"
  373. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:12
  374. msgctxt "@label"
  375. msgid "Support Blocker"
  376. msgstr "Blocco supporto"
  377. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:13
  378. msgctxt "@info:tooltip"
  379. msgid "Create a volume in which supports are not printed."
  380. msgstr "Crea un volume in cui i supporti non vengono stampati."
  381. #: /home/ruben/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  382. msgctxt "@item:inlistbox"
  383. msgid "Cura 15.04 profiles"
  384. msgstr "Profili Cura 15.04"
  385. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14
  386. msgctxt "@item:inlistbox"
  387. msgid "JPG Image"
  388. msgstr "Immagine JPG"
  389. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:18
  390. msgctxt "@item:inlistbox"
  391. msgid "JPEG Image"
  392. msgstr "Immagine JPEG"
  393. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:22
  394. msgctxt "@item:inlistbox"
  395. msgid "PNG Image"
  396. msgstr "Immagine PNG"
  397. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:26
  398. msgctxt "@item:inlistbox"
  399. msgid "BMP Image"
  400. msgstr "Immagine BMP"
  401. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:30
  402. msgctxt "@item:inlistbox"
  403. msgid "GIF Image"
  404. msgstr "Immagine GIF"
  405. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  406. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  407. msgid "Open Compressed Triangle Mesh"
  408. msgstr "Open Compressed Triangle Mesh"
  409. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  410. msgctxt "@item:inlistbox"
  411. msgid "COLLADA Digital Asset Exchange"
  412. msgstr "COLLADA Digital Asset Exchange"
  413. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  414. msgctxt "@item:inlistbox"
  415. msgid "glTF Binary"
  416. msgstr "glTF Binary"
  417. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  418. msgctxt "@item:inlistbox"
  419. msgid "glTF Embedded JSON"
  420. msgstr "glTF Embedded JSON"
  421. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  422. msgctxt "@item:inlistbox"
  423. msgid "Stanford Triangle Format"
  424. msgstr "Stanford Triangle Format"
  425. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  426. msgctxt "@item:inlistbox"
  427. msgid "Compressed COLLADA Digital Asset Exchange"
  428. msgstr "Compressed COLLADA Digital Asset Exchange"
  429. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
  430. msgctxt "@info:status"
  431. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  432. msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata."
  433. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
  434. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:362
  435. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  436. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  437. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:404
  438. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
  439. msgctxt "@info:title"
  440. msgid "Unable to slice"
  441. msgstr "Sezionamento impossibile"
  442. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:361
  443. #, python-brace-format
  444. msgctxt "@info:status"
  445. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  446. msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}"
  447. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385
  448. #, python-brace-format
  449. msgctxt "@info:status"
  450. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  451. msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}"
  452. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:394
  453. msgctxt "@info:status"
  454. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  455. msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide."
  456. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:403
  457. #, python-format
  458. msgctxt "@info:status"
  459. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  460. msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato."
  461. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  462. msgctxt "@info:status"
  463. 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."
  464. 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."
  465. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50
  466. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  467. msgctxt "@info:status"
  468. msgid "Processing Layers"
  469. msgstr "Elaborazione dei livelli"
  470. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  471. msgctxt "@info:title"
  472. msgid "Information"
  473. msgstr "Informazioni"
  474. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  475. msgctxt "@label"
  476. msgid "Per Model Settings"
  477. msgstr "Impostazioni per modello"
  478. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  479. msgctxt "@info:tooltip"
  480. msgid "Configure Per Model Settings"
  481. msgstr "Configura impostazioni per modello"
  482. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:186
  483. msgctxt "@title:tab"
  484. msgid "Recommended"
  485. msgstr "Consigliata"
  486. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:188
  487. msgctxt "@title:tab"
  488. msgid "Custom"
  489. msgstr "Personalizzata"
  490. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28
  491. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34
  492. msgctxt "@item:inlistbox"
  493. msgid "3MF File"
  494. msgstr "File 3MF"
  495. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:198
  496. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:651
  497. msgctxt "@label"
  498. msgid "Nozzle"
  499. msgstr "Ugello"
  500. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:496
  501. #, python-brace-format
  502. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  503. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  504. msgstr "Il file di progetto <filename>{0}</filename> contiene un tipo di macchina sconosciuto <message>{1}</message>. Impossibile importare la macchina. Verranno invece importati i modelli."
  505. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:499
  506. msgctxt "@info:title"
  507. msgid "Open Project File"
  508. msgstr "Apri file progetto"
  509. #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12
  510. msgctxt "@item:inmenu"
  511. msgid "Solid view"
  512. msgstr "Visualizzazione compatta"
  513. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:18
  514. msgctxt "@item:inlistbox"
  515. msgid "G File"
  516. msgstr "File G"
  517. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:335
  518. msgctxt "@info:status"
  519. msgid "Parsing G-code"
  520. msgstr "Parsing codice G"
  521. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:337
  522. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:491
  523. msgctxt "@info:title"
  524. msgid "G-code Details"
  525. msgstr "Dettagli codice G"
  526. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:489
  527. msgctxt "@info:generic"
  528. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  529. msgstr "Verifica che il codice G sia idoneo alla tua stampante e alla sua configurazione prima di trasmettere il file. La rappresentazione del codice G potrebbe non essere accurata."
  530. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  531. msgctxt "@item:inmenu"
  532. msgid "Manage backups"
  533. msgstr "Gestione backup"
  534. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  535. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  536. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  537. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104
  538. msgctxt "@info:title"
  539. msgid "Backup"
  540. msgstr "Backup"
  541. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  542. msgctxt "@info:backup_status"
  543. msgid "There was an error listing your backups."
  544. msgstr "Si è verificato un errore nell’elenco dei backup."
  545. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:132
  546. msgctxt "@info:backup_status"
  547. msgid "There was an error trying to restore your backup."
  548. msgstr "Si è verificato un errore cercando di ripristinare il backup."
  549. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:15
  550. msgctxt "@info:title"
  551. msgid "Backups"
  552. msgstr "Backup"
  553. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:27
  554. msgctxt "@info:backup_status"
  555. msgid "Uploading your backup..."
  556. msgstr "Caricamento backup in corso..."
  557. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:36
  558. msgctxt "@info:backup_status"
  559. msgid "There was an error while uploading your backup."
  560. msgstr "Si è verificato un errore durante il caricamento del backup."
  561. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:39
  562. msgctxt "@info:backup_status"
  563. msgid "Your backup has finished uploading."
  564. msgstr "Caricamento backup completato."
  565. #: /home/ruben/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  566. #: /home/ruben/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  567. msgctxt "@item:inlistbox"
  568. msgid "Cura Profile"
  569. msgstr "Profilo Cura"
  570. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26
  571. msgctxt "@item:inlistbox"
  572. msgid "3MF file"
  573. msgstr "File 3MF"
  574. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34
  575. msgctxt "@item:inlistbox"
  576. msgid "Cura Project 3MF file"
  577. msgstr "File 3MF Progetto Cura"
  578. #: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179
  579. msgctxt "@error:zip"
  580. msgid "Error writing 3mf file."
  581. msgstr "Errore scrittura file 3MF."
  582. #: /home/ruben/Projects/Cura/plugins/PreviewStage/__init__.py:13
  583. msgctxt "@item:inmenu"
  584. msgid "Preview"
  585. msgstr "Anteprima"
  586. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  587. msgctxt "@action"
  588. msgid "Select upgrades"
  589. msgstr "Seleziona aggiornamenti"
  590. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  591. msgctxt "@action"
  592. msgid "Level build plate"
  593. msgstr "Livella piano di stampa"
  594. #: /home/ruben/Projects/Cura/cura/API/Account.py:82
  595. msgctxt "@info:title"
  596. msgid "Login failed"
  597. msgstr "Login non riuscito"
  598. #: /home/ruben/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  599. msgctxt "@info:not supported profile"
  600. msgid "Not supported"
  601. msgstr "Non supportato"
  602. #: /home/ruben/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  603. msgctxt "@info:No intent profile selected"
  604. msgid "Default"
  605. msgstr "Default"
  606. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:196
  607. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:125
  608. msgctxt "@title:window"
  609. msgid "File Already Exists"
  610. msgstr "Il file esiste già"
  611. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:197
  612. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:126
  613. #, python-brace-format
  614. msgctxt "@label Don't translate the XML tag <filename>!"
  615. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  616. msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di volerlo sovrascrivere?"
  617. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:430
  618. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:433
  619. msgctxt "@info:status"
  620. msgid "Invalid file URL:"
  621. msgstr "File URL non valido:"
  622. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:780
  623. msgctxt "@info:message Followed by a list of settings."
  624. msgid "Settings have been changed to match the current availability of extruders:"
  625. msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:"
  626. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:782
  627. msgctxt "@info:title"
  628. msgid "Settings updated"
  629. msgstr "Impostazioni aggiornate"
  630. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:1334
  631. msgctxt "@info:title"
  632. msgid "Extruder(s) Disabled"
  633. msgstr "Estrusore disabilitato"
  634. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:1457
  635. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:99
  636. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:86
  637. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:182
  638. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:223
  639. msgctxt "@label"
  640. msgid "Unknown"
  641. msgstr "Sconosciuto"
  642. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:137
  643. #, python-brace-format
  644. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  645. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  646. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: <message>{1}</message>"
  647. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  648. #, python-brace-format
  649. msgctxt "@info:status Don't translate the XML tag <filename>!"
  650. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  651. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: Rilevata anomalia durante scrittura plugin."
  652. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:149
  653. #, python-brace-format
  654. msgctxt "@info:status Don't translate the XML tag <filename>!"
  655. msgid "Exported profile to <filename>{0}</filename>"
  656. msgstr "Profilo esportato su <filename>{0}</filename>"
  657. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:150
  658. msgctxt "@info:title"
  659. msgid "Export succeeded"
  660. msgstr "Esportazione riuscita"
  661. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:177
  662. #, python-brace-format
  663. msgctxt "@info:status Don't translate the XML tags <filename>!"
  664. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  665. msgstr "Impossibile importare il profilo da <filename>{0}</filename>: {1}"
  666. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:181
  667. #, python-brace-format
  668. msgctxt "@info:status Don't translate the XML tags <filename>!"
  669. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  670. msgstr "Impossibile importare il profilo da <filename>{0}</filename> prima di aggiungere una stampante."
  671. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:198
  672. #, python-brace-format
  673. msgctxt "@info:status Don't translate the XML tags <filename>!"
  674. msgid "No custom profile to import in file <filename>{0}</filename>"
  675. msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  676. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:202
  677. #, python-brace-format
  678. msgctxt "@info:status Don't translate the XML tags <filename>!"
  679. msgid "Failed to import profile from <filename>{0}</filename>:"
  680. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  681. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:226
  682. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:236
  683. #, python-brace-format
  684. msgctxt "@info:status Don't translate the XML tags <filename>!"
  685. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  686. msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  687. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:325
  688. #, python-brace-format
  689. msgctxt "@info:status Don't translate the XML tag <filename>!"
  690. msgid "Failed to import profile from <filename>{0}</filename>:"
  691. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  692. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:328
  693. #, python-brace-format
  694. msgctxt "@info:status"
  695. msgid "Successfully imported profile {0}"
  696. msgstr "Profilo importato correttamente {0}"
  697. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:331
  698. #, python-brace-format
  699. msgctxt "@info:status"
  700. msgid "File {0} does not contain any valid profile."
  701. msgstr "Il file {0} non contiene nessun profilo valido."
  702. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:334
  703. #, python-brace-format
  704. msgctxt "@info:status"
  705. msgid "Profile {0} has an unknown file type or is corrupted."
  706. msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto."
  707. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:369
  708. msgctxt "@label"
  709. msgid "Custom profile"
  710. msgstr "Profilo personalizzato"
  711. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:385
  712. msgctxt "@info:status"
  713. msgid "Profile is missing a quality type."
  714. msgstr "Il profilo è privo del tipo di qualità."
  715. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:399
  716. #, python-brace-format
  717. msgctxt "@info:status"
  718. msgid "Could not find a quality type {0} for the current configuration."
  719. msgstr "Impossibile trovare un tipo qualità {0} per la configurazione corrente."
  720. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:76
  721. msgctxt "@tooltip"
  722. msgid "Outer Wall"
  723. msgstr "Parete esterna"
  724. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:77
  725. msgctxt "@tooltip"
  726. msgid "Inner Walls"
  727. msgstr "Pareti interne"
  728. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:78
  729. msgctxt "@tooltip"
  730. msgid "Skin"
  731. msgstr "Rivestimento esterno"
  732. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:79
  733. msgctxt "@tooltip"
  734. msgid "Infill"
  735. msgstr "Riempimento"
  736. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:80
  737. msgctxt "@tooltip"
  738. msgid "Support Infill"
  739. msgstr "Riempimento del supporto"
  740. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:81
  741. msgctxt "@tooltip"
  742. msgid "Support Interface"
  743. msgstr "Interfaccia supporto"
  744. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:82
  745. msgctxt "@tooltip"
  746. msgid "Support"
  747. msgstr "Supporto"
  748. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:83
  749. msgctxt "@tooltip"
  750. msgid "Skirt"
  751. msgstr "Skirt"
  752. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:84
  753. msgctxt "@tooltip"
  754. msgid "Prime Tower"
  755. msgstr "Torre di innesco"
  756. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:85
  757. msgctxt "@tooltip"
  758. msgid "Travel"
  759. msgstr "Spostamenti"
  760. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:86
  761. msgctxt "@tooltip"
  762. msgid "Retractions"
  763. msgstr "Retrazioni"
  764. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:87
  765. msgctxt "@tooltip"
  766. msgid "Other"
  767. msgstr "Altro"
  768. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:302
  769. #, python-brace-format
  770. msgctxt "@label"
  771. msgid "Pre-sliced file {0}"
  772. msgstr "File pre-sezionato {0}"
  773. #: /home/ruben/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  774. msgctxt "@action:button"
  775. msgid "Next"
  776. msgstr "Avanti"
  777. #: /home/ruben/Projects/Cura/cura/UI/ObjectsModel.py:62
  778. #, python-brace-format
  779. msgctxt "@label"
  780. msgid "Group #{group_nr}"
  781. msgstr "Gruppo #{group_nr}"
  782. #: /home/ruben/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  783. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  784. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  785. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:133
  786. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:124
  787. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  788. msgctxt "@action:button"
  789. msgid "Close"
  790. msgstr "Chiudi"
  791. #: /home/ruben/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  792. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  793. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  794. msgctxt "@action:button"
  795. msgid "Add"
  796. msgstr "Aggiungi"
  797. #: /home/ruben/Projects/Cura/cura/UI/AddPrinterPagesModel.py:18
  798. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:19
  799. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:81
  800. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  801. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  802. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  803. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:149
  804. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188
  805. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  806. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  807. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:294
  808. msgctxt "@action:button"
  809. msgid "Cancel"
  810. msgstr "Annulla"
  811. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:36
  812. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:320
  813. msgctxt "@label"
  814. msgid "Default"
  815. msgstr "Default"
  816. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:39
  817. msgctxt "@label"
  818. msgid "Visual"
  819. msgstr "Visivo"
  820. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:40
  821. msgctxt "@text"
  822. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  823. msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata."
  824. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:43
  825. msgctxt "@label"
  826. msgid "Engineering"
  827. msgstr "Engineering"
  828. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:44
  829. msgctxt "@text"
  830. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  831. msgstr "Il profilo di progettazione è destinato alla stampa di prototipi funzionali e di componenti d'uso finale, allo scopo di ottenere maggiore precisione e"
  832. " tolleranze strette."
  833. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:47
  834. msgctxt "@label"
  835. msgid "Draft"
  836. msgstr "Bozza"
  837. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:48
  838. msgctxt "@text"
  839. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  840. 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"
  841. " stampa."
  842. #: /home/ruben/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:208
  843. msgctxt "@menuitem"
  844. msgid "Not overridden"
  845. msgstr "Non sottoposto a override"
  846. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:357
  847. msgctxt "@label"
  848. msgid "Custom profiles"
  849. msgstr "Profili personalizzati"
  850. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:391
  851. #, python-brace-format
  852. msgctxt "@item:inlistbox"
  853. msgid "All Supported Types ({0})"
  854. msgstr "Tutti i tipi supportati ({0})"
  855. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:392
  856. msgctxt "@item:inlistbox"
  857. msgid "All Files (*)"
  858. msgstr "Tutti i file (*)"
  859. #: /home/ruben/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:213
  860. msgctxt "@label"
  861. msgid "Custom Material"
  862. msgstr "Materiale personalizzato"
  863. #: /home/ruben/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:214
  864. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  865. msgctxt "@label"
  866. msgid "Custom"
  867. msgstr "Personalizzata"
  868. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:116
  869. msgctxt "@label"
  870. msgid "The printer(s) below cannot be connected because they are part of a group"
  871. msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo"
  872. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:118
  873. msgctxt "@label"
  874. msgid "Available networked printers"
  875. msgstr "Stampanti disponibili in rete"
  876. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:90
  877. msgctxt "@info:status"
  878. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  879. msgstr "L’altezza del volume di stampa è stata ridotta a causa del valore dell’impostazione \"Sequenza di stampa” per impedire la collisione del gantry con i modelli stampati."
  880. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:92
  881. msgctxt "@info:title"
  882. msgid "Build Volume"
  883. msgstr "Volume di stampa"
  884. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99
  885. msgctxt "@info:backup_failed"
  886. msgid "Could not create archive from user data directory: {}"
  887. msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}"
  888. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:114
  889. msgctxt "@info:backup_failed"
  890. msgid "Tried to restore a Cura backup without having proper data or meta data."
  891. msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati."
  892. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:125
  893. msgctxt "@info:backup_failed"
  894. msgid "Tried to restore a Cura backup that is higher than the current version."
  895. msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente."
  896. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:79
  897. msgctxt "@message"
  898. msgid "Could not read response."
  899. msgstr "Impossibile leggere la risposta."
  900. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  901. msgctxt "@info"
  902. msgid "Unable to reach the Ultimaker account server."
  903. msgstr "Impossibile raggiungere il server account Ultimaker."
  904. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:70
  905. msgctxt "@message"
  906. msgid "Please give the required permissions when authorizing this application."
  907. msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione."
  908. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:77
  909. msgctxt "@message"
  910. msgid "Something unexpected happened when trying to log in, please try again."
  911. msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare."
  912. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:29
  913. msgctxt "@info:status"
  914. msgid "Multiplying and placing objects"
  915. msgstr "Moltiplicazione e collocazione degli oggetti"
  916. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:30
  917. msgctxt "@info:title"
  918. msgid "Placing Objects"
  919. msgstr "Sistemazione oggetti"
  920. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:108
  921. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:103
  922. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149
  923. msgctxt "@info:status"
  924. msgid "Unable to find a location within the build volume for all objects"
  925. msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti"
  926. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:108
  927. msgctxt "@info:title"
  928. msgid "Placing Object"
  929. msgstr "Sistemazione oggetto"
  930. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  931. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66
  932. msgctxt "@info:status"
  933. msgid "Finding new location for objects"
  934. msgstr "Ricerca nuova posizione per gli oggetti"
  935. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  936. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70
  937. msgctxt "@info:title"
  938. msgid "Finding Location"
  939. msgstr "Ricerca posizione"
  940. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:104
  941. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  942. msgctxt "@info:title"
  943. msgid "Can't Find Location"
  944. msgstr "Impossibile individuare posizione"
  945. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:83
  946. msgctxt "@title:window"
  947. msgid "Cura can't start"
  948. msgstr "Impossibile avviare Cura"
  949. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:89
  950. msgctxt "@label crash message"
  951. msgid ""
  952. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  953. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  954. " <p>Backups can be found in the configuration folder.</p>\n"
  955. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  956. " "
  957. msgstr ""
  958. "<p><b>Oops, Ultimaker Cura ha rilevato qualcosa che non sembra corretto.</p></b>\n"
  959. " <p>Abbiamo riscontrato un errore irrecuperabile durante l’avvio. È stato probabilmente causato da alcuni file di configurazione errati. Suggeriamo di effettuare il backup e ripristinare la configurazione.</p>\n"
  960. " <p>I backup sono contenuti nella cartella configurazione.</p>\n"
  961. " <p>Si prega di inviare questo Rapporto su crash per correggere il problema.</p>\n"
  962. " "
  963. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:98
  964. msgctxt "@action:button"
  965. msgid "Send crash report to Ultimaker"
  966. msgstr "Inviare il rapporto su crash a Ultimaker"
  967. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:101
  968. msgctxt "@action:button"
  969. msgid "Show detailed crash report"
  970. msgstr "Mostra il rapporto su crash dettagliato"
  971. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:105
  972. msgctxt "@action:button"
  973. msgid "Show configuration folder"
  974. msgstr "Mostra cartella di configurazione"
  975. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:116
  976. msgctxt "@action:button"
  977. msgid "Backup and Reset Configuration"
  978. msgstr "Backup e reset configurazione"
  979. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:145
  980. msgctxt "@title:window"
  981. msgid "Crash Report"
  982. msgstr "Rapporto su crash"
  983. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:165
  984. msgctxt "@label crash message"
  985. msgid ""
  986. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  987. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  988. " "
  989. msgstr ""
  990. "<p><b>Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema</p></b>\n"
  991. " <p>Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  992. " "
  993. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:173
  994. msgctxt "@title:groupbox"
  995. msgid "System information"
  996. msgstr "Informazioni di sistema"
  997. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:181
  998. msgctxt "@label unknown version of Cura"
  999. msgid "Unknown"
  1000. msgstr "Sconosciuto"
  1001. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:183
  1002. msgctxt "@label Cura version number"
  1003. msgid "Cura version"
  1004. msgstr "Versione Cura"
  1005. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:184
  1006. msgctxt "@label Type of platform"
  1007. msgid "Platform"
  1008. msgstr "Piattaforma"
  1009. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:185
  1010. msgctxt "@label"
  1011. msgid "Qt version"
  1012. msgstr "Versione Qt"
  1013. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:186
  1014. msgctxt "@label"
  1015. msgid "PyQt version"
  1016. msgstr "Versione PyQt"
  1017. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:187
  1018. msgctxt "@label OpenGL version"
  1019. msgid "OpenGL"
  1020. msgstr "OpenGL"
  1021. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:204
  1022. msgctxt "@label"
  1023. msgid "Not yet initialized<br/>"
  1024. msgstr "Non ancora inizializzato<br/>"
  1025. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:207
  1026. #, python-brace-format
  1027. msgctxt "@label OpenGL version"
  1028. msgid "<li>OpenGL Version: {version}</li>"
  1029. msgstr "<li>Versione OpenGL: {version}</li>"
  1030. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:208
  1031. #, python-brace-format
  1032. msgctxt "@label OpenGL vendor"
  1033. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1034. msgstr "<li>Fornitore OpenGL: {vendor}</li>"
  1035. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:209
  1036. #, python-brace-format
  1037. msgctxt "@label OpenGL renderer"
  1038. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1039. msgstr "<li>Renderer OpenGL: {renderer}</li>"
  1040. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:218
  1041. msgctxt "@title:groupbox"
  1042. msgid "Error traceback"
  1043. msgstr "Analisi errori"
  1044. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:299
  1045. msgctxt "@title:groupbox"
  1046. msgid "Logs"
  1047. msgstr "Registri"
  1048. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:322
  1049. msgctxt "@title:groupbox"
  1050. msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  1051. msgstr "Descrizione utente (Nota: gli sviluppatori potrebbero non parlare la lingua dell'utente. Se possibile, usare l'inglese)"
  1052. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:342
  1053. msgctxt "@action:button"
  1054. msgid "Send report"
  1055. msgstr "Invia report"
  1056. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:513
  1057. msgctxt "@info:progress"
  1058. msgid "Loading machines..."
  1059. msgstr "Caricamento macchine in corso..."
  1060. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:520
  1061. msgctxt "@info:progress"
  1062. msgid "Setting up preferences..."
  1063. msgstr "Impostazione delle preferenze..."
  1064. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:824
  1065. msgctxt "@info:progress"
  1066. msgid "Setting up scene..."
  1067. msgstr "Impostazione scena in corso..."
  1068. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:859
  1069. msgctxt "@info:progress"
  1070. msgid "Loading interface..."
  1071. msgstr "Caricamento interfaccia in corso..."
  1072. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1150
  1073. #, python-format
  1074. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  1075. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  1076. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  1077. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1657
  1078. #, python-brace-format
  1079. msgctxt "@info:status"
  1080. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1081. msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}"
  1082. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1667
  1083. #, python-brace-format
  1084. msgctxt "@info:status"
  1085. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  1086. msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}"
  1087. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1757
  1088. msgctxt "@info:status"
  1089. msgid "The selected model was too small to load."
  1090. msgstr "Il modello selezionato è troppo piccolo per il caricamento."
  1091. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1092. msgctxt "@title:label"
  1093. msgid "Printer Settings"
  1094. msgstr "Impostazioni della stampante"
  1095. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1096. msgctxt "@label"
  1097. msgid "X (Width)"
  1098. msgstr "X (Larghezza)"
  1099. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1100. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:88
  1101. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1102. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:203
  1103. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:223
  1104. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:243
  1105. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1106. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:285
  1107. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1108. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1109. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1110. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1111. msgctxt "@label"
  1112. msgid "mm"
  1113. msgstr "mm"
  1114. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:84
  1115. msgctxt "@label"
  1116. msgid "Y (Depth)"
  1117. msgstr "Y (Profondità)"
  1118. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1119. msgctxt "@label"
  1120. msgid "Z (Height)"
  1121. msgstr "Z (Altezza)"
  1122. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1123. msgctxt "@label"
  1124. msgid "Build plate shape"
  1125. msgstr "Forma del piano di stampa"
  1126. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1127. msgctxt "@label"
  1128. msgid "Origin at center"
  1129. msgstr "Origine al centro"
  1130. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1131. msgctxt "@label"
  1132. msgid "Heated bed"
  1133. msgstr "Piano riscaldato"
  1134. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1135. msgctxt "@label"
  1136. msgid "Heated build volume"
  1137. msgstr "Volume di stampa riscaldato"
  1138. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1139. msgctxt "@label"
  1140. msgid "G-code flavor"
  1141. msgstr "Versione codice G"
  1142. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1143. msgctxt "@title:label"
  1144. msgid "Printhead Settings"
  1145. msgstr "Impostazioni della testina di stampa"
  1146. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:199
  1147. msgctxt "@label"
  1148. msgid "X min"
  1149. msgstr "X min"
  1150. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:219
  1151. msgctxt "@label"
  1152. msgid "Y min"
  1153. msgstr "Y min"
  1154. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:239
  1155. msgctxt "@label"
  1156. msgid "X max"
  1157. msgstr "X max"
  1158. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1159. msgctxt "@label"
  1160. msgid "Y max"
  1161. msgstr "Y max"
  1162. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:281
  1163. msgctxt "@label"
  1164. msgid "Gantry Height"
  1165. msgstr "Altezza gantry"
  1166. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:295
  1167. msgctxt "@label"
  1168. msgid "Number of Extruders"
  1169. msgstr "Numero di estrusori"
  1170. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:355
  1171. msgctxt "@title:label"
  1172. msgid "Start G-code"
  1173. msgstr "Codice G avvio"
  1174. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:366
  1175. msgctxt "@title:label"
  1176. msgid "End G-code"
  1177. msgstr "Codice G fine"
  1178. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1179. msgctxt "@title:tab"
  1180. msgid "Printer"
  1181. msgstr "Stampante"
  1182. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1183. msgctxt "@title:label"
  1184. msgid "Nozzle Settings"
  1185. msgstr "Impostazioni ugello"
  1186. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1187. msgctxt "@label"
  1188. msgid "Nozzle size"
  1189. msgstr "Dimensione ugello"
  1190. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1191. msgctxt "@label"
  1192. msgid "Compatible material diameter"
  1193. msgstr "Diametro del materiale compatibile"
  1194. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1195. msgctxt "@label"
  1196. msgid "Nozzle offset X"
  1197. msgstr "Scostamento X ugello"
  1198. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1199. msgctxt "@label"
  1200. msgid "Nozzle offset Y"
  1201. msgstr "Scostamento Y ugello"
  1202. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1203. msgctxt "@label"
  1204. msgid "Cooling Fan Number"
  1205. msgstr "Numero ventola di raffreddamento"
  1206. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1207. msgctxt "@title:label"
  1208. msgid "Extruder Start G-code"
  1209. msgstr "Codice G avvio estrusore"
  1210. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1211. msgctxt "@title:label"
  1212. msgid "Extruder End G-code"
  1213. msgstr "Codice G fine estrusore"
  1214. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18
  1215. msgctxt "@action:button"
  1216. msgid "Install"
  1217. msgstr "Installazione"
  1218. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:20
  1219. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:46
  1220. msgctxt "@action:button"
  1221. msgid "Installed"
  1222. msgstr "Installa"
  1223. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxErrorPage.qml:16
  1224. msgctxt "@info"
  1225. msgid "Could not connect to the Cura Package database. Please check your connection."
  1226. msgstr "Impossibile connettersi al database pacchetto Cura. Verificare la connessione."
  1227. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/SmallRatingWidget.qml:27
  1228. msgctxt "@label"
  1229. msgid "ratings"
  1230. msgstr "valori"
  1231. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:32
  1232. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:30
  1233. msgctxt "@title:tab"
  1234. msgid "Plugins"
  1235. msgstr "Plugin"
  1236. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:77
  1237. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:44
  1238. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1239. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:417
  1240. msgctxt "@title:tab"
  1241. msgid "Materials"
  1242. msgstr "Materiali"
  1243. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91
  1244. msgctxt "@label"
  1245. msgid "Your rating"
  1246. msgstr "I tuoi valori"
  1247. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:99
  1248. msgctxt "@label"
  1249. msgid "Version"
  1250. msgstr "Versione"
  1251. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:106
  1252. msgctxt "@label"
  1253. msgid "Last updated"
  1254. msgstr "Ultimo aggiornamento"
  1255. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:113
  1256. msgctxt "@label"
  1257. msgid "Author"
  1258. msgstr "Autore"
  1259. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:120
  1260. msgctxt "@label"
  1261. msgid "Downloads"
  1262. msgstr "Download"
  1263. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:56
  1264. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1265. msgid "<a href='%1'>Log in</a> is required to install or update"
  1266. msgstr "<a href='%1'>Log in</a> deve essere installato o aggiornato"
  1267. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:80
  1268. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1269. msgid "<a href='%1'>Buy material spools</a>"
  1270. msgstr "<a href='%1'>Acquista bobine di materiale</a>"
  1271. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:96
  1272. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:34
  1273. msgctxt "@action:button"
  1274. msgid "Update"
  1275. msgstr "Aggiorna"
  1276. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:97
  1277. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:35
  1278. msgctxt "@action:button"
  1279. msgid "Updating"
  1280. msgstr "Aggiornamento in corso"
  1281. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:98
  1282. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:36
  1283. msgctxt "@action:button"
  1284. msgid "Updated"
  1285. msgstr "Aggiornamento eseguito"
  1286. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:13
  1287. msgctxt "@title"
  1288. msgid "Marketplace"
  1289. msgstr "Mercato"
  1290. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxBackColumn.qml:25
  1291. msgctxt "@action:button"
  1292. msgid "Back"
  1293. msgstr "Indietro"
  1294. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20
  1295. msgctxt "@title:window"
  1296. msgid "Confirm uninstall"
  1297. msgstr "Conferma disinstalla"
  1298. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:50
  1299. msgctxt "@text:window"
  1300. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1301. msgstr "Si stanno installando materiali e/o profili ancora in uso. La conferma ripristina i seguenti materiali/profili ai valori predefiniti."
  1302. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51
  1303. msgctxt "@text:window"
  1304. msgid "Materials"
  1305. msgstr "Materiali"
  1306. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52
  1307. msgctxt "@text:window"
  1308. msgid "Profiles"
  1309. msgstr "Profili"
  1310. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:90
  1311. msgctxt "@action:button"
  1312. msgid "Confirm"
  1313. msgstr "Conferma"
  1314. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/RatingWidget.qml:54
  1315. msgctxt "@label"
  1316. msgid "You need to login first before you can rate"
  1317. msgstr "Prima della valutazione è necessario effettuare l’accesso"
  1318. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/RatingWidget.qml:54
  1319. msgctxt "@label"
  1320. msgid "You need to install the package before you can rate"
  1321. msgstr "Prima della valutazione è necessario installare il pacchetto"
  1322. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:19
  1323. msgctxt "@info"
  1324. msgid "You will need to restart Cura before changes in packages have effect."
  1325. msgstr "Riavviare Cura per rendere effettive le modifiche apportate ai pacchetti."
  1326. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:45
  1327. msgctxt "@info:button"
  1328. msgid "Quit Cura"
  1329. msgstr "Esci da Cura"
  1330. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:31
  1331. msgctxt "@label"
  1332. msgid "Community Contributions"
  1333. msgstr "Contributi della comunità"
  1334. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:31
  1335. msgctxt "@label"
  1336. msgid "Community Plugins"
  1337. msgstr "Plugin della comunità"
  1338. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:40
  1339. msgctxt "@label"
  1340. msgid "Generic Materials"
  1341. msgstr "Materiali generici"
  1342. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:59
  1343. msgctxt "@title:tab"
  1344. msgid "Installed"
  1345. msgstr "Installa"
  1346. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:22
  1347. msgctxt "@label"
  1348. msgid "Will install upon restarting"
  1349. msgstr "L'installazione sarà eseguita al riavvio"
  1350. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:53
  1351. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1352. msgid "<a href='%1'>Log in</a> is required to update"
  1353. msgstr "<a href='%1'>Log in</a> deve essere aggiornato"
  1354. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:71
  1355. msgctxt "@action:button"
  1356. msgid "Downgrade"
  1357. msgstr "Downgrade"
  1358. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:71
  1359. msgctxt "@action:button"
  1360. msgid "Uninstall"
  1361. msgstr "Disinstalla"
  1362. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:16
  1363. msgctxt "@title:window"
  1364. msgid "Plugin License Agreement"
  1365. msgstr "Accordo di licenza plugin"
  1366. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:33
  1367. msgctxt "@label"
  1368. msgid ""
  1369. "This plugin contains a license.\n"
  1370. "You need to accept this license to install this plugin.\n"
  1371. "Do you agree with the terms below?"
  1372. msgstr ""
  1373. "Questo plugin contiene una licenza.\n"
  1374. "È necessario accettare questa licenza per poter installare il plugin.\n"
  1375. "Accetti i termini sotto riportati?"
  1376. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:55
  1377. msgctxt "@action:button"
  1378. msgid "Accept"
  1379. msgstr "Accetto"
  1380. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:66
  1381. msgctxt "@action:button"
  1382. msgid "Decline"
  1383. msgstr "Non accetto"
  1384. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23
  1385. msgctxt "@label"
  1386. msgid "Featured"
  1387. msgstr "In primo piano"
  1388. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:34
  1389. msgctxt "@label"
  1390. msgid "Compatibility"
  1391. msgstr "Compatibilità"
  1392. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:124
  1393. msgctxt "@label:table_header"
  1394. msgid "Machine"
  1395. msgstr "Macchina"
  1396. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:137
  1397. msgctxt "@label:table_header"
  1398. msgid "Build Plate"
  1399. msgstr "Piano di stampa"
  1400. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:143
  1401. msgctxt "@label:table_header"
  1402. msgid "Support"
  1403. msgstr "Supporto"
  1404. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:149
  1405. msgctxt "@label:table_header"
  1406. msgid "Quality"
  1407. msgstr "Qualità"
  1408. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:170
  1409. msgctxt "@action:label"
  1410. msgid "Technical Data Sheet"
  1411. msgstr "Scheda dati tecnici"
  1412. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:179
  1413. msgctxt "@action:label"
  1414. msgid "Safety Data Sheet"
  1415. msgstr "Scheda dati di sicurezza"
  1416. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:188
  1417. msgctxt "@action:label"
  1418. msgid "Printing Guidelines"
  1419. msgstr "Linee guida di stampa"
  1420. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:197
  1421. msgctxt "@action:label"
  1422. msgid "Website"
  1423. msgstr "Sito web"
  1424. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLoadingPage.qml:16
  1425. msgctxt "@info"
  1426. msgid "Fetching packages..."
  1427. msgstr "Recupero dei pacchetti..."
  1428. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:91
  1429. msgctxt "@label"
  1430. msgid "Website"
  1431. msgstr "Sito web"
  1432. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:98
  1433. msgctxt "@label"
  1434. msgid "Email"
  1435. msgstr "E-mail"
  1436. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1437. msgctxt "@info:tooltip"
  1438. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1439. msgstr "Alcune parti potrebbero risultare problematiche in questa stampa. Fare click per visualizzare i suggerimenti per la regolazione."
  1440. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1441. msgctxt "@title"
  1442. msgid "Update Firmware"
  1443. msgstr "Aggiornamento firmware"
  1444. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1445. msgctxt "@label"
  1446. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1447. msgstr "Il firmware è la parte di software eseguita direttamente sulla stampante 3D. Questo firmware controlla i motori passo-passo, regola la temperatura e, in ultima analisi, consente il funzionamento della stampante."
  1448. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1449. msgctxt "@label"
  1450. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1451. msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni."
  1452. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1453. msgctxt "@action:button"
  1454. msgid "Automatically upgrade Firmware"
  1455. msgstr "Aggiorna automaticamente il firmware"
  1456. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1457. msgctxt "@action:button"
  1458. msgid "Upload custom Firmware"
  1459. msgstr "Carica il firmware personalizzato"
  1460. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1461. msgctxt "@label"
  1462. msgid "Firmware can not be updated because there is no connection with the printer."
  1463. msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante."
  1464. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1465. msgctxt "@label"
  1466. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1467. msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware."
  1468. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1469. msgctxt "@title:window"
  1470. msgid "Select custom firmware"
  1471. msgstr "Seleziona il firmware personalizzato"
  1472. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1473. msgctxt "@title:window"
  1474. msgid "Firmware Update"
  1475. msgstr "Aggiornamento del firmware"
  1476. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1477. msgctxt "@label"
  1478. msgid "Updating firmware."
  1479. msgstr "Aggiornamento firmware."
  1480. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1481. msgctxt "@label"
  1482. msgid "Firmware update completed."
  1483. msgstr "Aggiornamento del firmware completato."
  1484. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1485. msgctxt "@label"
  1486. msgid "Firmware update failed due to an unknown error."
  1487. msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto."
  1488. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1489. msgctxt "@label"
  1490. msgid "Firmware update failed due to an communication error."
  1491. msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione."
  1492. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1493. msgctxt "@label"
  1494. msgid "Firmware update failed due to an input/output error."
  1495. msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output."
  1496. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1497. msgctxt "@label"
  1498. msgid "Firmware update failed due to missing firmware."
  1499. msgstr "Aggiornamento firmware non riuscito per firmware mancante."
  1500. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:155
  1501. msgctxt "@label link to Connect and Cloud interfaces"
  1502. msgid "Manage printer"
  1503. msgstr "Gestione stampanti"
  1504. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:192
  1505. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:183
  1506. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  1507. msgctxt "@label"
  1508. msgid "Glass"
  1509. msgstr "Vetro"
  1510. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:256
  1511. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:514
  1512. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:248
  1513. msgctxt "@info"
  1514. msgid "Please update your printer's firmware to manage the queue remotely."
  1515. msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto."
  1516. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:289
  1517. msgctxt "@info"
  1518. msgid "The webcam is not available because you are monitoring a cloud printer."
  1519. msgstr "La webcam non è disponibile perché si sta controllando una stampante cloud."
  1520. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  1521. msgctxt "@label:status"
  1522. msgid "Loading..."
  1523. msgstr "Caricamento in corso..."
  1524. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  1525. msgctxt "@label:status"
  1526. msgid "Unavailable"
  1527. msgstr "Non disponibile"
  1528. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1529. msgctxt "@label:status"
  1530. msgid "Unreachable"
  1531. msgstr "Non raggiungibile"
  1532. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  1533. msgctxt "@label:status"
  1534. msgid "Idle"
  1535. msgstr "Ferma"
  1536. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:401
  1537. msgctxt "@label"
  1538. msgid "Untitled"
  1539. msgstr "Senza titolo"
  1540. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:422
  1541. msgctxt "@label"
  1542. msgid "Anonymous"
  1543. msgstr "Anonimo"
  1544. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:449
  1545. msgctxt "@label:status"
  1546. msgid "Requires configuration changes"
  1547. msgstr "Richiede modifiche di configurazione"
  1548. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:487
  1549. msgctxt "@action:button"
  1550. msgid "Details"
  1551. msgstr "Dettagli"
  1552. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:132
  1553. msgctxt "@label"
  1554. msgid "Unavailable printer"
  1555. msgstr "Stampante non disponibile"
  1556. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:134
  1557. msgctxt "@label"
  1558. msgid "First available"
  1559. msgstr "Primo disponibile"
  1560. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1561. msgctxt "@label"
  1562. msgid "Queued"
  1563. msgstr "Coda di stampa"
  1564. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
  1565. msgctxt "@label link to connect manager"
  1566. msgid "Manage in browser"
  1567. msgstr "Gestisci nel browser"
  1568. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:100
  1569. msgctxt "@label"
  1570. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1571. msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno."
  1572. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:115
  1573. msgctxt "@label"
  1574. msgid "Print jobs"
  1575. msgstr "Processi di stampa"
  1576. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:131
  1577. msgctxt "@label"
  1578. msgid "Total print time"
  1579. msgstr "Tempo di stampa totale"
  1580. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:147
  1581. msgctxt "@label"
  1582. msgid "Waiting for"
  1583. msgstr "In attesa"
  1584. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1585. msgctxt "@title:window"
  1586. msgid "Connect to Networked Printer"
  1587. msgstr "Collega alla stampante in rete"
  1588. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1589. msgctxt "@label"
  1590. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  1591. msgstr "Per stampare direttamente sulla stampante in rete, verificare che la stampante desiderata sia collegata alla rete mediante un cavo di rete o mediante collegamento alla rete WIFI. Se non si esegue il collegamento di Cura alla stampante, è comunque possibile utilizzare una chiavetta USB per trasferire i file codice G alla stampante."
  1592. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1593. msgctxt "@label"
  1594. msgid "Select your printer from the list below:"
  1595. msgstr "Selezionare la stampante dall’elenco seguente:"
  1596. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1597. msgctxt "@action:button"
  1598. msgid "Edit"
  1599. msgstr "Modifica"
  1600. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  1601. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:155
  1602. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1603. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1604. msgctxt "@action:button"
  1605. msgid "Remove"
  1606. msgstr "Rimuovi"
  1607. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1608. msgctxt "@action:button"
  1609. msgid "Refresh"
  1610. msgstr "Aggiorna"
  1611. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1612. msgctxt "@label"
  1613. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1614. msgstr "Se la stampante non è nell’elenco, leggere la <a href='%1'>guida alla risoluzione dei problemi per la stampa in rete</a>"
  1615. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  1616. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:258
  1617. msgctxt "@label"
  1618. msgid "Type"
  1619. msgstr "Tipo"
  1620. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  1621. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:274
  1622. msgctxt "@label"
  1623. msgid "Firmware version"
  1624. msgstr "Versione firmware"
  1625. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  1626. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:290
  1627. msgctxt "@label"
  1628. msgid "Address"
  1629. msgstr "Indirizzo"
  1630. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1631. msgctxt "@label"
  1632. msgid "This printer is not set up to host a group of printers."
  1633. msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti."
  1634. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1635. msgctxt "@label"
  1636. msgid "This printer is the host for a group of %1 printers."
  1637. msgstr "Questa stampante comanda un gruppo di %1 stampanti."
  1638. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1639. msgctxt "@label"
  1640. msgid "The printer at this address has not yet responded."
  1641. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  1642. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1643. msgctxt "@action:button"
  1644. msgid "Connect"
  1645. msgstr "Collega"
  1646. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1647. msgctxt "@title:window"
  1648. msgid "Invalid IP address"
  1649. msgstr "Indirizzo IP non valido"
  1650. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1651. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1652. msgctxt "@text"
  1653. msgid "Please enter a valid IP address."
  1654. msgstr "Inserire un indirizzo IP valido."
  1655. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1656. msgctxt "@title:window"
  1657. msgid "Printer Address"
  1658. msgstr "Indirizzo stampante"
  1659. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  1660. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1661. msgctxt "@label"
  1662. msgid "Enter the IP address of your printer on the network."
  1663. msgstr "Inserire l'indirizzo IP della stampante in rete."
  1664. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1665. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:138
  1666. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181
  1667. msgctxt "@action:button"
  1668. msgid "OK"
  1669. msgstr "OK"
  1670. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1671. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1672. msgctxt "@label:status"
  1673. msgid "Aborted"
  1674. msgstr "Interrotto"
  1675. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1676. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1677. msgctxt "@label:status"
  1678. msgid "Finished"
  1679. msgstr "Terminato"
  1680. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1681. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1682. msgctxt "@label:status"
  1683. msgid "Preparing..."
  1684. msgstr "Preparazione in corso..."
  1685. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1686. msgctxt "@label:status"
  1687. msgid "Aborting..."
  1688. msgstr "Interr. in corso..."
  1689. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1690. msgctxt "@label:status"
  1691. msgid "Pausing..."
  1692. msgstr "Messa in pausa..."
  1693. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1694. msgctxt "@label:status"
  1695. msgid "Paused"
  1696. msgstr "In pausa"
  1697. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1698. msgctxt "@label:status"
  1699. msgid "Resuming..."
  1700. msgstr "Ripresa in corso..."
  1701. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1702. msgctxt "@label:status"
  1703. msgid "Action required"
  1704. msgstr "Richiede un'azione"
  1705. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1706. msgctxt "@label:status"
  1707. msgid "Finishes %1 at %2"
  1708. msgstr "Finisce %1 a %2"
  1709. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1710. msgctxt "@title:window"
  1711. msgid "Print over network"
  1712. msgstr "Stampa sulla rete"
  1713. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1714. msgctxt "@action:button"
  1715. msgid "Print"
  1716. msgstr "Stampa"
  1717. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1718. msgctxt "@label"
  1719. msgid "Printer selection"
  1720. msgstr "Selezione stampante"
  1721. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1722. msgctxt "@label"
  1723. msgid "Move to top"
  1724. msgstr "Sposta in alto"
  1725. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1726. msgctxt "@label"
  1727. msgid "Delete"
  1728. msgstr "Cancella"
  1729. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1730. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289
  1731. msgctxt "@label"
  1732. msgid "Resume"
  1733. msgstr "Riprendi"
  1734. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1735. msgctxt "@label"
  1736. msgid "Pausing..."
  1737. msgstr "Messa in pausa..."
  1738. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1739. msgctxt "@label"
  1740. msgid "Resuming..."
  1741. msgstr "Ripresa in corso..."
  1742. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1743. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284
  1744. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293
  1745. msgctxt "@label"
  1746. msgid "Pause"
  1747. msgstr "Pausa"
  1748. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1749. msgctxt "@label"
  1750. msgid "Aborting..."
  1751. msgstr "Interr. in corso..."
  1752. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1753. msgctxt "@label"
  1754. msgid "Abort"
  1755. msgstr "Interrompi"
  1756. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1757. msgctxt "@label %1 is the name of a print job."
  1758. msgid "Are you sure you want to move %1 to the top of the queue?"
  1759. msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?"
  1760. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1761. msgctxt "@window:title"
  1762. msgid "Move print job to top"
  1763. msgstr "Sposta il processo di stampa in alto"
  1764. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1765. msgctxt "@label %1 is the name of a print job."
  1766. msgid "Are you sure you want to delete %1?"
  1767. msgstr "Sei sicuro di voler cancellare %1?"
  1768. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1769. msgctxt "@window:title"
  1770. msgid "Delete print job"
  1771. msgstr "Cancella processo di stampa"
  1772. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1773. msgctxt "@label %1 is the name of a print job."
  1774. msgid "Are you sure you want to abort %1?"
  1775. msgstr "Sei sicuro di voler interrompere %1?"
  1776. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1777. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335
  1778. msgctxt "@window:title"
  1779. msgid "Abort print"
  1780. msgstr "Interrompi la stampa"
  1781. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1782. msgctxt "@title:window"
  1783. msgid "Configuration Changes"
  1784. msgstr "Modifiche configurazione"
  1785. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1786. msgctxt "@action:button"
  1787. msgid "Override"
  1788. msgstr "Override"
  1789. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1790. msgctxt "@label"
  1791. msgid "The assigned printer, %1, requires the following configuration change:"
  1792. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1793. msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:"
  1794. msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  1795. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1796. msgctxt "@label"
  1797. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1798. msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta."
  1799. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1800. msgctxt "@label"
  1801. msgid "Change material %1 from %2 to %3."
  1802. msgstr "Cambia materiale %1 da %2 a %3."
  1803. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1804. msgctxt "@label"
  1805. msgid "Load %3 as material %1 (This cannot be overridden)."
  1806. msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)."
  1807. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1808. msgctxt "@label"
  1809. msgid "Change print core %1 from %2 to %3."
  1810. msgstr "Cambia print core %1 da %2 a %3."
  1811. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1812. msgctxt "@label"
  1813. msgid "Change build plate to %1 (This cannot be overridden)."
  1814. msgstr "Cambia piano di stampa a %1 (Operazione non annullabile)."
  1815. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1816. msgctxt "@label"
  1817. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1818. msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita."
  1819. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1820. msgctxt "@label"
  1821. msgid "Aluminum"
  1822. msgstr "Alluminio"
  1823. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1824. msgctxt "@info"
  1825. msgid ""
  1826. "Please make sure your printer has a connection:\n"
  1827. "- Check if the printer is turned on.\n"
  1828. "- Check if the printer is connected to the network.\n"
  1829. "- Check if you are signed in to discover cloud-connected printers."
  1830. msgstr ""
  1831. "Accertarsi che la stampante sia collegata:\n"
  1832. "- Controllare se la stampante è accesa.\n"
  1833. "- Controllare se la stampante è collegata alla rete.\n"
  1834. "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud."
  1835. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1836. msgctxt "@info"
  1837. msgid "Please connect your printer to the network."
  1838. msgstr "Collegare la stampante alla rete."
  1839. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:156
  1840. msgctxt "@label link to technical assistance"
  1841. msgid "View user manuals online"
  1842. msgstr "Visualizza i manuali utente online"
  1843. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1844. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1845. msgctxt "@label"
  1846. msgid "Color scheme"
  1847. msgstr "Schema colori"
  1848. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  1849. msgctxt "@label:listbox"
  1850. msgid "Material Color"
  1851. msgstr "Colore materiale"
  1852. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  1853. msgctxt "@label:listbox"
  1854. msgid "Line Type"
  1855. msgstr "Tipo di linea"
  1856. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  1857. msgctxt "@label:listbox"
  1858. msgid "Feedrate"
  1859. msgstr "Velocità"
  1860. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  1861. msgctxt "@label:listbox"
  1862. msgid "Layer thickness"
  1863. msgstr "Spessore strato"
  1864. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  1865. msgctxt "@label"
  1866. msgid "Compatibility Mode"
  1867. msgstr "Modalità di compatibilità"
  1868. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  1869. msgctxt "@label"
  1870. msgid "Travels"
  1871. msgstr "Spostamenti"
  1872. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  1873. msgctxt "@label"
  1874. msgid "Helpers"
  1875. msgstr "Helper"
  1876. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  1877. msgctxt "@label"
  1878. msgid "Shell"
  1879. msgstr "Guscio"
  1880. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  1881. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1882. msgctxt "@label"
  1883. msgid "Infill"
  1884. msgstr "Riempimento"
  1885. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  1886. msgctxt "@label"
  1887. msgid "Only Show Top Layers"
  1888. msgstr "Mostra solo strati superiori"
  1889. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  1890. msgctxt "@label"
  1891. msgid "Show 5 Detailed Layers On Top"
  1892. msgstr "Mostra 5 strati superiori in dettaglio"
  1893. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1894. msgctxt "@label"
  1895. msgid "Top / Bottom"
  1896. msgstr "Superiore / Inferiore"
  1897. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  1898. msgctxt "@label"
  1899. msgid "Inner Wall"
  1900. msgstr "Parete interna"
  1901. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  1902. msgctxt "@label"
  1903. msgid "min"
  1904. msgstr "min."
  1905. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  1906. msgctxt "@label"
  1907. msgid "max"
  1908. msgstr "max."
  1909. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1910. msgctxt "@title:window"
  1911. msgid "Post Processing Plugin"
  1912. msgstr "Plug-in di post-elaborazione"
  1913. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1914. msgctxt "@label"
  1915. msgid "Post Processing Scripts"
  1916. msgstr "Script di post-elaborazione"
  1917. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1918. msgctxt "@action"
  1919. msgid "Add a script"
  1920. msgstr "Aggiungi uno script"
  1921. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1922. msgctxt "@label"
  1923. msgid "Settings"
  1924. msgstr "Impostazioni"
  1925. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:493
  1926. msgctxt "@info:tooltip"
  1927. msgid "Change active post-processing scripts"
  1928. msgstr "Modifica script di post-elaborazione attivi"
  1929. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1930. msgctxt "@title:window"
  1931. msgid "More information on anonymous data collection"
  1932. msgstr "Maggiori informazioni sulla raccolta di dati anonimi"
  1933. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1934. msgctxt "@text:window"
  1935. msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  1936. 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:"
  1937. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:109
  1938. msgctxt "@text:window"
  1939. msgid "I don't want to send anonymous data"
  1940. msgstr "Non desidero inviare dati anonimi"
  1941. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:118
  1942. msgctxt "@text:window"
  1943. msgid "Allow sending anonymous data"
  1944. msgstr "Consenti l'invio di dati anonimi"
  1945. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1946. msgctxt "@title:window"
  1947. msgid "Convert Image..."
  1948. msgstr "Converti immagine..."
  1949. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1950. msgctxt "@info:tooltip"
  1951. msgid "The maximum distance of each pixel from \"Base.\""
  1952. msgstr "La distanza massima di ciascun pixel da \"Base.\""
  1953. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1954. msgctxt "@action:label"
  1955. msgid "Height (mm)"
  1956. msgstr "Altezza (mm)"
  1957. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1958. msgctxt "@info:tooltip"
  1959. msgid "The base height from the build plate in millimeters."
  1960. msgstr "L'altezza della base dal piano di stampa in millimetri."
  1961. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1962. msgctxt "@action:label"
  1963. msgid "Base (mm)"
  1964. msgstr "Base (mm)"
  1965. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1966. msgctxt "@info:tooltip"
  1967. msgid "The width in millimeters on the build plate."
  1968. msgstr "La larghezza in millimetri sul piano di stampa."
  1969. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1970. msgctxt "@action:label"
  1971. msgid "Width (mm)"
  1972. msgstr "Larghezza (mm)"
  1973. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1974. msgctxt "@info:tooltip"
  1975. msgid "The depth in millimeters on the build plate"
  1976. msgstr "La profondità in millimetri sul piano di stampa"
  1977. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1978. msgctxt "@action:label"
  1979. msgid "Depth (mm)"
  1980. msgstr "Profondità (mm)"
  1981. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1982. msgctxt "@info:tooltip"
  1983. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1984. msgstr "Per le litofanie, i pixel scuri devono corrispondere alle posizioni più spesse per bloccare maggiormente il passaggio della luce. Per le mappe con altezze superiori, i pixel più chiari indicano un terreno più elevato, quindi nel modello 3D generato i pixel più chiari devono corrispondere alle posizioni più spesse."
  1985. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1986. msgctxt "@item:inlistbox"
  1987. msgid "Darker is higher"
  1988. msgstr "Più scuro è più alto"
  1989. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1990. msgctxt "@item:inlistbox"
  1991. msgid "Lighter is higher"
  1992. msgstr "Più chiaro è più alto"
  1993. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1994. msgctxt "@info:tooltip"
  1995. msgid "The amount of smoothing to apply to the image."
  1996. msgstr "La quantità di smoothing (levigatura) da applicare all'immagine."
  1997. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:154
  1998. msgctxt "@action:label"
  1999. msgid "Smoothing"
  2000. msgstr "Smoothing"
  2001. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  2002. msgctxt "@title:window"
  2003. msgid "Select Settings to Customize for this model"
  2004. msgstr "Seleziona impostazioni di personalizzazione per questo modello"
  2005. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:56
  2006. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  2007. msgctxt "@label:textbox"
  2008. msgid "Filter..."
  2009. msgstr "Filtro..."
  2010. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:70
  2011. msgctxt "@label:checkbox"
  2012. msgid "Show all"
  2013. msgstr "Mostra tutto"
  2014. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:44
  2015. msgctxt "@label"
  2016. msgid "Mesh Type"
  2017. msgstr "Tipo di maglia"
  2018. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:85
  2019. msgctxt "@label"
  2020. msgid "Normal model"
  2021. msgstr "Modello normale"
  2022. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:97
  2023. msgctxt "@label"
  2024. msgid "Print as support"
  2025. msgstr "Stampa come supporto"
  2026. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:109
  2027. msgctxt "@label"
  2028. msgid "Modify settings for overlaps"
  2029. msgstr "Modificare le impostazioni per le sovrapposizioni"
  2030. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:121
  2031. msgctxt "@label"
  2032. msgid "Don't support overlaps"
  2033. msgstr "Non supportano le sovrapposizioni"
  2034. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:145
  2035. msgctxt "@action:checkbox"
  2036. msgid "Infill only"
  2037. msgstr "Solo riempimento"
  2038. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:368
  2039. msgctxt "@action:button"
  2040. msgid "Select settings"
  2041. msgstr "Seleziona impostazioni"
  2042. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  2043. msgctxt "@title:window"
  2044. msgid "Open Project"
  2045. msgstr "Apri progetto"
  2046. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  2047. msgctxt "@action:ComboBox Update/override existing profile"
  2048. msgid "Update existing"
  2049. msgstr "Aggiorna esistente"
  2050. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  2051. msgctxt "@action:ComboBox Save settings in a new profile"
  2052. msgid "Create new"
  2053. msgstr "Crea nuovo"
  2054. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  2055. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:73
  2056. msgctxt "@action:title"
  2057. msgid "Summary - Cura Project"
  2058. msgstr "Riepilogo - Progetto Cura"
  2059. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  2060. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2061. msgctxt "@action:label"
  2062. msgid "Printer settings"
  2063. msgstr "Impostazioni della stampante"
  2064. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  2065. msgctxt "@info:tooltip"
  2066. msgid "How should the conflict in the machine be resolved?"
  2067. msgstr "Come può essere risolto il conflitto nella macchina?"
  2068. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  2069. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  2070. msgctxt "@action:ComboBox option"
  2071. msgid "Update"
  2072. msgstr "Aggiorna"
  2073. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  2074. msgctxt "@action:ComboBox option"
  2075. msgid "Create new"
  2076. msgstr "Crea nuovo"
  2077. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  2078. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2079. msgctxt "@action:label"
  2080. msgid "Type"
  2081. msgstr "Tipo"
  2082. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  2083. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2084. msgctxt "@action:label"
  2085. msgid "Printer Group"
  2086. msgstr "Gruppo stampanti"
  2087. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  2088. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:220
  2089. msgctxt "@action:label"
  2090. msgid "Profile settings"
  2091. msgstr "Impostazioni profilo"
  2092. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  2093. msgctxt "@info:tooltip"
  2094. msgid "How should the conflict in the profile be resolved?"
  2095. msgstr "Come può essere risolto il conflitto nel profilo?"
  2096. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  2097. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:323
  2098. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2099. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:244
  2100. msgctxt "@action:label"
  2101. msgid "Name"
  2102. msgstr "Nome"
  2103. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2104. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:261
  2105. msgctxt "@action:label"
  2106. msgid "Intent"
  2107. msgstr "Intent"
  2108. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:246
  2109. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:228
  2110. msgctxt "@action:label"
  2111. msgid "Not in profile"
  2112. msgstr "Non nel profilo"
  2113. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:251
  2114. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:233
  2115. msgctxt "@action:label"
  2116. msgid "%1 override"
  2117. msgid_plural "%1 overrides"
  2118. msgstr[0] "%1 override"
  2119. msgstr[1] "%1 override"
  2120. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:262
  2121. msgctxt "@action:label"
  2122. msgid "Derivative from"
  2123. msgstr "Derivato da"
  2124. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:267
  2125. msgctxt "@action:label"
  2126. msgid "%1, %2 override"
  2127. msgid_plural "%1, %2 overrides"
  2128. msgstr[0] "%1, %2 override"
  2129. msgstr[1] "%1, %2 override"
  2130. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:283
  2131. msgctxt "@action:label"
  2132. msgid "Material settings"
  2133. msgstr "Impostazioni materiale"
  2134. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:299
  2135. msgctxt "@info:tooltip"
  2136. msgid "How should the conflict in the material be resolved?"
  2137. msgstr "Come può essere risolto il conflitto nel materiale?"
  2138. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:342
  2139. msgctxt "@action:label"
  2140. msgid "Setting visibility"
  2141. msgstr "Impostazione visibilità"
  2142. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:351
  2143. msgctxt "@action:label"
  2144. msgid "Mode"
  2145. msgstr "Modalità"
  2146. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  2147. msgctxt "@action:label"
  2148. msgid "Visible settings:"
  2149. msgstr "Impostazioni visibili:"
  2150. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:372
  2151. msgctxt "@action:label"
  2152. msgid "%1 out of %2"
  2153. msgstr "%1 su %2"
  2154. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2155. msgctxt "@action:warning"
  2156. msgid "Loading a project will clear all models on the build plate."
  2157. msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa."
  2158. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:416
  2159. msgctxt "@action:button"
  2160. msgid "Open"
  2161. msgstr "Apri"
  2162. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2163. msgctxt "@title"
  2164. msgid "My Backups"
  2165. msgstr "I miei backup"
  2166. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2167. msgctxt "@empty_state"
  2168. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2169. msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno."
  2170. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2171. msgctxt "@backup_limit_info"
  2172. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2173. msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti."
  2174. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2175. msgctxt "@description"
  2176. msgid "Backup and synchronize your Cura settings."
  2177. msgstr "Backup e sincronizzazione delle impostazioni Cura."
  2178. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  2179. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  2180. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:138
  2181. msgctxt "@button"
  2182. msgid "Sign in"
  2183. msgstr "Accedi"
  2184. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:24
  2185. msgctxt "@title:window"
  2186. msgid "Cura Backups"
  2187. msgstr "Backup Cura"
  2188. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2189. msgctxt "@backuplist:label"
  2190. msgid "Cura Version"
  2191. msgstr "Versione Cura"
  2192. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2193. msgctxt "@backuplist:label"
  2194. msgid "Machines"
  2195. msgstr "Macchine"
  2196. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2197. msgctxt "@backuplist:label"
  2198. msgid "Materials"
  2199. msgstr "Materiali"
  2200. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2201. msgctxt "@backuplist:label"
  2202. msgid "Profiles"
  2203. msgstr "Profili"
  2204. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2205. msgctxt "@backuplist:label"
  2206. msgid "Plugins"
  2207. msgstr "Plugin"
  2208. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2209. msgctxt "@button"
  2210. msgid "Restore"
  2211. msgstr "Ripristina"
  2212. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2213. msgctxt "@dialog:title"
  2214. msgid "Delete Backup"
  2215. msgstr "Cancella backup"
  2216. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2217. msgctxt "@dialog:info"
  2218. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2219. msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata."
  2220. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2221. msgctxt "@dialog:title"
  2222. msgid "Restore Backup"
  2223. msgstr "Ripristina backup"
  2224. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2225. msgctxt "@dialog:info"
  2226. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2227. msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?"
  2228. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2229. msgctxt "@button"
  2230. msgid "Want more?"
  2231. msgstr "Ulteriori informazioni?"
  2232. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2233. msgctxt "@button"
  2234. msgid "Backup Now"
  2235. msgstr "Esegui backup adesso"
  2236. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2237. msgctxt "@checkbox:description"
  2238. msgid "Auto Backup"
  2239. msgstr "Backup automatico"
  2240. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2241. msgctxt "@checkbox:description"
  2242. msgid "Automatically create a backup each day that Cura is started."
  2243. msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura."
  2244. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2245. msgctxt "@title"
  2246. msgid "Build Plate Leveling"
  2247. msgstr "Livellamento del piano di stampa"
  2248. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2249. msgctxt "@label"
  2250. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  2251. msgstr "Per assicurarsi stampe di alta qualità, è ora possibile regolare il piano di stampa. Quando si fa clic su 'Spostamento alla posizione successiva' l'ugello si sposterà in diverse posizioni che è possibile regolare."
  2252. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2253. msgctxt "@label"
  2254. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  2255. msgstr "Per ciascuna posizione: inserire un pezzo di carta sotto l'ugello e regolare la stampa dell'altezza del piano di stampa. L'altezza del piano di stampa è corretta quando la carta sfiora la punta dell'ugello."
  2256. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2257. msgctxt "@action:button"
  2258. msgid "Start Build Plate Leveling"
  2259. msgstr "Avvio livellamento del piano di stampa"
  2260. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2261. msgctxt "@action:button"
  2262. msgid "Move to Next Position"
  2263. msgstr "Spostamento alla posizione successiva"
  2264. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2265. msgctxt "@label"
  2266. msgid "Please select any upgrades made to this Ultimaker Original"
  2267. msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker Original"
  2268. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2269. msgctxt "@label"
  2270. msgid "Heated Build Plate (official kit or self-built)"
  2271. msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)"
  2272. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:119
  2273. msgctxt "@label:MonitorStatus"
  2274. msgid "Not connected to a printer"
  2275. msgstr "Non collegato ad una stampante"
  2276. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:123
  2277. msgctxt "@label:MonitorStatus"
  2278. msgid "Printer does not accept commands"
  2279. msgstr "La stampante non accetta comandi"
  2280. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:133
  2281. msgctxt "@label:MonitorStatus"
  2282. msgid "In maintenance. Please check the printer"
  2283. msgstr "In manutenzione. Controllare la stampante"
  2284. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:144
  2285. msgctxt "@label:MonitorStatus"
  2286. msgid "Lost connection with the printer"
  2287. msgstr "Persa connessione con la stampante"
  2288. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:146
  2289. msgctxt "@label:MonitorStatus"
  2290. msgid "Printing..."
  2291. msgstr "Stampa in corso..."
  2292. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:149
  2293. msgctxt "@label:MonitorStatus"
  2294. msgid "Paused"
  2295. msgstr "In pausa"
  2296. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:152
  2297. msgctxt "@label:MonitorStatus"
  2298. msgid "Preparing..."
  2299. msgstr "Preparazione in corso..."
  2300. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:154
  2301. msgctxt "@label:MonitorStatus"
  2302. msgid "Please remove the print"
  2303. msgstr "Rimuovere la stampa"
  2304. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325
  2305. msgctxt "@label"
  2306. msgid "Abort Print"
  2307. msgstr "Interrompi la stampa"
  2308. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337
  2309. msgctxt "@label"
  2310. msgid "Are you sure you want to abort the print?"
  2311. msgstr "Sei sicuro di voler interrompere la stampa?"
  2312. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  2313. msgctxt "@title"
  2314. msgid "Information"
  2315. msgstr "Informazioni"
  2316. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  2317. msgctxt "@title:window"
  2318. msgid "Confirm Diameter Change"
  2319. msgstr "Conferma modifica diametro"
  2320. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  2321. msgctxt "@label (%1 is a number)"
  2322. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2323. msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?"
  2324. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  2325. msgctxt "@label"
  2326. msgid "Display Name"
  2327. msgstr "Visualizza nome"
  2328. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2329. msgctxt "@label"
  2330. msgid "Brand"
  2331. msgstr "Marchio"
  2332. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  2333. msgctxt "@label"
  2334. msgid "Material Type"
  2335. msgstr "Tipo di materiale"
  2336. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  2337. msgctxt "@label"
  2338. msgid "Color"
  2339. msgstr "Colore"
  2340. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  2341. msgctxt "@label"
  2342. msgid "Properties"
  2343. msgstr "Proprietà"
  2344. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  2345. msgctxt "@label"
  2346. msgid "Density"
  2347. msgstr "Densità"
  2348. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  2349. msgctxt "@label"
  2350. msgid "Diameter"
  2351. msgstr "Diametro"
  2352. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  2353. msgctxt "@label"
  2354. msgid "Filament Cost"
  2355. msgstr "Costo del filamento"
  2356. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  2357. msgctxt "@label"
  2358. msgid "Filament weight"
  2359. msgstr "Peso del filamento"
  2360. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  2361. msgctxt "@label"
  2362. msgid "Filament length"
  2363. msgstr "Lunghezza del filamento"
  2364. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  2365. msgctxt "@label"
  2366. msgid "Cost per Meter"
  2367. msgstr "Costo al metro"
  2368. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  2369. msgctxt "@label"
  2370. msgid "This material is linked to %1 and shares some of its properties."
  2371. msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà."
  2372. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  2373. msgctxt "@label"
  2374. msgid "Unlink Material"
  2375. msgstr "Scollega materiale"
  2376. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  2377. msgctxt "@label"
  2378. msgid "Description"
  2379. msgstr "Descrizione"
  2380. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  2381. msgctxt "@label"
  2382. msgid "Adhesion Information"
  2383. msgstr "Informazioni sull’aderenza"
  2384. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2385. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  2386. msgctxt "@label"
  2387. msgid "Print settings"
  2388. msgstr "Impostazioni di stampa"
  2389. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  2390. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  2391. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  2392. msgctxt "@action:button"
  2393. msgid "Activate"
  2394. msgstr "Attiva"
  2395. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  2396. msgctxt "@action:button"
  2397. msgid "Create"
  2398. msgstr "Crea"
  2399. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:140
  2400. msgctxt "@action:button"
  2401. msgid "Duplicate"
  2402. msgstr "Duplica"
  2403. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:170
  2404. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  2405. msgctxt "@action:button"
  2406. msgid "Import"
  2407. msgstr "Importa"
  2408. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:184
  2409. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  2410. msgctxt "@action:button"
  2411. msgid "Export"
  2412. msgstr "Esporta"
  2413. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:233
  2414. msgctxt "@action:label"
  2415. msgid "Printer"
  2416. msgstr "Stampante"
  2417. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:297
  2418. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  2419. msgctxt "@title:window"
  2420. msgid "Confirm Remove"
  2421. msgstr "Conferma rimozione"
  2422. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:300
  2423. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  2424. msgctxt "@label (%1 is object name)"
  2425. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  2426. msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!"
  2427. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:314
  2428. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:322
  2429. msgctxt "@title:window"
  2430. msgid "Import Material"
  2431. msgstr "Importa materiale"
  2432. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  2433. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2434. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  2435. msgstr "Impossibile importare materiale <filename>{1}</filename>: <message>%2</message>"
  2436. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:327
  2437. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2438. msgid "Successfully imported material <filename>%1</filename>"
  2439. msgstr "Materiale importato correttamente <filename>%1</filename>"
  2440. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:345
  2441. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:353
  2442. msgctxt "@title:window"
  2443. msgid "Export Material"
  2444. msgstr "Esporta materiale"
  2445. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:357
  2446. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  2447. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  2448. msgstr "Impossibile esportare il materiale su <filename>%1</filename>: <message>%2</message>"
  2449. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:363
  2450. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2451. msgid "Successfully exported material to <filename>%1</filename>"
  2452. msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  2453. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  2454. msgctxt "@title:tab"
  2455. msgid "Setting Visibility"
  2456. msgstr "Impostazione visibilità"
  2457. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  2458. msgctxt "@label:textbox"
  2459. msgid "Check all"
  2460. msgstr "Controlla tutto"
  2461. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  2462. msgctxt "@info:status"
  2463. msgid "Calculated"
  2464. msgstr "Calcolato"
  2465. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  2466. msgctxt "@title:column"
  2467. msgid "Setting"
  2468. msgstr "Impostazione"
  2469. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  2470. msgctxt "@title:column"
  2471. msgid "Profile"
  2472. msgstr "Profilo"
  2473. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  2474. msgctxt "@title:column"
  2475. msgid "Current"
  2476. msgstr "Corrente"
  2477. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  2478. msgctxt "@title:column"
  2479. msgid "Unit"
  2480. msgstr "Unità"
  2481. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2482. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:410
  2483. msgctxt "@title:tab"
  2484. msgid "General"
  2485. msgstr "Generale"
  2486. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:132
  2487. msgctxt "@label"
  2488. msgid "Interface"
  2489. msgstr "Interfaccia"
  2490. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:143
  2491. msgctxt "@label"
  2492. msgid "Language:"
  2493. msgstr "Lingua:"
  2494. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:210
  2495. msgctxt "@label"
  2496. msgid "Currency:"
  2497. msgstr "Valuta:"
  2498. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:223
  2499. msgctxt "@label"
  2500. msgid "Theme:"
  2501. msgstr "Tema:"
  2502. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:279
  2503. msgctxt "@label"
  2504. msgid "You will need to restart the application for these changes to have effect."
  2505. msgstr "Riavviare l'applicazione per rendere effettive le modifiche."
  2506. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:296
  2507. msgctxt "@info:tooltip"
  2508. msgid "Slice automatically when changing settings."
  2509. msgstr "Seziona automaticamente alla modifica delle impostazioni."
  2510. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:304
  2511. msgctxt "@option:check"
  2512. msgid "Slice automatically"
  2513. msgstr "Seziona automaticamente"
  2514. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:318
  2515. msgctxt "@label"
  2516. msgid "Viewport behavior"
  2517. msgstr "Comportamento del riquadro di visualizzazione"
  2518. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:326
  2519. msgctxt "@info:tooltip"
  2520. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  2521. msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto."
  2522. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:335
  2523. msgctxt "@option:check"
  2524. msgid "Display overhang"
  2525. msgstr "Visualizza sbalzo"
  2526. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:343
  2527. msgctxt "@info:tooltip"
  2528. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  2529. msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  2530. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:348
  2531. msgctxt "@action:button"
  2532. msgid "Center camera when item is selected"
  2533. msgstr "Centratura fotocamera alla selezione dell'elemento"
  2534. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:358
  2535. msgctxt "@info:tooltip"
  2536. msgid "Should the default zoom behavior of cura be inverted?"
  2537. msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?"
  2538. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:363
  2539. msgctxt "@action:button"
  2540. msgid "Invert the direction of camera zoom."
  2541. msgstr "Inverti la direzione dello zoom della fotocamera."
  2542. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379
  2543. msgctxt "@info:tooltip"
  2544. msgid "Should zooming move in the direction of the mouse?"
  2545. msgstr "Lo zoom si muove nella direzione del mouse?"
  2546. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379
  2547. msgctxt "@info:tooltip"
  2548. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  2549. msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  2550. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:384
  2551. msgctxt "@action:button"
  2552. msgid "Zoom toward mouse direction"
  2553. msgstr "Zoom verso la direzione del mouse"
  2554. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:410
  2555. msgctxt "@info:tooltip"
  2556. msgid "Should models on the platform be moved so that they no longer intersect?"
  2557. msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?"
  2558. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:415
  2559. msgctxt "@option:check"
  2560. msgid "Ensure models are kept apart"
  2561. msgstr "Assicurarsi che i modelli siano mantenuti separati"
  2562. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:424
  2563. msgctxt "@info:tooltip"
  2564. msgid "Should models on the platform be moved down to touch the build plate?"
  2565. msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?"
  2566. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:429
  2567. msgctxt "@option:check"
  2568. msgid "Automatically drop models to the build plate"
  2569. msgstr "Rilascia automaticamente i modelli sul piano di stampa"
  2570. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:441
  2571. msgctxt "@info:tooltip"
  2572. msgid "Show caution message in g-code reader."
  2573. msgstr "Visualizza il messaggio di avvertimento sul lettore codice G."
  2574. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:450
  2575. msgctxt "@option:check"
  2576. msgid "Caution message in g-code reader"
  2577. msgstr "Messaggio di avvertimento sul lettore codice G"
  2578. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:458
  2579. msgctxt "@info:tooltip"
  2580. msgid "Should layer be forced into compatibility mode?"
  2581. msgstr "Lo strato deve essere forzato in modalità di compatibilità?"
  2582. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463
  2583. msgctxt "@option:check"
  2584. msgid "Force layer view compatibility mode (restart required)"
  2585. msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)"
  2586. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:473
  2587. msgctxt "@info:tooltip"
  2588. msgid "Should Cura open at the location it was closed?"
  2589. msgstr "Aprire Cura nel punto in cui è stato chiuso?"
  2590. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:478
  2591. msgctxt "@option:check"
  2592. msgid "Restore window position on start"
  2593. msgstr "Ripristinare la posizione della finestra all'avvio"
  2594. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:488
  2595. msgctxt "@info:tooltip"
  2596. msgid "What type of camera rendering should be used?"
  2597. msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?"
  2598. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
  2599. msgctxt "@window:text"
  2600. msgid "Camera rendering:"
  2601. msgstr "Rendering fotocamera:"
  2602. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:506
  2603. msgid "Perspective"
  2604. msgstr "Prospettiva"
  2605. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:507
  2606. msgid "Orthographic"
  2607. msgstr "Ortogonale"
  2608. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:538
  2609. msgctxt "@label"
  2610. msgid "Opening and saving files"
  2611. msgstr "Apertura e salvataggio file"
  2612. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:545
  2613. msgctxt "@info:tooltip"
  2614. msgid "Should models be scaled to the build volume if they are too large?"
  2615. msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?"
  2616. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:550
  2617. msgctxt "@option:check"
  2618. msgid "Scale large models"
  2619. msgstr "Ridimensiona i modelli troppo grandi"
  2620. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
  2621. msgctxt "@info:tooltip"
  2622. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  2623. msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?"
  2624. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:565
  2625. msgctxt "@option:check"
  2626. msgid "Scale extremely small models"
  2627. msgstr "Ridimensiona i modelli eccessivamente piccoli"
  2628. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  2629. msgctxt "@info:tooltip"
  2630. msgid "Should models be selected after they are loaded?"
  2631. msgstr "I modelli devono essere selezionati dopo essere stati caricati?"
  2632. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:580
  2633. msgctxt "@option:check"
  2634. msgid "Select models when loaded"
  2635. msgstr "Selezionare i modelli dopo il caricamento"
  2636. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  2637. msgctxt "@info:tooltip"
  2638. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2639. msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?"
  2640. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:595
  2641. msgctxt "@option:check"
  2642. msgid "Add machine prefix to job name"
  2643. msgstr "Aggiungi al nome del processo un prefisso macchina"
  2644. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
  2645. msgctxt "@info:tooltip"
  2646. msgid "Should a summary be shown when saving a project file?"
  2647. msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?"
  2648. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:609
  2649. msgctxt "@option:check"
  2650. msgid "Show summary dialog when saving project"
  2651. msgstr "Visualizza una finestra di riepilogo quando si salva un progetto"
  2652. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619
  2653. msgctxt "@info:tooltip"
  2654. msgid "Default behavior when opening a project file"
  2655. msgstr "Comportamento predefinito all'apertura di un file progetto"
  2656. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:627
  2657. msgctxt "@window:text"
  2658. msgid "Default behavior when opening a project file: "
  2659. msgstr "Comportamento predefinito all'apertura di un file progetto: "
  2660. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641
  2661. msgctxt "@option:openProject"
  2662. msgid "Always ask me this"
  2663. msgstr "Chiedi sempre"
  2664. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:642
  2665. msgctxt "@option:openProject"
  2666. msgid "Always open as a project"
  2667. msgstr "Apri sempre come progetto"
  2668. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:643
  2669. msgctxt "@option:openProject"
  2670. msgid "Always import models"
  2671. msgstr "Importa sempre i modelli"
  2672. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:679
  2673. msgctxt "@info:tooltip"
  2674. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  2675. msgstr "Dopo aver modificato un profilo ed essere passati a un altro, si apre una finestra di dialogo che chiede se mantenere o eliminare le modifiche oppure se scegliere un comportamento predefinito e non visualizzare più tale finestra di dialogo."
  2676. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688
  2677. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  2678. msgctxt "@label"
  2679. msgid "Profiles"
  2680. msgstr "Profili"
  2681. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:693
  2682. msgctxt "@window:text"
  2683. msgid "Default behavior for changed setting values when switching to a different profile: "
  2684. msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: "
  2685. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:707
  2686. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  2687. msgctxt "@option:discardOrKeep"
  2688. msgid "Always ask me this"
  2689. msgstr "Chiedi sempre"
  2690. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708
  2691. msgctxt "@option:discardOrKeep"
  2692. msgid "Always discard changed settings"
  2693. msgstr "Elimina sempre le impostazioni modificate"
  2694. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709
  2695. msgctxt "@option:discardOrKeep"
  2696. msgid "Always transfer changed settings to new profile"
  2697. msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo"
  2698. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743
  2699. msgctxt "@label"
  2700. msgid "Privacy"
  2701. msgstr "Privacy"
  2702. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:750
  2703. msgctxt "@info:tooltip"
  2704. msgid "Should Cura check for updates when the program is started?"
  2705. msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?"
  2706. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:755
  2707. msgctxt "@option:check"
  2708. msgid "Check for updates on start"
  2709. msgstr "Controlla aggiornamenti all’avvio"
  2710. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:765
  2711. msgctxt "@info:tooltip"
  2712. msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2713. msgstr "I dati anonimi sulla stampa devono essere inviati a Ultimaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali."
  2714. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
  2715. msgctxt "@option:check"
  2716. msgid "Send (anonymous) print information"
  2717. msgstr "Invia informazioni di stampa (anonime)"
  2718. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:779
  2719. msgctxt "@action:button"
  2720. msgid "More information"
  2721. msgstr "Ulteriori informazioni"
  2722. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2723. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:415
  2724. msgctxt "@title:tab"
  2725. msgid "Printers"
  2726. msgstr "Stampanti"
  2727. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  2728. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  2729. msgctxt "@action:button"
  2730. msgid "Rename"
  2731. msgstr "Rinomina"
  2732. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2733. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:419
  2734. msgctxt "@title:tab"
  2735. msgid "Profiles"
  2736. msgstr "Profili"
  2737. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  2738. msgctxt "@label"
  2739. msgid "Create"
  2740. msgstr "Crea"
  2741. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  2742. msgctxt "@label"
  2743. msgid "Duplicate"
  2744. msgstr "Duplica"
  2745. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  2746. msgctxt "@title:window"
  2747. msgid "Create Profile"
  2748. msgstr "Crea profilo"
  2749. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  2750. msgctxt "@info"
  2751. msgid "Please provide a name for this profile."
  2752. msgstr "Indica un nome per questo profilo."
  2753. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  2754. msgctxt "@title:window"
  2755. msgid "Duplicate Profile"
  2756. msgstr "Duplica profilo"
  2757. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  2758. msgctxt "@title:window"
  2759. msgid "Rename Profile"
  2760. msgstr "Rinomina profilo"
  2761. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  2762. msgctxt "@title:window"
  2763. msgid "Import Profile"
  2764. msgstr "Importa profilo"
  2765. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  2766. msgctxt "@title:window"
  2767. msgid "Export Profile"
  2768. msgstr "Esporta profilo"
  2769. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  2770. msgctxt "@label %1 is printer name"
  2771. msgid "Printer: %1"
  2772. msgstr "Stampante: %1"
  2773. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  2774. msgctxt "@action:button"
  2775. msgid "Update profile with current settings/overrides"
  2776. msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti"
  2777. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  2778. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:257
  2779. msgctxt "@action:button"
  2780. msgid "Discard current changes"
  2781. msgstr "Elimina le modifiche correnti"
  2782. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  2783. msgctxt "@action:label"
  2784. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  2785. msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito."
  2786. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  2787. msgctxt "@action:label"
  2788. msgid "Your current settings match the selected profile."
  2789. msgstr "Le impostazioni correnti corrispondono al profilo selezionato."
  2790. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  2791. msgctxt "@title:tab"
  2792. msgid "Global Settings"
  2793. msgstr "Impostazioni globali"
  2794. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  2795. msgctxt "@action:button"
  2796. msgid "Marketplace"
  2797. msgstr "Mercato"
  2798. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2799. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  2800. msgctxt "@title:menu menubar:toplevel"
  2801. msgid "&File"
  2802. msgstr "&File"
  2803. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2804. msgctxt "@title:menu menubar:toplevel"
  2805. msgid "&Edit"
  2806. msgstr "&Modifica"
  2807. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:48
  2808. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  2809. msgctxt "@title:menu menubar:toplevel"
  2810. msgid "&View"
  2811. msgstr "&Visualizza"
  2812. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:50
  2813. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2814. msgctxt "@title:menu menubar:toplevel"
  2815. msgid "&Settings"
  2816. msgstr "&Impostazioni"
  2817. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:55
  2818. msgctxt "@title:menu menubar:toplevel"
  2819. msgid "E&xtensions"
  2820. msgstr "Es&tensioni"
  2821. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:89
  2822. msgctxt "@title:menu menubar:toplevel"
  2823. msgid "P&references"
  2824. msgstr "P&referenze"
  2825. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:97
  2826. msgctxt "@title:menu menubar:toplevel"
  2827. msgid "&Help"
  2828. msgstr "&Help"
  2829. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:124
  2830. msgctxt "@title:window"
  2831. msgid "New project"
  2832. msgstr "Nuovo progetto"
  2833. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:125
  2834. msgctxt "@info:question"
  2835. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2836. msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate."
  2837. #: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:88
  2838. msgctxt "@text Print job name"
  2839. msgid "Untitled"
  2840. msgstr "Senza titolo"
  2841. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  2842. msgctxt "@label:textbox"
  2843. msgid "Search settings"
  2844. msgstr "Impostazioni ricerca"
  2845. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:462
  2846. msgctxt "@action:menu"
  2847. msgid "Copy value to all extruders"
  2848. msgstr "Copia valore su tutti gli estrusori"
  2849. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:471
  2850. msgctxt "@action:menu"
  2851. msgid "Copy all changed values to all extruders"
  2852. msgstr "Copia tutti i valori modificati su tutti gli estrusori"
  2853. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:508
  2854. msgctxt "@action:menu"
  2855. msgid "Hide this setting"
  2856. msgstr "Nascondi questa impostazione"
  2857. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:521
  2858. msgctxt "@action:menu"
  2859. msgid "Don't show this setting"
  2860. msgstr "Nascondi questa impostazione"
  2861. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:525
  2862. msgctxt "@action:menu"
  2863. msgid "Keep this setting visible"
  2864. msgstr "Mantieni visibile questa impostazione"
  2865. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:544
  2866. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:434
  2867. msgctxt "@action:menu"
  2868. msgid "Configure setting visibility..."
  2869. msgstr "Configura visibilità delle impostazioni..."
  2870. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingCategory.qml:237
  2871. msgctxt "@label"
  2872. msgid ""
  2873. "Some hidden settings use values different from their normal calculated value.\n"
  2874. "\n"
  2875. "Click to make these settings visible."
  2876. msgstr ""
  2877. "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n"
  2878. "\n"
  2879. "Fare clic per rendere visibili queste impostazioni."
  2880. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  2881. msgctxt "@label"
  2882. msgid "This setting is not used because all the settings that it influences are overridden."
  2883. msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override."
  2884. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  2885. msgctxt "@label Header for list of settings."
  2886. msgid "Affects"
  2887. msgstr "Influisce su"
  2888. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  2889. msgctxt "@label Header for list of settings."
  2890. msgid "Affected By"
  2891. msgstr "Influenzato da"
  2892. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  2893. msgctxt "@label"
  2894. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2895. msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori."
  2896. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  2897. msgctxt "@label"
  2898. msgid "The value is resolved from per-extruder values "
  2899. msgstr "Questo valore è risolto da valori per estrusore "
  2900. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  2901. msgctxt "@label"
  2902. msgid ""
  2903. "This setting has a value that is different from the profile.\n"
  2904. "\n"
  2905. "Click to restore the value of the profile."
  2906. msgstr ""
  2907. "Questa impostazione ha un valore diverso dal profilo.\n"
  2908. "\n"
  2909. "Fare clic per ripristinare il valore del profilo."
  2910. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  2911. msgctxt "@label"
  2912. msgid ""
  2913. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2914. "\n"
  2915. "Click to restore the calculated value."
  2916. msgstr ""
  2917. "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n"
  2918. "\n"
  2919. "Fare clic per ripristinare il valore calcolato."
  2920. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2921. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  2922. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2923. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2924. msgstr[0] ""
  2925. msgstr[1] ""
  2926. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2927. msgctxt "@button"
  2928. msgid "Recommended"
  2929. msgstr "Consigliata"
  2930. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2931. msgctxt "@button"
  2932. msgid "Custom"
  2933. msgstr "Personalizzata"
  2934. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2935. msgctxt "@label"
  2936. msgid "Gradual infill"
  2937. msgstr "Riempimento graduale"
  2938. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2939. msgctxt "@label"
  2940. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2941. msgstr "Un riempimento graduale aumenterà gradualmente la quantità di riempimento verso l'alto."
  2942. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2943. msgctxt "@label"
  2944. msgid "Support"
  2945. msgstr "Supporto"
  2946. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2947. msgctxt "@label"
  2948. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2949. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  2950. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2951. msgctxt "@label"
  2952. msgid "Adhesion"
  2953. msgstr "Adesione"
  2954. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2955. msgctxt "@label"
  2956. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  2957. msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente."
  2958. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2959. msgctxt "@tooltip"
  2960. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2961. msgstr "Sono state modificate alcune impostazioni del profilo. Per modificarle, andare alla modalità personalizzata."
  2962. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2963. msgctxt "@label:Should be short"
  2964. msgid "On"
  2965. msgstr "Inserita"
  2966. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2967. msgctxt "@label:Should be short"
  2968. msgid "Off"
  2969. msgstr "Disinserita"
  2970. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2971. msgctxt "@label"
  2972. msgid "Experimental"
  2973. msgstr "Sperimentale"
  2974. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2975. msgctxt "@label"
  2976. msgid "Profile"
  2977. msgstr "Profilo"
  2978. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:172
  2979. msgctxt "@tooltip"
  2980. msgid ""
  2981. "Some setting/override values are different from the values stored in the profile.\n"
  2982. "\n"
  2983. "Click to open the profile manager."
  2984. msgstr ""
  2985. "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n"
  2986. "\n"
  2987. "Fare clic per aprire la gestione profili."
  2988. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:160
  2989. msgctxt "@label:header"
  2990. msgid "Custom profiles"
  2991. msgstr "Profili personalizzati"
  2992. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2993. msgctxt "@label shown when we load a Gcode file"
  2994. msgid "Print setup disabled. G-code file can not be modified."
  2995. msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato."
  2996. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  2997. msgctxt "@label"
  2998. msgid "Printer control"
  2999. msgstr "Comando stampante"
  3000. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3001. msgctxt "@label"
  3002. msgid "Jog Position"
  3003. msgstr "Posizione Jog"
  3004. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3005. msgctxt "@label"
  3006. msgid "X/Y"
  3007. msgstr "X/Y"
  3008. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3009. msgctxt "@label"
  3010. msgid "Z"
  3011. msgstr "Z"
  3012. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3013. msgctxt "@label"
  3014. msgid "Jog Distance"
  3015. msgstr "Distanza Jog"
  3016. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3017. msgctxt "@label"
  3018. msgid "Send G-code"
  3019. msgstr "Invia codice G"
  3020. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3021. msgctxt "@tooltip of G-code command input"
  3022. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3023. msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando."
  3024. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3025. msgctxt "@label"
  3026. msgid "Extruder"
  3027. msgstr "Estrusore"
  3028. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3029. msgctxt "@tooltip"
  3030. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3031. msgstr "Temperatura target dell'estremità riscaldata. L'estremità riscaldata si riscalderà o raffredderà sino a questo valore di temperatura. Se questo è 0, l'estremità riscaldata verrà spenta."
  3032. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3033. msgctxt "@tooltip"
  3034. msgid "The current temperature of this hotend."
  3035. msgstr "La temperatura corrente di questa estremità calda."
  3036. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3037. msgctxt "@tooltip of temperature input"
  3038. msgid "The temperature to pre-heat the hotend to."
  3039. msgstr "La temperatura di preriscaldo dell’estremità calda."
  3040. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3041. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3042. msgctxt "@button Cancel pre-heating"
  3043. msgid "Cancel"
  3044. msgstr "Annulla"
  3045. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  3046. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3047. msgctxt "@button"
  3048. msgid "Pre-heat"
  3049. msgstr "Pre-riscaldo"
  3050. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3051. msgctxt "@tooltip of pre-heat"
  3052. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  3053. msgstr "Riscalda l’estremità calda prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento dell’estremità calda quando si è pronti per la stampa."
  3054. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3055. msgctxt "@tooltip"
  3056. msgid "The colour of the material in this extruder."
  3057. msgstr "Il colore del materiale di questo estrusore."
  3058. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3059. msgctxt "@tooltip"
  3060. msgid "The material in this extruder."
  3061. msgstr "Il materiale di questo estrusore."
  3062. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3063. msgctxt "@tooltip"
  3064. msgid "The nozzle inserted in this extruder."
  3065. msgstr "L’ugello inserito in questo estrusore."
  3066. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3067. msgctxt "@info:status"
  3068. msgid "The printer is not connected."
  3069. msgstr "La stampante non è collegata."
  3070. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3071. msgctxt "@label"
  3072. msgid "Build plate"
  3073. msgstr "Piano di stampa"
  3074. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3075. msgctxt "@tooltip"
  3076. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3077. msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato."
  3078. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3079. msgctxt "@tooltip"
  3080. msgid "The current temperature of the heated bed."
  3081. msgstr "La temperatura corrente del piano riscaldato."
  3082. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3083. msgctxt "@tooltip of temperature input"
  3084. msgid "The temperature to pre-heat the bed to."
  3085. msgstr "La temperatura di preriscaldo del piano."
  3086. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3087. msgctxt "@tooltip of pre-heat"
  3088. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  3089. msgstr "Riscalda il piano prima della stampa. È possibile continuare a regolare la stampa durante il riscaldamento e non è necessario attendere il riscaldamento del piano quando si è pronti per la stampa."
  3090. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3091. msgctxt "@label:category menu label"
  3092. msgid "Material"
  3093. msgstr "Materiale"
  3094. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:46
  3095. msgctxt "@label:category menu label"
  3096. msgid "Favorites"
  3097. msgstr "Preferiti"
  3098. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:71
  3099. msgctxt "@label:category menu label"
  3100. msgid "Generic"
  3101. msgstr "Generale"
  3102. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3103. msgctxt "@label:category menu label"
  3104. msgid "Network enabled printers"
  3105. msgstr "Stampanti abilitate per la rete"
  3106. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3107. msgctxt "@label:category menu label"
  3108. msgid "Local printers"
  3109. msgstr "Stampanti locali"
  3110. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3111. msgctxt "@title:menu menubar:settings"
  3112. msgid "&Printer"
  3113. msgstr "S&tampante"
  3114. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:27
  3115. msgctxt "@title:menu"
  3116. msgid "&Material"
  3117. msgstr "Ma&teriale"
  3118. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:36
  3119. msgctxt "@action:inmenu"
  3120. msgid "Set as Active Extruder"
  3121. msgstr "Imposta come estrusore attivo"
  3122. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:42
  3123. msgctxt "@action:inmenu"
  3124. msgid "Enable Extruder"
  3125. msgstr "Abilita estrusore"
  3126. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3127. msgctxt "@action:inmenu"
  3128. msgid "Disable Extruder"
  3129. msgstr "Disabilita estrusore"
  3130. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3131. msgctxt "@action:inmenu menubar:view"
  3132. msgid "&Camera position"
  3133. msgstr "&Posizione fotocamera"
  3134. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  3135. msgctxt "@action:inmenu menubar:view"
  3136. msgid "Camera view"
  3137. msgstr "Visualizzazione fotocamera"
  3138. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  3139. msgctxt "@action:inmenu menubar:view"
  3140. msgid "Perspective"
  3141. msgstr "Prospettiva"
  3142. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  3143. msgctxt "@action:inmenu menubar:view"
  3144. msgid "Orthographic"
  3145. msgstr "Ortogonale"
  3146. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  3147. msgctxt "@action:inmenu menubar:view"
  3148. msgid "&Build plate"
  3149. msgstr "P&iano di stampa"
  3150. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3151. msgctxt "@action:inmenu"
  3152. msgid "Visible Settings"
  3153. msgstr "Impostazioni visibili"
  3154. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3155. msgctxt "@action:inmenu"
  3156. msgid "Show All Settings"
  3157. msgstr "Mostra tutte le impostazioni"
  3158. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:53
  3159. msgctxt "@action:inmenu"
  3160. msgid "Manage Setting Visibility..."
  3161. msgstr "Gestisci Impostazione visibilità..."
  3162. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  3163. msgctxt "@title:menu menubar:file"
  3164. msgid "&Save..."
  3165. msgstr "&Salva..."
  3166. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  3167. msgctxt "@title:menu menubar:file"
  3168. msgid "&Export..."
  3169. msgstr "&Esporta..."
  3170. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  3171. msgctxt "@action:inmenu menubar:file"
  3172. msgid "Export Selection..."
  3173. msgstr "Esporta selezione..."
  3174. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3175. msgctxt "@label"
  3176. msgid "Print Selected Model With:"
  3177. msgid_plural "Print Selected Models With:"
  3178. msgstr[0] "Stampa modello selezionato con:"
  3179. msgstr[1] "Stampa modelli selezionati con:"
  3180. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3181. msgctxt "@title:window"
  3182. msgid "Multiply Selected Model"
  3183. msgid_plural "Multiply Selected Models"
  3184. msgstr[0] "Moltiplica modello selezionato"
  3185. msgstr[1] "Moltiplica modelli selezionati"
  3186. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3187. msgctxt "@label"
  3188. msgid "Number of Copies"
  3189. msgstr "Numero di copie"
  3190. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3191. msgctxt "@header"
  3192. msgid "Configurations"
  3193. msgstr "Configurazioni"
  3194. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  3195. msgctxt "@label"
  3196. msgid "Select configuration"
  3197. msgstr "Seleziona configurazione"
  3198. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  3199. msgctxt "@label"
  3200. msgid "Configurations"
  3201. msgstr "Configurazioni"
  3202. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3203. msgctxt "@label"
  3204. msgid "Loading available configurations from the printer..."
  3205. msgstr "Caricamento in corso configurazioni disponibili dalla stampante..."
  3206. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3207. msgctxt "@label"
  3208. msgid "The configurations are not available because the printer is disconnected."
  3209. msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata."
  3210. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3211. msgctxt "@header"
  3212. msgid "Custom"
  3213. msgstr "Personalizzata"
  3214. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3215. msgctxt "@label"
  3216. msgid "Printer"
  3217. msgstr "Stampante"
  3218. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3219. msgctxt "@label"
  3220. msgid "Enabled"
  3221. msgstr "Abilitato"
  3222. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:251
  3223. msgctxt "@label"
  3224. msgid "Material"
  3225. msgstr "Materiale"
  3226. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:378
  3227. msgctxt "@label"
  3228. msgid "Use glue for better adhesion with this material combination."
  3229. msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali."
  3230. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:128
  3231. msgctxt "@label"
  3232. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3233. msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto."
  3234. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:129
  3235. msgctxt "@label"
  3236. msgid "Marketplace"
  3237. msgstr "Mercato"
  3238. #: /home/ruben/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3239. msgctxt "@title:menu menubar:file"
  3240. msgid "Open &Recent"
  3241. msgstr "Ap&ri recenti"
  3242. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:140
  3243. msgctxt "@label"
  3244. msgid "Active print"
  3245. msgstr "Stampa attiva"
  3246. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:148
  3247. msgctxt "@label"
  3248. msgid "Job Name"
  3249. msgstr "Nome del processo"
  3250. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:156
  3251. msgctxt "@label"
  3252. msgid "Printing Time"
  3253. msgstr "Tempo di stampa"
  3254. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:164
  3255. msgctxt "@label"
  3256. msgid "Estimated time left"
  3257. msgstr "Tempo residuo stimato"
  3258. #: /home/ruben/Projects/Cura/resources/qml/ViewsSelector.qml:50
  3259. msgctxt "@label"
  3260. msgid "View type"
  3261. msgstr "Visualizza tipo"
  3262. #: /home/ruben/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3263. msgctxt "@label"
  3264. msgid "Object list"
  3265. msgstr "Elenco oggetti"
  3266. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:22
  3267. msgctxt "@label The argument is a username."
  3268. msgid "Hi %1"
  3269. msgstr "Alto %1"
  3270. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:33
  3271. msgctxt "@button"
  3272. msgid "Ultimaker account"
  3273. msgstr "Account Ultimaker"
  3274. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:42
  3275. msgctxt "@button"
  3276. msgid "Sign out"
  3277. msgstr "Esci"
  3278. #: /home/ruben/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  3279. msgctxt "@action:button"
  3280. msgid "Sign in"
  3281. msgstr "Accedi"
  3282. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  3283. msgctxt "@label"
  3284. msgid "The next generation 3D printing workflow"
  3285. msgstr "Flusso di stampa 3D di ultima generazione"
  3286. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  3287. msgctxt "@text"
  3288. msgid ""
  3289. "- Send print jobs to Ultimaker printers outside your local network\n"
  3290. "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  3291. "- Get exclusive access to print profiles from leading brands"
  3292. msgstr ""
  3293. "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  3294. "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  3295. "- Ottieni l’accesso esclusivo ai profili di stampa dai principali marchi"
  3296. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  3297. msgctxt "@button"
  3298. msgid "Create account"
  3299. msgstr "Crea account"
  3300. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3301. msgctxt "@label"
  3302. msgid "No time estimation available"
  3303. msgstr "Nessuna stima di tempo disponibile"
  3304. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3305. msgctxt "@label"
  3306. msgid "No cost estimation available"
  3307. msgstr "Nessuna stima di costo disponibile"
  3308. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3309. msgctxt "@button"
  3310. msgid "Preview"
  3311. msgstr "Anteprima"
  3312. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  3313. msgctxt "@label:PrintjobStatus"
  3314. msgid "Slicing..."
  3315. msgstr "Sezionamento in corso..."
  3316. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  3317. msgctxt "@label:PrintjobStatus"
  3318. msgid "Unable to slice"
  3319. msgstr "Sezionamento impossibile"
  3320. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  3321. msgctxt "@button"
  3322. msgid "Processing"
  3323. msgstr "Elaborazione in corso"
  3324. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  3325. msgctxt "@button"
  3326. msgid "Slice"
  3327. msgstr "Sezionamento"
  3328. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  3329. msgctxt "@label"
  3330. msgid "Start the slicing process"
  3331. msgstr "Avvia il processo di sezionamento"
  3332. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  3333. msgctxt "@button"
  3334. msgid "Cancel"
  3335. msgstr "Annulla"
  3336. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3337. msgctxt "@label"
  3338. msgid "Time estimation"
  3339. msgstr "Stima del tempo"
  3340. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3341. msgctxt "@label"
  3342. msgid "Material estimation"
  3343. msgstr "Stima del materiale"
  3344. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3345. msgctxt "@label m for meter"
  3346. msgid "%1m"
  3347. msgstr "%1m"
  3348. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3349. msgctxt "@label g for grams"
  3350. msgid "%1g"
  3351. msgstr "%1g"
  3352. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3353. msgctxt "@label"
  3354. msgid "Connected printers"
  3355. msgstr "Stampanti collegate"
  3356. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  3357. msgctxt "@label"
  3358. msgid "Preset printers"
  3359. msgstr "Stampanti preimpostate"
  3360. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:166
  3361. msgctxt "@button"
  3362. msgid "Add printer"
  3363. msgstr "Aggiungi stampante"
  3364. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:182
  3365. msgctxt "@button"
  3366. msgid "Manage printers"
  3367. msgstr "Gestione stampanti"
  3368. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:81
  3369. msgctxt "@action:inmenu"
  3370. msgid "Show Online Troubleshooting Guide"
  3371. msgstr "Mostra la Guida ricerca e riparazione dei guasti online"
  3372. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:88
  3373. msgctxt "@action:inmenu"
  3374. msgid "Toggle Full Screen"
  3375. msgstr "Attiva/disattiva schermo intero"
  3376. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:96
  3377. msgctxt "@action:inmenu"
  3378. msgid "Exit Full Screen"
  3379. msgstr "Esci da schermo intero"
  3380. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:103
  3381. msgctxt "@action:inmenu menubar:edit"
  3382. msgid "&Undo"
  3383. msgstr "&Annulla"
  3384. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113
  3385. msgctxt "@action:inmenu menubar:edit"
  3386. msgid "&Redo"
  3387. msgstr "Ri&peti"
  3388. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:123
  3389. msgctxt "@action:inmenu menubar:file"
  3390. msgid "&Quit"
  3391. msgstr "&Esci"
  3392. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:131
  3393. msgctxt "@action:inmenu menubar:view"
  3394. msgid "3D View"
  3395. msgstr "Visualizzazione 3D"
  3396. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:138
  3397. msgctxt "@action:inmenu menubar:view"
  3398. msgid "Front View"
  3399. msgstr "Visualizzazione frontale"
  3400. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:145
  3401. msgctxt "@action:inmenu menubar:view"
  3402. msgid "Top View"
  3403. msgstr "Visualizzazione superiore"
  3404. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:152
  3405. msgctxt "@action:inmenu menubar:view"
  3406. msgid "Left Side View"
  3407. msgstr "Visualizzazione lato sinistro"
  3408. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:159
  3409. msgctxt "@action:inmenu menubar:view"
  3410. msgid "Right Side View"
  3411. msgstr "Visualizzazione lato destro"
  3412. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:166
  3413. msgctxt "@action:inmenu"
  3414. msgid "Configure Cura..."
  3415. msgstr "Configura Cura..."
  3416. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:173
  3417. msgctxt "@action:inmenu menubar:printer"
  3418. msgid "&Add Printer..."
  3419. msgstr "&Aggiungi stampante..."
  3420. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:179
  3421. msgctxt "@action:inmenu menubar:printer"
  3422. msgid "Manage Pr&inters..."
  3423. msgstr "Gestione stampanti..."
  3424. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:186
  3425. msgctxt "@action:inmenu"
  3426. msgid "Manage Materials..."
  3427. msgstr "Gestione materiali..."
  3428. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:195
  3429. msgctxt "@action:inmenu menubar:profile"
  3430. msgid "&Update profile with current settings/overrides"
  3431. msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti"
  3432. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:203
  3433. msgctxt "@action:inmenu menubar:profile"
  3434. msgid "&Discard current changes"
  3435. msgstr "&Elimina le modifiche correnti"
  3436. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:215
  3437. msgctxt "@action:inmenu menubar:profile"
  3438. msgid "&Create profile from current settings/overrides..."
  3439. msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..."
  3440. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:221
  3441. msgctxt "@action:inmenu menubar:profile"
  3442. msgid "Manage Profiles..."
  3443. msgstr "Gestione profili..."
  3444. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:229
  3445. msgctxt "@action:inmenu menubar:help"
  3446. msgid "Show Online &Documentation"
  3447. msgstr "Mostra documentazione &online"
  3448. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:237
  3449. msgctxt "@action:inmenu menubar:help"
  3450. msgid "Report a &Bug"
  3451. msgstr "Se&gnala un errore"
  3452. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:245
  3453. msgctxt "@action:inmenu menubar:help"
  3454. msgid "What's New"
  3455. msgstr "Scopri le novità"
  3456. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251
  3457. msgctxt "@action:inmenu menubar:help"
  3458. msgid "About..."
  3459. msgstr "Informazioni..."
  3460. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:258
  3461. msgctxt "@action:inmenu menubar:edit"
  3462. msgid "Delete Selected Model"
  3463. msgid_plural "Delete Selected Models"
  3464. msgstr[0] "Cancella modello selezionato"
  3465. msgstr[1] "Cancella modelli selezionati"
  3466. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268
  3467. msgctxt "@action:inmenu menubar:edit"
  3468. msgid "Center Selected Model"
  3469. msgid_plural "Center Selected Models"
  3470. msgstr[0] "Centra modello selezionato"
  3471. msgstr[1] "Centra modelli selezionati"
  3472. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:277
  3473. msgctxt "@action:inmenu menubar:edit"
  3474. msgid "Multiply Selected Model"
  3475. msgid_plural "Multiply Selected Models"
  3476. msgstr[0] "Moltiplica modello selezionato"
  3477. msgstr[1] "Moltiplica modelli selezionati"
  3478. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:286
  3479. msgctxt "@action:inmenu"
  3480. msgid "Delete Model"
  3481. msgstr "Elimina modello"
  3482. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294
  3483. msgctxt "@action:inmenu"
  3484. msgid "Ce&nter Model on Platform"
  3485. msgstr "C&entra modello su piattaforma"
  3486. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:300
  3487. msgctxt "@action:inmenu menubar:edit"
  3488. msgid "&Group Models"
  3489. msgstr "&Raggruppa modelli"
  3490. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:320
  3491. msgctxt "@action:inmenu menubar:edit"
  3492. msgid "Ungroup Models"
  3493. msgstr "Separa modelli"
  3494. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:330
  3495. msgctxt "@action:inmenu menubar:edit"
  3496. msgid "&Merge Models"
  3497. msgstr "&Unisci modelli"
  3498. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:340
  3499. msgctxt "@action:inmenu"
  3500. msgid "&Multiply Model..."
  3501. msgstr "Mo&ltiplica modello..."
  3502. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:347
  3503. msgctxt "@action:inmenu menubar:edit"
  3504. msgid "Select All Models"
  3505. msgstr "Seleziona tutti i modelli"
  3506. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357
  3507. msgctxt "@action:inmenu menubar:edit"
  3508. msgid "Clear Build Plate"
  3509. msgstr "Cancellare piano di stampa"
  3510. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367
  3511. msgctxt "@action:inmenu menubar:file"
  3512. msgid "Reload All Models"
  3513. msgstr "Ricarica tutti i modelli"
  3514. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:376
  3515. msgctxt "@action:inmenu menubar:edit"
  3516. msgid "Arrange All Models To All Build Plates"
  3517. msgstr "Sistema tutti i modelli su tutti i piani di stampa"
  3518. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:383
  3519. msgctxt "@action:inmenu menubar:edit"
  3520. msgid "Arrange All Models"
  3521. msgstr "Sistema tutti i modelli"
  3522. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:391
  3523. msgctxt "@action:inmenu menubar:edit"
  3524. msgid "Arrange Selection"
  3525. msgstr "Sistema selezione"
  3526. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:398
  3527. msgctxt "@action:inmenu menubar:edit"
  3528. msgid "Reset All Model Positions"
  3529. msgstr "Reimposta tutte le posizioni dei modelli"
  3530. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:405
  3531. msgctxt "@action:inmenu menubar:edit"
  3532. msgid "Reset All Model Transformations"
  3533. msgstr "Reimposta tutte le trasformazioni dei modelli"
  3534. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:412
  3535. msgctxt "@action:inmenu menubar:file"
  3536. msgid "&Open File(s)..."
  3537. msgstr "&Apri file..."
  3538. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:420
  3539. msgctxt "@action:inmenu menubar:file"
  3540. msgid "&New Project..."
  3541. msgstr "&Nuovo Progetto..."
  3542. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:427
  3543. msgctxt "@action:inmenu menubar:help"
  3544. msgid "Show Configuration Folder"
  3545. msgstr "Mostra cartella di configurazione"
  3546. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:441
  3547. msgctxt "@action:menu"
  3548. msgid "&Marketplace"
  3549. msgstr "&Mercato"
  3550. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:24
  3551. msgctxt "@title:window"
  3552. msgid "Ultimaker Cura"
  3553. msgstr "Ultimaker Cura"
  3554. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:232
  3555. msgctxt "@label"
  3556. msgid "This package will be installed after restarting."
  3557. msgstr "Questo pacchetto sarà installato dopo il riavvio."
  3558. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:413
  3559. msgctxt "@title:tab"
  3560. msgid "Settings"
  3561. msgstr "Impostazioni"
  3562. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538
  3563. msgctxt "@title:window"
  3564. msgid "Closing Cura"
  3565. msgstr "Chiusura di Cura"
  3566. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:539
  3567. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:551
  3568. msgctxt "@label"
  3569. msgid "Are you sure you want to exit Cura?"
  3570. msgstr "Sei sicuro di voler uscire da Cura?"
  3571. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:589
  3572. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3573. msgctxt "@title:window"
  3574. msgid "Open file(s)"
  3575. msgstr "Apri file"
  3576. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:695
  3577. msgctxt "@window:title"
  3578. msgid "Install Package"
  3579. msgstr "Installa il pacchetto"
  3580. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:703
  3581. msgctxt "@title:window"
  3582. msgid "Open File(s)"
  3583. msgstr "Apri file"
  3584. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:706
  3585. msgctxt "@text:window"
  3586. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3587. msgstr "Rilevata la presenza di uno o più file codice G tra i file selezionati. È possibile aprire solo un file codice G alla volta. Se desideri aprire un file codice G, selezionane uno solo."
  3588. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:809
  3589. msgctxt "@title:window"
  3590. msgid "Add Printer"
  3591. msgstr "Aggiungi stampante"
  3592. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:817
  3593. msgctxt "@title:window"
  3594. msgid "What's New"
  3595. msgstr "Scopri le novità"
  3596. #: /home/ruben/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3597. msgctxt "@label %1 is filled in with the name of an extruder"
  3598. msgid "Print Selected Model with %1"
  3599. msgid_plural "Print Selected Models with %1"
  3600. msgstr[0] "Stampa modello selezionato con %1"
  3601. msgstr[1] "Stampa modelli selezionati con %1"
  3602. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3603. msgctxt "@title:window"
  3604. msgid "Discard or Keep changes"
  3605. msgstr "Elimina o mantieni modifiche"
  3606. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3607. msgctxt "@text:window"
  3608. msgid ""
  3609. "You have customized some profile settings.\n"
  3610. "Would you like to keep or discard those settings?"
  3611. msgstr ""
  3612. "Sono state personalizzate alcune impostazioni del profilo.\n"
  3613. "Mantenere o eliminare tali impostazioni?"
  3614. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:110
  3615. msgctxt "@title:column"
  3616. msgid "Profile settings"
  3617. msgstr "Impostazioni profilo"
  3618. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  3619. msgctxt "@title:column"
  3620. msgid "Default"
  3621. msgstr "Valore predefinito"
  3622. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3623. msgctxt "@title:column"
  3624. msgid "Customized"
  3625. msgstr "Valore personalizzato"
  3626. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  3627. msgctxt "@option:discardOrKeep"
  3628. msgid "Discard and never ask again"
  3629. msgstr "Elimina e non chiedere nuovamente"
  3630. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3631. msgctxt "@option:discardOrKeep"
  3632. msgid "Keep and never ask again"
  3633. msgstr "Mantieni e non chiedere nuovamente"
  3634. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:196
  3635. msgctxt "@action:button"
  3636. msgid "Discard"
  3637. msgstr "Elimina"
  3638. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:209
  3639. msgctxt "@action:button"
  3640. msgid "Keep"
  3641. msgstr "Mantieni"
  3642. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:222
  3643. msgctxt "@action:button"
  3644. msgid "Create New Profile"
  3645. msgstr "Crea nuovo profilo"
  3646. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3647. msgctxt "@title:window"
  3648. msgid "About Cura"
  3649. msgstr "Informazioni su Cura"
  3650. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3651. msgctxt "@label"
  3652. msgid "version: %1"
  3653. msgstr "versione: %1"
  3654. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3655. msgctxt "@label"
  3656. msgid "End-to-end solution for fused filament 3D printing."
  3657. msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso."
  3658. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3659. msgctxt "@info:credit"
  3660. msgid ""
  3661. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3662. "Cura proudly uses the following open source projects:"
  3663. msgstr ""
  3664. "Cura è stato sviluppato da Ultimaker B.V. in cooperazione con la comunità.\n"
  3665. "Cura è orgogliosa di utilizzare i seguenti progetti open source:"
  3666. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3667. msgctxt "@label"
  3668. msgid "Graphical user interface"
  3669. msgstr "Interfaccia grafica utente"
  3670. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3671. msgctxt "@label"
  3672. msgid "Application framework"
  3673. msgstr "Struttura applicazione"
  3674. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3675. msgctxt "@label"
  3676. msgid "G-code generator"
  3677. msgstr "Generatore codice G"
  3678. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  3679. msgctxt "@label"
  3680. msgid "Interprocess communication library"
  3681. msgstr "Libreria di comunicazione intra-processo"
  3682. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3683. msgctxt "@label"
  3684. msgid "Programming language"
  3685. msgstr "Lingua di programmazione"
  3686. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3687. msgctxt "@label"
  3688. msgid "GUI framework"
  3689. msgstr "Struttura GUI"
  3690. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3691. msgctxt "@label"
  3692. msgid "GUI framework bindings"
  3693. msgstr "Vincoli struttura GUI"
  3694. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3695. msgctxt "@label"
  3696. msgid "C/C++ Binding library"
  3697. msgstr "Libreria vincoli C/C++"
  3698. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3699. msgctxt "@label"
  3700. msgid "Data interchange format"
  3701. msgstr "Formato scambio dati"
  3702. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3703. msgctxt "@label"
  3704. msgid "Support library for scientific computing"
  3705. msgstr "Libreria di supporto per calcolo scientifico"
  3706. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3707. msgctxt "@label"
  3708. msgid "Support library for faster math"
  3709. msgstr "Libreria di supporto per calcolo rapido"
  3710. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3711. msgctxt "@label"
  3712. msgid "Support library for handling STL files"
  3713. msgstr "Libreria di supporto per gestione file STL"
  3714. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3715. msgctxt "@label"
  3716. msgid "Support library for handling planar objects"
  3717. msgstr "Libreria di supporto per gestione oggetti planari"
  3718. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3719. msgctxt "@label"
  3720. msgid "Support library for handling triangular meshes"
  3721. msgstr "Libreria di supporto per gestione maglie triangolari"
  3722. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3723. msgctxt "@label"
  3724. msgid "Support library for analysis of complex networks"
  3725. msgstr "Libreria di supporto per l’analisi di reti complesse"
  3726. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3727. msgctxt "@label"
  3728. msgid "Support library for handling 3MF files"
  3729. msgstr "Libreria di supporto per gestione file 3MF"
  3730. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3731. msgctxt "@label"
  3732. msgid "Support library for file metadata and streaming"
  3733. msgstr "Libreria di supporto per metadati file e streaming"
  3734. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3735. msgctxt "@label"
  3736. msgid "Serial communication library"
  3737. msgstr "Libreria di comunicazione seriale"
  3738. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3739. msgctxt "@label"
  3740. msgid "ZeroConf discovery library"
  3741. msgstr "Libreria scoperta ZeroConf"
  3742. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3743. msgctxt "@label"
  3744. msgid "Polygon clipping library"
  3745. msgstr "Libreria ritaglio poligono"
  3746. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3747. msgctxt "@Label"
  3748. msgid "Python HTTP library"
  3749. msgstr "Libreria Python HTTP"
  3750. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3751. msgctxt "@label"
  3752. msgid "Font"
  3753. msgstr "Font"
  3754. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3755. msgctxt "@label"
  3756. msgid "SVG icons"
  3757. msgstr "Icone SVG"
  3758. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3759. msgctxt "@label"
  3760. msgid "Linux cross-distribution application deployment"
  3761. msgstr "Apertura applicazione distribuzione incrociata Linux"
  3762. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3763. msgctxt "@text:window"
  3764. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3765. msgstr "Rilevata la presenza di uno o più file progetto tra i file selezionati. È possibile aprire solo un file progetto alla volta. Si suggerisce di importare i modelli solo da tali file. Vuoi procedere?"
  3766. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  3767. msgctxt "@action:button"
  3768. msgid "Import all as models"
  3769. msgstr "Importa tutto come modelli"
  3770. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3771. msgctxt "@title:window"
  3772. msgid "Save Project"
  3773. msgstr "Salva progetto"
  3774. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  3775. msgctxt "@action:label"
  3776. msgid "Extruder %1"
  3777. msgstr "Estrusore %1"
  3778. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:192
  3779. msgctxt "@action:label"
  3780. msgid "%1 & material"
  3781. msgstr "%1 & materiale"
  3782. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:194
  3783. msgctxt "@action:label"
  3784. msgid "Material"
  3785. msgstr "Materiale"
  3786. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:283
  3787. msgctxt "@action:label"
  3788. msgid "Don't show project summary on save again"
  3789. msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva"
  3790. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:302
  3791. msgctxt "@action:button"
  3792. msgid "Save"
  3793. msgstr "Salva"
  3794. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3795. msgctxt "@title:window"
  3796. msgid "Open project file"
  3797. msgstr "Apri file progetto"
  3798. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  3799. msgctxt "@text:window"
  3800. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3801. msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?"
  3802. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  3803. msgctxt "@text:window"
  3804. msgid "Remember my choice"
  3805. msgstr "Ricorda la scelta"
  3806. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  3807. msgctxt "@action:button"
  3808. msgid "Open as project"
  3809. msgstr "Apri come progetto"
  3810. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  3811. msgctxt "@action:button"
  3812. msgid "Import models"
  3813. msgstr "Importa i modelli"
  3814. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3815. msgctxt "@label"
  3816. msgid "Empty"
  3817. msgstr "Vuoto"
  3818. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3819. msgctxt "@label"
  3820. msgid "Add a printer"
  3821. msgstr "Aggiungi una stampante"
  3822. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3823. msgctxt "@label"
  3824. msgid "Add a networked printer"
  3825. msgstr "Aggiungi una stampante in rete"
  3826. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:81
  3827. msgctxt "@label"
  3828. msgid "Add a non-networked printer"
  3829. msgstr "Aggiungi una stampante non in rete"
  3830. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3831. msgctxt "@label"
  3832. msgid "Add printer by IP address"
  3833. msgstr "Aggiungi stampante per indirizzo IP"
  3834. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3835. msgctxt "@text"
  3836. msgid "Place enter your printer's IP address."
  3837. msgstr "Inserisci l'indirizzo IP della stampante."
  3838. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3839. msgctxt "@button"
  3840. msgid "Add"
  3841. msgstr "Aggiungi"
  3842. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:204
  3843. msgctxt "@label"
  3844. msgid "Could not connect to device."
  3845. msgstr "Impossibile connettersi al dispositivo."
  3846. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:208
  3847. msgctxt "@label"
  3848. msgid "The printer at this address has not responded yet."
  3849. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  3850. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:240
  3851. msgctxt "@label"
  3852. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3853. msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo."
  3854. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:329
  3855. msgctxt "@button"
  3856. msgid "Back"
  3857. msgstr "Indietro"
  3858. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:342
  3859. msgctxt "@button"
  3860. msgid "Connect"
  3861. msgstr "Collega"
  3862. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  3863. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  3864. msgctxt "@button"
  3865. msgid "Next"
  3866. msgstr "Avanti"
  3867. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3868. msgctxt "@label"
  3869. msgid "User Agreement"
  3870. msgstr "Contratto di licenza"
  3871. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  3872. msgctxt "@button"
  3873. msgid "Agree"
  3874. msgstr "Accetta"
  3875. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3876. msgctxt "@button"
  3877. msgid "Decline and close"
  3878. msgstr "Rifiuta e chiudi"
  3879. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3880. msgctxt "@label"
  3881. msgid "Help us to improve Ultimaker Cura"
  3882. msgstr "Aiutaci a migliorare Ultimaker Cura"
  3883. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3884. msgctxt "@text"
  3885. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3886. msgstr "Ultimaker Cura acquisisce dati anonimi per migliorare la qualità di stampa e l'esperienza dell'utente, tra cui:"
  3887. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3888. msgctxt "@text"
  3889. msgid "Machine types"
  3890. msgstr "Tipi di macchine"
  3891. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3892. msgctxt "@text"
  3893. msgid "Material usage"
  3894. msgstr "Utilizzo dei materiali"
  3895. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3896. msgctxt "@text"
  3897. msgid "Number of slices"
  3898. msgstr "Numero di sezionamenti"
  3899. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3900. msgctxt "@text"
  3901. msgid "Print settings"
  3902. msgstr "Impostazioni di stampa"
  3903. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3904. msgctxt "@text"
  3905. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3906. msgstr "I dati acquisiti da Ultimaker Cura non conterranno alcuna informazione personale."
  3907. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3908. msgctxt "@text"
  3909. msgid "More information"
  3910. msgstr "Ulteriori informazioni"
  3911. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  3912. msgctxt "@label"
  3913. msgid "What's new in Ultimaker Cura"
  3914. msgstr "Scopri le novità in Ultimaker Cura"
  3915. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:42
  3916. msgctxt "@label"
  3917. msgid "There is no printer found over your network."
  3918. msgstr "Non è stata trovata alcuna stampante sulla rete."
  3919. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:179
  3920. msgctxt "@label"
  3921. msgid "Refresh"
  3922. msgstr "Aggiorna"
  3923. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:190
  3924. msgctxt "@label"
  3925. msgid "Add printer by IP"
  3926. msgstr "Aggiungi stampante per IP"
  3927. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:223
  3928. msgctxt "@label"
  3929. msgid "Troubleshooting"
  3930. msgstr "Ricerca e riparazione dei guasti"
  3931. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:211
  3932. msgctxt "@label"
  3933. msgid "Printer name"
  3934. msgstr "Nome stampante"
  3935. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:224
  3936. msgctxt "@text"
  3937. msgid "Please give your printer a name"
  3938. msgstr "Assegna un nome alla stampante"
  3939. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:36
  3940. msgctxt "@label"
  3941. msgid "Ultimaker Cloud"
  3942. msgstr "Ultimaker Cloud"
  3943. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:77
  3944. msgctxt "@text"
  3945. msgid "The next generation 3D printing workflow"
  3946. msgstr "Flusso di stampa 3D di ultima generazione"
  3947. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:94
  3948. msgctxt "@text"
  3949. msgid "- Send print jobs to Ultimaker printers outside your local network"
  3950. msgstr "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale"
  3951. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:97
  3952. msgctxt "@text"
  3953. msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  3954. msgstr "- Memorizza le impostazioni Ultimaker Cura nel cloud per usarle ovunque"
  3955. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:100
  3956. msgctxt "@text"
  3957. msgid "- Get exclusive access to print profiles from leading brands"
  3958. msgstr "- Ottieni l'accesso esclusivo ai profili di stampa dai principali marchi"
  3959. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:119
  3960. msgctxt "@button"
  3961. msgid "Finish"
  3962. msgstr "Fine"
  3963. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:128
  3964. msgctxt "@button"
  3965. msgid "Create an account"
  3966. msgstr "Crea un account"
  3967. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  3968. msgctxt "@label"
  3969. msgid "Welcome to Ultimaker Cura"
  3970. msgstr "Benvenuto in Ultimaker Cura"
  3971. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  3972. msgctxt "@text"
  3973. msgid ""
  3974. "Please follow these steps to set up\n"
  3975. "Ultimaker Cura. This will only take a few moments."
  3976. msgstr ""
  3977. "Segui questa procedura per configurare\n"
  3978. "Ultimaker Cura. Questa operazione richiederà solo pochi istanti."
  3979. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  3980. msgctxt "@button"
  3981. msgid "Get started"
  3982. msgstr "Per iniziare"
  3983. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  3984. msgctxt "@info:tooltip"
  3985. msgid "3D View"
  3986. msgstr "Visualizzazione 3D"
  3987. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  3988. msgctxt "@info:tooltip"
  3989. msgid "Front View"
  3990. msgstr "Visualizzazione frontale"
  3991. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  3992. msgctxt "@info:tooltip"
  3993. msgid "Top View"
  3994. msgstr "Visualizzazione superiore"
  3995. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  3996. msgctxt "@info:tooltip"
  3997. msgid "Left View"
  3998. msgstr "Vista sinistra"
  3999. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4000. msgctxt "@info:tooltip"
  4001. msgid "Right View"
  4002. msgstr "Vista destra"
  4003. #: MachineSettingsAction/plugin.json
  4004. msgctxt "description"
  4005. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4006. msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  4007. #: MachineSettingsAction/plugin.json
  4008. msgctxt "name"
  4009. msgid "Machine Settings action"
  4010. msgstr "Azione Impostazioni macchina"
  4011. #: Toolbox/plugin.json
  4012. msgctxt "description"
  4013. msgid "Find, manage and install new Cura packages."
  4014. msgstr "Trova, gestisce ed installa nuovi pacchetti Cura."
  4015. #: Toolbox/plugin.json
  4016. msgctxt "name"
  4017. msgid "Toolbox"
  4018. msgstr "Casella degli strumenti"
  4019. #: XRayView/plugin.json
  4020. msgctxt "description"
  4021. msgid "Provides the X-Ray view."
  4022. msgstr "Fornisce la vista a raggi X."
  4023. #: XRayView/plugin.json
  4024. msgctxt "name"
  4025. msgid "X-Ray View"
  4026. msgstr "Vista ai raggi X"
  4027. #: X3DReader/plugin.json
  4028. msgctxt "description"
  4029. msgid "Provides support for reading X3D files."
  4030. msgstr "Fornisce il supporto per la lettura di file X3D."
  4031. #: X3DReader/plugin.json
  4032. msgctxt "name"
  4033. msgid "X3D Reader"
  4034. msgstr "Lettore X3D"
  4035. #: GCodeWriter/plugin.json
  4036. msgctxt "description"
  4037. msgid "Writes g-code to a file."
  4038. msgstr "Scrive il codice G in un file."
  4039. #: GCodeWriter/plugin.json
  4040. msgctxt "name"
  4041. msgid "G-code Writer"
  4042. msgstr "Writer codice G"
  4043. #: ModelChecker/plugin.json
  4044. msgctxt "description"
  4045. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4046. msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti."
  4047. #: ModelChecker/plugin.json
  4048. msgctxt "name"
  4049. msgid "Model Checker"
  4050. msgstr "Controllo modello"
  4051. #: FirmwareUpdater/plugin.json
  4052. msgctxt "description"
  4053. msgid "Provides a machine actions for updating firmware."
  4054. msgstr "Fornisce azioni macchina per l’aggiornamento del firmware."
  4055. #: FirmwareUpdater/plugin.json
  4056. msgctxt "name"
  4057. msgid "Firmware Updater"
  4058. msgstr "Aggiornamento firmware"
  4059. #: AMFReader/plugin.json
  4060. msgctxt "description"
  4061. msgid "Provides support for reading AMF files."
  4062. msgstr "Fornisce il supporto per la lettura di file 3MF."
  4063. #: AMFReader/plugin.json
  4064. msgctxt "name"
  4065. msgid "AMF Reader"
  4066. msgstr "Lettore 3MF"
  4067. #: USBPrinting/plugin.json
  4068. msgctxt "description"
  4069. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4070. msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware."
  4071. #: USBPrinting/plugin.json
  4072. msgctxt "name"
  4073. msgid "USB printing"
  4074. msgstr "Stampa USB"
  4075. #: GCodeGzWriter/plugin.json
  4076. msgctxt "description"
  4077. msgid "Writes g-code to a compressed archive."
  4078. msgstr "Scrive il codice G in un archivio compresso."
  4079. #: GCodeGzWriter/plugin.json
  4080. msgctxt "name"
  4081. msgid "Compressed G-code Writer"
  4082. msgstr "Writer codice G compresso"
  4083. #: UFPWriter/plugin.json
  4084. msgctxt "description"
  4085. msgid "Provides support for writing Ultimaker Format Packages."
  4086. msgstr "Fornisce il supporto per la scrittura di pacchetti formato Ultimaker."
  4087. #: UFPWriter/plugin.json
  4088. msgctxt "name"
  4089. msgid "UFP Writer"
  4090. msgstr "Writer UFP"
  4091. #: PrepareStage/plugin.json
  4092. msgctxt "description"
  4093. msgid "Provides a prepare stage in Cura."
  4094. msgstr "Fornisce una fase di preparazione in Cura."
  4095. #: PrepareStage/plugin.json
  4096. msgctxt "name"
  4097. msgid "Prepare Stage"
  4098. msgstr "Fase di preparazione"
  4099. #: RemovableDriveOutputDevice/plugin.json
  4100. msgctxt "description"
  4101. msgid "Provides removable drive hotplugging and writing support."
  4102. msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  4103. #: RemovableDriveOutputDevice/plugin.json
  4104. msgctxt "name"
  4105. msgid "Removable Drive Output Device Plugin"
  4106. msgstr "Plugin dispositivo di output unità rimovibile"
  4107. #: UM3NetworkPrinting/plugin.json
  4108. msgctxt "description"
  4109. msgid "Manages network connections to Ultimaker networked printers."
  4110. msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker in rete."
  4111. #: UM3NetworkPrinting/plugin.json
  4112. msgctxt "name"
  4113. msgid "Ultimaker Network Connection"
  4114. msgstr "Connessione di rete Ultimaker"
  4115. #: MonitorStage/plugin.json
  4116. msgctxt "description"
  4117. msgid "Provides a monitor stage in Cura."
  4118. msgstr "Fornisce una fase di controllo in Cura."
  4119. #: MonitorStage/plugin.json
  4120. msgctxt "name"
  4121. msgid "Monitor Stage"
  4122. msgstr "Fase di controllo"
  4123. #: FirmwareUpdateChecker/plugin.json
  4124. msgctxt "description"
  4125. msgid "Checks for firmware updates."
  4126. msgstr "Controlla disponibilità di aggiornamenti firmware."
  4127. #: FirmwareUpdateChecker/plugin.json
  4128. msgctxt "name"
  4129. msgid "Firmware Update Checker"
  4130. msgstr "Controllo aggiornamento firmware"
  4131. #: SimulationView/plugin.json
  4132. msgctxt "description"
  4133. msgid "Provides the Simulation view."
  4134. msgstr "Fornisce la vista di simulazione."
  4135. #: SimulationView/plugin.json
  4136. msgctxt "name"
  4137. msgid "Simulation View"
  4138. msgstr "Vista simulazione"
  4139. #: GCodeGzReader/plugin.json
  4140. msgctxt "description"
  4141. msgid "Reads g-code from a compressed archive."
  4142. msgstr "Legge il codice G da un archivio compresso."
  4143. #: GCodeGzReader/plugin.json
  4144. msgctxt "name"
  4145. msgid "Compressed G-code Reader"
  4146. msgstr "Lettore codice G compresso"
  4147. #: PostProcessingPlugin/plugin.json
  4148. msgctxt "description"
  4149. msgid "Extension that allows for user created scripts for post processing"
  4150. msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  4151. #: PostProcessingPlugin/plugin.json
  4152. msgctxt "name"
  4153. msgid "Post Processing"
  4154. msgstr "Post-elaborazione"
  4155. #: SupportEraser/plugin.json
  4156. msgctxt "description"
  4157. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4158. msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni"
  4159. #: SupportEraser/plugin.json
  4160. msgctxt "name"
  4161. msgid "Support Eraser"
  4162. msgstr "Cancellazione supporto"
  4163. #: UFPReader/plugin.json
  4164. msgctxt "description"
  4165. msgid "Provides support for reading Ultimaker Format Packages."
  4166. msgstr "Fornisce il supporto per la lettura di pacchetti formato Ultimaker."
  4167. #: UFPReader/plugin.json
  4168. msgctxt "name"
  4169. msgid "UFP Reader"
  4170. msgstr "Lettore UFP"
  4171. #: SliceInfoPlugin/plugin.json
  4172. msgctxt "description"
  4173. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4174. msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze."
  4175. #: SliceInfoPlugin/plugin.json
  4176. msgctxt "name"
  4177. msgid "Slice info"
  4178. msgstr "Informazioni su sezionamento"
  4179. #: XmlMaterialProfile/plugin.json
  4180. msgctxt "description"
  4181. msgid "Provides capabilities to read and write XML-based material profiles."
  4182. msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  4183. #: XmlMaterialProfile/plugin.json
  4184. msgctxt "name"
  4185. msgid "Material Profiles"
  4186. msgstr "Profili del materiale"
  4187. #: LegacyProfileReader/plugin.json
  4188. msgctxt "description"
  4189. msgid "Provides support for importing profiles from legacy Cura versions."
  4190. msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  4191. #: LegacyProfileReader/plugin.json
  4192. msgctxt "name"
  4193. msgid "Legacy Cura Profile Reader"
  4194. msgstr "Lettore legacy profilo Cura"
  4195. #: GCodeProfileReader/plugin.json
  4196. msgctxt "description"
  4197. msgid "Provides support for importing profiles from g-code files."
  4198. msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  4199. #: GCodeProfileReader/plugin.json
  4200. msgctxt "name"
  4201. msgid "G-code Profile Reader"
  4202. msgstr "Lettore profilo codice G"
  4203. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4204. msgctxt "description"
  4205. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4206. msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3."
  4207. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4208. msgctxt "name"
  4209. msgid "Version Upgrade 3.2 to 3.3"
  4210. msgstr "Aggiornamento della versione da 3.2 a 3.3"
  4211. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4212. msgctxt "description"
  4213. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4214. msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4."
  4215. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4216. msgctxt "name"
  4217. msgid "Version Upgrade 3.3 to 3.4"
  4218. msgstr "Aggiornamento della versione da 3.3 a 3.4"
  4219. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4220. msgctxt "description"
  4221. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4222. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4."
  4223. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4224. msgctxt "name"
  4225. msgid "Version Upgrade 4.3 to 4.4"
  4226. msgstr "Aggiornamento della versione da 4.3 a 4.4"
  4227. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4228. msgctxt "description"
  4229. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4230. msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  4231. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4232. msgctxt "name"
  4233. msgid "Version Upgrade 2.5 to 2.6"
  4234. msgstr "Aggiornamento della versione da 2.5 a 2.6"
  4235. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4236. msgctxt "description"
  4237. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4238. msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0."
  4239. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4240. msgctxt "name"
  4241. msgid "Version Upgrade 2.7 to 3.0"
  4242. msgstr "Aggiornamento della versione da 2.7 a 3.0"
  4243. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4244. msgctxt "description"
  4245. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4246. msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0."
  4247. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4248. msgctxt "name"
  4249. msgid "Version Upgrade 3.5 to 4.0"
  4250. msgstr "Aggiornamento della versione da 3.5 a 4.0"
  4251. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4252. msgctxt "description"
  4253. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4254. msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5."
  4255. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4256. msgctxt "name"
  4257. msgid "Version Upgrade 3.4 to 3.5"
  4258. msgstr "Aggiornamento della versione da 3.4 a 3.5"
  4259. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4260. msgctxt "description"
  4261. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4262. msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1."
  4263. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4264. msgctxt "name"
  4265. msgid "Version Upgrade 4.0 to 4.1"
  4266. msgstr "Aggiornamento della versione da 4.0 a 4.1"
  4267. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4268. msgctxt "description"
  4269. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4270. msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1."
  4271. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4272. msgctxt "name"
  4273. msgid "Version Upgrade 3.0 to 3.1"
  4274. msgstr "Aggiornamento della versione da 3.0 a 3.1"
  4275. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4276. msgctxt "description"
  4277. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4278. msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2."
  4279. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4280. msgctxt "name"
  4281. msgid "Version Upgrade 4.1 to 4.2"
  4282. msgstr "Aggiornamento della versione da 4.1 a 4.2"
  4283. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4284. msgctxt "description"
  4285. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4286. msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7."
  4287. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4288. msgctxt "name"
  4289. msgid "Version Upgrade 2.6 to 2.7"
  4290. msgstr "Aggiornamento della versione da 2.6 a 2.7"
  4291. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4292. msgctxt "description"
  4293. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4294. msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  4295. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4296. msgctxt "name"
  4297. msgid "Version Upgrade 2.1 to 2.2"
  4298. msgstr "Aggiornamento della versione da 2.1 a 2.2"
  4299. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4300. msgctxt "description"
  4301. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4302. msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  4303. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4304. msgctxt "name"
  4305. msgid "Version Upgrade 2.2 to 2.4"
  4306. msgstr "Aggiornamento della versione da 2.2 a 2.4"
  4307. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4308. msgctxt "description"
  4309. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4310. msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3."
  4311. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4312. msgctxt "name"
  4313. msgid "Version Upgrade 4.2 to 4.3"
  4314. msgstr "Aggiornamento della versione da 4.2 a 4.3"
  4315. #: ImageReader/plugin.json
  4316. msgctxt "description"
  4317. msgid "Enables ability to generate printable geometry from 2D image files."
  4318. msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  4319. #: ImageReader/plugin.json
  4320. msgctxt "name"
  4321. msgid "Image Reader"
  4322. msgstr "Lettore di immagine"
  4323. #: TrimeshReader/plugin.json
  4324. msgctxt "description"
  4325. msgid "Provides support for reading model files."
  4326. msgstr "Fornisce supporto per la lettura dei file modello."
  4327. #: TrimeshReader/plugin.json
  4328. msgctxt "name"
  4329. msgid "Trimesh Reader"
  4330. msgstr "Trimesh Reader"
  4331. #: CuraEngineBackend/plugin.json
  4332. msgctxt "description"
  4333. msgid "Provides the link to the CuraEngine slicing backend."
  4334. msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
  4335. #: CuraEngineBackend/plugin.json
  4336. msgctxt "name"
  4337. msgid "CuraEngine Backend"
  4338. msgstr "Back-end CuraEngine"
  4339. #: PerObjectSettingsTool/plugin.json
  4340. msgctxt "description"
  4341. msgid "Provides the Per Model Settings."
  4342. msgstr "Fornisce le impostazioni per modello."
  4343. #: PerObjectSettingsTool/plugin.json
  4344. msgctxt "name"
  4345. msgid "Per Model Settings Tool"
  4346. msgstr "Utilità impostazioni per modello"
  4347. #: 3MFReader/plugin.json
  4348. msgctxt "description"
  4349. msgid "Provides support for reading 3MF files."
  4350. msgstr "Fornisce il supporto per la lettura di file 3MF."
  4351. #: 3MFReader/plugin.json
  4352. msgctxt "name"
  4353. msgid "3MF Reader"
  4354. msgstr "Lettore 3MF"
  4355. #: SolidView/plugin.json
  4356. msgctxt "description"
  4357. msgid "Provides a normal solid mesh view."
  4358. msgstr "Fornisce una normale visualizzazione a griglia compatta."
  4359. #: SolidView/plugin.json
  4360. msgctxt "name"
  4361. msgid "Solid View"
  4362. msgstr "Visualizzazione compatta"
  4363. #: GCodeReader/plugin.json
  4364. msgctxt "description"
  4365. msgid "Allows loading and displaying G-code files."
  4366. msgstr "Consente il caricamento e la visualizzazione dei file codice G."
  4367. #: GCodeReader/plugin.json
  4368. msgctxt "name"
  4369. msgid "G-code Reader"
  4370. msgstr "Lettore codice G"
  4371. #: CuraDrive/plugin.json
  4372. msgctxt "description"
  4373. msgid "Backup and restore your configuration."
  4374. msgstr "Effettua il backup o ripristina la configurazione."
  4375. #: CuraDrive/plugin.json
  4376. msgctxt "name"
  4377. msgid "Cura Backups"
  4378. msgstr "Backup Cura"
  4379. #: CuraProfileWriter/plugin.json
  4380. msgctxt "description"
  4381. msgid "Provides support for exporting Cura profiles."
  4382. msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  4383. #: CuraProfileWriter/plugin.json
  4384. msgctxt "name"
  4385. msgid "Cura Profile Writer"
  4386. msgstr "Writer profilo Cura"
  4387. #: 3MFWriter/plugin.json
  4388. msgctxt "description"
  4389. msgid "Provides support for writing 3MF files."
  4390. msgstr "Fornisce il supporto per la scrittura di file 3MF."
  4391. #: 3MFWriter/plugin.json
  4392. msgctxt "name"
  4393. msgid "3MF Writer"
  4394. msgstr "Writer 3MF"
  4395. #: PreviewStage/plugin.json
  4396. msgctxt "description"
  4397. msgid "Provides a preview stage in Cura."
  4398. msgstr "Fornisce una fase di anteprima in Cura."
  4399. #: PreviewStage/plugin.json
  4400. msgctxt "name"
  4401. msgid "Preview Stage"
  4402. msgstr "Fase di anteprima"
  4403. #: UltimakerMachineActions/plugin.json
  4404. msgctxt "description"
  4405. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4406. msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  4407. #: UltimakerMachineActions/plugin.json
  4408. msgctxt "name"
  4409. msgid "Ultimaker machine actions"
  4410. msgstr "Azioni della macchina Ultimaker"
  4411. #: CuraProfileReader/plugin.json
  4412. msgctxt "description"
  4413. msgid "Provides support for importing Cura profiles."
  4414. msgstr "Fornisce supporto per l'importazione dei profili Cura."
  4415. #: CuraProfileReader/plugin.json
  4416. msgctxt "name"
  4417. msgid "Cura Profile Reader"
  4418. msgstr "Lettore profilo Cura"
  4419. #~ msgctxt "@item:inmenu"
  4420. #~ msgid "Flatten active settings"
  4421. #~ msgstr "Impostazioni attive profilo appiattito"
  4422. #~ msgctxt "@info:status"
  4423. #~ msgid "Profile has been flattened & activated."
  4424. #~ msgstr "Il profilo è stato appiattito e attivato."
  4425. #~ msgctxt "X3g Writer Plugin Description"
  4426. #~ msgid "Writes X3g to files"
  4427. #~ msgstr "Scrive X3g sui file"
  4428. #~ msgctxt "X3g Writer File Description"
  4429. #~ msgid "X3g File"
  4430. #~ msgstr "File X3g"
  4431. #~ msgctxt "X3G Writer File Description"
  4432. #~ msgid "X3G File"
  4433. #~ msgstr "File X3G"
  4434. #~ msgctxt "@item:inlistbox"
  4435. #~ msgid "Open Compressed Triangle Mesh"
  4436. #~ msgstr ""
  4437. #~ msgctxt "@item:inmenu"
  4438. #~ msgid "Profile Assistant"
  4439. #~ msgstr "Assistente profilo"
  4440. #~ msgctxt "@item:inlistbox"
  4441. #~ msgid "Profile Assistant"
  4442. #~ msgstr "Assistente profilo"
  4443. #~ msgctxt "@action:button"
  4444. #~ msgid "Retry"
  4445. #~ msgstr "Riprova"
  4446. #~ msgctxt "@label:table_header"
  4447. #~ msgid "Print Core"
  4448. #~ msgstr "Print Core"
  4449. #~ msgctxt "@label"
  4450. #~ msgid "Don't support overlap with other models"
  4451. #~ msgstr "Non supporta sovrapposizione con altri modelli"
  4452. #~ msgctxt "@label"
  4453. #~ msgid "Modify settings for overlap with other models"
  4454. #~ msgstr "Modifica impostazioni per sovrapposizione con altri modelli"
  4455. #~ msgctxt "@label"
  4456. #~ msgid "Modify settings for infill of other models"
  4457. #~ msgstr "Modifica impostazioni per riempimento di altri modelli"
  4458. #~ msgctxt "@action:ComboBox option"
  4459. #~ msgid "Update existing"
  4460. #~ msgstr "Aggiorna esistente"
  4461. #~ msgctxt "@label"
  4462. #~ msgid "Not supported"
  4463. #~ msgstr "Non supportato"
  4464. #~ msgctxt "@action:button"
  4465. #~ msgid "Previous"
  4466. #~ msgstr "Precedente"
  4467. #~ msgctxt "@label"
  4468. #~ msgid "Tip"
  4469. #~ msgstr "Suggerimento"
  4470. #~ msgctxt "@label"
  4471. #~ msgid "Print experiment"
  4472. #~ msgstr "Prova di stampa"
  4473. #~ msgctxt "@label"
  4474. #~ msgid "Checklist"
  4475. #~ msgstr "Lista di controllo"
  4476. #~ msgctxt "@label"
  4477. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  4478. #~ msgstr "Seleziona qualsiasi aggiornamento realizzato per questa Ultimaker 2."
  4479. #~ msgctxt "@label"
  4480. #~ msgid "Olsson Block"
  4481. #~ msgstr "Blocco Olsson"
  4482. #~ msgctxt "@window:text"
  4483. #~ msgid "Camera rendering: "
  4484. #~ msgstr "Rendering fotocamera: "
  4485. #~ msgctxt "@info:tooltip"
  4486. #~ msgid "Use multi build plate functionality"
  4487. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo"
  4488. #~ msgctxt "@option:check"
  4489. #~ msgid "Use multi build plate functionality (restart required)"
  4490. #~ msgstr "Utilizzare la funzionalità piano di stampa multiplo (necessario riavvio)"
  4491. #~ msgctxt "@label"
  4492. #~ msgid "Default profiles"
  4493. #~ msgstr "Profili predefiniti"
  4494. #~ msgctxt "@label:textbox"
  4495. #~ msgid "search settings"
  4496. #~ msgstr "impostazioni ricerca"
  4497. #~ msgctxt "@label"
  4498. #~ msgid "Layer Height"
  4499. #~ msgstr "Altezza dello strato"
  4500. #~ msgctxt "@tooltip"
  4501. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  4502. #~ 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."
  4503. #~ msgctxt "@tooltip"
  4504. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  4505. #~ msgstr "Un profilo personalizzato è attualmente attivo. Per attivare il cursore qualità, selezionare un profilo di qualità predefinito nella scheda Personalizza"
  4506. #~ msgctxt "@title:menu"
  4507. #~ msgid "&Build plate"
  4508. #~ msgstr "&Piano di stampa"
  4509. #~ msgctxt "@title:settings"
  4510. #~ msgid "&Profile"
  4511. #~ msgstr "&Profilo"
  4512. #~ msgctxt "@action:label"
  4513. #~ msgid "Build plate"
  4514. #~ msgstr "Piano di stampa"
  4515. #~ msgctxt "description"
  4516. #~ msgid "Dump the contents of all settings to a HTML file."
  4517. #~ msgstr "Scarica contenuto di tutte le impostazioni in un file HTML."
  4518. #~ msgctxt "name"
  4519. #~ msgid "God Mode"
  4520. #~ msgstr "Modalità God"
  4521. #~ msgctxt "description"
  4522. #~ msgid "Create a flattened quality changes profile."
  4523. #~ msgstr "Crea un profilo appiattito di modifiche di qualità."
  4524. #~ msgctxt "name"
  4525. #~ msgid "Profile Flattener"
  4526. #~ msgstr "Appiattitore di profilo"
  4527. #~ msgctxt "description"
  4528. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4529. #~ msgstr "Consente ai produttori di materiali di creare nuovi profili materiale e di qualità utilizzando una UI drop-in."
  4530. #~ msgctxt "name"
  4531. #~ msgid "Print Profile Assistant"
  4532. #~ msgstr "Assistente profilo di stampa"
  4533. #~ msgctxt "@info:status"
  4534. #~ msgid "Connected over the network."
  4535. #~ msgstr "Collegato alla rete."
  4536. #~ msgctxt "@info:status"
  4537. #~ msgid "Connected over the network. Please approve the access request on the printer."
  4538. #~ msgstr "Collegato alla rete. Si prega di approvare la richiesta di accesso sulla stampante."
  4539. #~ msgctxt "@info:status"
  4540. #~ msgid "Connected over the network. No access to control the printer."
  4541. #~ msgstr "Collegato alla rete. Nessun accesso per controllare la stampante."
  4542. #~ msgctxt "@info:status"
  4543. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  4544. #~ msgstr "Richiesto accesso alla stampante. Approvare la richiesta sulla stampante"
  4545. #~ msgctxt "@info:title"
  4546. #~ msgid "Authentication status"
  4547. #~ msgstr "Stato di autenticazione"
  4548. #~ msgctxt "@info:title"
  4549. #~ msgid "Authentication Status"
  4550. #~ msgstr "Stato di autenticazione"
  4551. #~ msgctxt "@info:tooltip"
  4552. #~ msgid "Re-send the access request"
  4553. #~ msgstr "Invia nuovamente la richiesta di accesso"
  4554. #~ msgctxt "@info:status"
  4555. #~ msgid "Access to the printer accepted"
  4556. #~ msgstr "Accesso alla stampante accettato"
  4557. #~ msgctxt "@info:status"
  4558. #~ msgid "No access to print with this printer. Unable to send print job."
  4559. #~ msgstr "Nessun accesso per stampare con questa stampante. Impossibile inviare il processo di stampa."
  4560. #~ msgctxt "@action:button"
  4561. #~ msgid "Request Access"
  4562. #~ msgstr "Richiesta di accesso"
  4563. #~ msgctxt "@info:tooltip"
  4564. #~ msgid "Send access request to the printer"
  4565. #~ msgstr "Invia la richiesta di accesso alla stampante"
  4566. #~ msgctxt "@label"
  4567. #~ msgid "Unable to start a new print job."
  4568. #~ msgstr "Impossibile avviare un nuovo processo di stampa."
  4569. #~ msgctxt "@label"
  4570. #~ 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."
  4571. #~ msgstr "È presente un problema di configurazione della stampante che rende impossibile l’avvio della stampa. Risolvere il problema prima di continuare."
  4572. #~ msgctxt "@window:title"
  4573. #~ msgid "Mismatched configuration"
  4574. #~ msgstr "Mancata corrispondenza della configurazione"
  4575. #~ msgctxt "@label"
  4576. #~ msgid "Are you sure you wish to print with the selected configuration?"
  4577. #~ msgstr "Sei sicuro di voler stampare con la configurazione selezionata?"
  4578. #~ msgctxt "@label"
  4579. #~ 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."
  4580. #~ 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."
  4581. #~ msgctxt "@info:status"
  4582. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  4583. #~ msgstr "Invio nuovi processi (temporaneamente) bloccato, invio in corso precedente processo di stampa."
  4584. #~ msgctxt "@info:status"
  4585. #~ msgid "Sending data to printer"
  4586. #~ msgstr "Invio dati alla stampante in corso"
  4587. #~ msgctxt "@info:title"
  4588. #~ msgid "Sending Data"
  4589. #~ msgstr "Invio dati"
  4590. #~ msgctxt "@info:status"
  4591. #~ msgid "No Printcore loaded in slot {slot_number}"
  4592. #~ msgstr "Nessun PrintCore caricato nello slot {slot_number}"
  4593. #~ msgctxt "@info:status"
  4594. #~ msgid "No material loaded in slot {slot_number}"
  4595. #~ msgstr "Nessun materiale caricato nello slot {slot_number}"
  4596. #~ msgctxt "@label"
  4597. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  4598. #~ msgstr "PrintCore diverso (Cura: {cura_printcore_name}, Stampante: {remote_printcore_name}) selezionata per estrusore {extruder_id}"
  4599. #~ msgctxt "@label"
  4600. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4601. #~ msgstr "Materiale diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  4602. #~ msgctxt "@window:title"
  4603. #~ msgid "Sync with your printer"
  4604. #~ msgstr "Sincronizzazione con la stampante"
  4605. #~ msgctxt "@label"
  4606. #~ msgid "Would you like to use your current printer configuration in Cura?"
  4607. #~ msgstr "Desideri utilizzare la configurazione corrente della tua stampante in Cura?"
  4608. #~ msgctxt "@label"
  4609. #~ 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."
  4610. #~ 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."
  4611. #~ msgctxt "@action:button"
  4612. #~ msgid "View in Monitor"
  4613. #~ msgstr "Visualizzazione in Controlla"
  4614. #~ msgctxt "@info:status"
  4615. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  4616. #~ msgstr "La stampante '{printer_name}' ha finito di stampare '{job_name}'."
  4617. #~ msgctxt "@info:status"
  4618. #~ msgid "The print job '{job_name}' was finished."
  4619. #~ msgstr "Il processo di stampa '{job_name}' è terminato."
  4620. #~ msgctxt "@info:status"
  4621. #~ msgid "Print finished"
  4622. #~ msgstr "Stampa finita"
  4623. #~ msgctxt "@label:material"
  4624. #~ msgid "Empty"
  4625. #~ msgstr "Vuoto"
  4626. #~ msgctxt "@label:material"
  4627. #~ msgid "Unknown"
  4628. #~ msgstr "Sconosciuto"
  4629. #~ msgctxt "@info:title"
  4630. #~ msgid "Cloud error"
  4631. #~ msgstr "Errore cloud"
  4632. #~ msgctxt "@info:status"
  4633. #~ msgid "Could not export print job."
  4634. #~ msgstr "Impossibile esportare il processo di stampa."
  4635. #~ msgctxt "@info:description"
  4636. #~ msgid "There was an error connecting to the cloud."
  4637. #~ msgstr "Si è verificato un errore di collegamento al cloud."
  4638. #~ msgctxt "@info:status"
  4639. #~ msgid "Uploading via Ultimaker Cloud"
  4640. #~ msgstr "Caricamento tramite Ultimaker Cloud"
  4641. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  4642. #~ msgid "Connect to Ultimaker Cloud"
  4643. #~ msgstr "Collegato a Ultimaker Cloud"
  4644. #~ msgctxt "@action"
  4645. #~ msgid "Don't ask me again for this printer."
  4646. #~ msgstr "Non chiedere nuovamente per questa stampante."
  4647. #~ msgctxt "@info:status"
  4648. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  4649. #~ msgstr "Ora è possibile inviare e controllare i processi di stampa ovunque con l’account Ultimaker."
  4650. #~ msgctxt "@info:status"
  4651. #~ msgid "Connected!"
  4652. #~ msgstr "Collegato!"
  4653. #~ msgctxt "@action"
  4654. #~ msgid "Review your connection"
  4655. #~ msgstr "Controlla collegamento"
  4656. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  4657. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  4658. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarla."
  4659. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4660. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  4661. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  4662. #~ msgctxt "@window:title"
  4663. #~ msgid "Existing Connection"
  4664. #~ msgstr "Collegamento esistente"
  4665. #~ msgctxt "@message:text"
  4666. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  4667. #~ msgstr "Stampante/gruppo già aggiunto a Cura. Selezionare un’altra stampante o un altro gruppo."
  4668. #~ msgctxt "@label"
  4669. #~ msgid "Enter the IP address or hostname of your printer on the network."
  4670. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  4671. #~ msgctxt "@info:tooltip"
  4672. #~ msgid "Connect to a printer"
  4673. #~ msgstr "Collega a una stampante"
  4674. #~ msgctxt "@title"
  4675. #~ msgid "Cura Settings Guide"
  4676. #~ msgstr "Guida alle impostazioni Cura"
  4677. #~ msgctxt "@info:tooltip"
  4678. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  4679. #~ msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  4680. #~ msgid "Orthogonal"
  4681. #~ msgstr "Ortogonale"
  4682. #~ msgctxt "description"
  4683. #~ msgid "Manages network connections to Ultimaker 3 printers."
  4684. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3."
  4685. #~ msgctxt "name"
  4686. #~ msgid "UM3 Network Connection"
  4687. #~ msgstr "Connessione di rete UM3"
  4688. #~ msgctxt "description"
  4689. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  4690. #~ msgstr "Fornisce informazioni e spiegazioni aggiuntive sulle impostazioni in Cura, con immagini e animazioni."
  4691. #~ msgctxt "name"
  4692. #~ msgid "Settings Guide"
  4693. #~ msgstr "Guida alle impostazioni"
  4694. #~ msgctxt "@item:inmenu"
  4695. #~ msgid "Cura Settings Guide"
  4696. #~ msgstr "Guida alle impostazioni Cura"
  4697. #~ msgctxt "@info:generic"
  4698. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  4699. #~ msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori: [%s]"
  4700. #~ msgctxt "@title:groupbox"
  4701. #~ msgid "User description"
  4702. #~ msgstr "Descrizione utente"
  4703. #~ msgctxt "@info"
  4704. #~ msgid "These options are not available because you are monitoring a cloud printer."
  4705. #~ msgstr "Queste opzioni non sono disponibili perché si sta controllando una stampante cloud."
  4706. #~ msgctxt "@label link to connect manager"
  4707. #~ msgid "Go to Cura Connect"
  4708. #~ msgstr "Vai a Cura Connect"
  4709. #~ msgctxt "@info"
  4710. #~ msgid "All jobs are printed."
  4711. #~ msgstr "Tutti i processi sono stampati."
  4712. #~ msgctxt "@label link to connect manager"
  4713. #~ msgid "View print history"
  4714. #~ msgstr "Visualizza cronologia di stampa"
  4715. #~ msgctxt "@label"
  4716. #~ msgid ""
  4717. #~ "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"
  4718. #~ "\n"
  4719. #~ "Select your printer from the list below:"
  4720. #~ msgstr ""
  4721. #~ "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"
  4722. #~ "\n"
  4723. #~ "Selezionare la stampante dall’elenco seguente:"
  4724. #~ msgctxt "@info"
  4725. #~ msgid ""
  4726. #~ "Please make sure your printer has a connection:\n"
  4727. #~ "- Check if the printer is turned on.\n"
  4728. #~ "- Check if the printer is connected to the network."
  4729. #~ msgstr ""
  4730. #~ "Accertarsi che la stampante sia collegata:\n"
  4731. #~ "- Controllare se la stampante è accesa.\n"
  4732. #~ "- Controllare se la stampante è collegata alla rete."
  4733. #~ msgctxt "@option:check"
  4734. #~ msgid "See only current build plate"
  4735. #~ msgstr "Vedi solo il piano di stampa corrente"
  4736. #~ msgctxt "@action:button"
  4737. #~ msgid "Arrange to all build plates"
  4738. #~ msgstr "Sistema su tutti i piani di stampa"
  4739. #~ msgctxt "@action:button"
  4740. #~ msgid "Arrange current build plate"
  4741. #~ msgstr "Sistema il piano di stampa corrente"
  4742. #~ msgctxt "description"
  4743. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  4744. #~ 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)."
  4745. #~ msgctxt "name"
  4746. #~ msgid "X3GWriter"
  4747. #~ msgstr "X3GWriter"
  4748. #~ msgctxt "description"
  4749. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  4750. #~ msgstr "Legge i file SVG come toolpath (percorsi utensile), per eseguire il debug dei movimenti della stampante."
  4751. #~ msgctxt "name"
  4752. #~ msgid "SVG Toolpath Reader"
  4753. #~ msgstr "Lettore di toolpath (percorso utensile) SVG"
  4754. #~ msgctxt "@item:inmenu"
  4755. #~ msgid "Changelog"
  4756. #~ msgstr "Registro modifiche"
  4757. #~ msgctxt "@item:inmenu"
  4758. #~ msgid "Show Changelog"
  4759. #~ msgstr "Visualizza registro modifiche"
  4760. #~ msgctxt "@info:status"
  4761. #~ msgid "Sending data to remote cluster"
  4762. #~ msgstr "Invio dati al cluster remoto"
  4763. #~ msgctxt "@info:status"
  4764. #~ msgid "Connect to Ultimaker Cloud"
  4765. #~ msgstr "Collegato a Ultimaker Cloud"
  4766. #~ msgctxt "@info"
  4767. #~ msgid "Cura collects anonymized usage statistics."
  4768. #~ msgstr "Cura raccoglie statistiche di utilizzo in forma anonima."
  4769. #~ msgctxt "@info:title"
  4770. #~ msgid "Collecting Data"
  4771. #~ msgstr "Acquisizione dati"
  4772. #~ msgctxt "@action:button"
  4773. #~ msgid "More info"
  4774. #~ msgstr "Per saperne di più"
  4775. #~ msgctxt "@action:tooltip"
  4776. #~ msgid "See more information on what data Cura sends."
  4777. #~ msgstr "Vedere ulteriori informazioni sui dati inviati da Cura."
  4778. #~ msgctxt "@action:button"
  4779. #~ msgid "Allow"
  4780. #~ msgstr "Consenti"
  4781. #~ msgctxt "@action:tooltip"
  4782. #~ 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."
  4783. #~ 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."
  4784. #~ msgctxt "@item:inmenu"
  4785. #~ msgid "Evaluation"
  4786. #~ msgstr "Valutazione"
  4787. #~ msgctxt "@info:title"
  4788. #~ msgid "Network enabled printers"
  4789. #~ msgstr "Stampanti abilitate per la rete"
  4790. #~ msgctxt "@info:title"
  4791. #~ msgid "Local printers"
  4792. #~ msgstr "Stampanti locali"
  4793. #~ msgctxt "@info:backup_failed"
  4794. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  4795. #~ msgstr "Tentativo di ripristinare un backup di Cura non corrispondente alla versione corrente."
  4796. #~ msgctxt "@title"
  4797. #~ msgid "Machine Settings"
  4798. #~ msgstr "Impostazioni macchina"
  4799. #~ msgctxt "@label"
  4800. #~ msgid "Printer Settings"
  4801. #~ msgstr "Impostazioni della stampante"
  4802. #~ msgctxt "@option:check"
  4803. #~ msgid "Origin at center"
  4804. #~ msgstr "Origine al centro"
  4805. #~ msgctxt "@option:check"
  4806. #~ msgid "Heated bed"
  4807. #~ msgstr "Piano riscaldato"
  4808. #~ msgctxt "@label"
  4809. #~ msgid "Printhead Settings"
  4810. #~ msgstr "Impostazioni della testina di stampa"
  4811. #~ msgctxt "@tooltip"
  4812. #~ 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\"."
  4813. #~ 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\"."
  4814. #~ msgctxt "@tooltip"
  4815. #~ 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\"."
  4816. #~ 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\"."
  4817. #~ msgctxt "@tooltip"
  4818. #~ 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\"."
  4819. #~ 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\"."
  4820. #~ msgctxt "@tooltip"
  4821. #~ 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\"."
  4822. #~ 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\"."
  4823. #~ msgctxt "@label"
  4824. #~ msgid "Gantry height"
  4825. #~ msgstr "Altezza gantry"
  4826. #~ msgctxt "@tooltip"
  4827. #~ 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\"."
  4828. #~ 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\"."
  4829. #~ msgctxt "@label"
  4830. #~ msgid "Start G-code"
  4831. #~ msgstr "Codice G avvio"
  4832. #~ msgctxt "@tooltip"
  4833. #~ msgid "G-code commands to be executed at the very start."
  4834. #~ msgstr "Comandi codice G da eseguire all’avvio."
  4835. #~ msgctxt "@label"
  4836. #~ msgid "End G-code"
  4837. #~ msgstr "Codice G fine"
  4838. #~ msgctxt "@tooltip"
  4839. #~ msgid "G-code commands to be executed at the very end."
  4840. #~ msgstr "Comandi codice G da eseguire alla fine."
  4841. #~ msgctxt "@label"
  4842. #~ msgid "Nozzle Settings"
  4843. #~ msgstr "Impostazioni ugello"
  4844. #~ msgctxt "@tooltip"
  4845. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  4846. #~ msgstr "Diametro nominale del filamento supportato dalla stampante. Il diametro esatto verrà sovrapposto dal materiale e/o dal profilo."
  4847. #~ msgctxt "@label"
  4848. #~ msgid "Extruder Start G-code"
  4849. #~ msgstr "Codice G avvio estrusore"
  4850. #~ msgctxt "@label"
  4851. #~ msgid "Extruder End G-code"
  4852. #~ msgstr "Codice G fine estrusore"
  4853. #~ msgctxt "@label"
  4854. #~ msgid "Changelog"
  4855. #~ msgstr "Registro modifiche"
  4856. #~ msgctxt "@title:window"
  4857. #~ msgid "User Agreement"
  4858. #~ msgstr "Contratto di licenza"
  4859. #~ msgctxt "@alabel"
  4860. #~ msgid "Enter the IP address or hostname of your printer on the network."
  4861. #~ msgstr "Inserire l’indirizzo IP o l’hostname della stampante sulla rete."
  4862. #~ msgctxt "@info"
  4863. #~ msgid "Please select a network connected printer to monitor."
  4864. #~ msgstr "Selezionare una stampante collegata alla rete per controllare."
  4865. #~ msgctxt "@info"
  4866. #~ msgid "Please connect your Ultimaker printer to your local network."
  4867. #~ msgstr "Collegare la stampante Ultimaker alla rete locale."
  4868. #~ msgctxt "@text:window"
  4869. #~ 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."
  4870. #~ 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."
  4871. #~ msgctxt "@text:window"
  4872. #~ msgid "I don't want to send this data"
  4873. #~ msgstr "Non desidero inviare questi dati"
  4874. #~ msgctxt "@text:window"
  4875. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  4876. #~ msgstr "Consenti l’invio di questi dati ad Ultimaker e aiutaci ad ottimizzare Cura"
  4877. #~ msgctxt "@label"
  4878. #~ msgid "No print selected"
  4879. #~ msgstr "Nessuna stampante selezionata"
  4880. #~ msgctxt "@info:tooltip"
  4881. #~ 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."
  4882. #~ 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."
  4883. #~ msgctxt "@title"
  4884. #~ msgid "Select Printer Upgrades"
  4885. #~ msgstr "Seleziona gli aggiornamenti della stampante"
  4886. #~ msgctxt "@label"
  4887. #~ 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."
  4888. #~ 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."
  4889. #~ msgctxt "@tooltip"
  4890. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  4891. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  4892. #~ msgctxt "@label shown when we load a Gcode file"
  4893. #~ msgid "Print setup disabled. G code file can not be modified."
  4894. #~ msgstr "Impostazione di stampa disabilitata. Impossibile modificare il file codice G."
  4895. #~ msgctxt "@label"
  4896. #~ msgid "See the material compatibility chart"
  4897. #~ msgstr "Vedere il grafico di compatibilità dei materiali"
  4898. #~ msgctxt "@label"
  4899. #~ msgid "View types"
  4900. #~ msgstr "Visualizza tipi"
  4901. #~ msgctxt "@label"
  4902. #~ msgid "Hi "
  4903. #~ msgstr "Ciao "
  4904. #~ msgctxt "@text"
  4905. #~ msgid ""
  4906. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  4907. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  4908. #~ "- Get exclusive access to material profiles from leading brands"
  4909. #~ msgstr ""
  4910. #~ "- Invia i processi di stampa alle stampanti Ultimaker esterne alla rete locale\n"
  4911. #~ "- Invia le impostazioni Ultimaker Cura nel cloud per usarle ovunque\n"
  4912. #~ "- Ottieni l’accesso esclusivo ai profili materiale da marchi leader"
  4913. #~ msgctxt "@label:PrintjobStatus"
  4914. #~ msgid "Unable to Slice"
  4915. #~ msgstr "Sezionamento impossibile"
  4916. #~ msgctxt "@label"
  4917. #~ msgid "Time specification"
  4918. #~ msgstr "Indicazioni di tempo"
  4919. #~ msgctxt "@label"
  4920. #~ msgid "Material specification"
  4921. #~ msgstr "Specifiche materiale"
  4922. #~ msgctxt "@title:tab"
  4923. #~ msgid "Add a printer to Cura"
  4924. #~ msgstr "Aggiungi una stampante a Cura"
  4925. #~ msgctxt "@title:tab"
  4926. #~ msgid ""
  4927. #~ "Select the printer you want to use from the list below.\n"
  4928. #~ "\n"
  4929. #~ "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."
  4930. #~ msgstr ""
  4931. #~ "Seleziona la stampante da usare dell’elenco seguente.\n"
  4932. #~ "\n"
  4933. #~ "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."
  4934. #~ msgctxt "@label"
  4935. #~ msgid "Manufacturer"
  4936. #~ msgstr "Produttore"
  4937. #~ msgctxt "@label"
  4938. #~ msgid "Printer Name"
  4939. #~ msgstr "Nome stampante"
  4940. #~ msgctxt "@action:button"
  4941. #~ msgid "Add Printer"
  4942. #~ msgstr "Aggiungi stampante"
  4943. #~ msgid "Modify G-Code"
  4944. #~ msgstr "Modifica G-code"
  4945. #~ msgctxt "@info:status"
  4946. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  4947. #~ msgstr "Nulla da sezionare in quanto nessuno dei modelli corrisponde al volume di stampa. Ridimensionare o ruotare i modelli secondo necessità."
  4948. #~ msgctxt "@info:status"
  4949. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  4950. #~ msgstr "Il materiale selezionato è incompatibile con la macchina o la configurazione selezionata."
  4951. #~ msgctxt "@info:title"
  4952. #~ msgid "Incompatible Material"
  4953. #~ msgstr "Materiale incompatibile"
  4954. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4955. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  4956. #~ msgstr "Impossibile importare il profilo da <filename>{0}</filename>: <message>{1}</message>"
  4957. #~ msgctxt "@title"
  4958. #~ msgid "Toolbox"
  4959. #~ msgstr "Casella degli strumenti"
  4960. #~ msgctxt "@label"
  4961. #~ msgid "Not available"
  4962. #~ msgstr "Non disponibile"
  4963. #~ msgctxt "@label"
  4964. #~ msgid "Unreachable"
  4965. #~ msgstr "Non raggiungibile"
  4966. #~ msgctxt "@label"
  4967. #~ msgid "Available"
  4968. #~ msgstr "Disponibile"
  4969. #~ msgctxt "@label:status"
  4970. #~ msgid "Preparing"
  4971. #~ msgstr "Preparazione in corso"
  4972. #~ msgctxt "@label:status"
  4973. #~ msgid "Pausing"
  4974. #~ msgstr "Messa in pausa"
  4975. #~ msgctxt "@label:status"
  4976. #~ msgid "Resuming"
  4977. #~ msgstr "Ripresa"
  4978. #~ msgctxt "@label"
  4979. #~ msgid "Waiting for: Unavailable printer"
  4980. #~ msgstr "In attesa: stampante non disponibile"
  4981. #~ msgctxt "@label"
  4982. #~ msgid "Waiting for: First available"
  4983. #~ msgstr "In attesa della prima disponibile"
  4984. #~ msgctxt "@label"
  4985. #~ msgid "Waiting for: "
  4986. #~ msgstr "In attesa: "
  4987. #~ msgctxt "@label"
  4988. #~ msgid "Configuration change"
  4989. #~ msgstr "Modifica configurazione"
  4990. #~ msgctxt "@label"
  4991. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  4992. #~ msgstr "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  4993. #~ msgctxt "@label"
  4994. #~ msgid "Override"
  4995. #~ msgstr "Override"
  4996. #~ msgctxt "@label"
  4997. #~ 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?"
  4998. #~ 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?"
  4999. #~ msgctxt "@window:title"
  5000. #~ msgid "Override configuration configuration and start print"
  5001. #~ msgstr "Annullare la configurazione e avviare la stampa"
  5002. #~ msgctxt "@label link to connect manager"
  5003. #~ msgid "Manage queue"
  5004. #~ msgstr "Gestione coda di stampa"
  5005. #~ msgctxt "@label"
  5006. #~ msgid "Printing"
  5007. #~ msgstr "Stampa in corso"
  5008. #~ msgctxt "@label link to connect manager"
  5009. #~ msgid "Manage printers"
  5010. #~ msgstr "Gestione stampanti"
  5011. #~ msgctxt "@action:button"
  5012. #~ msgid "Activate Configuration"
  5013. #~ msgstr "Attiva la configurazione"
  5014. #~ msgctxt "@info:tooltip"
  5015. #~ msgid "Load the configuration of the printer into Cura"
  5016. #~ msgstr "Carica la configurazione della stampante in Cura"
  5017. #~ msgctxt "@label"
  5018. #~ msgid "Show Travels"
  5019. #~ msgstr "Mostra spostamenti"
  5020. #~ msgctxt "@label"
  5021. #~ msgid "Show Helpers"
  5022. #~ msgstr "Mostra helper"
  5023. #~ msgctxt "@label"
  5024. #~ msgid "Show Shell"
  5025. #~ msgstr "Mostra guscio"
  5026. #~ msgctxt "@label"
  5027. #~ msgid "Show Infill"
  5028. #~ msgstr "Mostra riempimento"
  5029. #~ msgctxt "@text:window"
  5030. #~ msgid "I don't want to send these data"
  5031. #~ msgstr "Non voglio inviare questi dati"
  5032. #~ msgctxt "@text:window"
  5033. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5034. #~ msgstr "Il consenso all'invio di questi dati ad Ultimaker ci aiuta ad ottimizzare Cura"
  5035. #~ msgctxt "@label"
  5036. #~ msgid "Printer type:"
  5037. #~ msgstr "Tipo di stampante:"
  5038. #~ msgctxt "@label"
  5039. #~ msgid "Connection:"
  5040. #~ msgstr "Collegamento:"
  5041. #~ msgctxt "@label"
  5042. #~ msgid "State:"
  5043. #~ msgstr "Stato:"
  5044. #~ msgctxt "@label:MonitorStatus"
  5045. #~ msgid "Waiting for a printjob"
  5046. #~ msgstr "In attesa di un processo di stampa"
  5047. #~ msgctxt "@label:MonitorStatus"
  5048. #~ msgid "Waiting for someone to clear the build plate"
  5049. #~ msgstr "In attesa di qualcuno che cancelli il piano di stampa"
  5050. #~ msgctxt "@label:MonitorStatus"
  5051. #~ msgid "Aborting print..."
  5052. #~ msgstr "Interruzione stampa in corso..."
  5053. #~ msgctxt "@label"
  5054. #~ msgid "Protected profiles"
  5055. #~ msgstr "Profili protetti"
  5056. #~ msgctxt "@label"
  5057. #~ msgid "Printer Name:"
  5058. #~ msgstr "Nome stampante:"
  5059. #~ msgctxt "@label"
  5060. #~ msgid "Profile:"
  5061. #~ msgstr "Profilo:"
  5062. #~ msgctxt "@label:textbox"
  5063. #~ msgid "Search..."
  5064. #~ msgstr "Ricerca..."
  5065. #~ msgctxt "@action:inmenu"
  5066. #~ msgid "Collapse All"
  5067. #~ msgstr "Comprimi tutto"
  5068. #~ msgctxt "@action:inmenu"
  5069. #~ msgid "Expand All"
  5070. #~ msgstr "Espandi tutto"
  5071. #~ msgctxt "@label:header configurations"
  5072. #~ msgid "Available configurations"
  5073. #~ msgstr "Configurazioni disponibili"
  5074. #~ msgctxt "@label:extruder label"
  5075. #~ msgid "Extruder"
  5076. #~ msgstr "Estrusore"
  5077. #~ msgctxt "@label:extruder label"
  5078. #~ msgid "Yes"
  5079. #~ msgstr "Sì"
  5080. #~ msgctxt "@label:extruder label"
  5081. #~ msgid "No"
  5082. #~ msgstr "No"
  5083. #~ msgctxt "@label:listbox"
  5084. #~ msgid "Print Setup"
  5085. #~ msgstr "Impostazione di stampa"
  5086. #~ msgctxt "@label:listbox"
  5087. #~ msgid ""
  5088. #~ "Print Setup disabled\n"
  5089. #~ "G-code files cannot be modified"
  5090. #~ msgstr ""
  5091. #~ "Impostazione di stampa disabilitata\n"
  5092. #~ "I file codice G non possono essere modificati"
  5093. #~ msgctxt "@label Hours and minutes"
  5094. #~ msgid "00h 00min"
  5095. #~ msgstr "00h 00min"
  5096. #~ msgctxt "@tooltip"
  5097. #~ msgid "Time specification"
  5098. #~ msgstr "Indicazioni di tempo"
  5099. #~ msgctxt "@label"
  5100. #~ msgid "Cost specification"
  5101. #~ msgstr "Indicazione di costo"
  5102. #~ msgctxt "@label"
  5103. #~ msgid "Total:"
  5104. #~ msgstr "Totale:"
  5105. #~ msgctxt "@tooltip"
  5106. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5107. #~ msgstr "<b>Impostazione di stampa consigliata</b><br/><br/>Stampa con le impostazioni consigliate per la stampante, il materiale e la qualità selezionati."
  5108. #~ msgctxt "@tooltip"
  5109. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5110. #~ msgstr "<b>Impostazione di stampa personalizzata</b><br/><br/>Stampa con il controllo grana fine su ogni sezione finale del processo di sezionamento."
  5111. #~ msgctxt "@action:inmenu menubar:help"
  5112. #~ msgid "Show Engine &Log..."
  5113. #~ msgstr "Mostra &log motore..."
  5114. #~ msgctxt "@action:menu"
  5115. #~ msgid "Browse packages..."
  5116. #~ msgstr "Sfoglia i pacchetti..."
  5117. #~ msgctxt "@action:inmenu menubar:view"
  5118. #~ msgid "Expand/Collapse Sidebar"
  5119. #~ msgstr "Espandi/Riduci barra laterale"
  5120. #~ msgctxt "@label:PrintjobStatus"
  5121. #~ msgid "Please load a 3D model"
  5122. #~ msgstr "Caricare un modello 3D"
  5123. #~ msgctxt "@label:PrintjobStatus"
  5124. #~ msgid "Ready to slice"
  5125. #~ msgstr "Pronto per il sezionamento"
  5126. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5127. #~ msgid "Ready to %1"
  5128. #~ msgstr "Pronto a %1"
  5129. #~ msgctxt "@label:PrintjobStatus"
  5130. #~ msgid "Slicing unavailable"
  5131. #~ msgstr "Sezionamento non disponibile"
  5132. #~ msgctxt "@info:tooltip"
  5133. #~ msgid "Slice current printjob"
  5134. #~ msgstr "Seziona processo di stampa corrente"
  5135. #~ msgctxt "@info:tooltip"
  5136. #~ msgid "Cancel slicing process"
  5137. #~ msgstr "Annulla processo di sezionamento"
  5138. #~ msgctxt "@label:Printjob"
  5139. #~ msgid "Prepare"
  5140. #~ msgstr "Prepara"
  5141. #~ msgctxt "@label:Printjob"
  5142. #~ msgid "Cancel"
  5143. #~ msgstr "Annulla"
  5144. #~ msgctxt "@info:tooltip"
  5145. #~ msgid "Select the active output device"
  5146. #~ msgstr "Seleziona l'unità di uscita attiva"
  5147. #~ msgctxt "@title:menu"
  5148. #~ msgid "&View"
  5149. #~ msgstr "&Visualizza"
  5150. #~ msgctxt "@title:menu"
  5151. #~ msgid "&Settings"
  5152. #~ msgstr "&Impostazioni"
  5153. #~ msgctxt "@title:menu menubar:toplevel"
  5154. #~ msgid "&Toolbox"
  5155. #~ msgstr "&Casella degli strumenti"
  5156. #~ msgctxt "@action:button"
  5157. #~ msgid "Open File"
  5158. #~ msgstr "Apri file"
  5159. #~ msgctxt "@tooltip"
  5160. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5161. #~ msgstr "Questo profilo di qualità non è disponibile per il materiale e la configurazione ugello corrente. Modificarli per abilitare questo profilo di qualità"
  5162. #~ msgctxt "@label"
  5163. #~ msgid "Print Speed"
  5164. #~ msgstr "Velocità di stampa"
  5165. #~ msgctxt "@label"
  5166. #~ msgid "Slower"
  5167. #~ msgstr "Più lenta"
  5168. #~ msgctxt "@label"
  5169. #~ msgid "Faster"
  5170. #~ msgstr "Più veloce"
  5171. #~ msgctxt "@label"
  5172. #~ msgid "Enable gradual"
  5173. #~ msgstr "Consenti variazione graduale"
  5174. #~ msgctxt "@label"
  5175. #~ msgid "Generate Support"
  5176. #~ msgstr "Generazione supporto"
  5177. #~ msgctxt "@label"
  5178. #~ msgid "Build Plate Adhesion"
  5179. #~ msgstr "Adesione piano di stampa"
  5180. #~ msgctxt "@label"
  5181. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5182. #~ msgstr "Serve aiuto per migliorare le tue stampe? <br>Leggi <a href='%1'>la Guida alla ricerca e riparazione guasti Ultimaker</a>"
  5183. #~ msgctxt "@title:window"
  5184. #~ msgid "Engine Log"
  5185. #~ msgstr "Log motore"
  5186. #~ msgctxt "@label"
  5187. #~ msgid "Printer type"
  5188. #~ msgstr "Tipo di stampante"
  5189. #~ msgctxt "@label"
  5190. #~ msgid "Use glue with this material combination"
  5191. #~ msgstr "Utilizzare la colla con questa combinazione di materiali"
  5192. #~ msgctxt "@label"
  5193. #~ msgid "Check compatibility"
  5194. #~ msgstr "Controlla compatibilità"
  5195. #~ msgctxt "@tooltip"
  5196. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5197. #~ msgstr "Fai clic per verificare la compatibilità del materiale su Ultimaker.com."
  5198. #~ msgctxt "description"
  5199. #~ msgid "Shows changes since latest checked version."
  5200. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  5201. #~ msgctxt "name"
  5202. #~ msgid "Changelog"
  5203. #~ msgstr "Registro modifiche"
  5204. #~ msgctxt "description"
  5205. #~ msgid "Create a flattend quality changes profile."
  5206. #~ msgstr "Crea un profilo appiattito."
  5207. #~ msgctxt "name"
  5208. #~ msgid "Profile flatener"
  5209. #~ msgstr "Appiattitore di profilo"
  5210. #~ msgctxt "description"
  5211. #~ msgid "Ask the user once if he/she agrees with our license."
  5212. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza."
  5213. #~ msgctxt "name"
  5214. #~ msgid "UserAgreement"
  5215. #~ msgstr "Contratto di licenza"
  5216. #~ msgctxt "@warning:status"
  5217. #~ msgid "Please generate G-code before saving."
  5218. #~ msgstr "Generare il codice G prima di salvare."
  5219. #~ msgctxt "@action"
  5220. #~ msgid "Upgrade Firmware"
  5221. #~ msgstr "Aggiorna firmware"
  5222. #~ msgctxt "@label unknown material"
  5223. #~ msgid "Unknown"
  5224. #~ msgstr "Sconosciuto"
  5225. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5226. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5227. #~ msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  5228. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5229. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5230. #~ msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  5231. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5232. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5233. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> ({1}) non corrisponde alla macchina corrente ({2}), impossibile importarlo."
  5234. #~ msgctxt "@title:window"
  5235. #~ msgid "Confirm uninstall "
  5236. #~ msgstr "Conferma disinstalla "
  5237. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5238. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5239. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  5240. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5241. #~ msgid "%1m / ~ %2g"
  5242. #~ msgstr "%1m / ~ %2g"
  5243. #~ msgctxt "@title"
  5244. #~ msgid "Upgrade Firmware"
  5245. #~ msgstr "Aggiorna firmware"
  5246. #~ msgctxt "@action:button"
  5247. #~ msgid "Print with Doodle3D WiFi-Box"
  5248. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  5249. #~ msgctxt "@properties:tooltip"
  5250. #~ msgid "Print with Doodle3D WiFi-Box"
  5251. #~ msgstr "Stampa con Doodle3D WiFi-Box"
  5252. #~ msgctxt "@info:status"
  5253. #~ msgid "Connecting to Doodle3D Connect"
  5254. #~ msgstr "Collegamento a Doodle3D Connect"
  5255. #~ msgctxt "@info:status"
  5256. #~ msgid "Sending data to Doodle3D Connect"
  5257. #~ msgstr "Invio dati a Doodle3D Connect"
  5258. #~ msgctxt "@info:status"
  5259. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5260. #~ msgstr "Impossibile inviare dati a Doodle3D Connect. C'è un altro processo in corso?"
  5261. #~ msgctxt "@info:status"
  5262. #~ msgid "Storing data on Doodle3D Connect"
  5263. #~ msgstr "Memorizzazione dati su Doodle3D Connect"
  5264. #~ msgctxt "@info:status"
  5265. #~ msgid "File sent to Doodle3D Connect"
  5266. #~ msgstr "File inviato a Doodle3D Connect"
  5267. #~ msgctxt "@action:button"
  5268. #~ msgid "Open Connect..."
  5269. #~ msgstr "Apri Connect..."
  5270. #~ msgctxt "@info:tooltip"
  5271. #~ msgid "Open the Doodle3D Connect web interface"
  5272. #~ msgstr "Apri interfaccia web Doodle3D Connect"
  5273. #~ msgctxt "@item:inlistbox"
  5274. #~ msgid "Blender file"
  5275. #~ msgstr "File Blender"
  5276. #~ msgctxt "@info:status"
  5277. #~ msgid ""
  5278. #~ "Could not export using \"{}\" quality!\n"
  5279. #~ "Felt back to \"{}\"."
  5280. #~ msgstr ""
  5281. #~ "Impossibile esportare utilizzando qualità \"{}\" quality!\n"
  5282. #~ "Tornato a \"{}\"."
  5283. #~ msgctxt "@label"
  5284. #~ msgid "Contact"
  5285. #~ msgstr "Contatto"
  5286. #~ msgctxt "@label"
  5287. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5288. #~ msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti Ultimaker 3."
  5289. #~ msgctxt "@label"
  5290. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5291. #~ msgstr "Questa stampante comanda un gruppo di %1 stampanti Ultimaker 3."
  5292. #~ msgctxt "@label: arg 1 is group name"
  5293. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5294. #~ msgstr "%1 non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  5295. #~ msgctxt "@label link to connect manager"
  5296. #~ msgid "Add/Remove printers"
  5297. #~ msgstr "Aggiungi/Rimuovi stampanti"
  5298. #~ msgctxt "@info:tooltip"
  5299. #~ msgid "Opens the print jobs page with your default web browser."
  5300. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  5301. #~ msgctxt "@action:button"
  5302. #~ msgid "View print jobs"
  5303. #~ msgstr "Visualizza processi di stampa"
  5304. #~ msgctxt "@label:status"
  5305. #~ msgid "Preparing to print"
  5306. #~ msgstr "Preparazione della stampa"
  5307. #~ msgctxt "@label:status"
  5308. #~ msgid "Printing"
  5309. #~ msgstr "Stampa in corso"
  5310. #~ msgctxt "@label:status"
  5311. #~ msgid "Available"
  5312. #~ msgstr "Disponibile"
  5313. #~ msgctxt "@label:status"
  5314. #~ msgid "Lost connection with the printer"
  5315. #~ msgstr "Persa connessione con la stampante"
  5316. #~ msgctxt "@label:status"
  5317. #~ msgid "Unknown"
  5318. #~ msgstr "Sconosciuto"
  5319. #~ msgctxt "@label:status"
  5320. #~ msgid "Disabled"
  5321. #~ msgstr "Disabilitato"
  5322. #~ msgctxt "@label:status"
  5323. #~ msgid "Reserved"
  5324. #~ msgstr "Riservato"
  5325. #~ msgctxt "@label"
  5326. #~ msgid "Preparing to print"
  5327. #~ msgstr "Preparazione della stampa"
  5328. #~ msgctxt "@label:status"
  5329. #~ msgid "Print aborted"
  5330. #~ msgstr "Stampa interrotta"
  5331. #~ msgctxt "@label"
  5332. #~ msgid "Not accepting print jobs"
  5333. #~ msgstr "Mancata accettazione processi di stampa"
  5334. #~ msgctxt "@label"
  5335. #~ msgid "Finishes at: "
  5336. #~ msgstr "Finisce alle: "
  5337. #~ msgctxt "@label"
  5338. #~ msgid "Clear build plate"
  5339. #~ msgstr "Cancellare piano di stampa"
  5340. #~ msgctxt "@label"
  5341. #~ msgid "Waiting for configuration change"
  5342. #~ msgstr "In attesa di modifica configurazione"
  5343. #~ msgctxt "@title"
  5344. #~ msgid "Print jobs"
  5345. #~ msgstr "Processi di stampa"
  5346. #~ msgctxt "@label:title"
  5347. #~ msgid "Printers"
  5348. #~ msgstr "Stampanti"
  5349. #~ msgctxt "@action:button"
  5350. #~ msgid "View printers"
  5351. #~ msgstr "Visualizza stampanti"
  5352. #~ msgctxt "@label:"
  5353. #~ msgid "Pause"
  5354. #~ msgstr "Pausa"
  5355. #~ msgctxt "@label:"
  5356. #~ msgid "Resume"
  5357. #~ msgstr "Riprendi"
  5358. #~ msgctxt "@label:"
  5359. #~ msgid "Abort Print"
  5360. #~ msgstr "Interrompi la stampa"
  5361. #~ msgctxt "@option:openProject"
  5362. #~ msgid "Always ask"
  5363. #~ msgstr "Chiedi sempre"
  5364. #~ msgctxt "@label"
  5365. #~ msgid "Override Profile"
  5366. #~ msgstr "Override profilo"
  5367. #~ msgctxt "@info:tooltip"
  5368. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  5369. #~ msgstr "I modelli appena caricati devono essere sistemati sul piano di stampa? Utilizzato in abbinamento al piano di stampa multiplo (SPERIMENTALE)"
  5370. #~ msgctxt "@option:check"
  5371. #~ msgid "Do not arrange objects on load"
  5372. #~ msgstr "Non posizionare oggetti sul carico"
  5373. #~ msgctxt "@action:inmenu menubar:file"
  5374. #~ msgid "&Save Selection to File"
  5375. #~ msgstr "&Salva selezione su file"
  5376. #~ msgctxt "@title:menu menubar:file"
  5377. #~ msgid "Save &As..."
  5378. #~ msgstr "Salva &come..."
  5379. #~ msgctxt "@title:menu menubar:file"
  5380. #~ msgid "Save &Project..."
  5381. #~ msgstr "Salva &progetto..."
  5382. # Added after the string freeze.
  5383. #~ msgctxt "@label"
  5384. #~ msgid "Use adhesion sheet or glue with this material combination"
  5385. #~ msgstr "Utilizzare un foglio di adesione o colla con questa combinazione di materiali"
  5386. #~ msgctxt "description"
  5387. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5388. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  5389. #~ msgctxt "name"
  5390. #~ msgid "Doodle3D WiFi-Box"
  5391. #~ msgstr "Doodle3D WiFi-Box"
  5392. #~ msgctxt "description"
  5393. #~ msgid "Provides an edit window for direct script editing."
  5394. #~ msgstr "Fornisce una finestra di modifica per la modifica script diretta."
  5395. #~ msgctxt "name"
  5396. #~ msgid "Live scripting tool"
  5397. #~ msgstr "Strumento di script diretto"
  5398. #~ msgctxt "description"
  5399. #~ msgid "Helps to open Blender files directly in Cura."
  5400. #~ msgstr "Aiuta ad aprire i file Blender direttamente in Cura."
  5401. #~ msgctxt "name"
  5402. #~ msgid "Blender Integration (experimental)"
  5403. #~ msgstr "Integrazione Blender (sperimentale)"
  5404. #~ msgctxt "@info:title"
  5405. #~ msgid "Model Checker Warning"
  5406. #~ msgstr "Avvertenza controllo modello"
  5407. #~ msgctxt "@info:status"
  5408. #~ msgid ""
  5409. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  5410. #~ "Tips that may be useful to improve the print quality:\n"
  5411. #~ "1) Use rounded corners.\n"
  5412. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  5413. #~ "3) Use a different material."
  5414. #~ msgstr ""
  5415. #~ "Alcuni modelli potrebbero non essere stampati in modo ottimale a causa delle dimensioni dell’oggetto e del materiale scelto: {model_names}.\n"
  5416. #~ "Suggerimenti utili per migliorare la qualità di stampa:\n"
  5417. #~ "1) Utilizzare angoli arrotondati.\n"
  5418. #~ "2) Spegnere la ventola (solo se non vi sono piccoli dettagli sul modello).\n"
  5419. #~ "3) Utilizzare un materiale diverso."
  5420. #~ msgctxt "@info:status"
  5421. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5422. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  5423. #~ msgctxt "@info:status"
  5424. #~ msgid ""
  5425. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  5426. #~ "\n"
  5427. #~ "Thanks!"
  5428. #~ msgstr ""
  5429. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  5430. #~ "\n"
  5431. #~ "Grazie."
  5432. #~ msgctxt "@info:status"
  5433. #~ msgid ""
  5434. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5435. #~ "\n"
  5436. #~ "Sorry!"
  5437. #~ msgstr ""
  5438. #~ "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"
  5439. #~ "\n"
  5440. #~ " Spiacenti."
  5441. #~ msgctxt "@item:inlistbox"
  5442. #~ msgid "SolidWorks part file"
  5443. #~ msgstr "File part SolidWorks"
  5444. #~ msgctxt "@item:inlistbox"
  5445. #~ msgid "SolidWorks assembly file"
  5446. #~ msgstr "File gruppo SolidWorks"
  5447. #~ msgctxt "@item:inlistbox"
  5448. #~ msgid "SolidWorks drawing file"
  5449. #~ msgstr "File disegno SolidWorks"
  5450. #~ msgctxt "@info:status"
  5451. #~ msgid ""
  5452. #~ "Dear customer,\n"
  5453. #~ "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"
  5454. #~ "\n"
  5455. #~ "With kind regards\n"
  5456. #~ " - Thomas Karl Pietrowski"
  5457. #~ msgstr ""
  5458. #~ "Gentile cliente,\n"
  5459. #~ "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"
  5460. #~ "\n"
  5461. #~ "Cordiali saluti\n"
  5462. #~ " - Thomas Karl Pietrowski"
  5463. #~ msgctxt "@info:status"
  5464. #~ msgid ""
  5465. #~ "Dear customer,\n"
  5466. #~ "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"
  5467. #~ "\n"
  5468. #~ "With kind regards\n"
  5469. #~ " - Thomas Karl Pietrowski"
  5470. #~ msgstr ""
  5471. #~ "Gentile cliente,\n"
  5472. #~ "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"
  5473. #~ "\n"
  5474. #~ "Cordiali saluti\n"
  5475. #~ " - Thomas Karl Pietrowski"
  5476. #~ msgid "Configure"
  5477. #~ msgstr "Configura"
  5478. #~ msgid "Installation guide for SolidWorks macro"
  5479. #~ msgstr "Guida per l’installazione di macro SolidWorks"
  5480. #~ msgctxt "@action:button"
  5481. #~ msgid "Disable"
  5482. #~ msgstr "Disabilita"
  5483. #~ msgctxt "@action:tooltip"
  5484. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  5485. #~ msgstr "Non consente a Cura di inviare statistiche di utilizzo in forma anonima. È possibile riabilitare nelle preferenze."
  5486. #~ msgid "Install"
  5487. #~ msgstr "Installazione"
  5488. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  5489. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR. Non è assegnato ad alcuna directory."
  5490. #~ msgid "Successfully installed Siemens NX Cura plugin."
  5491. #~ msgstr "Installato correttamente plugin Siemens NX Cura."
  5492. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  5493. #~ msgstr "Impossibile copiare i file di plugin Siemens NX. Controllare UGII_USER_DIR."
  5494. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  5495. #~ msgstr "Impossibile installare plugin Siemens NX. Impossibile impostare la variabile di ambiente UGII_USER_DIR per Siemens NX."
  5496. #~ msgctxt "@info:status"
  5497. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  5498. #~ msgstr "Impossibile ottenere ID plugin da <filename>{0}</filename>"
  5499. #~ msgctxt "@info:tile"
  5500. #~ msgid "Warning"
  5501. #~ msgstr "Avvertenza"
  5502. #~ msgctxt "@window:title"
  5503. #~ msgid "Plugin browser"
  5504. #~ msgstr "Browser plugin"
  5505. #~ msgctxt "@label"
  5506. #~ msgid "Ultimaker 3"
  5507. #~ msgstr "Ultimaker 3"
  5508. #~ msgctxt "@label"
  5509. #~ msgid "Ultimaker 3 Extended"
  5510. #~ msgstr "Ultimaker 3 Extended"
  5511. #~ msgctxt "@title:window"
  5512. #~ msgid "SolidWorks: Export wizard"
  5513. #~ msgstr "SolidWorks: procedura guidata per l’esportazione"
  5514. #~ msgctxt "@action:label"
  5515. #~ msgid "Quality:"
  5516. #~ msgstr "Qualità:"
  5517. #~ msgctxt "@option:curaSolidworksStlQuality"
  5518. #~ msgid "Fine (3D-printing)"
  5519. #~ msgstr "Fine (stampa 3D)"
  5520. #~ msgctxt "@option:curaSolidworksStlQuality"
  5521. #~ msgid "Coarse (3D-printing)"
  5522. #~ msgstr "Grossolana (stampa 3D)"
  5523. #~ msgctxt "@option:curaSolidworksStlQuality"
  5524. #~ msgid "Fine (SolidWorks)"
  5525. #~ msgstr "Fine (SolidWorks)"
  5526. #~ msgctxt "@option:curaSolidworksStlQuality"
  5527. #~ msgid "Coarse (SolidWorks)"
  5528. #~ msgstr "Grossolana (SolidWorks)"
  5529. #~ msgctxt "@text:window"
  5530. #~ msgid "Show this dialog again"
  5531. #~ msgstr "Mostra nuovamente questa finestra di dialogo"
  5532. #~ msgctxt "@action:button"
  5533. #~ msgid "Continue"
  5534. #~ msgstr "Continua"
  5535. #~ msgctxt "@action:button"
  5536. #~ msgid "Abort"
  5537. #~ msgstr "Interrompi"
  5538. #~ msgctxt "@title:window"
  5539. #~ msgid "How to install Cura SolidWorks macro"
  5540. #~ msgstr "Come installare la macro Cura SolidWorks"
  5541. #~ msgctxt "@description:label"
  5542. #~ msgid "Steps:"
  5543. #~ msgstr "Fasi:"
  5544. #~ msgctxt "@action:button"
  5545. #~ msgid ""
  5546. #~ "Open the directory\n"
  5547. #~ "with macro and icon"
  5548. #~ msgstr ""
  5549. #~ "Aprire la directory\n"
  5550. #~ "con macro e icona"
  5551. #~ msgctxt "@description:label"
  5552. #~ msgid "Instructions:"
  5553. #~ msgstr "Istruzioni:"
  5554. #~ msgctxt "@action:playpause"
  5555. #~ msgid "Play"
  5556. #~ msgstr "Riproduci"
  5557. #~ msgctxt "@action:playpause"
  5558. #~ msgid "Pause"
  5559. #~ msgstr "Pausa"
  5560. #~ msgctxt "@action:button"
  5561. #~ msgid "Previous Step"
  5562. #~ msgstr "Fase precedente"
  5563. #~ msgctxt "@action:button"
  5564. #~ msgid "Done"
  5565. #~ msgstr "Eseguito"
  5566. #~ msgctxt "@action:button"
  5567. #~ msgid "Next Step"
  5568. #~ msgstr "Fase successiva"
  5569. #~ msgctxt "@title:window"
  5570. #~ msgid "SolidWorks plugin: Configuration"
  5571. #~ msgstr "Plugin SolidWorks: configurazione"
  5572. #~ msgctxt "@title:tab"
  5573. #~ msgid "Conversion settings"
  5574. #~ msgstr "Impostazioni di conversione"
  5575. #~ msgctxt "@label"
  5576. #~ msgid "First choice:"
  5577. #~ msgstr "Prima scelta:"
  5578. #~ msgctxt "@text:menu"
  5579. #~ msgid "Latest installed version (Recommended)"
  5580. #~ msgstr "Ultima versione installata (consigliata)"
  5581. #~ msgctxt "@text:menu"
  5582. #~ msgid "Default version"
  5583. #~ msgstr "Versione predefinita"
  5584. #~ msgctxt "@label"
  5585. #~ msgid "Show wizard before opening SolidWorks files"
  5586. #~ msgstr "Mostra la procedura guidata prima di aprire i file SolidWorks"
  5587. #~ msgctxt "@label"
  5588. #~ msgid "Automatically rotate opened file into normed orientation"
  5589. #~ msgstr "Ruota automaticamente il file aperto nell’orientamento corretto"
  5590. #~ msgctxt "@title:tab"
  5591. #~ msgid "Installation(s)"
  5592. #~ msgstr "Installazione(i)"
  5593. #~ msgctxt "@label"
  5594. #~ msgid "COM service found"
  5595. #~ msgstr "Servizio COM trovato"
  5596. #~ msgctxt "@label"
  5597. #~ msgid "Executable found"
  5598. #~ msgstr "Eseguibile trovato"
  5599. #~ msgctxt "@label"
  5600. #~ msgid "COM starting"
  5601. #~ msgstr "COM in avvio"
  5602. #~ msgctxt "@label"
  5603. #~ msgid "Revision number"
  5604. #~ msgstr "Numero di revisione"
  5605. #~ msgctxt "@label"
  5606. #~ msgid "Functions available"
  5607. #~ msgstr "Funzioni disponibili"
  5608. #~ msgctxt "@label (%1 is object name)"
  5609. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  5610. #~ msgstr "Il nuovo diametro materiale è impostato a %1 mm, che non è compatibile con la macchina corrente. Continuare?"
  5611. #~ msgctxt "@action:menu"
  5612. #~ msgid "Browse plugins..."
  5613. #~ msgstr "Sfoglia plugin..."
  5614. #~ msgctxt "@title:menu menubar:toplevel"
  5615. #~ msgid "P&lugins"
  5616. #~ msgstr "&Plugin"
  5617. #~ msgctxt "@window:title"
  5618. #~ msgid "Install Plugin"
  5619. #~ msgstr "Installa plugin"
  5620. #~ msgctxt "description"
  5621. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5622. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  5623. #~ msgctxt "description"
  5624. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5625. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  5626. #~ msgctxt "description"
  5627. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  5628. #~ msgstr "Offre la possibilità di aprire alcuni file utilizzando SolidWorks. La conversione viene effettuata da questo plugin e ottimizzazioni addizionali."
  5629. #~ msgctxt "name"
  5630. #~ msgid "SolidWorks Integration"
  5631. #~ msgstr "Integrazione SolidWorks"
  5632. #~ msgctxt "description"
  5633. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5634. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  5635. #~ msgctxt "name"
  5636. #~ msgid "Auto Save"
  5637. #~ msgstr "Salvataggio automatico"
  5638. #~ msgctxt "description"
  5639. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  5640. #~ msgstr "Consente di installare un pulsante 'Esporta in Cura' in Siemens NX."
  5641. #~ msgctxt "name"
  5642. #~ msgid "Siemens NX Integration"
  5643. #~ msgstr "Integrazione Siemens NX"
  5644. #~ msgctxt "description"
  5645. #~ msgid "Find, manage and install new plugins."
  5646. #~ msgstr "Trova, gestisce e installa nuovi plugin."
  5647. #~ msgctxt "name"
  5648. #~ msgid "Plugin Browser"
  5649. #~ msgstr "Browser plugin"
  5650. #~ msgctxt "description"
  5651. #~ msgid "Ask the user once if he/she agrees with our license"
  5652. #~ msgstr "Chiedere una volta all'utente se accetta la nostra licenza"
  5653. #~ msgctxt "description"
  5654. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5655. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  5656. #~ msgctxt "@item:inlistbox"
  5657. #~ msgid "GCode File"
  5658. #~ msgstr "File GCode"
  5659. #~ msgctxt "@info:status"
  5660. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  5661. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata o non collegata."
  5662. #~ msgctxt "@info:title"
  5663. #~ msgid "Printer Unavailable"
  5664. #~ msgstr "Stampante non disponibile"
  5665. #~ msgctxt "@info:status"
  5666. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  5667. #~ msgstr "Questa stampante non supporta la stampa tramite USB in quanto utilizza la versione UltiGCode."
  5668. #~ msgctxt "@info:title"
  5669. #~ msgid "USB Printing"
  5670. #~ msgstr "Stampa USB"
  5671. #~ msgctxt "@info:status"
  5672. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  5673. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante non supporta la stampa tramite USB."
  5674. #~ msgctxt "@info"
  5675. #~ msgid "Unable to update firmware because there are no printers connected."
  5676. #~ msgstr "Impossibile aggiornare il firmware perché non ci sono stampanti collegate."
  5677. #~ msgctxt "@info"
  5678. #~ msgid "Could not find firmware required for the printer at %s."
  5679. #~ msgstr "Impossibile trovare il firmware richiesto per la stampante a %s."
  5680. #~ msgctxt "@info:title"
  5681. #~ msgid "Printer Firmware"
  5682. #~ msgstr "Firmware stampante"
  5683. #~ msgctxt "@info:title"
  5684. #~ msgid "Connection status"
  5685. #~ msgstr "Stato di connessione"
  5686. #~ msgctxt "@info:title"
  5687. #~ msgid "Connection Status"
  5688. #~ msgstr "Stato di connessione"
  5689. #~ msgctxt "@info:status"
  5690. #~ msgid "Access request was denied on the printer."
  5691. #~ msgstr "Richiesta di accesso negata sulla stampante."
  5692. #~ msgctxt "@info:status"
  5693. #~ msgid "Access request failed due to a timeout."
  5694. #~ msgstr "Richiesta di accesso non riuscita per superamento tempo."
  5695. #~ msgctxt "@info:status"
  5696. #~ msgid "The connection with the network was lost."
  5697. #~ msgstr "Il collegamento con la rete si è interrotto."
  5698. #~ msgctxt "@info:status"
  5699. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  5700. #~ msgstr "Il collegamento con la stampante si è interrotto. Controllare la stampante per verificare se è collegata."
  5701. #~ msgctxt "@info:status"
  5702. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  5703. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Stato stampante corrente %s."
  5704. #~ msgctxt "@info:title"
  5705. #~ msgid "Printer Status"
  5706. #~ msgstr "Stato stampante"
  5707. #~ msgctxt "@info:status"
  5708. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  5709. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun Printcore caricato nello slot {0}"
  5710. #~ msgctxt "@info:status"
  5711. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  5712. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun materiale caricato nello slot {0}"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Not enough material for spool {0}."
  5715. #~ msgstr "Materiale per la bobina insufficiente {0}."
  5716. #~ msgctxt "@label"
  5717. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5718. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionata per estrusore {2}"
  5719. #~ msgctxt "@label"
  5720. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5721. #~ msgstr "PrintCore {0} non correttamente calibrato. Necessario eseguire calibrazione XY sulla stampante."
  5722. #~ msgctxt "@info:status"
  5723. #~ msgid "Unable to send data to printer. Is another job still active?"
  5724. #~ msgstr "Impossibile inviare i dati alla stampante. Altro processo ancora attivo?"
  5725. #~ msgctxt "@label:MonitorStatus"
  5726. #~ msgid "Print aborted. Please check the printer"
  5727. #~ msgstr "Stampa interrotta. Controllare la stampante"
  5728. #~ msgctxt "@label:MonitorStatus"
  5729. #~ msgid "Pausing print..."
  5730. #~ msgstr "Messa in pausa stampa..."
  5731. #~ msgctxt "@label:MonitorStatus"
  5732. #~ msgid "Resuming print..."
  5733. #~ msgstr "Ripresa stampa..."
  5734. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  5735. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  5736. #~ msgctxt "Count is number of printers."
  5737. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  5738. #~ msgstr "Questa stampante fa da host per un gruppo di {count} stampanti Ultimaker 3 connesse."
  5739. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  5740. #~ msgstr "{printer_name} ha terminato la stampa '{job_name}'. Rimuovere la stampa e confermare la pulizia del piano di stampa."
  5741. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  5742. #~ 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."
  5743. #~ msgctxt "@info:status"
  5744. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  5745. #~ msgstr "Impossibile inviare nuovo processo di stampa: questa stampante 3D non è (ancora) configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3."
  5746. #~ msgctxt "@info:status"
  5747. #~ msgid "Unable to send print job to group {cluster_name}."
  5748. #~ msgstr "Impossibile inviare processo di stampa a gruppo {cluster_name}."
  5749. #~ msgctxt "@info:status"
  5750. #~ msgid "Sent {file_name} to group {cluster_name}."
  5751. #~ msgstr "Inviato {file_name} a gruppo {cluster_name}."
  5752. #~ msgctxt "@action:button"
  5753. #~ msgid "Show print jobs"
  5754. #~ msgstr "Mostra processi di stampa"
  5755. #~ msgctxt "@info:tooltip"
  5756. #~ msgid "Opens the print jobs interface in your browser."
  5757. #~ msgstr "Apre l'interfaccia processi di stampa sul browser."
  5758. #~ msgctxt "@label Printer name"
  5759. #~ msgid "Unknown"
  5760. #~ msgstr "Sconosciuto"
  5761. #~ msgctxt "@info:progress"
  5762. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  5763. #~ msgstr "Invio <filename>{file_name}</filename> a gruppo {cluster_name}"
  5764. #~ msgctxt "@info:status"
  5765. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5766. #~ msgstr "SolidWorks ha segnalato errori all’apertura del file. Si consiglia di risolvere queste problematiche all’interno di SolidWorks stesso."
  5767. #~ msgctxt "@info:status"
  5768. #~ msgid ""
  5769. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  5770. #~ "\n"
  5771. #~ " Thanks!."
  5772. #~ msgstr ""
  5773. #~ "Nessun modello trovato nel disegno. Si prega di controllare nuovamente il contenuto e accertarsi che all’interno vi sia un componente o gruppo.\n"
  5774. #~ "\n"
  5775. #~ " Grazie."
  5776. #~ msgctxt "@info:status"
  5777. #~ msgid ""
  5778. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5779. #~ "\n"
  5780. #~ "Sorry!"
  5781. #~ msgstr ""
  5782. #~ "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"
  5783. #~ "\n"
  5784. #~ " Spiacenti."
  5785. #~ msgctxt "@item:material"
  5786. #~ msgid "No material loaded"
  5787. #~ msgstr "Nessun materiale caricato"
  5788. #~ msgctxt "@item:material"
  5789. #~ msgid "Unknown material"
  5790. #~ msgstr "Materiale sconosciuto"
  5791. #~ msgctxt "@info:status Has a cancel button next to it."
  5792. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  5793. #~ msgstr "Il diametro del materiale selezionato lo rende incompatibile con l'attuale stampante."
  5794. #~ msgctxt "@action:button"
  5795. #~ msgid "Undo"
  5796. #~ msgstr "Annulla"
  5797. #~ msgctxt "@action"
  5798. #~ msgid "Undo changing the material diameter."
  5799. #~ msgstr "Annulla modifica del diametro del materiale."
  5800. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5801. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  5802. #~ msgstr "La macchina definita nel profilo <filename>{0}</filename> non corrisponde alla macchina corrente, impossibile importarlo."
  5803. #~ msgctxt "@label crash message"
  5804. #~ msgid ""
  5805. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5806. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5807. #~ " "
  5808. #~ msgstr ""
  5809. #~ "<p><b>Si è verificato un errore fatale. Si prega di inviare questo Report su crash per correggere il problema</p></b>\n"
  5810. #~ " <p>Usare il pulsante “Invia report\" per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  5811. #~ " "
  5812. #~ msgctxt "@label"
  5813. #~ msgid "not yet initialised<br/>"
  5814. #~ msgstr "non ancora inizializzato<br/>"
  5815. #~ msgctxt "@label"
  5816. #~ msgid "Gcode flavor"
  5817. #~ msgstr "Versione GCode"
  5818. #~ msgctxt "@label"
  5819. #~ msgid "Start Gcode"
  5820. #~ msgstr "Avvio GCode"
  5821. #~ msgctxt "@tooltip"
  5822. #~ msgid "Gcode commands to be executed at the very start."
  5823. #~ msgstr "Comandi Gcode da eseguire all’avvio."
  5824. #~ msgctxt "@label"
  5825. #~ msgid "End Gcode"
  5826. #~ msgstr "Fine GCode"
  5827. #~ msgctxt "@tooltip"
  5828. #~ msgid "Gcode commands to be executed at the very end."
  5829. #~ msgstr "Comandi Gcode da eseguire alla fine."
  5830. #~ msgctxt "@label"
  5831. #~ msgid "Extruder Start Gcode"
  5832. #~ msgstr "Gcode avvio estrusore"
  5833. #~ msgctxt "@label"
  5834. #~ msgid "Extruder End Gcode"
  5835. #~ msgstr "Gcode fine estrusore"
  5836. #~ msgctxt "@label"
  5837. #~ msgid "Starting firmware update, this may take a while."
  5838. #~ msgstr "Avvio aggiornamento firmware. Questa operazione può richiedere qualche istante."
  5839. #~ msgctxt "@label"
  5840. #~ msgid "Unknown error code: %1"
  5841. #~ msgstr "Codice errore sconosciuto: %1"
  5842. #~ msgctxt "@label Printer name"
  5843. #~ msgid "Ultimaker 3"
  5844. #~ msgstr "Ultimaker 3"
  5845. #~ msgctxt "@label Printer name"
  5846. #~ msgid "Ultimaker 3 Extended"
  5847. #~ msgstr "Ultimaker 3 Extended"
  5848. #~ msgctxt "@label Printer status"
  5849. #~ msgid "Unknown"
  5850. #~ msgstr "Sconosciuto"
  5851. #~ msgctxt "@title:window"
  5852. #~ msgid "Find & Update plugins"
  5853. #~ msgstr "Trova e Aggiorna plugin"
  5854. #~ msgctxt "@label"
  5855. #~ msgid "Here you can find a list of Third Party plugins."
  5856. #~ msgstr "Qui è possibile trovare un elenco dei plugin forniti da terzi."
  5857. #~ msgctxt "@action:button"
  5858. #~ msgid "Upgrade"
  5859. #~ msgstr "Aggiorna"
  5860. #~ msgctxt "@action:button"
  5861. #~ msgid "Download"
  5862. #~ msgstr "Download"
  5863. #~ msgctxt "@info:tooltip"
  5864. #~ msgid "Show caution message in gcode reader."
  5865. #~ msgstr "Visualizza il messaggio di avvertimento sul lettore gcode."
  5866. #~ msgctxt "@option:check"
  5867. #~ msgid "Caution message in gcode reader"
  5868. #~ msgstr "Messaggio di avvertimento sul lettore gcode"
  5869. #~ msgctxt "@window:title"
  5870. #~ msgid "Import Profile"
  5871. #~ msgstr "Importa profilo"
  5872. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  5873. #~ msgid "Printer: %1, %2: %3"
  5874. #~ msgstr "Stampante: %1, %2: %3"
  5875. #~ msgctxt "@action:label %1 is printer name"
  5876. #~ msgid "Printer: %1"
  5877. #~ msgstr "Stampante: %1"
  5878. #~ msgctxt "@label"
  5879. #~ msgid "GCode generator"
  5880. #~ msgstr "GCode generator"
  5881. #~ msgctxt "@action:menu"
  5882. #~ msgid "Configure setting visiblity..."
  5883. #~ msgstr "Configurazione visibilità delle impostazioni in corso..."
  5884. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  5885. #~ msgid "Automatic: %1"
  5886. #~ msgstr "Automatico: %1"
  5887. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  5888. #~ msgid "Automatic: %1"
  5889. #~ msgstr "Automatico: %1"
  5890. #~ msgctxt "@info:status"
  5891. #~ msgid "No printer connected"
  5892. #~ msgstr "Nessuna stampante collegata"
  5893. #~ msgctxt "@tooltip"
  5894. #~ msgid "The current temperature of this extruder."
  5895. #~ msgstr "La temperatura corrente di questo estrusore."
  5896. #~ msgctxt "@action:menu"
  5897. #~ msgid "Installed plugins..."
  5898. #~ msgstr "Plugin installati..."
  5899. #~ msgctxt "@label"
  5900. #~ msgid "Support Extruder"
  5901. #~ msgstr "Estrusore del supporto"
  5902. #~ msgctxt "description"
  5903. #~ msgid "Writes GCode to a file."
  5904. #~ msgstr "Scrive il GCode in un file."
  5905. #~ msgctxt "name"
  5906. #~ msgid "GCode Writer"
  5907. #~ msgstr "Writer GCode"
  5908. #~ msgctxt "name"
  5909. #~ msgid "GCode Profile Reader"
  5910. #~ msgstr "Lettore profilo GCode"
  5911. #~ msgctxt "@info:status"
  5912. #~ 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!"
  5913. #~ msgstr "Rilevati errori all'apertura del file SolidWorks! Controllare se è possibile aprire il file in SolidWorks senza che si verifichino problemi!"
  5914. #~ msgctxt "@info:status"
  5915. #~ msgid "Error while starting %s!"
  5916. #~ msgstr "Errore durante l'avvio di %s!"
  5917. #~ msgctxt "@item:inlistbox"
  5918. #~ msgid "Simulation view"
  5919. #~ msgstr "Vista simulazione"
  5920. #~ msgctxt "@info"
  5921. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  5922. #~ msgstr "Cura acquisisce dati statistici elaborati in forma anonima. L'acquisizione può essere disabilitata nelle preferenze."
  5923. #~ msgctxt "@action:button"
  5924. #~ msgid "Dismiss"
  5925. #~ msgstr "Ignora"
  5926. #~ msgctxt "@menuitem"
  5927. #~ msgid "Global"
  5928. #~ msgstr "Globale"
  5929. #~ msgctxt "@label crash message"
  5930. #~ msgid ""
  5931. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5932. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5933. #~ " "
  5934. #~ msgstr ""
  5935. #~ "<p><b>Si è verificata un'eccezione irreversibile. Si prega di inviarci questo crash report per risolvere il problema</p></b> \n"
  5936. #~ " <p>Utilizzare il pulsante \"Invia report\" per inviare un report sui bug automaticamente ai nostri server</p>\n"
  5937. #~ " "
  5938. #~ msgctxt "@label Cura version"
  5939. #~ msgid "<b>Cura version:</b> {version}<br/>"
  5940. #~ msgstr "<b>Versione Cura:</b> {version}<br/>"
  5941. #~ msgctxt "@label Platform"
  5942. #~ msgid "<b>Platform:</b> {platform}<br/>"
  5943. #~ msgstr "<b>Piattaforma:</b> {platform}<br/>"
  5944. #~ msgctxt "@label Qt version"
  5945. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  5946. #~ msgstr "<b>Versione Qt:</b> {qt}<br/>"
  5947. #~ msgctxt "@label PyQt version"
  5948. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  5949. #~ msgstr "<b>Versione PyQt:</b> {pyqt}<br/>"
  5950. #~ msgctxt "@label OpenGL"
  5951. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  5952. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  5953. #~ msgctxt "@title:groupbox"
  5954. #~ msgid "Exception traceback"
  5955. #~ msgstr "Analisi eccezione"
  5956. #~ msgctxt "@label"
  5957. #~ msgid "Material diameter"
  5958. #~ msgstr "Diametro materiale"
  5959. #~ msgctxt "@title:window"
  5960. #~ msgid "Cura SolidWorks Plugin Configuration"
  5961. #~ msgstr "Configurazione plugin Cura SolidWorks"
  5962. #~ msgctxt "@action:label"
  5963. #~ msgid "Default quality of the exported STL:"
  5964. #~ msgstr "Qualità predefinita STL esportato:"
  5965. #~ msgctxt "@option:curaSolidworksStlQuality"
  5966. #~ msgid "Always ask"
  5967. #~ msgstr "Chiedi sempre"
  5968. #~ msgctxt "@option:curaSolidworksStlQuality"
  5969. #~ msgid "Always use Fine quality"
  5970. #~ msgstr "Utilizza sempre la qualità Fine"
  5971. #~ msgctxt "@option:curaSolidworksStlQuality"
  5972. #~ msgid "Always use Coarse quality"
  5973. #~ msgstr "Utilizza sempre la qualità Grossolana"
  5974. #~ msgctxt "@title:window"
  5975. #~ msgid "Import SolidWorks File as STL..."
  5976. #~ msgstr "Importa file SolidWorks come STL..."
  5977. #~ msgctxt "@info:tooltip"
  5978. #~ msgid "Quality of the Exported STL"
  5979. #~ msgstr "Qualità STL esportato"
  5980. #~ msgctxt "@action:label"
  5981. #~ msgid "Quality"
  5982. #~ msgstr "Qualità"
  5983. #~ msgctxt "@option:curaSolidworksStlQuality"
  5984. #~ msgid "Coarse"
  5985. #~ msgstr "Grossolana"
  5986. #~ msgctxt "@option:curaSolidworksStlQuality"
  5987. #~ msgid "Fine"
  5988. #~ msgstr "Fine"
  5989. #~ msgctxt "@"
  5990. #~ msgid "No Profile Available"
  5991. #~ msgstr "Nessun profilo disponibile"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  5994. #~ msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori"
  5995. #~ msgctxt "@tooltip"
  5996. #~ msgid "<b>Time specification</b><br/><table>"
  5997. #~ msgstr "<b>Indicazione del tempo</b><br/><table>"
  5998. #~ msgctxt "@action:inmenu menubar:view"
  5999. #~ msgid "&Reset camera position"
  6000. #~ msgstr "&Ripristina la posizione della telecamera"
  6001. #~ msgctxt "@title:menu menubar:file"
  6002. #~ msgid "Save project"
  6003. #~ msgstr "Salva progetto"
  6004. #~ msgctxt "@title:tab"
  6005. #~ msgid "Prepare"
  6006. #~ msgstr "Prepara"
  6007. #~ msgctxt "@title:tab"
  6008. #~ msgid "Monitor"
  6009. #~ msgstr "Controlla"
  6010. #~ msgctxt "@label"
  6011. #~ msgid "<a href='%1'>Check compatibility</a>"
  6012. #~ msgstr "<a href='%1'>Controllo compatibilità</a>"
  6013. #~ msgctxt "description"
  6014. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6015. #~ msgstr "Offre la possibilità di aprire alcuni file tramite SolidWorks stessa. Questi vengono quindi convertiti e caricati in Cura"
  6016. #~ msgctxt "@label:status"
  6017. #~ msgid "Blocked"
  6018. #~ msgstr "Bloccato"
  6019. #~ msgctxt "@label:status"
  6020. #~ msgid "Can't start print"
  6021. #~ msgstr "Impossibile avviare la stampa"
  6022. #~ msgctxt "@action:button"
  6023. #~ msgid "Open Connect.."
  6024. #~ msgstr "Apri Connect.."
  6025. #~ msgctxt "@info:title"
  6026. #~ msgid "Print Details"
  6027. #~ msgstr "Dettagli stampa"
  6028. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6029. #~ 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."
  6030. #~ 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."
  6031. #~ msgctxt "@info:title"
  6032. #~ msgid "Layer View"
  6033. #~ msgstr "Visualizzazione layer"
  6034. #~ msgctxt "@menuitem"
  6035. #~ msgid "Browse plugins"
  6036. #~ msgstr "Sfoglia plugin"
  6037. #~ msgctxt "@info:title"
  6038. #~ msgid "Export Details"
  6039. #~ msgstr "Dettagli esportazione"
  6040. #~ msgctxt "@label"
  6041. #~ msgid ""
  6042. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6043. #~ " <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"
  6044. #~ " "
  6045. #~ msgstr ""
  6046. #~ "<p>Si è verificata un'eccezione fatale che non stato possibile superare!</p>\n"
  6047. #~ " <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"
  6048. #~ " "
  6049. #~ msgctxt "@action:button"
  6050. #~ msgid "Open Web Page"
  6051. #~ msgstr "Apri pagina Web"
  6052. #~ msgctxt "@action:button"
  6053. #~ msgid "Ok"
  6054. #~ msgstr "Ok"
  6055. #~ msgctxt "@label"
  6056. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6057. #~ msgstr "Questa stampante non è configurata per supportare la connessione di un gruppo di stampanti Ultimaker 3"
  6058. #~ msgctxt "@label"
  6059. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6060. #~ msgstr "Questa stampante fa da host per un gruppo di %1 stampanti Ultimaker 3 connesse"
  6061. #~ msgctxt "@label"
  6062. #~ msgid "Completed on: "
  6063. #~ msgstr "Completato su: "
  6064. #~ msgctxt "@info:tooltip"
  6065. #~ msgid "Opens the print jobs page with your default web browser."
  6066. #~ msgstr "Apre la pagina processi di stampa con il browser web predefinito."
  6067. #~ msgctxt "@label"
  6068. #~ msgid "PRINTER GROUP"
  6069. #~ msgstr "GRUPPO STAMPANTI"
  6070. #~ msgctxt "@action:warning"
  6071. #~ msgid "Loading a project will clear all models on the buildplate"
  6072. #~ msgstr "Il caricamento di un modello annulla tutti i modelli sul piano di stampa"
  6073. #~ msgctxt "@label"
  6074. #~ msgid ""
  6075. #~ " plugin contains a license.\n"
  6076. #~ "You need to accept this license to install this plugin.\n"
  6077. #~ "Do you agree with the terms below?"
  6078. #~ msgstr ""
  6079. #~ " I plugin contengono una licenza.\n"
  6080. #~ "È necessario accettare questa licenza per poter installare il plugin.\n"
  6081. #~ "Accetti i termini sotto riportati?"
  6082. #~ msgctxt "@label"
  6083. #~ msgid "00h 00min"
  6084. #~ msgstr "00h 00min"
  6085. #~ msgctxt "@tooltip"
  6086. #~ msgid "<b>Time information</b>"
  6087. #~ msgstr "<b>Informazioni su tempo</b>"
  6088. #~ msgctxt "@description"
  6089. #~ msgid "Print time"
  6090. #~ msgstr "Tempo di stampa"
  6091. #~ msgctxt "@label"
  6092. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6093. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6094. #~ msgctxt "@label"
  6095. #~ msgid "%1m / ~ %2g"
  6096. #~ msgstr "%1m / ~ %2g"
  6097. #~ msgctxt "@title:window"
  6098. #~ msgid "Cura"
  6099. #~ msgstr "Cura"
  6100. #~ msgctxt "@label"
  6101. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6102. #~ msgstr "<a href='%1'>Controllo compatibilità materiale</a>"
  6103. #~ msgctxt "name"
  6104. #~ msgid "UM3 Network Connection (Cluster)"
  6105. #~ msgstr "Connessione di rete UM3 (Cluster)"
  6106. #~ msgctxt "description"
  6107. #~ msgid "Provides the Layer view."
  6108. #~ msgstr "Fornisce la visualizzazione degli strati."
  6109. #~ msgctxt "name"
  6110. #~ msgid "Layer View"
  6111. #~ msgstr "Visualizzazione layer"
  6112. #~ msgctxt "@item:inlistbox"
  6113. #~ msgid "X-Ray"
  6114. #~ msgstr "Raggi X"
  6115. #~ msgctxt "@label"
  6116. #~ msgid "Doodle3D"
  6117. #~ msgstr "Doodle3D"
  6118. #~ msgctxt "@info:whatsthis"
  6119. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6120. #~ msgstr "Accetta i G-Code e li invia tramite WiFi a un Doodle3D WiFi-Box."
  6121. #~ msgctxt "@item:inmenu"
  6122. #~ msgid "Doodle3D printing"
  6123. #~ msgstr "Stampa Doodle3D"
  6124. #~ msgctxt "@action:button"
  6125. #~ msgid "Print with Doodle3D"
  6126. #~ msgstr "Stampa con Doodle3D"
  6127. #~ msgctxt "@info:tooltip"
  6128. #~ msgid "Print with "
  6129. #~ msgstr "Stampa con"
  6130. #~ msgctxt "@title:menu"
  6131. #~ msgid "Doodle3D"
  6132. #~ msgstr "Doodle3D"
  6133. #~ msgctxt "@item:inlistbox"
  6134. #~ msgid "Enable Scan devices..."
  6135. #~ msgstr "Abilita dispositivi di scansione..."
  6136. #~ msgctxt "@info:progress"
  6137. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6138. #~ msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  6139. #~ msgctxt "@info:status"
  6140. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6141. #~ msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  6142. #~ msgctxt "@info:status"
  6143. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6144. #~ msgstr "Tenere presente che è necessario riaprire il file SolidWorks manualmente! Il ricaricamento del modello non funziona!"
  6145. #~ msgctxt "@item:inlistbox"
  6146. #~ msgid "Layers"
  6147. #~ msgstr "Strati"
  6148. #~ msgid "Browse plugins"
  6149. #~ msgstr "Sfoglia plugin"
  6150. #~ msgctxt "@item:inmenu"
  6151. #~ msgid "Solid"
  6152. #~ msgstr "Solido"
  6153. #~ msgctxt "@label"
  6154. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6155. #~ msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di voler sovrascrivere?"
  6156. #~ msgctxt "@info:status"
  6157. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6158. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: <message>{1}</message>"
  6159. #~ msgctxt "@info:status"
  6160. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6161. #~ msgstr "Impossibile esportare profilo su <filename>{0}</filename>: Errore di plugin writer."
  6162. #~ msgctxt "@info:status"
  6163. #~ msgid "Exported profile to <filename>{0}</filename>"
  6164. #~ msgstr "Profilo esportato su <filename>{0}</filename>"
  6165. #~ msgctxt "@info:status"
  6166. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6167. #~ msgstr "Impossibile importare profilo da <filename>{0}</filename>: <message>{1}</message>"
  6168. #~ msgctxt "@title:window"
  6169. #~ msgid "Doodle3D Settings"
  6170. #~ msgstr "Impostazioni Doodle3D"
  6171. #~ msgctxt "@title:window"
  6172. #~ msgid "Print to: %1"
  6173. #~ msgstr "Stampa a: %1"
  6174. #~ msgctxt "@label"
  6175. #~ msgid "Extruder Temperature: %1/%2°C"
  6176. #~ msgstr "Temperatura estrusore: %1/%2°C"
  6177. #~ msgctxt "@label"
  6178. #~ msgid "Bed Temperature: %1/%2°C"
  6179. #~ msgstr "Temperatura piano di stampa: %1/%2°C"
  6180. #~ msgctxt "@label"
  6181. #~ msgid "%1"
  6182. #~ msgstr "%1"
  6183. #~ msgctxt "@label"
  6184. #~ msgid "View Mode: Layers"
  6185. #~ msgstr "Modalità di visualizzazione: strati"
  6186. #~ msgctxt "@info:status"
  6187. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6188. #~ msgstr "Impossibile importare materiale <filename>%1</filename>: <message>%2</message>"
  6189. #~ msgctxt "@info:status"
  6190. #~ msgid "Successfully imported material <filename>%1</filename>"
  6191. #~ msgstr "Materiale importato correttamente <filename>%1</filename>"
  6192. #~ msgctxt "@info:status"
  6193. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6194. #~ msgstr "Impossibile esportare materiale su <filename>%1</filename>: <message>%2</message>"
  6195. #~ msgctxt "@info:status"
  6196. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6197. #~ msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  6198. #~ msgctxt "@label"
  6199. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6200. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6201. #~ msgctxt "@label"
  6202. #~ msgid "%1 m / ~ %2 g"
  6203. #~ msgstr "%1 m / ~ %2 g"
  6204. #~ msgctxt "@label"
  6205. #~ msgid "Hotend"
  6206. #~ msgstr "Hotend"
  6207. #~ msgctxt "@action:button"
  6208. #~ msgid "View Mode"
  6209. #~ msgstr "Modalità di visualizzazione"
  6210. #~ msgctxt "@title:tab"
  6211. #~ msgid "Print"
  6212. #~ msgstr "Stampa"
  6213. #~ msgctxt "@label"
  6214. #~ msgid "0%"
  6215. #~ msgstr "0%"
  6216. #~ msgctxt "@label"
  6217. #~ msgid "Empty infill will leave your model hollow with low strength."
  6218. #~ msgstr "Un riempimento vuoto lascerà il modello cavo e poco resistente."
  6219. #~ msgctxt "@label"
  6220. #~ msgid "20%"
  6221. #~ msgstr "20%"
  6222. #~ msgctxt "@label"
  6223. #~ msgid "Light (20%) infill will give your model an average strength."
  6224. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media."
  6225. #~ msgctxt "@label"
  6226. #~ msgid "50%"
  6227. #~ msgstr "50%"
  6228. #~ msgctxt "@label"
  6229. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6230. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media."
  6231. #~ msgctxt "@label"
  6232. #~ msgid "100%"
  6233. #~ msgstr "100%"
  6234. #~ msgctxt "@label"
  6235. #~ msgid "Solid (100%) infill will make your model completely solid."
  6236. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno."
  6237. #~ msgctxt "@label"
  6238. #~ msgid "Gradual"
  6239. #~ msgstr "Graduale"
  6240. #~ msgctxt "description"
  6241. #~ msgid "Provides support for writing X3G files"
  6242. #~ msgstr "Fornisce il supporto per la scrittura di file X3G"
  6243. #~ msgctxt "name"
  6244. #~ msgid "X3G Writer"
  6245. #~ msgstr "Writer X3G"
  6246. #~ msgctxt "@label"
  6247. #~ msgid "Machine Settings action"
  6248. #~ msgstr "Azione Impostazioni macchina"
  6249. #~ msgctxt "@info:whatsthis"
  6250. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6251. #~ msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  6252. #~ msgctxt "@label"
  6253. #~ msgid "X-Ray View"
  6254. #~ msgstr "Vista ai raggi X"
  6255. #~ msgctxt "@info:whatsthis"
  6256. #~ msgid "Provides the X-Ray view."
  6257. #~ msgstr "Fornisce la vista a raggi X."
  6258. #~ msgctxt "@label"
  6259. #~ msgid "X3D Reader"
  6260. #~ msgstr "Lettore X3D"
  6261. #~ msgctxt "@info:whatsthis"
  6262. #~ msgid "Provides support for reading X3D files."
  6263. #~ msgstr "Fornisce il supporto per la lettura di file X3D."
  6264. #~ msgctxt "@label"
  6265. #~ msgid "GCode Writer"
  6266. #~ msgstr "Writer GCode"
  6267. #~ msgctxt "@info:whatsthis"
  6268. #~ msgid "Writes GCode to a file."
  6269. #~ msgstr "Scrive il GCode in un file."
  6270. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6271. #~ msgid "Print with Doodle3D"
  6272. #~ msgstr "Stampa con Doodle3D"
  6273. #~ msgctxt "@info:whatsthis"
  6274. #~ msgid "Shows changes since latest checked version."
  6275. #~ msgstr "Mostra le modifiche dall'ultima versione selezionata."
  6276. #~ msgctxt "@label"
  6277. #~ msgid "Profile flatener"
  6278. #~ msgstr "Appiattitore di profilo"
  6279. #~ msgctxt "@info:whatsthis"
  6280. #~ msgid "Create a flattend quality changes profile."
  6281. #~ msgstr "Crea un profilo appiattito."
  6282. #~ msgctxt "@label"
  6283. #~ msgid "USB printing"
  6284. #~ msgstr "Stampa USB"
  6285. #~ msgctxt "@info:whatsthis"
  6286. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6287. #~ msgstr "Accetta i G-Code e li invia ad una stampante. Il Plugin può anche aggiornare il firmware."
  6288. #~ msgctxt "X3G Writer Plugin Description"
  6289. #~ msgid "Writes X3G to a file"
  6290. #~ msgstr "Scrive X3G in un file"
  6291. #~ msgctxt "@label"
  6292. #~ msgid "Removable Drive Output Device Plugin"
  6293. #~ msgstr "Plugin dispositivo di output unità rimovibile"
  6294. #~ msgctxt "@info:whatsthis"
  6295. #~ msgid "Provides removable drive hotplugging and writing support."
  6296. #~ msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  6297. #~ msgctxt "@info:whatsthis"
  6298. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6299. #~ msgstr "Gestisce le connessioni di rete alle stampanti Ultimaker 3"
  6300. #~ msgctxt "@label"
  6301. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6302. #~ msgstr "PrintCore diverso (Cura: {0}, Stampante: {1}) selezionato per l’estrusore {2}"
  6303. #~ msgctxt "@label"
  6304. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6305. #~ msgstr "Print core {0} non correttamente calibrato. Eseguire la calibrazione XY sulla stampante."
  6306. #~ msgctxt "@label"
  6307. #~ 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."
  6308. #~ 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."
  6309. #~ msgctxt "@label"
  6310. #~ msgid "Post Processing"
  6311. #~ msgstr "Post-elaborazione"
  6312. #~ msgctxt "Description of plugin"
  6313. #~ msgid "Extension that allows for user created scripts for post processing"
  6314. #~ msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  6315. #~ msgctxt "@label"
  6316. #~ msgid "Auto Save"
  6317. #~ msgstr "Salvataggio automatico"
  6318. #~ msgctxt "@info:whatsthis"
  6319. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6320. #~ msgstr "Salva automaticamente preferenze, macchine e profili dopo le modifiche."
  6321. #~ msgctxt "@label"
  6322. #~ msgid "Slice info"
  6323. #~ msgstr "Informazioni su sezionamento"
  6324. #~ msgctxt "@info:whatsthis"
  6325. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6326. #~ msgstr "Inoltra informazioni anonime su sezionamento. Può essere disabilitato tramite preferenze."
  6327. #~ msgctxt "@info"
  6328. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6329. #~ msgstr "Cura raccoglie dati per analisi statistiche anonime. È possibile disabilitare questa opzione in preferenze"
  6330. #~ msgctxt "@label"
  6331. #~ msgid "Material Profiles"
  6332. #~ msgstr "Profili del materiale"
  6333. #~ msgctxt "@info:whatsthis"
  6334. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6335. #~ msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  6336. #~ msgctxt "@label"
  6337. #~ msgid "Legacy Cura Profile Reader"
  6338. #~ msgstr "Lettore legacy profilo Cura"
  6339. #~ msgctxt "@info:whatsthis"
  6340. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6341. #~ msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  6342. #~ msgctxt "@label"
  6343. #~ msgid "GCode Profile Reader"
  6344. #~ msgstr "Lettore profilo GCode"
  6345. #~ msgctxt "@info:whatsthis"
  6346. #~ msgid "Provides support for importing profiles from g-code files."
  6347. #~ msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  6348. #~ msgctxt "@label"
  6349. #~ msgid "Layer View"
  6350. #~ msgstr "Visualizzazione layer"
  6351. #~ msgctxt "@info:whatsthis"
  6352. #~ msgid "Provides the Layer view."
  6353. #~ msgstr "Fornisce la visualizzazione dei layer."
  6354. #~ msgctxt "@label"
  6355. #~ msgid "Version Upgrade 2.5 to 2.6"
  6356. #~ msgstr "Aggiornamento della versione da 2.5 a 2.6"
  6357. #~ msgctxt "@info:whatsthis"
  6358. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6359. #~ msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  6360. #~ msgctxt "@label"
  6361. #~ msgid "Version Upgrade 2.1 to 2.2"
  6362. #~ msgstr "Aggiornamento della versione da 2.1 a 2.2"
  6363. #~ msgctxt "@info:whatsthis"
  6364. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  6365. #~ msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  6366. #~ msgctxt "@label"
  6367. #~ msgid "Version Upgrade 2.2 to 2.4"
  6368. #~ msgstr "Aggiornamento della versione da 2.2 a 2.4"
  6369. #~ msgctxt "@info:whatsthis"
  6370. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  6371. #~ msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  6372. #~ msgctxt "@label"
  6373. #~ msgid "Image Reader"
  6374. #~ msgstr "Lettore di immagine"
  6375. #~ msgctxt "@info:whatsthis"
  6376. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  6377. #~ msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  6378. #~ msgctxt "@label"
  6379. #~ msgid "CuraEngine Backend"
  6380. #~ msgstr "Back-end CuraEngine"
  6381. #~ msgctxt "@info:whatsthis"
  6382. #~ msgid "Provides the link to the CuraEngine slicing backend."
  6383. #~ msgstr "Fornisce il collegamento al back-end di slicing di CuraEngine."
  6384. #~ msgctxt "@label"
  6385. #~ msgid "Per Model Settings Tool"
  6386. #~ msgstr "Utilità impostazioni per modello"
  6387. #~ msgctxt "@info:whatsthis"
  6388. #~ msgid "Provides the Per Model Settings."
  6389. #~ msgstr "Fornisce le impostazioni per modello."
  6390. #~ msgctxt "@label"
  6391. #~ msgid "3MF Reader"
  6392. #~ msgstr "Lettore 3MF"
  6393. #~ msgctxt "@info:whatsthis"
  6394. #~ msgid "Provides support for reading 3MF files."
  6395. #~ msgstr "Fornisce il supporto per la lettura di file 3MF."
  6396. #~ msgctxt "@label"
  6397. #~ msgid "Solid View"
  6398. #~ msgstr "Visualizzazione compatta"
  6399. #~ msgctxt "@info:whatsthis"
  6400. #~ msgid "Provides a normal solid mesh view."
  6401. #~ msgstr "Fornisce una normale visualizzazione a griglia compatta."
  6402. #~ msgctxt "@label"
  6403. #~ msgid "G-code Reader"
  6404. #~ msgstr "Lettore G-code"
  6405. #~ msgctxt "@info:whatsthis"
  6406. #~ msgid "Allows loading and displaying G-code files."
  6407. #~ msgstr "Consente il caricamento e la visualizzazione dei file G-code."
  6408. #~ msgctxt "@label"
  6409. #~ msgid "Cura Profile Writer"
  6410. #~ msgstr "Writer profilo Cura"
  6411. #~ msgctxt "@info:whatsthis"
  6412. #~ msgid "Provides support for exporting Cura profiles."
  6413. #~ msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  6414. #~ msgctxt "@label"
  6415. #~ msgid "3MF Writer"
  6416. #~ msgstr "Writer 3MF"
  6417. #~ msgctxt "@info:whatsthis"
  6418. #~ msgid "Provides support for writing 3MF files."
  6419. #~ msgstr "Fornisce il supporto per la scrittura di file 3MF."
  6420. #~ msgctxt "@label"
  6421. #~ msgid "Ultimaker machine actions"
  6422. #~ msgstr "Azioni della macchina Ultimaker"
  6423. #~ msgctxt "@info:whatsthis"
  6424. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6425. #~ msgstr "Fornisce azioni macchina per le macchine Ultimaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  6426. #~ msgctxt "@label"
  6427. #~ msgid "Cura Profile Reader"
  6428. #~ msgstr "Lettore profilo Cura"
  6429. #~ msgctxt "@info:whatsthis"
  6430. #~ msgid "Provides support for importing Cura profiles."
  6431. #~ msgstr "Fornisce supporto per l'importazione dei profili Cura."
  6432. #~ msgctxt "@info"
  6433. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  6434. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Build Plate Shape"
  6437. #~ msgstr "Forma del piano di stampa"
  6438. #~ msgctxt "@option:check"
  6439. #~ msgid "Machine Center is Zero"
  6440. #~ msgstr "Centro macchina a zero"
  6441. #~ msgctxt "@option:check"
  6442. #~ msgid "Heated Bed"
  6443. #~ msgstr "Piano riscaldato"
  6444. #~ msgctxt "@label"
  6445. #~ msgid "GCode Flavor"
  6446. #~ msgstr "Versione GCode"
  6447. #~ msgctxt "@label"
  6448. #~ msgid "Material Diameter"
  6449. #~ msgstr "Diametro materiale"
  6450. #~ msgctxt "@label"
  6451. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  6452. #~ msgstr "Se la stampante non è nell’elenco, leggere la <a href=’%1’>guida alla ricerca guasti per la stampa in rete</a>"
  6453. #~ msgctxt "@item:inlistbox"
  6454. #~ msgid "Ultimaker"
  6455. #~ msgstr "Ultimaker"
  6456. #~ msgctxt "@label"
  6457. #~ msgid "Support library for scientific computing "
  6458. #~ msgstr "Libreria di supporto per calcolo scientifico "
  6459. #~ msgctxt "@tooltip"
  6460. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  6461. #~ msgstr "<b>Impostazione di stampa</b><br/><br/>Modifica o revisiona le impostazioni per il lavoro di stampa attivo."
  6462. #~ msgctxt "@tooltip"
  6463. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  6464. #~ msgstr "<b>Monitoraggio stampa</b><br/><br/>Controlla lo stato della stampante collegata e il lavoro di stampa in corso."
  6465. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  6466. #~ msgid "Automatic: %1"
  6467. #~ msgstr "Automatico: %1"
  6468. #~ msgctxt "@label:PrintjobStatus"
  6469. #~ msgid "Please load a 3d model"
  6470. #~ msgstr "Carica un modello 3d"
  6471. #~ msgctxt "@label"
  6472. #~ msgid "Print Selected Model with %1"
  6473. #~ msgid_plural "Print Selected Models With %1"
  6474. #~ msgstr[0] "Stampa modello selezionato con %1"
  6475. #~ msgstr[1] "Stampa modelli selezionati con %1"
  6476. #~ msgctxt "@info:status"
  6477. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  6478. #~ msgstr "Impossibile avviare un nuovo processo di stampa. Nessun PrinterCore caricato nello slot {0}"
  6479. #~ msgctxt "@label"
  6480. #~ msgid "Version Upgrade 2.4 to 2.5"
  6481. #~ msgstr "Aggiornamento della versione da 2.4 a 2.5"
  6482. #~ msgctxt "@info:whatsthis"
  6483. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  6484. #~ msgstr "Aggiorna le configurazioni da Cura 2.4 a Cura 2.5."
  6485. #~ msgctxt "@info:status"
  6486. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  6487. #~ msgstr "Impossibile trovare un profilo di qualità per questa combinazione. Saranno utilizzate le impostazioni predefinite."
  6488. #~ msgctxt "@title:window"
  6489. #~ msgid "Oops!"
  6490. #~ msgstr "Oops!"
  6491. #~ msgctxt "@label"
  6492. #~ msgid ""
  6493. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6494. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  6495. #~ " <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"
  6496. #~ " "
  6497. #~ msgstr ""
  6498. #~ "<p>Si è verificata un'eccezione fatale impossibile da ripristinare!</p>\n"
  6499. #~ " <p>Ci auguriamo che l’immagine di questo gattino vi aiuti a superare lo shock.</p>\n"
  6500. #~ " <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>"
  6501. #~ msgctxt "@label"
  6502. #~ msgid "Please enter the correct settings for your printer below:"
  6503. #~ msgstr "Inserire le impostazioni corrette per la stampante:"
  6504. #~ msgctxt "@label"
  6505. #~ msgid "Extruder %1"
  6506. #~ msgstr "Estrusore %1"
  6507. #~ msgctxt "@label Followed by extruder selection drop-down."
  6508. #~ msgid "Print model with"
  6509. #~ msgstr "Modello di stampa con"
  6510. #~ msgctxt "@label"
  6511. #~ msgid "You will need to restart the application for language changes to have effect."
  6512. #~ msgstr "Riavviare l'applicazione per rendere effettive le modifiche della lingua."
  6513. #~ msgctxt "@info:tooltip"
  6514. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  6515. #~ msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  6516. #~ msgctxt "@action:inmenu menubar:edit"
  6517. #~ msgid "Delete &Selection"
  6518. #~ msgstr "&Elimina selezione"
  6519. #~ msgctxt "@action:inmenu menubar:file"
  6520. #~ msgid "&Open File..."
  6521. #~ msgstr "Apr&i file..."
  6522. #~ msgctxt "@action:inmenu menubar:file"
  6523. #~ msgid "&Open Project..."
  6524. #~ msgstr "&Apri progetto..."
  6525. #~ msgctxt "@title:window"
  6526. #~ msgid "Multiply Model"
  6527. #~ msgstr "Moltiplica modello"
  6528. #~ msgctxt "@title:menu menubar:file"
  6529. #~ msgid "Save &All"
  6530. #~ msgstr "S&alva tutto"
  6531. #~ msgctxt "@title:window"
  6532. #~ msgid "Open file"
  6533. #~ msgstr "Apri file"
  6534. #~ msgctxt "@title:window"
  6535. #~ msgid "Open workspace"
  6536. #~ msgstr "Apri spazio di lavoro"
  6537. #~ msgctxt "@label"
  6538. #~ msgid "Hollow"
  6539. #~ msgstr "Cavo"
  6540. #~ msgctxt "@label"
  6541. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  6542. #~ msgstr "Nessun (0%) riempimento lascerà il tuo cavo modello a scapito della resistenza (bassa resistenza)"
  6543. #~ msgctxt "@label"
  6544. #~ msgid "Light"
  6545. #~ msgstr "Leggero"
  6546. #~ msgctxt "@label"
  6547. #~ msgid "Light (20%) infill will give your model an average strength"
  6548. #~ msgstr "Un riempimento leggero (20%) fornirà al modello una resistenza media"
  6549. #~ msgctxt "@label"
  6550. #~ msgid "Dense"
  6551. #~ msgstr "Denso"
  6552. #~ msgctxt "@label"
  6553. #~ msgid "Dense (50%) infill will give your model an above average strength"
  6554. #~ msgstr "Un riempimento denso (50%) fornirà al modello una resistenza superiore alla media"
  6555. #~ msgctxt "@label"
  6556. #~ msgid "Solid"
  6557. #~ msgstr "Solido"
  6558. #~ msgctxt "@label"
  6559. #~ msgid "Solid (100%) infill will make your model completely solid"
  6560. #~ msgstr "Un riempimento solido (100%) renderà il modello completamente pieno"
  6561. #~ msgctxt "@label"
  6562. #~ msgid "Enable Support"
  6563. #~ msgstr "Abilita supporto"
  6564. #~ msgctxt "@label"
  6565. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  6566. #~ msgstr "Abilita le strutture di supporto. Queste strutture supportano le parti del modello con sbalzi rigidi."
  6567. #~ msgctxt "@label"
  6568. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6569. #~ msgstr "Serve aiuto per migliorare le tue stampe? Leggi la <a href='%1'>Guida alla ricerca e riparazione guasti Ultimaker</a>"
  6570. #~ msgctxt "@info:status"
  6571. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  6572. #~ msgstr "Collegato alla rete a {0}. Si prega di approvare la richiesta di accesso sulla stampante."
  6573. #~ msgctxt "@info:status"
  6574. #~ msgid "Connected over the network to {0}."
  6575. #~ msgstr "Collegato alla rete a {0}."
  6576. #~ msgctxt "@info:status"
  6577. #~ msgid "Connected over the network to {0}. No access to control the printer."
  6578. #~ msgstr "Collegato alla rete a {0}. Nessun accesso per controllare la stampante."
  6579. #~ msgctxt "@info:status"
  6580. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  6581. #~ msgstr "Impossibile avviare un nuovo processo di stampa perché la stampante è occupata. Controllare la stampante."
  6582. #~ msgctxt "@label"
  6583. #~ msgid "You made changes to the following setting(s)/override(s):"
  6584. #~ msgstr "Sono state apportate modifiche alle seguenti impostazioni/esclusioni:"
  6585. #~ msgctxt "@window:title"
  6586. #~ msgid "Switched profiles"
  6587. #~ msgstr "Profili modificati"
  6588. #~ msgctxt "@label"
  6589. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  6590. #~ msgstr "Si desidera trasferire le %d impostazioni/esclusioni modificate a questo profilo?"
  6591. #~ msgctxt "@label"
  6592. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  6593. #~ msgstr "Se si trasferiscono le nuove impostazioni, le impostazioni esistenti del profilo saranno sovrascritte. Se non si trasferiscono, tali impostazioni verranno perse."
  6594. #~ msgctxt "@label"
  6595. #~ msgid "Cost per Meter (Approx.)"
  6596. #~ msgstr "Costo al metro (circa)"
  6597. #~ msgctxt "@label"
  6598. #~ msgid "%1/m"
  6599. #~ msgstr "%1/m"
  6600. #~ msgctxt "@info:tooltip"
  6601. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  6602. #~ 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."
  6603. #~ msgctxt "@action:button"
  6604. #~ msgid "Display five top layers in layer view"
  6605. #~ msgstr "Visualizza i cinque strati superiori in visualizzazione strato"
  6606. #~ msgctxt "@info:tooltip"
  6607. #~ msgid "Should only the top layers be displayed in layerview?"
  6608. #~ msgstr "In visualizzazione strato devono essere visualizzati solo gli strati superiori?"
  6609. #~ msgctxt "@option:check"
  6610. #~ msgid "Only display top layer(s) in layer view"
  6611. #~ msgstr "In visualizzazione layer, visualizza solo il/i layer(s) superiore/i"
  6612. #~ msgctxt "@label"
  6613. #~ msgid "Opening files"
  6614. #~ msgstr "Apertura file in corso"
  6615. #~ msgctxt "@label"
  6616. #~ msgid "Printer Monitor"
  6617. #~ msgstr "Monitoraggio stampante"
  6618. #~ msgctxt "@label"
  6619. #~ msgid "Temperatures"
  6620. #~ msgstr "Temperature"
  6621. #~ msgctxt "@label:PrintjobStatus"
  6622. #~ msgid "Preparing to slice..."
  6623. #~ msgstr "Preparazione al sezionamento in corso..."
  6624. #~ msgctxt "@window:title"
  6625. #~ msgid "Changes on the Printer"
  6626. #~ msgstr "Modifiche alla stampante."
  6627. #~ msgctxt "@action:inmenu"
  6628. #~ msgid "&Duplicate Model"
  6629. #~ msgstr "&Duplica modello"
  6630. #~ msgctxt "@label"
  6631. #~ msgid "Helper Parts:"
  6632. #~ msgstr "Parti Helper:"
  6633. #~ msgctxt "@label"
  6634. #~ 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."
  6635. #~ 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."
  6636. #~ msgctxt "@label"
  6637. #~ msgid "Don't print support"
  6638. #~ msgstr "Non stampare alcuna struttura di supporto"
  6639. #~ msgctxt "@label"
  6640. #~ msgid "Print support using %1"
  6641. #~ msgstr "Stampa struttura di supporto utilizzando %1"
  6642. #~ msgctxt "@label:listbox"
  6643. #~ msgid "Printer:"
  6644. #~ msgstr "Stampante:"
  6645. #~ msgctxt "@info:status"
  6646. #~ msgid "Successfully imported profiles {0}"
  6647. #~ msgstr "Profili importati correttamente {0}"
  6648. #~ msgctxt "@label"
  6649. #~ msgid "Scripts"
  6650. #~ msgstr "Script"
  6651. #~ msgctxt "@label"
  6652. #~ msgid "Active Scripts"
  6653. #~ msgstr "Script attivi"
  6654. #~ msgctxt "@label"
  6655. #~ msgid "Done"
  6656. #~ msgstr "Eseguito"
  6657. #~ msgctxt "@item:inlistbox"
  6658. #~ msgid "English"
  6659. #~ msgstr "Inglese"
  6660. #~ msgctxt "@item:inlistbox"
  6661. #~ msgid "Finnish"
  6662. #~ msgstr "Finlandese"
  6663. #~ msgctxt "@item:inlistbox"
  6664. #~ msgid "French"
  6665. #~ msgstr "Francese"
  6666. #~ msgctxt "@item:inlistbox"
  6667. #~ msgid "German"
  6668. #~ msgstr "Tedesco"
  6669. #~ msgctxt "@item:inlistbox"
  6670. #~ msgid "Italian"
  6671. #~ msgstr "Italiano"
  6672. #~ msgctxt "@item:inlistbox"
  6673. #~ msgid "Dutch"
  6674. #~ msgstr "Olandese"
  6675. #~ msgctxt "@item:inlistbox"
  6676. #~ msgid "Spanish"
  6677. #~ msgstr "Spagnolo"
  6678. #~ msgctxt "@label"
  6679. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  6680. #~ msgstr "Desideri modificare i PrintCore e i materiali in Cura per abbinare la stampante?"
  6681. #~ msgctxt "@label:"
  6682. #~ msgid "Print Again"
  6683. #~ msgstr "Ripeti stampa"