cura.po 310 KB

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