cura.po 308 KB

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