cura.po 162 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-09-20 14:03+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: it_IT\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  20. #, python-format
  21. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  22. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  23. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  24. msgctxt "@action:label"
  25. msgid "%1 & material"
  26. msgstr "%1 & materiale"
  27. msgctxt "@action:label"
  28. msgid "%1 out of %2"
  29. msgstr "%1 su %2"
  30. msgctxt "@action:label"
  31. msgid "%1 override"
  32. msgid_plural "%1 overrides"
  33. msgstr[0] "%1 override"
  34. msgstr[1] "%1 override"
  35. msgctxt "@action:label"
  36. msgid "%1, %2 override"
  37. msgid_plural "%1, %2 overrides"
  38. msgstr[0] "%1, %2 override"
  39. msgstr[1] "%1, %2 override"
  40. msgctxt "@label g for grams"
  41. msgid "%1g"
  42. msgstr "%1g"
  43. msgctxt "@label m for meter"
  44. msgid "%1m"
  45. msgstr "%1m"
  46. msgctxt "@action:inmenu menubar:printer"
  47. msgid "&Add Printer..."
  48. msgstr "&Aggiungi stampante..."
  49. msgctxt "@action:inmenu menubar:view"
  50. msgid "&Camera position"
  51. msgstr "&Posizione fotocamera"
  52. msgctxt "@action:inmenu menubar:profile"
  53. msgid "&Create profile from current settings/overrides..."
  54. msgstr "&Crea profilo dalle impostazioni/esclusioni correnti..."
  55. msgctxt "@action:inmenu menubar:profile"
  56. msgid "&Discard current changes"
  57. msgstr "&Elimina le modifiche correnti"
  58. msgctxt "@title:menu menubar:toplevel"
  59. msgid "&Edit"
  60. msgstr "&Modifica"
  61. msgctxt "@title:menu menubar:file"
  62. msgid "&Export..."
  63. msgstr "&Esporta..."
  64. msgctxt "@title:menu menubar:toplevel"
  65. msgid "&File"
  66. msgstr "&File"
  67. msgctxt "@action:inmenu menubar:edit"
  68. msgid "&Group Models"
  69. msgstr "&Raggruppa modelli"
  70. msgctxt "@title:menu menubar:toplevel"
  71. msgid "&Help"
  72. msgstr "&Help"
  73. msgctxt "@title:menu"
  74. msgid "&Material"
  75. msgstr "Ma&teriale"
  76. msgctxt "@action:inmenu menubar:edit"
  77. msgid "&Merge Models"
  78. msgstr "&Unisci modelli"
  79. msgctxt "@action:inmenu"
  80. msgid "&Multiply Model..."
  81. msgstr "Mo&ltiplica modello..."
  82. msgctxt "@action:inmenu menubar:file"
  83. msgid "&New Project..."
  84. msgstr "&Nuovo Progetto..."
  85. msgctxt "@action:inmenu menubar:file"
  86. msgid "&Open File(s)..."
  87. msgstr "&Apri file..."
  88. msgctxt "@title:menu menubar:settings"
  89. msgid "&Printer"
  90. msgstr "S&tampante"
  91. msgctxt "@action:inmenu menubar:file"
  92. msgid "&Quit"
  93. msgstr "&Esci"
  94. msgctxt "@action:inmenu menubar:edit"
  95. msgid "&Redo"
  96. msgstr "Ri&peti"
  97. msgctxt "@title:menu menubar:file"
  98. msgid "&Save Project..."
  99. msgstr "&Salva progetto..."
  100. msgctxt "@title:menu menubar:toplevel"
  101. msgid "&Settings"
  102. msgstr "&Impostazioni"
  103. msgctxt "@action:inmenu menubar:edit"
  104. msgid "&Undo"
  105. msgstr "&Annulla"
  106. msgctxt "@action:inmenu menubar:profile"
  107. msgid "&Update profile with current settings/overrides"
  108. msgstr "&Aggiorna il profilo con le impostazioni/esclusioni correnti"
  109. msgctxt "@title:menu menubar:toplevel"
  110. msgid "&View"
  111. msgstr "&Visualizza"
  112. msgctxt "@label"
  113. msgid "*You will need to restart the application for these changes to have effect."
  114. msgstr "*Per rendere effettive le modifiche è necessario riavviare l'applicazione."
  115. msgctxt "@text"
  116. msgid ""
  117. "- Add material profiles and plug-ins from the Marketplace\n"
  118. "- Back-up and sync your material profiles and plug-ins\n"
  119. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  120. msgstr ""
  121. "- Aggiungi profili materiale e plugin dal Marketplace\n"
  122. "- Esegui il backup e la sincronizzazione dei profili materiale e dei plugin\n"
  123. "- Condividi idee e ottieni supporto da più di 48.000 utenti nella community di Ultimaker"
  124. msgctxt "@heading"
  125. msgid "-- incomplete --"
  126. msgstr "-- incompleto --"
  127. msgctxt "@action:label"
  128. msgid "1mm Transmittance (%)"
  129. msgstr "Trasmittanza di 1 mm (%)"
  130. msgctxt "@info:title"
  131. msgid "3D Model Assistant"
  132. msgstr "Assistente modello 3D"
  133. msgctxt "@action:inmenu menubar:view"
  134. msgid "3D View"
  135. msgstr "Visualizzazione 3D"
  136. msgctxt "@info:tooltip"
  137. msgid "3D View"
  138. msgstr "Visualizzazione 3D"
  139. msgctxt "@item:inlistbox"
  140. msgid "3MF File"
  141. msgstr "File 3MF"
  142. msgctxt "name"
  143. msgid "3MF Reader"
  144. msgstr "Lettore 3MF"
  145. msgctxt "name"
  146. msgid "3MF Writer"
  147. msgstr "Writer 3MF"
  148. msgctxt "@error:zip"
  149. msgid "3MF Writer plug-in is corrupt."
  150. msgstr "Plug-in Writer 3MF danneggiato."
  151. msgctxt "@item:inlistbox"
  152. msgid "3MF file"
  153. msgstr "File 3MF"
  154. msgctxt "@info, %1 is the name of the custom profile"
  155. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  156. msgstr "Il profilo personalizzato <b>%1</b> è attivo e sono state sovrascritte alcune impostazioni."
  157. msgctxt "@info, %1 is the name of the custom profile"
  158. msgid "<b>%1</b> custom profile is overriding some settings."
  159. msgstr "Il profilo personalizzato <b>%1</b> sta sovrascrivendo alcune impostazioni."
  160. msgctxt "@label %i will be replaced with a profile name"
  161. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  162. msgstr "<b>Solo le impostazioni modificate dall'utente verranno salvate nel profilo personalizzato.</b><br/>Per i materiali che lo supportano, il nuovo profilo personalizzato erediterà le proprietà da <b>%1</b>."
  163. #, python-brace-format
  164. msgctxt "@label OpenGL renderer"
  165. msgid "<li>OpenGL Renderer: {renderer}</li>"
  166. msgstr "<li>Renderer OpenGL: {renderer}</li>"
  167. #, python-brace-format
  168. msgctxt "@label OpenGL vendor"
  169. msgid "<li>OpenGL Vendor: {vendor}</li>"
  170. msgstr "<li>Fornitore OpenGL: {vendor}</li>"
  171. #, python-brace-format
  172. msgctxt "@label OpenGL version"
  173. msgid "<li>OpenGL Version: {version}</li>"
  174. msgstr "<li>Versione OpenGL: {version}</li>"
  175. msgctxt "@label crash message"
  176. msgid ""
  177. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  178. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  179. " "
  180. msgstr ""
  181. "<p><b>Si è verificato un errore fatale in Cura. Si prega di inviare questo Rapporto su crash per correggere il problema</p></b>\n"
  182. " <p>Usare il pulsante “Invia report&quot; per inviare automaticamente una segnalazione errore ai nostri server</p>\n"
  183. " "
  184. msgctxt "@label crash message"
  185. msgid ""
  186. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  187. " <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"
  188. " <p>Backups can be found in the configuration folder.</p>\n"
  189. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  190. " "
  191. msgstr ""
  192. "<p><b>Oops, UltiMaker Cura ha rilevato qualcosa che non sembra corretto.</p></b>\n"
  193. " <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"
  194. " <p>I backup sono contenuti nella cartella configurazione.</p>\n"
  195. " <p>Si prega di inviare questo Rapporto su crash per correggere il problema.</p>\n"
  196. " "
  197. #, python-brace-format
  198. msgctxt "@info:status"
  199. msgid ""
  200. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  201. "<p>{model_names}</p>\n"
  202. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  203. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  204. msgstr ""
  205. "<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"
  206. "<p>{model_names}</p>\n"
  207. "<p>Scopri come garantire la migliore qualità ed affidabilità di stampa.</p>\n"
  208. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Visualizza la guida alla qualità di stampa</a></p>"
  209. msgctxt "@label"
  210. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  211. msgstr "Stampa tramite USB in corso, la chiusura di Cura interrompe la stampa. Confermare?"
  212. msgctxt "info:status"
  213. msgid "A cloud connection is not available for a printer"
  214. msgid_plural "A cloud connection is not available for some printers"
  215. msgstr[0] "Non è disponibile una connessione cloud per una stampante"
  216. msgstr[1] "Non è disponibile una connessione cloud per alcune stampanti"
  217. msgctxt "@message"
  218. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  219. msgstr "Stampa ancora in corso. Cura non può avviare un'altra stampa tramite USB finché la precedente non è stata completata."
  220. msgctxt "@item:inlistbox"
  221. msgid "AMF File"
  222. msgstr "File AMF"
  223. msgctxt "name"
  224. msgid "AMF Reader"
  225. msgstr "Lettore 3MF"
  226. msgctxt "@label"
  227. msgid "Abort"
  228. msgstr "Interrompi"
  229. msgctxt "@label"
  230. msgid "Abort Print"
  231. msgstr "Interrompi la stampa"
  232. msgctxt "@window:title"
  233. msgid "Abort print"
  234. msgstr "Interrompi la stampa"
  235. msgctxt "@label:status"
  236. msgid "Aborted"
  237. msgstr "Interrotto"
  238. msgctxt "@label"
  239. msgid "Aborting..."
  240. msgstr "Interr. in corso..."
  241. msgctxt "@label:status"
  242. msgid "Aborting..."
  243. msgstr "Interr. in corso..."
  244. msgctxt "@title:window The argument is the application name."
  245. msgid "About %1"
  246. msgstr "Informazioni su %1"
  247. msgctxt "@action:inmenu menubar:help"
  248. msgid "About..."
  249. msgstr "Informazioni..."
  250. msgctxt "@button"
  251. msgid "Accept"
  252. msgstr "Accetto"
  253. msgctxt "description"
  254. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  255. msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware."
  256. msgctxt "@label"
  257. msgid "Account synced"
  258. msgstr "Account sincronizzato"
  259. msgctxt "@label:status"
  260. msgid "Action required"
  261. msgstr "Richiede un'azione"
  262. msgctxt "@action:button"
  263. msgid "Activate"
  264. msgstr "Attiva"
  265. msgctxt "@label"
  266. msgid "Active print"
  267. msgstr "Stampa attiva"
  268. msgctxt "@action:button"
  269. msgid "Add"
  270. msgstr "Aggiungi"
  271. msgctxt "@button"
  272. msgid "Add"
  273. msgstr "Aggiungi"
  274. msgctxt "@action:button"
  275. msgid "Add New"
  276. msgstr "Aggiungi nuovo"
  277. msgctxt "@title:window"
  278. msgid "Add Printer"
  279. msgstr "Aggiungi stampante"
  280. msgctxt "@button"
  281. msgid "Add UltiMaker printer via Digital Factory"
  282. msgstr "Aggiungi stampante UltiMaker tramite Digital Factory"
  283. msgctxt "@label"
  284. msgid "Add a Cloud printer"
  285. msgstr "Aggiungere una stampante cloud"
  286. msgctxt "@label"
  287. msgid "Add a networked printer"
  288. msgstr "Aggiungi una stampante in rete"
  289. msgctxt "@label"
  290. msgid "Add a non-networked printer"
  291. msgstr "Aggiungi una stampante non in rete"
  292. msgctxt "@action"
  293. msgid "Add a script"
  294. msgstr "Aggiungi uno script"
  295. msgctxt "@option:check"
  296. msgid "Add icon to system tray *"
  297. msgstr "Aggiungi icona alla barra delle applicazioni *"
  298. msgctxt "@button"
  299. msgid "Add local printer"
  300. msgstr "Aggiungi una stampante locale"
  301. msgctxt "@option:check"
  302. msgid "Add machine prefix to job name"
  303. msgstr "Aggiungi al nome del processo un prefisso macchina"
  304. msgctxt "@text"
  305. msgid "Add material settings and plugins from the Marketplace"
  306. msgstr "Aggiungi impostazioni materiale e plugin dal Marketplace"
  307. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  308. msgid "Add more materials from Marketplace"
  309. msgstr "Aggiungere altri materiali da Marketplace"
  310. msgctxt "@button"
  311. msgid "Add printer"
  312. msgstr "Aggiungi stampante"
  313. msgctxt "@label"
  314. msgid "Add printer"
  315. msgstr "Aggiungi stampante"
  316. msgctxt "@label"
  317. msgid "Add printer by IP"
  318. msgstr "Aggiungi stampante per IP"
  319. msgctxt "@label"
  320. msgid "Add printer by IP address"
  321. msgstr "Aggiungi stampante per indirizzo IP"
  322. msgctxt "@button"
  323. msgid "Add printer manually"
  324. msgstr "Aggiungere la stampante manualmente"
  325. #, python-brace-format
  326. msgctxt "info:status Filled in with printer name and printer model."
  327. msgid "Adding printer {name} ({model}) from your account"
  328. msgstr "Aggiunta della stampante {name} ({model}) dall'account"
  329. msgctxt "@label"
  330. msgid "Address"
  331. msgstr "Indirizzo"
  332. msgctxt "@label"
  333. msgid "Adhesion"
  334. msgstr "Adesione"
  335. msgctxt "@label"
  336. msgid "Adhesion Information"
  337. msgstr "Informazioni sull’aderenza"
  338. msgctxt "@label"
  339. msgid "Adjusts the density of infill of the print."
  340. msgstr "Regola la densità del riempimento della stampa."
  341. msgctxt "support_type description"
  342. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  343. msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello."
  344. msgctxt "@label Header for list of settings."
  345. msgid "Affected By"
  346. msgstr "Influenzato da"
  347. msgctxt "@label Header for list of settings."
  348. msgid "Affects"
  349. msgstr "Influisce su"
  350. msgctxt "@button"
  351. msgid "Agree"
  352. msgstr "Accetta"
  353. msgctxt "@item:inlistbox"
  354. msgid "All Files (*)"
  355. msgstr "Tutti i file (*)"
  356. #, python-brace-format
  357. msgctxt "@item:inlistbox"
  358. msgid "All Supported Types ({0})"
  359. msgstr "Tutti i tipi supportati ({0})"
  360. msgctxt "@text:window"
  361. msgid "Allow sending anonymous data"
  362. msgstr "Consenti l'invio di dati anonimi"
  363. msgctxt "description"
  364. msgid "Allows loading and displaying G-code files."
  365. msgstr "Consente il caricamento e la visualizzazione dei file codice G."
  366. msgctxt "@option:discardOrKeep"
  367. msgid "Always ask me this"
  368. msgstr "Chiedi sempre"
  369. msgctxt "@option:openProject"
  370. msgid "Always ask me this"
  371. msgstr "Chiedi sempre"
  372. msgctxt "@option:discardOrKeep"
  373. msgid "Always discard changed settings"
  374. msgstr "Elimina sempre le impostazioni modificate"
  375. msgctxt "@option:openProject"
  376. msgid "Always import models"
  377. msgstr "Importa sempre i modelli"
  378. msgctxt "@option:openProject"
  379. msgid "Always open as a project"
  380. msgstr "Apri sempre come progetto"
  381. msgctxt "@option:discardOrKeep"
  382. msgid "Always transfer changed settings to new profile"
  383. msgstr "Trasferisci sempre le impostazioni modificate a un nuovo profilo"
  384. msgctxt "@info:tooltip"
  385. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  386. msgstr "Un modello può apparire eccessivamente piccolo se la sua unità di misura è espressa in metri anziché in millimetri. Questi modelli devono essere aumentati?"
  387. msgctxt "@label"
  388. msgid "Annealing"
  389. msgstr ""
  390. msgctxt "@label"
  391. msgid "Anonymous"
  392. msgstr "Anonimo"
  393. msgctxt "@label Description for application component"
  394. msgid "Application framework"
  395. msgstr "Struttura applicazione"
  396. msgctxt "@label"
  397. msgid "Apply Extruder offsets to GCode"
  398. msgstr "Applica offset estrusore a gcode"
  399. msgctxt "@info:title"
  400. msgid "Are you ready for cloud printing?"
  401. msgstr "Pronto per la stampa tramite cloud?"
  402. msgctxt "@label %1 is the name of a print job."
  403. msgid "Are you sure you want to abort %1?"
  404. msgstr "Sei sicuro di voler interrompere %1?"
  405. msgctxt "@label"
  406. msgid "Are you sure you want to abort the print?"
  407. msgstr "Sei sicuro di voler interrompere la stampa?"
  408. msgctxt "@label %1 is the name of a print job."
  409. msgid "Are you sure you want to delete %1?"
  410. msgstr "Sei sicuro di voler cancellare %1?"
  411. msgctxt "@dialog:info"
  412. msgid "Are you sure you want to delete this backup? This cannot be undone."
  413. msgstr "Sei sicuro di voler cancellare questo backup? Questa operazione non può essere annullata."
  414. msgctxt "@label %1 is the application name"
  415. msgid "Are you sure you want to exit %1?"
  416. msgstr "Chiudere %1?"
  417. msgctxt "@label %1 is the name of a print job."
  418. msgid "Are you sure you want to move %1 to the top of the queue?"
  419. msgstr "Sei sicuro di voler spostare %1 all’inizio della coda?"
  420. #, python-brace-format
  421. msgctxt "@message {printer_name} is replaced with the name of the printer"
  422. msgid "Are you sure you want to remove {printer_name} temporarily?"
  423. msgstr "Rimuovere temporaneamente {printer_name}?"
  424. msgctxt "@info:question"
  425. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  426. msgstr "Sei sicuro di voler aprire un nuovo progetto? Questo cancellerà il piano di stampa e tutte le impostazioni non salvate."
  427. msgctxt "@label (%1 is object name)"
  428. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  429. msgstr "Sei sicuro di voler rimuovere %1? Questa operazione non può essere annullata!"
  430. #, python-brace-format
  431. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  432. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  433. msgstr "Rimuovere {0}? Questa operazione non può essere annullata!"
  434. msgctxt "@action:inmenu menubar:edit"
  435. msgid "Arrange All Models"
  436. msgstr "Sistema tutti i modelli"
  437. msgctxt "@action:inmenu menubar:edit"
  438. msgid "Arrange All Models in a grid"
  439. msgstr ""
  440. msgctxt "@label:button"
  441. msgid "Ask a question"
  442. msgstr "Fai una domanda"
  443. msgctxt "@checkbox:description"
  444. msgid "Auto Backup"
  445. msgstr "Backup automatico"
  446. msgctxt "@checkbox:description"
  447. msgid "Automatically create a backup each day that Cura is started."
  448. msgstr "Crea automaticamente un backup ogni giorno in cui viene avviata Cura."
  449. msgctxt "@option:check"
  450. msgid "Automatically drop models to the build plate"
  451. msgstr "Rilascia automaticamente i modelli sul piano di stampa"
  452. msgctxt "@action:button"
  453. msgid "Automatically upgrade Firmware"
  454. msgstr "Aggiorna automaticamente il firmware"
  455. msgctxt "@label"
  456. msgid "Available networked printers"
  457. msgstr "Stampanti disponibili in rete"
  458. msgctxt "@item:inlistbox"
  459. msgid "BMP Image"
  460. msgstr "Immagine BMP"
  461. msgctxt "@button"
  462. msgid "Back"
  463. msgstr "Indietro"
  464. msgctxt "@button:tooltip"
  465. msgid "Back"
  466. msgstr "Indietro"
  467. msgctxt "@info:title"
  468. msgid "Backup"
  469. msgstr ""
  470. msgctxt "@button"
  471. msgid "Backup Now"
  472. msgstr "Esegui backup adesso"
  473. msgctxt "@action:button"
  474. msgid "Backup and Reset Configuration"
  475. msgstr "Backup e reset configurazione"
  476. msgctxt "description"
  477. msgid "Backup and restore your configuration."
  478. msgstr "Effettua il backup o ripristina la configurazione."
  479. msgctxt "@text"
  480. msgid "Backup and sync your material settings and plugins"
  481. msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin"
  482. msgctxt "@description"
  483. msgid "Backup and synchronize your Cura settings."
  484. msgstr "Backup e sincronizzazione delle impostazioni Cura."
  485. msgctxt "@info:title"
  486. msgid "Backups"
  487. msgstr "Backup"
  488. msgctxt "@action:label"
  489. msgid "Base (mm)"
  490. msgstr "Base (mm)"
  491. msgctxt "@action:inmenu menubar:view"
  492. msgid "Bottom View"
  493. msgstr "Vista inferiore"
  494. msgctxt "@label"
  495. msgid "Brand"
  496. msgstr "Marchio"
  497. msgctxt "@title"
  498. msgid "Build Plate Leveling"
  499. msgstr "Livellamento del piano di stampa"
  500. msgctxt "@info:title"
  501. msgid "Build Volume"
  502. msgstr "Volume di stampa"
  503. msgctxt "@label"
  504. msgid "Build plate"
  505. msgstr "Piano di stampa"
  506. msgctxt "@label"
  507. msgid "Build plate shape"
  508. msgstr "Forma del piano di stampa"
  509. msgctxt "@label"
  510. msgid "Bundled Materials"
  511. msgstr "Materiali inseriti nel bundle"
  512. msgctxt "@label"
  513. msgid "Bundled Plugins"
  514. msgstr "Plugin inseriti nel bundle"
  515. msgctxt "@button"
  516. msgid "Buy spool"
  517. msgstr "Acquista bobina"
  518. msgctxt "@label Is followed by the name of an author"
  519. msgid "By"
  520. msgstr "Per mezzo di"
  521. msgctxt "@label Description for application dependency"
  522. msgid "C/C++ Binding library"
  523. msgstr "Libreria vincoli C/C++"
  524. msgctxt "@item:inlistbox"
  525. msgid "COLLADA Digital Asset Exchange"
  526. msgstr "COLLADA Digital Asset Exchange"
  527. msgctxt "@info:status"
  528. msgid "Calculated"
  529. msgstr "Calcolato"
  530. msgctxt "@window:text"
  531. msgid "Camera rendering:"
  532. msgstr "Rendering fotocamera:"
  533. msgctxt "@action:inmenu menubar:view"
  534. msgid "Camera view"
  535. msgstr "Visualizzazione fotocamera"
  536. msgctxt "@info:title"
  537. msgid "Can't Find Location"
  538. msgstr "Impossibile individuare posizione"
  539. msgctxt "@info:title"
  540. msgid "Can't Open Project File"
  541. msgstr "Impossibile aprire il file di progetto"
  542. msgctxt "@label"
  543. msgid "Can't connect to your UltiMaker printer?"
  544. msgstr "Non è possibile effettuare la connessione alla stampante UltiMaker?"
  545. #, python-brace-format
  546. msgctxt "@info:status Don't translate the XML tags <filename>!"
  547. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  548. msgstr "Impossibile importare il profilo da <filename>{0}</filename> prima di aggiungere una stampante."
  549. #, python-brace-format
  550. msgctxt "@info:status"
  551. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  552. msgstr "Impossibile aprire altri file durante il caricamento del codice G. Importazione saltata {0}"
  553. msgctxt "@info:error"
  554. msgid "Can't write to UFP file:"
  555. msgstr "Impossibile scrivere nel file UFP:"
  556. msgctxt "@action:button"
  557. msgid "Cancel"
  558. msgstr "Annulla"
  559. msgctxt "@button"
  560. msgid "Cancel"
  561. msgstr "Annulla"
  562. msgctxt "@button Cancel pre-heating"
  563. msgid "Cancel"
  564. msgstr "Annulla"
  565. msgctxt "@option:check"
  566. msgid "Caution message in g-code reader"
  567. msgstr "Messaggio di avvertimento sul lettore codice G"
  568. msgctxt "@action:inmenu"
  569. msgid "Ce&nter Model on Platform"
  570. msgstr "C&entra modello su piattaforma"
  571. msgctxt "@action:inmenu menubar:edit"
  572. msgid "Center Selected"
  573. msgstr "Centra selezionati"
  574. msgctxt "@action:button"
  575. msgid "Center camera when item is selected"
  576. msgstr "Centratura fotocamera alla selezione dell'elemento"
  577. msgctxt "@info:tooltip"
  578. msgid "Change active post-processing scripts."
  579. msgstr "Modificare gli script di post-elaborazione attivi."
  580. msgctxt "@label"
  581. msgid "Change material %1 from %2 to %3."
  582. msgstr "Cambia materiale %1 da %2 a %3."
  583. msgctxt "@label"
  584. msgid "Change print core %1 from %2 to %3."
  585. msgstr "Cambia print core %1 da %2 a %3."
  586. msgctxt "@info:title"
  587. msgid "Changes detected from your UltiMaker account"
  588. msgstr "Modifiche rilevate dal tuo account UltiMaker"
  589. msgctxt "@title"
  590. msgid "Changes from your account"
  591. msgstr "Modifiche dall'account"
  592. msgctxt "@label:textbox"
  593. msgid "Check all"
  594. msgstr "Controlla tutto"
  595. msgctxt "@button"
  596. msgid "Check for account updates"
  597. msgstr "Verificare gli aggiornamenti dell'account"
  598. msgctxt "@option:check"
  599. msgid "Check for updates on start"
  600. msgstr "Controlla aggiornamenti all’avvio"
  601. msgctxt "@label"
  602. msgid "Checking..."
  603. msgstr "Verifica in corso..."
  604. msgctxt "description"
  605. msgid "Checks for firmware updates."
  606. msgstr "Controlla disponibilità di aggiornamenti firmware."
  607. msgctxt "description"
  608. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  609. msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti."
  610. msgctxt "@label"
  611. msgid ""
  612. "Chooses between the techniques available to generate support. \n"
  613. "\n"
  614. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  615. "\n"
  616. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  617. msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa."
  618. msgctxt "@action:inmenu menubar:edit"
  619. msgid "Clear Build Plate"
  620. msgstr "Cancellare piano di stampa"
  621. msgctxt "@option:check"
  622. msgid "Clear buildplate before loading model into the single instance"
  623. msgstr "Pulire il piano di stampa prima di caricare il modello nella singola istanza"
  624. msgctxt "@text"
  625. msgid "Click the export material archive button."
  626. msgstr "Fare clic sul pulsante Esporta archivio materiali."
  627. msgctxt "@action:button"
  628. msgid "Close"
  629. msgstr "Chiudi"
  630. msgctxt "@title:window %1 is the application name"
  631. msgid "Closing %1"
  632. msgstr "Chiusura di %1"
  633. msgctxt "@action:inmenu"
  634. msgid "Collapse All Categories"
  635. msgstr "Comprimi tutte le categorie"
  636. msgctxt "@label"
  637. msgid "Color"
  638. msgstr "Colore"
  639. msgctxt "@action:label"
  640. msgid "Color Model"
  641. msgstr "Modello a colori"
  642. msgctxt "@label"
  643. msgid "Color scheme"
  644. msgstr "Schema colori"
  645. msgctxt "@info"
  646. msgid "Compare and save."
  647. msgstr "Confronta e risparmia."
  648. msgctxt "@label"
  649. msgid "Compatibility Mode"
  650. msgstr "Modalità di compatibilità"
  651. msgctxt "@label Description for application dependency"
  652. msgid "Compatibility between Python 2 and 3"
  653. msgstr "Compatibilità tra Python 2 e 3"
  654. msgctxt "@title:label"
  655. msgid "Compatible Printers"
  656. msgstr "Stampanti compatibili"
  657. msgctxt "@label"
  658. msgid "Compatible material diameter"
  659. msgstr "Diametro del materiale compatibile"
  660. msgctxt "@header"
  661. msgid "Compatible printers"
  662. msgstr "Stampanti compatibili"
  663. msgctxt "@header"
  664. msgid "Compatible support materials"
  665. msgstr "Materiali di supporto compatibili"
  666. msgctxt "@header"
  667. msgid "Compatible with Material Station"
  668. msgstr "Compatibile con Material Station"
  669. msgctxt "@item:inlistbox"
  670. msgid "Compressed COLLADA Digital Asset Exchange"
  671. msgstr "Compressed COLLADA Digital Asset Exchange"
  672. msgctxt "@item:inlistbox"
  673. msgid "Compressed G-code File"
  674. msgstr "File G-Code compresso"
  675. msgctxt "name"
  676. msgid "Compressed G-code Reader"
  677. msgstr "Lettore codice G compresso"
  678. msgctxt "name"
  679. msgid "Compressed G-code Writer"
  680. msgstr "Writer codice G compresso"
  681. msgctxt "@title:window"
  682. msgid "Configuration Changes"
  683. msgstr "Modifiche configurazione"
  684. msgctxt "@error"
  685. msgid "Configuration not supported"
  686. msgstr "Configurazione non supportata"
  687. msgctxt "@header"
  688. msgid "Configurations"
  689. msgstr "Configurazioni"
  690. msgctxt "@label"
  691. msgid "Configurations"
  692. msgstr "Configurazioni"
  693. msgctxt "@action:inmenu"
  694. msgid "Configure Cura..."
  695. msgstr "Configura Cura..."
  696. msgctxt "@info:tooltip"
  697. msgid "Configure Per Model Settings"
  698. msgstr "Configura impostazioni per modello"
  699. msgctxt "@action"
  700. msgid "Configure group"
  701. msgstr "Configurare il gruppo"
  702. msgctxt "@action:menu"
  703. msgid "Configure setting visibility..."
  704. msgstr "Configura visibilità delle impostazioni..."
  705. msgctxt "@title:window"
  706. msgid "Confirm Diameter Change"
  707. msgstr "Conferma modifica diametro"
  708. msgctxt "@title:window"
  709. msgid "Confirm Remove"
  710. msgstr "Conferma rimozione"
  711. msgctxt "@action:button"
  712. msgid "Connect"
  713. msgstr "Collega"
  714. msgctxt "@button"
  715. msgid "Connect"
  716. msgstr "Collega"
  717. msgctxt "@title:window"
  718. msgid "Connect to Networked Printer"
  719. msgstr "Collega alla stampante in rete"
  720. msgctxt "@action"
  721. msgid "Connect via Network"
  722. msgstr "Collega tramite rete"
  723. msgctxt "@info:status"
  724. msgid "Connected over the network"
  725. msgstr "Collegato alla rete"
  726. msgctxt "@label"
  727. msgid "Connected printers"
  728. msgstr "Stampanti collegate"
  729. msgctxt "@info:status"
  730. msgid "Connected via USB"
  731. msgstr "Connesso tramite USB"
  732. msgctxt "@info:status"
  733. msgid "Connected via cloud"
  734. msgstr "Collegato tramite cloud"
  735. msgctxt "description"
  736. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  737. msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library."
  738. msgctxt "@tooltip:button"
  739. msgid "Consult the UltiMaker Community."
  740. msgstr "Consulta la community di UltiMaker."
  741. msgctxt "@title:window"
  742. msgid "Convert Image"
  743. msgstr "Converti immagine"
  744. msgctxt "@label"
  745. msgid "Cooling Fan Number"
  746. msgstr "Numero ventola di raffreddamento"
  747. msgctxt "@action:menu"
  748. msgid "Copy all changed values to all extruders"
  749. msgstr "Copia tutti i valori modificati su tutti gli estrusori"
  750. msgctxt "@action:inmenu menubar:edit"
  751. msgid "Copy to clipboard"
  752. msgstr ""
  753. msgctxt "@action:menu"
  754. msgid "Copy value to all extruders"
  755. msgstr "Copia valore su tutti gli estrusori"
  756. msgctxt "@label"
  757. msgid "Cost per Meter"
  758. msgstr "Costo al metro"
  759. msgctxt "@info"
  760. msgid "Could not access update information."
  761. msgstr "Non è possibile accedere alle informazioni di aggiornamento."
  762. msgctxt "@label"
  763. msgid "Could not connect to device."
  764. msgstr "Impossibile connettersi al dispositivo."
  765. msgctxt "@info:backup_failed"
  766. msgid "Could not create archive from user data directory: {}"
  767. msgstr "Impossibile creare un archivio dalla directory dei dati utente: {}"
  768. #, python-brace-format
  769. msgctxt "@info:status Don't translate the tag {device}!"
  770. msgid "Could not find a file name when trying to write to {device}."
  771. msgstr "Impossibile trovare un nome file durante il tentativo di scrittura su {device}."
  772. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  773. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  774. msgstr "Impossibile importare materiale <filename>{1}</filename>: <message>%2</message>"
  775. msgctxt "@info:error"
  776. msgid "Could not interpret the server's response."
  777. msgstr "Impossibile interpretare la risposta del server."
  778. msgctxt "@info:error"
  779. msgid "Could not reach Marketplace."
  780. msgstr "Impossibile raggiungere Marketplace."
  781. msgctxt "@message"
  782. msgid "Could not read response."
  783. msgstr "Impossibile leggere la risposta."
  784. msgctxt "@message:text"
  785. msgid "Could not save material archive to {}:"
  786. msgstr "Impossibile salvare archivio materiali in {}:"
  787. #, python-brace-format
  788. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  789. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  790. msgstr "Impossibile salvare <filename>{0}</filename>: <message>{1}</message>"
  791. #, python-brace-format
  792. msgctxt "@info:status"
  793. msgid "Could not save to removable drive {0}: {1}"
  794. msgstr "Impossibile salvare su unità rimovibile {0}: {1}"
  795. msgctxt "@info:text"
  796. msgid "Could not upload the data to the printer."
  797. msgstr "Impossibile caricare i dati sulla stampante."
  798. #, python-brace-format
  799. msgctxt "@info:plugin_failed"
  800. msgid ""
  801. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  802. "No permission to execute process."
  803. msgstr ""
  804. #, python-brace-format
  805. msgctxt "@info:plugin_failed"
  806. msgid ""
  807. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  808. "Operating system is blocking it (antivirus?)"
  809. msgstr ""
  810. #, python-brace-format
  811. msgctxt "@info:plugin_failed"
  812. msgid ""
  813. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  814. "Resource is temporarily unavailable"
  815. msgstr ""
  816. msgctxt "@title:window"
  817. msgid "Crash Report"
  818. msgstr "Rapporto su crash"
  819. msgctxt "@title:window"
  820. msgid "Create Profile"
  821. msgstr "Crea profilo"
  822. msgctxt "@text"
  823. msgid "Create a free UltiMaker Account"
  824. msgstr "Crea un account UltiMaker gratuito"
  825. msgctxt "@button"
  826. msgid "Create a free UltiMaker account"
  827. msgstr "Crea un account UltiMaker gratuito"
  828. msgctxt "@info:tooltip"
  829. msgid "Create a volume in which supports are not printed."
  830. msgstr "Crea un volume in cui i supporti non vengono stampati."
  831. msgctxt "@action:ComboBox Save settings in a new profile"
  832. msgid "Create new"
  833. msgstr "Crea nuovo"
  834. msgctxt "@action:button"
  835. msgid "Create new"
  836. msgstr "Crea nuovo"
  837. msgctxt "@button"
  838. msgid "Create new"
  839. msgstr "Crea nuovo"
  840. msgctxt "@action:tooltip"
  841. msgid "Create new profile from current settings/overrides"
  842. msgstr "Crea nuovo profilo dalle impostazioni/esclusioni correnti"
  843. msgctxt "@tooltip:button"
  844. msgid "Create print projects in Digital Library."
  845. msgstr "Crea progetti di stampa in Digital Library."
  846. msgctxt "description"
  847. msgid "Creates an eraser mesh to block the printing of support in certain places"
  848. msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni"
  849. msgctxt "@info:backup_status"
  850. msgid "Creating your backup..."
  851. msgstr "Creazione del backup in corso..."
  852. msgctxt "@item:inlistbox"
  853. msgid "Cura 15.04 profiles"
  854. msgstr "Profili Cura 15.04"
  855. msgctxt "@title:window"
  856. msgid "Cura Backups"
  857. msgstr "Backup Cura"
  858. msgctxt "name"
  859. msgid "Cura Backups"
  860. msgstr "Backup Cura"
  861. msgctxt "@item:inlistbox"
  862. msgid "Cura Profile"
  863. msgstr "Profilo Cura"
  864. msgctxt "name"
  865. msgid "Cura Profile Reader"
  866. msgstr "Lettore profilo Cura"
  867. msgctxt "name"
  868. msgid "Cura Profile Writer"
  869. msgstr "Writer profilo Cura"
  870. msgctxt "@item:inlistbox"
  871. msgid "Cura Project 3MF file"
  872. msgstr "File 3MF Progetto Cura"
  873. msgctxt "@backuplist:label"
  874. msgid "Cura Version"
  875. msgstr "Versione Cura"
  876. msgctxt "@title:window"
  877. msgid "Cura can't start"
  878. msgstr "Impossibile avviare Cura"
  879. #, python-brace-format
  880. msgctxt "@info:status"
  881. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  882. msgstr "Cura ha rilevato dei profili di materiale non ancora installati sulla stampante host del gruppo {0}."
  883. msgctxt "@info:credit"
  884. msgid ""
  885. "Cura is developed by UltiMaker in cooperation with the community.\n"
  886. "Cura proudly uses the following open source projects:"
  887. msgstr ""
  888. "Cura è stato sviluppato da UltiMaker in cooperazione con la comunità.\n"
  889. "Cura è orgogliosa di utilizzare i seguenti progetti open source:"
  890. msgctxt "@label"
  891. msgid "Cura language"
  892. msgstr "Lingua Cura"
  893. msgctxt "@label Cura version number"
  894. msgid "Cura version"
  895. msgstr "Versione Cura"
  896. msgctxt "name"
  897. msgid "CuraEngine Backend"
  898. msgstr "Back-end CuraEngine"
  899. msgctxt "description"
  900. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  901. msgstr ""
  902. msgctxt "name"
  903. msgid "CuraEngineGradualFlow"
  904. msgstr ""
  905. msgctxt "@label"
  906. msgid "Currency:"
  907. msgstr "Valuta:"
  908. msgctxt "@title:column"
  909. msgid "Current"
  910. msgstr "Corrente"
  911. msgctxt "@title:column"
  912. msgid "Current changes"
  913. msgstr "Modifiche correnti"
  914. msgctxt "@header"
  915. msgid "Custom"
  916. msgstr "Personalizzata"
  917. msgctxt "@label"
  918. msgid "Custom"
  919. msgstr "Personalizzata"
  920. msgctxt "@title:tab"
  921. msgid "Custom"
  922. msgstr "Personalizzata"
  923. msgctxt "@label"
  924. msgid "Custom Material"
  925. msgstr "Materiale personalizzato"
  926. msgctxt "@label"
  927. msgid "Custom profile"
  928. msgstr "Profilo personalizzato"
  929. msgctxt "@info"
  930. msgid "Custom profile name:"
  931. msgstr "Nome profilo personalizzato:"
  932. msgctxt "@label"
  933. msgid "Custom profiles"
  934. msgstr "Profili personalizzati"
  935. msgctxt "@label:header"
  936. msgid "Custom profiles"
  937. msgstr "Profili personalizzati"
  938. msgctxt "@action:inmenu menubar:edit"
  939. msgid "Cut"
  940. msgstr ""
  941. msgctxt "@item:inlistbox"
  942. msgid "Cutting mesh"
  943. msgstr "Ritaglio mesh"
  944. msgctxt "@item:inlistbox"
  945. msgid "Darker is higher"
  946. msgstr "Più scuro è più alto"
  947. msgctxt "@info:title"
  948. msgid "Data Sent"
  949. msgstr "Dati inviati"
  950. msgctxt "@label Description for application dependency"
  951. msgid "Data interchange format"
  952. msgstr "Formato scambio dati"
  953. msgctxt "@button"
  954. msgid "Decline"
  955. msgstr "Non accetto"
  956. msgctxt "@button"
  957. msgid "Decline and close"
  958. msgstr "Rifiuta e chiudi"
  959. msgctxt "@button"
  960. msgid "Decline and remove from account"
  961. msgstr "Rifiuta e rimuovi dall'account"
  962. msgctxt "@info:No intent profile selected"
  963. msgid "Default"
  964. msgstr ""
  965. msgctxt "@label"
  966. msgid "Default"
  967. msgstr ""
  968. msgctxt "@window:text"
  969. msgid "Default behavior for changed setting values when switching to a different profile: "
  970. msgstr "Comportamento predefinito per i valori di impostazione modificati al passaggio a un profilo diverso: "
  971. msgctxt "@info:tooltip"
  972. msgid "Default behavior when opening a project file"
  973. msgstr "Comportamento predefinito all'apertura di un file progetto"
  974. msgctxt "@window:text"
  975. msgid "Default behavior when opening a project file: "
  976. msgstr "Comportamento predefinito all'apertura di un file progetto: "
  977. msgctxt "@action:button"
  978. msgid "Defaults"
  979. msgstr "Valori predefiniti"
  980. msgctxt "@label"
  981. msgid "Defines the thickness of your part side walls, roof and floor."
  982. msgstr "Definisce lo spessore delle pareti laterali, del tetto e del pavimento."
  983. msgctxt "@label"
  984. msgid "Delete"
  985. msgstr "Cancella"
  986. msgctxt "@dialog:title"
  987. msgid "Delete Backup"
  988. msgstr "Cancella backup"
  989. msgctxt "@action:inmenu"
  990. msgid "Delete Model"
  991. msgstr "Elimina modello"
  992. msgctxt "@action:inmenu menubar:edit"
  993. msgid "Delete Selected"
  994. msgstr "Cancella selezionati"
  995. msgctxt "@window:title"
  996. msgid "Delete print job"
  997. msgstr "Cancella processo di stampa"
  998. msgctxt "@label"
  999. msgid "Density"
  1000. msgstr "Densità"
  1001. msgctxt "@label Description for development tool"
  1002. msgid "Dependency and package manager"
  1003. msgstr "Gestore della dipendenza e del pacchetto"
  1004. msgctxt "@action:label"
  1005. msgid "Depth (mm)"
  1006. msgstr "Profondità (mm)"
  1007. msgctxt "@action:label"
  1008. msgid "Derivative from"
  1009. msgstr "Derivato da"
  1010. msgctxt "@header"
  1011. msgid "Description"
  1012. msgstr "Descrizione"
  1013. msgctxt "@label"
  1014. msgid "Description"
  1015. msgstr "Descrizione"
  1016. msgctxt "@action:button"
  1017. msgid "Details"
  1018. msgstr "Dettagli"
  1019. msgctxt "@label"
  1020. msgid "Diameter"
  1021. msgstr "Diametro"
  1022. msgctxt "@button"
  1023. msgid "Disable"
  1024. msgstr "Disabilita"
  1025. msgctxt "@action:inmenu"
  1026. msgid "Disable Extruder"
  1027. msgstr "Disabilita estrusore"
  1028. msgctxt "@option:discardOrKeep"
  1029. msgid "Discard and never ask again"
  1030. msgstr "Elimina e non chiedere nuovamente"
  1031. msgctxt "@action:button"
  1032. msgid "Discard changes"
  1033. msgstr "Elimina modifiche"
  1034. msgctxt "@action:button"
  1035. msgid "Discard current changes"
  1036. msgstr "Elimina le modifiche correnti"
  1037. msgctxt "@title:window"
  1038. msgid "Discard or Keep changes"
  1039. msgstr "Elimina o mantieni modifiche"
  1040. msgctxt "@button"
  1041. msgid "Dismiss"
  1042. msgstr "Rimuovi"
  1043. msgctxt "@label"
  1044. msgid "Display Name"
  1045. msgstr "Visualizza nome"
  1046. msgctxt "@option:check"
  1047. msgid "Display model errors"
  1048. msgstr "Visualizzare gli errori del modello"
  1049. msgctxt "@option:check"
  1050. msgid "Display overhang"
  1051. msgstr "Visualizza sbalzo"
  1052. msgctxt "@info:option_text"
  1053. msgid "Do not show this message again"
  1054. msgstr "Non mostrare nuovamente questo messaggio"
  1055. msgctxt "@info:generic"
  1056. msgid "Do you want to sync material and software packages with your account?"
  1057. msgstr "Desiderate sincronizzare pacchetti materiale e software con il vostro account?"
  1058. msgctxt "@action:label"
  1059. msgid "Don't show project summary on save again"
  1060. msgstr "Non mostrare il riepilogo di progetto alla ripetizione di salva"
  1061. msgctxt "@action:menu"
  1062. msgid "Don't show this setting"
  1063. msgstr "Nascondi questa impostazione"
  1064. msgctxt "@label"
  1065. msgid "Don't support overlaps"
  1066. msgstr "Non supportano le sovrapposizioni"
  1067. msgctxt "@button"
  1068. msgid "Done"
  1069. msgstr "Eseguito"
  1070. msgctxt "@button"
  1071. msgid "Downgrade"
  1072. msgstr ""
  1073. msgctxt "@button"
  1074. msgid "Downgrading..."
  1075. msgstr "Downgrade in corso..."
  1076. msgctxt "@label"
  1077. msgid "Draft"
  1078. msgstr "Bozza"
  1079. msgctxt "@action:button"
  1080. msgid "Duplicate"
  1081. msgstr "Duplica"
  1082. msgctxt "@title:window"
  1083. msgid "Duplicate Profile"
  1084. msgstr "Duplica profilo"
  1085. msgctxt "@backup_limit_info"
  1086. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1087. msgstr "Durante la fase di anteprima, saranno visibili solo 5 backup. Rimuovi un backup per vedere quelli precedenti."
  1088. msgctxt "@title:menu menubar:toplevel"
  1089. msgid "E&xtensions"
  1090. msgstr "Es&tensioni"
  1091. msgctxt "@action:button"
  1092. msgid "Edit"
  1093. msgstr "Modifica"
  1094. msgctxt "@action:button"
  1095. msgid "Eject"
  1096. msgstr "Rimuovi"
  1097. #, python-brace-format
  1098. msgctxt "@action"
  1099. msgid "Eject removable device {0}"
  1100. msgstr "Rimuovi il dispositivo rimovibile {0}"
  1101. #, python-brace-format
  1102. msgctxt "@info:status"
  1103. msgid "Ejected {0}. You can now safely remove the drive."
  1104. msgstr "Espulso {0}. È ora possibile rimuovere in modo sicuro l'unità."
  1105. msgctxt "@label"
  1106. msgid "Empty"
  1107. msgstr "Vuoto"
  1108. msgctxt "@button"
  1109. msgid "Enable"
  1110. msgstr "Abilita"
  1111. msgctxt "@action:inmenu"
  1112. msgid "Enable Extruder"
  1113. msgstr "Abilita estrusore"
  1114. msgctxt "@label"
  1115. 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. Disabling it results in a skirt around object by default."
  1116. msgstr ""
  1117. msgctxt "@label"
  1118. msgid "Enabled"
  1119. msgstr "Abilitato"
  1120. msgctxt "description"
  1121. msgid "Enables ability to generate printable geometry from 2D image files."
  1122. msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D."
  1123. msgctxt "@title:label"
  1124. msgid "End G-code"
  1125. msgstr "Codice G fine"
  1126. msgctxt "@label"
  1127. msgid "End-to-end solution for fused filament 3D printing."
  1128. msgstr "Soluzione end-to-end per la stampa 3D con filamento fuso."
  1129. msgctxt "@info:title"
  1130. msgid "EnginePlugin"
  1131. msgstr ""
  1132. msgctxt "@label"
  1133. msgid "Engineering"
  1134. msgstr ""
  1135. msgctxt "@option:check"
  1136. msgid "Ensure models are kept apart"
  1137. msgstr "Assicurarsi che i modelli siano mantenuti separati"
  1138. msgctxt "@label"
  1139. msgid "Enter the IP address of your printer on the network."
  1140. msgstr "Inserire l'indirizzo IP della stampante in rete."
  1141. msgctxt "@text"
  1142. msgid "Enter your printer's IP address."
  1143. msgstr "Inserire l'indirizzo IP della stampante."
  1144. msgctxt "@info:title"
  1145. msgid "Error"
  1146. msgstr "Errore"
  1147. msgctxt "@title:groupbox"
  1148. msgid "Error traceback"
  1149. msgstr "Analisi errori"
  1150. msgctxt "@label"
  1151. msgid "Estimated time left"
  1152. msgstr "Tempo residuo stimato"
  1153. msgctxt "@action:inmenu"
  1154. msgid "Exit Full Screen"
  1155. msgstr "Esci da schermo intero"
  1156. msgctxt "@label"
  1157. msgid "Experimental"
  1158. msgstr "Sperimentale"
  1159. msgctxt "@action:button"
  1160. msgid "Export"
  1161. msgstr "Esporta"
  1162. msgctxt "@title:window"
  1163. msgid "Export All Materials"
  1164. msgstr "Esporta tutti i materiali"
  1165. msgctxt "@title:window"
  1166. msgid "Export Material"
  1167. msgstr "Esporta materiale"
  1168. msgctxt "@title:window"
  1169. msgid "Export Profile"
  1170. msgstr "Esporta profilo"
  1171. msgctxt "@action:inmenu menubar:file"
  1172. msgid "Export Selection..."
  1173. msgstr "Esporta selezione..."
  1174. msgctxt "@button"
  1175. msgid "Export material archive"
  1176. msgstr "Esporta archivio materiali"
  1177. msgctxt "@info:title"
  1178. msgid "Export succeeded"
  1179. msgstr "Esportazione riuscita"
  1180. #, python-brace-format
  1181. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1182. msgid "Exported profile to <filename>{0}</filename>"
  1183. msgstr "Profilo esportato su <filename>{0}</filename>"
  1184. msgctxt "@tooltip:button"
  1185. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1186. msgstr "Estendi UltiMaker Cura con plugin e profili del materiale."
  1187. msgctxt "description"
  1188. msgid "Extension that allows for user created scripts for post processing"
  1189. msgstr "Estensione che consente la post-elaborazione degli script creati da utente"
  1190. msgctxt "@label"
  1191. msgid "Extruder"
  1192. msgstr "Estrusore"
  1193. msgctxt "@action:label"
  1194. msgid "Extruder %1"
  1195. msgstr "Estrusore %1"
  1196. msgctxt "@title:label"
  1197. msgid "Extruder End G-code"
  1198. msgstr "Codice G fine estrusore"
  1199. msgctxt "@title:label"
  1200. msgid "Extruder Start G-code"
  1201. msgstr "Codice G avvio estrusore"
  1202. msgctxt "@info:title"
  1203. msgid "Extruder(s) Disabled"
  1204. msgstr "Estrusore disabilitato"
  1205. msgctxt "@label:status"
  1206. msgid "Failed"
  1207. msgstr "Non riuscita"
  1208. msgctxt "@text:error"
  1209. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1210. msgstr "Impossibile connettersi a Digital Factory per sincronizzare i materiali con alcune delle stampanti."
  1211. msgctxt "@text:error"
  1212. msgid "Failed to connect to Digital Factory."
  1213. msgstr "Impossibile connettersi a Digital Factory."
  1214. msgctxt "@text:error"
  1215. msgid "Failed to create archive of materials to sync with printers."
  1216. msgstr "Impossibile creare archivio di materiali da sincronizzare con le stampanti."
  1217. #, python-brace-format
  1218. msgctxt "@info:status"
  1219. msgid "Failed to eject {0}. Another program may be using the drive."
  1220. msgstr "Espulsione non riuscita {0}. È possibile che un altro programma stia utilizzando l’unità."
  1221. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1222. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1223. msgstr "Impossibile esportare il materiale su <filename>%1</filename>: <message>%2</message>"
  1224. #, python-brace-format
  1225. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1226. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1227. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: <message>{1}</message>"
  1228. #, python-brace-format
  1229. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1230. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1231. msgstr "Impossibile esportare il profilo su <filename>{0}</filename>: Rilevata anomalia durante scrittura plugin."
  1232. #, python-brace-format
  1233. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1234. msgid "Failed to import profile from <filename>{0}</filename>:"
  1235. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  1236. #, python-brace-format
  1237. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1238. msgid "Failed to import profile from <filename>{0}</filename>:"
  1239. msgstr "Impossibile importare il profilo da <filename>{0}</filename>:"
  1240. #, python-brace-format
  1241. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1242. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1243. msgstr "Impossibile importare il profilo da <filename>{0}</filename>: {1}"
  1244. msgctxt "@button"
  1245. msgid "Failed to load packages:"
  1246. msgstr "Impossibile caricare pacchetti:"
  1247. msgctxt "@text:error"
  1248. msgid "Failed to load the archive of materials to sync it with printers."
  1249. msgstr "Impossibile caricare l'archivio di materiali da sincronizzare con le stampanti."
  1250. msgctxt "@message:title"
  1251. msgid "Failed to save material archive"
  1252. msgstr "Impossibile salvare archivio materiali"
  1253. msgctxt "@label:category menu label"
  1254. msgid "Favorites"
  1255. msgstr "Preferiti"
  1256. msgctxt "@label"
  1257. msgid "Filament Cost"
  1258. msgstr "Costo del filamento"
  1259. msgctxt "@label"
  1260. msgid "Filament length"
  1261. msgstr "Lunghezza del filamento"
  1262. msgctxt "@label"
  1263. msgid "Filament weight"
  1264. msgstr "Peso del filamento"
  1265. msgctxt "@title:window"
  1266. msgid "File Already Exists"
  1267. msgstr "Il file esiste già"
  1268. msgctxt "@info:title"
  1269. msgid "File Saved"
  1270. msgstr "File salvato"
  1271. #, python-brace-format
  1272. msgctxt "@info:status"
  1273. msgid "File {0} does not contain any valid profile."
  1274. msgstr "Il file {0} non contiene nessun profilo valido."
  1275. msgctxt "@label:textbox"
  1276. msgid "Filter..."
  1277. msgstr "Filtro..."
  1278. msgctxt "@info:title"
  1279. msgid "Finding Location"
  1280. msgstr "Ricerca posizione"
  1281. msgctxt "@info:status"
  1282. msgid "Finding new location for objects"
  1283. msgstr "Ricerca nuova posizione per gli oggetti"
  1284. msgctxt "@action:button"
  1285. msgid "Finish"
  1286. msgstr "Fine"
  1287. msgctxt "@label:status"
  1288. msgid "Finished"
  1289. msgstr "Terminato"
  1290. msgctxt "@label:status"
  1291. msgid "Finishes %1 at %2"
  1292. msgstr "Finisce %1 a %2"
  1293. msgctxt "@title:window"
  1294. msgid "Firmware Update"
  1295. msgstr "Aggiornamento del firmware"
  1296. msgctxt "name"
  1297. msgid "Firmware Update Checker"
  1298. msgstr "Controllo aggiornamento firmware"
  1299. msgctxt "name"
  1300. msgid "Firmware Updater"
  1301. msgstr "Aggiornamento firmware"
  1302. msgctxt "@label"
  1303. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1304. msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware."
  1305. msgctxt "@label"
  1306. msgid "Firmware can not be updated because there is no connection with the printer."
  1307. msgstr "Impossibile aggiornare il firmware: nessun collegamento con la stampante."
  1308. msgctxt "@label"
  1309. 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."
  1310. 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."
  1311. msgctxt "@label"
  1312. msgid "Firmware update completed."
  1313. msgstr "Aggiornamento del firmware completato."
  1314. msgctxt "@label"
  1315. msgid "Firmware update failed due to an communication error."
  1316. msgstr "Aggiornamento firmware non riuscito a causa di un errore di comunicazione."
  1317. msgctxt "@label"
  1318. msgid "Firmware update failed due to an input/output error."
  1319. msgstr "Aggiornamento firmware non riuscito a causa di un errore di input/output."
  1320. msgctxt "@label"
  1321. msgid "Firmware update failed due to an unknown error."
  1322. msgstr "Aggiornamento firmware non riuscito a causa di un errore sconosciuto."
  1323. msgctxt "@label"
  1324. msgid "Firmware update failed due to missing firmware."
  1325. msgstr "Aggiornamento firmware non riuscito per firmware mancante."
  1326. msgctxt "@label"
  1327. msgid "Firmware version"
  1328. msgstr "Versione firmware"
  1329. msgctxt "@label"
  1330. msgid "First available"
  1331. msgstr "Primo disponibile"
  1332. msgctxt "@label:listbox"
  1333. msgid "Flow"
  1334. msgstr "Flusso"
  1335. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1336. msgid "Follow the following steps to load the new material profiles to your printer."
  1337. msgstr "Eseguire le operazioni descritte di seguito per caricare nuovi profili del materiale nella stampante."
  1338. msgctxt "@info"
  1339. msgid "Follow the procedure to add a new printer"
  1340. msgstr "Segui alla procedura per aggiungere una nuova stampante"
  1341. msgctxt "@text"
  1342. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1343. msgstr "Seguendo alcuni semplici passaggi, sarà possibile sincronizzare tutti i profili del materiale con le stampanti."
  1344. msgctxt "@label"
  1345. msgid "Font"
  1346. msgstr "Font"
  1347. msgctxt "@label"
  1348. 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."
  1349. 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."
  1350. msgctxt "@info:tooltip"
  1351. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1352. msgstr "Per le litofanie, è disponibile un semplice modello logaritmico per la traslucenza. Per le mappe delle altezze, i valori in pixel corrispondono alle altezze in modo lineare."
  1353. msgctxt "@info:tooltip"
  1354. 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."
  1355. 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."
  1356. msgctxt "@option:check"
  1357. msgid "Force layer view compatibility mode (restart required)"
  1358. msgstr "Forzare la modalità di compatibilità visualizzazione strato (riavvio necessario)"
  1359. msgctxt "@action:inmenu menubar:view"
  1360. msgid "Front View"
  1361. msgstr "Visualizzazione frontale"
  1362. msgctxt "@info:tooltip"
  1363. msgid "Front View"
  1364. msgstr "Visualizzazione frontale"
  1365. msgctxt "@item:inlistbox"
  1366. msgid "G File"
  1367. msgstr "File G"
  1368. msgctxt "@info:title"
  1369. msgid "G-code Details"
  1370. msgstr "Dettagli codice G"
  1371. msgctxt "@item:inlistbox"
  1372. msgid "G-code File"
  1373. msgstr "File G-Code"
  1374. msgctxt "name"
  1375. msgid "G-code Profile Reader"
  1376. msgstr "Lettore profilo codice G"
  1377. msgctxt "name"
  1378. msgid "G-code Reader"
  1379. msgstr "Lettore codice G"
  1380. msgctxt "name"
  1381. msgid "G-code Writer"
  1382. msgstr "Writer codice G"
  1383. msgctxt "@label"
  1384. msgid "G-code flavor"
  1385. msgstr "Versione codice G"
  1386. msgctxt "@label Description for application component"
  1387. msgid "G-code generator"
  1388. msgstr "Generatore codice G"
  1389. msgctxt "@error:not supported"
  1390. msgid "GCodeGzWriter does not support text mode."
  1391. msgstr "GCodeGzWriter non supporta la modalità di testo."
  1392. msgctxt "@error:not supported"
  1393. msgid "GCodeWriter does not support non-text mode."
  1394. msgstr "GCodeWriter non supporta la modalità non di testo."
  1395. msgctxt "@item:inlistbox"
  1396. msgid "GIF Image"
  1397. msgstr "Immagine GIF"
  1398. msgctxt "@label Description for application dependency"
  1399. msgid "GUI framework"
  1400. msgstr "Struttura GUI"
  1401. msgctxt "@label Description for application dependency"
  1402. msgid "GUI framework bindings"
  1403. msgstr "Vincoli struttura GUI"
  1404. msgctxt "@label"
  1405. msgid "Gantry Height"
  1406. msgstr "Altezza gantry"
  1407. msgctxt "@title:tab"
  1408. msgid "General"
  1409. msgstr "Generale"
  1410. msgctxt "@label"
  1411. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1412. msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa."
  1413. msgctxt "@label Description for development tool"
  1414. msgid "Generating Windows installers"
  1415. msgstr "Generazione installatori Windows"
  1416. msgctxt "@label:category menu label"
  1417. msgid "Generic"
  1418. msgstr "Generale"
  1419. msgctxt "@option:check"
  1420. msgid "Get notifications for plugin updates"
  1421. msgstr "Ricevi notifiche di aggiornamenti plugin"
  1422. msgctxt "@action"
  1423. msgid "Get started"
  1424. msgstr "Per iniziare"
  1425. msgctxt "@title:tab"
  1426. msgid "Global Settings"
  1427. msgstr "Impostazioni globali"
  1428. msgctxt "@label Description for application component"
  1429. msgid "Graphical user interface"
  1430. msgstr "Interfaccia grafica utente"
  1431. msgctxt "@label"
  1432. msgid "Grid Placement"
  1433. msgstr ""
  1434. #, python-brace-format
  1435. msgctxt "@label"
  1436. msgid "Group #{group_nr}"
  1437. msgstr "Gruppo #{group_nr}"
  1438. msgctxt "@tooltip of pre-heat"
  1439. 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."
  1440. 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."
  1441. msgctxt "@tooltip of pre-heat"
  1442. 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."
  1443. 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."
  1444. msgctxt "@label"
  1445. msgid "Heated Build Plate (official kit or self-built)"
  1446. msgstr "Piano di stampa riscaldato (kit ufficiale o integrato)"
  1447. msgctxt "@label"
  1448. msgid "Heated bed"
  1449. msgstr "Piano riscaldato"
  1450. msgctxt "@label"
  1451. msgid "Heated build volume"
  1452. msgstr "Volume di stampa riscaldato"
  1453. msgctxt "@action:label"
  1454. msgid "Height (mm)"
  1455. msgstr "Altezza (mm)"
  1456. msgctxt "@label"
  1457. msgid "Helpers"
  1458. msgstr "Helper"
  1459. msgctxt "@label"
  1460. msgid "Hide all connected printers"
  1461. msgstr "Nascondi tutte le stampanti collegate"
  1462. msgctxt "@action:menu"
  1463. msgid "Hide this setting"
  1464. msgstr "Nascondi questa impostazione"
  1465. msgctxt "@info:tooltip"
  1466. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1467. msgstr "Evidenziare le superfici mancanti o estranee del modello utilizzando i simboli di avvertenza. I percorsi degli utensili spesso ignoreranno parti della geometria prevista."
  1468. msgctxt "@info:tooltip"
  1469. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1470. msgstr "Evidenzia in rosso le zone non supportate del modello. In assenza di supporto, queste aree non saranno stampate in modo corretto."
  1471. msgctxt "@button"
  1472. msgid "How to load new material profiles to my printer"
  1473. msgstr "Come caricare nuovi profili del materiale nella stampante"
  1474. msgctxt "@action:button"
  1475. msgid "How to update"
  1476. msgstr "Modalità di aggiornamento"
  1477. msgctxt "@text:window"
  1478. msgid "I don't want to send anonymous data"
  1479. msgstr "Non desidero inviare dati anonimi"
  1480. msgctxt "@label:status"
  1481. msgid "Idle"
  1482. msgstr "Ferma"
  1483. msgctxt "@label"
  1484. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1485. msgstr "Se stai cercando di aggiungere una nuova stampante UltiMaker a Cura"
  1486. msgctxt "@label"
  1487. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1488. msgstr "Se la stampante non è nell’elenco, leggere la <a href='%1'>guida alla risoluzione dei problemi per la stampa in rete</a>"
  1489. msgctxt "name"
  1490. msgid "Image Reader"
  1491. msgstr "Lettore di immagine"
  1492. msgctxt "@action:button"
  1493. msgid "Import"
  1494. msgstr "Importa"
  1495. msgctxt "@title:window"
  1496. msgid "Import Material"
  1497. msgstr "Importa materiale"
  1498. msgctxt "@title:window"
  1499. msgid "Import Profile"
  1500. msgstr "Importa profilo"
  1501. msgctxt "@action:button"
  1502. msgid "Import all as models"
  1503. msgstr "Importa tutto come modelli"
  1504. msgctxt "@action:button"
  1505. msgid "Import models"
  1506. msgstr "Importa i modelli"
  1507. msgctxt "@label:MonitorStatus"
  1508. msgid "In maintenance. Please check the printer"
  1509. msgstr "In manutenzione. Controllare la stampante"
  1510. msgctxt "@info"
  1511. msgid "In order to monitor your print from Cura, please connect the printer."
  1512. msgstr "Al fine di monitorare la stampa da Cura, collegare la stampante."
  1513. msgctxt "@label"
  1514. msgid "In order to start using Cura you will need to configure a printer."
  1515. msgstr "Per utilizzare Cura, è necessario configurare una stampante."
  1516. msgctxt "@button"
  1517. msgid "In order to use the package you will need to restart Cura"
  1518. msgstr "Per utilizzare il pacchetto è necessario riavviare Cura"
  1519. msgctxt "@label"
  1520. msgid "Infill"
  1521. msgstr "Riempimento"
  1522. msgctxt "@tooltip"
  1523. msgid "Infill"
  1524. msgstr "Riempimento"
  1525. msgctxt "infill_sparse_density description"
  1526. msgid "Infill Density"
  1527. msgstr "Densità del riempimento"
  1528. msgctxt "@action:label"
  1529. msgid "Infill Pattern"
  1530. msgstr "Configurazione di riempimento"
  1531. msgctxt "@item:inlistbox"
  1532. msgid "Infill mesh only"
  1533. msgstr "Solo maglia di riempimento"
  1534. msgctxt "@label"
  1535. msgid "Infill overlapping with this model is modified."
  1536. msgstr "La sovrapposizione del riempimento con questo modello è stata modificata."
  1537. msgctxt "@info:title"
  1538. msgid "Information"
  1539. msgstr "Informazioni"
  1540. msgctxt "@title"
  1541. msgid "Information"
  1542. msgstr "Informazioni"
  1543. msgctxt "@info:progress"
  1544. msgid "Initializing Active Machine..."
  1545. msgstr "Inizializzazione Active Machine in corso..."
  1546. msgctxt "@info:progress"
  1547. msgid "Initializing build volume..."
  1548. msgstr "Inizializzazione volume di stampa in corso..."
  1549. msgctxt "@info:progress"
  1550. msgid "Initializing engine..."
  1551. msgstr "Inizializzazione motore in corso..."
  1552. msgctxt "@info:progress"
  1553. msgid "Initializing machine manager..."
  1554. msgstr "Inizializzazione gestore macchina in corso..."
  1555. msgctxt "@label"
  1556. msgid "Inner Wall"
  1557. msgstr "Parete interna"
  1558. msgctxt "@tooltip"
  1559. msgid "Inner Walls"
  1560. msgstr "Pareti interne"
  1561. msgctxt "@text"
  1562. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1563. msgstr "Inserire la chiavetta USB nella stampante e avviare la procedura per caricare nuovi profili del materiale."
  1564. msgctxt "@button"
  1565. msgid "Install"
  1566. msgstr "Installazione"
  1567. msgctxt "@header"
  1568. msgid "Install Materials"
  1569. msgstr "Installa materiali"
  1570. msgctxt "@window:title"
  1571. msgid "Install Package"
  1572. msgstr "Installa il pacchetto"
  1573. msgctxt "@action:button"
  1574. msgid "Install Packages"
  1575. msgstr ""
  1576. msgctxt "@header"
  1577. msgid "Install Packages"
  1578. msgstr ""
  1579. msgctxt "@header"
  1580. msgid "Install Plugins"
  1581. msgstr "Installa plugin"
  1582. msgctxt "@action:button"
  1583. msgid "Install missing packages"
  1584. msgstr ""
  1585. msgctxt "@title"
  1586. msgid "Install missing packages"
  1587. msgstr ""
  1588. msgctxt "@label"
  1589. msgid "Install missing packages from project file."
  1590. msgstr ""
  1591. msgctxt "@button"
  1592. msgid "Install pending updates"
  1593. msgstr "Installare gli aggiornamenti in attesa"
  1594. msgctxt "@label"
  1595. msgid "Installed Materials"
  1596. msgstr "Materiali installati"
  1597. msgctxt "@label"
  1598. msgid "Installed Plugins"
  1599. msgstr "Plugin installati"
  1600. msgctxt "@button"
  1601. msgid "Installing..."
  1602. msgstr "Installazione in corso..."
  1603. msgctxt "@action:label"
  1604. msgid "Intent"
  1605. msgstr ""
  1606. msgctxt "@label"
  1607. msgid "Interface"
  1608. msgstr "Interfaccia"
  1609. msgctxt "@label Description for application component"
  1610. msgid "Interprocess communication library"
  1611. msgstr "Libreria di comunicazione intra-processo"
  1612. msgctxt "@title:window"
  1613. msgid "Invalid IP address"
  1614. msgstr "Indirizzo IP non valido"
  1615. msgctxt "@info:status"
  1616. msgid "Invalid file URL:"
  1617. msgstr "File URL non valido:"
  1618. msgctxt "@action:button"
  1619. msgid "Invert the direction of camera zoom."
  1620. msgstr "Inverti la direzione dello zoom della fotocamera."
  1621. msgctxt "@label"
  1622. msgid "Is printed as support."
  1623. msgstr "Viene stampato come supporto."
  1624. msgctxt "@text"
  1625. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1626. msgstr "Nessuna stampante compatibile collegata a Digital Factory. Accertarsi che la stampante sia collegata e che il firmware più recente sia in esecuzione."
  1627. msgctxt "@item:inlistbox"
  1628. msgid "JPEG Image"
  1629. msgstr "Immagine JPEG"
  1630. msgctxt "@item:inlistbox"
  1631. msgid "JPG Image"
  1632. msgstr "Immagine JPG"
  1633. msgctxt "@label Description for application dependency"
  1634. msgid "JSON parser"
  1635. msgstr "Analizzatore JSON"
  1636. msgctxt "@label"
  1637. msgid "Job Name"
  1638. msgstr "Nome del processo"
  1639. msgctxt "@label"
  1640. msgid "Jog Distance"
  1641. msgstr "Distanza Jog"
  1642. msgctxt "@label"
  1643. msgid "Jog Position"
  1644. msgstr "Posizione Jog"
  1645. msgctxt "@option:discardOrKeep"
  1646. msgid "Keep and never ask again"
  1647. msgstr "Mantieni e non chiedere nuovamente"
  1648. msgctxt "@action:button"
  1649. msgid "Keep changes"
  1650. msgstr "Mantieni modifiche"
  1651. msgctxt "@action:button"
  1652. msgid "Keep printer configurations"
  1653. msgstr "Mantenere le configurazioni delle stampanti"
  1654. msgctxt "@action:menu"
  1655. msgid "Keep this setting visible"
  1656. msgstr "Mantieni visibile questa impostazione"
  1657. msgctxt "@label The argument is a timestamp"
  1658. msgid "Last update: %1"
  1659. msgstr "Ultimo aggiornamento: %1"
  1660. msgctxt "@label:listbox"
  1661. msgid "Layer Thickness"
  1662. msgstr "Spessore layer"
  1663. msgctxt "@item:inlistbox"
  1664. msgid "Layer view"
  1665. msgstr "Visualizzazione strato"
  1666. msgctxt "@button:label"
  1667. msgid "Learn More"
  1668. msgstr "Ulteriori Informazioni"
  1669. msgctxt "@button"
  1670. msgid "Learn how to connect your printer to Digital Factory"
  1671. msgstr "Scopri come collegare la stampante a Digital Factory"
  1672. msgctxt "@tooltip:button"
  1673. msgid "Learn how to get started with UltiMaker Cura."
  1674. msgstr "Scopri come iniziare a utilizzare UltiMaker Cura."
  1675. msgctxt "@action"
  1676. msgid "Learn more"
  1677. msgstr "Ulteriori informazioni"
  1678. msgctxt "@action:button"
  1679. msgid "Learn more"
  1680. msgstr "Ulteriori informazioni"
  1681. msgctxt "@button"
  1682. msgid "Learn more"
  1683. msgstr "Ulteriori informazioni"
  1684. msgctxt "@button:label"
  1685. msgid "Learn more"
  1686. msgstr "Ulteriori informazioni"
  1687. msgctxt "@action:button"
  1688. msgid "Learn more about Cura print profiles"
  1689. msgstr "Ulteriori informazioni sui profili di stampa di Cura"
  1690. msgctxt "@button"
  1691. msgid "Learn more about adding printers to Cura"
  1692. msgstr "Scopri di più sull'aggiunta di stampanti a Cura"
  1693. msgctxt "@label"
  1694. msgid "Learn more about project packages."
  1695. msgstr ""
  1696. msgctxt "@action:inmenu menubar:view"
  1697. msgid "Left Side View"
  1698. msgstr "Visualizzazione lato sinistro"
  1699. msgctxt "@info:tooltip"
  1700. msgid "Left View"
  1701. msgstr "Vista sinistra"
  1702. msgctxt "name"
  1703. msgid "Legacy Cura Profile Reader"
  1704. msgstr "Lettore legacy profilo Cura"
  1705. msgctxt "@tooltip:button"
  1706. msgid "Let developers know that something is going wrong."
  1707. msgstr "Informa gli sviluppatori che si è verificato un errore."
  1708. msgctxt "@action"
  1709. msgid "Level build plate"
  1710. msgstr "Livella piano di stampa"
  1711. msgctxt "@item:inlistbox"
  1712. msgid "Lighter is higher"
  1713. msgstr "Più chiaro è più alto"
  1714. msgctxt "@label:listbox"
  1715. msgid "Line Type"
  1716. msgstr "Tipo di linea"
  1717. msgctxt "@label:listbox"
  1718. msgid "Line Width"
  1719. msgstr "Larghezza della linea"
  1720. msgctxt "@item:inlistbox"
  1721. msgid "Linear"
  1722. msgstr "Lineare"
  1723. msgctxt "@label Description for development tool"
  1724. msgid "Linux cross-distribution application deployment"
  1725. msgstr "Apertura applicazione distribuzione incrociata Linux"
  1726. msgctxt "@label"
  1727. msgid "Load %3 as material %1 (This cannot be overridden)."
  1728. msgstr "Caricare %3 come materiale %1 (Operazione non annullabile)."
  1729. msgctxt "@button"
  1730. msgid "Load more"
  1731. msgstr "Carica altro"
  1732. msgctxt "@button"
  1733. msgid "Loading"
  1734. msgstr "Caricamento in corso"
  1735. msgctxt "@action:warning"
  1736. msgid "Loading a project will clear all models on the build plate."
  1737. msgstr "Il caricamento di un progetto annulla tutti i modelli sul piano di stampa."
  1738. msgctxt "@label"
  1739. msgid "Loading available configurations from the printer..."
  1740. msgstr "Caricamento in corso configurazioni disponibili dalla stampante..."
  1741. msgctxt "@info:progress"
  1742. msgid "Loading interface..."
  1743. msgstr "Caricamento interfaccia in corso..."
  1744. msgctxt "@info:progress"
  1745. msgid "Loading machines..."
  1746. msgstr "Caricamento macchine in corso..."
  1747. msgctxt "@label:status"
  1748. msgid "Loading..."
  1749. msgstr "Caricamento in corso..."
  1750. msgctxt "@title"
  1751. msgid "Loading..."
  1752. msgstr "Caricamento in corso..."
  1753. msgctxt "@label:category menu label"
  1754. msgid "Local printers"
  1755. msgstr "Stampanti locali"
  1756. msgctxt "@info:title"
  1757. msgid "Log-in failed"
  1758. msgstr "Log in non riuscito"
  1759. msgctxt "@info:title"
  1760. msgid "Login failed"
  1761. msgstr "Login non riuscito"
  1762. msgctxt "@title:groupbox"
  1763. msgid "Logs"
  1764. msgstr "Registri"
  1765. msgctxt "description"
  1766. msgid "Logs certain events so that they can be used by the crash reporter"
  1767. msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash"
  1768. msgctxt "@label:MonitorStatus"
  1769. msgid "Lost connection with the printer"
  1770. msgstr "Persa connessione con la stampante"
  1771. msgctxt "@action"
  1772. msgid "Machine Settings"
  1773. msgstr "Impostazioni macchina"
  1774. msgctxt "name"
  1775. msgid "Machine Settings Action"
  1776. msgstr "Azione Impostazioni macchina"
  1777. msgctxt "@backuplist:label"
  1778. msgid "Machines"
  1779. msgstr "Macchine"
  1780. msgctxt "@text"
  1781. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1782. msgstr "Accertarsi che tutte le stampanti siano accese e collegate a Digital Factory."
  1783. msgctxt "@info:generic"
  1784. 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."
  1785. 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."
  1786. msgctxt "@action:inmenu"
  1787. msgid "Manage Materials..."
  1788. msgstr "Gestione materiali..."
  1789. msgctxt "@action:inmenu menubar:printer"
  1790. msgid "Manage Pr&inters..."
  1791. msgstr "Gestione stampanti..."
  1792. msgctxt "@action:inmenu menubar:profile"
  1793. msgid "Manage Profiles..."
  1794. msgstr "Gestione profili..."
  1795. msgctxt "@action:inmenu"
  1796. msgid "Manage Setting Visibility..."
  1797. msgstr "Gestisci Impostazione visibilità..."
  1798. msgctxt "@item:inmenu"
  1799. msgid "Manage backups"
  1800. msgstr "Gestione backup"
  1801. msgctxt "@label link to connect manager"
  1802. msgid "Manage in browser"
  1803. msgstr "Gestisci nel browser"
  1804. msgctxt "@header"
  1805. msgid "Manage packages"
  1806. msgstr "Gestisci pacchetti"
  1807. msgctxt "@info:tooltip"
  1808. msgid "Manage packages"
  1809. msgstr "Gestisci pacchetti"
  1810. msgctxt "@action"
  1811. msgid "Manage print jobs"
  1812. msgstr "Gestisci processi di stampa"
  1813. msgctxt "@label link to Connect and Cloud interfaces"
  1814. msgid "Manage printer"
  1815. msgstr "Gestione stampanti"
  1816. msgctxt "@button"
  1817. msgid "Manage printers"
  1818. msgstr "Gestione stampanti"
  1819. msgctxt "@text"
  1820. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1821. msgstr "Gestisci i plugin UltiMaker Cura e i profili del materiale qui. Accertarsi di mantenere i plugin aggiornati e di eseguire regolarmente il backup dell'impostazione."
  1822. msgctxt "description"
  1823. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1824. msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker."
  1825. msgctxt "description"
  1826. msgid "Manages network connections to UltiMaker networked printers."
  1827. msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete."
  1828. msgctxt "@label"
  1829. msgid "Manufacturer"
  1830. msgstr "Produttore"
  1831. msgctxt "@action:button"
  1832. msgid "Marketplace"
  1833. msgstr "Mercato"
  1834. msgctxt "@label"
  1835. msgid "Marketplace"
  1836. msgstr "Mercato"
  1837. msgctxt "name"
  1838. msgid "Marketplace"
  1839. msgstr "Mercato"
  1840. msgctxt "@action:label"
  1841. msgid "Material"
  1842. msgstr "Materiale"
  1843. msgctxt "@label"
  1844. msgid "Material"
  1845. msgstr "Materiale"
  1846. msgctxt "@label:category menu label"
  1847. msgid "Material"
  1848. msgstr "Materiale"
  1849. msgctxt "@label:listbox"
  1850. msgid "Material Color"
  1851. msgstr "Colore materiale"
  1852. msgctxt "name"
  1853. msgid "Material Profiles"
  1854. msgstr "Profili del materiale"
  1855. msgctxt "@label"
  1856. msgid "Material Type"
  1857. msgstr "Tipo di materiale"
  1858. msgctxt "@title"
  1859. msgid "Material color picker"
  1860. msgstr "Selettore colore materiale"
  1861. msgctxt "@label"
  1862. msgid "Material estimation"
  1863. msgstr "Stima del materiale"
  1864. msgctxt "@title:header"
  1865. msgid "Material profiles successfully synced with the following printers:"
  1866. msgstr "I profili del materiale sono stati sincronizzati correttamente con le stampanti seguenti:"
  1867. msgctxt "@action:label"
  1868. msgid "Material settings"
  1869. msgstr "Impostazioni materiale"
  1870. msgctxt "@backuplist:label"
  1871. msgid "Materials"
  1872. msgstr "Materiali"
  1873. msgctxt "@button"
  1874. msgid "Materials"
  1875. msgstr "Materiali"
  1876. msgctxt "@title:tab"
  1877. msgid "Materials"
  1878. msgstr "Materiali"
  1879. msgctxt "@label"
  1880. msgid "Materials compatible with active printer:"
  1881. msgstr "Materiali compatibili con la stampante attiva:"
  1882. msgctxt "@label"
  1883. msgid "Mesh Type"
  1884. msgstr "Tipo di maglia"
  1885. msgctxt "@action:label"
  1886. msgid "Mode"
  1887. msgstr "Modalità"
  1888. msgctxt "name"
  1889. msgid "Model Checker"
  1890. msgstr "Controllo modello"
  1891. msgctxt "@info:title"
  1892. msgid "Model Errors"
  1893. msgstr "Errori modello"
  1894. msgctxt "@item:inmenu"
  1895. msgid "Modify G-Code"
  1896. msgstr "Modifica codice G"
  1897. msgctxt "@label"
  1898. msgid "Modify settings for overlaps"
  1899. msgstr "Modificare le impostazioni per le sovrapposizioni"
  1900. msgctxt "@item:inmenu"
  1901. msgid "Monitor"
  1902. msgstr "Controlla"
  1903. msgctxt "name"
  1904. msgid "Monitor Stage"
  1905. msgstr "Fase di controllo"
  1906. msgctxt "@action:button"
  1907. msgid "Monitor print"
  1908. msgstr "Monitora stampa"
  1909. msgctxt "@tooltip:button"
  1910. msgid "Monitor print jobs and reprint from your print history."
  1911. msgstr "Monitora i processi di stampa dalla cronologia di stampa."
  1912. msgctxt "@tooltip:button"
  1913. msgid "Monitor printers in Ultimaker Digital Factory."
  1914. msgstr "Monitora le stampanti in Ultimaker Digital Factory."
  1915. msgctxt "@info"
  1916. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1917. msgstr "Monitora le tue stampanti ovunque ti trovi utilizzando Ultimaker Digital Factory"
  1918. msgctxt "@title:window"
  1919. msgid "More information on anonymous data collection"
  1920. msgstr "Maggiori informazioni sulla raccolta di dati anonimi"
  1921. msgctxt "@window:title"
  1922. msgid "Move print job to top"
  1923. msgstr "Sposta il processo di stampa in alto"
  1924. msgctxt "@action:button"
  1925. msgid "Move to Next Position"
  1926. msgstr "Spostamento alla posizione successiva"
  1927. msgctxt "@label"
  1928. msgid "Move to top"
  1929. msgstr "Sposta in alto"
  1930. msgctxt "@info:tooltip"
  1931. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1932. msgstr "Sposta la fotocamera in modo che il modello si trovi al centro della visualizzazione quando è selezionato"
  1933. msgctxt "@action:inmenu menubar:edit"
  1934. msgid "Multiply Selected"
  1935. msgstr "Moltiplica selezionati"
  1936. msgctxt "@title:window"
  1937. msgid "Multiply Selected Model"
  1938. msgid_plural "Multiply Selected Models"
  1939. msgstr[0] "Moltiplica modello selezionato"
  1940. msgstr[1] "Moltiplica modelli selezionati"
  1941. msgctxt "@info"
  1942. msgid "Multiply selected item and place them in a grid of build plate."
  1943. msgstr ""
  1944. msgctxt "@info:status"
  1945. msgid "Multiplying and placing objects"
  1946. msgstr "Moltiplicazione e collocazione degli oggetti"
  1947. msgctxt "@title"
  1948. msgid "My Backups"
  1949. msgstr "I miei backup"
  1950. msgctxt "@label:button"
  1951. msgid "My printers"
  1952. msgstr "Le mie stampanti"
  1953. msgctxt "@action:label"
  1954. msgid "Name"
  1955. msgstr "Nome"
  1956. msgctxt "@label:category menu label"
  1957. msgid "Network enabled printers"
  1958. msgstr "Stampanti abilitate per la rete"
  1959. msgctxt "@info:title"
  1960. msgid "Network error"
  1961. msgstr "Errore di rete"
  1962. #, python-format
  1963. msgctxt "@info:title The %s gets replaced with the printer name."
  1964. msgid "New %s stable firmware available"
  1965. msgstr "Nuovo firmware %s stabile disponibile"
  1966. msgctxt "@textfield:placeholder"
  1967. msgid "New Custom Profile"
  1968. msgstr "Nuovo profilo personalizzato"
  1969. msgctxt "@label"
  1970. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1971. msgstr "Le nuove stampanti UltiMaker possono essere connesse a Digital Factory e monitorate da remoto."
  1972. #, python-brace-format
  1973. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1974. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1975. msgstr "Nuove funzionalità o bug fix potrebbero essere disponibili per {machine_name}. Se non è già stato fatto in precedenza, si consiglia di aggiornare il firmware della stampante alla versione {latest_version}."
  1976. msgctxt "@action:button"
  1977. msgid "New materials installed"
  1978. msgstr "Nuovi materiali installati"
  1979. msgctxt "info:status"
  1980. msgid "New printer detected from your Ultimaker account"
  1981. msgid_plural "New printers detected from your Ultimaker account"
  1982. msgstr[0] "Nuova stampante rilevata dall'account UltiMaker"
  1983. msgstr[1] "Nuove stampanti rilevate dall'account UltiMaker"
  1984. msgctxt "@title:window"
  1985. msgid "New project"
  1986. msgstr "Nuovo progetto"
  1987. msgctxt "@action:button"
  1988. msgid "Next"
  1989. msgstr "Avanti"
  1990. msgctxt "@button"
  1991. msgid "Next"
  1992. msgstr "Avanti"
  1993. msgctxt "@info:title"
  1994. msgid "Nightly build"
  1995. msgstr ""
  1996. msgctxt "@info"
  1997. msgid "No"
  1998. msgstr "No"
  1999. msgctxt "@info"
  2000. msgid "No compatibility information"
  2001. msgstr "Nessuna informazione sulla compatibilità"
  2002. msgctxt "@description"
  2003. msgid "No compatible printers, that are currently online, were found."
  2004. msgstr "Nessuna stampante compatibile trovata online."
  2005. msgctxt "@label"
  2006. msgid "No cost estimation available"
  2007. msgstr "Nessuna stima di costo disponibile"
  2008. #, python-brace-format
  2009. msgctxt "@info:status Don't translate the XML tags <filename>!"
  2010. msgid "No custom profile to import in file <filename>{0}</filename>"
  2011. msgstr "Nessun profilo personalizzato da importare nel file <filename>{0}</filename>"
  2012. msgctxt "@label"
  2013. msgid "No items to select from"
  2014. msgstr "Nessun elemento da selezionare da"
  2015. msgctxt "@info:title"
  2016. msgid "No layers to show"
  2017. msgstr "Nessun layer da visualizzare"
  2018. msgctxt "@message"
  2019. msgid "No more results to load"
  2020. msgstr "Nessun altro risultato da caricare"
  2021. msgctxt "@error:zip"
  2022. msgid "No permission to write the workspace here."
  2023. msgstr "Nessuna autorizzazione di scrittura dell'area di lavoro qui."
  2024. msgctxt "@title:header"
  2025. msgid "No printers found"
  2026. msgstr "Nessuna stampante trovata"
  2027. msgctxt "@label"
  2028. msgid "No printers found in your account?"
  2029. msgstr "Non sono presenti stampanti nel cloud?"
  2030. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  2031. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  2032. msgstr "Nessun profilo disponibile per la configurazione del materiale /%1 selezionato/a. Modifica la configurazione."
  2033. msgctxt "@message"
  2034. msgid "No results found with current filter"
  2035. msgstr "Nessun risultato trovato con il filtro corrente"
  2036. msgctxt "@label"
  2037. msgid "No time estimation available"
  2038. msgstr "Nessuna stima di tempo disponibile"
  2039. msgctxt "@button"
  2040. msgid "Non UltiMaker printer"
  2041. msgstr "Stampante non UltiMaker"
  2042. msgctxt "@info No materials"
  2043. msgid "None"
  2044. msgstr "Nessuno"
  2045. msgctxt "@label"
  2046. msgid "Normal model"
  2047. msgstr "Modello normale"
  2048. msgctxt "@info:title"
  2049. msgid "Not a group host"
  2050. msgstr "Non host del gruppo"
  2051. msgctxt "@label:MonitorStatus"
  2052. msgid "Not connected to a printer"
  2053. msgstr "Non collegato ad una stampante"
  2054. msgctxt "@action:label"
  2055. msgid "Not in profile"
  2056. msgstr "Non nel profilo"
  2057. msgctxt "@menuitem"
  2058. msgid "Not overridden"
  2059. msgstr "Non sottoposto a override"
  2060. msgctxt "@info:not supported profile"
  2061. msgid "Not supported"
  2062. msgstr "Non supportato"
  2063. msgctxt "@label"
  2064. msgid "Not yet initialized"
  2065. msgstr "Non ancora inizializzato"
  2066. msgctxt "@info:status"
  2067. msgid "Nothing is shown because you need to slice first."
  2068. msgstr "Non viene visualizzato nulla poiché è necessario prima effetuare lo slicing."
  2069. msgctxt "@label"
  2070. msgid "Nozzle"
  2071. msgstr "Ugello"
  2072. msgctxt "@title:label"
  2073. msgid "Nozzle Settings"
  2074. msgstr "Impostazioni ugello"
  2075. msgctxt "@label"
  2076. msgid "Nozzle offset X"
  2077. msgstr "Scostamento X ugello"
  2078. msgctxt "@label"
  2079. msgid "Nozzle offset Y"
  2080. msgstr "Scostamento Y ugello"
  2081. msgctxt "@label"
  2082. msgid "Nozzle size"
  2083. msgstr "Dimensione ugello"
  2084. msgctxt "@label"
  2085. msgid "Number of Copies"
  2086. msgstr "Numero di copie"
  2087. msgctxt "@label"
  2088. msgid "Number of Extruders"
  2089. msgstr "Numero di estrusori"
  2090. msgctxt "@action:button"
  2091. msgid "OK"
  2092. msgstr ""
  2093. msgctxt "@label"
  2094. msgid "OS language"
  2095. msgstr "Lingua sistema operativo"
  2096. msgctxt "@label"
  2097. msgid "Object list"
  2098. msgstr "Elenco oggetti"
  2099. msgctxt "@label:Should be short"
  2100. msgid "Off"
  2101. msgstr "Disinserita"
  2102. msgctxt "@label:Should be short"
  2103. msgid "On"
  2104. msgstr "Inserita"
  2105. msgctxt "@label"
  2106. msgid "Only Show Top Layers"
  2107. msgstr "Mostra solo strati superiori"
  2108. #, python-brace-format
  2109. msgctxt "@info:status"
  2110. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  2111. msgstr "È possibile caricare un solo file codice G per volta. Importazione saltata {0}"
  2112. msgctxt "@action:button"
  2113. msgid "Open"
  2114. msgstr "Apri"
  2115. msgctxt "@title:menu menubar:file"
  2116. msgid "Open &Recent"
  2117. msgstr "Ap&ri recenti"
  2118. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2119. msgid "Open Compressed Triangle Mesh"
  2120. msgstr "Open Compressed Triangle Mesh"
  2121. msgctxt "@title:window"
  2122. msgid "Open File(s)"
  2123. msgstr "Apri file"
  2124. msgctxt "@title:menu menubar:file"
  2125. msgid "Open File(s)..."
  2126. msgstr "Apri file..."
  2127. msgctxt "@title:window"
  2128. msgid "Open Project"
  2129. msgstr "Apri progetto"
  2130. msgctxt "@info:title"
  2131. msgid "Open Project File"
  2132. msgstr "Apri file progetto"
  2133. msgctxt "@action:label"
  2134. msgid "Open With"
  2135. msgstr "Apri con"
  2136. msgctxt "@action:button"
  2137. msgid "Open as project"
  2138. msgstr "Apri come progetto"
  2139. msgctxt "@title:window"
  2140. msgid "Open file(s)"
  2141. msgstr "Apri file"
  2142. msgctxt "@action:button"
  2143. msgid "Open project anyway"
  2144. msgstr "Apri il progetto comunque"
  2145. msgctxt "@title:window"
  2146. msgid "Open project file"
  2147. msgstr "Apri file progetto"
  2148. msgctxt "@label OpenGL version"
  2149. msgid "OpenGL"
  2150. msgstr "OpenGL"
  2151. msgctxt "@label"
  2152. msgid "Opening and saving files"
  2153. msgstr "Apertura e salvataggio file"
  2154. msgctxt "@header"
  2155. msgid "Optimized for Air Manager"
  2156. msgstr "Ottimizzato per Air Manager"
  2157. msgctxt "@label"
  2158. msgid "Origin at center"
  2159. msgstr "Origine al centro"
  2160. msgid "Orthographic"
  2161. msgstr "Ortogonale"
  2162. msgctxt "@action:inmenu menubar:view"
  2163. msgid "Orthographic"
  2164. msgstr "Ortogonale"
  2165. msgctxt "@tooltip"
  2166. msgid "Other"
  2167. msgstr "Altro"
  2168. msgctxt "@label"
  2169. msgid "Other models overlapping with this model are modified."
  2170. msgstr "Gli altri modelli che si sovrappongono a questo modello sono stati modificati."
  2171. msgctxt "@label"
  2172. msgid "Other printers"
  2173. msgstr "Altre stampanti"
  2174. msgctxt "@tooltip"
  2175. msgid "Outer Wall"
  2176. msgstr "Parete esterna"
  2177. msgctxt "@label"
  2178. msgid "Overlaps with this model are not supported."
  2179. msgstr "Le sovrapposizioni con questo modello non sono supportate."
  2180. msgctxt "@action:button"
  2181. msgid "Override"
  2182. msgstr ""
  2183. msgctxt "@label"
  2184. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2185. msgstr "L’override utilizza le impostazioni specificate con la configurazione stampante esistente. Ciò può causare una stampa non riuscita."
  2186. msgctxt "@label %1 is the number of settings it overrides."
  2187. msgid "Overrides %1 setting."
  2188. msgid_plural "Overrides %1 settings."
  2189. msgstr[0] "Ignora %1 impostazione."
  2190. msgstr[1] "Ignora %1 impostazioni."
  2191. msgctxt "@title:menu menubar:toplevel"
  2192. msgid "P&references"
  2193. msgstr "P&referenze"
  2194. msgctxt "@item:inlistbox"
  2195. msgid "PNG Image"
  2196. msgstr "Immagine PNG"
  2197. msgctxt "@header"
  2198. msgid "Package details"
  2199. msgstr "Dettagli pacchetto"
  2200. msgctxt "@label Description for development tool"
  2201. msgid "Packaging Python-applications"
  2202. msgstr "Pacchetto applicazioni Python"
  2203. msgctxt "@info:status"
  2204. msgid "Parsing G-code"
  2205. msgstr "Parsing codice G"
  2206. msgctxt "@action:inmenu menubar:edit"
  2207. msgid "Paste from clipboard"
  2208. msgstr ""
  2209. msgctxt "@label"
  2210. msgid "Pause"
  2211. msgstr "Pausa"
  2212. msgctxt "@label:MonitorStatus"
  2213. msgid "Paused"
  2214. msgstr "In pausa"
  2215. msgctxt "@label:status"
  2216. msgid "Paused"
  2217. msgstr "In pausa"
  2218. msgctxt "@label"
  2219. msgid "Pausing..."
  2220. msgstr "Messa in pausa..."
  2221. msgctxt "@label:status"
  2222. msgid "Pausing..."
  2223. msgstr "Messa in pausa..."
  2224. msgctxt "@label"
  2225. msgid "Per Model Settings"
  2226. msgstr "Impostazioni per modello"
  2227. msgctxt "name"
  2228. msgid "Per Model Settings Tool"
  2229. msgstr "Utilità impostazioni per modello"
  2230. msgid "Perspective"
  2231. msgstr "Prospettiva"
  2232. msgctxt "@action:inmenu menubar:view"
  2233. msgid "Perspective"
  2234. msgstr "Prospettiva"
  2235. msgctxt "@action:label"
  2236. msgid "Placement"
  2237. msgstr "Posizionamento"
  2238. msgctxt "@info:title"
  2239. msgid "Placing Object"
  2240. msgstr "Sistemazione oggetto"
  2241. msgctxt "@info:title"
  2242. msgid "Placing Objects"
  2243. msgstr "Sistemazione oggetti"
  2244. msgctxt "@label Type of platform"
  2245. msgid "Platform"
  2246. msgstr "Piattaforma"
  2247. msgctxt "@info"
  2248. msgid "Please connect your printer to the network."
  2249. msgstr "Collegare la stampante alla rete."
  2250. msgctxt "@text"
  2251. msgid "Please enter a valid IP address."
  2252. msgstr "Inserire un indirizzo IP valido."
  2253. msgctxt "@message"
  2254. msgid "Please give the required permissions when authorizing this application."
  2255. msgstr "Fornire i permessi necessari al momento dell'autorizzazione di questa applicazione."
  2256. msgctxt "@info"
  2257. msgid ""
  2258. "Please make sure your printer has a connection:\n"
  2259. "- Check if the printer is turned on.\n"
  2260. "- Check if the printer is connected to the network.\n"
  2261. "- Check if you are signed in to discover cloud-connected printers."
  2262. msgstr ""
  2263. "Accertarsi che la stampante sia collegata:\n"
  2264. "- Controllare se la stampante è accesa.\n"
  2265. "- Controllare se la stampante è collegata alla rete.\n"
  2266. "- Controllare se è stato effettuato l'accesso per rilevare le stampanti collegate al cloud."
  2267. msgctxt "@text"
  2268. msgid "Please name your printer"
  2269. msgstr "Dare un nome alla stampante"
  2270. msgctxt "@warning:status"
  2271. msgid "Please prepare G-code before exporting."
  2272. msgstr "Preparare il codice G prima dell’esportazione."
  2273. msgctxt "@info"
  2274. msgid "Please provide a name for this profile."
  2275. msgstr "Indica un nome per questo profilo."
  2276. msgctxt "@info"
  2277. msgid "Please provide a new name."
  2278. msgstr "Indicare un nuovo nome."
  2279. msgctxt "@text"
  2280. msgid "Please read and agree with the plugin licence."
  2281. msgstr "Leggi e accetta la licenza del plugin."
  2282. msgctxt "@label:MonitorStatus"
  2283. msgid "Please remove the print"
  2284. msgstr "Rimuovere la stampa"
  2285. msgctxt "@info:status"
  2286. msgid ""
  2287. "Please review settings and check if your models:\n"
  2288. "- Fit within the build volume\n"
  2289. "- Are assigned to an enabled extruder\n"
  2290. "- Are not all set as modifier meshes"
  2291. msgstr ""
  2292. "Verificare le impostazioni e controllare se i modelli:\n"
  2293. "- Rientrano nel volume di stampa\n"
  2294. "- Sono assegnati a un estrusore abilitato\n"
  2295. "- Non sono tutti impostati come maglie modificatore"
  2296. msgctxt "@label"
  2297. msgid "Please select any upgrades made to this UltiMaker Original"
  2298. msgstr "Seleziona qualsiasi aggiornamento realizzato per questa UltiMaker Original"
  2299. msgctxt "@description"
  2300. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2301. msgstr "Accedere per ottenere i plugin e i materiali verificati per UltiMaker Cura Enterprise"
  2302. msgctxt "@action:button"
  2303. msgid "Please sync the material profiles with your printers before starting to print."
  2304. msgstr "Sincronizzare i profili del materiale con le stampanti prima di iniziare a stampare."
  2305. msgctxt "@info"
  2306. msgid "Please update your printer's firmware to manage the queue remotely."
  2307. msgstr "Aggiornare il firmware della stampante per gestire la coda da remoto."
  2308. msgctxt "@info:status"
  2309. msgid "Please wait until the current job has been sent."
  2310. msgstr "Attendere che sia stato inviato il processo corrente."
  2311. msgctxt "@title:window"
  2312. msgid "Plugin License Agreement"
  2313. msgstr "Accordo di licenza plugin"
  2314. msgctxt "@button"
  2315. msgid "Plugin license agreement"
  2316. msgstr "Accordo di licenza plugin"
  2317. msgctxt "@backuplist:label"
  2318. msgid "Plugins"
  2319. msgstr "Plugin"
  2320. msgctxt "@button"
  2321. msgid "Plugins"
  2322. msgstr "Plugin"
  2323. msgctxt "@label Description for application dependency"
  2324. msgid "Polygon clipping library"
  2325. msgstr "Libreria ritaglio poligono"
  2326. msgctxt "@label Description for application component"
  2327. msgid "Polygon packing library, developed by Prusa Research"
  2328. msgstr "Libreria di impacchettamento dei poligoni sviluppata da Prusa Research"
  2329. msgctxt "@item:inmenu"
  2330. msgid "Post Processing"
  2331. msgstr "Post-elaborazione"
  2332. msgctxt "name"
  2333. msgid "Post Processing"
  2334. msgstr "Post-elaborazione"
  2335. msgctxt "@title:window"
  2336. msgid "Post Processing Plugin"
  2337. msgstr "Plug-in di post-elaborazione"
  2338. msgctxt "@label"
  2339. msgid "Post Processing Scripts"
  2340. msgstr "Script di post-elaborazione"
  2341. msgctxt "@button"
  2342. msgid "Pre-heat"
  2343. msgstr "Pre-riscaldo"
  2344. msgctxt "@item:inmenu"
  2345. msgid "Prepare"
  2346. msgstr "Prepara"
  2347. msgctxt "name"
  2348. msgid "Prepare Stage"
  2349. msgstr "Fase di preparazione"
  2350. msgctxt "@label:MonitorStatus"
  2351. msgid "Preparing..."
  2352. msgstr "Preparazione in corso..."
  2353. msgctxt "@label:status"
  2354. msgid "Preparing..."
  2355. msgstr "Preparazione in corso..."
  2356. msgctxt "@label"
  2357. msgid "Preset printers"
  2358. msgstr "Stampanti preimpostate"
  2359. msgctxt "@button"
  2360. msgid "Preview"
  2361. msgstr "Anteprima"
  2362. msgctxt "@item:inmenu"
  2363. msgid "Preview"
  2364. msgstr "Anteprima"
  2365. msgctxt "name"
  2366. msgid "Preview Stage"
  2367. msgstr "Fase di anteprima"
  2368. msgctxt "@tooltip"
  2369. msgid "Prime Tower"
  2370. msgstr "Torre di innesco"
  2371. msgctxt "@action:button"
  2372. msgid "Print"
  2373. msgstr "Stampa"
  2374. msgctxt "@label"
  2375. msgid "Print Selected Model With:"
  2376. msgid_plural "Print Selected Models With:"
  2377. msgstr[0] "Stampa modello selezionato con:"
  2378. msgstr[1] "Stampa modelli selezionati con:"
  2379. msgctxt "@label %1 is filled in with the name of an extruder"
  2380. msgid "Print Selected Model with %1"
  2381. msgid_plural "Print Selected Models with %1"
  2382. msgstr[0] "Stampa modello selezionato con %1"
  2383. msgstr[1] "Stampa modelli selezionati con %1"
  2384. msgctxt "@label"
  2385. msgid "Print as support"
  2386. msgstr "Stampa come supporto"
  2387. msgctxt "@info:title"
  2388. msgid "Print error"
  2389. msgstr "Errore di stampa"
  2390. msgctxt "@message"
  2391. msgid "Print in Progress"
  2392. msgstr "Stampa in corso"
  2393. msgctxt "@info:status"
  2394. msgid "Print job queue is full. The printer can't accept a new job."
  2395. msgstr "La coda dei processi di stampa è piena. La stampante non può accettare un nuovo processo."
  2396. msgctxt "@info:status"
  2397. msgid "Print job was successfully sent to the printer."
  2398. msgstr "Processo di stampa inviato con successo alla stampante."
  2399. msgctxt "@label"
  2400. msgid "Print jobs"
  2401. msgstr "Processi di stampa"
  2402. msgctxt "@label:button"
  2403. msgid "Print jobs"
  2404. msgstr "Processi di stampa"
  2405. msgctxt "@action:button Preceded by 'Ready to'."
  2406. msgid "Print over network"
  2407. msgstr "Stampa sulla rete"
  2408. msgctxt "@properties:tooltip"
  2409. msgid "Print over network"
  2410. msgstr "Stampa sulla rete"
  2411. msgctxt "@title:window"
  2412. msgid "Print over network"
  2413. msgstr "Stampa sulla rete"
  2414. msgctxt "@label"
  2415. msgid "Print settings"
  2416. msgstr "Impostazioni di stampa"
  2417. msgctxt "@label shown when we load a Gcode file"
  2418. msgid "Print setup disabled. G-code file can not be modified."
  2419. msgstr "Impostazione di stampa disabilitata. Il file G-code non può essere modificato."
  2420. msgctxt "@action:button Preceded by 'Ready to'."
  2421. msgid "Print via USB"
  2422. msgstr "Stampa tramite USB"
  2423. msgctxt "@info:tooltip"
  2424. msgid "Print via USB"
  2425. msgstr "Stampa tramite USB"
  2426. msgctxt "@action:button"
  2427. msgid "Print via cloud"
  2428. msgstr "Stampa tramite cloud"
  2429. msgctxt "@properties:tooltip"
  2430. msgid "Print via cloud"
  2431. msgstr "Stampa tramite cloud"
  2432. msgctxt "@action:label"
  2433. msgid "Print with"
  2434. msgstr "Stampa con"
  2435. msgctxt "@title:tab"
  2436. msgid "Printer"
  2437. msgstr "Stampante"
  2438. msgctxt "@title:window"
  2439. msgid "Printer Address"
  2440. msgstr "Indirizzo stampante"
  2441. msgctxt "@action:label"
  2442. msgid "Printer Group"
  2443. msgstr "Gruppo stampanti"
  2444. msgctxt "@title:label"
  2445. msgid "Printer Settings"
  2446. msgstr "Impostazioni della stampante"
  2447. msgctxt "@label"
  2448. msgid "Printer control"
  2449. msgstr "Comando stampante"
  2450. msgctxt "@label:MonitorStatus"
  2451. msgid "Printer does not accept commands"
  2452. msgstr "La stampante non accetta comandi"
  2453. msgctxt "@label"
  2454. msgid "Printer name"
  2455. msgstr "Nome stampante"
  2456. msgctxt "@label"
  2457. msgid "Printer selection"
  2458. msgstr "Selezione stampante"
  2459. msgctxt "@action:label"
  2460. msgid "Printer settings"
  2461. msgstr "Impostazioni della stampante"
  2462. msgctxt "@info:tooltip"
  2463. msgid "Printer settings will be updated to match the settings saved with the project."
  2464. msgstr "Le impostazioni della stampante saranno aggiornate in modo che corrispondano alle impostazioni salvate con il progetto."
  2465. msgctxt "@title:tab"
  2466. msgid "Printers"
  2467. msgstr "Stampanti"
  2468. msgctxt "info:status"
  2469. msgid "Printers added from Digital Factory:"
  2470. msgstr "Stampanti aggiunte da Digital Factory:"
  2471. msgctxt "@text Asking the user whether printers are missing in a list."
  2472. msgid "Printers missing?"
  2473. msgstr "Mancano stampanti?"
  2474. msgctxt "@title:label"
  2475. msgid "Printhead Settings"
  2476. msgstr "Impostazioni della testina di stampa"
  2477. msgctxt "@label:status"
  2478. msgid "Printing"
  2479. msgstr "Stampa in corso"
  2480. msgctxt "@label"
  2481. msgid "Printing Time"
  2482. msgstr "Tempo di stampa"
  2483. msgctxt "@label:MonitorStatus"
  2484. msgid "Printing..."
  2485. msgstr "Stampa in corso..."
  2486. msgctxt "@label"
  2487. msgid "Privacy"
  2488. msgstr ""
  2489. msgctxt "@button"
  2490. msgid "Processing"
  2491. msgstr "Elaborazione in corso"
  2492. msgctxt "@info:status"
  2493. msgid "Processing Layers"
  2494. msgstr "Elaborazione dei livelli"
  2495. msgctxt "@label"
  2496. msgid "Profile"
  2497. msgstr "Profilo"
  2498. msgctxt "@title:column"
  2499. msgid "Profile"
  2500. msgstr "Profilo"
  2501. msgctxt "@label"
  2502. msgid "Profile author"
  2503. msgstr "Autore profilo"
  2504. msgctxt "@info:status"
  2505. msgid "Profile is missing a quality type."
  2506. msgstr "Il profilo è privo del tipo di qualità."
  2507. msgctxt "@action:label"
  2508. msgid "Profile settings"
  2509. msgstr "Impostazioni profilo"
  2510. msgctxt "@title:column"
  2511. msgid "Profile settings"
  2512. msgstr "Impostazioni profilo"
  2513. #, python-brace-format
  2514. msgctxt "@info:status"
  2515. msgid "Profile {0} has an unknown file type or is corrupted."
  2516. msgstr "Il profilo {0} ha un tipo di file sconosciuto o corrotto."
  2517. msgctxt "@backuplist:label"
  2518. msgid "Profiles"
  2519. msgstr "Profili"
  2520. msgctxt "@label"
  2521. msgid "Profiles"
  2522. msgstr "Profili"
  2523. msgctxt "@title:tab"
  2524. msgid "Profiles"
  2525. msgstr "Profili"
  2526. msgctxt "@label"
  2527. msgid "Profiles compatible with active printer:"
  2528. msgstr "Profili compatibili con la stampante attiva:"
  2529. msgctxt "@label Description for application dependency"
  2530. msgid "Programming language"
  2531. msgstr "Lingua di programmazione"
  2532. #, python-brace-format
  2533. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2534. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2535. 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."
  2536. #, python-brace-format
  2537. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2538. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2539. msgstr "Il file di progetto <filename>{0}</filename> è danneggiato: <message>{1}</message>."
  2540. #, python-brace-format
  2541. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2542. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2543. msgstr "Il file di progetto <filename>{0}</filename> è realizzato con profili sconosciuti a questa versione di UltiMaker Cura."
  2544. #, python-brace-format
  2545. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2546. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2547. msgstr "Il file di progetto <filename>{0}</filename> è diventato improvvisamente inaccessibile: <message>{1}</message>."
  2548. msgctxt "@label"
  2549. msgid "Properties"
  2550. msgstr "Proprietà"
  2551. msgctxt "description"
  2552. msgid "Provides a machine actions for updating firmware."
  2553. msgstr "Fornisce azioni macchina per l’aggiornamento del firmware."
  2554. msgctxt "description"
  2555. msgid "Provides a monitor stage in Cura."
  2556. msgstr "Fornisce una fase di controllo in Cura."
  2557. msgctxt "description"
  2558. msgid "Provides a normal solid mesh view."
  2559. msgstr "Fornisce una normale visualizzazione a griglia compatta."
  2560. msgctxt "description"
  2561. msgid "Provides a prepare stage in Cura."
  2562. msgstr "Fornisce una fase di preparazione in Cura."
  2563. msgctxt "description"
  2564. msgid "Provides a preview stage in Cura."
  2565. msgstr "Fornisce una fase di anteprima in Cura."
  2566. msgctxt "description"
  2567. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  2568. msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)"
  2569. msgctxt "description"
  2570. msgid "Provides capabilities to read and write XML-based material profiles."
  2571. msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML."
  2572. msgctxt "description"
  2573. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  2574. msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)"
  2575. msgctxt "description"
  2576. msgid "Provides removable drive hotplugging and writing support."
  2577. msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura."
  2578. msgctxt "description"
  2579. msgid "Provides support for exporting Cura profiles."
  2580. msgstr "Fornisce supporto per l'esportazione dei profili Cura."
  2581. msgctxt "description"
  2582. msgid "Provides support for importing Cura profiles."
  2583. msgstr "Fornisce supporto per l'importazione dei profili Cura."
  2584. msgctxt "description"
  2585. msgid "Provides support for importing profiles from g-code files."
  2586. msgstr "Fornisce supporto per l'importazione di profili da file G-Code."
  2587. msgctxt "description"
  2588. msgid "Provides support for importing profiles from legacy Cura versions."
  2589. msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura."
  2590. msgctxt "description"
  2591. msgid "Provides support for reading 3MF files."
  2592. msgstr "Fornisce il supporto per la lettura di file 3MF."
  2593. msgctxt "description"
  2594. msgid "Provides support for reading AMF files."
  2595. msgstr "Fornisce il supporto per la lettura di file 3MF."
  2596. msgctxt "description"
  2597. msgid "Provides support for reading Ultimaker Format Packages."
  2598. msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker."
  2599. msgctxt "description"
  2600. msgid "Provides support for reading X3D files."
  2601. msgstr "Fornisce il supporto per la lettura di file X3D."
  2602. msgctxt "description"
  2603. msgid "Provides support for reading model files."
  2604. msgstr "Fornisce supporto per la lettura dei file modello."
  2605. msgctxt "description"
  2606. msgid "Provides support for writing 3MF files."
  2607. msgstr "Fornisce il supporto per la scrittura di file 3MF."
  2608. msgctxt "description"
  2609. msgid "Provides support for writing Ultimaker Format Packages."
  2610. msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker."
  2611. msgctxt "description"
  2612. msgid "Provides the Per Model Settings."
  2613. msgstr "Fornisce le impostazioni per modello."
  2614. msgctxt "description"
  2615. msgid "Provides the X-Ray view."
  2616. msgstr "Fornisce la vista a raggi X."
  2617. msgctxt "description"
  2618. msgid "Provides the link to the CuraEngine slicing backend."
  2619. msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine."
  2620. msgctxt "description"
  2621. msgid "Provides the preview of sliced layerdata."
  2622. msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni."
  2623. msgctxt "@label"
  2624. msgid "PyQt version"
  2625. msgstr "Versione PyQt"
  2626. msgctxt "@Label Description for application dependency"
  2627. msgid "Python Error tracking library"
  2628. msgstr "Libreria per la traccia degli errori Python"
  2629. msgctxt "@label Description for application dependency"
  2630. msgid "Python bindings for Clipper"
  2631. msgstr "Vincoli Python per Clipper"
  2632. msgctxt "@label Description for application component"
  2633. msgid "Python bindings for libnest2d"
  2634. msgstr "Vincoli Python per libnest2d"
  2635. msgctxt "@label"
  2636. msgid "Qt version"
  2637. msgstr "Versione Qt"
  2638. #, python-brace-format
  2639. msgctxt "@info:status"
  2640. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2641. msgstr "Il tipo di qualità '{0}' non è compatibile con la definizione di macchina attiva corrente '{1}'."
  2642. msgctxt "@info:title"
  2643. msgid "Queue Full"
  2644. msgstr "Coda piena"
  2645. msgctxt "@label"
  2646. msgid "Queued"
  2647. msgstr "Coda di stampa"
  2648. msgctxt "@info:button, %1 is the application name"
  2649. msgid "Quit %1"
  2650. msgstr "Chiudere %1"
  2651. msgctxt "description"
  2652. msgid "Reads g-code from a compressed archive."
  2653. msgstr "Legge il codice G da un archivio compresso."
  2654. msgctxt "@button"
  2655. msgid "Recommended"
  2656. msgstr "Consigliata"
  2657. msgctxt "@title:tab"
  2658. msgid "Recommended"
  2659. msgstr "Consigliata"
  2660. msgctxt "@label"
  2661. msgid "Recommended print settings"
  2662. msgstr "Impostazioni di stampa consigliate"
  2663. msgctxt "@info %1 is the name of a profile"
  2664. msgid "Recommended settings (for <b>%1</b>) were altered."
  2665. msgstr "Le impostazioni consigliate (per <b>%1</b>) sono state modificate."
  2666. msgctxt "@action:button"
  2667. msgid "Refresh"
  2668. msgstr "Aggiorna"
  2669. msgctxt "@button"
  2670. msgid "Refresh"
  2671. msgstr "Aggiorna"
  2672. msgctxt "@label"
  2673. msgid "Refresh"
  2674. msgstr "Aggiorna"
  2675. msgctxt "@button"
  2676. msgid "Refresh List"
  2677. msgstr "Aggiorna elenco"
  2678. msgctxt "@button"
  2679. msgid "Refreshing..."
  2680. msgstr ""
  2681. msgctxt "@label"
  2682. msgid "Release Notes"
  2683. msgstr "Note sulla versione"
  2684. msgctxt "@action:inmenu menubar:file"
  2685. msgid "Reload All Models"
  2686. msgstr "Ricarica tutti i modelli"
  2687. msgctxt "@text:window"
  2688. msgid "Remember my choice"
  2689. msgstr "Ricorda la scelta"
  2690. msgctxt "@item:intext"
  2691. msgid "Removable Drive"
  2692. msgstr "Unità rimovibile"
  2693. msgctxt "name"
  2694. msgid "Removable Drive Output Device Plugin"
  2695. msgstr "Plugin dispositivo di output unità rimovibile"
  2696. msgctxt "@action:button"
  2697. msgid "Remove"
  2698. msgstr "Rimuovi"
  2699. msgctxt "@action:button"
  2700. msgid "Remove printers"
  2701. msgstr "Rimuovere le stampanti"
  2702. msgctxt "@title:window"
  2703. msgid "Remove printers?"
  2704. msgstr "Rimuovere le stampanti?"
  2705. msgctxt "@action:button"
  2706. msgid "Rename"
  2707. msgstr "Rinomina"
  2708. msgctxt "@title:window"
  2709. msgid "Rename"
  2710. msgstr "Rinomina"
  2711. msgctxt "@title:window"
  2712. msgid "Rename Profile"
  2713. msgstr "Rinomina profilo"
  2714. msgctxt "@action:inmenu menubar:help"
  2715. msgid "Report a &Bug"
  2716. msgstr "Se&gnala un errore"
  2717. msgctxt "@label:button"
  2718. msgid "Report a bug"
  2719. msgstr "Segnala un errore"
  2720. msgctxt "@message:button"
  2721. msgid "Report a bug"
  2722. msgstr "Segnala un errore"
  2723. msgctxt "@message:description"
  2724. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2725. msgstr "Segnalare un errore nel registro problemi di UltiMaker Cura."
  2726. msgctxt "@label:status"
  2727. msgid "Requires configuration changes"
  2728. msgstr "Richiede modifiche di configurazione"
  2729. msgctxt "@action:inmenu menubar:edit"
  2730. msgid "Reset All Model Positions"
  2731. msgstr "Reimposta tutte le posizioni dei modelli"
  2732. msgctxt "@action:inmenu menubar:edit"
  2733. msgid "Reset All Model Transformations"
  2734. msgstr "Reimposta tutte le trasformazioni dei modelli"
  2735. msgctxt "@info"
  2736. msgid "Reset to defaults."
  2737. msgstr "Ripristina le impostazioni predefinite."
  2738. msgctxt "@label"
  2739. msgid "Resolution"
  2740. msgstr "Risoluzione"
  2741. msgctxt "@button"
  2742. msgid "Restore"
  2743. msgstr "Ripristina"
  2744. msgctxt "@dialog:title"
  2745. msgid "Restore Backup"
  2746. msgstr "Ripristina backup"
  2747. msgctxt "@option:check"
  2748. msgid "Restore window position on start"
  2749. msgstr "Ripristinare la posizione della finestra all'avvio"
  2750. msgctxt "@label"
  2751. msgid "Resume"
  2752. msgstr "Riprendi"
  2753. msgctxt "@label"
  2754. msgid "Resuming..."
  2755. msgstr "Ripresa in corso..."
  2756. msgctxt "@label:status"
  2757. msgid "Resuming..."
  2758. msgstr "Ripresa in corso..."
  2759. msgctxt "@tooltip"
  2760. msgid "Retractions"
  2761. msgstr "Retrazioni"
  2762. msgctxt "@button"
  2763. msgid "Retry?"
  2764. msgstr "Riprovare?"
  2765. msgctxt "@action:inmenu menubar:view"
  2766. msgid "Right Side View"
  2767. msgstr "Visualizzazione lato destro"
  2768. msgctxt "@info:tooltip"
  2769. msgid "Right View"
  2770. msgstr "Vista destra"
  2771. msgctxt "@label Description for application dependency"
  2772. msgid "Root Certificates for validating SSL trustworthiness"
  2773. msgstr "Certificati di origine per la convalida dell'affidabilità SSL"
  2774. msgctxt "@info:title"
  2775. msgid "Safely Remove Hardware"
  2776. msgstr "Rimozione sicura dell'hardware"
  2777. msgctxt "@button"
  2778. msgid "Safety datasheet"
  2779. msgstr "Scheda tecnica sulla sicurezza"
  2780. msgctxt "@action:button"
  2781. msgid "Save"
  2782. msgstr "Salva"
  2783. msgctxt "@option"
  2784. msgid "Save Cura project"
  2785. msgstr "Salva progetto Cura"
  2786. msgctxt "@option"
  2787. msgid "Save Cura project and print file"
  2788. msgstr "Salva progetto Cura e stampa file"
  2789. msgctxt "@title:window"
  2790. msgid "Save Custom Profile"
  2791. msgstr "Salva profilo personalizzato"
  2792. msgctxt "@title:window"
  2793. msgid "Save Project"
  2794. msgstr "Salva progetto"
  2795. msgctxt "@title:menu menubar:file"
  2796. msgid "Save Project..."
  2797. msgstr "Salva progetto..."
  2798. msgctxt "@action:button"
  2799. msgid "Save as new custom profile"
  2800. msgstr ""
  2801. msgctxt "@action:button"
  2802. msgid "Save changes"
  2803. msgstr "Salva modifiche"
  2804. msgctxt "@button"
  2805. msgid "Save new profile"
  2806. msgstr "Salva nuovo profilo"
  2807. msgctxt "@text"
  2808. msgid "Save the .umm file on a USB stick."
  2809. msgstr "Salvare il file .umm su una chiavetta USB."
  2810. msgctxt "@action:button Preceded by 'Ready to'."
  2811. msgid "Save to Removable Drive"
  2812. msgstr "Salva su unità rimovibile"
  2813. #, python-brace-format
  2814. msgctxt "@item:inlistbox"
  2815. msgid "Save to Removable Drive {0}"
  2816. msgstr "Salva su unità rimovibile {0}"
  2817. #, python-brace-format
  2818. msgctxt "@info:status"
  2819. msgid "Saved to Removable Drive {0} as {1}"
  2820. msgstr "Salvato su unità rimovibile {0} come {1}"
  2821. msgctxt "@info:title"
  2822. msgid "Saving"
  2823. msgstr "Salvataggio in corso"
  2824. #, python-brace-format
  2825. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2826. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2827. msgstr "Salvataggio su unità rimovibile <filename>{0}</filename>"
  2828. msgctxt "@option:check"
  2829. msgid "Scale extremely small models"
  2830. msgstr "Ridimensiona i modelli eccessivamente piccoli"
  2831. msgctxt "@option:check"
  2832. msgid "Scale large models"
  2833. msgstr "Ridimensiona i modelli troppo grandi"
  2834. msgctxt "@placeholder"
  2835. msgid "Search"
  2836. msgstr "Cerca"
  2837. msgctxt "@info"
  2838. msgid "Search in the browser"
  2839. msgstr "Cerca nel browser"
  2840. msgctxt "@label:textbox"
  2841. msgid "Search settings"
  2842. msgstr "Impostazioni ricerca"
  2843. msgctxt "@action:inmenu menubar:edit"
  2844. msgid "Select All Models"
  2845. msgstr "Seleziona tutti i modelli"
  2846. msgctxt "@title:window"
  2847. msgid "Select Printer"
  2848. msgstr "Seleziona stampante"
  2849. msgctxt "@title:window"
  2850. msgid "Select Settings to Customize for this model"
  2851. msgstr "Seleziona impostazioni di personalizzazione per questo modello"
  2852. msgctxt "@text"
  2853. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2854. msgstr "Selezionare e installare i profili dei materiali ottimizzati per le stampanti 3D UltiMaker."
  2855. msgctxt "@label"
  2856. msgid "Select configuration"
  2857. msgstr "Seleziona configurazione"
  2858. msgctxt "@title:window"
  2859. msgid "Select custom firmware"
  2860. msgstr "Seleziona il firmware personalizzato"
  2861. msgctxt "@option:check"
  2862. msgid "Select models when loaded"
  2863. msgstr "Selezionare i modelli dopo il caricamento"
  2864. msgctxt "@action:button"
  2865. msgid "Select settings"
  2866. msgstr "Seleziona impostazioni"
  2867. msgctxt "@action"
  2868. msgid "Select upgrades"
  2869. msgstr "Seleziona aggiornamenti"
  2870. msgctxt "@label"
  2871. msgid "Select your printer from the list below:"
  2872. msgstr "Selezionare la stampante dall’elenco seguente:"
  2873. msgctxt "@option:check"
  2874. msgid "Send (anonymous) print information"
  2875. msgstr "Invia informazioni di stampa (anonime)"
  2876. msgctxt "@label"
  2877. msgid "Send G-code"
  2878. msgstr "Invia codice G"
  2879. msgctxt "@tooltip of G-code command input"
  2880. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2881. msgstr "Invia un comando codice G personalizzato alla stampante connessa. Premere ‘invio’ per inviare il comando."
  2882. msgctxt "@action:button"
  2883. msgid "Send crash report to UltiMaker"
  2884. msgstr "Inviare il rapporto su crash a UltiMaker"
  2885. msgctxt "@action:button"
  2886. msgid "Send report"
  2887. msgstr "Invia report"
  2888. msgctxt "@info:status"
  2889. msgid "Sending Print Job"
  2890. msgstr "Invio di un processo di stampa"
  2891. msgctxt "@info:title"
  2892. msgid "Sending materials to printer"
  2893. msgstr "Invio dei materiali alla stampante"
  2894. msgctxt "name"
  2895. msgid "Sentry Logger"
  2896. msgstr "Logger sentinella"
  2897. msgctxt "@label Description for application dependency"
  2898. msgid "Serial communication library"
  2899. msgstr "Libreria di comunicazione seriale"
  2900. msgctxt "@action:inmenu"
  2901. msgid "Set as Active Extruder"
  2902. msgstr "Imposta come estrusore attivo"
  2903. msgctxt "@title:column"
  2904. msgid "Setting"
  2905. msgstr "Impostazione"
  2906. msgctxt "@title:tab"
  2907. msgid "Setting Visibility"
  2908. msgstr "Impostazione visibilità"
  2909. msgctxt "@info:progress"
  2910. msgid "Setting up preferences..."
  2911. msgstr "Impostazione delle preferenze..."
  2912. msgctxt "@info:progress"
  2913. msgid "Setting up scene..."
  2914. msgstr "Impostazione scena in corso..."
  2915. msgctxt "@action:label"
  2916. msgid "Setting visibility"
  2917. msgstr "Impostazione visibilità"
  2918. msgctxt "@label"
  2919. msgid "Settings"
  2920. msgstr "Impostazioni"
  2921. msgctxt "@title:tab"
  2922. msgid "Settings"
  2923. msgstr "Impostazioni"
  2924. msgctxt "@info:message Followed by a list of settings."
  2925. msgid "Settings have been changed to match the current availability of extruders:"
  2926. msgstr "Le impostazioni sono state modificate in base all’attuale disponibilità di estrusori:"
  2927. msgctxt "@info:title"
  2928. msgid "Settings updated"
  2929. msgstr "Impostazioni aggiornate"
  2930. msgctxt "@text"
  2931. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2932. msgstr "Condividi idee e ottieni supporto da più di 48.000 utenti nella community di UltiMaker"
  2933. msgctxt "@label"
  2934. msgid "Shell"
  2935. msgstr "Guscio"
  2936. msgctxt "@action:label"
  2937. msgid "Shell Thickness"
  2938. msgstr "Spessore guscio"
  2939. msgctxt "@info:tooltip"
  2940. msgid "Should Cura check for updates when the program is started?"
  2941. msgstr "Cura deve verificare la presenza di eventuali aggiornamenti all’avvio del programma?"
  2942. msgctxt "@info:tooltip"
  2943. msgid "Should Cura open at the location it was closed?"
  2944. msgstr "Aprire Cura nel punto in cui è stato chiuso?"
  2945. msgctxt "@info:tooltip"
  2946. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2947. msgstr "Al nome del processo di stampa deve essere aggiunto automaticamente un prefisso basato sul nome della stampante?"
  2948. msgctxt "@info:tooltip"
  2949. msgid "Should a summary be shown when saving a project file?"
  2950. msgstr "Quando si salva un file di progetto deve essere visualizzato un riepilogo?"
  2951. msgctxt "@info:tooltip"
  2952. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2953. msgstr "È necessario verificare automaticamente la presenza di nuovi plugin ad ogni avvio di Cura? Si consiglia di non disabilitare questa opzione!"
  2954. msgctxt "@info:tooltip"
  2955. 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."
  2956. msgstr "I dati anonimi sulla stampa devono essere inviati a UltiMaker? Nota, non sono trasmessi o memorizzati modelli, indirizzi IP o altre informazioni personali."
  2957. msgctxt "@info:tooltip"
  2958. msgid "Should layer be forced into compatibility mode?"
  2959. msgstr "Lo strato deve essere forzato in modalità di compatibilità?"
  2960. msgctxt "@info:tooltip"
  2961. msgid "Should models be scaled to the build volume if they are too large?"
  2962. msgstr "I modelli devono essere ridimensionati al volume di stampa, se troppo grandi?"
  2963. msgctxt "@info:tooltip"
  2964. msgid "Should models be selected after they are loaded?"
  2965. msgstr "I modelli devono essere selezionati dopo essere stati caricati?"
  2966. msgctxt "@info:tooltip"
  2967. msgid "Should models on the platform be moved down to touch the build plate?"
  2968. msgstr "I modelli sull’area di stampa devono essere portati a contatto del piano di stampa?"
  2969. msgctxt "@info:tooltip"
  2970. msgid "Should models on the platform be moved so that they no longer intersect?"
  2971. msgstr "I modelli sull’area di stampa devono essere spostati per evitare intersezioni?"
  2972. msgctxt "@info:tooltip"
  2973. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2974. msgstr "L'apertura dei file dal desktop o da applicazioni esterne deve essere eseguita nella stessa istanza di Cura?"
  2975. msgctxt "@info:tooltip"
  2976. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2977. msgstr "È necessario pulire il piano di stampa prima di caricare un nuovo modello nella singola istanza di Cura?"
  2978. msgctxt "@info:tooltip"
  2979. msgid "Should the default zoom behavior of cura be inverted?"
  2980. msgstr "Il comportamento dello zoom predefinito di Cura dovrebbe essere invertito?"
  2981. msgctxt "@info:tooltip"
  2982. msgid "Should zooming move in the direction of the mouse?"
  2983. msgstr "Lo zoom si muove nella direzione del mouse?"
  2984. msgctxt "@label"
  2985. msgid "Show 5 Detailed Layers On Top"
  2986. msgstr "Mostra 5 strati superiori in dettaglio"
  2987. msgctxt "@action:inmenu menubar:help"
  2988. msgid "Show Configuration Folder"
  2989. msgstr "Mostra cartella di configurazione"
  2990. msgctxt "@button"
  2991. msgid "Show Custom"
  2992. msgstr "Personalizzata"
  2993. msgctxt "@action:inmenu menubar:help"
  2994. msgid "Show Online &Documentation"
  2995. msgstr "Mostra documentazione &online"
  2996. msgctxt "@action:inmenu"
  2997. msgid "Show Online Troubleshooting"
  2998. msgstr "Mostra ricerca e riparazione dei guasti online"
  2999. msgctxt "@label:checkbox"
  3000. msgid "Show all"
  3001. msgstr "Mostra tutto"
  3002. msgctxt "@label"
  3003. msgid "Show all connected printers"
  3004. msgstr "Mostra tutte le stampanti collegate"
  3005. msgctxt "@info:tooltip"
  3006. msgid "Show an icon and notifications in the system notification area."
  3007. msgstr "Mostra un'icona e le notifiche nell'area di notifica del sistema."
  3008. msgctxt "@info:tooltip"
  3009. msgid "Show caution message in g-code reader."
  3010. msgstr "Visualizza il messaggio di avvertimento sul lettore codice G."
  3011. msgctxt "@action:button"
  3012. msgid "Show configuration folder"
  3013. msgstr "Mostra cartella di configurazione"
  3014. msgctxt "@action:button"
  3015. msgid "Show detailed crash report"
  3016. msgstr "Mostra il rapporto su crash dettagliato"
  3017. msgctxt "@option:check"
  3018. msgid "Show summary dialog when saving project"
  3019. msgstr "Visualizza una finestra di riepilogo quando si salva un progetto"
  3020. msgctxt "@tooltip:button"
  3021. msgid "Show your support for Cura with a donation."
  3022. msgstr ""
  3023. msgctxt "@button"
  3024. msgid "Sign Out"
  3025. msgstr "Esci"
  3026. msgctxt "@action:button"
  3027. msgid "Sign in"
  3028. msgstr "Accedi"
  3029. msgctxt "@button"
  3030. msgid "Sign in"
  3031. msgstr "Accedi"
  3032. msgctxt "@title:header"
  3033. msgid "Sign in"
  3034. msgstr "Accedi"
  3035. msgctxt "@info"
  3036. msgid "Sign in into UltiMaker Digital Factory"
  3037. msgstr "Accedi alla UltiMaker Digital Factory"
  3038. msgctxt "@button"
  3039. msgid "Sign in to Digital Factory"
  3040. msgstr "Accedi a Digital Factory"
  3041. msgctxt "@label"
  3042. msgid "Sign in to the UltiMaker platform"
  3043. msgstr "Accedi alla piattaforma UltiMaker"
  3044. msgctxt "name"
  3045. msgid "Simulation View"
  3046. msgstr "Vista simulazione"
  3047. msgctxt "@tooltip"
  3048. msgid "Skin"
  3049. msgstr "Rivestimento esterno"
  3050. msgctxt "@action:button"
  3051. msgid "Skip"
  3052. msgstr "Salta"
  3053. msgctxt "@button"
  3054. msgid "Skip"
  3055. msgstr "Salta"
  3056. msgctxt "@tooltip"
  3057. msgid "Skirt"
  3058. msgstr ""
  3059. msgctxt "@button"
  3060. msgid "Slice"
  3061. msgstr "Sezionamento"
  3062. msgctxt "@option:check"
  3063. msgid "Slice automatically"
  3064. msgstr "Seziona automaticamente"
  3065. msgctxt "@info:tooltip"
  3066. msgid "Slice automatically when changing settings."
  3067. msgstr "Seziona automaticamente alla modifica delle impostazioni."
  3068. msgctxt "name"
  3069. msgid "Slice info"
  3070. msgstr "Informazioni su sezionamento"
  3071. msgctxt "@message:title"
  3072. msgid "Slicing failed"
  3073. msgstr "Sezionamento non riuscito"
  3074. msgctxt "@message"
  3075. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  3076. msgstr "Sezionamento non riuscito con un errore imprevisto. Valutare se segnalare un bug nel registro problemi."
  3077. msgctxt "@label:PrintjobStatus"
  3078. msgid "Slicing..."
  3079. msgstr "Sezionamento in corso..."
  3080. msgctxt "@action:label"
  3081. msgid "Smoothing"
  3082. msgstr ""
  3083. msgctxt "name"
  3084. msgid "Solid View"
  3085. msgstr "Visualizzazione compatta"
  3086. msgctxt "@item:inmenu"
  3087. msgid "Solid view"
  3088. msgstr "Visualizzazione compatta"
  3089. msgctxt "@label"
  3090. msgid ""
  3091. "Some hidden settings use values different from their normal calculated value.\n"
  3092. "\n"
  3093. "Click to make these settings visible."
  3094. msgstr ""
  3095. "Alcune impostazioni nascoste utilizzano valori diversi dal proprio valore normale calcolato.\n"
  3096. "\n"
  3097. "Fare clic per rendere visibili queste impostazioni."
  3098. msgctxt "@info:status"
  3099. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  3100. msgstr ""
  3101. msgctxt "@info:title"
  3102. msgid "Some required packages are not installed"
  3103. msgstr ""
  3104. msgctxt "@info %1 is the name of a profile"
  3105. msgid "Some setting-values defined in <b>%1</b> were overridden."
  3106. msgstr ""
  3107. msgctxt "@tooltip"
  3108. msgid ""
  3109. "Some setting/override values are different from the values stored in the profile.\n"
  3110. "\n"
  3111. "Click to open the profile manager."
  3112. msgstr ""
  3113. "Alcuni valori di impostazione/esclusione sono diversi dai valori memorizzati nel profilo.\n"
  3114. "\n"
  3115. "Fare clic per aprire la gestione profili."
  3116. msgctxt "@action:label"
  3117. msgid "Some settings from current profile were overwritten."
  3118. msgstr "Alcune impostazioni del profilo corrente sono state sovrascritte."
  3119. msgctxt "@message"
  3120. msgid "Something unexpected happened when trying to log in, please try again."
  3121. msgstr "Si è verificato qualcosa di inatteso durante il tentativo di accesso, riprovare."
  3122. msgctxt "@title:header"
  3123. msgid "Something went wrong when sending the materials to the printers."
  3124. msgstr "Si è verificato un errore durante l'invio di materiali alle stampanti."
  3125. msgctxt "@label"
  3126. msgid "Something went wrong..."
  3127. msgstr "Si è verificato un errore..."
  3128. msgctxt "@label:listbox"
  3129. msgid "Speed"
  3130. msgstr "Velocità"
  3131. msgctxt "@action:inmenu"
  3132. msgid "Sponsor Cura"
  3133. msgstr ""
  3134. msgctxt "@label:button"
  3135. msgid "Sponsor Cura"
  3136. msgstr ""
  3137. msgctxt "@option:radio"
  3138. msgid "Stable and Beta releases"
  3139. msgstr "Versioni stabili e beta"
  3140. msgctxt "@option:radio"
  3141. msgid "Stable releases only"
  3142. msgstr "Solo versioni stabili"
  3143. msgctxt "@item:inlistbox"
  3144. msgid "Stanford Triangle Format"
  3145. msgstr "Stanford Triangle Format"
  3146. msgctxt "@button"
  3147. msgid "Start"
  3148. msgstr "Avvio"
  3149. msgctxt "@action:button"
  3150. msgid "Start Build Plate Leveling"
  3151. msgstr "Avvio livellamento del piano di stampa"
  3152. msgctxt "@title:label"
  3153. msgid "Start G-code"
  3154. msgstr "Codice G avvio"
  3155. msgctxt "@label"
  3156. msgid "Start the slicing process"
  3157. msgstr "Avvia il processo di sezionamento"
  3158. msgctxt "@label"
  3159. msgid "Starts"
  3160. msgstr "Avvia"
  3161. msgctxt "@text"
  3162. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  3163. msgstr "Semplifica il flusso di lavoro e personalizza l'esperienza UltiMaker Cura experience con plugin forniti dalla nostra eccezionale comunità di utenti."
  3164. msgctxt "@label"
  3165. msgid "Strength"
  3166. msgstr "Resistenza"
  3167. msgctxt "description"
  3168. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3169. msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze."
  3170. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3171. msgid "Successfully exported material to <filename>%1</filename>"
  3172. msgstr "Materiale esportato correttamente su <filename>%1</filename>"
  3173. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3174. msgid "Successfully imported material <filename>%1</filename>"
  3175. msgstr "Materiale importato correttamente <filename>%1</filename>"
  3176. #, python-brace-format
  3177. msgctxt "@info:status"
  3178. msgid "Successfully imported profile {0}."
  3179. msgstr "Profilo {0} importato correttamente."
  3180. msgctxt "@action:title"
  3181. msgid "Summary - Cura Project"
  3182. msgstr "Riepilogo - Progetto Cura"
  3183. msgctxt "@label"
  3184. msgid "Support"
  3185. msgstr "Supporto"
  3186. msgctxt "@tooltip"
  3187. msgid "Support"
  3188. msgstr "Supporto"
  3189. msgctxt "@label"
  3190. msgid "Support Blocker"
  3191. msgstr "Blocco supporto"
  3192. msgctxt "name"
  3193. msgid "Support Eraser"
  3194. msgstr "Cancellazione supporto"
  3195. msgctxt "@tooltip"
  3196. msgid "Support Infill"
  3197. msgstr "Riempimento del supporto"
  3198. msgctxt "@tooltip"
  3199. msgid "Support Interface"
  3200. msgstr "Interfaccia supporto"
  3201. msgctxt "@action:label"
  3202. msgid "Support Type"
  3203. msgstr "Tipo di supporto"
  3204. msgctxt "@label Description for application dependency"
  3205. msgid "Support library for faster math"
  3206. msgstr "Libreria di supporto per calcolo rapido"
  3207. msgctxt "@label Description for application component"
  3208. msgid "Support library for file metadata and streaming"
  3209. msgstr "Libreria di supporto per metadati file e streaming"
  3210. msgctxt "@label Description for application component"
  3211. msgid "Support library for handling 3MF files"
  3212. msgstr "Libreria di supporto per gestione file 3MF"
  3213. msgctxt "@label Description for application dependency"
  3214. msgid "Support library for handling STL files"
  3215. msgstr "Libreria di supporto per gestione file STL"
  3216. msgctxt "@label Description for application dependency"
  3217. msgid "Support library for handling triangular meshes"
  3218. msgstr "Libreria di supporto per gestione maglie triangolari"
  3219. msgctxt "@label Description for application dependency"
  3220. msgid "Support library for scientific computing"
  3221. msgstr "Libreria di supporto per calcolo scientifico"
  3222. msgctxt "@label Description for application dependency"
  3223. msgid "Support library for system keyring access"
  3224. msgstr "Libreria di supporto per accesso a keyring sistema"
  3225. msgctxt "@action:button"
  3226. msgid "Sync"
  3227. msgstr "Sincronizza"
  3228. msgctxt "@button"
  3229. msgid "Sync"
  3230. msgstr "Sincronizza"
  3231. msgctxt "@title:header"
  3232. msgid "Sync material profiles via USB"
  3233. msgstr "Sincronizza profili del materiale tramite USB"
  3234. msgctxt "@action:button"
  3235. msgid "Sync materials"
  3236. msgstr "Sincronizza materiali"
  3237. msgctxt "@button"
  3238. msgid "Sync materials with USB"
  3239. msgstr "Sincronizza materiali con USB"
  3240. msgctxt "@title:header"
  3241. msgid "Sync materials with printers"
  3242. msgstr "Sincronizza materiali con stampanti"
  3243. msgctxt "@title:window"
  3244. msgid "Sync materials with printers"
  3245. msgstr "Sincronizza materiali con stampanti"
  3246. msgctxt "@action:button"
  3247. msgid "Sync with Printers"
  3248. msgstr "Sincronizza con le stampanti"
  3249. msgctxt "@button"
  3250. msgid "Syncing"
  3251. msgstr "Sincronizzazione"
  3252. msgctxt "@info:generic"
  3253. msgid "Syncing..."
  3254. msgstr "Sincronizzazione in corso..."
  3255. msgctxt "@title:groupbox"
  3256. msgid "System information"
  3257. msgstr "Informazioni di sistema"
  3258. msgctxt "@button"
  3259. msgid "Technical datasheet"
  3260. msgstr "Scheda tecnica"
  3261. msgctxt "@info:tooltip"
  3262. msgid "The amount of smoothing to apply to the image."
  3263. msgstr "La quantità di smoothing (levigatura) da applicare all'immagine."
  3264. msgctxt "@text"
  3265. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3266. msgstr ""
  3267. msgctxt "@label"
  3268. msgid "The assigned printer, %1, requires the following configuration change:"
  3269. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3270. msgstr[0] "La stampante assegnata, %1, richiede la seguente modifica di configurazione:"
  3271. msgstr[1] "La stampante assegnata, %1, richiede le seguenti modifiche di configurazione:"
  3272. msgctxt "@error:file_size"
  3273. msgid "The backup exceeds the maximum file size."
  3274. msgstr "Il backup supera la dimensione file massima."
  3275. msgctxt "@info:tooltip"
  3276. msgid "The base height from the build plate in millimeters."
  3277. msgstr "L'altezza della base dal piano di stampa in millimetri."
  3278. msgctxt "@info:status"
  3279. 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."
  3280. 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."
  3281. msgctxt "@status"
  3282. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3283. msgstr "La connessione cloud al momento non è disponibile. Verificare la connessione a Internet."
  3284. msgctxt "@status"
  3285. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3286. msgstr "La connessione cloud al momento non è disponibile. Accedere per collegarsi alla stampante cloud."
  3287. msgctxt "@status"
  3288. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3289. msgstr "La stampante cloud è offline. Verificare se la stampante è accesa e collegata a Internet."
  3290. msgctxt "@tooltip"
  3291. msgid "The colour of the material in this extruder."
  3292. msgstr "Il colore del materiale di questo estrusore."
  3293. msgctxt "@tooltip"
  3294. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3295. msgstr "La configurazione di questo estrusore non è consentita e proibisce il sezionamento."
  3296. msgctxt "@label"
  3297. msgid "The configurations are not available because the printer is disconnected."
  3298. msgstr "Le configurazioni non sono disponibili perché la stampante è scollegata."
  3299. msgctxt "@tooltip"
  3300. msgid "The current temperature of the heated bed."
  3301. msgstr "La temperatura corrente del piano riscaldato."
  3302. msgctxt "@tooltip"
  3303. msgid "The current temperature of this hotend."
  3304. msgstr "La temperatura corrente di questa estremità calda."
  3305. msgctxt "@info:tooltip"
  3306. msgid "The depth in millimeters on the build plate"
  3307. msgstr "La profondità in millimetri sul piano di stampa"
  3308. msgctxt "@text"
  3309. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3310. 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."
  3311. msgctxt "@text"
  3312. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3313. 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."
  3314. msgctxt "@label"
  3315. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3316. msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla."
  3317. #, python-brace-format
  3318. msgctxt "@label Don't translate the XML tag <filename>!"
  3319. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3320. msgstr "Il file <filename>{0}</filename> esiste già. Sei sicuro di volerlo sovrascrivere?"
  3321. msgctxt "@label"
  3322. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3323. msgstr "Il firmware inviato a corredo delle nuove stampanti funziona, tuttavia le nuove versioni tendono ad avere più funzioni ed ottimizzazioni."
  3324. msgctxt "@info:backup_failed"
  3325. msgid "The following error occurred while trying to restore a Cura backup:"
  3326. msgstr "Nel tentativo di ripristinare un backup di Cura, si è verificato il seguente errore:"
  3327. msgctxt "@label"
  3328. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3329. msgstr "Impossibile installare i seguenti pacchetti a causa di una versione di Cura non compatibile:"
  3330. msgctxt "@label"
  3331. msgid "The following packages will be added:"
  3332. msgstr "Verranno aggiunti i seguenti pacchetti:"
  3333. msgctxt "@label"
  3334. msgid "The following printers in your account have been added in Cura:"
  3335. msgstr "Le seguenti stampanti del tuo account sono state aggiunte in Cura:"
  3336. msgctxt "@title:header"
  3337. msgid "The following printers will receive the new material profiles:"
  3338. msgstr "Le stampanti seguenti riceveranno i nuovi profili del materiale:"
  3339. msgctxt "@info:tooltip"
  3340. msgid "The following script is active:"
  3341. msgid_plural "The following scripts are active:"
  3342. msgstr[0] "È attivo il seguente script:"
  3343. msgstr[1] "Sono attivi i seguenti script:"
  3344. msgctxt "@label"
  3345. msgid "The following settings define the strength of your part."
  3346. msgstr "Le seguenti impostazioni definiscono la resistenza del tuo pezzo."
  3347. msgctxt "@info:status"
  3348. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3349. msgstr "Le aree evidenziate indicano superfici mancanti o estranee. Correggi il modello e aprilo nuovamente in Cura."
  3350. msgctxt "@tooltip"
  3351. msgid "The material in this extruder."
  3352. msgstr "Il materiale di questo estrusore."
  3353. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3354. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3355. msgstr "Il pacchetto di materiali associato al progetto Cura non è stato trovato su UltiMaker Marketplace. Utilizza la definizione parziale del profilo del materiale memorizzata nel file di progetto Cura a tuo rischio."
  3356. msgctxt "@info:tooltip"
  3357. msgid "The maximum distance of each pixel from \"Base.\""
  3358. msgstr "La distanza massima di ciascun pixel da \"Base.\""
  3359. msgctxt "@label (%1 is a number)"
  3360. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3361. msgstr "Il nuovo diametro del filamento impostato a %1 mm non è compatibile con l'attuale estrusore. Continuare?"
  3362. msgctxt "@tooltip"
  3363. msgid "The nozzle inserted in this extruder."
  3364. msgstr "L’ugello inserito in questo estrusore."
  3365. msgctxt "@label"
  3366. msgid ""
  3367. "The pattern of the infill material of the print:\n"
  3368. "\n"
  3369. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  3370. "\n"
  3371. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  3372. "\n"
  3373. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3374. msgstr ""
  3375. "La configurazione del materiale di riempimento della stampa:\n"
  3376. "\n"
  3377. "Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n"
  3378. "\n"
  3379. "Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n"
  3380. "\n"
  3381. "Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide."
  3382. msgctxt "@info:tooltip"
  3383. 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."
  3384. msgstr "Percentuale di luce che penetra una stampa dello spessore di 1 millimetro. Se questo valore si riduce, il contrasto nelle aree scure dell'immagine aumenta, mentre il contrasto nelle aree chiare dell'immagine diminuisce."
  3385. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3386. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3387. msgstr ""
  3388. msgctxt "@info:title"
  3389. msgid "The print job was successfully submitted"
  3390. msgstr "Il processo di stampa è stato inviato correttamente"
  3391. msgctxt "@label"
  3392. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3393. msgstr "La stampante %1 è assegnata, ma il processo contiene una configurazione materiale sconosciuta."
  3394. msgctxt "@label"
  3395. msgid "The printer at this address has not responded yet."
  3396. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  3397. msgctxt "@label"
  3398. msgid "The printer at this address has not yet responded."
  3399. msgstr "La stampante a questo indirizzo non ha ancora risposto."
  3400. msgctxt "@info:status"
  3401. msgid "The printer is not connected."
  3402. msgstr "La stampante non è collegata."
  3403. msgctxt "@label"
  3404. msgid "The printer(s) below cannot be connected because they are part of a group"
  3405. msgstr "Le stampanti riportate di seguito non possono essere collegate perché fanno parte di un gruppo"
  3406. msgctxt "@message"
  3407. msgid "The provided state is not correct."
  3408. msgstr "Lo stato fornito non è corretto."
  3409. msgctxt "@text:window"
  3410. msgid "The release notes could not be opened."
  3411. msgstr "Impossibile aprire le note sulla versione."
  3412. msgctxt "@text:error"
  3413. msgid "The response from Digital Factory appears to be corrupted."
  3414. msgstr "La risposta da Digital Factory sembra essere danneggiata."
  3415. msgctxt "@text:error"
  3416. msgid "The response from Digital Factory is missing important information."
  3417. msgstr "Nella risposta da Digital Factory mancano informazioni importanti."
  3418. msgctxt "@tooltip"
  3419. 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."
  3420. msgstr "La temperatura target del piano riscaldato. Il piano verrà riscaldato o raffreddato a questa temperatura. Se è 0, il riscaldamento del piano viene disattivato."
  3421. msgctxt "@tooltip"
  3422. 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."
  3423. 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."
  3424. msgctxt "@tooltip of temperature input"
  3425. msgid "The temperature to pre-heat the bed to."
  3426. msgstr "La temperatura di preriscaldo del piano."
  3427. msgctxt "@tooltip of temperature input"
  3428. msgid "The temperature to pre-heat the hotend to."
  3429. msgstr "La temperatura di preriscaldo dell’estremità calda."
  3430. msgctxt "@text"
  3431. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3432. msgstr "Il profilo visivo è destinato alla stampa di prototipi e modelli visivi, con l'intento di ottenere una qualità visiva e della superficie elevata."
  3433. msgctxt "@info:tooltip"
  3434. msgid "The width in millimeters on the build plate"
  3435. msgstr "La larghezza in millimetri sul piano di stampa"
  3436. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3437. msgid "Theme*:"
  3438. msgstr "Tema*:"
  3439. msgctxt "@info:status"
  3440. msgid "There are no file formats available to write with!"
  3441. msgstr "Non ci sono formati di file disponibili per la scrittura!"
  3442. msgctxt "@label"
  3443. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3444. msgstr "Non sono presenti processi di stampa nella coda. Eseguire lo slicing e inviare un processo per aggiungerne uno."
  3445. msgctxt "@tooltip"
  3446. msgid "There are no profiles matching the configuration of this extruder."
  3447. msgstr "Nessun profilo corrispondente alla configurazione di questo estrusore."
  3448. msgctxt "@info:status"
  3449. msgid "There is no active printer yet."
  3450. msgstr "Non ci sono ancora stampanti attive."
  3451. msgctxt "@label"
  3452. msgid "There is no printer found over your network."
  3453. msgstr "Non è stata trovata alcuna stampante sulla rete."
  3454. msgctxt "@error"
  3455. msgid "There is no workspace yet to write. Please add a printer first."
  3456. msgstr "Ancora nessuna area di lavoro da scrivere. Aggiungere innanzitutto una stampante."
  3457. msgctxt "@info:backup_status"
  3458. msgid "There was an error trying to restore your backup."
  3459. msgstr "Si è verificato un errore cercando di ripristinare il backup."
  3460. msgctxt "@info:backup_status"
  3461. msgid "There was an error while creating your backup."
  3462. msgstr "Si è verificato un errore durante la creazione del backup."
  3463. msgctxt "@info:backup_status"
  3464. msgid "There was an error while uploading your backup."
  3465. msgstr "Si è verificato un errore durante il caricamento del backup."
  3466. msgctxt "@label"
  3467. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3468. msgstr "Questa configurazione non è disponibile perché %1 non viene riconosciuto. Visitare %2 per scaricare il profilo materiale corretto."
  3469. msgctxt "@text:window"
  3470. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3471. msgstr "Questo è un file progetto Cura. Vuoi aprirlo come progetto o importarne i modelli?"
  3472. msgctxt "@label"
  3473. msgid "This material is linked to %1 and shares some of its properties."
  3474. msgstr "Questo materiale è collegato a %1 e condivide alcune delle sue proprietà."
  3475. msgctxt "@label"
  3476. msgid "This package will be installed after restarting."
  3477. msgstr "Questo pacchetto sarà installato dopo il riavvio."
  3478. msgctxt "@label"
  3479. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3480. msgstr "Questa stampante non può essere aggiunta perché è una stampante sconosciuta o non è l'host di un gruppo."
  3481. msgctxt "info:status"
  3482. msgid "This printer is not linked to the Digital Factory:"
  3483. msgid_plural "These printers are not linked to the Digital Factory:"
  3484. msgstr[0] "Questa stampante non è collegata a Digital Factory:"
  3485. msgstr[1] "Queste stampanti non sono collegate a Digital Factory:"
  3486. msgctxt "@status"
  3487. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3488. msgstr "Questa stampante non è collegata al tuo account. Visitare Ultimaker Digital Factory per stabilire una connessione."
  3489. msgctxt "@label"
  3490. msgid "This printer is not set up to host a group of printers."
  3491. msgstr "Questa stampante non è predisposta per comandare un gruppo di stampanti."
  3492. msgctxt "@label"
  3493. msgid "This printer is the host for a group of %1 printers."
  3494. msgstr "Questa stampante comanda un gruppo di %1 stampanti."
  3495. #, python-brace-format
  3496. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3497. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3498. msgstr "Questo profilo <filename>{0}</filename> contiene dati errati, impossibile importarlo."
  3499. msgctxt "@action:label"
  3500. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3501. msgstr "Questo profilo utilizza le impostazioni predefinite dalla stampante, perciò non ci sono impostazioni/esclusioni nell’elenco riportato di seguito."
  3502. msgctxt "@label"
  3503. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3504. msgstr ""
  3505. msgctxt "@label"
  3506. msgid ""
  3507. "This setting has a value that is different from the profile.\n"
  3508. "\n"
  3509. "Click to restore the value of the profile."
  3510. msgstr ""
  3511. "Questa impostazione ha un valore diverso dal profilo.\n"
  3512. "\n"
  3513. "Fare clic per ripristinare il valore del profilo."
  3514. msgctxt "@item:tooltip"
  3515. msgid "This setting has been hidden by the active machine and will not be visible."
  3516. msgstr "Questa impostazione è stata nascosta dalla macchina attiva e non sarà visibile."
  3517. msgctxt "@item:tooltip %1 is list of setting names"
  3518. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3519. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3520. msgstr[0] "Questa impostazione è stata nascosta dal valore di %1. Modifica il valore di tale impostazione per rendere visibile l’impostazione."
  3521. msgstr[1] "Questa impostazione è stata nascosta dai valori di %1. Modifica i valori di tali impostazioni per rendere visibile questa impostazione."
  3522. msgctxt "@label"
  3523. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3524. msgstr "Questa impostazione è sempre condivisa tra tutti gli estrusori. La sua modifica varierà il valore per tutti gli estrusori."
  3525. msgctxt "@label"
  3526. msgid ""
  3527. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3528. "\n"
  3529. "Click to restore the calculated value."
  3530. msgstr ""
  3531. "Questa impostazione normalmente viene calcolata, ma attualmente ha impostato un valore assoluto.\n"
  3532. "\n"
  3533. "Fare clic per ripristinare il valore calcolato."
  3534. msgctxt "@label"
  3535. msgid "This setting is not used because all the settings that it influences are overridden."
  3536. msgstr "Questa impostazione non è utilizzata perché tutte le impostazioni che influenza sono sottoposte a override."
  3537. msgctxt "@label"
  3538. msgid "This setting is resolved from conflicting extruder-specific values:"
  3539. msgstr "Questa impostazione viene risolta dai valori in conflitto specifici dell'estrusore:"
  3540. msgctxt "@info:warning"
  3541. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3542. msgstr ""
  3543. msgctxt "@label"
  3544. msgid "Time estimation"
  3545. msgstr "Stima del tempo"
  3546. msgctxt "@message"
  3547. msgid "Timeout when authenticating with the account server."
  3548. msgstr "Timeout durante l'autenticazione con il server account."
  3549. msgctxt "@text"
  3550. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3551. msgstr "Per sincronizzare automaticamente i profili del materiale con tutte le stampanti collegate a Digital Factory è necessario aver effettuato l'accesso a Cura."
  3552. #, python-brace-format
  3553. msgctxt "info:status"
  3554. msgid "To establish a connection, please visit the {website_link}"
  3555. msgstr "Per stabilire una connessione, visitare {website_link}"
  3556. msgctxt "@label"
  3557. 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."
  3558. 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."
  3559. msgctxt "@label"
  3560. 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."
  3561. 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."
  3562. #, python-brace-format
  3563. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3564. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3565. msgstr "Per rimuovere definitivamente {printer_name}, visitare {digital_factory_link}"
  3566. msgctxt "@action:inmenu"
  3567. msgid "Toggle Full Screen"
  3568. msgstr "Attiva/disattiva schermo intero"
  3569. msgctxt "@label"
  3570. msgid "Top / Bottom"
  3571. msgstr "Superiore / Inferiore"
  3572. msgctxt "@action:inmenu menubar:view"
  3573. msgid "Top View"
  3574. msgstr "Visualizzazione superiore"
  3575. msgctxt "@info:tooltip"
  3576. msgid "Top View"
  3577. msgstr "Visualizzazione superiore"
  3578. msgctxt "@label"
  3579. msgid "Total print time"
  3580. msgstr "Tempo di stampa totale"
  3581. msgctxt "@action:tooltip"
  3582. msgid "Track the print in Ultimaker Digital Factory"
  3583. msgstr "Traccia la stampa in Ultimaker Digital Factory"
  3584. msgctxt "@item:inlistbox"
  3585. msgid "Translucency"
  3586. msgstr "Traslucenza"
  3587. msgctxt "@tooltip"
  3588. msgid "Travel"
  3589. msgstr "Spostamenti"
  3590. msgctxt "@label"
  3591. msgid "Travels"
  3592. msgstr "Spostamenti"
  3593. msgctxt "@info:backup_failed"
  3594. msgid "Tried to restore a Cura backup that is higher than the current version."
  3595. msgstr "Tentativo di ripristinare un backup di Cura di versione superiore rispetto a quella corrente."
  3596. msgctxt "@info:backup_failed"
  3597. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3598. msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati."
  3599. msgctxt "name"
  3600. msgid "Trimesh Reader"
  3601. msgstr "Trimesh Reader"
  3602. msgctxt "@button"
  3603. msgid "Troubleshooting"
  3604. msgstr "Ricerca e riparazione dei guasti"
  3605. msgctxt "@label"
  3606. msgid "Troubleshooting"
  3607. msgstr "Ricerca e riparazione dei guasti"
  3608. msgctxt "@button"
  3609. msgid "Try again"
  3610. msgstr "Riprova"
  3611. msgctxt "@action:label"
  3612. msgid "Type"
  3613. msgstr "Tipo"
  3614. msgctxt "@label"
  3615. msgid "Type"
  3616. msgstr "Tipo"
  3617. msgctxt "name"
  3618. msgid "UFP Reader"
  3619. msgstr "Lettore UFP"
  3620. msgctxt "name"
  3621. msgid "UFP Writer"
  3622. msgstr "Writer UFP"
  3623. msgctxt "@item:inmenu"
  3624. msgid "USB printing"
  3625. msgstr "Stampa USB"
  3626. msgctxt "name"
  3627. msgid "USB printing"
  3628. msgstr "Stampa USB"
  3629. msgctxt "@button"
  3630. msgid "UltiMaker Account"
  3631. msgstr "Account UltiMaker"
  3632. msgctxt "@info"
  3633. msgid "UltiMaker Certified Material"
  3634. msgstr "Materiale certificato UltiMaker"
  3635. msgctxt "@text:window"
  3636. 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:"
  3637. 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:"
  3638. msgctxt "@item:inlistbox"
  3639. msgid "UltiMaker Format Package"
  3640. msgstr "Pacchetto formato UltiMaker"
  3641. msgctxt "name"
  3642. msgid "UltiMaker Network Connection"
  3643. msgstr "Connessione di rete UltiMaker"
  3644. msgctxt "@info"
  3645. msgid "UltiMaker Verified Package"
  3646. msgstr "Pacchetto verificato UltiMaker"
  3647. msgctxt "@info"
  3648. msgid "UltiMaker Verified Plug-in"
  3649. msgstr "Plug-in verificato UltiMaker"
  3650. msgctxt "name"
  3651. msgid "UltiMaker machine actions"
  3652. msgstr "Azioni della macchina UltiMaker"
  3653. msgctxt "@button"
  3654. msgid "UltiMaker printer"
  3655. msgstr "Stampante UltiMaker"
  3656. msgctxt "@label:button"
  3657. msgid "UltiMaker support"
  3658. msgstr "Supporto UltiMaker"
  3659. msgctxt "info:name"
  3660. msgid "Ultimaker Digital Factory"
  3661. msgstr "Ultimaker Digital Factory"
  3662. msgctxt "name"
  3663. msgid "Ultimaker Digital Library"
  3664. msgstr "Ultimaker Digital Library"
  3665. msgctxt "@info:status"
  3666. msgid "Unable to add the profile."
  3667. msgstr "Impossibile aggiungere il profilo."
  3668. msgctxt "@info:status"
  3669. msgid "Unable to find a location within the build volume for all objects"
  3670. msgstr "Impossibile individuare una posizione nel volume di stampa per tutti gli oggetti"
  3671. #, python-brace-format
  3672. msgctxt "@info:plugin_failed"
  3673. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3674. msgstr ""
  3675. #, python-brace-format
  3676. msgctxt "@info:plugin_failed"
  3677. msgid ""
  3678. "Unable to kill running EnginePlugin: {self._plugin_id}\n"
  3679. "Access is denied."
  3680. msgstr ""
  3681. msgctxt "@info"
  3682. msgid "Unable to reach the UltiMaker account server."
  3683. msgstr "Impossibile raggiungere il server account UltiMaker."
  3684. msgctxt "@text"
  3685. msgid "Unable to read example data file."
  3686. msgstr "Impossibile leggere il file di dati di esempio."
  3687. msgctxt "@info:title"
  3688. msgid "Unable to slice"
  3689. msgstr "Sezionamento impossibile"
  3690. msgctxt "@label:PrintjobStatus"
  3691. msgid "Unable to slice"
  3692. msgstr "Sezionamento impossibile"
  3693. msgctxt "@info:status"
  3694. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3695. msgstr "Impossibile eseguire il sezionamento perché la torre di innesco o la posizione di innesco non sono valide."
  3696. #, python-format
  3697. msgctxt "@info:status"
  3698. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3699. msgstr "Impossibile effettuare il sezionamento in quanto vi sono oggetti associati a Extruder %s disabilitato."
  3700. #, python-brace-format
  3701. msgctxt "@info:status"
  3702. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3703. msgstr "Impossibile eseguire il sezionamento a causa di alcune impostazioni per modello. Le seguenti impostazioni presentano errori su uno o più modelli: {error_labels}"
  3704. msgctxt "@info:status"
  3705. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3706. msgstr "Impossibile eseguire il sezionamento con il materiale corrente in quanto incompatibile con la macchina o la configurazione selezionata."
  3707. #, python-brace-format
  3708. msgctxt "@info:status"
  3709. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3710. msgstr "Impossibile eseguire il sezionamento con le impostazioni attuali. Le seguenti impostazioni presentano errori: {0}"
  3711. msgctxt "@info"
  3712. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3713. msgstr "Impossibile avviare un nuovo processo di accesso. Verificare se è ancora attivo un altro tentativo di accesso."
  3714. msgctxt "@label:status"
  3715. msgid "Unavailable"
  3716. msgstr "Non disponibile"
  3717. msgctxt "@label"
  3718. msgid "Unavailable printer"
  3719. msgstr "Stampante non disponibile"
  3720. msgctxt "@action:inmenu menubar:edit"
  3721. msgid "Ungroup Models"
  3722. msgstr "Separa modelli"
  3723. msgctxt "@button"
  3724. msgid "Uninstall"
  3725. msgstr "Disinstalla"
  3726. msgctxt "@title:column Unit of measurement"
  3727. msgid "Unit"
  3728. msgstr "Unità"
  3729. msgctxt "@label Description for development tool"
  3730. msgid "Universal build system configuration"
  3731. msgstr "Configurazione universale del sistema di build"
  3732. msgctxt "@label"
  3733. msgid "Unknown"
  3734. msgstr "Sconosciuto"
  3735. msgctxt "@label unknown version of Cura"
  3736. msgid "Unknown"
  3737. msgstr "Sconosciuto"
  3738. msgctxt "@label:property"
  3739. msgid "Unknown Author"
  3740. msgstr "Autore sconosciuto"
  3741. msgctxt "@label:property"
  3742. msgid "Unknown Package"
  3743. msgstr "Pacchetto sconosciuto"
  3744. #, python-brace-format
  3745. msgctxt "@error:send"
  3746. msgid "Unknown error code when uploading print job: {0}"
  3747. msgstr "Codice di errore sconosciuto durante il caricamento del processo di stampa: {0}"
  3748. msgctxt "@text"
  3749. msgid "Unknown error."
  3750. msgstr "Errore sconosciuto."
  3751. msgctxt "@label"
  3752. msgid "Unlink Material"
  3753. msgstr "Scollega materiale"
  3754. msgctxt "@label:status"
  3755. msgid "Unreachable"
  3756. msgstr "Non raggiungibile"
  3757. msgctxt "@label"
  3758. msgid "Untitled"
  3759. msgstr "Senza titolo"
  3760. msgctxt "@text Print job name"
  3761. msgid "Untitled"
  3762. msgstr "Senza titolo"
  3763. msgctxt "@button"
  3764. msgid "Update"
  3765. msgstr "Aggiorna"
  3766. msgctxt "@action"
  3767. msgid "Update Firmware"
  3768. msgstr "Aggiornamento firmware"
  3769. msgctxt "@title"
  3770. msgid "Update Firmware"
  3771. msgstr "Aggiornamento firmware"
  3772. msgctxt "@action:ComboBox Update/override existing profile"
  3773. msgid "Update existing"
  3774. msgstr "Aggiorna esistente"
  3775. msgctxt "@action:tooltip"
  3776. msgid "Update profile with current settings/overrides"
  3777. msgstr "Aggiorna il profilo con le impostazioni/esclusioni correnti"
  3778. msgctxt "@action:button"
  3779. msgid "Update profile."
  3780. msgstr "Aggiornare il profilo."
  3781. msgctxt "@info:title"
  3782. msgid "Update your printer"
  3783. msgstr "Aggiornare la stampante"
  3784. msgctxt "@label"
  3785. msgid "Updates"
  3786. msgstr "Aggiornamenti"
  3787. msgctxt "@label"
  3788. msgid "Updating firmware."
  3789. msgstr "Aggiornamento firmware."
  3790. msgctxt "@button"
  3791. msgid "Updating..."
  3792. msgstr "Aggiornamento in corso..."
  3793. msgctxt "description"
  3794. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3795. msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2."
  3796. msgctxt "description"
  3797. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3798. msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4."
  3799. msgctxt "description"
  3800. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3801. msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6."
  3802. msgctxt "description"
  3803. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3804. msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7."
  3805. msgctxt "description"
  3806. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3807. msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0."
  3808. msgctxt "description"
  3809. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3810. msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1."
  3811. msgctxt "description"
  3812. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3813. msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3."
  3814. msgctxt "description"
  3815. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3816. msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4."
  3817. msgctxt "description"
  3818. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3819. msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5."
  3820. msgctxt "description"
  3821. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3822. msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0."
  3823. msgctxt "description"
  3824. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3825. msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1."
  3826. msgctxt "description"
  3827. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3828. msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2."
  3829. msgctxt "description"
  3830. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3831. msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12."
  3832. msgctxt "description"
  3833. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3834. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0."
  3835. msgctxt "description"
  3836. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3837. msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3."
  3838. msgctxt "description"
  3839. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3840. msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4."
  3841. msgctxt "description"
  3842. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3843. msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5."
  3844. msgctxt "description"
  3845. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3846. msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6."
  3847. msgctxt "description"
  3848. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3849. msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2."
  3850. msgctxt "description"
  3851. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3852. msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7."
  3853. msgctxt "description"
  3854. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3855. msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8."
  3856. msgctxt "description"
  3857. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3858. msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9."
  3859. msgctxt "description"
  3860. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3861. msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10."
  3862. msgctxt "description"
  3863. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3864. msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3."
  3865. msgctxt "description"
  3866. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3867. msgstr ""
  3868. msgctxt "description"
  3869. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  3870. msgstr ""
  3871. msgctxt "@action:button"
  3872. msgid "Upload custom Firmware"
  3873. msgstr "Carica il firmware personalizzato"
  3874. msgctxt "@info:status"
  3875. msgid "Uploading print job to printer."
  3876. msgstr "Caricamento del processo di stampa sulla stampante."
  3877. msgctxt "@info:backup_status"
  3878. msgid "Uploading your backup..."
  3879. msgstr "Caricamento backup in corso..."
  3880. msgctxt "@option:check"
  3881. msgid "Use a single instance of Cura"
  3882. msgstr "Utilizzare una singola istanza di Cura"
  3883. msgctxt "@label"
  3884. msgid "Use glue for better adhesion with this material combination."
  3885. msgstr "Utilizzare la colla per una migliore adesione con questa combinazione di materiali."
  3886. msgctxt "@label"
  3887. msgid "User Agreement"
  3888. msgstr "Contratto di licenza"
  3889. msgctxt "@label Description for application dependency"
  3890. msgid "Utility functions, including an image loader"
  3891. msgstr "Funzioni di utilità, tra cui un caricatore di immagini"
  3892. msgctxt "@label Description for application dependency"
  3893. msgid "Utility library, including Voronoi generation"
  3894. msgstr "Libreria utilità, tra cui generazione diagramma Voronoi"
  3895. msgctxt "name"
  3896. msgid "Version Upgrade 2.1 to 2.2"
  3897. msgstr "Aggiornamento della versione da 2.1 a 2.2"
  3898. msgctxt "name"
  3899. msgid "Version Upgrade 2.2 to 2.4"
  3900. msgstr "Aggiornamento della versione da 2.2 a 2.4"
  3901. msgctxt "name"
  3902. msgid "Version Upgrade 2.5 to 2.6"
  3903. msgstr "Aggiornamento della versione da 2.5 a 2.6"
  3904. msgctxt "name"
  3905. msgid "Version Upgrade 2.6 to 2.7"
  3906. msgstr "Aggiornamento della versione da 2.6 a 2.7"
  3907. msgctxt "name"
  3908. msgid "Version Upgrade 2.7 to 3.0"
  3909. msgstr "Aggiornamento della versione da 2.7 a 3.0"
  3910. msgctxt "name"
  3911. msgid "Version Upgrade 3.0 to 3.1"
  3912. msgstr "Aggiornamento della versione da 3.0 a 3.1"
  3913. msgctxt "name"
  3914. msgid "Version Upgrade 3.2 to 3.3"
  3915. msgstr "Aggiornamento della versione da 3.2 a 3.3"
  3916. msgctxt "name"
  3917. msgid "Version Upgrade 3.3 to 3.4"
  3918. msgstr "Aggiornamento della versione da 3.3 a 3.4"
  3919. msgctxt "name"
  3920. msgid "Version Upgrade 3.4 to 3.5"
  3921. msgstr "Aggiornamento della versione da 3.4 a 3.5"
  3922. msgctxt "name"
  3923. msgid "Version Upgrade 3.5 to 4.0"
  3924. msgstr "Aggiornamento della versione da 3.5 a 4.0"
  3925. msgctxt "name"
  3926. msgid "Version Upgrade 4.0 to 4.1"
  3927. msgstr "Aggiornamento della versione da 4.0 a 4.1"
  3928. msgctxt "name"
  3929. msgid "Version Upgrade 4.1 to 4.2"
  3930. msgstr "Aggiornamento della versione da 4.1 a 4.2"
  3931. msgctxt "name"
  3932. msgid "Version Upgrade 4.11 to 4.12"
  3933. msgstr "Aggiornamento della versione da 4.11 a 4.12"
  3934. msgctxt "name"
  3935. msgid "Version Upgrade 4.13 to 5.0"
  3936. msgstr "Aggiornamento della versione da 4.13 a 5.0"
  3937. msgctxt "name"
  3938. msgid "Version Upgrade 4.2 to 4.3"
  3939. msgstr "Aggiornamento della versione da 4.2 a 4.3"
  3940. msgctxt "name"
  3941. msgid "Version Upgrade 4.3 to 4.4"
  3942. msgstr "Aggiornamento della versione da 4.3 a 4.4"
  3943. msgctxt "name"
  3944. msgid "Version Upgrade 4.4 to 4.5"
  3945. msgstr "Aggiornamento della versione da 4.4 a 4.5"
  3946. msgctxt "name"
  3947. msgid "Version Upgrade 4.5 to 4.6"
  3948. msgstr "Aggiornamento della versione da 4.5 a 4.6"
  3949. msgctxt "name"
  3950. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3951. msgstr "Aggiornamento versione da 4.6.0 a 4.6.2"
  3952. msgctxt "name"
  3953. msgid "Version Upgrade 4.6.2 to 4.7"
  3954. msgstr "Aggiornamento versione da 4.6.2 a 4.7"
  3955. msgctxt "name"
  3956. msgid "Version Upgrade 4.7 to 4.8"
  3957. msgstr "Aggiornamento della versione da 4.7 a 4.8"
  3958. msgctxt "name"
  3959. msgid "Version Upgrade 4.8 to 4.9"
  3960. msgstr "Aggiornamento della versione da 4.8 a 4.9"
  3961. msgctxt "name"
  3962. msgid "Version Upgrade 4.9 to 4.10"
  3963. msgstr "Aggiornamento della versione da 4.9 a 4.10"
  3964. msgctxt "name"
  3965. msgid "Version Upgrade 5.2 to 5.3"
  3966. msgstr "Aggiornamento della versione da 5.2 a 5.3"
  3967. msgctxt "name"
  3968. msgid "Version Upgrade 5.3 to 5.4"
  3969. msgstr ""
  3970. msgctxt "name"
  3971. msgid "Version Upgrade 5.4 to 5.5"
  3972. msgstr ""
  3973. msgctxt "@button"
  3974. msgid "View printers in Digital Factory"
  3975. msgstr "Visualizza le stampanti in Digital Factory"
  3976. msgctxt "@label"
  3977. msgid "View type"
  3978. msgstr "Visualizza tipo"
  3979. msgctxt "@label link to technical assistance"
  3980. msgid "View user manuals online"
  3981. msgstr "Visualizza i manuali utente online"
  3982. msgctxt "@label"
  3983. msgid "Viewport behavior"
  3984. msgstr "Comportamento del riquadro di visualizzazione"
  3985. msgctxt "@action:inmenu"
  3986. msgid "Visible Settings"
  3987. msgstr "Impostazioni visibili"
  3988. msgctxt "@button"
  3989. msgid "Visit plug-in website"
  3990. msgstr "Visita il sito web del plug-in"
  3991. msgctxt "@tooltip:button"
  3992. msgid "Visit the UltiMaker website."
  3993. msgstr "Visita il sito Web UltiMaker."
  3994. msgctxt "@label"
  3995. msgid "Visual"
  3996. msgstr "Visivo"
  3997. msgctxt "@label"
  3998. msgid "Waiting for"
  3999. msgstr "In attesa"
  4000. msgctxt "@label"
  4001. msgid "Waiting for Cloud response"
  4002. msgstr "In attesa della risposta del cloud"
  4003. msgctxt "@button"
  4004. msgid "Waiting for new printers"
  4005. msgstr "In attesa delle nuove stampanti"
  4006. msgctxt "@button"
  4007. msgid "Want more?"
  4008. msgstr "Ulteriori informazioni?"
  4009. msgctxt "@info:title"
  4010. msgid "Warning"
  4011. msgstr "Avvertenza"
  4012. #, python-brace-format
  4013. msgctxt "@info:status"
  4014. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  4015. msgstr "Avvertenza: il profilo non è visibile in quanto il tipo di qualità '{0}' non è disponibile per la configurazione corrente. Passare alla combinazione materiale/ugello che consente di utilizzare questo tipo di qualità."
  4016. msgctxt "@text:window"
  4017. 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."
  4018. 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."
  4019. msgctxt "@text:window"
  4020. 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?"
  4021. 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?"
  4022. msgctxt "@info"
  4023. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  4024. msgstr "Impossibile visualizzare feed della Webcam per stampanti cloud da UltiMaker Cura. Fare clic su \"Gestione stampanti\" per visitare Ultimaker Digital Factory e visualizzare questa Webcam."
  4025. msgctxt "@button"
  4026. msgid "Website"
  4027. msgstr "Sito web"
  4028. msgctxt "@label"
  4029. msgid "What printer would you like to setup?"
  4030. msgstr "Quale stampante si desidera configurare?"
  4031. msgctxt "@info:tooltip"
  4032. msgid "What type of camera rendering should be used?"
  4033. msgstr "Quale tipo di rendering della fotocamera è necessario utilizzare?"
  4034. msgctxt "@action:inmenu menubar:help"
  4035. msgid "What's New"
  4036. msgstr "Scopri le novità"
  4037. msgctxt "@label"
  4038. msgid "What's New"
  4039. msgstr "Scopri le novità"
  4040. msgctxt "@title:window"
  4041. msgid "What's New"
  4042. msgstr "Scopri le novità"
  4043. msgctxt "@info:tooltip"
  4044. msgid "When checking for updates, check for both stable and for beta releases."
  4045. msgstr "Quando si verifica la presenza di aggiornamenti, cercare versioni stabili e beta."
  4046. msgctxt "@info:tooltip"
  4047. msgid "When checking for updates, only check for stable releases."
  4048. msgstr "Quando si verifica la presenza di aggiornamenti, cercare solo versioni stabili."
  4049. msgctxt "@info:tooltip"
  4050. 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."
  4051. 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."
  4052. msgctxt "@button"
  4053. msgid "Why do I need to sync material profiles?"
  4054. msgstr "Cosa occorre per sincronizzare i profili del materiale?"
  4055. msgctxt "@action:label"
  4056. msgid "Width (mm)"
  4057. msgstr "Larghezza (mm)"
  4058. msgctxt "description"
  4059. msgid "Writes g-code to a compressed archive."
  4060. msgstr "Scrive il codice G in un archivio compresso."
  4061. msgctxt "description"
  4062. msgid "Writes g-code to a file."
  4063. msgstr "Scrive il codice G in un file."
  4064. msgctxt "@label"
  4065. msgid "X (Width)"
  4066. msgstr "X (Larghezza)"
  4067. msgctxt "@label"
  4068. msgid "X max"
  4069. msgstr "X max"
  4070. msgctxt "@label"
  4071. msgid "X min"
  4072. msgstr "X min"
  4073. msgctxt "name"
  4074. msgid "X-Ray View"
  4075. msgstr "Vista ai raggi X"
  4076. msgctxt "@item:inlistbox"
  4077. msgid "X-Ray view"
  4078. msgstr "Vista ai raggi X"
  4079. msgctxt "@label"
  4080. msgid "X/Y"
  4081. msgstr "X/Y"
  4082. msgctxt "@item:inlistbox"
  4083. msgid "X3D File"
  4084. msgstr "File X3D"
  4085. msgctxt "name"
  4086. msgid "X3D Reader"
  4087. msgstr "Lettore X3D"
  4088. msgctxt "@label"
  4089. msgid "Y (Depth)"
  4090. msgstr "Y (Profondità)"
  4091. msgctxt "@label"
  4092. msgid "Y max"
  4093. msgstr "Y max"
  4094. msgctxt "@label"
  4095. msgid "Y min"
  4096. msgstr "Y min"
  4097. msgctxt "@info"
  4098. msgid "Yes"
  4099. msgstr "Sì"
  4100. msgctxt "@label"
  4101. msgid ""
  4102. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  4103. "Are you sure you want to continue?"
  4104. msgstr ""
  4105. "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non può essere annullata. \n"
  4106. "Continuare?"
  4107. #, python-brace-format
  4108. msgctxt "@label"
  4109. msgid ""
  4110. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  4111. "Are you sure you want to continue?"
  4112. msgid_plural ""
  4113. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  4114. "Are you sure you want to continue?"
  4115. msgstr[0] ""
  4116. "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\n"
  4117. "Continuare?"
  4118. msgstr[1] ""
  4119. "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\n"
  4120. "Continuare?"
  4121. msgctxt "@info:status"
  4122. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  4123. msgstr "Si sta tentando di connettersi a una stampante che non esegue Ultimaker Connect. Aggiornare la stampante con il firmware più recente."
  4124. #, python-brace-format
  4125. msgctxt "@info:status"
  4126. 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."
  4127. 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."
  4128. msgctxt "@empty_state"
  4129. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  4130. msgstr "Nessun backup. Usare il pulsante ‘Esegui backup adesso’ per crearne uno."
  4131. msgctxt "@text:window, %1 is a profile name"
  4132. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  4133. msgstr ""
  4134. "Alcune impostazioni di profilo sono state personalizzate.\n"
  4135. "Mantenere queste impostazioni modificate dopo il cambio dei profili?\n"
  4136. "In alternativa, è possibile eliminare le modifiche per caricare i valori predefiniti da '%1'."
  4137. msgctxt "@label"
  4138. msgid "You need to accept the license to install the package"
  4139. msgstr "È necessario accettare la licenza per installare il pacchetto"
  4140. msgctxt "@info:generic"
  4141. msgid "You need to quit and restart {} before changes have effect."
  4142. msgstr "Affinché le modifiche diventino effettive, è necessario chiudere e riavviare {}."
  4143. msgctxt "@dialog:info"
  4144. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  4145. msgstr "Riavviare Cura prima di ripristinare il backup. Chiudere Cura adesso?"
  4146. msgctxt "@info:status"
  4147. msgid "You will receive a confirmation via email when the print job is approved"
  4148. msgstr "Riceverai una conferma via e-mail quando il processo di stampa sarà approvato"
  4149. msgctxt "@info:backup_status"
  4150. msgid "Your backup has finished uploading."
  4151. msgstr "Caricamento backup completato."
  4152. msgctxt "@action:label"
  4153. msgid "Your current settings match the selected profile."
  4154. msgstr "Le impostazioni correnti corrispondono al profilo selezionato."
  4155. msgctxt "@info"
  4156. msgid "Your new printer will automatically appear in Cura"
  4157. msgstr "La nuova stampante apparirà automaticamente in Cura"
  4158. #, python-brace-format
  4159. msgctxt "@info:status"
  4160. msgid ""
  4161. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  4162. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  4163. msgstr ""
  4164. "Impossibile connettere la stampante <b>{printer_name}</b> tramite cloud.\n"
  4165. " Gestisci la coda di stampa e monitora le stampe da qualsiasi posizione collegando la stampante a Digital Factory"
  4166. msgctxt "@label"
  4167. msgid "Z"
  4168. msgstr "Z"
  4169. msgctxt "@label"
  4170. msgid "Z (Height)"
  4171. msgstr "Z (Altezza)"
  4172. msgctxt "@label Description for application dependency"
  4173. msgid "ZeroConf discovery library"
  4174. msgstr "Libreria scoperta ZeroConf"
  4175. msgctxt "@action:button"
  4176. msgid "Zoom toward mouse direction"
  4177. msgstr "Zoom verso la direzione del mouse"
  4178. msgctxt "@info:tooltip"
  4179. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4180. msgstr "Nella prospettiva ortogonale lo zoom verso la direzione del mouse non è supportato."
  4181. msgctxt "@text Placeholder for the username if it has been deleted"
  4182. msgid "deleted user"
  4183. msgstr "utente eliminato"
  4184. msgctxt "@item:inlistbox"
  4185. msgid "glTF Binary"
  4186. msgstr "glTF Binary"
  4187. msgctxt "@item:inlistbox"
  4188. msgid "glTF Embedded JSON"
  4189. msgstr "glTF Embedded JSON"
  4190. msgctxt "@label"
  4191. msgid "max"
  4192. msgstr "max"
  4193. msgctxt "@label"
  4194. msgid "min"
  4195. msgstr "min"
  4196. msgctxt "@label"
  4197. msgid "mm"
  4198. msgstr "mm"
  4199. msgctxt "@info:status"
  4200. msgid "today"
  4201. msgstr "oggi"
  4202. msgctxt "@info:status"
  4203. msgid "tomorrow"
  4204. msgstr "domani"
  4205. msgctxt "@label"
  4206. msgid "version: %1"
  4207. msgstr "versione: %1"
  4208. #, python-brace-format
  4209. msgctxt "@message {printer_name} is replaced with the name of the printer"
  4210. msgid "{printer_name} will be removed until the next account sync."
  4211. msgstr "{printer_name} sarà rimossa fino alla prossima sincronizzazione account."
  4212. msgctxt "@info:generic"
  4213. msgid "{} plugins failed to download"
  4214. msgstr "Impossibile scaricare i plugin {}"
  4215. #, python-brace-format
  4216. #~ msgctxt "info:{0} gets replaced by a number of printers"
  4217. #~ msgid "... and {0} other"
  4218. #~ msgid_plural "... and {0} others"
  4219. #~ msgstr[0] "... e {0} altra"
  4220. #~ msgstr[1] "... e altre {0}"
  4221. #~ msgctxt "@action:inmenu menubar:edit"
  4222. #~ msgid "Arrange Selection"
  4223. #~ msgstr "Sistema selezione"
  4224. #~ msgctxt "@tooltip:button"
  4225. #~ msgid "Become a 3D printing expert with UltiMaker e-learning."
  4226. #~ msgstr "Diventa un esperto di stampa 3D con e-learning UltiMaker."
  4227. #~ msgctxt "@info:status"
  4228. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled."
  4229. #~ msgstr "Cura non visualizza in modo accurato i layer se la funzione Wire Printing è abilitata."
  4230. #~ msgctxt "@label"
  4231. #~ 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."
  4232. #~ msgstr "Abilita stampa di brim o raft. Questa funzione aggiunge un’area piana attorno o sotto l’oggetto, facile da tagliare successivamente."
  4233. #~ msgctxt "@error:zip"
  4234. #~ msgid "Error writing 3mf file."
  4235. #~ msgstr "Errore scrittura file 3MF."
  4236. #~ msgctxt "@label"
  4237. #~ msgid "Hex"
  4238. #~ msgstr "Esagonale"
  4239. #~ msgctxt "@action:button"
  4240. #~ msgid "Install Materials"
  4241. #~ msgstr "Installa materiali"
  4242. #~ msgctxt "@title"
  4243. #~ msgid "Install missing Materials"
  4244. #~ msgstr "Installa materiali mancanti"
  4245. #~ msgctxt "@action:button"
  4246. #~ msgid "Install missing material"
  4247. #~ msgstr "Installa materiale mancante"
  4248. #~ msgctxt "@info:title"
  4249. #~ msgid "Material profiles not installed"
  4250. #~ msgstr "Profili del materiale non installati"
  4251. #~ msgctxt "@info:title"
  4252. #~ msgid "Simulation View"
  4253. #~ msgstr "Vista simulazione"
  4254. #~ msgctxt "@label"
  4255. #~ msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  4256. #~ msgstr "Il materiale utilizzato in questo progetto non è attualmente installato in Cura.<br/>Installa il profilo del materiale e riapri il progetto."
  4257. #~ msgctxt "@info:status"
  4258. #~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  4259. #~ msgstr "Il materiale utilizzato in questo progetto si basa su alcune definizioni di materiale non disponibili in Cura; ciò potrebbe produrre risultati di stampa indesiderati. Si consiglia vivamente di installare il pacchetto completo di materiali dal Marketplace."
  4260. #~ msgctxt "@error:zip"
  4261. #~ msgid "The operating system does not allow saving a project file to this location or with this file name."
  4262. #~ msgstr "Il sistema operativo non consente di salvare un file di progetto in questa posizione o con questo nome file."