cura.po 392 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.0\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-09-27 14:50+0200\n"
  10. "PO-Revision-Date: 2022-10-10 08:19+0200\n"
  11. "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
  12. "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
  13. "Language: pt_BR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 3.1.1\n"
  19. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:87
  20. msgctxt "@tooltip"
  21. msgid "Outer Wall"
  22. msgstr "Parede Externa"
  23. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:88
  24. msgctxt "@tooltip"
  25. msgid "Inner Walls"
  26. msgstr "Paredes Internas"
  27. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:89
  28. msgctxt "@tooltip"
  29. msgid "Skin"
  30. msgstr "Contorno"
  31. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:90
  32. msgctxt "@tooltip"
  33. msgid "Infill"
  34. msgstr "Preenchimento"
  35. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:91
  36. msgctxt "@tooltip"
  37. msgid "Support Infill"
  38. msgstr "Preenchimento de Suporte"
  39. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:92
  40. msgctxt "@tooltip"
  41. msgid "Support Interface"
  42. msgstr "Interface de Suporte"
  43. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:93
  44. msgctxt "@tooltip"
  45. msgid "Support"
  46. msgstr "Suporte"
  47. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:94
  48. msgctxt "@tooltip"
  49. msgid "Skirt"
  50. msgstr "Skirt (Saia)"
  51. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:95
  52. msgctxt "@tooltip"
  53. msgid "Prime Tower"
  54. msgstr "Torre de Prime"
  55. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:96
  56. msgctxt "@tooltip"
  57. msgid "Travel"
  58. msgstr "Percurso"
  59. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:97
  60. msgctxt "@tooltip"
  61. msgid "Retractions"
  62. msgstr "Retrações"
  63. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:98
  64. msgctxt "@tooltip"
  65. msgid "Other"
  66. msgstr "Outros"
  67. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:37 /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:63
  68. msgctxt "@text:window"
  69. msgid "The release notes could not be opened."
  70. msgstr "As notas de lançamento não puderam ser abertas."
  71. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/ObjectsModel.py:69
  72. #, python-brace-format
  73. msgctxt "@label"
  74. msgid "Group #{group_nr}"
  75. msgstr "Grupo #{group_nr}"
  76. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:57 /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:277
  77. msgctxt "@action:button"
  78. msgid "Next"
  79. msgstr "Próximo"
  80. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:286 /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:68
  81. msgctxt "@action:button"
  82. msgid "Skip"
  83. msgstr "Pular"
  84. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:290 /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:26
  85. msgctxt "@action:button"
  86. msgid "Finish"
  87. msgstr "Finalizar"
  88. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:17 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  89. msgctxt "@action:button"
  90. msgid "Add"
  91. msgstr "Adicionar"
  92. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:33 /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:323 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  93. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:147 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:509
  94. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:74 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  95. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:139
  96. msgctxt "@action:button"
  97. msgid "Cancel"
  98. msgstr "Cancelar"
  99. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:76 /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444 /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  100. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:188
  101. msgctxt "@action:button"
  102. msgid "Close"
  103. msgstr "Fechar"
  104. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:207 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:140
  105. msgctxt "@title:window"
  106. msgid "File Already Exists"
  107. msgstr "O Arquivo Já Existe"
  108. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:208 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:141
  109. #, python-brace-format
  110. msgctxt "@label Don't translate the XML tag <filename>!"
  111. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  112. msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  113. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:459 /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:462
  114. msgctxt "@info:status"
  115. msgid "Invalid file URL:"
  116. msgstr "URL de arquivo inválida:"
  117. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:36
  118. msgctxt "@info:not supported profile"
  119. msgid "Not supported"
  120. msgstr "Não Suportado"
  121. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:55
  122. msgctxt "@info:No intent profile selected"
  123. msgid "Default"
  124. msgstr "Default"
  125. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:745 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219
  126. msgctxt "@label"
  127. msgid "Nozzle"
  128. msgstr "Bico"
  129. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:889
  130. msgctxt "@info:message Followed by a list of settings."
  131. msgid "Settings have been changed to match the current availability of extruders:"
  132. msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:"
  133. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:890
  134. msgctxt "@info:title"
  135. msgid "Settings updated"
  136. msgstr "Ajustes atualizados"
  137. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:1512
  138. msgctxt "@info:title"
  139. msgid "Extruder(s) Disabled"
  140. msgstr "Extrusor(es) Desabilitado(s)"
  141. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:153
  142. #, python-brace-format
  143. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  144. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  145. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  146. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:156 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:166 /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1829
  147. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  148. msgctxt "@info:title"
  149. msgid "Error"
  150. msgstr "Erro"
  151. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:163
  152. #, python-brace-format
  153. msgctxt "@info:status Don't translate the XML tag <filename>!"
  154. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  155. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: complemento escritor relatou erro."
  156. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:171
  157. #, python-brace-format
  158. msgctxt "@info:status Don't translate the XML tag <filename>!"
  159. msgid "Exported profile to <filename>{0}</filename>"
  160. msgstr "Perfil exportado para <filename>{0}</filename>"
  161. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:173
  162. msgctxt "@info:title"
  163. msgid "Export succeeded"
  164. msgstr "Exportação concluída"
  165. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:205
  166. #, python-brace-format
  167. msgctxt "@info:status Don't translate the XML tags <filename>!"
  168. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  169. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  170. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:209
  171. #, python-brace-format
  172. msgctxt "@info:status Don't translate the XML tags <filename>!"
  173. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  174. msgstr "Não foi possível importar perfil de <filename>{0}</filename> antes de uma impressora ser adicionada."
  175. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:224
  176. #, python-brace-format
  177. msgctxt "@info:status Don't translate the XML tags <filename>!"
  178. msgid "No custom profile to import in file <filename>{0}</filename>"
  179. msgstr "Não há perfil personalizado a importar no arquivo <filename>{0}</filename>"
  180. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:228
  181. #, python-brace-format
  182. msgctxt "@info:status Don't translate the XML tags <filename>!"
  183. msgid "Failed to import profile from <filename>{0}</filename>:"
  184. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  185. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:252 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:262
  186. #, python-brace-format
  187. msgctxt "@info:status Don't translate the XML tags <filename>!"
  188. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  189. msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  190. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:355
  191. #, python-brace-format
  192. msgctxt "@info:status Don't translate the XML tag <filename>!"
  193. msgid "Failed to import profile from <filename>{0}</filename>:"
  194. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  195. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:359
  196. #, python-brace-format
  197. msgctxt "@info:status"
  198. msgid "Successfully imported profile {0}."
  199. msgstr "Perfil {0} importado com sucesso."
  200. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:366
  201. #, python-brace-format
  202. msgctxt "@info:status"
  203. msgid "File {0} does not contain any valid profile."
  204. msgstr "Arquivo {0} não contém nenhum perfil válido."
  205. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:369
  206. #, python-brace-format
  207. msgctxt "@info:status"
  208. msgid "Profile {0} has an unknown file type or is corrupted."
  209. msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido."
  210. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:443
  211. msgctxt "@label"
  212. msgid "Custom profile"
  213. msgstr "Perfil personalizado"
  214. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:459
  215. msgctxt "@info:status"
  216. msgid "Profile is missing a quality type."
  217. msgstr "Falta um tipo de qualidade ao Perfil."
  218. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:463
  219. msgctxt "@info:status"
  220. msgid "There is no active printer yet."
  221. msgstr "Não há impressora ativa ainda."
  222. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:469
  223. msgctxt "@info:status"
  224. msgid "Unable to add the profile."
  225. msgstr "Não foi possível adicionar o perfil."
  226. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:483
  227. #, python-brace-format
  228. msgctxt "@info:status"
  229. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  230. msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'."
  231. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:488
  232. #, python-brace-format
  233. msgctxt "@info:status"
  234. 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."
  235. msgstr "Alerta: o perfil não está visível porque seu tipo de qualidade '{0}' não está disponível para a configuração atual. Altere para uma combinação de material/bico que possa usar este tipo de qualidade."
  236. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:30
  237. msgctxt "@info:status"
  238. msgid "Multiplying and placing objects"
  239. msgstr "Multiplicando e colocando objetos"
  240. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:32
  241. msgctxt "@info:title"
  242. msgid "Placing Objects"
  243. msgstr "Colocando Objetos"
  244. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:99 /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  245. msgctxt "@info:status"
  246. msgid "Unable to find a location within the build volume for all objects"
  247. msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos"
  248. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:100
  249. msgctxt "@info:title"
  250. msgid "Placing Object"
  251. msgstr "Colocando Objeto"
  252. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:540
  253. msgctxt "@info:progress"
  254. msgid "Loading machines..."
  255. msgstr "Carregando máquinas..."
  256. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:547
  257. msgctxt "@info:progress"
  258. msgid "Setting up preferences..."
  259. msgstr "Ajustando preferências..."
  260. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:692
  261. msgctxt "@info:progress"
  262. msgid "Initializing Active Machine..."
  263. msgstr "Inicializando Máquina Ativa..."
  264. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:838
  265. msgctxt "@info:progress"
  266. msgid "Initializing machine manager..."
  267. msgstr "Inicializando gestor de máquinas..."
  268. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:852
  269. msgctxt "@info:progress"
  270. msgid "Initializing build volume..."
  271. msgstr "Inicializando volume de impressão..."
  272. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:920
  273. msgctxt "@info:progress"
  274. msgid "Setting up scene..."
  275. msgstr "Configurando cena..."
  276. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:956
  277. msgctxt "@info:progress"
  278. msgid "Loading interface..."
  279. msgstr "Carregando interface..."
  280. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:961
  281. msgctxt "@info:progress"
  282. msgid "Initializing engine..."
  283. msgstr "Inicializando motor..."
  284. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1289
  285. #, python-format
  286. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  287. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  288. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  289. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1815
  290. #, python-brace-format
  291. msgctxt "@info:status"
  292. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  293. msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}"
  294. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1817 /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:217 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  295. msgctxt "@info:title"
  296. msgid "Warning"
  297. msgstr "Aviso"
  298. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1827
  299. #, python-brace-format
  300. msgctxt "@info:status"
  301. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  302. msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}"
  303. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  304. msgctxt "@message"
  305. msgid "Could not read response."
  306. msgstr "Não foi possível ler a resposta."
  307. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  308. msgctxt "@message"
  309. msgid "The provided state is not correct."
  310. msgstr "O estado provido não está correto."
  311. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  312. msgctxt "@message"
  313. msgid "Timeout when authenticating with the account server."
  314. msgstr "Tempo esgotado ao autenticar com o servidor da conta."
  315. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  316. msgctxt "@message"
  317. msgid "Please give the required permissions when authorizing this application."
  318. msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação."
  319. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  320. msgctxt "@message"
  321. msgid "Something unexpected happened when trying to log in, please try again."
  322. msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente."
  323. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:216
  324. msgctxt "@info"
  325. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  326. msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa."
  327. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:277
  328. msgctxt "@info"
  329. msgid "Unable to reach the Ultimaker account server."
  330. msgstr "Não foi possível contactar o servidor de contas da Ultimaker."
  331. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:278
  332. msgctxt "@info:title"
  333. msgid "Log-in failed"
  334. msgstr "Login falhou"
  335. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:25
  336. msgctxt "@info:status"
  337. msgid "Finding new location for objects"
  338. msgstr "Achando novos lugares para objetos"
  339. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:29
  340. msgctxt "@info:title"
  341. msgid "Finding Location"
  342. msgstr "Buscando Localização"
  343. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:43
  344. msgctxt "@info:title"
  345. msgid "Can't Find Location"
  346. msgstr "Não Foi Encontrada Localização"
  347. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/ExtrudersModel.py:219
  348. msgctxt "@menuitem"
  349. msgid "Not overridden"
  350. msgstr "Não sobreposto"
  351. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:11 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:338
  352. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:61
  353. msgctxt "@label"
  354. msgid "Default"
  355. msgstr "Default"
  356. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:14 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:65
  357. msgctxt "@label"
  358. msgid "Visual"
  359. msgstr "Visual"
  360. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:15 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:66
  361. msgctxt "@text"
  362. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  363. msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície."
  364. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:18 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:70
  365. msgctxt "@label"
  366. msgid "Engineering"
  367. msgstr "Engenharia"
  368. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:19 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:71
  369. msgctxt "@text"
  370. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  371. msgstr "O perfil de engenharia é projetado para imprimir protótipos funcionais e partes de uso final com o objetivo de melhor precisão e tolerâncias mais estritas."
  372. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:22 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:75
  373. msgctxt "@label"
  374. msgid "Draft"
  375. msgstr "Rascunho"
  376. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentTranslations.py:23 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:76
  377. msgctxt "@text"
  378. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  379. msgstr "O perfil de rascunho é projetado para imprimir protótipos iniciais e validações de conceito com o objetivo de redução significativa de tempo de impressão."
  380. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  381. msgctxt "@info:status"
  382. msgid "Calculated"
  383. msgstr "Calculado"
  384. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:391
  385. msgctxt "@label"
  386. msgid "Custom profiles"
  387. msgstr "Perfis personalizados"
  388. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:426
  389. #, python-brace-format
  390. msgctxt "@item:inlistbox"
  391. msgid "All Supported Types ({0})"
  392. msgstr "Todos Os Tipos Suportados ({0})"
  393. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:427
  394. msgctxt "@item:inlistbox"
  395. msgid "All Files (*)"
  396. msgstr "Todos Os Arquivos (*)"
  397. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  398. msgctxt "@label"
  399. msgid "Unknown"
  400. msgstr "Desconhecido"
  401. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  402. msgctxt "@label"
  403. msgid "The printer(s) below cannot be connected because they are part of a group"
  404. msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo"
  405. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  406. msgctxt "@label"
  407. msgid "Available networked printers"
  408. msgstr "Impressoras de rede disponíveis"
  409. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  410. msgctxt "@label"
  411. msgid "Connected printers"
  412. msgstr "Impressoras conectadas"
  413. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  414. msgctxt "@label"
  415. msgid "Preset printers"
  416. msgstr "Impressoras pré-ajustadas"
  417. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:165
  418. #, python-brace-format
  419. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  420. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  421. msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!"
  422. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:232
  423. msgctxt "@label"
  424. msgid "Custom Material"
  425. msgstr "Material Personalizado"
  426. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:233 /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  427. msgctxt "@label"
  428. msgid "Custom"
  429. msgstr "Personalizado"
  430. #: /Users/c.lamboo/ultimaker/Cura/cura/API/Account.py:199
  431. msgctxt "@info:title"
  432. msgid "Login failed"
  433. msgstr "Login falhou"
  434. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  435. msgctxt "@action:button"
  436. msgid "Please sync the material profiles with your printers before starting to print."
  437. msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir."
  438. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  439. msgctxt "@action:button"
  440. msgid "New materials installed"
  441. msgstr "Novos materiais instalados"
  442. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  443. msgctxt "@action:button"
  444. msgid "Sync materials"
  445. msgstr "Sincronizar materiais"
  446. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:397 /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:80
  447. msgctxt "@action:button"
  448. msgid "Learn more"
  449. msgstr "Saiba mais"
  450. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  451. msgctxt "@message:text"
  452. msgid "Could not save material archive to {}:"
  453. msgstr "Não foi possível salvar o arquivo de materiais para {}:"
  454. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  455. msgctxt "@message:title"
  456. msgid "Failed to save material archive"
  457. msgstr "Falha em salvar o arquivo de materiais"
  458. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  459. msgctxt "@text"
  460. msgid "Unknown error."
  461. msgstr "Erro desconhecido."
  462. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  463. msgctxt "@text:error"
  464. msgid "Failed to create archive of materials to sync with printers."
  465. msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras."
  466. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  467. msgctxt "@text:error"
  468. msgid "Failed to load the archive of materials to sync it with printers."
  469. msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras."
  470. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  471. msgctxt "@text:error"
  472. msgid "The response from Digital Factory appears to be corrupted."
  473. msgstr "A resposta da Digital Factory parece estar corrompida."
  474. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  475. msgctxt "@text:error"
  476. msgid "The response from Digital Factory is missing important information."
  477. msgstr "A resposta da Digital Factory veio sem informações importantes."
  478. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  479. msgctxt "@text:error"
  480. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  481. msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras."
  482. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  483. msgctxt "@text:error"
  484. msgid "Failed to connect to Digital Factory."
  485. msgstr "Falha em conectar à Digital Factory."
  486. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:100
  487. msgctxt "@info:status"
  488. 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."
  489. msgstr "A altura do volume de impressão foi reduzida para que o valor da \"Sequência de Impressão\" impeça o eixo de colidir com os modelos impressos."
  490. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:103
  491. msgctxt "@info:title"
  492. msgid "Build Volume"
  493. msgstr "Volume de Impressão"
  494. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:115
  495. msgctxt "@info:backup_failed"
  496. msgid "Could not create archive from user data directory: {}"
  497. msgstr "Não pude criar arquivo do diretório de dados de usuário: {}"
  498. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:122 /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:159 /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  499. msgctxt "@info:title"
  500. msgid "Backup"
  501. msgstr "Backup"
  502. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:134
  503. msgctxt "@info:backup_failed"
  504. msgid "Tried to restore a Cura backup without having proper data or meta data."
  505. msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados."
  506. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:145
  507. msgctxt "@info:backup_failed"
  508. msgid "Tried to restore a Cura backup that is higher than the current version."
  509. msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual."
  510. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:158
  511. msgctxt "@info:backup_failed"
  512. msgid "The following error occurred while trying to restore a Cura backup:"
  513. msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:"
  514. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:107
  515. msgctxt "@title:window"
  516. msgid "Cura can't start"
  517. msgstr "O Cura não consegue iniciar"
  518. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:113
  519. msgctxt "@label crash message"
  520. msgid ""
  521. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  522. " <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"
  523. " <p>Backups can be found in the configuration folder.</p>\n"
  524. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  525. " "
  526. msgstr ""
  527. "<p><b>Oops, o Ultimaker Cura encontrou algo que não parece estar correto.</p></b>\n"
  528. " <p>Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causado por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.</p>\n"
  529. " <p>Cópias salvas podem ser encontradas na pasta de configuração.</p>\n"
  530. " <p>Por favor nos envie este Relatório de Falha para consertar o problema.</p>\n"
  531. " "
  532. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:122
  533. msgctxt "@action:button"
  534. msgid "Send crash report to Ultimaker"
  535. msgstr "Enviar relatório de falha à Ultimaker"
  536. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:125
  537. msgctxt "@action:button"
  538. msgid "Show detailed crash report"
  539. msgstr "Exibir relatório de falha detalhado"
  540. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:129
  541. msgctxt "@action:button"
  542. msgid "Show configuration folder"
  543. msgstr "Mostrar a pasta de configuração"
  544. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:140
  545. msgctxt "@action:button"
  546. msgid "Backup and Reset Configuration"
  547. msgstr "Salvar e Restabelecer Configuração"
  548. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:171
  549. msgctxt "@title:window"
  550. msgid "Crash Report"
  551. msgstr "Relatório de Problema"
  552. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:190
  553. msgctxt "@label crash message"
  554. msgid ""
  555. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  556. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  557. " "
  558. msgstr ""
  559. "<p><b>Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema</p></b>\n"
  560. " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores</p>\n"
  561. " "
  562. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:198
  563. msgctxt "@title:groupbox"
  564. msgid "System information"
  565. msgstr "Informação do Sistema"
  566. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:207
  567. msgctxt "@label unknown version of Cura"
  568. msgid "Unknown"
  569. msgstr "Desconhecida"
  570. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:228
  571. msgctxt "@label Cura version number"
  572. msgid "Cura version"
  573. msgstr "Versão do Cura"
  574. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:229
  575. msgctxt "@label"
  576. msgid "Cura language"
  577. msgstr "Linguagem do Cura"
  578. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:230
  579. msgctxt "@label"
  580. msgid "OS language"
  581. msgstr "Linguagem do SO"
  582. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:231
  583. msgctxt "@label Type of platform"
  584. msgid "Platform"
  585. msgstr "Plataforma"
  586. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:232
  587. msgctxt "@label"
  588. msgid "Qt version"
  589. msgstr "Versão do Qt"
  590. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:233
  591. msgctxt "@label"
  592. msgid "PyQt version"
  593. msgstr "Versão do PyQt"
  594. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:234
  595. msgctxt "@label OpenGL version"
  596. msgid "OpenGL"
  597. msgstr "OpenGL"
  598. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:264
  599. msgctxt "@label"
  600. msgid "Not yet initialized"
  601. msgstr "Ainda não inicializado"
  602. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:267
  603. #, python-brace-format
  604. msgctxt "@label OpenGL version"
  605. msgid "<li>OpenGL Version: {version}</li>"
  606. msgstr "<li>Versão da OpenGL: {version}</li>"
  607. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:268
  608. #, python-brace-format
  609. msgctxt "@label OpenGL vendor"
  610. msgid "<li>OpenGL Vendor: {vendor}</li>"
  611. msgstr "<li>Fornecedor da OpenGL: {vendor}</li>"
  612. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:269
  613. #, python-brace-format
  614. msgctxt "@label OpenGL renderer"
  615. msgid "<li>OpenGL Renderer: {renderer}</li>"
  616. msgstr "<li>Renderizador da OpenGL: {renderer}</li>"
  617. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:304
  618. msgctxt "@title:groupbox"
  619. msgid "Error traceback"
  620. msgstr "Traceback do erro"
  621. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:390
  622. msgctxt "@title:groupbox"
  623. msgid "Logs"
  624. msgstr "Registros"
  625. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:418
  626. msgctxt "@action:button"
  627. msgid "Send report"
  628. msgstr "Enviar relatório"
  629. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  630. msgctxt "@action"
  631. msgid "Machine Settings"
  632. msgstr "Ajustes da Máquina"
  633. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:14
  634. msgctxt "@item:inlistbox"
  635. msgid "JPG Image"
  636. msgstr "Imagem JPG"
  637. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:18
  638. msgctxt "@item:inlistbox"
  639. msgid "JPEG Image"
  640. msgstr "Imagem JPEG"
  641. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:22
  642. msgctxt "@item:inlistbox"
  643. msgid "PNG Image"
  644. msgstr "Imagem PNG"
  645. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:26
  646. msgctxt "@item:inlistbox"
  647. msgid "BMP Image"
  648. msgstr "Imagem BMP"
  649. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:30
  650. msgctxt "@item:inlistbox"
  651. msgid "GIF Image"
  652. msgstr "Imagem GIF"
  653. #: /Users/c.lamboo/ultimaker/Cura/plugins/XRayView/__init__.py:12
  654. msgctxt "@item:inlistbox"
  655. msgid "X-Ray view"
  656. msgstr "Visão de Raios-X"
  657. #: /Users/c.lamboo/ultimaker/Cura/plugins/X3DReader/__init__.py:13
  658. msgctxt "@item:inlistbox"
  659. msgid "X3D File"
  660. msgstr "Arquivo X3D"
  661. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileReader/__init__.py:14 /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileWriter/__init__.py:14
  662. msgctxt "@item:inlistbox"
  663. msgid "Cura Profile"
  664. msgstr "Perfil do Cura"
  665. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  666. msgctxt "@item:inmenu"
  667. msgid "Post Processing"
  668. msgstr "Pós-Processamento"
  669. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  670. msgctxt "@item:inmenu"
  671. msgid "Modify G-Code"
  672. msgstr "Modificar G-Code"
  673. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  674. msgctxt "@info:status"
  675. msgid "There are no file formats available to write with!"
  676. msgstr "Não há formatos de arquivo disponíveis com os quais escrever!"
  677. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  678. msgctxt "@info:status"
  679. msgid "Print job queue is full. The printer can't accept a new job."
  680. msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho."
  681. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  682. msgctxt "@info:title"
  683. msgid "Queue Full"
  684. msgstr "Fila Cheia"
  685. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  686. msgctxt "@info:text"
  687. msgid "Could not upload the data to the printer."
  688. msgstr "Não foi possível transferir os dados para a impressora."
  689. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  690. msgctxt "@info:title"
  691. msgid "Network error"
  692. msgstr "Erro de rede"
  693. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  694. msgctxt "info:status"
  695. msgid "New printer detected from your Ultimaker account"
  696. msgid_plural "New printers detected from your Ultimaker account"
  697. msgstr[0] "Nova impressora detectada na sua conta Ultimaker"
  698. msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker"
  699. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  700. #, python-brace-format
  701. msgctxt "info:status Filled in with printer name and printer model."
  702. msgid "Adding printer {name} ({model}) from your account"
  703. msgstr "Adicionando impressora {name} ({model}) da sua conta"
  704. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  705. #, python-brace-format
  706. msgctxt "info:{0} gets replaced by a number of printers"
  707. msgid "... and {0} other"
  708. msgid_plural "... and {0} others"
  709. msgstr[0] "... e {0} outra"
  710. msgstr[1] "... e {0} outras"
  711. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  712. msgctxt "info:status"
  713. msgid "Printers added from Digital Factory:"
  714. msgstr "Impressoras adicionadas da Digital Factory:"
  715. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  716. msgctxt "@info:status"
  717. msgid "Please wait until the current job has been sent."
  718. msgstr "Por favor espere até que o trabalho atual tenha sido enviado."
  719. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  720. msgctxt "@info:title"
  721. msgid "Print error"
  722. msgstr "Erro de impressão"
  723. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  724. #, python-brace-format
  725. msgctxt "@info:status"
  726. msgid ""
  727. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  728. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  729. msgstr ""
  730. "Sua impressora <b>{printer_name}</b> poderia estar conectada via nuvem.\n"
  731. " Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory"
  732. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  733. msgctxt "@info:title"
  734. msgid "Are you ready for cloud printing?"
  735. msgstr "Você está pronto para a impressão de nuvem?"
  736. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  737. msgctxt "@action"
  738. msgid "Get started"
  739. msgstr "Começar"
  740. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  741. msgctxt "@action"
  742. msgid "Learn more"
  743. msgstr "Saiba mais"
  744. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  745. msgctxt "@info:status"
  746. msgid "You will receive a confirmation via email when the print job is approved"
  747. msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado"
  748. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  749. msgctxt "@info:title"
  750. msgid "The print job was successfully submitted"
  751. msgstr "O trabalho de impressão foi submetido com sucesso"
  752. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  753. msgctxt "@action"
  754. msgid "Manage print jobs"
  755. msgstr "Gerenciar trabalhos de impressão"
  756. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  757. msgctxt "@info:status"
  758. msgid "Sending Print Job"
  759. msgstr "Enviando Trabalho de Impressão"
  760. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  761. msgctxt "@info:status"
  762. msgid "Uploading print job to printer."
  763. msgstr "Transferindo trabalho de impressão para a impressora."
  764. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  765. #, python-brace-format
  766. msgctxt "@info:status"
  767. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  768. msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}."
  769. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  770. msgctxt "@info:title"
  771. msgid "Sending materials to printer"
  772. msgstr "Enviando material para a impressora"
  773. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  774. #, python-brace-format
  775. msgctxt "@info:status"
  776. 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."
  777. msgstr "Você está tentando conectar a {0} mas ele não é host de um grupo. Você pode visitar a página web para configurá-lo como host de grupo."
  778. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  779. msgctxt "@info:title"
  780. msgid "Not a group host"
  781. msgstr "Não é host de grupo"
  782. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  783. msgctxt "@action"
  784. msgid "Configure group"
  785. msgstr "Configurar grupo"
  786. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:16
  787. msgctxt "info:status"
  788. msgid "This printer is not linked to the Digital Factory:"
  789. msgid_plural "These printers are not linked to the Digital Factory:"
  790. msgstr[0] "Esta impressora não está ligada à Digital Factory:"
  791. msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:"
  792. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:22 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  793. msgctxt "info:name"
  794. msgid "Ultimaker Digital Factory"
  795. msgstr "Ultimaker Digital Factory"
  796. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:28
  797. #, python-brace-format
  798. msgctxt "info:status"
  799. msgid "To establish a connection, please visit the {website_link}"
  800. msgstr "Para estabelecer uma conexão, por favor visite o {website_link}"
  801. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:32
  802. msgctxt "info:status"
  803. msgid "A cloud connection is not available for a printer"
  804. msgid_plural "A cloud connection is not available for some printers"
  805. msgstr[0] "Conexão de nuvem não está disponível para uma impressora"
  806. msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras"
  807. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:40
  808. msgctxt "@action:button"
  809. msgid "Keep printer configurations"
  810. msgstr "Manter configurações da impressora"
  811. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:45
  812. msgctxt "@action:button"
  813. msgid "Remove printers"
  814. msgstr "Remover impressoras"
  815. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  816. msgctxt "@info:status"
  817. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  818. msgstr "Você está tentando conectar a uma impressora que não está rodando Ultimaker Connect. Por favor atualiza a impressora para o firmware mais recente."
  819. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  820. msgctxt "@info:title"
  821. msgid "Update your printer"
  822. msgstr "Atualize sua impressora"
  823. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  824. msgctxt "@info:status"
  825. msgid "Print job was successfully sent to the printer."
  826. msgstr "Trabalho de impressão enviado à impressora com sucesso."
  827. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  828. msgctxt "@info:title"
  829. msgid "Data Sent"
  830. msgstr "Dados Enviados"
  831. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  832. msgctxt "@action:button Preceded by 'Ready to'."
  833. msgid "Print over network"
  834. msgstr "Imprimir pela rede"
  835. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  836. msgctxt "@properties:tooltip"
  837. msgid "Print over network"
  838. msgstr "Imprime pela rede"
  839. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  840. msgctxt "@info:status"
  841. msgid "Connected over the network"
  842. msgstr "Conectado pela rede"
  843. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  844. msgctxt "@info:status"
  845. msgid "tomorrow"
  846. msgstr "amanhã"
  847. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  848. msgctxt "@info:status"
  849. msgid "today"
  850. msgstr "hoje"
  851. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  852. msgctxt "@action"
  853. msgid "Connect via Network"
  854. msgstr "Conectar pela rede"
  855. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  856. msgctxt "@action:button"
  857. msgid "Print via cloud"
  858. msgstr "Imprimir pela nuvem"
  859. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  860. msgctxt "@properties:tooltip"
  861. msgid "Print via cloud"
  862. msgstr "Imprimir pela nuvem"
  863. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  864. msgctxt "@info:status"
  865. msgid "Connected via cloud"
  866. msgstr "Conectado pela nuvem"
  867. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  868. #, python-brace-format
  869. msgctxt "@message {printer_name} is replaced with the name of the printer"
  870. msgid "{printer_name} will be removed until the next account sync."
  871. msgstr "{printer_name} será removida até a próxima sincronização de conta."
  872. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  873. #, python-brace-format
  874. msgctxt "@message {printer_name} is replaced with the name of the printer"
  875. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  876. msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}"
  877. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  878. #, python-brace-format
  879. msgctxt "@message {printer_name} is replaced with the name of the printer"
  880. msgid "Are you sure you want to remove {printer_name} temporarily?"
  881. msgstr "Tem certeza que quer remover {printer_name} temporariamente?"
  882. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  883. msgctxt "@title:window"
  884. msgid "Remove printers?"
  885. msgstr "Remover impressoras?"
  886. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  887. #, python-brace-format
  888. msgctxt "@label"
  889. msgid ""
  890. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  891. "Are you sure you want to continue?"
  892. msgid_plural ""
  893. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  894. "Are you sure you want to continue?"
  895. msgstr[0] ""
  896. "Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n"
  897. "Tem certeza que quer continuar?"
  898. msgstr[1] ""
  899. "Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n"
  900. "Tem certeza que quer continuar?"
  901. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  902. msgctxt "@label"
  903. msgid ""
  904. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  905. "Are you sure you want to continue?"
  906. msgstr ""
  907. "Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n"
  908. "Tem certeza que quer continuar?"
  909. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  910. msgctxt "@action:button"
  911. msgid "Monitor print"
  912. msgstr "Monitorar impressão"
  913. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  914. msgctxt "@action:tooltip"
  915. msgid "Track the print in Ultimaker Digital Factory"
  916. msgstr "Rastrear a impressão na Ultimaker Digital Factory"
  917. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  918. #, python-brace-format
  919. msgctxt "@error:send"
  920. msgid "Unknown error code when uploading print job: {0}"
  921. msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}"
  922. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:28
  923. msgctxt "@item:inlistbox"
  924. msgid "3MF file"
  925. msgstr "Arquivo 3MF"
  926. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:36
  927. msgctxt "@item:inlistbox"
  928. msgid "Cura Project 3MF file"
  929. msgstr "Arquivo de Projeto 3MF do Cura"
  930. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWriter.py:240
  931. msgctxt "@error:zip"
  932. msgid "Error writing 3mf file."
  933. msgstr "Erro ao escrever arquivo 3mf."
  934. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  935. msgctxt "@error:zip"
  936. msgid "3MF Writer plug-in is corrupt."
  937. msgstr "O complemento de Escrita 3MF está corrompido."
  938. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  939. msgctxt "@error"
  940. msgid "There is no workspace yet to write. Please add a printer first."
  941. msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro."
  942. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  943. msgctxt "@error:zip"
  944. msgid "No permission to write the workspace here."
  945. msgstr "Sem permissão para gravar o espaço de trabalho aqui."
  946. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  947. msgctxt "@error:zip"
  948. msgid "The operating system does not allow saving a project file to this location or with this file name."
  949. msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo."
  950. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  951. msgctxt "@info:backup_status"
  952. msgid "There was an error trying to restore your backup."
  953. msgstr "Houve um erro ao tentar restaurar seu backup."
  954. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  955. msgctxt "@item:inmenu"
  956. msgid "Manage backups"
  957. msgstr "Gerenciar backups"
  958. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  959. msgctxt "@info:title"
  960. msgid "Backups"
  961. msgstr "Backups"
  962. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  963. msgctxt "@info:backup_status"
  964. msgid "There was an error while uploading your backup."
  965. msgstr "Houve um erro ao transferir seu backup."
  966. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  967. msgctxt "@info:backup_status"
  968. msgid "Creating your backup..."
  969. msgstr "Criando seu backup..."
  970. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  971. msgctxt "@info:backup_status"
  972. msgid "There was an error while creating your backup."
  973. msgstr "Houve um erro ao criar seu backup."
  974. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  975. msgctxt "@info:backup_status"
  976. msgid "Uploading your backup..."
  977. msgstr "Enviando seu backup..."
  978. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  979. msgctxt "@info:backup_status"
  980. msgid "Your backup has finished uploading."
  981. msgstr "Seu backup terminou de ser enviado."
  982. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  983. msgctxt "@error:file_size"
  984. msgid "The backup exceeds the maximum file size."
  985. msgstr "O backup excede o tamanho máximo de arquivo."
  986. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  987. msgctxt "@text"
  988. msgid "Unable to read example data file."
  989. msgstr "Não foi possível ler o arquivo de dados de exemplo."
  990. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:62 /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:78 /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:91 /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:113
  991. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:168 /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:178
  992. msgctxt "@info:error"
  993. msgid "Can't write to UFP file:"
  994. msgstr "Não foi possível escrever no arquivo UFP:"
  995. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/__init__.py:28 /Users/c.lamboo/ultimaker/Cura/plugins/UFPReader/__init__.py:22
  996. msgctxt "@item:inlistbox"
  997. msgid "Ultimaker Format Package"
  998. msgstr "Pacote de Formato da Ultimaker"
  999. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1000. msgctxt "@text Placeholder for the username if it has been deleted"
  1001. msgid "deleted user"
  1002. msgstr "usuário removido"
  1003. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeProfileReader/__init__.py:14 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:14 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/__init__.py:16
  1004. msgctxt "@item:inlistbox"
  1005. msgid "G-code File"
  1006. msgstr "Arquivo G-Code"
  1007. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:350
  1008. msgctxt "@info:status"
  1009. msgid "Parsing G-code"
  1010. msgstr "Interpretando G-Code"
  1011. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:352 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:506
  1012. msgctxt "@info:title"
  1013. msgid "G-code Details"
  1014. msgstr "Detalhes do G-Code"
  1015. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:504
  1016. msgctxt "@info:generic"
  1017. 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."
  1018. msgstr "Certifique que o g-code é adequado para sua impressora e configuração antes de enviar o arquivo. A representação de g-code pode não ser acurada."
  1019. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:18
  1020. msgctxt "@item:inlistbox"
  1021. msgid "G File"
  1022. msgstr "Arquivo G"
  1023. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:15
  1024. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1025. msgid "Open Compressed Triangle Mesh"
  1026. msgstr "Open Compressed Triangle Mesh"
  1027. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:19
  1028. msgctxt "@item:inlistbox"
  1029. msgid "COLLADA Digital Asset Exchange"
  1030. msgstr "Câmbio de Ativos Digitais COLLADA"
  1031. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:23
  1032. msgctxt "@item:inlistbox"
  1033. msgid "glTF Binary"
  1034. msgstr "Binário glTF"
  1035. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:27
  1036. msgctxt "@item:inlistbox"
  1037. msgid "glTF Embedded JSON"
  1038. msgstr "glTF Embutido JSON"
  1039. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:36
  1040. msgctxt "@item:inlistbox"
  1041. msgid "Stanford Triangle Format"
  1042. msgstr "Formato de Triângulos de Stanford"
  1043. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:40
  1044. msgctxt "@item:inlistbox"
  1045. msgid "Compressed COLLADA Digital Asset Exchange"
  1046. msgstr "Câmbio de Ativos Digitais COLLADA Comprimido"
  1047. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1048. msgctxt "@action"
  1049. msgid "Level build plate"
  1050. msgstr "Nivelar mesa"
  1051. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1052. msgctxt "@action"
  1053. msgid "Select upgrades"
  1054. msgstr "Selecionar Atualizações"
  1055. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzReader/__init__.py:17 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/__init__.py:17
  1056. msgctxt "@item:inlistbox"
  1057. msgid "Compressed G-code File"
  1058. msgstr "Arquivo de G-Code Comprimido"
  1059. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:117
  1060. msgctxt "@info:error"
  1061. msgid "Could not interpret the server's response."
  1062. msgstr "Não foi possível interpretar a resposta de servidor."
  1063. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:148
  1064. msgctxt "@info:error"
  1065. msgid "Could not reach Marketplace."
  1066. msgstr "Não foi possível conectar ao Marketplace."
  1067. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1068. msgctxt "@button"
  1069. msgid "Decline and remove from account"
  1070. msgstr "Recusar e remover da conta"
  1071. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1072. msgctxt "@button"
  1073. msgid "Decline"
  1074. msgstr "Recusar"
  1075. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  1076. msgctxt "@button"
  1077. msgid "Agree"
  1078. msgstr "Concordar"
  1079. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  1080. msgctxt "@title:window"
  1081. msgid "Plugin License Agreement"
  1082. msgstr "Acordo de Licença do Complemento"
  1083. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1084. msgctxt "@info:generic"
  1085. msgid "Do you want to sync material and software packages with your account?"
  1086. msgstr "Você quer sincronizar os pacotes de material e software com sua conta?"
  1087. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1088. msgctxt "@info:title"
  1089. msgid "Changes detected from your Ultimaker account"
  1090. msgstr "Alterações detectadas de sua conta Ultimaker"
  1091. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1092. msgctxt "@action:button"
  1093. msgid "Sync"
  1094. msgstr "Sincronizar"
  1095. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1096. msgctxt "@info:generic"
  1097. msgid "You need to quit and restart {} before changes have effect."
  1098. msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito."
  1099. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1100. msgctxt "@info:generic"
  1101. msgid "Syncing..."
  1102. msgstr "Sincronizando..."
  1103. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1104. msgctxt "@info:generic"
  1105. msgid "{} plugins failed to download"
  1106. msgstr "{} complementos falharam em baixar"
  1107. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:28
  1108. msgctxt "@label"
  1109. msgid "Installed Plugins"
  1110. msgstr "Complementos Instalados"
  1111. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:29
  1112. msgctxt "@label"
  1113. msgid "Installed Materials"
  1114. msgstr "Materiais Instalados"
  1115. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:33
  1116. msgctxt "@label"
  1117. msgid "Bundled Plugins"
  1118. msgstr "Complementos Empacotados"
  1119. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:34
  1120. msgctxt "@label"
  1121. msgid "Bundled Materials"
  1122. msgstr "Materiais Empacotados"
  1123. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:43
  1124. msgctxt "@label:property"
  1125. msgid "Unknown Package"
  1126. msgstr "Pacote Desconhecido"
  1127. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:66
  1128. msgctxt "@label:property"
  1129. msgid "Unknown Author"
  1130. msgstr "Autor Desconhecido"
  1131. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  1132. msgctxt "@item:intext"
  1133. msgid "Removable Drive"
  1134. msgstr "Unidade Removível"
  1135. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  1136. msgctxt "@action:button Preceded by 'Ready to'."
  1137. msgid "Save to Removable Drive"
  1138. msgstr "Salvar em Unidade Removível"
  1139. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  1140. #, python-brace-format
  1141. msgctxt "@item:inlistbox"
  1142. msgid "Save to Removable Drive {0}"
  1143. msgstr "Salvar em Unidade Removível {0}"
  1144. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  1145. #, python-brace-format
  1146. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  1147. msgid "Saving to Removable Drive <filename>{0}</filename>"
  1148. msgstr "Salvando na Unidade Removível <filename>{0}</filename>"
  1149. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  1150. msgctxt "@info:title"
  1151. msgid "Saving"
  1152. msgstr "Salvando"
  1153. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  1154. #, python-brace-format
  1155. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1156. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  1157. msgstr "Não foi possível salvar em <filename>{0}</filename>: <message>{1}</message>"
  1158. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  1159. #, python-brace-format
  1160. msgctxt "@info:status Don't translate the tag {device}!"
  1161. msgid "Could not find a file name when trying to write to {device}."
  1162. msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}."
  1163. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  1164. #, python-brace-format
  1165. msgctxt "@info:status"
  1166. msgid "Could not save to removable drive {0}: {1}"
  1167. msgstr "Não foi possível salvar em unidade removível {0}: {1}"
  1168. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  1169. #, python-brace-format
  1170. msgctxt "@info:status"
  1171. msgid "Saved to Removable Drive {0} as {1}"
  1172. msgstr "Salvo em Unidade Removível {0} como {1}"
  1173. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  1174. msgctxt "@info:title"
  1175. msgid "File Saved"
  1176. msgstr "Arquivo Salvo"
  1177. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1178. msgctxt "@action:button"
  1179. msgid "Eject"
  1180. msgstr "Ejetar"
  1181. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1182. #, python-brace-format
  1183. msgctxt "@action"
  1184. msgid "Eject removable device {0}"
  1185. msgstr "Ejetar dispositivo removível {0}"
  1186. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  1187. #, python-brace-format
  1188. msgctxt "@info:status"
  1189. msgid "Ejected {0}. You can now safely remove the drive."
  1190. msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura."
  1191. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  1192. msgctxt "@info:title"
  1193. msgid "Safely Remove Hardware"
  1194. msgstr "Remover Hardware com Segurança"
  1195. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  1196. #, python-brace-format
  1197. msgctxt "@info:status"
  1198. msgid "Failed to eject {0}. Another program may be using the drive."
  1199. msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade."
  1200. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/__init__.py:14
  1201. msgctxt "@item:inmenu"
  1202. msgid "Monitor"
  1203. msgstr "Monitor"
  1204. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1205. msgctxt "@message"
  1206. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1207. msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker."
  1208. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1209. msgctxt "@message:title"
  1210. msgid "Slicing failed"
  1211. msgstr "Fatiamento falhado"
  1212. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1213. msgctxt "@message:button"
  1214. msgid "Report a bug"
  1215. msgstr "Relatar um bug"
  1216. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1217. msgctxt "@message:description"
  1218. msgid "Report a bug on Ultimaker Cura's issue tracker."
  1219. msgstr "Relatar um bug no issue tracker do Ultimaker Cura."
  1220. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1221. msgctxt "@info:status"
  1222. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1223. msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
  1224. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:402 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:435 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:462
  1225. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:474 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:486 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:499
  1226. msgctxt "@info:title"
  1227. msgid "Unable to slice"
  1228. msgstr "Não foi possível fatiar"
  1229. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1230. #, python-brace-format
  1231. msgctxt "@info:status"
  1232. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1233. msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
  1234. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1235. #, python-brace-format
  1236. msgctxt "@info:status"
  1237. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1238. msgstr "Não foi possível fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}"
  1239. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1240. msgctxt "@info:status"
  1241. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1242. msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas."
  1243. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1244. #, python-format
  1245. msgctxt "@info:status"
  1246. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1247. msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s."
  1248. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1249. msgctxt "@info:status"
  1250. msgid ""
  1251. "Please review settings and check if your models:\n"
  1252. "- Fit within the build volume\n"
  1253. "- Are assigned to an enabled extruder\n"
  1254. "- Are not all set as modifier meshes"
  1255. msgstr ""
  1256. "Por favor revise os ajustes e verifique se seus modelos:\n"
  1257. "- Cabem dentro do volume de impressão\n"
  1258. "- Estão associados a um extrusor habilitado\n"
  1259. "- Não estão todos configurados como malhas de modificação"
  1260. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1261. msgctxt "@info:status"
  1262. msgid "Processing Layers"
  1263. msgstr "Processando Camadas"
  1264. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1265. msgctxt "@info:title"
  1266. msgid "Information"
  1267. msgstr "Informação"
  1268. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:27 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:33
  1269. msgctxt "@item:inlistbox"
  1270. msgid "3MF File"
  1271. msgstr "Arquivo 3MF"
  1272. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:212
  1273. msgctxt "@title:tab"
  1274. msgid "Recommended"
  1275. msgstr "Recomendado"
  1276. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:214
  1277. msgctxt "@title:tab"
  1278. msgid "Custom"
  1279. msgstr "Personalizado"
  1280. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:390
  1281. msgctxt "@info:status"
  1282. 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."
  1283. msgstr "O material usado neste projeto depende de algumas definições de material não disponíveis no Cura e isto pode produzir resultados de impressão indesejáveis. Recomendamos altamente instalar o pacote completo de material do Marketplace."
  1284. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:392
  1285. msgctxt "@info:title"
  1286. msgid "Material profiles not installed"
  1287. msgstr "Perfis de material não instalados"
  1288. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:405
  1289. msgctxt "@action:button"
  1290. msgid "Install Materials"
  1291. msgstr "Instalar Materiais"
  1292. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  1293. #, python-brace-format
  1294. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1295. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1296. msgstr "O arquivo de projeto <filename>{0}</filename> contém um tipo de máquina desconhecido <message>{1}</message>. Não foi possível importar a máquina. Os modelos serão importados ao invés dela."
  1297. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548
  1298. msgctxt "@info:title"
  1299. msgid "Open Project File"
  1300. msgstr "Abrir Arquivo de Projeto"
  1301. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  1302. #, python-brace-format
  1303. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1304. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1305. msgstr "O arquivo de projeto <filename>{0}</filename> tornou-se subitamente inacessível: <message>{1}</message>."
  1306. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:651 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:659 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:678
  1307. msgctxt "@info:title"
  1308. msgid "Can't Open Project File"
  1309. msgstr "Não Foi Possível Abrir o Arquivo de Projeto"
  1310. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:676
  1311. #, python-brace-format
  1312. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1313. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1314. msgstr "Arquivo de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
  1315. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:723
  1316. #, python-brace-format
  1317. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1318. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1319. msgstr "O arquivo de projeto <filename>{0}</filename> foi feito usando perfis que são desconhecidos para esta versão do Ultimaker Cura."
  1320. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  1321. msgctxt "@label"
  1322. msgid "Per Model Settings"
  1323. msgstr "Ajustes por Modelo"
  1324. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  1325. msgctxt "@info:tooltip"
  1326. msgid "Configure Per Model Settings"
  1327. msgstr "Configurar ajustes por Modelo"
  1328. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:31
  1329. msgctxt "@info:title"
  1330. msgid "3D Model Assistant"
  1331. msgstr "Assistente de Modelo 3D"
  1332. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:97
  1333. #, python-brace-format
  1334. msgctxt "@info:status"
  1335. msgid ""
  1336. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1337. "<p>{model_names}</p>\n"
  1338. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1339. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1340. msgstr ""
  1341. "<p>Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:</p>\n"
  1342. "<p>{model_names}</p>\n"
  1343. "<p>Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.</p>\n"
  1344. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guia de qualidade de impressão</a></p>"
  1345. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1346. msgctxt "@item:inmenu"
  1347. msgid "USB printing"
  1348. msgstr "Impressão USB"
  1349. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1350. msgctxt "@action:button Preceded by 'Ready to'."
  1351. msgid "Print via USB"
  1352. msgstr "Imprimir pela USB"
  1353. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1354. msgctxt "@info:tooltip"
  1355. msgid "Print via USB"
  1356. msgstr "Imprimir pela USB"
  1357. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1358. msgctxt "@info:status"
  1359. msgid "Connected via USB"
  1360. msgstr "Conectado via USB"
  1361. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1362. msgctxt "@label"
  1363. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1364. msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?"
  1365. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1366. msgctxt "@message"
  1367. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1368. msgstr "Uma impressão ainda está em progresso. O Cura não pode iniciar outra impressão via USB até que a impressão anterior tenha completado."
  1369. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1370. msgctxt "@message"
  1371. msgid "Print in Progress"
  1372. msgstr "Impressão em Progresso"
  1373. #: /Users/c.lamboo/ultimaker/Cura/plugins/PreviewStage/__init__.py:13
  1374. msgctxt "@item:inmenu"
  1375. msgid "Preview"
  1376. msgstr "Pré-visualização"
  1377. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:75
  1378. msgctxt "@error:not supported"
  1379. msgid "GCodeWriter does not support non-text mode."
  1380. msgstr "O GCodeWriter não suporta modo binário."
  1381. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:81 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:97
  1382. msgctxt "@warning:status"
  1383. msgid "Please prepare G-code before exporting."
  1384. msgstr "Por favor prepare o G-Code antes de exportar."
  1385. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1386. msgctxt "@action"
  1387. msgid "Update Firmware"
  1388. msgstr "Atualizar Firmware"
  1389. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1390. msgctxt "@error:not supported"
  1391. msgid "GCodeGzWriter does not support text mode."
  1392. msgstr "O GCodeGzWriter não suporta modo binário."
  1393. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/__init__.py:15
  1394. msgctxt "@item:inlistbox"
  1395. msgid "Layer view"
  1396. msgstr "Visão de Camadas"
  1397. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:129
  1398. msgctxt "@info:status"
  1399. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1400. msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada."
  1401. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:130
  1402. msgctxt "@info:title"
  1403. msgid "Simulation View"
  1404. msgstr "Visão Simulada"
  1405. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:133
  1406. msgctxt "@info:status"
  1407. msgid "Nothing is shown because you need to slice first."
  1408. msgstr "Nada está exibido porque você precisa fatiar primeiro."
  1409. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:134
  1410. msgctxt "@info:title"
  1411. msgid "No layers to show"
  1412. msgstr "Não há camadas a exibir"
  1413. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:136 /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:74
  1414. msgctxt "@info:option_text"
  1415. msgid "Do not show this message again"
  1416. msgstr "Não mostrar essa mensagem novamente"
  1417. #: /Users/c.lamboo/ultimaker/Cura/plugins/LegacyProfileReader/__init__.py:14
  1418. msgctxt "@item:inlistbox"
  1419. msgid "Cura 15.04 profiles"
  1420. msgstr "Perfis do Cura 15.04"
  1421. #: /Users/c.lamboo/ultimaker/Cura/plugins/AMFReader/__init__.py:15
  1422. msgctxt "@item:inlistbox"
  1423. msgid "AMF File"
  1424. msgstr "Arquivo AMF"
  1425. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:71
  1426. msgctxt "@info:status"
  1427. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1428. msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura."
  1429. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:73
  1430. msgctxt "@info:title"
  1431. msgid "Model Errors"
  1432. msgstr "Erros de Modelo"
  1433. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/__init__.py:12
  1434. msgctxt "@item:inmenu"
  1435. msgid "Solid view"
  1436. msgstr "Visão sólida"
  1437. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1438. #, python-brace-format
  1439. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1440. 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}."
  1441. msgstr "Novos recursos ou consertos de bugs podem estar disponíveis para sua {machine_name}! Se você não o fez ainda, recomenda-se que atualize o firmware de sua impressora para a versão {latest_version}."
  1442. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1443. #, python-format
  1444. msgctxt "@info:title The %s gets replaced with the printer name."
  1445. msgid "New %s stable firmware available"
  1446. msgstr "Novo firmware estável de %s disponível"
  1447. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1448. msgctxt "@action:button"
  1449. msgid "How to update"
  1450. msgstr "Como atualizar"
  1451. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1452. msgctxt "@info"
  1453. msgid "Could not access update information."
  1454. msgstr "Não foi possível acessar informação de atualização."
  1455. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:12
  1456. msgctxt "@label"
  1457. msgid "Support Blocker"
  1458. msgstr "Bloqueador de Suporte"
  1459. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:13
  1460. msgctxt "@info:tooltip"
  1461. msgid "Create a volume in which supports are not printed."
  1462. msgstr "Cria um volume em que os suportes não são impressos."
  1463. #: /Users/c.lamboo/ultimaker/Cura/plugins/PrepareStage/__init__.py:12
  1464. msgctxt "@item:inmenu"
  1465. msgid "Prepare"
  1466. msgstr "Preparar"
  1467. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1468. msgctxt "@title:label"
  1469. msgid "Printer Settings"
  1470. msgstr "Ajustes de Impressora"
  1471. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1472. msgctxt "@label"
  1473. msgid "X (Width)"
  1474. msgstr "X (largura)"
  1475. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1476. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1477. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1478. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108 /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1479. msgctxt "@label"
  1480. msgid "mm"
  1481. msgstr "mm"
  1482. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1483. msgctxt "@label"
  1484. msgid "Y (Depth)"
  1485. msgstr "Y (Profundidade)"
  1486. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1487. msgctxt "@label"
  1488. msgid "Z (Height)"
  1489. msgstr "Z (Altura)"
  1490. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1491. msgctxt "@label"
  1492. msgid "Build plate shape"
  1493. msgstr "Forma da plataforma de impressão"
  1494. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1495. msgctxt "@label"
  1496. msgid "Origin at center"
  1497. msgstr "Origem no centro"
  1498. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1499. msgctxt "@label"
  1500. msgid "Heated bed"
  1501. msgstr "Mesa aquecida"
  1502. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1503. msgctxt "@label"
  1504. msgid "Heated build volume"
  1505. msgstr "Volume de construção aquecido"
  1506. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1507. msgctxt "@label"
  1508. msgid "G-code flavor"
  1509. msgstr "Sabor de G-Code"
  1510. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1511. msgctxt "@title:label"
  1512. msgid "Printhead Settings"
  1513. msgstr "Ajustes da Cabeça de Impressão"
  1514. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1515. msgctxt "@label"
  1516. msgid "X min"
  1517. msgstr "X mín"
  1518. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1519. msgctxt "@label"
  1520. msgid "Y min"
  1521. msgstr "Y mín"
  1522. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1523. msgctxt "@label"
  1524. msgid "X max"
  1525. msgstr "X máx"
  1526. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1527. msgctxt "@label"
  1528. msgid "Y max"
  1529. msgstr "Y máx"
  1530. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1531. msgctxt "@label"
  1532. msgid "Gantry Height"
  1533. msgstr "Altura do Eixo"
  1534. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1535. msgctxt "@label"
  1536. msgid "Number of Extruders"
  1537. msgstr "Número de Extrusores"
  1538. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1539. msgctxt "@label"
  1540. msgid "Apply Extruder offsets to GCode"
  1541. msgstr "Aplicar deslocamentos de Extrusão ao G-Code"
  1542. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1543. msgctxt "@title:label"
  1544. msgid "Start G-code"
  1545. msgstr "G-Code Inicial"
  1546. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1547. msgctxt "@title:label"
  1548. msgid "End G-code"
  1549. msgstr "G-Code Final"
  1550. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1551. msgctxt "@title:tab"
  1552. msgid "Printer"
  1553. msgstr "Impressora"
  1554. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1555. msgctxt "@title:label"
  1556. msgid "Nozzle Settings"
  1557. msgstr "Ajustes do Bico"
  1558. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1559. msgctxt "@label"
  1560. msgid "Nozzle size"
  1561. msgstr "Tamanho do bico"
  1562. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1563. msgctxt "@label"
  1564. msgid "Compatible material diameter"
  1565. msgstr "Diâmetro de material compatível"
  1566. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1567. msgctxt "@label"
  1568. msgid "Nozzle offset X"
  1569. msgstr "Deslocamento X do Bico"
  1570. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1571. msgctxt "@label"
  1572. msgid "Nozzle offset Y"
  1573. msgstr "Deslocamento Y do Bico"
  1574. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1575. msgctxt "@label"
  1576. msgid "Cooling Fan Number"
  1577. msgstr "Número da Ventoinha de Resfriamento"
  1578. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1579. msgctxt "@title:label"
  1580. msgid "Extruder Start G-code"
  1581. msgstr "G-Code Inicial do Extrusor"
  1582. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1583. msgctxt "@title:label"
  1584. msgid "Extruder End G-code"
  1585. msgstr "G-Code Final do Extrusor"
  1586. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:14
  1587. msgctxt "@title:window"
  1588. msgid "Convert Image"
  1589. msgstr "Converter Imagem"
  1590. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:33
  1591. msgctxt "@action:label"
  1592. msgid "Height (mm)"
  1593. msgstr "Altura (mm)"
  1594. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:56
  1595. msgctxt "@info:tooltip"
  1596. msgid "The maximum distance of each pixel from \"Base.\""
  1597. msgstr "A distância máxima de cada pixel da \"Base\"."
  1598. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:66
  1599. msgctxt "@action:label"
  1600. msgid "Base (mm)"
  1601. msgstr "Base (mm)"
  1602. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:90
  1603. msgctxt "@info:tooltip"
  1604. msgid "The base height from the build plate in millimeters."
  1605. msgstr "A altura-base da mesa de impressão em milímetros."
  1606. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:100
  1607. msgctxt "@action:label"
  1608. msgid "Width (mm)"
  1609. msgstr "Largura (mm)"
  1610. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:124
  1611. msgctxt "@info:tooltip"
  1612. msgid "The width in millimeters on the build plate"
  1613. msgstr "A largura em milímetros na plataforma de impressão"
  1614. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:134
  1615. msgctxt "@action:label"
  1616. msgid "Depth (mm)"
  1617. msgstr "Profundidade (mm)"
  1618. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:158
  1619. msgctxt "@info:tooltip"
  1620. msgid "The depth in millimeters on the build plate"
  1621. msgstr "A profundidade da mesa de impressão em milímetros"
  1622. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:187
  1623. msgctxt "@item:inlistbox"
  1624. msgid "Darker is higher"
  1625. msgstr "Mais escuro é mais alto"
  1626. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:188
  1627. msgctxt "@item:inlistbox"
  1628. msgid "Lighter is higher"
  1629. msgstr "Mais claro é mais alto"
  1630. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:195
  1631. msgctxt "@info:tooltip"
  1632. 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."
  1633. msgstr "Para litofanos, pixels escuros devem corresponder a locais mais espessos para conseguir bloquear mais luz. Para mapas de altura, pixels mais claros significam terreno mais alto, portanto tais pixels devem corresponder a locais mais espessos no modelo 3d gerado."
  1634. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:205
  1635. msgctxt "@action:label"
  1636. msgid "Color Model"
  1637. msgstr "Modelo de Cor"
  1638. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:224
  1639. msgctxt "@item:inlistbox"
  1640. msgid "Linear"
  1641. msgstr "Linear"
  1642. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:225
  1643. msgctxt "@item:inlistbox"
  1644. msgid "Translucency"
  1645. msgstr "Translucidez"
  1646. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:232
  1647. msgctxt "@info:tooltip"
  1648. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1649. msgstr "Para litofanos, um modelo logarítmico simples para translucidez está disponível. Para mapas de altura os valores de pixels correspondem a alturas, linearmente."
  1650. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:242
  1651. msgctxt "@action:label"
  1652. msgid "1mm Transmittance (%)"
  1653. msgstr "Transmitância de 1mm (%)"
  1654. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:263
  1655. msgctxt "@info:tooltip"
  1656. 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."
  1657. msgstr "A porcentagem de luz penetrando uma impressão com espessura de 1 milímetro. Abaixar este valor aumenta o contraste em regiões escuras e diminui o contraste em regiões claras da imagem."
  1658. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:274
  1659. msgctxt "@action:label"
  1660. msgid "Smoothing"
  1661. msgstr "Suavização"
  1662. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:298
  1663. msgctxt "@info:tooltip"
  1664. msgid "The amount of smoothing to apply to the image."
  1665. msgstr "A quantidade de suavização para aplicar na imagem."
  1666. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:329 /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:136 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:80 /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:143
  1667. msgctxt "@action:button"
  1668. msgid "OK"
  1669. msgstr "Ok"
  1670. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  1671. msgctxt "@title:window"
  1672. msgid "Post Processing Plugin"
  1673. msgstr "Complemento de Pós-Processamento"
  1674. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1675. msgctxt "@label"
  1676. msgid "Post Processing Scripts"
  1677. msgstr "Scripts de Pós-Processamento"
  1678. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  1679. msgctxt "@action"
  1680. msgid "Add a script"
  1681. msgstr "Adicionar um script"
  1682. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  1683. msgctxt "@label"
  1684. msgid "Settings"
  1685. msgstr "Ajustes"
  1686. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  1687. msgctxt "@info:tooltip"
  1688. msgid "Change active post-processing scripts."
  1689. msgstr "Alterar scripts de pós-processamento ativos."
  1690. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1691. msgctxt "@info:tooltip"
  1692. msgid "The following script is active:"
  1693. msgid_plural "The following scripts are active:"
  1694. msgstr[0] "O seguinte script está ativo:"
  1695. msgstr[1] "Os seguintes scripts estão ativos:"
  1696. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1697. msgctxt "@label"
  1698. msgid "Move to top"
  1699. msgstr "Mover para o topo"
  1700. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  1701. msgctxt "@label"
  1702. msgid "Delete"
  1703. msgstr "Remover"
  1704. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:284
  1705. msgctxt "@label"
  1706. msgid "Resume"
  1707. msgstr "Continuar"
  1708. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  1709. msgctxt "@label"
  1710. msgid "Pausing..."
  1711. msgstr "Pausando..."
  1712. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  1713. msgctxt "@label"
  1714. msgid "Resuming..."
  1715. msgstr "Continuando..."
  1716. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:279 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:288
  1717. msgctxt "@label"
  1718. msgid "Pause"
  1719. msgstr "Pausar"
  1720. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1721. msgctxt "@label"
  1722. msgid "Aborting..."
  1723. msgstr "Abortando..."
  1724. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1725. msgctxt "@label"
  1726. msgid "Abort"
  1727. msgstr "Abortar"
  1728. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  1729. msgctxt "@label %1 is the name of a print job."
  1730. msgid "Are you sure you want to move %1 to the top of the queue?"
  1731. msgstr "Você tem certeza que quer mover %1 para o topo da fila?"
  1732. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  1733. msgctxt "@window:title"
  1734. msgid "Move print job to top"
  1735. msgstr "Move o trabalho de impressão para o topo da fila"
  1736. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  1737. msgctxt "@label %1 is the name of a print job."
  1738. msgid "Are you sure you want to delete %1?"
  1739. msgstr "Você tem certeza que quer remover %1?"
  1740. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  1741. msgctxt "@window:title"
  1742. msgid "Delete print job"
  1743. msgstr "Remover trabalho de impressão"
  1744. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  1745. msgctxt "@label %1 is the name of a print job."
  1746. msgid "Are you sure you want to abort %1?"
  1747. msgstr "Você tem certeza que quer abortar %1?"
  1748. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:326
  1749. msgctxt "@window:title"
  1750. msgid "Abort print"
  1751. msgstr "Abortar impressão"
  1752. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1753. msgctxt "@title:window"
  1754. msgid "Print over network"
  1755. msgstr "Imprimir pela rede"
  1756. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1757. msgctxt "@action:button"
  1758. msgid "Print"
  1759. msgstr "Imprimir"
  1760. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1761. msgctxt "@label"
  1762. msgid "Printer selection"
  1763. msgstr "Seleção de impressora"
  1764. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1765. msgctxt "@title:window"
  1766. msgid "Configuration Changes"
  1767. msgstr "Alterações de Configuração"
  1768. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1769. msgctxt "@action:button"
  1770. msgid "Override"
  1771. msgstr "Sobrepor"
  1772. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1773. msgctxt "@label"
  1774. msgid "The assigned printer, %1, requires the following configuration change:"
  1775. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1776. msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:"
  1777. msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:"
  1778. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1779. msgctxt "@label"
  1780. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1781. msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida."
  1782. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1783. msgctxt "@label"
  1784. msgid "Change material %1 from %2 to %3."
  1785. msgstr "Alterar material %1 de %2 para %3."
  1786. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1787. msgctxt "@label"
  1788. msgid "Load %3 as material %1 (This cannot be overridden)."
  1789. msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)."
  1790. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1791. msgctxt "@label"
  1792. msgid "Change print core %1 from %2 to %3."
  1793. msgstr "Alterar núcleo de impressão %1 de %2 para %3."
  1794. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1795. msgctxt "@label"
  1796. msgid "Change build plate to %1 (This cannot be overridden)."
  1797. msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)."
  1798. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1799. msgctxt "@label"
  1800. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1801. msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão."
  1802. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:181
  1803. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:178
  1804. msgctxt "@label"
  1805. msgid "Glass"
  1806. msgstr "Vidro"
  1807. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1808. msgctxt "@label"
  1809. msgid "Aluminum"
  1810. msgstr "Alumínio"
  1811. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1812. msgctxt "@label link to Connect and Cloud interfaces"
  1813. msgid "Manage printer"
  1814. msgstr "Gerir Impressora"
  1815. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:253 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:479 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1816. msgctxt "@info"
  1817. msgid "Please update your printer's firmware to manage the queue remotely."
  1818. msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente."
  1819. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:287
  1820. msgctxt "@info"
  1821. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1822. msgstr "Fontes de webcam para impressoras de nuvem não podem ser vistas pelo Ultimaker Cura. Clique em \"Gerenciar impressora\" para visitar a Ultimaker Digital Factory e visualizar esta webcam."
  1823. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1824. msgctxt "@label:status"
  1825. msgid "Loading..."
  1826. msgstr "Carregando..."
  1827. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1828. msgctxt "@label:status"
  1829. msgid "Unavailable"
  1830. msgstr "Indisponível"
  1831. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:355
  1832. msgctxt "@label:status"
  1833. msgid "Unreachable"
  1834. msgstr "Inacessivel"
  1835. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:359
  1836. msgctxt "@label:status"
  1837. msgid "Idle"
  1838. msgstr "Ocioso"
  1839. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:363 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1840. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1841. msgctxt "@label:status"
  1842. msgid "Preparing..."
  1843. msgstr "Preparando..."
  1844. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:368
  1845. msgctxt "@label:status"
  1846. msgid "Printing"
  1847. msgstr "Imprimindo"
  1848. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:409
  1849. msgctxt "@label"
  1850. msgid "Untitled"
  1851. msgstr "Sem Título"
  1852. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:424
  1853. msgctxt "@label"
  1854. msgid "Anonymous"
  1855. msgstr "Anônimo"
  1856. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:445
  1857. msgctxt "@label:status"
  1858. msgid "Requires configuration changes"
  1859. msgstr "Requer mudanças na configuração"
  1860. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:459
  1861. msgctxt "@action:button"
  1862. msgid "Details"
  1863. msgstr "Detalhes"
  1864. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1865. msgctxt "@label"
  1866. msgid "Unavailable printer"
  1867. msgstr "Impressora indisponível"
  1868. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1869. msgctxt "@label"
  1870. msgid "First available"
  1871. msgstr "Primeira disponível"
  1872. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  1873. msgctxt "@info"
  1874. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1875. msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory"
  1876. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  1877. msgctxt "@button"
  1878. msgid "View printers in Digital Factory"
  1879. msgstr "Ver impressoras na Digital Factory"
  1880. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1881. msgctxt "@title:window"
  1882. msgid "Connect to Networked Printer"
  1883. msgstr "Conectar a Impressora de Rede"
  1884. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1885. msgctxt "@label"
  1886. 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."
  1887. msgstr "Para imprimir diretamente na sua impressora pela rede, certifique-se que ela esteja conectada à rede usando um cabo de rede ou conectando sua impressora à sua WIFI. Se você não conectar Cura à sua impressora, você ainda pode usar um drive USB ou SDCard para transferir arquivos G-Code a ela."
  1888. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1889. msgctxt "@label"
  1890. msgid "Select your printer from the list below:"
  1891. msgstr "Selecione sua impressora da lista abaixo:"
  1892. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1893. msgctxt "@action:button"
  1894. msgid "Edit"
  1895. msgstr "Editar"
  1896. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:148
  1897. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:321
  1898. msgctxt "@action:button"
  1899. msgid "Remove"
  1900. msgstr "Remover"
  1901. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1902. msgctxt "@action:button"
  1903. msgid "Refresh"
  1904. msgstr "Atualizar"
  1905. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1906. msgctxt "@label"
  1907. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1908. msgstr "Se sua impressora não está listada, leia o <a href='%1'>guia de resolução de problemas de impressão em rede</a>"
  1909. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  1910. msgctxt "@label"
  1911. msgid "Type"
  1912. msgstr "Tipo"
  1913. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  1914. msgctxt "@label"
  1915. msgid "Firmware version"
  1916. msgstr "Versão do firmware"
  1917. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  1918. msgctxt "@label"
  1919. msgid "Address"
  1920. msgstr "Endereço"
  1921. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1922. msgctxt "@label"
  1923. msgid "This printer is not set up to host a group of printers."
  1924. msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras."
  1925. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1926. msgctxt "@label"
  1927. msgid "This printer is the host for a group of %1 printers."
  1928. msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras."
  1929. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1930. msgctxt "@label"
  1931. msgid "The printer at this address has not yet responded."
  1932. msgstr "A impressora neste endereço ainda não respondeu."
  1933. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1934. msgctxt "@action:button"
  1935. msgid "Connect"
  1936. msgstr "Conectar"
  1937. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1938. msgctxt "@title:window"
  1939. msgid "Invalid IP address"
  1940. msgstr "Endereço IP inválido"
  1941. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  1942. msgctxt "@text"
  1943. msgid "Please enter a valid IP address."
  1944. msgstr "Por favor entre um endereço IP válido."
  1945. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1946. msgctxt "@title:window"
  1947. msgid "Printer Address"
  1948. msgstr "Endereço da Impressora"
  1949. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  1950. msgctxt "@label"
  1951. msgid "Enter the IP address of your printer on the network."
  1952. msgstr "Entre o endereço IP da sua impressora na rede."
  1953. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1954. msgctxt "@label"
  1955. msgid "Queued"
  1956. msgstr "Enfileirados"
  1957. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  1958. msgctxt "@label link to connect manager"
  1959. msgid "Manage in browser"
  1960. msgstr "Gerir no navegador"
  1961. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  1962. msgctxt "@label"
  1963. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1964. msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo."
  1965. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1966. msgctxt "@label"
  1967. msgid "Print jobs"
  1968. msgstr "Trabalhos de impressão"
  1969. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  1970. msgctxt "@label"
  1971. msgid "Total print time"
  1972. msgstr "Tempo total de impressão"
  1973. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  1974. msgctxt "@label"
  1975. msgid "Waiting for"
  1976. msgstr "Esperando por"
  1977. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1978. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1979. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1980. msgctxt "@label:status"
  1981. msgid "Aborted"
  1982. msgstr "Abortado"
  1983. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1984. msgctxt "@label:status"
  1985. msgid "Finished"
  1986. msgstr "Finalizado"
  1987. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1988. msgctxt "@label:status"
  1989. msgid "Aborting..."
  1990. msgstr "Abortando..."
  1991. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1992. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1993. msgctxt "@label:status"
  1994. msgid "Failed"
  1995. msgstr "Falhado"
  1996. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1997. msgctxt "@label:status"
  1998. msgid "Pausing..."
  1999. msgstr "Pausando..."
  2000. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2001. msgctxt "@label:status"
  2002. msgid "Paused"
  2003. msgstr "Pausado"
  2004. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2005. msgctxt "@label:status"
  2006. msgid "Resuming..."
  2007. msgstr "Continuando..."
  2008. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2009. msgctxt "@label:status"
  2010. msgid "Action required"
  2011. msgstr "Necessária uma ação"
  2012. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2013. msgctxt "@label:status"
  2014. msgid "Finishes %1 at %2"
  2015. msgstr "Termina %1 em %2"
  2016. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2017. msgctxt "@title:window"
  2018. msgid "Cura Backups"
  2019. msgstr "Backups do Cura"
  2020. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2021. msgctxt "@backuplist:label"
  2022. msgid "Cura Version"
  2023. msgstr "Versão do Cura"
  2024. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2025. msgctxt "@backuplist:label"
  2026. msgid "Machines"
  2027. msgstr "Máquinas"
  2028. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2029. msgctxt "@backuplist:label"
  2030. msgid "Materials"
  2031. msgstr "Materiais"
  2032. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2033. msgctxt "@backuplist:label"
  2034. msgid "Profiles"
  2035. msgstr "Perfis"
  2036. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2037. msgctxt "@backuplist:label"
  2038. msgid "Plugins"
  2039. msgstr "Complementos"
  2040. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2041. msgctxt "@button"
  2042. msgid "Want more?"
  2043. msgstr "Quer mais?"
  2044. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2045. msgctxt "@button"
  2046. msgid "Backup Now"
  2047. msgstr "Backup Agora"
  2048. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2049. msgctxt "@checkbox:description"
  2050. msgid "Auto Backup"
  2051. msgstr "Auto Backup"
  2052. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2053. msgctxt "@checkbox:description"
  2054. msgid "Automatically create a backup each day that Cura is started."
  2055. msgstr "Criar um backup automaticamente toda vez que o Cura iniciar."
  2056. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2057. msgctxt "@button"
  2058. msgid "Restore"
  2059. msgstr "Restaurar"
  2060. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2061. msgctxt "@dialog:title"
  2062. msgid "Delete Backup"
  2063. msgstr "Apagar o Backup"
  2064. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2065. msgctxt "@dialog:info"
  2066. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2067. msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito."
  2068. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2069. msgctxt "@dialog:title"
  2070. msgid "Restore Backup"
  2071. msgstr "Restaurar Backup"
  2072. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2073. msgctxt "@dialog:info"
  2074. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2075. msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?"
  2076. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2077. msgctxt "@title"
  2078. msgid "My Backups"
  2079. msgstr "Meus backups"
  2080. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  2081. msgctxt "@empty_state"
  2082. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2083. msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um."
  2084. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  2085. msgctxt "@backup_limit_info"
  2086. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2087. msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos."
  2088. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2089. msgctxt "@description"
  2090. msgid "Backup and synchronize your Cura settings."
  2091. msgstr "Fazer backup e sincronizar os ajustes do Cura."
  2092. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:212
  2093. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:49
  2094. msgctxt "@button"
  2095. msgid "Sign in"
  2096. msgstr "Entrar"
  2097. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2098. msgctxt "@title:window"
  2099. msgid "More information on anonymous data collection"
  2100. msgstr "Mais informações em coleção anônima de dados"
  2101. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2102. msgctxt "@text:window"
  2103. 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:"
  2104. msgstr "O Ultimaker Cura coleta dados anônimos para poder aprimorar a qualidade de impressão e experiência do usuário. Abaixo segue um exemplo de todos os dados que são compartilhados:"
  2105. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2106. msgctxt "@text:window"
  2107. msgid "I don't want to send anonymous data"
  2108. msgstr "Recusar enviar dados anônimos"
  2109. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2110. msgctxt "@text:window"
  2111. msgid "Allow sending anonymous data"
  2112. msgstr "Permitir enviar dados anônimos"
  2113. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  2114. msgctxt "@option"
  2115. msgid "Save Cura project and print file"
  2116. msgstr "Salvar o projeto Cura e imprimir o arquivo"
  2117. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  2118. msgctxt "@option"
  2119. msgid "Save Cura project"
  2120. msgstr "Salvar o projeto Cura"
  2121. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2122. msgctxt "@label"
  2123. msgid "Please select any upgrades made to this Ultimaker Original"
  2124. msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original"
  2125. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  2126. msgctxt "@label"
  2127. msgid "Heated Build Plate (official kit or self-built)"
  2128. msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)"
  2129. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2130. msgctxt "@title"
  2131. msgid "Build Plate Leveling"
  2132. msgstr "Nivelamento da mesa de impressão"
  2133. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  2134. msgctxt "@label"
  2135. 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."
  2136. msgstr "Para garantir que suas impressões saiam ótimas, você deve agora ajustar sua mesa de impressão. Quando você clicar em 'Mover para a Posição Seguinte', o bico se moverá para posições diferentes que podem ser ajustadas."
  2137. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  2138. msgctxt "@label"
  2139. 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."
  2140. msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico."
  2141. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  2142. msgctxt "@action:button"
  2143. msgid "Start Build Plate Leveling"
  2144. msgstr "Iniciar Nivelamento da Mesa de Impressão"
  2145. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  2146. msgctxt "@action:button"
  2147. msgid "Move to Next Position"
  2148. msgstr "Mover pra a Posição Seguinte"
  2149. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172
  2150. msgctxt "@label Is followed by the name of an author"
  2151. msgid "By"
  2152. msgstr "Por"
  2153. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2154. msgctxt "@button:label"
  2155. msgid "Learn More"
  2156. msgstr "Saiba mais"
  2157. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2158. msgctxt "@button"
  2159. msgid "Enable"
  2160. msgstr "Habilitar"
  2161. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2162. msgctxt "@button"
  2163. msgid "Disable"
  2164. msgstr "Desabilitar"
  2165. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244
  2166. msgctxt "@button"
  2167. msgid "Downgrading..."
  2168. msgstr "Fazendo downgrade..."
  2169. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245
  2170. msgctxt "@button"
  2171. msgid "Downgrade"
  2172. msgstr "Downgrade"
  2173. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249
  2174. msgctxt "@button"
  2175. msgid "Installing..."
  2176. msgstr "Instalando..."
  2177. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250
  2178. msgctxt "@button"
  2179. msgid "Install"
  2180. msgstr "Instalar"
  2181. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254
  2182. msgctxt "@button"
  2183. msgid "Uninstall"
  2184. msgstr "Desinstalar"
  2185. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2186. msgctxt "@button"
  2187. msgid "Updating..."
  2188. msgstr "Atualizando..."
  2189. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2190. msgctxt "@button"
  2191. msgid "Update"
  2192. msgstr "Atualizar"
  2193. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2194. msgctxt "@header"
  2195. msgid "Install Plugins"
  2196. msgstr "Instalar Complementos"
  2197. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2198. msgctxt "@text"
  2199. msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users."
  2200. msgstr "Simplifique seu fluxo de trabalho e personalize sua experiência do Ultimaker Cura com complementos contribuídos por nossa fantástica comunidade de usuários."
  2201. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2202. msgctxt "@title"
  2203. msgid "Changes from your account"
  2204. msgstr "Alterações da sua conta"
  2205. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2206. msgctxt "@button"
  2207. msgid "Dismiss"
  2208. msgstr "Dispensar"
  2209. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:175
  2210. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2211. msgctxt "@button"
  2212. msgid "Next"
  2213. msgstr "Próximo"
  2214. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2215. msgctxt "@label"
  2216. msgid "The following packages will be added:"
  2217. msgstr "Os seguintes pacotes serão adicionados:"
  2218. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2219. msgctxt "@label"
  2220. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2221. msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:"
  2222. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2223. msgctxt "@label"
  2224. msgid "You need to accept the license to install the package"
  2225. msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado"
  2226. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2227. msgctxt "@button"
  2228. msgid "Plugin license agreement"
  2229. msgstr "Acordo de licença do complemento"
  2230. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2231. msgctxt "@text"
  2232. msgid "Please read and agree with the plugin licence."
  2233. msgstr "Por favor leia e concorde com a licença do complemento."
  2234. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2235. msgctxt "@button"
  2236. msgid "Accept"
  2237. msgstr "Aceitar"
  2238. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2239. msgctxt "@header"
  2240. msgid "Install Materials"
  2241. msgstr "Instalar Materiais"
  2242. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2243. msgctxt "@text"
  2244. msgid "Select and install material profiles optimised for your Ultimaker 3D printers."
  2245. msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D Ultimaker."
  2246. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2247. msgctxt "@info:tooltip"
  2248. msgid "Manage packages"
  2249. msgstr "Gerir pacotes"
  2250. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81
  2251. msgctxt "@header"
  2252. msgid "Description"
  2253. msgstr "Descrição"
  2254. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110
  2255. msgctxt "@header"
  2256. msgid "Compatible printers"
  2257. msgstr "Impressoras compatíveis"
  2258. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134
  2259. msgctxt "@info"
  2260. msgid "No compatibility information"
  2261. msgstr "Sem informação de compatibilidade"
  2262. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152
  2263. msgctxt "@header"
  2264. msgid "Compatible support materials"
  2265. msgstr "Materiais de suporte compatíveis"
  2266. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176
  2267. msgctxt "@info No materials"
  2268. msgid "None"
  2269. msgstr "Nenhum"
  2270. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193
  2271. msgctxt "@header"
  2272. msgid "Compatible with Material Station"
  2273. msgstr "Compatível com Material Station"
  2274. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2275. msgctxt "@info"
  2276. msgid "Yes"
  2277. msgstr "Sim"
  2278. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2279. msgctxt "@info"
  2280. msgid "No"
  2281. msgstr "Não"
  2282. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219
  2283. msgctxt "@header"
  2284. msgid "Optimized for Air Manager"
  2285. msgstr "Otimizado para o Air Manager"
  2286. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2287. msgctxt "@button"
  2288. msgid "Visit plug-in website"
  2289. msgstr "Visitar sítio web de complementos"
  2290. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2291. msgctxt "@button"
  2292. msgid "Website"
  2293. msgstr "Sítio web"
  2294. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252
  2295. msgctxt "@button"
  2296. msgid "Buy spool"
  2297. msgstr "Comprar carretel"
  2298. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261
  2299. msgctxt "@button"
  2300. msgid "Safety datasheet"
  2301. msgstr "Ficha de segurança"
  2302. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270
  2303. msgctxt "@button"
  2304. msgid "Technical datasheet"
  2305. msgstr "Ficha técnica"
  2306. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2307. msgctxt "@header"
  2308. msgid "Package details"
  2309. msgstr "Detalhes do pacote"
  2310. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2311. msgctxt "@button:tooltip"
  2312. msgid "Back"
  2313. msgstr "Voltar"
  2314. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2315. msgctxt "@button"
  2316. msgid "Failed to load packages:"
  2317. msgstr "Falha em carregar pacotes:"
  2318. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2319. msgctxt "@button"
  2320. msgid "Retry?"
  2321. msgstr "Tentar novamente?"
  2322. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:167
  2323. msgctxt "@button"
  2324. msgid "Loading"
  2325. msgstr "Carregando"
  2326. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2327. msgctxt "@message"
  2328. msgid "No more results to load"
  2329. msgstr "Não há mais resultados a carregar"
  2330. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2331. msgctxt "@message"
  2332. msgid "No results found with current filter"
  2333. msgstr "Não há resultados encontrados com o filtro atual"
  2334. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:226
  2335. msgctxt "@button"
  2336. msgid "Load more"
  2337. msgstr "Carregar mais"
  2338. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2339. msgctxt "@info"
  2340. msgid "Ultimaker Verified Plug-in"
  2341. msgstr "Complemento Verificado Ultimaker"
  2342. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2343. msgctxt "@info"
  2344. msgid "Ultimaker Certified Material"
  2345. msgstr "Material Certificado Ultimaker"
  2346. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2347. msgctxt "@info"
  2348. msgid "Ultimaker Verified Package"
  2349. msgstr "Pacote Verificado Ultimaker"
  2350. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2351. msgctxt "@header"
  2352. msgid "Manage packages"
  2353. msgstr "Gerir pacotes"
  2354. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2355. msgctxt "@text"
  2356. msgid "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2357. msgstr "Gerencie seu complementos e perfis de materiais do Cura aqui. Se assegure de manter seus complementos atualizados e fazer backup de sua configuração regularmente."
  2358. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2359. msgctxt "@title"
  2360. msgid "Install missing Materials"
  2361. msgstr "Instalar Materiais faltantes"
  2362. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87
  2363. msgctxt "@title"
  2364. msgid "Loading..."
  2365. msgstr "Carregando..."
  2366. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148
  2367. msgctxt "@button"
  2368. msgid "Plugins"
  2369. msgstr "Complementos"
  2370. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156
  2371. msgctxt "@button"
  2372. msgid "Materials"
  2373. msgstr "Materiais"
  2374. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193
  2375. msgctxt "@info"
  2376. msgid "Search in the browser"
  2377. msgstr "Buscar no navegador"
  2378. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271
  2379. msgctxt "@button"
  2380. msgid "In order to use the package you will need to restart Cura"
  2381. msgstr "Para usar o pacote você precisará reiniciar o Cura"
  2382. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279
  2383. msgctxt "@info:button, %1 is the application name"
  2384. msgid "Quit %1"
  2385. msgstr "Sair de %1"
  2386. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2387. msgctxt "@info"
  2388. msgid ""
  2389. "Please make sure your printer has a connection:\n"
  2390. "- Check if the printer is turned on.\n"
  2391. "- Check if the printer is connected to the network.\n"
  2392. "- Check if you are signed in to discover cloud-connected printers."
  2393. msgstr ""
  2394. "Por favor certifique-se que sua impressora está conectada>\n"
  2395. "- Verifique se ela está ligada.\n"
  2396. "- Verifique se ela está conectada à rede.\n"
  2397. "- Verifique se você está logado para descobrir impressoras conectadas à nuvem."
  2398. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:113
  2399. msgctxt "@info"
  2400. msgid "Please connect your printer to the network."
  2401. msgstr "Por favor conecte sua impressora à rede."
  2402. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:148
  2403. msgctxt "@label link to technical assistance"
  2404. msgid "View user manuals online"
  2405. msgstr "Ver manuais de usuário online"
  2406. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:164
  2407. msgctxt "@info"
  2408. msgid "In order to monitor your print from Cura, please connect the printer."
  2409. msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora."
  2410. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2411. msgctxt "@title:window"
  2412. msgid "Open Project"
  2413. msgstr "Abrir Projeto"
  2414. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:64
  2415. msgctxt "@action:ComboBox Update/override existing profile"
  2416. msgid "Update existing"
  2417. msgstr "Atualizar existentes"
  2418. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:65
  2419. msgctxt "@action:ComboBox Save settings in a new profile"
  2420. msgid "Create new"
  2421. msgstr "Criar novos"
  2422. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:83 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  2423. msgctxt "@action:title"
  2424. msgid "Summary - Cura Project"
  2425. msgstr "Resumo - Projeto do Cura"
  2426. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:109
  2427. msgctxt "@info:tooltip"
  2428. msgid "How should the conflict in the machine be resolved?"
  2429. msgstr "Como o conflito na máquina deve ser resolvido?"
  2430. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:165 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2431. msgctxt "@action:label"
  2432. msgid "Printer settings"
  2433. msgstr "Ajustes da impressora"
  2434. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:176 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2435. msgctxt "@action:label"
  2436. msgid "Type"
  2437. msgstr "Tipo"
  2438. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:193 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2439. msgctxt "@action:label"
  2440. msgid "Printer Group"
  2441. msgstr "Grupo de Impressora"
  2442. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:218
  2443. msgctxt "@info:tooltip"
  2444. msgid "How should the conflict in the profile be resolved?"
  2445. msgstr "Como o conflito no perfil deve ser resolvido?"
  2446. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:240 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  2447. msgctxt "@action:label"
  2448. msgid "Profile settings"
  2449. msgstr "Ajustes de perfil"
  2450. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:251 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:376 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2451. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  2452. msgctxt "@action:label"
  2453. msgid "Name"
  2454. msgstr "Nome"
  2455. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:269 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  2456. msgctxt "@action:label"
  2457. msgid "Intent"
  2458. msgstr "Objetivo"
  2459. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:287 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  2460. msgctxt "@action:label"
  2461. msgid "Not in profile"
  2462. msgstr "Ausente no perfil"
  2463. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:293 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  2464. msgctxt "@action:label"
  2465. msgid "%1 override"
  2466. msgid_plural "%1 overrides"
  2467. msgstr[0] "%1 sobreposto"
  2468. msgstr[1] "%1 sobrepostos"
  2469. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:306
  2470. msgctxt "@action:label"
  2471. msgid "Derivative from"
  2472. msgstr "Derivado de"
  2473. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2474. msgctxt "@action:label"
  2475. msgid "%1, %2 override"
  2476. msgid_plural "%1, %2 overrides"
  2477. msgstr[0] "%1, %2 sobreposição"
  2478. msgstr[1] "%1, %2 sobreposições"
  2479. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:334
  2480. msgctxt "@info:tooltip"
  2481. msgid "How should the conflict in the material be resolved?"
  2482. msgstr "Como o conflito no material deve ser resolvido?"
  2483. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:361
  2484. msgctxt "@action:label"
  2485. msgid "Material settings"
  2486. msgstr "Ajustes de material"
  2487. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2488. msgctxt "@action:label"
  2489. msgid "Setting visibility"
  2490. msgstr "Visibilidade dos ajustes"
  2491. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  2492. msgctxt "@action:label"
  2493. msgid "Mode"
  2494. msgstr "Modo"
  2495. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:422
  2496. msgctxt "@action:label"
  2497. msgid "Visible settings:"
  2498. msgstr "Ajustes visíveis:"
  2499. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:427
  2500. msgctxt "@action:label"
  2501. msgid "%1 out of %2"
  2502. msgstr "%1 de %2"
  2503. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:448
  2504. msgctxt "@action:warning"
  2505. msgid "Loading a project will clear all models on the build plate."
  2506. msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão."
  2507. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:490
  2508. msgctxt "@label"
  2509. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  2510. msgstr "O material usado neste projeto não está instalado atualmente no Cura.<br/>Instale o perfil de material e reabra o projeto."
  2511. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:515
  2512. msgctxt "@action:button"
  2513. msgid "Open"
  2514. msgstr "Abrir"
  2515. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:521
  2516. msgctxt "@action:button"
  2517. msgid "Open project anyway"
  2518. msgstr "Abrir o projeto mesmo assim"
  2519. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:530
  2520. msgctxt "@action:button"
  2521. msgid "Install missing material"
  2522. msgstr "Instalar material faltante"
  2523. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2524. msgctxt "@label"
  2525. msgid "Mesh Type"
  2526. msgstr "Tipo de Malha"
  2527. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2528. msgctxt "@label"
  2529. msgid "Normal model"
  2530. msgstr "Modelo normal"
  2531. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2532. msgctxt "@label"
  2533. msgid "Print as support"
  2534. msgstr "Imprimir como suporte"
  2535. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2536. msgctxt "@label"
  2537. msgid "Modify settings for overlaps"
  2538. msgstr "Modificar ajustes para sobreposições"
  2539. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2540. msgctxt "@label"
  2541. msgid "Don't support overlaps"
  2542. msgstr "Não suportar sobreposições"
  2543. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  2544. msgctxt "@item:inlistbox"
  2545. msgid "Infill mesh only"
  2546. msgstr "Somente malha de preenchimento"
  2547. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2548. msgctxt "@item:inlistbox"
  2549. msgid "Cutting mesh"
  2550. msgstr "Malha de corte"
  2551. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  2552. msgctxt "@action:button"
  2553. msgid "Select settings"
  2554. msgstr "Selecionar ajustes"
  2555. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2556. msgctxt "@title:window"
  2557. msgid "Select Settings to Customize for this model"
  2558. msgstr "Selecionar Ajustes a Personalizar para este modelo"
  2559. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102
  2560. msgctxt "@label:textbox"
  2561. msgid "Filter..."
  2562. msgstr "Filtrar..."
  2563. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2564. msgctxt "@label:checkbox"
  2565. msgid "Show all"
  2566. msgstr "Exibir tudo"
  2567. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  2568. msgctxt "@title"
  2569. msgid "Update Firmware"
  2570. msgstr "Atualizar Firmware"
  2571. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  2572. msgctxt "@label"
  2573. 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."
  2574. msgstr "O firmware é o software rodando diretamente no maquinário de sua impressora 3D. Este firmware controla os motores de passo, regula a temperatura e é o que faz a sua impressora funcionar."
  2575. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  2576. msgctxt "@label"
  2577. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  2578. msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias."
  2579. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  2580. msgctxt "@action:button"
  2581. msgid "Automatically upgrade Firmware"
  2582. msgstr "Automaticamente atualizar Firmware"
  2583. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  2584. msgctxt "@action:button"
  2585. msgid "Upload custom Firmware"
  2586. msgstr "Carregar Firmware personalizado"
  2587. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  2588. msgctxt "@label"
  2589. msgid "Firmware can not be updated because there is no connection with the printer."
  2590. msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora."
  2591. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  2592. msgctxt "@label"
  2593. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  2594. msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware."
  2595. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  2596. msgctxt "@title:window"
  2597. msgid "Select custom firmware"
  2598. msgstr "Selecionar firmware personalizado"
  2599. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  2600. msgctxt "@title:window"
  2601. msgid "Firmware Update"
  2602. msgstr "Atualização do Firmware"
  2603. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  2604. msgctxt "@label"
  2605. msgid "Updating firmware."
  2606. msgstr "Atualizando firmware."
  2607. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  2608. msgctxt "@label"
  2609. msgid "Firmware update completed."
  2610. msgstr "Atualização do Firmware completada."
  2611. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  2612. msgctxt "@label"
  2613. msgid "Firmware update failed due to an unknown error."
  2614. msgstr "A atualização de Firmware falhou devido a um erro desconhecido."
  2615. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  2616. msgctxt "@label"
  2617. msgid "Firmware update failed due to an communication error."
  2618. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  2619. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  2620. msgctxt "@label"
  2621. msgid "Firmware update failed due to an input/output error."
  2622. msgstr "A atualização de firmware falhou devido a um erro de entrada e saída."
  2623. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  2624. msgctxt "@label"
  2625. msgid "Firmware update failed due to missing firmware."
  2626. msgstr "A atualização de firmware falhou devido a firmware não encontrado."
  2627. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2628. msgctxt "@label"
  2629. msgid "Color scheme"
  2630. msgstr "Esquema de Cores"
  2631. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2632. msgctxt "@label:listbox"
  2633. msgid "Material Color"
  2634. msgstr "Cor do Material"
  2635. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2636. msgctxt "@label:listbox"
  2637. msgid "Line Type"
  2638. msgstr "Tipo de Linha"
  2639. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2640. msgctxt "@label:listbox"
  2641. msgid "Speed"
  2642. msgstr "Velocidade"
  2643. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2644. msgctxt "@label:listbox"
  2645. msgid "Layer Thickness"
  2646. msgstr "Espessura de Camada"
  2647. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2648. msgctxt "@label:listbox"
  2649. msgid "Line Width"
  2650. msgstr "Largura de Extrusão"
  2651. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2652. msgctxt "@label:listbox"
  2653. msgid "Flow"
  2654. msgstr "Fluxo"
  2655. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2656. msgctxt "@label"
  2657. msgid "Compatibility Mode"
  2658. msgstr "Modo de Compatibilidade"
  2659. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2660. msgctxt "@label"
  2661. msgid "Travels"
  2662. msgstr "Percursos"
  2663. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2664. msgctxt "@label"
  2665. msgid "Helpers"
  2666. msgstr "Assistentes"
  2667. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2668. msgctxt "@label"
  2669. msgid "Shell"
  2670. msgstr "Perímetro"
  2671. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:74
  2672. msgctxt "@label"
  2673. msgid "Infill"
  2674. msgstr "Preenchimento"
  2675. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2676. msgctxt "@label"
  2677. msgid "Starts"
  2678. msgstr "Inícios"
  2679. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2680. msgctxt "@label"
  2681. msgid "Only Show Top Layers"
  2682. msgstr "Somente Exibir Camadas Superiores"
  2683. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2684. msgctxt "@label"
  2685. msgid "Show 5 Detailed Layers On Top"
  2686. msgstr "Exibir 5 Camadas Superiores Detalhadas"
  2687. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2688. msgctxt "@label"
  2689. msgid "Top / Bottom"
  2690. msgstr "Topo / Base"
  2691. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2692. msgctxt "@label"
  2693. msgid "Inner Wall"
  2694. msgstr "Parede Interna"
  2695. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2696. msgctxt "@label"
  2697. msgid "min"
  2698. msgstr "mín"
  2699. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2700. msgctxt "@label"
  2701. msgid "max"
  2702. msgstr "máx"
  2703. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/SearchBar.qml:17
  2704. msgctxt "@placeholder"
  2705. msgid "Search"
  2706. msgstr "Buscar"
  2707. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:84
  2708. msgctxt "@label"
  2709. msgid "This setting is not used because all the settings that it influences are overridden."
  2710. msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos."
  2711. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:89
  2712. msgctxt "@label Header for list of settings."
  2713. msgid "Affects"
  2714. msgstr "Afeta"
  2715. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:94
  2716. msgctxt "@label Header for list of settings."
  2717. msgid "Affected By"
  2718. msgstr "Afetado Por"
  2719. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:190
  2720. msgctxt "@label"
  2721. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2722. msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
  2723. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:194
  2724. msgctxt "@label"
  2725. msgid "This setting is resolved from conflicting extruder-specific values:"
  2726. msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:"
  2727. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:234
  2728. msgctxt "@label"
  2729. msgid ""
  2730. "This setting has a value that is different from the profile.\n"
  2731. "\n"
  2732. "Click to restore the value of the profile."
  2733. msgstr ""
  2734. "Este ajuste tem um valor que é diferente do perfil.\n"
  2735. "\n"
  2736. "Clique para restaurar o valor do perfil."
  2737. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:334
  2738. msgctxt "@label"
  2739. msgid ""
  2740. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2741. "\n"
  2742. "Click to restore the calculated value."
  2743. msgstr ""
  2744. "Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n"
  2745. "\n"
  2746. "Clique para restaurar o valor calculado."
  2747. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:48
  2748. msgctxt "@label:textbox"
  2749. msgid "Search settings"
  2750. msgstr "Ajustes de busca"
  2751. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:395
  2752. msgctxt "@action:menu"
  2753. msgid "Copy value to all extruders"
  2754. msgstr "Copiar valor para todos os extrusores"
  2755. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:404
  2756. msgctxt "@action:menu"
  2757. msgid "Copy all changed values to all extruders"
  2758. msgstr "Copiar todos os valores alterados para todos os extrusores"
  2759. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:440
  2760. msgctxt "@action:menu"
  2761. msgid "Hide this setting"
  2762. msgstr "Ocultar este ajuste"
  2763. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:453
  2764. msgctxt "@action:menu"
  2765. msgid "Don't show this setting"
  2766. msgstr "Não exibir este ajuste"
  2767. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:457
  2768. msgctxt "@action:menu"
  2769. msgid "Keep this setting visible"
  2770. msgstr "Manter este ajuste visível"
  2771. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:476 /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:467
  2772. msgctxt "@action:menu"
  2773. msgid "Configure setting visibility..."
  2774. msgstr "Configurar a visibilidade dos ajustes..."
  2775. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingCategory.qml:115
  2776. msgctxt "@label"
  2777. msgid ""
  2778. "Some hidden settings use values different from their normal calculated value.\n"
  2779. "\n"
  2780. "Click to make these settings visible."
  2781. msgstr ""
  2782. "Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n"
  2783. "\n"
  2784. "Clique para tornar estes ajustes visíveis."
  2785. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2786. msgctxt "@action:button"
  2787. msgid "Marketplace"
  2788. msgstr "Mercado"
  2789. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2790. msgctxt "@title:menu menubar:toplevel"
  2791. msgid "&Settings"
  2792. msgstr "Aju&stes"
  2793. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2794. msgctxt "@title:window"
  2795. msgid "New project"
  2796. msgstr "Novo projeto"
  2797. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2798. msgctxt "@info:question"
  2799. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2800. msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos."
  2801. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  2802. msgctxt "@title:tab"
  2803. msgid "Setting Visibility"
  2804. msgstr "Visibilidade dos Ajustes"
  2805. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:134
  2806. msgctxt "@action:button"
  2807. msgid "Defaults"
  2808. msgstr "Defaults"
  2809. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55
  2810. msgctxt "@label:textbox"
  2811. msgid "Check all"
  2812. msgstr "Verificar tudo"
  2813. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  2814. msgctxt "@title:window"
  2815. msgid "Sync materials with printers"
  2816. msgstr "Sincronizar materiais com impressoras"
  2817. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  2818. msgctxt "@title:header"
  2819. msgid "Sync materials with printers"
  2820. msgstr "Sincronizar materiais com impressoras"
  2821. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  2822. msgctxt "@text"
  2823. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  2824. msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras."
  2825. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  2826. msgctxt "@button"
  2827. msgid "Why do I need to sync material profiles?"
  2828. msgstr "Por que eu preciso sincronizar perfis de material?"
  2829. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  2830. msgctxt "@button"
  2831. msgid "Start"
  2832. msgstr "Iniciar"
  2833. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  2834. msgctxt "@title:header"
  2835. msgid "Sign in"
  2836. msgstr "Entrar"
  2837. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  2838. msgctxt "@text"
  2839. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  2840. msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura."
  2841. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  2842. msgctxt "@button"
  2843. msgid "Sync materials with USB"
  2844. msgstr "Sincronizar materiais usando USB"
  2845. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  2846. msgctxt "@title:header"
  2847. msgid "The following printers will receive the new material profiles:"
  2848. msgstr "Os seguintes materiais receberão novos perfis de material:"
  2849. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  2850. msgctxt "@title:header"
  2851. msgid "Something went wrong when sending the materials to the printers."
  2852. msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras."
  2853. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  2854. msgctxt "@title:header"
  2855. msgid "Material profiles successfully synced with the following printers:"
  2856. msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:"
  2857. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  2858. msgctxt "@button"
  2859. msgid "Troubleshooting"
  2860. msgstr "Resolução de problemas"
  2861. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  2862. msgctxt "@text Asking the user whether printers are missing in a list."
  2863. msgid "Printers missing?"
  2864. msgstr "Impressoras faltando?"
  2865. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  2866. msgctxt "@text"
  2867. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  2868. msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory."
  2869. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  2870. msgctxt "@button"
  2871. msgid "Refresh List"
  2872. msgstr "Atualizar Lista"
  2873. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  2874. msgctxt "@button"
  2875. msgid "Try again"
  2876. msgstr "Tentar novamente"
  2877. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  2878. msgctxt "@button"
  2879. msgid "Done"
  2880. msgstr "Feito"
  2881. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  2882. msgctxt "@button"
  2883. msgid "Sync"
  2884. msgstr "Sincronizar"
  2885. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  2886. msgctxt "@button"
  2887. msgid "Syncing"
  2888. msgstr "Sincronizando"
  2889. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  2890. msgctxt "@title:header"
  2891. msgid "No printers found"
  2892. msgstr "Nenhuma impressora encontrada"
  2893. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  2894. msgctxt "@text"
  2895. 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."
  2896. msgstr "Parece que você não tem impressoras compatíveis conectadas à Digital Factory. Certifique-se que sua impressora esteja conectada e rodando o firmware mais recente."
  2897. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  2898. msgctxt "@button"
  2899. msgid "Learn how to connect your printer to Digital Factory"
  2900. msgstr "Aprenda como conectar sua impressora à Digital Factory"
  2901. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  2902. msgctxt "@button"
  2903. msgid "Refresh"
  2904. msgstr "Atualizar"
  2905. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  2906. msgctxt "@title:header"
  2907. msgid "Sync material profiles via USB"
  2908. msgstr "Sincronizar perfis de material via USB"
  2909. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  2910. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  2911. msgid "Follow the following steps to load the new material profiles to your printer."
  2912. msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora."
  2913. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  2914. msgctxt "@text"
  2915. msgid "Click the export material archive button."
  2916. msgstr "Clique no botão de exportar arquivo de material."
  2917. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  2918. msgctxt "@text"
  2919. msgid "Save the .umm file on a USB stick."
  2920. msgstr "Grava o arquivo .umm em um pendrive USB."
  2921. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  2922. msgctxt "@text"
  2923. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  2924. msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material."
  2925. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  2926. msgctxt "@button"
  2927. msgid "How to load new material profiles to my printer"
  2928. msgstr "Como carregar novos perfis de material na minha impressora"
  2929. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  2930. msgctxt "@button"
  2931. msgid "Back"
  2932. msgstr "Voltar"
  2933. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  2934. msgctxt "@button"
  2935. msgid "Export material archive"
  2936. msgstr "Exportar arquivo de material"
  2937. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  2938. msgctxt "@title:window"
  2939. msgid "Export All Materials"
  2940. msgstr "Exportar Todos Os Materiais"
  2941. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  2942. msgctxt "@title:window"
  2943. msgid "Confirm Diameter Change"
  2944. msgstr "Confirmar Mudança de Diâmetro"
  2945. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  2946. msgctxt "@label (%1 is a number)"
  2947. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2948. msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?"
  2949. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  2950. msgctxt "@label"
  2951. msgid "Display Name"
  2952. msgstr "Exibir Nome"
  2953. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  2954. msgctxt "@label"
  2955. msgid "Brand"
  2956. msgstr "Marca"
  2957. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  2958. msgctxt "@label"
  2959. msgid "Material Type"
  2960. msgstr "Tipo de Material"
  2961. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  2962. msgctxt "@label"
  2963. msgid "Color"
  2964. msgstr "Cor"
  2965. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262
  2966. msgctxt "@title"
  2967. msgid "Material color picker"
  2968. msgstr "Seletor de cores do material"
  2969. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275
  2970. msgctxt "@label"
  2971. msgid "Properties"
  2972. msgstr "Propriedades"
  2973. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286
  2974. msgctxt "@label"
  2975. msgid "Density"
  2976. msgstr "Densidade"
  2977. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319
  2978. msgctxt "@label"
  2979. msgid "Diameter"
  2980. msgstr "Diâmetro"
  2981. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369
  2982. msgctxt "@label"
  2983. msgid "Filament Cost"
  2984. msgstr "Custo do Filamento"
  2985. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401
  2986. msgctxt "@label"
  2987. msgid "Filament weight"
  2988. msgstr "Peso do Filamento"
  2989. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433
  2990. msgctxt "@label"
  2991. msgid "Filament length"
  2992. msgstr "Comprimento do Filamento"
  2993. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451
  2994. msgctxt "@label"
  2995. msgid "Cost per Meter"
  2996. msgstr "Custo por Metro"
  2997. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465
  2998. msgctxt "@label"
  2999. msgid "This material is linked to %1 and shares some of its properties."
  3000. msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades."
  3001. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472
  3002. msgctxt "@label"
  3003. msgid "Unlink Material"
  3004. msgstr "Desvincular Material"
  3005. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485
  3006. msgctxt "@label"
  3007. msgid "Description"
  3008. msgstr "Descrição"
  3009. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503
  3010. msgctxt "@label"
  3011. msgid "Adhesion Information"
  3012. msgstr "Informação sobre Aderência"
  3013. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3014. msgctxt "@title"
  3015. msgid "Information"
  3016. msgstr "Informação"
  3017. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:647 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:82 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  3018. msgctxt "@label"
  3019. msgid "Print settings"
  3020. msgstr "Ajustes de impressão"
  3021. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:468
  3022. msgctxt "@title:tab"
  3023. msgid "Materials"
  3024. msgstr "Materiais"
  3025. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3026. msgctxt "@label"
  3027. msgid "Materials compatible with active printer:"
  3028. msgstr "Materiais compatíveis com a impressora ativa:"
  3029. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:94
  3030. msgctxt "@action:button"
  3031. msgid "Create new"
  3032. msgstr "Criar novo"
  3033. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:88
  3034. msgctxt "@action:button"
  3035. msgid "Import"
  3036. msgstr "Importar"
  3037. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3038. msgctxt "@action:button"
  3039. msgid "Sync with Printers"
  3040. msgstr "Sincronizar com Impressoras"
  3041. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:142 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3042. msgctxt "@action:button"
  3043. msgid "Activate"
  3044. msgstr "Ativar"
  3045. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:311
  3046. msgctxt "@action:button"
  3047. msgid "Duplicate"
  3048. msgstr "Duplicar"
  3049. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:342
  3050. msgctxt "@action:button"
  3051. msgid "Export"
  3052. msgstr "Exportar"
  3053. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:392
  3054. msgctxt "@title:window"
  3055. msgid "Confirm Remove"
  3056. msgstr "Confirmar Remoção"
  3057. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:393
  3058. msgctxt "@label (%1 is object name)"
  3059. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3060. msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!"
  3061. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3062. msgctxt "@title:window"
  3063. msgid "Import Material"
  3064. msgstr "Importar Material"
  3065. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3066. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3067. msgid "Successfully imported material <filename>%1</filename>"
  3068. msgstr "Material <filename>%1</filename> importado com sucesso"
  3069. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3070. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3071. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3072. msgstr "Não foi possível importar material <filename>%1</filename>: <message>%2</message>"
  3073. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267
  3074. msgctxt "@title:window"
  3075. msgid "Export Material"
  3076. msgstr "Exportar Material"
  3077. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272
  3078. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3079. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3080. msgstr "Falha em exportar material para <filename>%1</filename>: <message>%2</message>"
  3081. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275
  3082. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3083. msgid "Successfully exported material to <filename>%1</filename>"
  3084. msgstr "Material exportado para <filename>%1</filename> com sucesso"
  3085. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3086. msgctxt "@item:tooltip"
  3087. msgid "This setting has been hidden by the active machine and will not be visible."
  3088. msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível."
  3089. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3090. msgctxt "@item:tooltip %1 is list of setting names"
  3091. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3092. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3093. msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível."
  3094. msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível."
  3095. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:14 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:461
  3096. msgctxt "@title:tab"
  3097. msgid "General"
  3098. msgstr "Geral"
  3099. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:172
  3100. msgctxt "@label"
  3101. msgid "Interface"
  3102. msgstr "Interface"
  3103. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3104. msgctxt "@heading"
  3105. msgid "-- incomplete --"
  3106. msgstr "-- incompleto --"
  3107. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:261
  3108. msgctxt "@label"
  3109. msgid "Currency:"
  3110. msgstr "Moeda:"
  3111. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:277
  3112. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3113. msgid "Theme*:"
  3114. msgstr "Tema*:"
  3115. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:323
  3116. msgctxt "@info:tooltip"
  3117. msgid "Slice automatically when changing settings."
  3118. msgstr "Fatiar automaticamente quando mudar ajustes."
  3119. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:331
  3120. msgctxt "@option:check"
  3121. msgid "Slice automatically"
  3122. msgstr "Fatiar automaticamente"
  3123. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:340
  3124. msgctxt "@info:tooltip"
  3125. msgid "Show an icon and notifications in the system notification area."
  3126. msgstr ""
  3127. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3128. msgctxt "@option:check"
  3129. msgid "Add icon to system tray *"
  3130. msgstr "Adicionar ícone à bandeja do sistema *"
  3131. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:357
  3132. msgctxt "@label"
  3133. msgid "*You will need to restart the application for these changes to have effect."
  3134. msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito."
  3135. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3136. msgctxt "@label"
  3137. msgid "Viewport behavior"
  3138. msgstr "Comportamento da área de visualização"
  3139. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:381
  3140. msgctxt "@info:tooltip"
  3141. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3142. msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente."
  3143. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3144. msgctxt "@option:check"
  3145. msgid "Display overhang"
  3146. msgstr "Exibir seções pendentes"
  3147. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3148. msgctxt "@info:tooltip"
  3149. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3150. msgstr "Ressalta superfícies faltantes ou incorretas do modelo usando sinais de alerta. Os caminhos de extrusão frequentemente terão partes da geometria pretendida ausentes."
  3151. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3152. msgctxt "@option:check"
  3153. msgid "Display model errors"
  3154. msgstr "Exibir erros de modelo"
  3155. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:417
  3156. msgctxt "@info:tooltip"
  3157. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3158. msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado"
  3159. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:422
  3160. msgctxt "@action:button"
  3161. msgid "Center camera when item is selected"
  3162. msgstr "Centralizar câmera quanto o item é selecionado"
  3163. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:432
  3164. msgctxt "@info:tooltip"
  3165. msgid "Should the default zoom behavior of cura be inverted?"
  3166. msgstr "O comportamento default de ampliação deve ser invertido?"
  3167. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3168. msgctxt "@action:button"
  3169. msgid "Invert the direction of camera zoom."
  3170. msgstr "Inverter a direção da ampliação de câmera."
  3171. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3172. msgctxt "@info:tooltip"
  3173. msgid "Should zooming move in the direction of the mouse?"
  3174. msgstr "A ampliação (zoom) deve se mover na direção do mouse?"
  3175. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3176. msgctxt "@info:tooltip"
  3177. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3178. msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica."
  3179. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:458
  3180. msgctxt "@action:button"
  3181. msgid "Zoom toward mouse direction"
  3182. msgstr "Ampliar na direção do mouse"
  3183. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:484
  3184. msgctxt "@info:tooltip"
  3185. msgid "Should models on the platform be moved so that they no longer intersect?"
  3186. msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?"
  3187. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3188. msgctxt "@option:check"
  3189. msgid "Ensure models are kept apart"
  3190. msgstr "Assegurar que os modelos sejam mantidos separados"
  3191. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3192. msgctxt "@info:tooltip"
  3193. msgid "Should models on the platform be moved down to touch the build plate?"
  3194. msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?"
  3195. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3196. msgctxt "@option:check"
  3197. msgid "Automatically drop models to the build plate"
  3198. msgstr "Automaticamente fazer os modelos caírem na mesa de impressão"
  3199. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3200. msgctxt "@info:tooltip"
  3201. msgid "Show caution message in g-code reader."
  3202. msgstr "Exibir mensagem de alerta no leitor de G-Code."
  3203. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:524
  3204. msgctxt "@option:check"
  3205. msgid "Caution message in g-code reader"
  3206. msgstr "Mensagem de alera no leitor de G-Code"
  3207. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3208. msgctxt "@info:tooltip"
  3209. msgid "Should layer be forced into compatibility mode?"
  3210. msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?"
  3211. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:537
  3212. msgctxt "@option:check"
  3213. msgid "Force layer view compatibility mode (restart required)"
  3214. msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)"
  3215. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:547
  3216. msgctxt "@info:tooltip"
  3217. msgid "Should Cura open at the location it was closed?"
  3218. msgstr "O Cura deve abrir no lugar onde foi fechado?"
  3219. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:552
  3220. msgctxt "@option:check"
  3221. msgid "Restore window position on start"
  3222. msgstr "Restaurar posição da janela no início"
  3223. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:562
  3224. msgctxt "@info:tooltip"
  3225. msgid "What type of camera rendering should be used?"
  3226. msgstr "Que tipo de renderização de câmera deve ser usada?"
  3227. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:569
  3228. msgctxt "@window:text"
  3229. msgid "Camera rendering:"
  3230. msgstr "Renderização de câmera:"
  3231. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3232. msgid "Perspective"
  3233. msgstr "Perspectiva"
  3234. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:577
  3235. msgid "Orthographic"
  3236. msgstr "Ortográfica"
  3237. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:617
  3238. msgctxt "@label"
  3239. msgid "Opening and saving files"
  3240. msgstr "Abrindo e salvando arquivos"
  3241. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3242. msgctxt "@info:tooltip"
  3243. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3244. msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?"
  3245. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:629
  3246. msgctxt "@option:check"
  3247. msgid "Use a single instance of Cura"
  3248. msgstr "Usar uma única instância do Cura"
  3249. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:640
  3250. msgctxt "@info:tooltip"
  3251. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3252. msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?"
  3253. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:646
  3254. msgctxt "@option:check"
  3255. msgid "Clear buildplate before loading model into the single instance"
  3256. msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única"
  3257. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3258. msgctxt "@info:tooltip"
  3259. msgid "Should models be scaled to the build volume if they are too large?"
  3260. msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?"
  3261. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:661
  3262. msgctxt "@option:check"
  3263. msgid "Scale large models"
  3264. msgstr "Redimensionar modelos grandes"
  3265. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:671
  3266. msgctxt "@info:tooltip"
  3267. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3268. msgstr "Um modelo pode ser carregado diminuto se sua unidade for por exemplo em metros ao invés de milímetros. Devem esses modelos ser redimensionados?"
  3269. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:676
  3270. msgctxt "@option:check"
  3271. msgid "Scale extremely small models"
  3272. msgstr "Redimensionar modelos minúsculos"
  3273. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:686
  3274. msgctxt "@info:tooltip"
  3275. msgid "Should models be selected after they are loaded?"
  3276. msgstr "Os modelos devem ser selecionados após serem carregados?"
  3277. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:691
  3278. msgctxt "@option:check"
  3279. msgid "Select models when loaded"
  3280. msgstr "Selecionar modelos ao carregar"
  3281. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:701
  3282. msgctxt "@info:tooltip"
  3283. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3284. msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?"
  3285. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:706
  3286. msgctxt "@option:check"
  3287. msgid "Add machine prefix to job name"
  3288. msgstr "Adicionar prefixo de máquina ao nome do trabalho"
  3289. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:716
  3290. msgctxt "@info:tooltip"
  3291. msgid "Should a summary be shown when saving a project file?"
  3292. msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?"
  3293. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:720
  3294. msgctxt "@option:check"
  3295. msgid "Show summary dialog when saving project"
  3296. msgstr "Exibir diálogo de resumo ao salvar projeto"
  3297. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:730
  3298. msgctxt "@info:tooltip"
  3299. msgid "Default behavior when opening a project file"
  3300. msgstr "Comportamento default ao abrir um arquivo de projeto"
  3301. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:738
  3302. msgctxt "@window:text"
  3303. msgid "Default behavior when opening a project file: "
  3304. msgstr "Comportamento default ao abrir um arquivo de projeto: "
  3305. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:753
  3306. msgctxt "@option:openProject"
  3307. msgid "Always ask me this"
  3308. msgstr "Sempre me perguntar"
  3309. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:754
  3310. msgctxt "@option:openProject"
  3311. msgid "Always open as a project"
  3312. msgstr "Sempre abrir como projeto"
  3313. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3314. msgctxt "@option:openProject"
  3315. msgid "Always import models"
  3316. msgstr "Sempre importar modelos"
  3317. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:792
  3318. msgctxt "@info:tooltip"
  3319. 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."
  3320. msgstr "Quando você faz alterações em um perfil e troca para um diferent, um diálogo aparecerá perguntando se você quer manter ou aplicar suas modificações, ou você pode forçar um comportamento default e não ter o diálogo."
  3321. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:801 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36
  3322. msgctxt "@label"
  3323. msgid "Profiles"
  3324. msgstr "Perfis"
  3325. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:806
  3326. msgctxt "@window:text"
  3327. msgid "Default behavior for changed setting values when switching to a different profile: "
  3328. msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: "
  3329. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:820 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:115
  3330. msgctxt "@option:discardOrKeep"
  3331. msgid "Always ask me this"
  3332. msgstr "Sempre perguntar"
  3333. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:821
  3334. msgctxt "@option:discardOrKeep"
  3335. msgid "Always discard changed settings"
  3336. msgstr "Sempre descartar alterações da configuração"
  3337. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:822
  3338. msgctxt "@option:discardOrKeep"
  3339. msgid "Always transfer changed settings to new profile"
  3340. msgstr "Sempre transferir as alterações para o novo perfil"
  3341. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:856
  3342. msgctxt "@label"
  3343. msgid "Privacy"
  3344. msgstr "Privacidade"
  3345. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:862
  3346. msgctxt "@info:tooltip"
  3347. 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."
  3348. msgstr "Dados anônimos sobre sua impressão podem ser enviados para a Ultimaker? Nota: nenhuma informação pessoalmente identificável, modelos ou endereços IP são enviados ou armazenados."
  3349. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:867
  3350. msgctxt "@option:check"
  3351. msgid "Send (anonymous) print information"
  3352. msgstr "Enviar informação (anônima) de impressão"
  3353. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:897
  3354. msgctxt "@label"
  3355. msgid "Updates"
  3356. msgstr "Atualizações"
  3357. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:904
  3358. msgctxt "@info:tooltip"
  3359. msgid "Should Cura check for updates when the program is started?"
  3360. msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?"
  3361. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:909
  3362. msgctxt "@option:check"
  3363. msgid "Check for updates on start"
  3364. msgstr "Verificar atualizações na inicialização"
  3365. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:925
  3366. msgctxt "@info:tooltip"
  3367. msgid "When checking for updates, only check for stable releases."
  3368. msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis."
  3369. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:931
  3370. msgctxt "@option:radio"
  3371. msgid "Stable releases only"
  3372. msgstr "Versões estáveis somente"
  3373. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:941
  3374. msgctxt "@info:tooltip"
  3375. msgid "When checking for updates, check for both stable and for beta releases."
  3376. msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta."
  3377. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:947
  3378. msgctxt "@option:radio"
  3379. msgid "Stable and Beta releases"
  3380. msgstr "Versões estáveis ou beta"
  3381. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:957
  3382. msgctxt "@info:tooltip"
  3383. 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!"
  3384. msgstr "Uma verificação automática por novos complementos deve ser feita toda vez que o Cura iniciar? É altamente recomendado que não desabilite esta opção!"
  3385. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:962
  3386. msgctxt "@option:check"
  3387. msgid "Get notifications for plugin updates"
  3388. msgstr "Ter notificações para atualizações de complementos"
  3389. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3390. msgctxt "@title:window"
  3391. msgid "Rename"
  3392. msgstr "Renomear"
  3393. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3394. msgctxt "@info"
  3395. msgid "Please provide a new name."
  3396. msgstr "Por favor, escolha um novo nome."
  3397. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:17 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:466
  3398. msgctxt "@title:tab"
  3399. msgid "Printers"
  3400. msgstr "Impressoras"
  3401. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:50
  3402. msgctxt "@action:button"
  3403. msgid "Add New"
  3404. msgstr "Adicionar Novo"
  3405. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:154 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:331
  3406. msgctxt "@action:button"
  3407. msgid "Rename"
  3408. msgstr "Renomear"
  3409. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:57 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:470
  3410. msgctxt "@title:tab"
  3411. msgid "Profiles"
  3412. msgstr "Perfis"
  3413. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:59
  3414. msgctxt "@label"
  3415. msgid "Profiles compatible with active printer:"
  3416. msgstr "Perfis compatíveis com a impressora ativa:"
  3417. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:98
  3418. msgctxt "@action:tooltip"
  3419. msgid "Create new profile from current settings/overrides"
  3420. msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais"
  3421. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:125
  3422. msgctxt "@action:label"
  3423. msgid "Some settings from current profile were overwritten."
  3424. msgstr "Alguns ajustes do perfil atual foram sobrescritos."
  3425. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:140
  3426. msgctxt "@action:button"
  3427. msgid "Update profile."
  3428. msgstr "Atualizar perfil."
  3429. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:143
  3430. msgctxt "@action:tooltip"
  3431. msgid "Update profile with current settings/overrides"
  3432. msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  3433. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:148 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3434. msgctxt "@action:button"
  3435. msgid "Discard current changes"
  3436. msgstr "Descartar ajustes atuais"
  3437. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:158
  3438. msgctxt "@action:label"
  3439. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3440. msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo."
  3441. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:165
  3442. msgctxt "@action:label"
  3443. msgid "Your current settings match the selected profile."
  3444. msgstr "Seus ajustes atuais coincidem com o perfil selecionado."
  3445. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:175
  3446. msgctxt "@title:tab"
  3447. msgid "Global Settings"
  3448. msgstr "Ajustes globais"
  3449. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3450. msgctxt "@title:window"
  3451. msgid "Create Profile"
  3452. msgstr "Criar Perfil"
  3453. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:280
  3454. msgctxt "@info"
  3455. msgid "Please provide a name for this profile."
  3456. msgstr "Por favor dê um nome a este perfil."
  3457. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:352 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:368
  3458. msgctxt "@title:window"
  3459. msgid "Export Profile"
  3460. msgstr "Exportar Perfil"
  3461. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:382
  3462. msgctxt "@title:window"
  3463. msgid "Duplicate Profile"
  3464. msgstr "Duplicar Perfil"
  3465. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:409
  3466. msgctxt "@title:window"
  3467. msgid "Rename Profile"
  3468. msgstr "Renomear Perfil"
  3469. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:422 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:429
  3470. msgctxt "@title:window"
  3471. msgid "Import Profile"
  3472. msgstr "Importar Perfil"
  3473. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewsSelector.qml:50
  3474. msgctxt "@label"
  3475. msgid "View type"
  3476. msgstr "Tipo de Visão"
  3477. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:25
  3478. msgctxt "@info:tooltip"
  3479. msgid "3D View"
  3480. msgstr "Visão 3D"
  3481. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:38
  3482. msgctxt "@info:tooltip"
  3483. msgid "Front View"
  3484. msgstr "Viso de Frente"
  3485. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:51
  3486. msgctxt "@info:tooltip"
  3487. msgid "Top View"
  3488. msgstr "Visão de Cima"
  3489. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:64
  3490. msgctxt "@info:tooltip"
  3491. msgid "Left View"
  3492. msgstr "Visão à Esquerda"
  3493. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:77
  3494. msgctxt "@info:tooltip"
  3495. msgid "Right View"
  3496. msgstr "Visão à Direita"
  3497. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:109
  3498. msgctxt "@label"
  3499. msgid "Is printed as support."
  3500. msgstr "Está impresso como suporte."
  3501. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:112
  3502. msgctxt "@label"
  3503. msgid "Other models overlapping with this model are modified."
  3504. msgstr "Outros modelos se sobrepondo a esse modelo foram modificados."
  3505. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:115
  3506. msgctxt "@label"
  3507. msgid "Infill overlapping with this model is modified."
  3508. msgstr "Preenchimento se sobrepondo a este modelo foi modificado."
  3509. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:118
  3510. msgctxt "@label"
  3511. msgid "Overlaps with this model are not supported."
  3512. msgstr "Sobreposições neste modelo não são suportadas."
  3513. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:125
  3514. msgctxt "@label %1 is the number of settings it overrides."
  3515. msgid "Overrides %1 setting."
  3516. msgid_plural "Overrides %1 settings."
  3517. msgstr[0] "Sobrepõe %1 ajuste."
  3518. msgstr[1] "Sobrepõe %1 ajustes."
  3519. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:156
  3520. msgctxt "@label"
  3521. msgid "Active print"
  3522. msgstr "Impressão ativa"
  3523. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:164
  3524. msgctxt "@label"
  3525. msgid "Job Name"
  3526. msgstr "Nome do Trabalho"
  3527. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:172
  3528. msgctxt "@label"
  3529. msgid "Printing Time"
  3530. msgstr "Tempo de Impressão"
  3531. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:180
  3532. msgctxt "@label"
  3533. msgid "Estimated time left"
  3534. msgstr "Tempo restante estimado"
  3535. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3536. msgctxt "@label"
  3537. msgid "Add a printer"
  3538. msgstr "Adicionar uma impressora"
  3539. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38
  3540. msgctxt "@label"
  3541. msgid "Add a networked printer"
  3542. msgstr "Adicionar uma impressora de rede"
  3543. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87
  3544. msgctxt "@label"
  3545. msgid "Add a non-networked printer"
  3546. msgstr "Adicionar uma impressora local"
  3547. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3548. msgctxt "@label"
  3549. msgid "What's New"
  3550. msgstr "O Que Há de Novo"
  3551. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  3552. msgctxt "@label"
  3553. msgid "Manufacturer"
  3554. msgstr "Fabricante"
  3555. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  3556. msgctxt "@label"
  3557. msgid "Profile author"
  3558. msgstr "Autor do perfil"
  3559. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  3560. msgctxt "@label"
  3561. msgid "Printer name"
  3562. msgstr "Nome da impressora"
  3563. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  3564. msgctxt "@text"
  3565. msgid "Please name your printer"
  3566. msgstr "Por favor dê um nome à sua impressora"
  3567. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3568. msgctxt "@label"
  3569. msgid "Release Notes"
  3570. msgstr "Notas de lançamento"
  3571. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3572. msgctxt "@label"
  3573. msgid "There is no printer found over your network."
  3574. msgstr "Não foi encontrada nenhuma impressora em sua rede."
  3575. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  3576. msgctxt "@label"
  3577. msgid "Refresh"
  3578. msgstr "Atualizar"
  3579. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  3580. msgctxt "@label"
  3581. msgid "Add printer by IP"
  3582. msgstr "Adicionar impressora por IP"
  3583. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  3584. msgctxt "@label"
  3585. msgid "Add cloud printer"
  3586. msgstr "Adicionar impressora de nuvem"
  3587. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220
  3588. msgctxt "@label"
  3589. msgid "Troubleshooting"
  3590. msgstr "Resolução de problemas"
  3591. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:19
  3592. msgctxt "@label"
  3593. msgid "Sign in to the Ultimaker platform"
  3594. msgstr "Entre na plataforma Ultimaker"
  3595. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:123
  3596. msgctxt "@text"
  3597. msgid "Add material settings and plugins from the Marketplace"
  3598. msgstr "Adicionar ajustes de materiais e plugins do Marketplace"
  3599. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:149
  3600. msgctxt "@text"
  3601. msgid "Backup and sync your material settings and plugins"
  3602. msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins"
  3603. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:175
  3604. msgctxt "@text"
  3605. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3606. msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade Ultimaker"
  3607. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:189
  3608. msgctxt "@button"
  3609. msgid "Skip"
  3610. msgstr "Pular"
  3611. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:201
  3612. msgctxt "@text"
  3613. msgid "Create a free Ultimaker Account"
  3614. msgstr "Criar uma conta Ultimaker gratuita"
  3615. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3616. msgctxt "@label"
  3617. msgid "Help us to improve Ultimaker Cura"
  3618. msgstr "Nos ajude a melhor o Ultimaker Cura"
  3619. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56
  3620. msgctxt "@text"
  3621. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3622. msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:"
  3623. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68
  3624. msgctxt "@text"
  3625. msgid "Machine types"
  3626. msgstr "Tipos de máquina"
  3627. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74
  3628. msgctxt "@text"
  3629. msgid "Material usage"
  3630. msgstr "Uso do material"
  3631. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80
  3632. msgctxt "@text"
  3633. msgid "Number of slices"
  3634. msgstr "Número de fatias"
  3635. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86
  3636. msgctxt "@text"
  3637. msgid "Print settings"
  3638. msgstr "Ajustes de impressão"
  3639. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99
  3640. msgctxt "@text"
  3641. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3642. msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal."
  3643. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100
  3644. msgctxt "@text"
  3645. msgid "More information"
  3646. msgstr "Mais informações"
  3647. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3648. msgctxt "@label"
  3649. msgid "Empty"
  3650. msgstr "Vazio"
  3651. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3652. msgctxt "@label"
  3653. msgid "Add a Cloud printer"
  3654. msgstr "Adicionar uma impressora de Nuvem"
  3655. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  3656. msgctxt "@label"
  3657. msgid "Waiting for Cloud response"
  3658. msgstr "Aguardando resposta da Nuvem"
  3659. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  3660. msgctxt "@label"
  3661. msgid "No printers found in your account?"
  3662. msgstr "Nenhuma impressora encontrada em sua conta?"
  3663. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  3664. msgctxt "@label"
  3665. msgid "The following printers in your account have been added in Cura:"
  3666. msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:"
  3667. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  3668. msgctxt "@button"
  3669. msgid "Add printer manually"
  3670. msgstr "Adicionar impressora manualmente"
  3671. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3672. msgctxt "@label"
  3673. msgid "User Agreement"
  3674. msgstr "Contrato de Usuário"
  3675. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  3676. msgctxt "@button"
  3677. msgid "Decline and close"
  3678. msgstr "Rejeitar e fechar"
  3679. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3680. msgctxt "@label"
  3681. msgid "Add printer by IP address"
  3682. msgstr "Adicionar impressora por endereço IP"
  3683. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  3684. msgctxt "@text"
  3685. msgid "Enter your printer's IP address."
  3686. msgstr "Entre o endereço IP de sua impressora."
  3687. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  3688. msgctxt "@button"
  3689. msgid "Add"
  3690. msgstr "Adicionar"
  3691. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  3692. msgctxt "@label"
  3693. msgid "Could not connect to device."
  3694. msgstr "Não foi possível conectar ao dispositivo."
  3695. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  3696. msgctxt "@label"
  3697. msgid "Can't connect to your Ultimaker printer?"
  3698. msgstr "Não consegue conectar à sua impressora Ultimaker?"
  3699. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  3700. msgctxt "@label"
  3701. msgid "The printer at this address has not responded yet."
  3702. msgstr "A impressora neste endereço ainda não respondeu."
  3703. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  3704. msgctxt "@label"
  3705. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3706. msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo."
  3707. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  3708. msgctxt "@button"
  3709. msgid "Connect"
  3710. msgstr "Conectar"
  3711. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3712. msgctxt "@label"
  3713. msgid "Welcome to Ultimaker Cura"
  3714. msgstr "Bem-vindo ao Ultimaker Cura"
  3715. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67
  3716. msgctxt "@text"
  3717. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  3718. msgstr "Por favor siga estes passos para configurar o Ultimaker Cura. Isto tomará apenas alguns momentos."
  3719. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82
  3720. msgctxt "@button"
  3721. msgid "Get started"
  3722. msgstr "Começar"
  3723. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectSelector.qml:59
  3724. msgctxt "@label"
  3725. msgid "Object list"
  3726. msgstr "Lista de objetos"
  3727. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:81
  3728. msgctxt "@action:inmenu"
  3729. msgid "Show Online Troubleshooting"
  3730. msgstr "Mostrar Resolução de Problemas Online"
  3731. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:88
  3732. msgctxt "@action:inmenu"
  3733. msgid "Toggle Full Screen"
  3734. msgstr "Alternar Tela Cheia"
  3735. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:96
  3736. msgctxt "@action:inmenu"
  3737. msgid "Exit Full Screen"
  3738. msgstr "Sair da Tela Cheia"
  3739. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:103
  3740. msgctxt "@action:inmenu menubar:edit"
  3741. msgid "&Undo"
  3742. msgstr "Desfazer (&U)"
  3743. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:113
  3744. msgctxt "@action:inmenu menubar:edit"
  3745. msgid "&Redo"
  3746. msgstr "&Refazer"
  3747. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:131
  3748. msgctxt "@action:inmenu menubar:file"
  3749. msgid "&Quit"
  3750. msgstr "Sair (&Q)"
  3751. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:139
  3752. msgctxt "@action:inmenu menubar:view"
  3753. msgid "3D View"
  3754. msgstr "Visão &3D"
  3755. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:146
  3756. msgctxt "@action:inmenu menubar:view"
  3757. msgid "Front View"
  3758. msgstr "Visão Frontal"
  3759. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:153
  3760. msgctxt "@action:inmenu menubar:view"
  3761. msgid "Top View"
  3762. msgstr "Visão Superior"
  3763. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:160
  3764. msgctxt "@action:inmenu menubar:view"
  3765. msgid "Bottom View"
  3766. msgstr "Visão de Baixo"
  3767. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:167
  3768. msgctxt "@action:inmenu menubar:view"
  3769. msgid "Left Side View"
  3770. msgstr "Visão do Lado Esquerdo"
  3771. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:174
  3772. msgctxt "@action:inmenu menubar:view"
  3773. msgid "Right Side View"
  3774. msgstr "Visão do Lado Direito"
  3775. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:188
  3776. msgctxt "@action:inmenu"
  3777. msgid "Configure Cura..."
  3778. msgstr "Configurar Cura..."
  3779. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:195
  3780. msgctxt "@action:inmenu menubar:printer"
  3781. msgid "&Add Printer..."
  3782. msgstr "&Adicionar Impressora..."
  3783. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:201
  3784. msgctxt "@action:inmenu menubar:printer"
  3785. msgid "Manage Pr&inters..."
  3786. msgstr "Adm&inistrar Impressoras..."
  3787. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:208
  3788. msgctxt "@action:inmenu"
  3789. msgid "Manage Materials..."
  3790. msgstr "Administrar Materiais..."
  3791. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:216
  3792. msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  3793. msgid "Add more materials from Marketplace"
  3794. msgstr "Adicionar mais materiais ao Marketplace"
  3795. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:223
  3796. msgctxt "@action:inmenu menubar:profile"
  3797. msgid "&Update profile with current settings/overrides"
  3798. msgstr "At&ualizar perfil com valores e sobreposições atuais"
  3799. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:231
  3800. msgctxt "@action:inmenu menubar:profile"
  3801. msgid "&Discard current changes"
  3802. msgstr "&Descartar ajustes atuais"
  3803. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:243
  3804. msgctxt "@action:inmenu menubar:profile"
  3805. msgid "&Create profile from current settings/overrides..."
  3806. msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..."
  3807. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:249
  3808. msgctxt "@action:inmenu menubar:profile"
  3809. msgid "Manage Profiles..."
  3810. msgstr "Administrar perfis..."
  3811. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:257
  3812. msgctxt "@action:inmenu menubar:help"
  3813. msgid "Show Online &Documentation"
  3814. msgstr "Exibir &Documentação Online"
  3815. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:265
  3816. msgctxt "@action:inmenu menubar:help"
  3817. msgid "Report a &Bug"
  3818. msgstr "Relatar um &Bug"
  3819. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:273
  3820. msgctxt "@action:inmenu menubar:help"
  3821. msgid "What's New"
  3822. msgstr "Novidades"
  3823. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:287
  3824. msgctxt "@action:inmenu menubar:help"
  3825. msgid "About..."
  3826. msgstr "Sobre..."
  3827. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:294
  3828. msgctxt "@action:inmenu menubar:edit"
  3829. msgid "Delete Selected"
  3830. msgstr "Remover Selecionados"
  3831. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:304
  3832. msgctxt "@action:inmenu menubar:edit"
  3833. msgid "Center Selected"
  3834. msgstr "Centralizar Selecionados"
  3835. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:313
  3836. msgctxt "@action:inmenu menubar:edit"
  3837. msgid "Multiply Selected"
  3838. msgstr "Multiplicar Selecionados"
  3839. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:322
  3840. msgctxt "@action:inmenu"
  3841. msgid "Delete Model"
  3842. msgstr "Remover Modelo"
  3843. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:330
  3844. msgctxt "@action:inmenu"
  3845. msgid "Ce&nter Model on Platform"
  3846. msgstr "Ce&ntralizar Modelo na Mesa"
  3847. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:336
  3848. msgctxt "@action:inmenu menubar:edit"
  3849. msgid "&Group Models"
  3850. msgstr "A&grupar Modelos"
  3851. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:356
  3852. msgctxt "@action:inmenu menubar:edit"
  3853. msgid "Ungroup Models"
  3854. msgstr "Desagrupar Modelos"
  3855. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:366
  3856. msgctxt "@action:inmenu menubar:edit"
  3857. msgid "&Merge Models"
  3858. msgstr "Co&mbinar Modelos"
  3859. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:376
  3860. msgctxt "@action:inmenu"
  3861. msgid "&Multiply Model..."
  3862. msgstr "&Multiplicar Modelo..."
  3863. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:383
  3864. msgctxt "@action:inmenu menubar:edit"
  3865. msgid "Select All Models"
  3866. msgstr "Selecionar Todos Os Modelos"
  3867. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:393
  3868. msgctxt "@action:inmenu menubar:edit"
  3869. msgid "Clear Build Plate"
  3870. msgstr "Esvaziar a Mesa de Impressão"
  3871. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:403
  3872. msgctxt "@action:inmenu menubar:file"
  3873. msgid "Reload All Models"
  3874. msgstr "Recarregar Todos Os Modelos"
  3875. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:412
  3876. msgctxt "@action:inmenu menubar:edit"
  3877. msgid "Arrange All Models"
  3878. msgstr "Posicionar Todos os Modelos"
  3879. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:420
  3880. msgctxt "@action:inmenu menubar:edit"
  3881. msgid "Arrange Selection"
  3882. msgstr "Posicionar Seleção"
  3883. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:427
  3884. msgctxt "@action:inmenu menubar:edit"
  3885. msgid "Reset All Model Positions"
  3886. msgstr "Reestabelecer as Posições de Todos Os Modelos"
  3887. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:434
  3888. msgctxt "@action:inmenu menubar:edit"
  3889. msgid "Reset All Model Transformations"
  3890. msgstr "Remover as Transformações de Todos Os Modelos"
  3891. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:443
  3892. msgctxt "@action:inmenu menubar:file"
  3893. msgid "&Open File(s)..."
  3894. msgstr "Abrir Arquiv&o(s)..."
  3895. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:453
  3896. msgctxt "@action:inmenu menubar:file"
  3897. msgid "&New Project..."
  3898. msgstr "&Novo Projeto..."
  3899. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:460
  3900. msgctxt "@action:inmenu menubar:help"
  3901. msgid "Show Configuration Folder"
  3902. msgstr "Exibir Pasta de Configuração"
  3903. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ExtruderButton.qml:16
  3904. msgctxt "@label %1 is filled in with the name of an extruder"
  3905. msgid "Print Selected Model with %1"
  3906. msgid_plural "Print Selected Models with %1"
  3907. msgstr[0] "Imprimir Modelo Selecionado com %1"
  3908. msgstr[1] "Imprimir Modelos Selecionados com %1"
  3909. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:115
  3910. msgctxt "@label:MonitorStatus"
  3911. msgid "Not connected to a printer"
  3912. msgstr "Não conectado a nenhuma impressora"
  3913. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:119
  3914. msgctxt "@label:MonitorStatus"
  3915. msgid "Printer does not accept commands"
  3916. msgstr "A impressora não aceita comandos"
  3917. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:129
  3918. msgctxt "@label:MonitorStatus"
  3919. msgid "In maintenance. Please check the printer"
  3920. msgstr "Em manutenção. Por favor verifique a impressora"
  3921. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:140
  3922. msgctxt "@label:MonitorStatus"
  3923. msgid "Lost connection with the printer"
  3924. msgstr "A conexão à impressora foi perdida"
  3925. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:142
  3926. msgctxt "@label:MonitorStatus"
  3927. msgid "Printing..."
  3928. msgstr "Imprimindo..."
  3929. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:145
  3930. msgctxt "@label:MonitorStatus"
  3931. msgid "Paused"
  3932. msgstr "Pausado"
  3933. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:148
  3934. msgctxt "@label:MonitorStatus"
  3935. msgid "Preparing..."
  3936. msgstr "Preparando..."
  3937. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:150
  3938. msgctxt "@label:MonitorStatus"
  3939. msgid "Please remove the print"
  3940. msgstr "Por favor remova a impressão"
  3941. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:318
  3942. msgctxt "@label"
  3943. msgid "Abort Print"
  3944. msgstr "Abortar Impressão"
  3945. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:327
  3946. msgctxt "@label"
  3947. msgid "Are you sure you want to abort the print?"
  3948. msgstr "Tem certeza que deseja abortar a impressão?"
  3949. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:36
  3950. msgctxt "@title:column"
  3951. msgid "Setting"
  3952. msgstr "Ajustes"
  3953. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:37
  3954. msgctxt "@title:column"
  3955. msgid "Profile"
  3956. msgstr "Perfil"
  3957. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:38
  3958. msgctxt "@title:column"
  3959. msgid "Current"
  3960. msgstr "Atual"
  3961. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:39
  3962. msgctxt "@title:column Unit of measurement"
  3963. msgid "Unit"
  3964. msgstr "Unidade"
  3965. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3966. msgctxt "@title:menu"
  3967. msgid "&Material"
  3968. msgstr "&Material"
  3969. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3970. msgctxt "@action:inmenu"
  3971. msgid "Set as Active Extruder"
  3972. msgstr "Definir Como Extrusor Ativo"
  3973. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3974. msgctxt "@action:inmenu"
  3975. msgid "Enable Extruder"
  3976. msgstr "Habilitar Extrusor"
  3977. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3978. msgctxt "@action:inmenu"
  3979. msgid "Disable Extruder"
  3980. msgstr "Desabilitar Extrusor"
  3981. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:13
  3982. msgctxt "@title:menu menubar:toplevel"
  3983. msgid "&File"
  3984. msgstr "Arquivo (&F)"
  3985. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:45
  3986. msgctxt "@title:menu menubar:file"
  3987. msgid "&Save Project..."
  3988. msgstr "&Salvar Projeto..."
  3989. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:78
  3990. msgctxt "@title:menu menubar:file"
  3991. msgid "&Export..."
  3992. msgstr "&Exportar..."
  3993. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:89
  3994. msgctxt "@action:inmenu menubar:file"
  3995. msgid "Export Selection..."
  3996. msgstr "Exportar Seleção..."
  3997. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3998. msgctxt "@label:category menu label"
  3999. msgid "Material"
  4000. msgstr "Material"
  4001. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:53
  4002. msgctxt "@label:category menu label"
  4003. msgid "Favorites"
  4004. msgstr "Favoritos"
  4005. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:78
  4006. msgctxt "@label:category menu label"
  4007. msgid "Generic"
  4008. msgstr "Genérico"
  4009. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:13
  4010. msgctxt "@title:menu menubar:settings"
  4011. msgid "&Printer"
  4012. msgstr "Im&pressora"
  4013. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:17
  4014. msgctxt "@label:category menu label"
  4015. msgid "Network enabled printers"
  4016. msgstr "Impressoras habilitadas pela rede"
  4017. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:50
  4018. msgctxt "@label:category menu label"
  4019. msgid "Local printers"
  4020. msgstr "Impressoras locais"
  4021. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  4022. msgctxt "@title:menu menubar:toplevel"
  4023. msgid "E&xtensions"
  4024. msgstr "E&xtensões"
  4025. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  4026. msgctxt "@title:menu menubar:file"
  4027. msgid "Open File(s)..."
  4028. msgstr "Abrir Arquivo(s)..."
  4029. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  4030. msgctxt "@title:menu menubar:toplevel"
  4031. msgid "P&references"
  4032. msgstr "P&referências"
  4033. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4034. msgctxt "@header"
  4035. msgid "Configurations"
  4036. msgstr "Configurações"
  4037. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4038. msgctxt "@header"
  4039. msgid "Custom"
  4040. msgstr "Personalizado"
  4041. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4042. msgctxt "@label"
  4043. msgid "Enabled"
  4044. msgstr "Habilitado"
  4045. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4046. msgctxt "@label"
  4047. msgid "Material"
  4048. msgstr "Material"
  4049. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4050. msgctxt "@label"
  4051. msgid "Use glue for better adhesion with this material combination."
  4052. msgstr "Use cola para melhor aderência com essa combinação de materiais."
  4053. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4054. msgctxt "@label"
  4055. msgid "Loading available configurations from the printer..."
  4056. msgstr "Carregando configurações disponíveis da impressora..."
  4057. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4058. msgctxt "@label"
  4059. msgid "The configurations are not available because the printer is disconnected."
  4060. msgstr "As configurações não estão disponíveis porque a impressora está desconectada."
  4061. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4062. msgctxt "@label"
  4063. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4064. msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto."
  4065. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4066. msgctxt "@label"
  4067. msgid "Marketplace"
  4068. msgstr "Mercado"
  4069. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4070. msgctxt "@tooltip"
  4071. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4072. msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento."
  4073. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4074. msgctxt "@tooltip"
  4075. msgid "There are no profiles matching the configuration of this extruder."
  4076. msgstr "Não há perfis correspondendo à configuração deste extrusor."
  4077. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4078. msgctxt "@label"
  4079. msgid "Select configuration"
  4080. msgstr "Selecione configuração"
  4081. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4082. msgctxt "@label"
  4083. msgid "Configurations"
  4084. msgstr "Configurações"
  4085. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/HelpMenu.qml:14
  4086. msgctxt "@title:menu menubar:toplevel"
  4087. msgid "&Help"
  4088. msgstr "Ajuda (&H)"
  4089. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  4090. msgctxt "@title:menu menubar:file"
  4091. msgid "Save Project..."
  4092. msgstr "Salvar Projeto..."
  4093. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  4094. msgctxt "@title:menu menubar:file"
  4095. msgid "Open &Recent"
  4096. msgstr "Abrir &Recente"
  4097. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:13
  4098. msgctxt "@title:menu menubar:toplevel"
  4099. msgid "&View"
  4100. msgstr "&Ver"
  4101. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:17
  4102. msgctxt "@action:inmenu menubar:view"
  4103. msgid "&Camera position"
  4104. msgstr "Posição da &câmera"
  4105. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:30
  4106. msgctxt "@action:inmenu menubar:view"
  4107. msgid "Camera view"
  4108. msgstr "Visão de câmera"
  4109. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:48
  4110. msgctxt "@action:inmenu menubar:view"
  4111. msgid "Perspective"
  4112. msgstr "Perspectiva"
  4113. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:59
  4114. msgctxt "@action:inmenu menubar:view"
  4115. msgid "Orthographic"
  4116. msgstr "Ortográfico"
  4117. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:29
  4118. msgctxt "@label"
  4119. msgid "Print Selected Model With:"
  4120. msgid_plural "Print Selected Models With:"
  4121. msgstr[0] "Imprimir Modelo Selecionado Com:"
  4122. msgstr[1] "Imprimir Modelos Selecionados Com:"
  4123. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:92
  4124. msgctxt "@title:window"
  4125. msgid "Multiply Selected Model"
  4126. msgid_plural "Multiply Selected Models"
  4127. msgstr[0] "Multiplicar Modelo Selecionado"
  4128. msgstr[1] "Multiplicar Modelos Selecionados"
  4129. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:123
  4130. msgctxt "@label"
  4131. msgid "Number of Copies"
  4132. msgstr "Número de Cópias"
  4133. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/EditMenu.qml:12
  4134. msgctxt "@title:menu menubar:toplevel"
  4135. msgid "&Edit"
  4136. msgstr "&Editar"
  4137. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4138. msgctxt "@action:inmenu"
  4139. msgid "Visible Settings"
  4140. msgstr "Ajustes Visíveis"
  4141. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4142. msgctxt "@action:inmenu"
  4143. msgid "Collapse All Categories"
  4144. msgstr "Encolher Todas As Categorias"
  4145. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4146. msgctxt "@action:inmenu"
  4147. msgid "Manage Setting Visibility..."
  4148. msgstr "Gerenciar Visibilidade dos Ajustes..."
  4149. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  4150. msgctxt "@title:window"
  4151. msgid "Select Printer"
  4152. msgstr "Selecione Impressora"
  4153. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  4154. msgctxt "@title:label"
  4155. msgid "Compatible Printers"
  4156. msgstr "Impressoras Compatíveis"
  4157. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:94
  4158. msgctxt "@description"
  4159. msgid "No compatible printers, that are currently online, where found."
  4160. msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento."
  4161. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:635
  4162. msgctxt "@title:window"
  4163. msgid "Open file(s)"
  4164. msgstr "Abrir arquivo(s)"
  4165. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4166. msgctxt "@text:window"
  4167. 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?"
  4168. msgstr "Encontramos um ou mais arquivo(s) de projeto entre os arquivos que você selecionou. Você só pode abrir um arquivo de projeto por vez. Sugerimos que somente importe modelos destes arquivos. Gostaria de prosseguir?"
  4169. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4170. msgctxt "@action:button"
  4171. msgid "Import all as models"
  4172. msgstr "Importar todos como modelos"
  4173. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  4174. msgctxt "@title:window"
  4175. msgid "Open project file"
  4176. msgstr "Abrir arquivo de projeto"
  4177. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  4178. msgctxt "@text:window"
  4179. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  4180. msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?"
  4181. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  4182. msgctxt "@text:window"
  4183. msgid "Remember my choice"
  4184. msgstr "Lembrar minha escolha"
  4185. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  4186. msgctxt "@action:button"
  4187. msgid "Open as project"
  4188. msgstr "Abrir como projeto"
  4189. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  4190. msgctxt "@action:button"
  4191. msgid "Import models"
  4192. msgstr "Importar modelos"
  4193. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  4194. msgctxt "@title:window"
  4195. msgid "Discard or Keep changes"
  4196. msgstr "Descartar ou Manter alterações"
  4197. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:59
  4198. msgctxt "@text:window, %1 is a profile name"
  4199. 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'."
  4200. msgstr "Você personalizou alguns ajustes de perfil. Gostaria de manter estes ajustes alterados após trocar perfis? Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  4201. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:85
  4202. msgctxt "@title:column"
  4203. msgid "Profile settings"
  4204. msgstr "Ajustes de perfil"
  4205. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:87
  4206. msgctxt "@title:column"
  4207. msgid "Current changes"
  4208. msgstr "Alterações atuais"
  4209. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  4210. msgctxt "@option:discardOrKeep"
  4211. msgid "Discard and never ask again"
  4212. msgstr "Descartar e não perguntar novamente"
  4213. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  4214. msgctxt "@option:discardOrKeep"
  4215. msgid "Keep and never ask again"
  4216. msgstr "Manter e não perguntar novamente"
  4217. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:147
  4218. msgctxt "@action:button"
  4219. msgid "Discard changes"
  4220. msgstr "Descartar alterações"
  4221. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:153
  4222. msgctxt "@action:button"
  4223. msgid "Keep changes"
  4224. msgstr "Manter alterações"
  4225. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4226. msgctxt "@title:window"
  4227. msgid "Save Project"
  4228. msgstr "Salvar Projeto"
  4229. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4230. msgctxt "@action:label"
  4231. msgid "Extruder %1"
  4232. msgstr "Extrusor %1"
  4233. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4234. msgctxt "@action:label"
  4235. msgid "%1 & material"
  4236. msgstr "%1 & material"
  4237. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4238. msgctxt "@action:label"
  4239. msgid "Material"
  4240. msgstr "Material"
  4241. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4242. msgctxt "@action:label"
  4243. msgid "Don't show project summary on save again"
  4244. msgstr "Não exibir resumo do projeto ao salvar novamente"
  4245. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4246. msgctxt "@action:button"
  4247. msgid "Save"
  4248. msgstr "Salvar"
  4249. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  4250. msgctxt "@title:window The argument is the application name."
  4251. msgid "About %1"
  4252. msgstr "Sobre %1"
  4253. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:59
  4254. msgctxt "@label"
  4255. msgid "version: %1"
  4256. msgstr "versão: %1"
  4257. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:74
  4258. msgctxt "@label"
  4259. msgid "End-to-end solution for fused filament 3D printing."
  4260. msgstr "Solução completa para impressão 3D com filamento fundido."
  4261. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:87
  4262. msgctxt "@info:credit"
  4263. msgid ""
  4264. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  4265. "Cura proudly uses the following open source projects:"
  4266. msgstr ""
  4267. "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n"
  4268. "Cura orgulhosamente usa os seguintes projetos open-source:"
  4269. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  4270. msgctxt "@label Description for application component"
  4271. msgid "Graphical user interface"
  4272. msgstr "Interface Gráfica de usuário"
  4273. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  4274. msgctxt "@label Description for application component"
  4275. msgid "Application framework"
  4276. msgstr "Framework de Aplicações"
  4277. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  4278. msgctxt "@label Description for application component"
  4279. msgid "G-code generator"
  4280. msgstr "Gerador de G-Code"
  4281. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  4282. msgctxt "@label Description for application component"
  4283. msgid "Interprocess communication library"
  4284. msgstr "Biblioteca de comunicação interprocessos"
  4285. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  4286. msgctxt "@label Description for application component"
  4287. msgid "Python bindings for libnest2d"
  4288. msgstr "Ligações de Python para a libnest2d"
  4289. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  4290. msgctxt "@label Description for application component"
  4291. msgid "Polygon packing library, developed by Prusa Research"
  4292. msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research"
  4293. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  4294. msgctxt "@label Description for application component"
  4295. msgid "Support library for handling 3MF files"
  4296. msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF"
  4297. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  4298. msgctxt "@label Description for application component"
  4299. msgid "Support library for file metadata and streaming"
  4300. msgstr "Biblioteca de suporte para streaming e metadados de arquivo"
  4301. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  4302. msgctxt "@label Description for application dependency"
  4303. msgid "Programming language"
  4304. msgstr "Linguagem de Programação"
  4305. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  4306. msgctxt "@label Description for application dependency"
  4307. msgid "GUI framework"
  4308. msgstr "Framework Gráfica"
  4309. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  4310. msgctxt "@label Description for application dependency"
  4311. msgid "GUI framework bindings"
  4312. msgstr "Ligações da Framework Gráfica"
  4313. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  4314. msgctxt "@label Description for application dependency"
  4315. msgid "C/C++ Binding library"
  4316. msgstr "Biblioteca de Ligações C/C++"
  4317. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  4318. msgctxt "@label Description for application dependency"
  4319. msgid "Data interchange format"
  4320. msgstr "Formato de Intercâmbio de Dados"
  4321. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  4322. msgctxt "@label"
  4323. msgid "Font"
  4324. msgstr "Fonte"
  4325. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  4326. msgctxt "@label Description for application dependency"
  4327. msgid "Polygon clipping library"
  4328. msgstr "Biblioteca de recorte de polígonos"
  4329. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  4330. msgctxt "@label Description for application dependency"
  4331. msgid "JSON parser"
  4332. msgstr "Parser JSON"
  4333. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  4334. msgctxt "@label Description for application dependency"
  4335. msgid "Utility functions, including an image loader"
  4336. msgstr "Funções de utilidade, incluindo um carregador de imagem"
  4337. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  4338. msgctxt "@label Description for application dependency"
  4339. msgid "Utility library, including Voronoi generation"
  4340. msgstr "Biblioteca de utilidade, incluindo geração Voronoi"
  4341. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:162 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  4342. msgctxt "@label Description for application dependency"
  4343. msgid "Root Certificates for validating SSL trustworthiness"
  4344. msgstr "Certificados-Raiz para validar confiança SSL"
  4345. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  4346. msgctxt "@label Description for application dependency"
  4347. msgid "Compatibility between Python 2 and 3"
  4348. msgstr "Compatibilidade entre Python 2 e 3"
  4349. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  4350. msgctxt "@label Description for application dependency"
  4351. msgid "Support library for system keyring access"
  4352. msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema"
  4353. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:166
  4354. msgctxt "@label Description for application dependency"
  4355. msgid "Support library for faster math"
  4356. msgstr "Biblioteca de suporte para matemática acelerada"
  4357. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:167
  4358. msgctxt "@label Description for application dependency"
  4359. msgid "Support library for handling STL files"
  4360. msgstr "Biblioteca de suporte para manuseamento de arquivos STL"
  4361. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:168
  4362. msgctxt "@label Description for application dependency"
  4363. msgid "Python bindings for Clipper"
  4364. msgstr "Ligações de Python pra Clipper"
  4365. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  4366. msgctxt "@label Description for application dependency"
  4367. msgid "Serial communication library"
  4368. msgstr "Biblioteca de comunicação serial"
  4369. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:170
  4370. msgctxt "@label Description for application dependency"
  4371. msgid "Support library for scientific computing"
  4372. msgstr "Biblioteca de suporte para computação científica"
  4373. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:171
  4374. msgctxt "@Label Description for application dependency"
  4375. msgid "Python Error tracking library"
  4376. msgstr "Biblioteca de rastreamento de Erros Python"
  4377. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  4378. msgctxt "@label Description for application dependency"
  4379. msgid "Support library for handling triangular meshes"
  4380. msgstr "Biblioteca de suporte para manuseamento de malhas triangulares"
  4381. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  4382. msgctxt "@label Description for application dependency"
  4383. msgid "ZeroConf discovery library"
  4384. msgstr "Biblioteca de descoberta 'ZeroConf'"
  4385. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:176
  4386. msgctxt "@label Description for development tool"
  4387. msgid "Universal build system configuration"
  4388. msgstr "Configuração de sistema universal de construção"
  4389. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:177
  4390. msgctxt "@label Description for development tool"
  4391. msgid "Dependency and package manager"
  4392. msgstr "Gestor de pacote e dependência"
  4393. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:178
  4394. msgctxt "@label Description for development tool"
  4395. msgid "Packaging Python-applications"
  4396. msgstr "Empacotamento de aplicações Python"
  4397. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:179
  4398. msgctxt "@label Description for development tool"
  4399. msgid "Linux cross-distribution application deployment"
  4400. msgstr "Implementação de aplicação multidistribuição em Linux"
  4401. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:180
  4402. msgctxt "@label Description for development tool"
  4403. msgid "Generating Windows installers"
  4404. msgstr "Gerando instaladores Windows"
  4405. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:107
  4406. msgctxt "@label"
  4407. msgid "Hex"
  4408. msgstr "Hexa"
  4409. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4410. msgctxt "@label:button"
  4411. msgid "My printers"
  4412. msgstr "Minhas impressoras"
  4413. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4414. msgctxt "@tooltip:button"
  4415. msgid "Monitor printers in Ultimaker Digital Factory."
  4416. msgstr "Monitora as impressoras na Ultimaker Digital Factory."
  4417. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4418. msgctxt "@tooltip:button"
  4419. msgid "Create print projects in Digital Library."
  4420. msgstr "Cria projetos de impressão na Digital Library."
  4421. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4422. msgctxt "@label:button"
  4423. msgid "Print jobs"
  4424. msgstr "Trabalhos de impressão"
  4425. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4426. msgctxt "@tooltip:button"
  4427. msgid "Monitor print jobs and reprint from your print history."
  4428. msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico."
  4429. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4430. msgctxt "@tooltip:button"
  4431. msgid "Extend Ultimaker Cura with plugins and material profiles."
  4432. msgstr "Estende o Ultimaker Cura com complementos e perfis de material."
  4433. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4434. msgctxt "@tooltip:button"
  4435. msgid "Become a 3D printing expert with Ultimaker e-learning."
  4436. msgstr "Torne-se um especialista em impressão 3D com Ultimaker e-learning."
  4437. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4438. msgctxt "@label:button"
  4439. msgid "Ultimaker support"
  4440. msgstr "Suporte Ultimaker"
  4441. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4442. msgctxt "@tooltip:button"
  4443. msgid "Learn how to get started with Ultimaker Cura."
  4444. msgstr "Saiba como começar com o Ultimaker Cura."
  4445. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4446. msgctxt "@label:button"
  4447. msgid "Ask a question"
  4448. msgstr "Fazer uma pergunta"
  4449. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4450. msgctxt "@tooltip:button"
  4451. msgid "Consult the Ultimaker Community."
  4452. msgstr "Consultar a Comunidade Ultimaker."
  4453. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4454. msgctxt "@label:button"
  4455. msgid "Report a bug"
  4456. msgstr "Relatar um problema"
  4457. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4458. msgctxt "@tooltip:button"
  4459. msgid "Let developers know that something is going wrong."
  4460. msgstr "Deixe os desenvolvedores saberem que algo está errado."
  4461. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4462. msgctxt "@tooltip:button"
  4463. msgid "Visit the Ultimaker website."
  4464. msgstr "Visita o website da Ultimaker."
  4465. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  4466. msgctxt "@label"
  4467. msgid "Support"
  4468. msgstr "Suporte"
  4469. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:44 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:78
  4470. msgctxt "@label"
  4471. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4472. msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão."
  4473. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54
  4474. msgctxt "@info, %1 is the name of the custom profile"
  4475. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  4476. msgstr "<b>%1</b> perfil personalizado está ativo e alguns ajustes foram sobrescritos."
  4477. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68
  4478. msgctxt "@info, %1 is the name of the custom profile"
  4479. msgid "<b>%1</b> custom profile is overriding some settings."
  4480. msgstr "<b>%1</b> perfil personalizado está sobrepondo alguns ajustes."
  4481. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79
  4482. msgctxt "@info"
  4483. msgid "Some settings were changed."
  4484. msgstr "Alguns ajustes foram alterados."
  4485. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:78 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:254
  4486. msgctxt "@label"
  4487. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4488. msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo."
  4489. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:216
  4490. msgctxt "@label"
  4491. msgid "Gradual infill"
  4492. msgstr "Preenchimento gradual"
  4493. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  4494. msgctxt "@error"
  4495. msgid "Configuration not supported"
  4496. msgstr "Configuração não suportada"
  4497. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  4498. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  4499. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  4500. msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração."
  4501. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  4502. msgctxt "@button:label"
  4503. msgid "Learn more"
  4504. msgstr "Saber mais"
  4505. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  4506. msgctxt "@label"
  4507. msgid "Adhesion"
  4508. msgstr "Aderência"
  4509. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:76
  4510. msgctxt "@label"
  4511. 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."
  4512. msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado."
  4513. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  4514. msgctxt "@label"
  4515. msgid "Resolution"
  4516. msgstr "Resolução"
  4517. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  4518. msgctxt "@label shown when we load a Gcode file"
  4519. msgid "Print setup disabled. G-code file can not be modified."
  4520. msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado."
  4521. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4522. msgctxt "@label:Should be short"
  4523. msgid "On"
  4524. msgstr "On"
  4525. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4526. msgctxt "@label:Should be short"
  4527. msgid "Off"
  4528. msgstr "Off"
  4529. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4530. msgctxt "@label"
  4531. msgid "Experimental"
  4532. msgstr "Experimental"
  4533. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142
  4534. msgctxt "@button"
  4535. msgid "Recommended"
  4536. msgstr "Recomendado"
  4537. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156
  4538. msgctxt "@button"
  4539. msgid "Custom"
  4540. msgstr "Personalizado"
  4541. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4542. msgctxt "@label"
  4543. msgid "Profile"
  4544. msgstr "Perfil"
  4545. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145
  4546. msgctxt "@tooltip"
  4547. msgid ""
  4548. "Some setting/override values are different from the values stored in the profile.\n"
  4549. "\n"
  4550. "Click to open the profile manager."
  4551. msgstr ""
  4552. "Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n"
  4553. "\n"
  4554. "Clique para abrir o gerenciador de perfis."
  4555. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  4556. msgctxt "@label:header"
  4557. msgid "Custom profiles"
  4558. msgstr "Perfis personalizados"
  4559. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4560. msgctxt "@info:status"
  4561. msgid "The printer is not connected."
  4562. msgstr "A impressora não está conectada."
  4563. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  4564. msgctxt "@label"
  4565. msgid "Build plate"
  4566. msgstr "Mesa de Impressão"
  4567. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  4568. msgctxt "@tooltip"
  4569. 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."
  4570. msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado."
  4571. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4572. msgctxt "@tooltip"
  4573. msgid "The current temperature of the heated bed."
  4574. msgstr "A temperatura atual da mesa aquecida."
  4575. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  4576. msgctxt "@tooltip of temperature input"
  4577. msgid "The temperature to pre-heat the bed to."
  4578. msgstr "A temperatura em que pré-aquecer a mesa."
  4579. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  4580. msgctxt "@button Cancel pre-heating"
  4581. msgid "Cancel"
  4582. msgstr "Cancelar"
  4583. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  4584. msgctxt "@button"
  4585. msgid "Pre-heat"
  4586. msgstr "Pré-aquecer"
  4587. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  4588. msgctxt "@tooltip of pre-heat"
  4589. 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."
  4590. msgstr "Aquecer a mesa antes de imprimir. Você pode continuar ajustando sua impressão enquanto ela está aquecendo, e não terá que esperar o aquecimento quando estiver pronto pra imprimir."
  4591. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  4592. msgctxt "@label"
  4593. msgid "Extruder"
  4594. msgstr "Extrusor"
  4595. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  4596. msgctxt "@tooltip"
  4597. 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."
  4598. msgstr "A temperatura-alvo do hotend. O hotend vai aquecer ou esfriar na direção desta temperatura. Se for zero, o aquecimento de hotend é desligado."
  4599. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  4600. msgctxt "@tooltip"
  4601. msgid "The current temperature of this hotend."
  4602. msgstr "A temperatura atual deste hotend."
  4603. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  4604. msgctxt "@tooltip of temperature input"
  4605. msgid "The temperature to pre-heat the hotend to."
  4606. msgstr "A temperatura com a qual pré-aquecer o hotend."
  4607. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  4608. msgctxt "@tooltip of pre-heat"
  4609. 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."
  4610. msgstr "Aquece o hotend com antecedência antes de imprimir. Você pode continuar ajustando sua impressão enquanto está aquecendo e não terá que esperar que o hotend termine o aquecimento quando estiver pronto para imprimir."
  4611. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  4612. msgctxt "@tooltip"
  4613. msgid "The colour of the material in this extruder."
  4614. msgstr "A cor do material neste extrusor."
  4615. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  4616. msgctxt "@tooltip"
  4617. msgid "The material in this extruder."
  4618. msgstr "O material neste extrusor."
  4619. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  4620. msgctxt "@tooltip"
  4621. msgid "The nozzle inserted in this extruder."
  4622. msgstr "O bico inserido neste extrusor."
  4623. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  4624. msgctxt "@label"
  4625. msgid "Printer control"
  4626. msgstr "Controle da Impressora"
  4627. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  4628. msgctxt "@label"
  4629. msgid "Jog Position"
  4630. msgstr "Posição de Trote"
  4631. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  4632. msgctxt "@label"
  4633. msgid "X/Y"
  4634. msgstr "X/Y"
  4635. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  4636. msgctxt "@label"
  4637. msgid "Z"
  4638. msgstr "Z"
  4639. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  4640. msgctxt "@label"
  4641. msgid "Jog Distance"
  4642. msgstr "Distância de Trote"
  4643. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4644. msgctxt "@label"
  4645. msgid "Send G-code"
  4646. msgstr "Enviar G-Code"
  4647. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  4648. msgctxt "@tooltip of G-code command input"
  4649. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4650. msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando."
  4651. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:250
  4652. msgctxt "@label"
  4653. msgid "This package will be installed after restarting."
  4654. msgstr "Este pacote será instalado após o reinício."
  4655. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:464
  4656. msgctxt "@title:tab"
  4657. msgid "Settings"
  4658. msgstr "Ajustes"
  4659. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:587
  4660. msgctxt "@title:window %1 is the application name"
  4661. msgid "Closing %1"
  4662. msgstr "Fechando %1"
  4663. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:588 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:597
  4664. msgctxt "@label %1 is the application name"
  4665. msgid "Are you sure you want to exit %1?"
  4666. msgstr "Tem certeza que quer sair de %1?"
  4667. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:740
  4668. msgctxt "@window:title"
  4669. msgid "Install Package"
  4670. msgstr "Instalar Pacote"
  4671. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:747
  4672. msgctxt "@title:window"
  4673. msgid "Open File(s)"
  4674. msgstr "Abrir Arquivo(s)"
  4675. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:749
  4676. msgctxt "@text:window"
  4677. 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."
  4678. msgstr "Encontramos um ou mais arquivos de G-Code entre os arquivos que você selecionou. Você só pode abrir um arquivo de G-Code por vez. Se você quiser abrir um arquivo de G-Code, por favor selecione somente um."
  4679. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:829
  4680. msgctxt "@title:window"
  4681. msgid "Add Printer"
  4682. msgstr "Adicionar Impressora"
  4683. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:837
  4684. msgctxt "@title:window"
  4685. msgid "What's New"
  4686. msgstr "Novidades"
  4687. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:39
  4688. msgctxt "@text"
  4689. msgid ""
  4690. "- Add material profiles and plug-ins from the Marketplace\n"
  4691. "- Back-up and sync your material profiles and plug-ins\n"
  4692. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4693. msgstr ""
  4694. "- Adicione perfis de material e plug-ins do Marketplace\n"
  4695. "- Faça backup e sincronize seus perfis de materiais e plugins\n"
  4696. "- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker"
  4697. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:58
  4698. msgctxt "@button"
  4699. msgid "Create a free Ultimaker account"
  4700. msgstr "Criar uma conta Ultimaker gratuita"
  4701. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/AccountWidget.qml:24
  4702. msgctxt "@action:button"
  4703. msgid "Sign in"
  4704. msgstr "Entrar"
  4705. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:78
  4706. msgctxt "@label The argument is a timestamp"
  4707. msgid "Last update: %1"
  4708. msgstr "Última atualização: %1"
  4709. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:107
  4710. msgctxt "@button"
  4711. msgid "Ultimaker Account"
  4712. msgstr "Conta na Ultimaker"
  4713. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:126
  4714. msgctxt "@button"
  4715. msgid "Sign Out"
  4716. msgstr "Deslogar"
  4717. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:35
  4718. msgctxt "@label"
  4719. msgid "Checking..."
  4720. msgstr "Verificando..."
  4721. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:42
  4722. msgctxt "@label"
  4723. msgid "Account synced"
  4724. msgstr "Conta sincronizada"
  4725. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:49
  4726. msgctxt "@label"
  4727. msgid "Something went wrong..."
  4728. msgstr "Alguma coisa deu errado..."
  4729. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:102
  4730. msgctxt "@button"
  4731. msgid "Install pending updates"
  4732. msgstr "Instalação aguardando atualizações"
  4733. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:123
  4734. msgctxt "@button"
  4735. msgid "Check for account updates"
  4736. msgstr "Verificar atualizações da conta"
  4737. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4738. msgctxt "@status"
  4739. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4740. msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet."
  4741. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4742. msgctxt "@status"
  4743. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4744. msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão."
  4745. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4746. msgctxt "@status"
  4747. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4748. msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem."
  4749. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4750. msgctxt "@status"
  4751. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4752. msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet."
  4753. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:237
  4754. msgctxt "@button"
  4755. msgid "Add printer"
  4756. msgstr "Adicionar impressora"
  4757. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:254
  4758. msgctxt "@button"
  4759. msgid "Manage printers"
  4760. msgstr "Gerenciar impressoras"
  4761. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:34
  4762. msgctxt "@label"
  4763. msgid "Hide all connected printers"
  4764. msgstr "Omitir todas as impressoras conectadas"
  4765. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:47
  4766. msgctxt "@label"
  4767. msgid "Show all connected printers"
  4768. msgstr "Mostrar todas as impressoras conectadas"
  4769. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4770. msgctxt "@label"
  4771. msgid "Other printers"
  4772. msgstr "Outras impressoras"
  4773. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  4774. msgctxt "@label:PrintjobStatus"
  4775. msgid "Slicing..."
  4776. msgstr "Fatiando..."
  4777. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78
  4778. msgctxt "@label:PrintjobStatus"
  4779. msgid "Unable to slice"
  4780. msgstr "Não foi possível fatiar"
  4781. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4782. msgctxt "@button"
  4783. msgid "Processing"
  4784. msgstr "Processando"
  4785. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4786. msgctxt "@button"
  4787. msgid "Slice"
  4788. msgstr "Fatiar"
  4789. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115
  4790. msgctxt "@label"
  4791. msgid "Start the slicing process"
  4792. msgstr "Inicia o processo de fatiamento"
  4793. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132
  4794. msgctxt "@button"
  4795. msgid "Cancel"
  4796. msgstr "Cancelar"
  4797. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4798. msgctxt "@label"
  4799. msgid "Time estimation"
  4800. msgstr "Estimativa de tempo"
  4801. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107
  4802. msgctxt "@label"
  4803. msgid "Material estimation"
  4804. msgstr "Estimativa de material"
  4805. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156
  4806. msgctxt "@label m for meter"
  4807. msgid "%1m"
  4808. msgstr "%1m"
  4809. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157
  4810. msgctxt "@label g for grams"
  4811. msgid "%1g"
  4812. msgstr "%1g"
  4813. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4814. msgctxt "@label"
  4815. msgid "No time estimation available"
  4816. msgstr "Sem estimativa de tempo disponível"
  4817. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4818. msgctxt "@label"
  4819. msgid "No cost estimation available"
  4820. msgstr "Sem estimativa de custo disponível"
  4821. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4822. msgctxt "@button"
  4823. msgid "Preview"
  4824. msgstr "Pré-visualização"
  4825. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/JobSpecs.qml:93
  4826. msgctxt "@text Print job name"
  4827. msgid "Untitled"
  4828. msgstr "Sem Título"
  4829. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Widgets/ComboBox.qml:18
  4830. msgctxt "@label"
  4831. msgid "No items to select from"
  4832. msgstr "Sem itens para selecionar"
  4833. #: /MachineSettingsAction/plugin.json
  4834. msgctxt "description"
  4835. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4836. msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)."
  4837. #: /MachineSettingsAction/plugin.json
  4838. msgctxt "name"
  4839. msgid "Machine Settings Action"
  4840. msgstr "Ação de Ajustes de Máquina"
  4841. #: /ImageReader/plugin.json
  4842. msgctxt "description"
  4843. msgid "Enables ability to generate printable geometry from 2D image files."
  4844. msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D."
  4845. #: /ImageReader/plugin.json
  4846. msgctxt "name"
  4847. msgid "Image Reader"
  4848. msgstr "Leitor de Imagens"
  4849. #: /XRayView/plugin.json
  4850. msgctxt "description"
  4851. msgid "Provides the X-Ray view."
  4852. msgstr "Provê a visão de Raios-X."
  4853. #: /XRayView/plugin.json
  4854. msgctxt "name"
  4855. msgid "X-Ray View"
  4856. msgstr "Visão de Raios-X"
  4857. #: /X3DReader/plugin.json
  4858. msgctxt "description"
  4859. msgid "Provides support for reading X3D files."
  4860. msgstr "Provê suporte à leitura de arquivos X3D."
  4861. #: /X3DReader/plugin.json
  4862. msgctxt "name"
  4863. msgid "X3D Reader"
  4864. msgstr "Leitor de X3D"
  4865. #: /CuraProfileReader/plugin.json
  4866. msgctxt "description"
  4867. msgid "Provides support for importing Cura profiles."
  4868. msgstr "Provê suporte à importação de perfis do Cura."
  4869. #: /CuraProfileReader/plugin.json
  4870. msgctxt "name"
  4871. msgid "Cura Profile Reader"
  4872. msgstr "Leitor de Perfis do Cura"
  4873. #: /PostProcessingPlugin/plugin.json
  4874. msgctxt "description"
  4875. msgid "Extension that allows for user created scripts for post processing"
  4876. msgstr "Extensão que permite scripts criados por usuários para pós-processamento"
  4877. #: /PostProcessingPlugin/plugin.json
  4878. msgctxt "name"
  4879. msgid "Post Processing"
  4880. msgstr "Pós-processamento"
  4881. #: /UM3NetworkPrinting/plugin.json
  4882. msgctxt "description"
  4883. msgid "Manages network connections to Ultimaker networked printers."
  4884. msgstr "Administra conexões de rede a impressora Ultimaker conectadas."
  4885. #: /UM3NetworkPrinting/plugin.json
  4886. msgctxt "name"
  4887. msgid "Ultimaker Network Connection"
  4888. msgstr "Conexão de Rede Ultimaker"
  4889. #: /3MFWriter/plugin.json
  4890. msgctxt "description"
  4891. msgid "Provides support for writing 3MF files."
  4892. msgstr "Provê suporte à escrita de arquivos 3MF."
  4893. #: /3MFWriter/plugin.json
  4894. msgctxt "name"
  4895. msgid "3MF Writer"
  4896. msgstr "Gerador de 3MF"
  4897. #: /CuraDrive/plugin.json
  4898. msgctxt "description"
  4899. msgid "Backup and restore your configuration."
  4900. msgstr "Permite backup e restauração da configuração."
  4901. #: /CuraDrive/plugin.json
  4902. msgctxt "name"
  4903. msgid "Cura Backups"
  4904. msgstr "Backups Cura"
  4905. #: /SliceInfoPlugin/plugin.json
  4906. msgctxt "description"
  4907. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4908. msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  4909. #: /SliceInfoPlugin/plugin.json
  4910. msgctxt "name"
  4911. msgid "Slice info"
  4912. msgstr "Informação de fatiamento"
  4913. #: /UFPWriter/plugin.json
  4914. msgctxt "description"
  4915. msgid "Provides support for writing Ultimaker Format Packages."
  4916. msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)."
  4917. #: /UFPWriter/plugin.json
  4918. msgctxt "name"
  4919. msgid "UFP Writer"
  4920. msgstr "Gerador de UFP"
  4921. #: /DigitalLibrary/plugin.json
  4922. msgctxt "description"
  4923. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4924. msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela."
  4925. #: /DigitalLibrary/plugin.json
  4926. msgctxt "name"
  4927. msgid "Ultimaker Digital Library"
  4928. msgstr "Digital Library da Ultimaker"
  4929. #: /GCodeProfileReader/plugin.json
  4930. msgctxt "description"
  4931. msgid "Provides support for importing profiles from g-code files."
  4932. msgstr "Provê suporte a importar perfis de arquivos G-Code."
  4933. #: /GCodeProfileReader/plugin.json
  4934. msgctxt "name"
  4935. msgid "G-code Profile Reader"
  4936. msgstr "Leitor de Perfil de G-Code"
  4937. #: /GCodeReader/plugin.json
  4938. msgctxt "description"
  4939. msgid "Allows loading and displaying G-code files."
  4940. msgstr "Permite carregar e exibir arquivos G-Code."
  4941. #: /GCodeReader/plugin.json
  4942. msgctxt "name"
  4943. msgid "G-code Reader"
  4944. msgstr "Leitor de G-Code"
  4945. #: /TrimeshReader/plugin.json
  4946. msgctxt "description"
  4947. msgid "Provides support for reading model files."
  4948. msgstr "Provê suporta a ler arquivos de modelo."
  4949. #: /TrimeshReader/plugin.json
  4950. msgctxt "name"
  4951. msgid "Trimesh Reader"
  4952. msgstr "Leitor Trimesh"
  4953. #: /UltimakerMachineActions/plugin.json
  4954. msgctxt "description"
  4955. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4956. msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)."
  4957. #: /UltimakerMachineActions/plugin.json
  4958. msgctxt "name"
  4959. msgid "Ultimaker machine actions"
  4960. msgstr "Ações de máquina Ultimaker"
  4961. #: /GCodeGzReader/plugin.json
  4962. msgctxt "description"
  4963. msgid "Reads g-code from a compressed archive."
  4964. msgstr "Lê G-Code de um arquivo comprimido."
  4965. #: /GCodeGzReader/plugin.json
  4966. msgctxt "name"
  4967. msgid "Compressed G-code Reader"
  4968. msgstr "Leitor de G-Code Comprimido"
  4969. #: /Marketplace/plugin.json
  4970. msgctxt "description"
  4971. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  4972. msgstr "Gerencia extensões à aplicação e permite navegar extensões do sítio web da Ultimaker."
  4973. #: /Marketplace/plugin.json
  4974. msgctxt "name"
  4975. msgid "Marketplace"
  4976. msgstr "Marketplace"
  4977. #: /RemovableDriveOutputDevice/plugin.json
  4978. msgctxt "description"
  4979. msgid "Provides removable drive hotplugging and writing support."
  4980. msgstr "Provê suporte a escrita e reconhecimento de drives a quente."
  4981. #: /RemovableDriveOutputDevice/plugin.json
  4982. msgctxt "name"
  4983. msgid "Removable Drive Output Device Plugin"
  4984. msgstr "Complemento de Dispositivo de Escrita Removível"
  4985. #: /MonitorStage/plugin.json
  4986. msgctxt "description"
  4987. msgid "Provides a monitor stage in Cura."
  4988. msgstr "Provê um estágio de monitor no Cura."
  4989. #: /MonitorStage/plugin.json
  4990. msgctxt "name"
  4991. msgid "Monitor Stage"
  4992. msgstr "Estágio de Monitor"
  4993. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  4994. msgctxt "description"
  4995. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4996. msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6."
  4997. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  4998. msgctxt "name"
  4999. msgid "Version Upgrade 2.5 to 2.6"
  5000. msgstr "Atualização de Versão de 2.5 para 2.6"
  5001. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5002. msgctxt "description"
  5003. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5004. msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7."
  5005. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5006. msgctxt "name"
  5007. msgid "Version Upgrade 2.6 to 2.7"
  5008. msgstr "Atualização de Versão de 2.6 para 2.7"
  5009. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5010. msgctxt "description"
  5011. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5012. msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0."
  5013. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5014. msgctxt "name"
  5015. msgid "Version Upgrade 4.13 to 5.0"
  5016. msgstr "Atualização de Versão de 4.13 para 5.0"
  5017. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5018. msgctxt "description"
  5019. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5020. msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9."
  5021. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5022. msgctxt "name"
  5023. msgid "Version Upgrade 4.8 to 4.9"
  5024. msgstr "Atualização de Versão de 4.8 para 4.9"
  5025. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5026. msgctxt "description"
  5027. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5028. msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5."
  5029. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5030. msgctxt "name"
  5031. msgid "Version Upgrade 3.4 to 3.5"
  5032. msgstr "Atualização de Versão de 3.4 para 3.5"
  5033. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5034. msgctxt "description"
  5035. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5036. msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5."
  5037. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5038. msgctxt "name"
  5039. msgid "Version Upgrade 4.4 to 4.5"
  5040. msgstr "Atualização de Versão de 4.4 para 4.5"
  5041. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5042. msgctxt "description"
  5043. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5044. msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4."
  5045. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5046. msgctxt "name"
  5047. msgid "Version Upgrade 4.3 to 4.4"
  5048. msgstr "Atualização de Versão de 4.3 para 4.4"
  5049. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5050. msgctxt "description"
  5051. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5052. msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3."
  5053. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5054. msgctxt "name"
  5055. msgid "Version Upgrade 3.2 to 3.3"
  5056. msgstr "Atualização de Versão de 3.2 para 3.3"
  5057. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5058. msgctxt "description"
  5059. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5060. msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4."
  5061. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5062. msgctxt "name"
  5063. msgid "Version Upgrade 3.3 to 3.4"
  5064. msgstr "Atualização de Versão de 3.3 para 3.4"
  5065. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5066. msgctxt "description"
  5067. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5068. msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2."
  5069. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5070. msgctxt "name"
  5071. msgid "Version Upgrade 4.1 to 4.2"
  5072. msgstr "Atualização de Versão de 4.1 para 4.2"
  5073. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5074. msgctxt "description"
  5075. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5076. msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3."
  5077. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5078. msgctxt "name"
  5079. msgid "Version Upgrade 4.2 to 4.3"
  5080. msgstr "Atualização de Versão de 4.2 para 4.3"
  5081. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5082. msgctxt "description"
  5083. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5084. msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7."
  5085. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5086. msgctxt "name"
  5087. msgid "Version Upgrade 4.6.2 to 4.7"
  5088. msgstr "Atualização de Versão de 4.6.2 para 4.7"
  5089. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5090. msgctxt "description"
  5091. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5092. msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0."
  5093. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5094. msgctxt "name"
  5095. msgid "Version Upgrade 3.5 to 4.0"
  5096. msgstr "Atualização de Versão de 3.5 para 4.0"
  5097. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5098. msgctxt "description"
  5099. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5100. msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  5101. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5102. msgctxt "name"
  5103. msgid "Version Upgrade 2.2 to 2.4"
  5104. msgstr "Atualização de Versão de 2.2 para 2.4"
  5105. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5106. msgctxt "description"
  5107. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5108. msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  5109. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5110. msgctxt "name"
  5111. msgid "Version Upgrade 2.1 to 2.2"
  5112. msgstr "Atualização de Versão de 2.1 para 2.2"
  5113. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5114. msgctxt "description"
  5115. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5116. msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2."
  5117. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5118. msgctxt "name"
  5119. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5120. msgstr "Atualização de Versão de 4.6.0 para 4.6.2"
  5121. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5122. msgctxt "description"
  5123. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5124. msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8."
  5125. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5126. msgctxt "name"
  5127. msgid "Version Upgrade 4.7 to 4.8"
  5128. msgstr "Atualização de Versão de 4.7 para 4.8"
  5129. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5130. msgctxt "description"
  5131. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5132. msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10."
  5133. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5134. msgctxt "name"
  5135. msgid "Version Upgrade 4.9 to 4.10"
  5136. msgstr "Atualização de Versão de 4.9 para 4.10"
  5137. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5138. msgctxt "description"
  5139. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5140. msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6."
  5141. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5142. msgctxt "name"
  5143. msgid "Version Upgrade 4.5 to 4.6"
  5144. msgstr "Atualização de Versão de 4.5 para 4.6"
  5145. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5146. msgctxt "description"
  5147. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5148. msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0."
  5149. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5150. msgctxt "name"
  5151. msgid "Version Upgrade 2.7 to 3.0"
  5152. msgstr "Atualização de Versão de 2.7 para 3.0"
  5153. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5154. msgctxt "description"
  5155. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5156. msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1."
  5157. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5158. msgctxt "name"
  5159. msgid "Version Upgrade 3.0 to 3.1"
  5160. msgstr "Atualização de Versão 3.0 para 3.1"
  5161. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5162. msgctxt "description"
  5163. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5164. msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12."
  5165. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5166. msgctxt "name"
  5167. msgid "Version Upgrade 4.11 to 4.12"
  5168. msgstr "Atualização de Versão de 4.11 para 4.12"
  5169. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5170. msgctxt "description"
  5171. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5172. msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1."
  5173. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5174. msgctxt "name"
  5175. msgid "Version Upgrade 4.0 to 4.1"
  5176. msgstr "Atualização de Versão de 4.0 para 4.1"
  5177. #: /CuraEngineBackend/plugin.json
  5178. msgctxt "description"
  5179. msgid "Provides the link to the CuraEngine slicing backend."
  5180. msgstr "Provê a ligação ao backend de fatiamento CuraEngine."
  5181. #: /CuraEngineBackend/plugin.json
  5182. msgctxt "name"
  5183. msgid "CuraEngine Backend"
  5184. msgstr "CuraEngine Backend"
  5185. #: /3MFReader/plugin.json
  5186. msgctxt "description"
  5187. msgid "Provides support for reading 3MF files."
  5188. msgstr "Provê suporte à leitura de arquivos 3MF."
  5189. #: /3MFReader/plugin.json
  5190. msgctxt "name"
  5191. msgid "3MF Reader"
  5192. msgstr "Leitor de 3MF"
  5193. #: /PerObjectSettingsTool/plugin.json
  5194. msgctxt "description"
  5195. msgid "Provides the Per Model Settings."
  5196. msgstr "Provê Ajustes Por Modelo."
  5197. #: /PerObjectSettingsTool/plugin.json
  5198. msgctxt "name"
  5199. msgid "Per Model Settings Tool"
  5200. msgstr "Ferramenta de Ajustes Por Modelo"
  5201. #: /XmlMaterialProfile/plugin.json
  5202. msgctxt "description"
  5203. msgid "Provides capabilities to read and write XML-based material profiles."
  5204. msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML."
  5205. #: /XmlMaterialProfile/plugin.json
  5206. msgctxt "name"
  5207. msgid "Material Profiles"
  5208. msgstr "Perfis de Material"
  5209. #: /CuraProfileWriter/plugin.json
  5210. msgctxt "description"
  5211. msgid "Provides support for exporting Cura profiles."
  5212. msgstr "Provê suporte à exportação de perfis do Cura."
  5213. #: /CuraProfileWriter/plugin.json
  5214. msgctxt "name"
  5215. msgid "Cura Profile Writer"
  5216. msgstr "Gravador de Perfis do Cura"
  5217. #: /ModelChecker/plugin.json
  5218. msgctxt "description"
  5219. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5220. msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões."
  5221. #: /ModelChecker/plugin.json
  5222. msgctxt "name"
  5223. msgid "Model Checker"
  5224. msgstr "Verificador de Modelo"
  5225. #: /USBPrinting/plugin.json
  5226. msgctxt "description"
  5227. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5228. msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  5229. #: /USBPrinting/plugin.json
  5230. msgctxt "name"
  5231. msgid "USB printing"
  5232. msgstr "Impressão USB"
  5233. #: /PreviewStage/plugin.json
  5234. msgctxt "description"
  5235. msgid "Provides a preview stage in Cura."
  5236. msgstr "Provê uma etapa de pré-visualização ao Cura."
  5237. #: /PreviewStage/plugin.json
  5238. msgctxt "name"
  5239. msgid "Preview Stage"
  5240. msgstr "Estágio de Pré-visualização"
  5241. #: /GCodeWriter/plugin.json
  5242. msgctxt "description"
  5243. msgid "Writes g-code to a file."
  5244. msgstr "Escreve em formato G-Code."
  5245. #: /GCodeWriter/plugin.json
  5246. msgctxt "name"
  5247. msgid "G-code Writer"
  5248. msgstr "Gerador de G-Code"
  5249. #: /UFPReader/plugin.json
  5250. msgctxt "description"
  5251. msgid "Provides support for reading Ultimaker Format Packages."
  5252. msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)."
  5253. #: /UFPReader/plugin.json
  5254. msgctxt "name"
  5255. msgid "UFP Reader"
  5256. msgstr "Leitor UFP"
  5257. #: /FirmwareUpdater/plugin.json
  5258. msgctxt "description"
  5259. msgid "Provides a machine actions for updating firmware."
  5260. msgstr "Provê ações de máquina para atualização do firmware."
  5261. #: /FirmwareUpdater/plugin.json
  5262. msgctxt "name"
  5263. msgid "Firmware Updater"
  5264. msgstr "Atualizador de Firmware"
  5265. #: /GCodeGzWriter/plugin.json
  5266. msgctxt "description"
  5267. msgid "Writes g-code to a compressed archive."
  5268. msgstr "Escreve em formato G-Code comprimido."
  5269. #: /GCodeGzWriter/plugin.json
  5270. msgctxt "name"
  5271. msgid "Compressed G-code Writer"
  5272. msgstr "Gerador de G-Code Comprimido"
  5273. #: /SimulationView/plugin.json
  5274. msgctxt "description"
  5275. msgid "Provides the preview of sliced layerdata."
  5276. msgstr "Provê a pré-visualização de dados de camada fatiados."
  5277. #: /SimulationView/plugin.json
  5278. msgctxt "name"
  5279. msgid "Simulation View"
  5280. msgstr "Visão Simulada"
  5281. #: /LegacyProfileReader/plugin.json
  5282. msgctxt "description"
  5283. msgid "Provides support for importing profiles from legacy Cura versions."
  5284. msgstr "Provê suporte a importação de perfis de versões legadas do Cura."
  5285. #: /LegacyProfileReader/plugin.json
  5286. msgctxt "name"
  5287. msgid "Legacy Cura Profile Reader"
  5288. msgstr "Leitor de Perfis de Cura Legado"
  5289. #: /AMFReader/plugin.json
  5290. msgctxt "description"
  5291. msgid "Provides support for reading AMF files."
  5292. msgstr "Provê suporta à leitura de arquivos AMF."
  5293. #: /AMFReader/plugin.json
  5294. msgctxt "name"
  5295. msgid "AMF Reader"
  5296. msgstr "Leitor AMF"
  5297. #: /SolidView/plugin.json
  5298. msgctxt "description"
  5299. msgid "Provides a normal solid mesh view."
  5300. msgstr "Provê uma visualização de malha sólida normal."
  5301. #: /SolidView/plugin.json
  5302. msgctxt "name"
  5303. msgid "Solid View"
  5304. msgstr "Visão Sólida"
  5305. #: /FirmwareUpdateChecker/plugin.json
  5306. msgctxt "description"
  5307. msgid "Checks for firmware updates."
  5308. msgstr "Verifica por atualizações de firmware."
  5309. #: /FirmwareUpdateChecker/plugin.json
  5310. msgctxt "name"
  5311. msgid "Firmware Update Checker"
  5312. msgstr "Verificador de Atualizações de Firmware"
  5313. #: /SentryLogger/plugin.json
  5314. msgctxt "description"
  5315. msgid "Logs certain events so that they can be used by the crash reporter"
  5316. msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes"
  5317. #: /SentryLogger/plugin.json
  5318. msgctxt "name"
  5319. msgid "Sentry Logger"
  5320. msgstr "Sentinela para Registro"
  5321. #: /SupportEraser/plugin.json
  5322. msgctxt "description"
  5323. msgid "Creates an eraser mesh to block the printing of support in certain places"
  5324. msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares"
  5325. #: /SupportEraser/plugin.json
  5326. msgctxt "name"
  5327. msgid "Support Eraser"
  5328. msgstr "Apagador de Suporte"
  5329. #: /PrepareStage/plugin.json
  5330. msgctxt "description"
  5331. msgid "Provides a prepare stage in Cura."
  5332. msgstr "Provê um estágio de preparação no Cura."
  5333. #: /PrepareStage/plugin.json
  5334. msgctxt "name"
  5335. msgid "Prepare Stage"
  5336. msgstr "Estágio de Preparação"
  5337. #, python-brace-format
  5338. #~ msgctxt "@error:material"
  5339. #~ msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems."
  5340. #~ msgstr "Não foi possível armazenar informação do pacote de material no arquivo de projeto: {material}. Este projeto pode não abrir corretamente em outros sistemas."
  5341. #~ msgctxt "@info:title"
  5342. #~ msgid "Failed to save material package information"
  5343. #~ msgstr "Falha em salvar informação de pacote de material"
  5344. #~ msgctxt "@label Description for application dependency"
  5345. #~ msgid "Python Error tracking library"
  5346. #~ msgstr "Biblioteca de rastreamento de Erros de Python"
  5347. #~ msgctxt "@label"
  5348. #~ msgid "Printer"
  5349. #~ msgstr "Impressora"
  5350. #~ msgctxt "@info"
  5351. #~ msgid "custom profile is active and you overwrote some settings."
  5352. #~ msgstr "o perfil personalizado está ativo e você sobrescreveu alguns ajustes."
  5353. #~ msgctxt "@info"
  5354. #~ msgid "custom profile is overriding some settings."
  5355. #~ msgstr "o perfil personalizado está sobrepujando alguns ajustes."
  5356. #~ msgctxt "@label"
  5357. #~ msgid "Not yet initialized<br/>"
  5358. #~ msgstr "Ainda não inicializado<br/>"
  5359. #~ msgctxt "@label"
  5360. #~ msgid "By"
  5361. #~ msgstr "Por"
  5362. #~ msgctxt "@Label"
  5363. #~ msgid "Static type checker for Python"
  5364. #~ msgstr "Verificador de tipos estáticos para Python"
  5365. #~ msgctxt "@Label"
  5366. #~ msgid "Root Certificates for validating SSL trustworthiness"
  5367. #~ msgstr "Certificados raiz para validar confiança de SSL"
  5368. #~ msgctxt "@label"
  5369. #~ msgid "Python extensions for Microsoft Windows"
  5370. #~ msgstr "Extensões de python para o Microsoft Windows"
  5371. #~ msgctxt "@label"
  5372. #~ msgid "SVG icons"
  5373. #~ msgstr "Ícones SVG"
  5374. #~ msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  5375. #~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  5376. #~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  5377. #~ msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele"
  5378. #~ msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles"
  5379. #~ msgctxt "@tooltip"
  5380. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  5381. #~ msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado."
  5382. #~ msgctxt "@action:button"
  5383. #~ msgid "Sync materials with printers"
  5384. #~ msgstr "Sincronizar materiais"
  5385. #~ msgctxt "@title:window"
  5386. #~ msgid "Convert Image..."
  5387. #~ msgstr "Converter imagem..."
  5388. #~ msgctxt "@info:tooltip"
  5389. #~ msgid "The width in millimeters on the build plate."
  5390. #~ msgstr "A largura da mesa de impressão em milímetros."
  5391. #~ msgctxt "@title"
  5392. #~ msgid "Marketplace"
  5393. #~ msgstr "Mercado"
  5394. #~ msgctxt "@info"
  5395. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5396. #~ msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito."
  5397. #~ msgctxt "@action:button"
  5398. #~ msgid "Install"
  5399. #~ msgstr "Instalar"
  5400. #~ msgctxt "@action:button"
  5401. #~ msgid "Installed"
  5402. #~ msgstr "Instalado"
  5403. #~ msgctxt "@label"
  5404. #~ msgid "Premium"
  5405. #~ msgstr "Premium"
  5406. #~ msgctxt "@info:tooltip"
  5407. #~ msgid "Go to Web Marketplace"
  5408. #~ msgstr "Ir ao Mercado Web"
  5409. #~ msgctxt "@label"
  5410. #~ msgid "Search materials"
  5411. #~ msgstr "Buscar materiais"
  5412. #~ msgctxt "@label"
  5413. #~ msgid "Compatibility"
  5414. #~ msgstr "Compatibilidade"
  5415. #~ msgctxt "@label:table_header"
  5416. #~ msgid "Machine"
  5417. #~ msgstr "Máquina"
  5418. #~ msgctxt "@label:table_header"
  5419. #~ msgid "Build Plate"
  5420. #~ msgstr "Plataforma de Impressão"
  5421. #~ msgctxt "@label:table_header"
  5422. #~ msgid "Support"
  5423. #~ msgstr "Suporte"
  5424. #~ msgctxt "@label:table_header"
  5425. #~ msgid "Quality"
  5426. #~ msgstr "Qualidade"
  5427. #~ msgctxt "@action:label"
  5428. #~ msgid "Technical Data Sheet"
  5429. #~ msgstr "Documento de Dados Técnicos"
  5430. #~ msgctxt "@action:label"
  5431. #~ msgid "Safety Data Sheet"
  5432. #~ msgstr "Documento de Dados de Segurança"
  5433. #~ msgctxt "@action:label"
  5434. #~ msgid "Printing Guidelines"
  5435. #~ msgstr "Diretrizes de Impressão"
  5436. #~ msgctxt "@action:label"
  5437. #~ msgid "Website"
  5438. #~ msgstr "Sítio Web"
  5439. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5440. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5441. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para instalar ou atualizar"
  5442. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5443. #~ msgid "<a href='%1'>Buy material spools</a>"
  5444. #~ msgstr "<a href='%1'>Comprar rolos de material</a>"
  5445. #~ msgctxt "@action:button"
  5446. #~ msgid "Update"
  5447. #~ msgstr "Atualizar"
  5448. #~ msgctxt "@action:button"
  5449. #~ msgid "Updating"
  5450. #~ msgstr "Atualizando"
  5451. #~ msgctxt "@action:button"
  5452. #~ msgid "Updated"
  5453. #~ msgstr "Atualizado"
  5454. #~ msgctxt "@action:button"
  5455. #~ msgid "Back"
  5456. #~ msgstr "Voltar"
  5457. #~ msgctxt "@title:tab"
  5458. #~ msgid "Plugins"
  5459. #~ msgstr "Complementos"
  5460. #~ msgctxt "@title:tab"
  5461. #~ msgid "Installed"
  5462. #~ msgstr "Instalado"
  5463. #~ msgctxt "@label"
  5464. #~ msgid "Will install upon restarting"
  5465. #~ msgstr "Será instalado ao reiniciar"
  5466. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5467. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5468. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para atualizar"
  5469. #~ msgctxt "@action:button"
  5470. #~ msgid "Downgrade"
  5471. #~ msgstr "Downgrade"
  5472. #~ msgctxt "@action:button"
  5473. #~ msgid "Uninstall"
  5474. #~ msgstr "Desinstalar"
  5475. #~ msgctxt "@label"
  5476. #~ msgid "Community Contributions"
  5477. #~ msgstr "Contribuições da Comunidade"
  5478. #~ msgctxt "@label"
  5479. #~ msgid "Community Plugins"
  5480. #~ msgstr "Complementos da Comunidade"
  5481. #~ msgctxt "@label"
  5482. #~ msgid "Generic Materials"
  5483. #~ msgstr "Materiais Genéricos"
  5484. #~ msgctxt "@info"
  5485. #~ msgid "Fetching packages..."
  5486. #~ msgstr "Obtendo pacotes..."
  5487. #~ msgctxt "@label"
  5488. #~ msgid "Website"
  5489. #~ msgstr "Sítio Web"
  5490. #~ msgctxt "@label"
  5491. #~ msgid "Email"
  5492. #~ msgstr "Email"
  5493. #~ msgctxt "@description"
  5494. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5495. #~ msgstr "Por favor se logue para adquirir complementos e materiais verificados para o Ultimaker Cura Enterprise"
  5496. #~ msgctxt "@label"
  5497. #~ msgid "Version"
  5498. #~ msgstr "Versão"
  5499. #~ msgctxt "@label"
  5500. #~ msgid "Last updated"
  5501. #~ msgstr "Última atualização"
  5502. #~ msgctxt "@label"
  5503. #~ msgid "Downloads"
  5504. #~ msgstr "Downloads"
  5505. #~ msgctxt "@title:tab"
  5506. #~ msgid "Installed plugins"
  5507. #~ msgstr "Complementos instalados"
  5508. #~ msgctxt "@info"
  5509. #~ msgid "No plugin has been installed."
  5510. #~ msgstr "Nenhum complemento foi instalado."
  5511. #~ msgctxt "@title:tab"
  5512. #~ msgid "Installed materials"
  5513. #~ msgstr "Materiais instalados"
  5514. #~ msgctxt "@info"
  5515. #~ msgid "No material has been installed."
  5516. #~ msgstr "Nenhum material foi instalado."
  5517. #~ msgctxt "@title:tab"
  5518. #~ msgid "Bundled plugins"
  5519. #~ msgstr "Complementos empacotados"
  5520. #~ msgctxt "@title:tab"
  5521. #~ msgid "Bundled materials"
  5522. #~ msgstr "Materiais empacotados"
  5523. #~ msgctxt "@info"
  5524. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5525. #~ msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão."
  5526. #~ msgctxt "@title:window"
  5527. #~ msgid "Confirm uninstall"
  5528. #~ msgstr "Confirme a desinstalação"
  5529. #~ msgctxt "@text:window"
  5530. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5531. #~ msgstr "Você está desinstalando material e/ou perfis que ainda estão em uso. Confirmar irá restaurar os materiais e perfis seguintes a seus defaults."
  5532. #~ msgctxt "@text:window"
  5533. #~ msgid "Materials"
  5534. #~ msgstr "Materiais"
  5535. #~ msgctxt "@text:window"
  5536. #~ msgid "Profiles"
  5537. #~ msgstr "Perfis"
  5538. #~ msgctxt "@action:button"
  5539. #~ msgid "Confirm"
  5540. #~ msgstr "Confirmar"
  5541. #~ msgctxt "@info:tooltip"
  5542. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5543. #~ msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção."
  5544. #~ msgctxt "@label"
  5545. #~ msgid "Support library for handling planar objects"
  5546. #~ msgstr "Biblioteca de suporte para manuseamento de objetos planares"
  5547. #~ msgctxt "@text:window, %1 is a profile name"
  5548. #~ msgid ""
  5549. #~ "You have customized some profile settings.\n"
  5550. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5551. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5552. #~ msgstr ""
  5553. #~ "Você personalizou alguns ajustes de perfil.\n"
  5554. #~ "Gostaria de manter estes ajustes alterados após mudar de perfis?\n"
  5555. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5556. #~ msgctxt "@action:inmenu menubar:view"
  5557. #~ msgid "&Build plate"
  5558. #~ msgstr "Plataforma de Impressão (&B)"
  5559. #~ msgctxt "@label"
  5560. #~ msgid "Create"
  5561. #~ msgstr "Criar"
  5562. #~ msgctxt "@label"
  5563. #~ msgid "Duplicate"
  5564. #~ msgstr "Duplicar"
  5565. #~ msgctxt "@label %1 is printer name"
  5566. #~ msgid "Printer: %1"
  5567. #~ msgstr "Impressora: %1"
  5568. #~ msgctxt "@action:button"
  5569. #~ msgid "Update profile with current settings/overrides"
  5570. #~ msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  5571. #~ msgctxt "@label"
  5572. #~ msgid "Theme:"
  5573. #~ msgstr "Tema:"
  5574. #~ msgctxt "@label"
  5575. #~ msgid "You will need to restart the application for these changes to have effect."
  5576. #~ msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito."
  5577. #~ msgctxt "@action:button"
  5578. #~ msgid "More information"
  5579. #~ msgstr "Mais informações"
  5580. #~ msgctxt "@action:button"
  5581. #~ msgid "Create"
  5582. #~ msgstr "Criar"
  5583. #~ msgctxt "@action:button Sending materials to printers"
  5584. #~ msgid "Sync with Printers"
  5585. #~ msgstr "Sincronizar com Impressoras"
  5586. #~ msgctxt "@action:label"
  5587. #~ msgid "Printer"
  5588. #~ msgstr "Impressora"
  5589. #~ msgctxt "@title:column"
  5590. #~ msgid "Unit"
  5591. #~ msgstr "Unidade"
  5592. #~ msgctxt "@action:inmenu"
  5593. #~ msgid "Show Online Troubleshooting Guide"
  5594. #~ msgstr "Mostra Guia de Resolução de Problemas Online"
  5595. #~ msgctxt "@action:inmenu"
  5596. #~ msgid "Add more materials from Marketplace"
  5597. #~ msgstr "Adicionar mais materiais do Mercado"
  5598. #~ msgctxt "@action:inmenu menubar:edit"
  5599. #~ msgid "Arrange All Models To All Build Plates"
  5600. #~ msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão"
  5601. #~ msgctxt "@action:menu"
  5602. #~ msgid "&Marketplace"
  5603. #~ msgstr "&Mercado"
  5604. #~ msgctxt "description"
  5605. #~ msgid "Find, manage and install new Cura packages."
  5606. #~ msgstr "Buscar, gerenciar e instalar novos pacotes do Cura."
  5607. #~ msgctxt "name"
  5608. #~ msgid "Toolbox"
  5609. #~ msgstr "Ferramentas"
  5610. #~ msgctxt "description"
  5611. #~ msgid "Provides the Simulation view."
  5612. #~ msgstr "Provê a Visão Simulada."
  5613. #~ msgctxt "@info:status"
  5614. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5615. #~ msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker."
  5616. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5617. #~ msgid "Connect to Ultimaker Digital Factory"
  5618. #~ msgstr "Conectar à Ultimaker Digital Factory"
  5619. #~ msgctxt "@info"
  5620. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5621. #~ msgstr "Feeds de webcam para impressoras de nuvem não podem ser vistos pelo Ultimaker Cura."
  5622. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5623. #~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  5624. #~ msgstr "Novos recursos ou consertos de bugs podem estar disponível para sua {machine_name}! Se já não estiver na última versão, é recomendado que atualize o firmware da sua impressora para a versão {latest_version}."
  5625. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5626. #~ msgid "New %s firmware available"
  5627. #~ msgstr "Novo firmware de %s disponível"
  5628. #~ msgctxt "@info:status"
  5629. #~ msgid "Global stack is missing."
  5630. #~ msgstr "A pilha global não foi encontrada."
  5631. #~ msgctxt "@info:status"
  5632. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5633. #~ msgstr "Seu modelo não é manifold. As áreas ressaltadas indicam superfícies faltantes ou incorretas."
  5634. #~ msgctxt "@info:title"
  5635. #~ msgid "Model errors"
  5636. #~ msgstr "Erros de modelo"
  5637. #~ msgctxt "@label:listbox"
  5638. #~ msgid "Layer thickness"
  5639. #~ msgstr "Largura de camada"
  5640. #~ msgctxt "@label"
  5641. #~ msgid "Your key to connected 3D printing"
  5642. #~ msgstr "Sua chave para impressão 3D conectada"
  5643. #~ msgctxt "@text"
  5644. #~ msgid ""
  5645. #~ "- Customize your experience with more print profiles and plugins\n"
  5646. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5647. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5648. #~ msgstr ""
  5649. #~ "- Personalize sua experiência com mais perfis de impressão e complementos\n"
  5650. #~ "- Mantenha-se flexível ao sincronizar sua configuração e a acessar em qualquer lugar\n"
  5651. #~ "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  5652. #~ msgctxt "@button"
  5653. #~ msgid "Create account"
  5654. #~ msgstr "Criar conta"
  5655. #~ msgctxt "@action:inmenu menubar:edit"
  5656. #~ msgid "Delete Selected Model"
  5657. #~ msgid_plural "Delete Selected Models"
  5658. #~ msgstr[0] "Remover Modelo Selecionado"
  5659. #~ msgstr[1] "Remover Modelos Selecionados"
  5660. #~ msgctxt "@action:inmenu menubar:edit"
  5661. #~ msgid "Center Selected Model"
  5662. #~ msgid_plural "Center Selected Models"
  5663. #~ msgstr[0] "Centralizar Modelo Selecionado"
  5664. #~ msgstr[1] "Centralizar Modelos Selecionados"
  5665. #~ msgctxt "@action:inmenu menubar:edit"
  5666. #~ msgid "Multiply Selected Model"
  5667. #~ msgid_plural "Multiply Selected Models"
  5668. #~ msgstr[0] "Multiplicar Modelo Selecionado"
  5669. #~ msgstr[1] "Multiplicar Modelos Selecionados"
  5670. #~ msgctxt "@button"
  5671. #~ msgid "Finish"
  5672. #~ msgstr "Finalizar"
  5673. #~ msgctxt "@label"
  5674. #~ msgid "Ultimaker Account"
  5675. #~ msgstr "Conta da Ultimaker"
  5676. #~ msgctxt "@text"
  5677. #~ msgid "Your key to connected 3D printing"
  5678. #~ msgstr "Sua chave para a impressão 3D conectada"
  5679. #~ msgctxt "@text"
  5680. #~ msgid "- Customize your experience with more print profiles and plugins"
  5681. #~ msgstr "- Personalize sua experiência com mais perfis de impressão e complementos"
  5682. #~ msgctxt "@text"
  5683. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5684. #~ msgstr "- Flexibilize-se ao sincronizar sua configuração e a acessar de qualquer lugar"
  5685. #~ msgctxt "@text"
  5686. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5687. #~ msgstr "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  5688. #~ msgctxt "@text"
  5689. #~ msgid ""
  5690. #~ "Please follow these steps to set up\n"
  5691. #~ "Ultimaker Cura. This will only take a few moments."
  5692. #~ msgstr ""
  5693. #~ "Por favor siga estes passos para configurar\n"
  5694. #~ "o Ultimaker Cura. Isto tomará apenas alguns momentos."
  5695. #~ msgctxt "@label"
  5696. #~ msgid "What's new in Ultimaker Cura"
  5697. #~ msgstr "O que há de novo no Ultimaker Cura"
  5698. #~ msgctxt "@label ({} is object name)"
  5699. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5700. #~ msgstr "Tem certeza que deseja remover {}? Isto não pode ser desfeito!"
  5701. #~ msgctxt "@info:status"
  5702. #~ msgid "The selected model was too small to load."
  5703. #~ msgstr "O modelo selecionado é pequenos demais para carregar."
  5704. #~ msgctxt "@info:status"
  5705. #~ msgid "Successfully imported profile {0}"
  5706. #~ msgstr "Perfil {0} importado com sucesso"
  5707. #~ msgctxt "@info:status"
  5708. #~ msgid "Could not find a quality type {0} for the current configuration."
  5709. #~ msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual."
  5710. #~ msgctxt "info:status"
  5711. #~ msgid "Adding printer {} ({}) from your account"
  5712. #~ msgstr "Adicionando impressora {} ({}) da sua conta"
  5713. #~ msgctxt "info:hidden list items"
  5714. #~ msgid "<li>... and {} others</li>"
  5715. #~ msgstr "<li>... e {} outras</li>"
  5716. #~ msgctxt "info:status"
  5717. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5718. #~ msgstr "Impressoras adicionadas da Digital Factory:<ul>{}</ul>"
  5719. #~ msgctxt "info:status"
  5720. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5721. #~ msgstr "<ul>{}</ul>Para estabelecer uma conexão, por favor visite a <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5722. #~ msgctxt "@label ({} is printer name)"
  5723. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5724. #~ msgstr "{} será removida até a próxima sincronização de conta. <br> Para remover {} permanentemente, visite a <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Tem certeza que deseja remover {} temporariamente?"
  5725. #~ msgctxt "@label"
  5726. #~ msgid ""
  5727. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5728. #~ "Are you sure you want to continue?"
  5729. #~ msgstr ""
  5730. #~ "Você está para remover {} impressora(s) do Cura. Esta ação não pode ser desfeita. \n"
  5731. #~ "Tem certeza que quer continuar?"
  5732. #~ msgctxt "@label"
  5733. #~ msgid ""
  5734. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5735. #~ "Are you sure you want to continue?"
  5736. #~ msgstr ""
  5737. #~ "Você está para remover todas as impressoras do Cura. Esta ação não pode ser defeita. \n"
  5738. #~ "Tem certeza que quer continuar?"
  5739. #~ msgctxt "@action:ComboBox option"
  5740. #~ msgid "Update"
  5741. #~ msgstr "Atualizar"
  5742. #~ msgctxt "@action:ComboBox option"
  5743. #~ msgid "Create new"
  5744. #~ msgstr "Criar novo"
  5745. #~ msgctxt "@label"
  5746. #~ msgid "Shared Heater"
  5747. #~ msgstr "Aquecedor Compartilhado"
  5748. #~ msgctxt "@info"
  5749. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5750. #~ msgstr "A webcam não está disponível porque você está monitorando uma impressora de nuvem."
  5751. #~ msgctxt "@button"
  5752. #~ msgid "Ultimaker Digital Factory"
  5753. #~ msgstr "Ultimaker Digital Factory"
  5754. #~ msgctxt "@text:window, %1 is a profile name"
  5755. #~ msgid ""
  5756. #~ "You have customized some profile settings.\n"
  5757. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5758. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5759. #~ msgstr ""
  5760. #~ "Você personalizou alguns ajustes de perfil.\n"
  5761. #~ "Você gostaria de manter esses ajustes alterados depois de trocar os perfis?\n"
  5762. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5763. #~ msgctxt "@label"
  5764. #~ msgid "Overrides %1 setting."
  5765. #~ msgid_plural "Overrides %1 settings."
  5766. #~ msgstr[0] "Substitui %1 ajuste."
  5767. #~ msgstr[1] "Substitui %1 ajustes."
  5768. #~ msgctxt "@text"
  5769. #~ msgid "Please give your printer a name"
  5770. #~ msgstr "Por favor dê um nome à sua impressora"
  5771. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5772. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5773. #~ msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora."
  5774. #~ msgctxt "@action:button"
  5775. #~ msgid "Print via Cloud"
  5776. #~ msgstr "Imprimir por Nuvem"
  5777. #~ msgctxt "@properties:tooltip"
  5778. #~ msgid "Print via Cloud"
  5779. #~ msgstr "Imprimir por Nuvem"
  5780. #~ msgctxt "@info:status"
  5781. #~ msgid "Connected via Cloud"
  5782. #~ msgstr "Conectado por Nuvem"
  5783. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5784. #~ msgid "Connect to Ultimaker Cloud"
  5785. #~ msgstr "Conectar à Nuvem Ultimaker"
  5786. #~ msgctxt "@label"
  5787. #~ msgid "You need to login first before you can rate"
  5788. #~ msgstr "Você precisa entrar em sua conta para dar notas"
  5789. #~ msgctxt "@label"
  5790. #~ msgid "You need to install the package before you can rate"
  5791. #~ msgstr "Você precisa instalar o pacote para dar notas"
  5792. #~ msgctxt "@label"
  5793. #~ msgid "ratings"
  5794. #~ msgstr "notas"
  5795. #~ msgctxt "@label"
  5796. #~ msgid "Featured"
  5797. #~ msgstr "Em destaque"
  5798. #~ msgctxt "@label"
  5799. #~ msgid "Your rating"
  5800. #~ msgstr "Sua nota"
  5801. #~ msgctxt "@label"
  5802. #~ msgid "Author"
  5803. #~ msgstr "Autor"
  5804. #~ msgctxt "@description"
  5805. #~ msgid "Get plugins and materials verified by Ultimaker"
  5806. #~ msgstr "Obter complementos e materiais verificados pela Ultimaker"
  5807. #~ msgctxt "@label The argument is a username."
  5808. #~ msgid "Hi %1"
  5809. #~ msgstr "Oi, %1"
  5810. #~ msgctxt "@button"
  5811. #~ msgid "Ultimaker account"
  5812. #~ msgstr "Conta da Ultimaker"
  5813. #~ msgctxt "@button"
  5814. #~ msgid "Sign out"
  5815. #~ msgstr "Sair da conta"
  5816. #~ msgctxt "@label"
  5817. #~ msgid "Support library for analysis of complex networks"
  5818. #~ msgstr "Biblioteca de suporte para análises de redes complexas"
  5819. #~ msgctxt "@Label"
  5820. #~ msgid "Python HTTP library"
  5821. #~ msgstr "Biblioteca de HTTP Python"
  5822. #~ msgctxt "@text:window"
  5823. #~ msgid ""
  5824. #~ "You have customized some profile settings.\n"
  5825. #~ "Would you like to keep or discard those settings?"
  5826. #~ msgstr ""
  5827. #~ "Você personalizou alguns ajustes de perfil.\n"
  5828. #~ "Gostaria de manter ou descartar estes ajustes?"
  5829. #~ msgctxt "@title:column"
  5830. #~ msgid "Default"
  5831. #~ msgstr "Default"
  5832. #~ msgctxt "@title:column"
  5833. #~ msgid "Customized"
  5834. #~ msgstr "Personalizado"
  5835. #~ msgctxt "@action:button"
  5836. #~ msgid "Discard"
  5837. #~ msgstr "Descartar"
  5838. #~ msgctxt "@action:button"
  5839. #~ msgid "Keep"
  5840. #~ msgstr "Manter"
  5841. #~ msgctxt "@action:button"
  5842. #~ msgid "Create New Profile"
  5843. #~ msgstr "Criar Novo Perfil"
  5844. #~ msgctxt "@title:menu menubar:file"
  5845. #~ msgid "&Save..."
  5846. #~ msgstr "&Salvar..."
  5847. #~ msgctxt "@text"
  5848. #~ msgid "Place enter your printer's IP address."
  5849. #~ msgstr "Por favor entre o endereço IP da sua impressora."
  5850. #~ msgctxt "@button"
  5851. #~ msgid "Create an account"
  5852. #~ msgstr "Criar uma conta"
  5853. #~ msgctxt "@info:generic"
  5854. #~ msgid ""
  5855. #~ "\n"
  5856. #~ "Do you want to sync material and software packages with your account?"
  5857. #~ msgstr ""
  5858. #~ "\n"
  5859. #~ "Você quer sincronizar os pacotes de material e software com sua conta?"
  5860. #~ msgctxt "@info:generic"
  5861. #~ msgid ""
  5862. #~ "\n"
  5863. #~ "Syncing..."
  5864. #~ msgstr ""
  5865. #~ "\n"
  5866. #~ "Sincronizando..."
  5867. #~ msgctxt "@info:status"
  5868. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5869. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de construção ou está associado a um extrusor desabilitado. Por favor redimensione ou rotacione os modelos para caber, ou habilite um extrusor."
  5870. #~ msgctxt "@info:backup_status"
  5871. #~ msgid "There was an error listing your backups."
  5872. #~ msgstr "Houve um erro ao listar seus backups."
  5873. #~ msgctxt "@title:groupbox"
  5874. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5875. #~ msgstr "Descrição do usuário (Nota: Os desenvolvedores podem não falar sua língua, por favor use inglês se possível)"
  5876. #~ msgctxt "@title:window"
  5877. #~ msgid "Closing Cura"
  5878. #~ msgstr "Fechando o Cura"
  5879. #~ msgctxt "@label"
  5880. #~ msgid "Are you sure you want to exit Cura?"
  5881. #~ msgstr "Você tem certeza que deseja sair do Cura?"
  5882. #~ msgctxt "@label"
  5883. #~ msgid "Language:"
  5884. #~ msgstr "Idioma:"
  5885. #~ msgctxt "@label"
  5886. #~ msgid "Ultimaker Cloud"
  5887. #~ msgstr "Ultimaker Cloud"
  5888. #~ msgctxt "@text"
  5889. #~ msgid "The next generation 3D printing workflow"
  5890. #~ msgstr "O fluxo de trabalho da nova geração de impressão 3D"
  5891. #~ msgctxt "@text"
  5892. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5893. #~ msgstr "- Enviar trabalhos de impressão a impressoras Ultimaker fora da sua rede local"
  5894. #~ msgctxt "@text"
  5895. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5896. #~ msgstr "- Armazenar seus ajustes do Ultimaker Cura na nuvem para uso em qualquer local"
  5897. #~ msgctxt "@text"
  5898. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5899. #~ msgstr "- Conseguir acesso exclusivo a perfis de impressão das melhores marcas"
  5900. #~ msgctxt "@label"
  5901. #~ msgid "The value is resolved from per-extruder values "
  5902. #~ msgstr "O valor é resolvido de valores específicos de cada extrusor "
  5903. #~ msgctxt "@label"
  5904. #~ msgid "The next generation 3D printing workflow"
  5905. #~ msgstr "O fluxo de trabalho da próxima geração de impressão 3D"
  5906. #~ msgctxt "@text"
  5907. #~ msgid ""
  5908. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5909. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5910. #~ "- Get exclusive access to print profiles from leading brands"
  5911. #~ msgstr ""
  5912. #~ "- Envia trabalho de impressão às impressoras Ultimaker fora da sua rede local\n"
  5913. #~ "- Armazena seus ajustes do Ultimaker Cura na nuvem para uso de qualquer lugar\n"
  5914. #~ "- Consegue acesso exclusivo a perfis de impressão das melhores marcas"
  5915. #~ msgctxt "@title:window"
  5916. #~ msgid "About "
  5917. #~ msgstr "Sobre "
  5918. #~ msgctxt "@info:button"
  5919. #~ msgid "Quit Cura"
  5920. #~ msgstr "Sair do Cura"
  5921. #~ msgctxt "@action:checkbox"
  5922. #~ msgid "Infill only"
  5923. #~ msgstr "Preenchimento apenas"
  5924. #~ msgctxt "@info:tooltip"
  5925. #~ msgid "Change active post-processing scripts"
  5926. #~ msgstr "Troca os scripts de pós-processamento ativos"
  5927. #~ msgctxt "@label:listbox"
  5928. #~ msgid "Feedrate"
  5929. #~ msgstr "Taxa de alimentação"
  5930. #~ msgctxt "name"
  5931. #~ msgid "Machine Settings action"
  5932. #~ msgstr "Ação de Configurações de Máquina"
  5933. #~ msgctxt "@info:title"
  5934. #~ msgid "New cloud printers found"
  5935. #~ msgstr "Novas impressoras de nuvem encontradas"
  5936. #~ msgctxt "@info:message"
  5937. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5938. #~ msgstr "Novas impressoras foram encontradas conectadas à sua conta; você as pode ver na sua lista de impressoras descobertas."
  5939. #~ msgctxt "@info:status"
  5940. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5941. #~ msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada"
  5942. #~ msgctxt "@label"
  5943. #~ msgid "Pre-sliced file {0}"
  5944. #~ msgstr "Arquivo pré-fatiado {0}"
  5945. #~ msgctxt "@label"
  5946. #~ msgid ""
  5947. #~ "This plugin contains a license.\n"
  5948. #~ "You need to accept this license to install this plugin.\n"
  5949. #~ "Do you agree with the terms below?"
  5950. #~ msgstr ""
  5951. #~ "Este plugin contém uma licença.\n"
  5952. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  5953. #~ "Você concorda com os termos abaixo?"
  5954. #~ msgctxt "@action:button"
  5955. #~ msgid "Accept"
  5956. #~ msgstr "Aceitar"
  5957. #~ msgctxt "@action:button"
  5958. #~ msgid "Decline"
  5959. #~ msgstr "Recusar"
  5960. #~ msgctxt "@action:inmenu"
  5961. #~ msgid "Show All Settings"
  5962. #~ msgstr "Mostrar Todos Os Ajustes"
  5963. #~ msgctxt "@title:window"
  5964. #~ msgid "Ultimaker Cura"
  5965. #~ msgstr "Ultimaker Cura"
  5966. #~ msgctxt "@title:window"
  5967. #~ msgid "About Cura"
  5968. #~ msgstr "Sobre o Cura"
  5969. #~ msgctxt "@item:inmenu"
  5970. #~ msgid "Flatten active settings"
  5971. #~ msgstr "Achatar os ajustes ativos"
  5972. #~ msgctxt "@info:status"
  5973. #~ msgid "Profile has been flattened & activated."
  5974. #~ msgstr "O perfil foi achatado & ativado."
  5975. #~ msgctxt "X3g Writer Plugin Description"
  5976. #~ msgid "Writes X3g to files"
  5977. #~ msgstr "Grava em formato X3g"
  5978. #~ msgctxt "X3g Writer File Description"
  5979. #~ msgid "X3g File"
  5980. #~ msgstr "Arquivo X3g"
  5981. #~ msgctxt "X3G Writer File Description"
  5982. #~ msgid "X3G File"
  5983. #~ msgstr "Arquivo X3G"
  5984. #~ msgctxt "@item:inlistbox"
  5985. #~ msgid "Open Compressed Triangle Mesh"
  5986. #~ msgstr "Malha Comprimida de Triângulos Aberta"
  5987. #~ msgctxt "@item:inmenu"
  5988. #~ msgid "Profile Assistant"
  5989. #~ msgstr "Assistente de Perfil"
  5990. #~ msgctxt "@item:inlistbox"
  5991. #~ msgid "Profile Assistant"
  5992. #~ msgstr "Assistente de Perfil"
  5993. #~ msgctxt "@action:button"
  5994. #~ msgid "Retry"
  5995. #~ msgstr "Tentar novamente"
  5996. #~ msgctxt "@label:table_header"
  5997. #~ msgid "Print Core"
  5998. #~ msgstr "Núcleo de Impressão"
  5999. #~ msgctxt "@label"
  6000. #~ msgid "Don't support overlap with other models"
  6001. #~ msgstr "Não suportar sobreposição com outros modelos"
  6002. #~ msgctxt "@label"
  6003. #~ msgid "Modify settings for overlap with other models"
  6004. #~ msgstr "Modificar ajustes para sobrepor com outros modelos"
  6005. #~ msgctxt "@label"
  6006. #~ msgid "Modify settings for infill of other models"
  6007. #~ msgstr "Modificar ajustes para preenchimento de outros modelos"
  6008. #~ msgctxt "@action:ComboBox option"
  6009. #~ msgid "Update existing"
  6010. #~ msgstr "Atualizar existente"
  6011. #~ msgctxt "@label"
  6012. #~ msgid "Not supported"
  6013. #~ msgstr "Não suportado"
  6014. #~ msgctxt "@action:button"
  6015. #~ msgid "Previous"
  6016. #~ msgstr "Anterior"
  6017. #~ msgctxt "@label"
  6018. #~ msgid "Tip"
  6019. #~ msgstr "Dica"
  6020. #~ msgctxt "@label"
  6021. #~ msgid "Print experiment"
  6022. #~ msgstr "Imprimir experimento"
  6023. #~ msgctxt "@label"
  6024. #~ msgid "Checklist"
  6025. #~ msgstr "Lista de verificação"
  6026. #~ msgctxt "@label"
  6027. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  6028. #~ msgstr "Por favor selecione quaisquer atualizações feitas nesta Ultimaker 2."
  6029. #~ msgctxt "@label"
  6030. #~ msgid "Olsson Block"
  6031. #~ msgstr "Bloco Olsson"
  6032. #~ msgctxt "@window:text"
  6033. #~ msgid "Camera rendering: "
  6034. #~ msgstr "Renderização de câmera:"
  6035. #~ msgctxt "@info:tooltip"
  6036. #~ msgid "Use multi build plate functionality"
  6037. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão"
  6038. #~ msgctxt "@option:check"
  6039. #~ msgid "Use multi build plate functionality (restart required)"
  6040. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)"
  6041. #~ msgctxt "@label"
  6042. #~ msgid "Default profiles"
  6043. #~ msgstr "Perfis default"
  6044. #~ msgctxt "@label:textbox"
  6045. #~ msgid "search settings"
  6046. #~ msgstr "procurar nos ajustes"
  6047. #~ msgctxt "@label"
  6048. #~ msgid "Layer Height"
  6049. #~ msgstr "Altura de Camada"
  6050. #~ msgctxt "@tooltip"
  6051. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6052. #~ msgstr "Este perfil de qualidade não está disponível para seu material e configuração de bico atuais. Por favor, altere-os para habilitar este perfil de qualidade."
  6053. #~ msgctxt "@tooltip"
  6054. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6055. #~ msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado"
  6056. #~ msgctxt "@title:menu"
  6057. #~ msgid "&Build plate"
  6058. #~ msgstr "Plataforma de Impressão (&B)"
  6059. #~ msgctxt "@title:settings"
  6060. #~ msgid "&Profile"
  6061. #~ msgstr "&Perfil"
  6062. #~ msgctxt "@action:label"
  6063. #~ msgid "Build plate"
  6064. #~ msgstr "Plataforma de Impressão"
  6065. #~ msgctxt "description"
  6066. #~ msgid "Dump the contents of all settings to a HTML file."
  6067. #~ msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML."
  6068. #~ msgctxt "name"
  6069. #~ msgid "God Mode"
  6070. #~ msgstr "Modo Deus"
  6071. #~ msgctxt "description"
  6072. #~ msgid "Create a flattened quality changes profile."
  6073. #~ msgstr "Cria um perfil de mudanças de qualidade achatado."
  6074. #~ msgctxt "name"
  6075. #~ msgid "Profile Flattener"
  6076. #~ msgstr "Achatador de Perfil"
  6077. #~ msgctxt "description"
  6078. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6079. #~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in."
  6080. #~ msgctxt "name"
  6081. #~ msgid "Print Profile Assistant"
  6082. #~ msgstr "Assistente de Perfil de Impressão"
  6083. #~ msgctxt "@info:status"
  6084. #~ msgid "Connected over the network."
  6085. #~ msgstr "Conectado pela rede."
  6086. #~ msgctxt "@info:status"
  6087. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6088. #~ msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora."
  6089. #~ msgctxt "@info:status"
  6090. #~ msgid "Connected over the network. No access to control the printer."
  6091. #~ msgstr "Conectado pela rede. Sem acesso para controlar a impressora."
  6092. #~ msgctxt "@info:status"
  6093. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6094. #~ msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora"
  6095. #~ msgctxt "@info:title"
  6096. #~ msgid "Authentication status"
  6097. #~ msgstr "Status da autenticação"
  6098. #~ msgctxt "@info:title"
  6099. #~ msgid "Authentication Status"
  6100. #~ msgstr "Status da Autenticação"
  6101. #~ msgctxt "@info:tooltip"
  6102. #~ msgid "Re-send the access request"
  6103. #~ msgstr "Reenvia o pedido de acesso"
  6104. #~ msgctxt "@info:status"
  6105. #~ msgid "Access to the printer accepted"
  6106. #~ msgstr "Acesso à impressora confirmado"
  6107. #~ msgctxt "@info:status"
  6108. #~ msgid "No access to print with this printer. Unable to send print job."
  6109. #~ msgstr "Sem acesso para imprimir por esta impressora. Não foi possível enviar o trabalho de impressão."
  6110. #~ msgctxt "@action:button"
  6111. #~ msgid "Request Access"
  6112. #~ msgstr "Solicitar acesso"
  6113. #~ msgctxt "@info:tooltip"
  6114. #~ msgid "Send access request to the printer"
  6115. #~ msgstr "Envia pedido de acesso à impressora"
  6116. #~ msgctxt "@label"
  6117. #~ msgid "Unable to start a new print job."
  6118. #~ msgstr "Não foi possível iniciar novo trabalho de impressão."
  6119. #~ msgctxt "@label"
  6120. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  6121. #~ msgstr "Há um problema com a configuração de sua Ultimaker, o que torna impossível iniciar a impressão. Por favor resolva este problema antes de continuar."
  6122. #~ msgctxt "@window:title"
  6123. #~ msgid "Mismatched configuration"
  6124. #~ msgstr "Configuração conflitante"
  6125. #~ msgctxt "@label"
  6126. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6127. #~ msgstr "Tem certeza que quer imprimir com a configuração selecionada?"
  6128. #~ msgctxt "@label"
  6129. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  6130. #~ msgstr "Há divergências entre a configuração ou calibração da impressora e do Cura. Para melhores resultados, sempre fatie com os PrintCores e materiais que estão carregados em sua impressora."
  6131. #~ msgctxt "@info:status"
  6132. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6133. #~ msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior."
  6134. #~ msgctxt "@info:status"
  6135. #~ msgid "Sending data to printer"
  6136. #~ msgstr "Enviando dados à impressora"
  6137. #~ msgctxt "@info:title"
  6138. #~ msgid "Sending Data"
  6139. #~ msgstr "Enviando Dados"
  6140. #~ msgctxt "@info:status"
  6141. #~ msgid "No Printcore loaded in slot {slot_number}"
  6142. #~ msgstr "Printcore não carregado no slot {slot_number}"
  6143. #~ msgctxt "@info:status"
  6144. #~ msgid "No material loaded in slot {slot_number}"
  6145. #~ msgstr "Nenhum material carregado no slot {slot_number}"
  6146. #~ msgctxt "@label"
  6147. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6148. #~ msgstr "PrintCore Diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  6149. #~ msgctxt "@label"
  6150. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6151. #~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  6152. #~ msgctxt "@window:title"
  6153. #~ msgid "Sync with your printer"
  6154. #~ msgstr "Sincronizar com a impressora"
  6155. #~ msgctxt "@label"
  6156. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6157. #~ msgstr "Deseja usar a configuração atual de sua impressora no Cura?"
  6158. #~ msgctxt "@label"
  6159. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  6160. #~ msgstr "Os PrintCores e/ou materiais da sua impressora diferem dos que estão dentro de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão na sua impressora."
  6161. #~ msgctxt "@action:button"
  6162. #~ msgid "View in Monitor"
  6163. #~ msgstr "Ver no Monitor"
  6164. #~ msgctxt "@info:status"
  6165. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6166. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'."
  6167. #~ msgctxt "@info:status"
  6168. #~ msgid "The print job '{job_name}' was finished."
  6169. #~ msgstr "O trabalho de impressão '{job_name}' terminou."
  6170. #~ msgctxt "@info:status"
  6171. #~ msgid "Print finished"
  6172. #~ msgstr "Impressão Concluída"
  6173. #~ msgctxt "@label:material"
  6174. #~ msgid "Empty"
  6175. #~ msgstr "Vazio"
  6176. #~ msgctxt "@label:material"
  6177. #~ msgid "Unknown"
  6178. #~ msgstr "Desconhecido"
  6179. #~ msgctxt "@info:title"
  6180. #~ msgid "Cloud error"
  6181. #~ msgstr "Erro de nuvem"
  6182. #~ msgctxt "@info:status"
  6183. #~ msgid "Could not export print job."
  6184. #~ msgstr "Não foi possível exportar o trabalho de impressão."
  6185. #~ msgctxt "@info:description"
  6186. #~ msgid "There was an error connecting to the cloud."
  6187. #~ msgstr "Houve um erro ao conectar à nuvem."
  6188. #~ msgctxt "@info:status"
  6189. #~ msgid "Uploading via Ultimaker Cloud"
  6190. #~ msgstr "Transferindo via Ultimaker Cloud"
  6191. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6192. #~ msgid "Connect to Ultimaker Cloud"
  6193. #~ msgstr "Conectar à Ultimaker Cloud"
  6194. #~ msgctxt "@action"
  6195. #~ msgid "Don't ask me again for this printer."
  6196. #~ msgstr "Não me pergunte novamente para esta impressora."
  6197. #~ msgctxt "@info:status"
  6198. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6199. #~ msgstr "Você agora pode enviar e monitorar trabalhoas de impressão de qualquer lugar usando sua conta Ultimaker."
  6200. #~ msgctxt "@info:status"
  6201. #~ msgid "Connected!"
  6202. #~ msgstr "Conectado!"
  6203. #~ msgctxt "@action"
  6204. #~ msgid "Review your connection"
  6205. #~ msgstr "Rever sua conexão"
  6206. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6207. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6208. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não equivale à sua máquina atual ({2}), não foi possível importá-lo."
  6209. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6210. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6211. #~ msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  6212. #~ msgctxt "@window:title"
  6213. #~ msgid "Existing Connection"
  6214. #~ msgstr "Conexão Existente"
  6215. #~ msgctxt "@message:text"
  6216. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6217. #~ msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo."
  6218. #~ msgctxt "@label"
  6219. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6220. #~ msgstr "Entre o endereço IP ou nome de sua impressora na rede."
  6221. #~ msgctxt "@info:tooltip"
  6222. #~ msgid "Connect to a printer"
  6223. #~ msgstr "Conecta a uma impressora"
  6224. #~ msgctxt "@title"
  6225. #~ msgid "Cura Settings Guide"
  6226. #~ msgstr "Guia de Ajustes do Cura"
  6227. #~ msgctxt "@info:tooltip"
  6228. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6229. #~ msgstr "Ampliar na direção do mouse não é suportado na perspectiva ortogonal."
  6230. #~ msgid "Orthogonal"
  6231. #~ msgstr "Ortogonal"
  6232. #~ msgctxt "description"
  6233. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6234. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3."
  6235. #~ msgctxt "name"
  6236. #~ msgid "UM3 Network Connection"
  6237. #~ msgstr "Conexão de Rede UM3"
  6238. #~ msgctxt "description"
  6239. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6240. #~ msgstr "Provê informação extra e explicações sobre ajustes do Cura com imagens e animações."
  6241. #~ msgctxt "name"
  6242. #~ msgid "Settings Guide"
  6243. #~ msgstr "Guia de Ajustes"
  6244. #~ msgctxt "@item:inmenu"
  6245. #~ msgid "Cura Settings Guide"
  6246. #~ msgstr "Guia de Ajustes do Cura"
  6247. #~ msgctxt "@info:generic"
  6248. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6249. #~ msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]"
  6250. #~ msgctxt "@title:groupbox"
  6251. #~ msgid "User description"
  6252. #~ msgstr "Descrição do usuário"
  6253. #~ msgctxt "@info"
  6254. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6255. #~ msgstr "Estas opçÕes não estão disponíveis porque você está monitorando uma impressora de nuvem."
  6256. #~ msgctxt "@label link to connect manager"
  6257. #~ msgid "Go to Cura Connect"
  6258. #~ msgstr "Ir ao Cura Connect"
  6259. #~ msgctxt "@info"
  6260. #~ msgid "All jobs are printed."
  6261. #~ msgstr "Todos os trabalhos foram impressos."
  6262. #~ msgctxt "@label link to connect manager"
  6263. #~ msgid "View print history"
  6264. #~ msgstr "Ver histórico de impressão"
  6265. #~ msgctxt "@label"
  6266. #~ msgid ""
  6267. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  6268. #~ "\n"
  6269. #~ "Select your printer from the list below:"
  6270. #~ msgstr ""
  6271. #~ "Para imprimir diretamente para sua impressora pela rede, por favor se certifique que a impressora esteja conectada na rede usando um cabo de rede ou conectando sua impressora na rede WIFI. Se você não conectar o Cura à sua impressora, você ainda pode usar uma unidade USB para transferir arquivos G-"
  6272. #~ "Code para sua impressora.\n"
  6273. #~ "\n"
  6274. #~ "Selecione sua impressora da lista abaixo:"
  6275. #~ msgctxt "@info"
  6276. #~ msgid ""
  6277. #~ "Please make sure your printer has a connection:\n"
  6278. #~ "- Check if the printer is turned on.\n"
  6279. #~ "- Check if the printer is connected to the network."
  6280. #~ msgstr ""
  6281. #~ "Por favor certifique-se que sua impressora está conectada:\n"
  6282. #~ "- Verifique se a impressora está ligada.\n"
  6283. #~ "- Verifique se a impressora está conectada à rede."
  6284. #~ msgctxt "@option:check"
  6285. #~ msgid "See only current build plate"
  6286. #~ msgstr "Ver somente a plataforma de impressão atual"
  6287. #~ msgctxt "@action:button"
  6288. #~ msgid "Arrange to all build plates"
  6289. #~ msgstr "Posicionar em todas as plataformas de impressão"
  6290. #~ msgctxt "@action:button"
  6291. #~ msgid "Arrange current build plate"
  6292. #~ msgstr "Reposicionar a plataforma de impressão atual"
  6293. #~ msgctxt "description"
  6294. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6295. #~ msgstr "Permite salvar a fatia resultante como um arquivo X3G, para suportar impressoras que leem este formato (Malyan, Makerbot e outras impressoras baseadas em Sailfish)."
  6296. #~ msgctxt "name"
  6297. #~ msgid "X3GWriter"
  6298. #~ msgstr "Gerador de X3G"
  6299. #~ msgctxt "description"
  6300. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6301. #~ msgstr "Lê arquivos SVG como caminhos do extrusor, para depurar movimentos da impressora."
  6302. #~ msgctxt "name"
  6303. #~ msgid "SVG Toolpath Reader"
  6304. #~ msgstr "Leitor de Toolpath SVG"
  6305. #~ msgctxt "@item:inmenu"
  6306. #~ msgid "Changelog"
  6307. #~ msgstr "Registro de Alterações"
  6308. #~ msgctxt "@item:inmenu"
  6309. #~ msgid "Show Changelog"
  6310. #~ msgstr "Exibir registro de alterações"
  6311. #~ msgctxt "@info:status"
  6312. #~ msgid "Sending data to remote cluster"
  6313. #~ msgstr "Enviando dados ao cluster remoto"
  6314. #~ msgctxt "@info:status"
  6315. #~ msgid "Connect to Ultimaker Cloud"
  6316. #~ msgstr "Conectar à Ultimaker Cloud"
  6317. #~ msgctxt "@info"
  6318. #~ msgid "Cura collects anonymized usage statistics."
  6319. #~ msgstr "O Cura coleta estatísticas anônimas de uso."
  6320. #~ msgctxt "@info:title"
  6321. #~ msgid "Collecting Data"
  6322. #~ msgstr "Coletando Dados"
  6323. #~ msgctxt "@action:button"
  6324. #~ msgid "More info"
  6325. #~ msgstr "Mais informações"
  6326. #~ msgctxt "@action:tooltip"
  6327. #~ msgid "See more information on what data Cura sends."
  6328. #~ msgstr "Ver mais informações sobre os dados enviados pelo Cura."
  6329. #~ msgctxt "@action:button"
  6330. #~ msgid "Allow"
  6331. #~ msgstr "Permitir"
  6332. #~ msgctxt "@action:tooltip"
  6333. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  6334. #~ msgstr "Permite que o Cura envie estatísticas anônimas de uso para ajudar a priorizar futuras melhorias ao software. Algumas de suas preferências e ajustes são enviados junto à versão atual do Cura e um hash dos modelos que estão sendo fatiados."
  6335. #~ msgctxt "@item:inmenu"
  6336. #~ msgid "Evaluation"
  6337. #~ msgstr "Avaliação"
  6338. #~ msgctxt "@info:title"
  6339. #~ msgid "Network enabled printers"
  6340. #~ msgstr "Impressoras habilitadas em rede"
  6341. #~ msgctxt "@info:title"
  6342. #~ msgid "Local printers"
  6343. #~ msgstr "Impressoras locais"
  6344. #~ msgctxt "@info:backup_failed"
  6345. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6346. #~ msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual."
  6347. #~ msgctxt "@title"
  6348. #~ msgid "Machine Settings"
  6349. #~ msgstr "Ajustes da Máquina"
  6350. #~ msgctxt "@label"
  6351. #~ msgid "Printer Settings"
  6352. #~ msgstr "Ajustes da Impressora"
  6353. #~ msgctxt "@option:check"
  6354. #~ msgid "Origin at center"
  6355. #~ msgstr "Origem no centro"
  6356. #~ msgctxt "@option:check"
  6357. #~ msgid "Heated bed"
  6358. #~ msgstr "Mesa aquecida"
  6359. #~ msgctxt "@label"
  6360. #~ msgid "Printhead Settings"
  6361. #~ msgstr "Ajustes da Cabeça de Impressão"
  6362. #~ msgctxt "@tooltip"
  6363. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6364. #~ msgstr "Distância da esquerda da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  6365. #~ msgctxt "@tooltip"
  6366. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6367. #~ msgstr "Distância da frente da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  6368. #~ msgctxt "@tooltip"
  6369. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6370. #~ msgstr "Distância da direita da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  6371. #~ msgctxt "@tooltip"
  6372. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  6373. #~ msgstr "Distância da traseira da cabeça de impressão ao centro do bico. Usado para prevenir colisões entre impressões anteriores e a cabeça ao imprimir \"Um de cada Vez\"."
  6374. #~ msgctxt "@label"
  6375. #~ msgid "Gantry height"
  6376. #~ msgstr "Altura do eixo"
  6377. #~ msgctxt "@tooltip"
  6378. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  6379. #~ msgstr "A diferença de altura entre a ponta do bico e o sistema de eixos X e Y. Usado para prevenir colisões entre impressões e a cabeça ao imprimir \"Um de cada Vez\"."
  6380. #~ msgctxt "@label"
  6381. #~ msgid "Start G-code"
  6382. #~ msgstr "G-Code Inicial"
  6383. #~ msgctxt "@tooltip"
  6384. #~ msgid "G-code commands to be executed at the very start."
  6385. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  6386. #~ msgctxt "@label"
  6387. #~ msgid "End G-code"
  6388. #~ msgstr "G-Code Final"
  6389. #~ msgctxt "@tooltip"
  6390. #~ msgid "G-code commands to be executed at the very end."
  6391. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  6392. #~ msgctxt "@label"
  6393. #~ msgid "Nozzle Settings"
  6394. #~ msgstr "Ajustes do Bico"
  6395. #~ msgctxt "@tooltip"
  6396. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6397. #~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil."
  6398. #~ msgctxt "@label"
  6399. #~ msgid "Extruder Start G-code"
  6400. #~ msgstr "G-Code Inicial do Extrusor"
  6401. #~ msgctxt "@label"
  6402. #~ msgid "Extruder End G-code"
  6403. #~ msgstr "G-Code Final do Extrusor"
  6404. #~ msgctxt "@label"
  6405. #~ msgid "Changelog"
  6406. #~ msgstr "Registro de alterações"
  6407. #~ msgctxt "@title:window"
  6408. #~ msgid "User Agreement"
  6409. #~ msgstr "Termos de Acordo do Usuário"
  6410. #~ msgctxt "@alabel"
  6411. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6412. #~ msgstr "Introduza o endereço IP ou hostname da sua impressora na rede."
  6413. #~ msgctxt "@info"
  6414. #~ msgid "Please select a network connected printer to monitor."
  6415. #~ msgstr "Por favor selecione uma impressora conectada à rede para monitorar."
  6416. #~ msgctxt "@info"
  6417. #~ msgid "Please connect your Ultimaker printer to your local network."
  6418. #~ msgstr "Por favor conecte sua impressora Ultimaker à sua rede local."
  6419. #~ msgctxt "@text:window"
  6420. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  6421. #~ msgstr "O Cura envia dados anonimamente para a Ultimaker de modo a aprimorar a qualidade de impressão e experiência de usuário. Abaixo há um exemplo de todos os dados que são enviados."
  6422. #~ msgctxt "@text:window"
  6423. #~ msgid "I don't want to send this data"
  6424. #~ msgstr "Não desejo enviar estes dados"
  6425. #~ msgctxt "@text:window"
  6426. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6427. #~ msgstr "Permitir enviar estes dados à Ultimaker para ajudar a melhorar o Cura"
  6428. #~ msgctxt "@label"
  6429. #~ msgid "No print selected"
  6430. #~ msgstr "Nenhuma impressão selecionada"
  6431. #~ msgctxt "@info:tooltip"
  6432. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  6433. #~ msgstr "Por default, pixels brancos representam pontos altos da malha e pontos pretos representam pontos baixos da malha. Altere esta opção para inverter o comportamento tal que pixels pretos representem pontos altos da malha e pontos brancos representam pontos baixos da malha."
  6434. #~ msgctxt "@title"
  6435. #~ msgid "Select Printer Upgrades"
  6436. #~ msgstr "Seleccionar Atualizações da Impressora"
  6437. #~ msgctxt "@label"
  6438. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  6439. #~ msgstr "Selecione qual extrusor a usar para o suporte. Isto construirá estruturas de suportes abaixo do modelo para prevenir que o modelo desabe ou seja impresso no ar."
  6440. #~ msgctxt "@tooltip"
  6441. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6442. #~ msgstr "Este perfil de qualidade não está disponível para sua configuração atual de material e bico. Por favor altere-os para habilitar este perfil de qualidade"
  6443. #~ msgctxt "@label shown when we load a Gcode file"
  6444. #~ msgid "Print setup disabled. G code file can not be modified."
  6445. #~ msgstr "Configuração de impressão desabilitada. Arquivo de G-Code não pode ser modificado."
  6446. #~ msgctxt "@label"
  6447. #~ msgid "See the material compatibility chart"
  6448. #~ msgstr "Veja o diagrama de compatibilidade de material"
  6449. #~ msgctxt "@label"
  6450. #~ msgid "View types"
  6451. #~ msgstr "Ver tipos"
  6452. #~ msgctxt "@label"
  6453. #~ msgid "Hi "
  6454. #~ msgstr "Oi "
  6455. #~ msgctxt "@text"
  6456. #~ msgid ""
  6457. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6458. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6459. #~ "- Get exclusive access to material profiles from leading brands"
  6460. #~ msgstr ""
  6461. #~ "- Envia trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  6462. #~ "- Guarda seus ajustes do Ultimaker Cura na nuvem para uso em qualquer lugar\n"
  6463. #~ "- Obtém acesso exclusivo a perfis de material de marcas reconhecidas"
  6464. #~ msgctxt "@label:PrintjobStatus"
  6465. #~ msgid "Unable to Slice"
  6466. #~ msgstr "Não Foi Possível Fatiar"
  6467. #~ msgctxt "@label"
  6468. #~ msgid "Time specification"
  6469. #~ msgstr "Especificação de tempo"
  6470. #~ msgctxt "@label"
  6471. #~ msgid "Material specification"
  6472. #~ msgstr "Especificação de material"
  6473. #~ msgctxt "@title:tab"
  6474. #~ msgid "Add a printer to Cura"
  6475. #~ msgstr "Adiciona uma impressora ao Cura"
  6476. #~ msgctxt "@title:tab"
  6477. #~ msgid ""
  6478. #~ "Select the printer you want to use from the list below.\n"
  6479. #~ "\n"
  6480. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  6481. #~ msgstr ""
  6482. #~ "Selecione a impressora que deseja usar da lista abaixo.\n"
  6483. #~ "\n"
  6484. #~ "Se sua impressora não está na lista, use a \"Impressora FFF Personalizada\" da categoria \"Personalizado\" e ajuste de acordo com a sua impressora no diálogo a seguir."
  6485. #~ msgctxt "@label"
  6486. #~ msgid "Printer Name"
  6487. #~ msgstr "Nome da Impressora"
  6488. #~ msgctxt "@action:button"
  6489. #~ msgid "Add Printer"
  6490. #~ msgstr "Adicionar Impressora"
  6491. #~ msgid "Modify G-Code"
  6492. #~ msgstr "Modificar G-Code"
  6493. #~ msgctxt "@info:status"
  6494. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6495. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem."
  6496. #~ msgctxt "@info:status"
  6497. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6498. #~ msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada."
  6499. #~ msgctxt "@info:title"
  6500. #~ msgid "Incompatible Material"
  6501. #~ msgstr "Material Incompatível"
  6502. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6503. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6504. #~ msgstr "Falha ao importa perfil de <filename>{0}</filename>: <message>{1}</message>"
  6505. #~ msgctxt "@title"
  6506. #~ msgid "Toolbox"
  6507. #~ msgstr "Ferramentas"
  6508. #~ msgctxt "@label"
  6509. #~ msgid "Not available"
  6510. #~ msgstr "Não disponível"
  6511. #~ msgctxt "@label"
  6512. #~ msgid "Unreachable"
  6513. #~ msgstr "Inacessível"
  6514. #~ msgctxt "@label"
  6515. #~ msgid "Available"
  6516. #~ msgstr "Disponível"
  6517. #~ msgctxt "@label:status"
  6518. #~ msgid "Preparing"
  6519. #~ msgstr "Preparando"
  6520. #~ msgctxt "@label:status"
  6521. #~ msgid "Pausing"
  6522. #~ msgstr "Pausando"
  6523. #~ msgctxt "@label:status"
  6524. #~ msgid "Resuming"
  6525. #~ msgstr "Continuando"
  6526. #~ msgctxt "@label"
  6527. #~ msgid "Waiting for: Unavailable printer"
  6528. #~ msgstr "Aguardando por: Impressora indisponível"
  6529. #~ msgctxt "@label"
  6530. #~ msgid "Waiting for: First available"
  6531. #~ msgstr "Aguardando por: A primeira disponível"
  6532. #~ msgctxt "@label"
  6533. #~ msgid "Waiting for: "
  6534. #~ msgstr "Aguardando por: "
  6535. #~ msgctxt "@label"
  6536. #~ msgid "Configuration change"
  6537. #~ msgstr "Alteração de configuração"
  6538. #~ msgctxt "@label"
  6539. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6540. #~ msgstr "A impressora atribuída, %1, requer as seguintes alterações de configuração:"
  6541. #~ msgctxt "@label"
  6542. #~ msgid "Override"
  6543. #~ msgstr "Sobrepôr"
  6544. #~ msgctxt "@label"
  6545. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  6546. #~ msgstr "Iniciar um trabalho de impressão com configuração incompatível pode danificar sua impressora 3D. Voce tem certeza que quer sobrepôr a configuração e imprimir %1?"
  6547. #~ msgctxt "@window:title"
  6548. #~ msgid "Override configuration configuration and start print"
  6549. #~ msgstr "Sobrepôr configuração e iniciar impressão"
  6550. #~ msgctxt "@label link to connect manager"
  6551. #~ msgid "Manage queue"
  6552. #~ msgstr "Gerenciar fila"
  6553. #~ msgctxt "@label"
  6554. #~ msgid "Printing"
  6555. #~ msgstr "Imprimindo"
  6556. #~ msgctxt "@label link to connect manager"
  6557. #~ msgid "Manage printers"
  6558. #~ msgstr "Gerenciar impressoras"
  6559. #~ msgctxt "@action:button"
  6560. #~ msgid "Activate Configuration"
  6561. #~ msgstr "Ativar Configuração"
  6562. #~ msgctxt "@info:tooltip"
  6563. #~ msgid "Load the configuration of the printer into Cura"
  6564. #~ msgstr "Carrega a configuração da impressora no Cura"
  6565. #~ msgctxt "@label"
  6566. #~ msgid "Show Travels"
  6567. #~ msgstr "Exibir Percursos"
  6568. #~ msgctxt "@label"
  6569. #~ msgid "Show Helpers"
  6570. #~ msgstr "Exibir Assistentes"
  6571. #~ msgctxt "@label"
  6572. #~ msgid "Show Shell"
  6573. #~ msgstr "Exibir Perímetro"
  6574. #~ msgctxt "@label"
  6575. #~ msgid "Show Infill"
  6576. #~ msgstr "Exibir Preenchimento"
  6577. #~ msgctxt "@text:window"
  6578. #~ msgid "I don't want to send these data"
  6579. #~ msgstr "Eu não quero enviar estes dados"
  6580. #~ msgctxt "@text:window"
  6581. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6582. #~ msgstr "Permite o envio destes dados para a Ultimaker e nos auxilia a aprimorar o Cura"
  6583. #~ msgctxt "@label"
  6584. #~ msgid "Printer type:"
  6585. #~ msgstr "Tipo de impressora:"
  6586. #~ msgctxt "@label"
  6587. #~ msgid "Connection:"
  6588. #~ msgstr "Conexão:"
  6589. #~ msgctxt "@label"
  6590. #~ msgid "State:"
  6591. #~ msgstr "Estado:"
  6592. #~ msgctxt "@label:MonitorStatus"
  6593. #~ msgid "Waiting for a printjob"
  6594. #~ msgstr "Esperando um trabalho de impressão"
  6595. #~ msgctxt "@label:MonitorStatus"
  6596. #~ msgid "Waiting for someone to clear the build plate"
  6597. #~ msgstr "Esperando que alguém esvazie a mesa de impressão"
  6598. #~ msgctxt "@label:MonitorStatus"
  6599. #~ msgid "Aborting print..."
  6600. #~ msgstr "Abortando impressão..."
  6601. #~ msgctxt "@label"
  6602. #~ msgid "Protected profiles"
  6603. #~ msgstr "Perfis Protegidos"
  6604. #~ msgctxt "@label"
  6605. #~ msgid "Printer Name:"
  6606. #~ msgstr "Nome da Impressora:"
  6607. #~ msgctxt "@label"
  6608. #~ msgid "Profile:"
  6609. #~ msgstr "Perfil:"
  6610. #~ msgctxt "@label:textbox"
  6611. #~ msgid "Search..."
  6612. #~ msgstr "Buscar..."
  6613. #~ msgctxt "@action:inmenu"
  6614. #~ msgid "Collapse All"
  6615. #~ msgstr "Encolher Todos"
  6616. #~ msgctxt "@action:inmenu"
  6617. #~ msgid "Expand All"
  6618. #~ msgstr "Expandir Todos"
  6619. #~ msgctxt "@label:header configurations"
  6620. #~ msgid "Available configurations"
  6621. #~ msgstr "Configurações disponíveis"
  6622. #~ msgctxt "@label:extruder label"
  6623. #~ msgid "Extruder"
  6624. #~ msgstr "Extrusor"
  6625. #~ msgctxt "@label:extruder label"
  6626. #~ msgid "Yes"
  6627. #~ msgstr "Sim"
  6628. #~ msgctxt "@label:extruder label"
  6629. #~ msgid "No"
  6630. #~ msgstr "Não"
  6631. #~ msgctxt "@label:listbox"
  6632. #~ msgid "Print Setup"
  6633. #~ msgstr "Configuração de Impressão"
  6634. #~ msgctxt "@label:listbox"
  6635. #~ msgid ""
  6636. #~ "Print Setup disabled\n"
  6637. #~ "G-code files cannot be modified"
  6638. #~ msgstr ""
  6639. #~ "Configuração de Impressão desabilitada\n"
  6640. #~ "Arquivos G-Code não podem ser modificados"
  6641. #~ msgctxt "@label Hours and minutes"
  6642. #~ msgid "00h 00min"
  6643. #~ msgstr "00h 00min"
  6644. #~ msgctxt "@tooltip"
  6645. #~ msgid "Time specification"
  6646. #~ msgstr "Especificação de tempo"
  6647. #~ msgctxt "@label"
  6648. #~ msgid "Cost specification"
  6649. #~ msgstr "Especificação de custo"
  6650. #~ msgctxt "@label"
  6651. #~ msgid "Total:"
  6652. #~ msgstr "Total:"
  6653. #~ msgctxt "@tooltip"
  6654. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6655. #~ msgstr "<b>Configuração Recomendada de Impressão</b><br/><br/>Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados."
  6656. #~ msgctxt "@tooltip"
  6657. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6658. #~ msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com controle fino sobre cada parte do processo de fatiamento."
  6659. #~ msgctxt "@action:inmenu menubar:help"
  6660. #~ msgid "Show Engine &Log..."
  6661. #~ msgstr "Exibir o Registro do Motor de Fatiamento (&L)..."
  6662. #~ msgctxt "@action:menu"
  6663. #~ msgid "Browse packages..."
  6664. #~ msgstr "Navegar pacotes..."
  6665. #~ msgctxt "@action:inmenu menubar:view"
  6666. #~ msgid "Expand/Collapse Sidebar"
  6667. #~ msgstr "Expandir/Encolher Barra Lateral"
  6668. #~ msgctxt "@label:PrintjobStatus"
  6669. #~ msgid "Please load a 3D model"
  6670. #~ msgstr "Por favor carregue um modelo 3D"
  6671. #~ msgctxt "@label:PrintjobStatus"
  6672. #~ msgid "Ready to slice"
  6673. #~ msgstr "Pronto para fatiar"
  6674. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6675. #~ msgid "Ready to %1"
  6676. #~ msgstr "Pronto para %1"
  6677. #~ msgctxt "@label:PrintjobStatus"
  6678. #~ msgid "Slicing unavailable"
  6679. #~ msgstr "Fatiamento indisponível"
  6680. #~ msgctxt "@info:tooltip"
  6681. #~ msgid "Slice current printjob"
  6682. #~ msgstr "Fatiar trabalho de impressão atual"
  6683. #~ msgctxt "@info:tooltip"
  6684. #~ msgid "Cancel slicing process"
  6685. #~ msgstr "Cancelar processo de fatiamento"
  6686. #~ msgctxt "@label:Printjob"
  6687. #~ msgid "Prepare"
  6688. #~ msgstr "Preparar"
  6689. #~ msgctxt "@label:Printjob"
  6690. #~ msgid "Cancel"
  6691. #~ msgstr "Cancelar"
  6692. #~ msgctxt "@info:tooltip"
  6693. #~ msgid "Select the active output device"
  6694. #~ msgstr "Selecione o dispositivo de saída ativo"
  6695. #~ msgctxt "@title:menu"
  6696. #~ msgid "&View"
  6697. #~ msgstr "&Ver"
  6698. #~ msgctxt "@title:menu"
  6699. #~ msgid "&Settings"
  6700. #~ msgstr "Aju&stes"
  6701. #~ msgctxt "@title:menu menubar:toplevel"
  6702. #~ msgid "&Toolbox"
  6703. #~ msgstr "Ferramen&tas"
  6704. #~ msgctxt "@action:button"
  6705. #~ msgid "Open File"
  6706. #~ msgstr "Abrir arquivo"
  6707. #~ msgctxt "@tooltip"
  6708. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6709. #~ msgstr "Este perfil de qualidade não está disponível para seu material e sua configuração de bicos atuais. Por favor altere-os para abilitar este perfil de qualidade"
  6710. #~ msgctxt "@label"
  6711. #~ msgid "Print Speed"
  6712. #~ msgstr "Velocidade de Impressão"
  6713. #~ msgctxt "@label"
  6714. #~ msgid "Slower"
  6715. #~ msgstr "Mais Lento"
  6716. #~ msgctxt "@label"
  6717. #~ msgid "Faster"
  6718. #~ msgstr "Mais Rápido"
  6719. #~ msgctxt "@label"
  6720. #~ msgid "Enable gradual"
  6721. #~ msgstr "Habilitar gradual"
  6722. #~ msgctxt "@label"
  6723. #~ msgid "Generate Support"
  6724. #~ msgstr "Gerar Suportes"
  6725. #~ msgctxt "@label"
  6726. #~ msgid "Build Plate Adhesion"
  6727. #~ msgstr "Aderência à Mesa de Impressão"
  6728. #~ msgctxt "@label"
  6729. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6730. #~ msgstr "Precisa de ajuda para melhorar sua impressões?<br>Leia os <a href='%1'>Guias de Resolução de Problema da Ultimaker</a>"
  6731. #~ msgctxt "@title:window"
  6732. #~ msgid "Engine Log"
  6733. #~ msgstr "Registro do Motor de Fatiamento"
  6734. #~ msgctxt "@label"
  6735. #~ msgid "Printer type"
  6736. #~ msgstr "Tipo de impressora"
  6737. #~ msgctxt "@label"
  6738. #~ msgid "Use glue with this material combination"
  6739. #~ msgstr "Use cola com esta combinação de materiais"
  6740. #~ msgctxt "@label"
  6741. #~ msgid "Check compatibility"
  6742. #~ msgstr "Verificar compatibilidade"
  6743. #~ msgctxt "@tooltip"
  6744. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6745. #~ msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com."
  6746. #~ msgctxt "description"
  6747. #~ msgid "Shows changes since latest checked version."
  6748. #~ msgstr "Mostra alterações desde a última versão verificada."
  6749. #~ msgctxt "name"
  6750. #~ msgid "Changelog"
  6751. #~ msgstr "Registro de Alterações"
  6752. #~ msgctxt "description"
  6753. #~ msgid "Create a flattend quality changes profile."
  6754. #~ msgstr "Cria um perfil de alterações achatado."
  6755. #~ msgctxt "name"
  6756. #~ msgid "Profile flatener"
  6757. #~ msgstr "Achatador de Perfil"
  6758. #~ msgctxt "description"
  6759. #~ msgid "Ask the user once if he/she agrees with our license."
  6760. #~ msgstr "Perguntar ao usuário uma vez se concorda com nossa licença."
  6761. #~ msgctxt "name"
  6762. #~ msgid "UserAgreement"
  6763. #~ msgstr "Acordo de Usuário"
  6764. #~ msgctxt "@warning:status"
  6765. #~ msgid "Please generate G-code before saving."
  6766. #~ msgstr "Por favor gere o G-Code antes de salvar."
  6767. #~ msgctxt "@action"
  6768. #~ msgid "Upgrade Firmware"
  6769. #~ msgstr "Atualizar Firmware"
  6770. #~ msgctxt "@label unknown material"
  6771. #~ msgid "Unknown"
  6772. #~ msgstr "Desconhecido"
  6773. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6774. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6775. #~ msgstr "Não há perfil personalizado para importar no arquivo <filename>{0}</filename>"
  6776. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6777. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6778. #~ msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  6779. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6780. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6781. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> ({1}) não corresponde à sua máquina atual ({2}), não foi possível importá-la."
  6782. #~ msgctxt "@title:window"
  6783. #~ msgid "Confirm uninstall "
  6784. #~ msgstr "Confirme a deinstalação"
  6785. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6786. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6787. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6788. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6789. #~ msgid "%1m / ~ %2g"
  6790. #~ msgstr "%1m / ~ %2g"
  6791. #~ msgctxt "@title"
  6792. #~ msgid "Upgrade Firmware"
  6793. #~ msgstr "Atualizar Firmware"
  6794. #~ msgctxt "@action:button"
  6795. #~ msgid "Print with Doodle3D WiFi-Box"
  6796. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6797. #~ msgctxt "@properties:tooltip"
  6798. #~ msgid "Print with Doodle3D WiFi-Box"
  6799. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6800. #~ msgctxt "@info:status"
  6801. #~ msgid "Connecting to Doodle3D Connect"
  6802. #~ msgstr "Conectando ao Doodle3D Connect"
  6803. #~ msgctxt "@info:status"
  6804. #~ msgid "Sending data to Doodle3D Connect"
  6805. #~ msgstr "Enviando dados ao Doodle3D Connect"
  6806. #~ msgctxt "@info:status"
  6807. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6808. #~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?"
  6809. #~ msgctxt "@info:status"
  6810. #~ msgid "Storing data on Doodle3D Connect"
  6811. #~ msgstr "Armazenando dados no Doodle3D Connect"
  6812. #~ msgctxt "@info:status"
  6813. #~ msgid "File sent to Doodle3D Connect"
  6814. #~ msgstr "Arquivo enviado ao Doodle3D Connect"
  6815. #~ msgctxt "@action:button"
  6816. #~ msgid "Open Connect..."
  6817. #~ msgstr "Abrir Connect..."
  6818. #~ msgctxt "@info:tooltip"
  6819. #~ msgid "Open the Doodle3D Connect web interface"
  6820. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  6821. #~ msgctxt "@item:inlistbox"
  6822. #~ msgid "Blender file"
  6823. #~ msgstr "Arquivo do Blender"
  6824. #~ msgctxt "@info:status"
  6825. #~ msgid ""
  6826. #~ "Could not export using \"{}\" quality!\n"
  6827. #~ "Felt back to \"{}\"."
  6828. #~ msgstr ""
  6829. #~ "Não foi possível exportar usando qualidade \"{}\"!\n"
  6830. #~ "Foi usada a \"{}\"."
  6831. #~ msgctxt "@label"
  6832. #~ msgid "Contact"
  6833. #~ msgstr "Contato"
  6834. #~ msgctxt "@label"
  6835. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6836. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3."
  6837. #~ msgctxt "@label"
  6838. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6839. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3."
  6840. #~ msgctxt "@label: arg 1 is group name"
  6841. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6842. #~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas"
  6843. #~ msgctxt "@label link to connect manager"
  6844. #~ msgid "Add/Remove printers"
  6845. #~ msgstr "Adicionar/Remover impressoras"
  6846. #~ msgctxt "@info:tooltip"
  6847. #~ msgid "Opens the print jobs page with your default web browser."
  6848. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador default."
  6849. #~ msgctxt "@action:button"
  6850. #~ msgid "View print jobs"
  6851. #~ msgstr "Visualizar trabalhos de impressão"
  6852. #~ msgctxt "@label:status"
  6853. #~ msgid "Preparing to print"
  6854. #~ msgstr "Preparando para imprimir"
  6855. #~ msgctxt "@label:status"
  6856. #~ msgid "Available"
  6857. #~ msgstr "Disponível"
  6858. #~ msgctxt "@label:status"
  6859. #~ msgid "Lost connection with the printer"
  6860. #~ msgstr "Conexão à impressora perdida"
  6861. #~ msgctxt "@label:status"
  6862. #~ msgid "Unknown"
  6863. #~ msgstr "Desconhecido"
  6864. #~ msgctxt "@label:status"
  6865. #~ msgid "Disabled"
  6866. #~ msgstr "Desabilitado"
  6867. #~ msgctxt "@label:status"
  6868. #~ msgid "Reserved"
  6869. #~ msgstr "Reservado"
  6870. #~ msgctxt "@label"
  6871. #~ msgid "Preparing to print"
  6872. #~ msgstr "Preparando para imprimir"
  6873. #~ msgctxt "@label:status"
  6874. #~ msgid "Print aborted"
  6875. #~ msgstr "A impressão foi interrompida"
  6876. #~ msgctxt "@label"
  6877. #~ msgid "Not accepting print jobs"
  6878. #~ msgstr "Não aceitando trabalhos de impressão"
  6879. #~ msgctxt "@label"
  6880. #~ msgid "Finishes at: "
  6881. #~ msgstr "Termina em: "
  6882. #~ msgctxt "@label"
  6883. #~ msgid "Clear build plate"
  6884. #~ msgstr "Esvaziar a mesa de impressão"
  6885. #~ msgctxt "@label"
  6886. #~ msgid "Waiting for configuration change"
  6887. #~ msgstr "Esperando alteração de configuração"
  6888. #~ msgctxt "@title"
  6889. #~ msgid "Print jobs"
  6890. #~ msgstr "Trabalhos de impressão"
  6891. #~ msgctxt "@label:title"
  6892. #~ msgid "Printers"
  6893. #~ msgstr "Impressoras"
  6894. #~ msgctxt "@action:button"
  6895. #~ msgid "View printers"
  6896. #~ msgstr "Visualizar impressoras"
  6897. #~ msgctxt "@label:"
  6898. #~ msgid "Pause"
  6899. #~ msgstr "Pausar"
  6900. #~ msgctxt "@label:"
  6901. #~ msgid "Resume"
  6902. #~ msgstr "Continuar"
  6903. #~ msgctxt "@label:"
  6904. #~ msgid "Abort Print"
  6905. #~ msgstr "Abortar Impressão"
  6906. #~ msgctxt "@option:openProject"
  6907. #~ msgid "Always ask"
  6908. #~ msgstr "Sempre perguntar"
  6909. #~ msgctxt "@label"
  6910. #~ msgid "Override Profile"
  6911. #~ msgstr "Sobrescrever Perfil"
  6912. #~ msgctxt "@info:tooltip"
  6913. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6914. #~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)"
  6915. #~ msgctxt "@option:check"
  6916. #~ msgid "Do not arrange objects on load"
  6917. #~ msgstr "Não posicionar objetos ao carregar."
  6918. #~ msgctxt "@action:inmenu menubar:file"
  6919. #~ msgid "&Save Selection to File"
  6920. #~ msgstr "Salvar &Seleção em Arquivo"
  6921. #~ msgctxt "@title:menu menubar:file"
  6922. #~ msgid "Save &As..."
  6923. #~ msgstr "S&alvar Como..."
  6924. #~ msgctxt "@title:menu menubar:file"
  6925. #~ msgid "Save &Project..."
  6926. #~ msgstr "Salvar &Projeto..."
  6927. #~ msgctxt "@label"
  6928. #~ msgid "Use adhesion sheet or glue with this material combination"
  6929. #~ msgstr "Use camada de aderência ou cola com esta combinação de material"
  6930. #~ msgctxt "description"
  6931. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6932. #~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D."
  6933. #~ msgctxt "name"
  6934. #~ msgid "Doodle3D WiFi-Box"
  6935. #~ msgstr "WiFi-Box Doodle3D"
  6936. #~ msgctxt "description"
  6937. #~ msgid "Provides an edit window for direct script editing."
  6938. #~ msgstr "Provê uma janela de edição para edição direta de script."
  6939. #~ msgctxt "name"
  6940. #~ msgid "Live scripting tool"
  6941. #~ msgstr "Ferramenta de scripting integrada"
  6942. #~ msgctxt "description"
  6943. #~ msgid "Helps to open Blender files directly in Cura."
  6944. #~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura."
  6945. #~ msgctxt "name"
  6946. #~ msgid "Blender Integration (experimental)"
  6947. #~ msgstr "Integração ao Blender (experimental)"
  6948. #~ msgctxt "@info:title"
  6949. #~ msgid "Model Checker Warning"
  6950. #~ msgstr "Alerta de Verificador de Modelo"
  6951. #~ msgctxt "@info:status"
  6952. #~ msgid ""
  6953. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6954. #~ "Tips that may be useful to improve the print quality:\n"
  6955. #~ "1) Use rounded corners.\n"
  6956. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6957. #~ "3) Use a different material."
  6958. #~ msgstr ""
  6959. #~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n"
  6960. #~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n"
  6961. #~ "1) Use cantos arredondados.\n"
  6962. #~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n"
  6963. #~ "3) Use material diferente."
  6964. #~ msgctxt "@info:status"
  6965. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6966. #~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks."
  6967. #~ msgctxt "@info:status"
  6968. #~ msgid ""
  6969. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6970. #~ "\n"
  6971. #~ "Thanks!"
  6972. #~ msgstr ""
  6973. #~ "Não foram encontrados modelos dentro do seu desenho. Poderia por favor verificar seu conteúdo novamente e assegurar-se que pelo menos uma parte ou montagem está inclusa?\n"
  6974. #~ "\n"
  6975. #~ "Obrigado!"
  6976. #~ msgctxt "@info:status"
  6977. #~ msgid ""
  6978. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6979. #~ "\n"
  6980. #~ "Sorry!"
  6981. #~ msgstr ""
  6982. #~ "Foi encontrada mais de uma parte ou montagem dentro do seu desenho. Atualmente somente desenhos com exatamente uma parte ou montagem dentro são suportados.\n"
  6983. #~ "\n"
  6984. #~ "Desculpe!"
  6985. #~ msgctxt "@item:inlistbox"
  6986. #~ msgid "SolidWorks part file"
  6987. #~ msgstr "Arquivo de parte de SolidWorks"
  6988. #~ msgctxt "@item:inlistbox"
  6989. #~ msgid "SolidWorks assembly file"
  6990. #~ msgstr "Arquivo de montagem de SolidWorks"
  6991. #~ msgctxt "@item:inlistbox"
  6992. #~ msgid "SolidWorks drawing file"
  6993. #~ msgstr "Arquivo de desenho do SolidWorks"
  6994. #~ msgctxt "@info:status"
  6995. #~ msgid ""
  6996. #~ "Dear customer,\n"
  6997. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6998. #~ "\n"
  6999. #~ "With kind regards\n"
  7000. #~ " - Thomas Karl Pietrowski"
  7001. #~ msgstr ""
  7002. #~ "Caro cliente,\n"
  7003. #~ "Não foi encontrada uma intalação válida de SolidWorks no seu sistema. Isso significa que ou o SolidWorks não está instalado ou você nào tem licença válida. Por favor se assegure que rodar o Solidworks funciona sem problemas e/ou contate seu suporte.\n"
  7004. #~ "\n"
  7005. #~ "Atenciosamente\n"
  7006. #~ " - Thomas Karl Pietrowski"
  7007. #~ msgctxt "@info:status"
  7008. #~ msgid ""
  7009. #~ "Dear customer,\n"
  7010. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  7011. #~ "\n"
  7012. #~ "With kind regards\n"
  7013. #~ " - Thomas Karl Pietrowski"
  7014. #~ msgstr ""
  7015. #~ "Caro cliente,\n"
  7016. #~ "Você está no momento rodando este complemento em um sistema operacional diferente de Windows. Este complemento só funcionará no Windows com o SolidWorks instalado e com licença válida. Por favor instale este complemento em uma máquina Windows com o SolidWorks instalado.\n"
  7017. #~ "\n"
  7018. #~ "Atenciosamente\n"
  7019. #~ " - Thomas Karl Pietrowski"
  7020. #~ msgid "Configure"
  7021. #~ msgstr "Configure"
  7022. #~ msgid "Installation guide for SolidWorks macro"
  7023. #~ msgstr "Guia de Instalação para macro do SolidWorks"
  7024. #~ msgctxt "@action:button"
  7025. #~ msgid "Disable"
  7026. #~ msgstr "Desabilitar"
  7027. #~ msgctxt "@action:tooltip"
  7028. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7029. #~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências."
  7030. #~ msgid "Install"
  7031. #~ msgstr "Instalar"
  7032. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7033. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor verifique seu UGII_USER_DIR. Ele não está configurado para um diretório."
  7034. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7035. #~ msgstr "Plugin Siemens NX do Cura instalado com sucesso."
  7036. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7037. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR."
  7038. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7039. #~ msgstr "Erro ao instalar arquivos de complementos Siemens NX. Não foi possível ajustar a variável de ambiente UGII_USER_DIR para o Simenes NX."
  7040. #~ msgctxt "@info:status"
  7041. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7042. #~ msgstr "Falha ao pegar identificador do complemento de <filename>{0}</filename>"
  7043. #~ msgctxt "@info:tile"
  7044. #~ msgid "Warning"
  7045. #~ msgstr "Aviso"
  7046. #~ msgctxt "@window:title"
  7047. #~ msgid "Plugin browser"
  7048. #~ msgstr "Navegador de complementos"
  7049. #~ msgctxt "@label"
  7050. #~ msgid "Ultimaker 3"
  7051. #~ msgstr "Ultimaker 3"
  7052. #~ msgctxt "@label"
  7053. #~ msgid "Ultimaker 3 Extended"
  7054. #~ msgstr "Ultimaker 3 Extended"
  7055. #~ msgctxt "@title:window"
  7056. #~ msgid "SolidWorks: Export wizard"
  7057. #~ msgstr "SolidWorks: Assistente de Exportação"
  7058. #~ msgctxt "@action:label"
  7059. #~ msgid "Quality:"
  7060. #~ msgstr "Qualidade"
  7061. #~ msgctxt "@option:curaSolidworksStlQuality"
  7062. #~ msgid "Fine (3D-printing)"
  7063. #~ msgstr "Fina (impressão-3D)"
  7064. #~ msgctxt "@option:curaSolidworksStlQuality"
  7065. #~ msgid "Coarse (3D-printing)"
  7066. #~ msgstr "Baixa"
  7067. #~ msgctxt "@option:curaSolidworksStlQuality"
  7068. #~ msgid "Fine (SolidWorks)"
  7069. #~ msgstr "Fina (SolidWorks)"
  7070. #~ msgctxt "@option:curaSolidworksStlQuality"
  7071. #~ msgid "Coarse (SolidWorks)"
  7072. #~ msgstr "Baixa (SolidWorks)"
  7073. #~ msgctxt "@text:window"
  7074. #~ msgid "Show this dialog again"
  7075. #~ msgstr "Mostrar este diálogo novamente"
  7076. #~ msgctxt "@action:button"
  7077. #~ msgid "Continue"
  7078. #~ msgstr "Continuar"
  7079. #~ msgctxt "@action:button"
  7080. #~ msgid "Abort"
  7081. #~ msgstr "Abortar"
  7082. #~ msgctxt "@title:window"
  7083. #~ msgid "How to install Cura SolidWorks macro"
  7084. #~ msgstr "Como instalar a macro de SolidWorks do Cura"
  7085. #~ msgctxt "@description:label"
  7086. #~ msgid "Steps:"
  7087. #~ msgstr "Passos:"
  7088. #~ msgctxt "@action:button"
  7089. #~ msgid ""
  7090. #~ "Open the directory\n"
  7091. #~ "with macro and icon"
  7092. #~ msgstr ""
  7093. #~ "Abrir o diretório\n"
  7094. #~ "com a macro e o ícone"
  7095. #~ msgctxt "@description:label"
  7096. #~ msgid "Instructions:"
  7097. #~ msgstr "Instruções:"
  7098. #~ msgctxt "@action:playpause"
  7099. #~ msgid "Play"
  7100. #~ msgstr "Tocar"
  7101. #~ msgctxt "@action:playpause"
  7102. #~ msgid "Pause"
  7103. #~ msgstr "Pausar"
  7104. #~ msgctxt "@action:button"
  7105. #~ msgid "Previous Step"
  7106. #~ msgstr "Passo Anterior"
  7107. #~ msgctxt "@action:button"
  7108. #~ msgid "Done"
  7109. #~ msgstr "Finalizado"
  7110. #~ msgctxt "@action:button"
  7111. #~ msgid "Next Step"
  7112. #~ msgstr "Passo Seguinte"
  7113. #~ msgctxt "@title:window"
  7114. #~ msgid "SolidWorks plugin: Configuration"
  7115. #~ msgstr "Complemento do SolidWorks: Configuração"
  7116. #~ msgctxt "@title:tab"
  7117. #~ msgid "Conversion settings"
  7118. #~ msgstr "Ajustes de conversão"
  7119. #~ msgctxt "@label"
  7120. #~ msgid "First choice:"
  7121. #~ msgstr "Primeira escolha:"
  7122. #~ msgctxt "@text:menu"
  7123. #~ msgid "Latest installed version (Recommended)"
  7124. #~ msgstr "Última versão instalada (Recomendado)"
  7125. #~ msgctxt "@text:menu"
  7126. #~ msgid "Default version"
  7127. #~ msgstr "Versão default"
  7128. #~ msgctxt "@label"
  7129. #~ msgid "Show wizard before opening SolidWorks files"
  7130. #~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks"
  7131. #~ msgctxt "@label"
  7132. #~ msgid "Automatically rotate opened file into normed orientation"
  7133. #~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada"
  7134. #~ msgctxt "@title:tab"
  7135. #~ msgid "Installation(s)"
  7136. #~ msgstr "Instalações"
  7137. #~ msgctxt "@label"
  7138. #~ msgid "COM service found"
  7139. #~ msgstr "Serviço COM encontrado"
  7140. #~ msgctxt "@label"
  7141. #~ msgid "Executable found"
  7142. #~ msgstr "Executável encontrado"
  7143. #~ msgctxt "@label"
  7144. #~ msgid "COM starting"
  7145. #~ msgstr "COM iniciando"
  7146. #~ msgctxt "@label"
  7147. #~ msgid "Revision number"
  7148. #~ msgstr "Número de revisão"
  7149. #~ msgctxt "@label"
  7150. #~ msgid "Functions available"
  7151. #~ msgstr "Funções disponíveis"
  7152. #~ msgctxt "@label (%1 is object name)"
  7153. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7154. #~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?"
  7155. #~ msgctxt "@action:menu"
  7156. #~ msgid "Browse plugins..."
  7157. #~ msgstr "Navegar complementos..."
  7158. #~ msgctxt "@title:menu menubar:toplevel"
  7159. #~ msgid "P&lugins"
  7160. #~ msgstr "Comp&lementos"
  7161. #~ msgctxt "@window:title"
  7162. #~ msgid "Install Plugin"
  7163. #~ msgstr "Instalar Complemento"
  7164. #~ msgctxt "description"
  7165. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7166. #~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)"
  7167. #~ msgctxt "description"
  7168. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7169. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3"
  7170. #~ msgctxt "description"
  7171. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7172. #~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais."
  7173. #~ msgctxt "name"
  7174. #~ msgid "SolidWorks Integration"
  7175. #~ msgstr "Integração ao SolidWorks"
  7176. #~ msgctxt "description"
  7177. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7178. #~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações."
  7179. #~ msgctxt "name"
  7180. #~ msgid "Auto Save"
  7181. #~ msgstr "Auto-Salvar"
  7182. #~ msgctxt "description"
  7183. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7184. #~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX."
  7185. #~ msgctxt "name"
  7186. #~ msgid "Siemens NX Integration"
  7187. #~ msgstr "Integração ao Siemens NX"
  7188. #~ msgctxt "description"
  7189. #~ msgid "Find, manage and install new plugins."
  7190. #~ msgstr "Busca, gerencia e instala novos complementos."
  7191. #~ msgctxt "name"
  7192. #~ msgid "Plugin Browser"
  7193. #~ msgstr "Navegador de Complementos"
  7194. #~ msgctxt "description"
  7195. #~ msgid "Ask the user once if he/she agrees with our license"
  7196. #~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença"
  7197. #~ msgctxt "description"
  7198. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7199. #~ msgstr "Provê ações de máquina para Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)"
  7200. #~ msgctxt "@item:inlistbox"
  7201. #~ msgid "GCode File"
  7202. #~ msgstr "Arquivo G-Code"
  7203. #~ msgctxt "@info:status"
  7204. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7205. #~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada."
  7206. #~ msgctxt "@info:title"
  7207. #~ msgid "Printer Unavailable"
  7208. #~ msgstr "Impressora Não Disponível"
  7209. #~ msgctxt "@info:status"
  7210. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7211. #~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode."
  7212. #~ msgctxt "@info:title"
  7213. #~ msgid "USB Printing"
  7214. #~ msgstr "Impressão USB"
  7215. #~ msgctxt "@info:status"
  7216. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7217. #~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB."
  7218. #~ msgctxt "@info"
  7219. #~ msgid "Unable to update firmware because there are no printers connected."
  7220. #~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas."
  7221. #~ msgctxt "@info"
  7222. #~ msgid "Could not find firmware required for the printer at %s."
  7223. #~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s."
  7224. #~ msgctxt "@info:title"
  7225. #~ msgid "Printer Firmware"
  7226. #~ msgstr "Firmware da Impressora"
  7227. #~ msgctxt "@info:title"
  7228. #~ msgid "Connection status"
  7229. #~ msgstr "Status da Conexão"
  7230. #~ msgctxt "@info:title"
  7231. #~ msgid "Connection Status"
  7232. #~ msgstr "Status da Conexão"
  7233. #~ msgctxt "@info:status"
  7234. #~ msgid "Access request was denied on the printer."
  7235. #~ msgstr "Pedido de acesso foi negado na impressora."
  7236. #~ msgctxt "@info:status"
  7237. #~ msgid "Access request failed due to a timeout."
  7238. #~ msgstr "Pedido de acesso falhou devido a tempo esgotado."
  7239. #~ msgctxt "@info:status"
  7240. #~ msgid "The connection with the network was lost."
  7241. #~ msgstr "A conexão à rede foi perdida."
  7242. #~ msgctxt "@info:status"
  7243. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7244. #~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada."
  7245. #~ msgctxt "@info:status"
  7246. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7247. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s."
  7248. #~ msgctxt "@info:title"
  7249. #~ msgid "Printer Status"
  7250. #~ msgstr "Status da Impressora"
  7251. #~ msgctxt "@info:status"
  7252. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7253. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}"
  7254. #~ msgctxt "@info:status"
  7255. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7256. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}"
  7257. #~ msgctxt "@label"
  7258. #~ msgid "Not enough material for spool {0}."
  7259. #~ msgstr "Não há material suficiente para o carretel {0}."
  7260. #~ msgctxt "@label"
  7261. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7262. #~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7263. #~ msgctxt "@label"
  7264. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7265. #~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora."
  7266. #~ msgctxt "@info:status"
  7267. #~ msgid "Unable to send data to printer. Is another job still active?"
  7268. #~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?"
  7269. #~ msgctxt "@label:MonitorStatus"
  7270. #~ msgid "Print aborted. Please check the printer"
  7271. #~ msgstr "Impressão abortada. Por favor verifique a impressora"
  7272. #~ msgctxt "@label:MonitorStatus"
  7273. #~ msgid "Pausing print..."
  7274. #~ msgstr "Pausando impressão..."
  7275. #~ msgctxt "@label:MonitorStatus"
  7276. #~ msgid "Resuming print..."
  7277. #~ msgstr "Continuando impressão..."
  7278. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  7279. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  7280. #~ msgctxt "Count is number of printers."
  7281. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  7282. #~ msgstr "Esta impressora hospeda um grupo de {count} impressoras Ultimaker 3 conectadas."
  7283. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7284. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa."
  7285. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7286. #~ msgstr "{printer_name} está reservada para imprimir '{job_name}'. Por favor altere a configuração da impressora para combinar com este trabalho para que ela comece a imprimir."
  7287. #~ msgctxt "@info:status"
  7288. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  7289. #~ msgstr "Incapaz de enviar novo trabalho de impressão: esta impressora 3D (ainda) não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  7290. #~ msgctxt "@info:status"
  7291. #~ msgid "Unable to send print job to group {cluster_name}."
  7292. #~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}."
  7293. #~ msgctxt "@info:status"
  7294. #~ msgid "Sent {file_name} to group {cluster_name}."
  7295. #~ msgstr "{file_name} enviado ao grupo {cluster_name}."
  7296. #~ msgctxt "@action:button"
  7297. #~ msgid "Show print jobs"
  7298. #~ msgstr "Exibir trabalhos de impressão"
  7299. #~ msgctxt "@info:tooltip"
  7300. #~ msgid "Opens the print jobs interface in your browser."
  7301. #~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador."
  7302. #~ msgctxt "@label Printer name"
  7303. #~ msgid "Unknown"
  7304. #~ msgstr "Desconhecida"
  7305. #~ msgctxt "@info:progress"
  7306. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7307. #~ msgstr "Enviando <filename>{file_name}</filename> ao grupo {cluster_name}"
  7308. #~ msgctxt "@info:status"
  7309. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7310. #~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks."
  7311. #~ msgctxt "@info:status"
  7312. #~ msgid ""
  7313. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7314. #~ "\n"
  7315. #~ " Thanks!."
  7316. #~ msgstr ""
  7317. #~ "Não foram encontrados modelos dentro de seu desenho. Poderia verificar seu conteúdo novamente e se assegurar que uma parte ou montagem está incluída?\n"
  7318. #~ "\n"
  7319. #~ " Obrigado!."
  7320. #~ msgctxt "@info:status"
  7321. #~ msgid ""
  7322. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7323. #~ "\n"
  7324. #~ "Sorry!"
  7325. #~ msgstr ""
  7326. #~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n"
  7327. #~ "\n"
  7328. #~ "Desculpe!"
  7329. #~ msgctxt "@item:material"
  7330. #~ msgid "No material loaded"
  7331. #~ msgstr "Não há material carregado"
  7332. #~ msgctxt "@item:material"
  7333. #~ msgid "Unknown material"
  7334. #~ msgstr "Material desconhecido"
  7335. #~ msgctxt "@info:status Has a cancel button next to it."
  7336. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7337. #~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual."
  7338. #~ msgctxt "@action:button"
  7339. #~ msgid "Undo"
  7340. #~ msgstr "Desfazer"
  7341. #~ msgctxt "@action"
  7342. #~ msgid "Undo changing the material diameter."
  7343. #~ msgstr "Desfaz a mudança no diâmetro do material."
  7344. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7345. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7346. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> não corresponde à sua máquina atual, não foi possível importá-lo."
  7347. #~ msgctxt "@label crash message"
  7348. #~ msgid ""
  7349. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7350. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7351. #~ " "
  7352. #~ msgstr ""
  7353. #~ "<p><b>Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema</p></b>\n"
  7354. #~ " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores</p>\n"
  7355. #~ " "
  7356. #~ msgctxt "@label"
  7357. #~ msgid "not yet initialised<br/>"
  7358. #~ msgstr "ainda não inicializado<br/>"
  7359. #~ msgctxt "@label"
  7360. #~ msgid "Gcode flavor"
  7361. #~ msgstr "Sabor de G-Code"
  7362. #~ msgctxt "@label"
  7363. #~ msgid "Start Gcode"
  7364. #~ msgstr "G-Code Inicial"
  7365. #~ msgctxt "@tooltip"
  7366. #~ msgid "Gcode commands to be executed at the very start."
  7367. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  7368. #~ msgctxt "@label"
  7369. #~ msgid "End Gcode"
  7370. #~ msgstr "G-Code Final"
  7371. #~ msgctxt "@tooltip"
  7372. #~ msgid "Gcode commands to be executed at the very end."
  7373. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  7374. #~ msgctxt "@label"
  7375. #~ msgid "Extruder Start Gcode"
  7376. #~ msgstr "G-Code Inicial do Extrusor"
  7377. #~ msgctxt "@label"
  7378. #~ msgid "Extruder End Gcode"
  7379. #~ msgstr "G-Code Final do Extrusor"
  7380. #~ msgctxt "@label"
  7381. #~ msgid "Starting firmware update, this may take a while."
  7382. #~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco."
  7383. #~ msgctxt "@label"
  7384. #~ msgid "Unknown error code: %1"
  7385. #~ msgstr "Código de erro desconhecido: %1"
  7386. #~ msgctxt "@label Printer name"
  7387. #~ msgid "Ultimaker 3"
  7388. #~ msgstr "Ultimaker 3"
  7389. #~ msgctxt "@label Printer name"
  7390. #~ msgid "Ultimaker 3 Extended"
  7391. #~ msgstr "Ultimaker 3 Extended"
  7392. #~ msgctxt "@label Printer status"
  7393. #~ msgid "Unknown"
  7394. #~ msgstr "Desconhecido"
  7395. #~ msgctxt "@title:window"
  7396. #~ msgid "Find & Update plugins"
  7397. #~ msgstr "Buscar & Atualizar complementos"
  7398. #~ msgctxt "@label"
  7399. #~ msgid "Here you can find a list of Third Party plugins."
  7400. #~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros."
  7401. #~ msgctxt "@action:button"
  7402. #~ msgid "Upgrade"
  7403. #~ msgstr "Atualizar"
  7404. #~ msgctxt "@action:button"
  7405. #~ msgid "Download"
  7406. #~ msgstr "Baixar"
  7407. #~ msgctxt "@info:tooltip"
  7408. #~ msgid "Show caution message in gcode reader."
  7409. #~ msgstr "Exibir mensagem de advertência no leitor de g-code."
  7410. #~ msgctxt "@option:check"
  7411. #~ msgid "Caution message in gcode reader"
  7412. #~ msgstr "Mensagem de advertência no leitor de g-code"
  7413. #~ msgctxt "@window:title"
  7414. #~ msgid "Import Profile"
  7415. #~ msgstr "Importar Perfil"
  7416. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7417. #~ msgid "Printer: %1, %2: %3"
  7418. #~ msgstr "Impressora: %1, %2: %3"
  7419. #~ msgctxt "@action:label %1 is printer name"
  7420. #~ msgid "Printer: %1"
  7421. #~ msgstr "Impressora: %1"
  7422. #~ msgctxt "@label"
  7423. #~ msgid "GCode generator"
  7424. #~ msgstr "Gerador de G-Code"
  7425. #~ msgctxt "@action:menu"
  7426. #~ msgid "Configure setting visiblity..."
  7427. #~ msgstr "Configurar a visibilidade dos ajustes..."
  7428. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7429. #~ msgid "Automatic: %1"
  7430. #~ msgstr "Automático: %1"
  7431. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7432. #~ msgid "Automatic: %1"
  7433. #~ msgstr "Automático: %1"
  7434. #~ msgctxt "@info:status"
  7435. #~ msgid "No printer connected"
  7436. #~ msgstr "Nenhuma impressora conectada"
  7437. #~ msgctxt "@tooltip"
  7438. #~ msgid "The current temperature of this extruder."
  7439. #~ msgstr "A temperatura atual deste extrusor."
  7440. #~ msgctxt "@action:menu"
  7441. #~ msgid "Installed plugins..."
  7442. #~ msgstr "Complementos instalados..."
  7443. #~ msgctxt "@label"
  7444. #~ msgid "Support Extruder"
  7445. #~ msgstr "Extrusor do Suporte"
  7446. #~ msgctxt "description"
  7447. #~ msgid "Writes GCode to a file."
  7448. #~ msgstr "Escreve G-Code para aquivo."
  7449. #~ msgctxt "name"
  7450. #~ msgid "GCode Writer"
  7451. #~ msgstr "Gerador de G-Code"
  7452. #~ msgctxt "name"
  7453. #~ msgid "GCode Profile Reader"
  7454. #~ msgstr "Leitor de Perfis de G-Code"
  7455. #~ msgctxt "@info:status"
  7456. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  7457. #~ msgstr "Erros apareceram ao abrir seu arquivo SolidWorks! Por favor verifique se é possível abrir seu arquivo no próprio SolidWorks sem problema também!"
  7458. #~ msgctxt "@info:status"
  7459. #~ msgid "Error while starting %s!"
  7460. #~ msgstr "Erro ao iniciar %s!"
  7461. #~ msgctxt "@item:inlistbox"
  7462. #~ msgid "Simulation view"
  7463. #~ msgstr "Visão simulada"
  7464. #~ msgctxt "@info"
  7465. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7466. #~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências."
  7467. #~ msgctxt "@action:button"
  7468. #~ msgid "Dismiss"
  7469. #~ msgstr "Fechar"
  7470. #~ msgctxt "@menuitem"
  7471. #~ msgid "Global"
  7472. #~ msgstr "Global"
  7473. #~ msgctxt "@label crash message"
  7474. #~ msgid ""
  7475. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7476. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7477. #~ " "
  7478. #~ msgstr ""
  7479. #~ "<p><b>Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema</p></b>\n"
  7480. #~ " <p>Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores</p>\n"
  7481. #~ " "
  7482. #~ msgctxt "@label Cura version"
  7483. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7484. #~ msgstr "<b>Versão do Cura:</b> {version}<br/>"
  7485. #~ msgctxt "@label Platform"
  7486. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7487. #~ msgstr "<b>Plataforma:</b> {platform}<br/>"
  7488. #~ msgctxt "@label Qt version"
  7489. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7490. #~ msgstr "<b>Versão da Qt:</b> {qt}<br/>"
  7491. #~ msgctxt "@label PyQt version"
  7492. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7493. #~ msgstr "<b>Versão da PyQt:</b> {pyqt}<br/>"
  7494. #~ msgctxt "@label OpenGL"
  7495. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7496. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7497. #~ msgctxt "@title:groupbox"
  7498. #~ msgid "Exception traceback"
  7499. #~ msgstr "Traceback de exceção"
  7500. #~ msgctxt "@label"
  7501. #~ msgid "Material diameter"
  7502. #~ msgstr "Diâmetro do material"
  7503. #~ msgctxt "@title:window"
  7504. #~ msgid "Cura SolidWorks Plugin Configuration"
  7505. #~ msgstr "Configuração do Complemento de Solidworks do Cura"
  7506. #~ msgctxt "@action:label"
  7507. #~ msgid "Default quality of the exported STL:"
  7508. #~ msgstr "Qualidade default do STL exportado:"
  7509. #~ msgctxt "@option:curaSolidworksStlQuality"
  7510. #~ msgid "Always ask"
  7511. #~ msgstr "Sempre perguntar"
  7512. #~ msgctxt "@option:curaSolidworksStlQuality"
  7513. #~ msgid "Always use Fine quality"
  7514. #~ msgstr "Sempre usar qualidade Alta"
  7515. #~ msgctxt "@option:curaSolidworksStlQuality"
  7516. #~ msgid "Always use Coarse quality"
  7517. #~ msgstr "Sempre usar qualidade Baixa"
  7518. #~ msgctxt "@title:window"
  7519. #~ msgid "Import SolidWorks File as STL..."
  7520. #~ msgstr "Importar Arquivo SolidWorks como STL..."
  7521. #~ msgctxt "@info:tooltip"
  7522. #~ msgid "Quality of the Exported STL"
  7523. #~ msgstr "Qualidade do STL Exportado"
  7524. #~ msgctxt "@action:label"
  7525. #~ msgid "Quality"
  7526. #~ msgstr "Qualidade"
  7527. #~ msgctxt "@option:curaSolidworksStlQuality"
  7528. #~ msgid "Coarse"
  7529. #~ msgstr "Baixa"
  7530. #~ msgctxt "@option:curaSolidworksStlQuality"
  7531. #~ msgid "Fine"
  7532. #~ msgstr "Alta"
  7533. #~ msgctxt "@"
  7534. #~ msgid "No Profile Available"
  7535. #~ msgstr "Nenhum Perfil Disponível"
  7536. #~ msgctxt "@label"
  7537. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7538. #~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores"
  7539. #~ msgctxt "@tooltip"
  7540. #~ msgid "<b>Time specification</b><br/><table>"
  7541. #~ msgstr "<b>Especificação de tempo</b><br/><table>"
  7542. #~ msgctxt "@action:inmenu menubar:view"
  7543. #~ msgid "&Reset camera position"
  7544. #~ msgstr "&Recompor posições de câmera"
  7545. #~ msgctxt "@title:menu menubar:file"
  7546. #~ msgid "Save project"
  7547. #~ msgstr "Salvar projeto"
  7548. #~ msgctxt "@title:tab"
  7549. #~ msgid "Prepare"
  7550. #~ msgstr "Preparar"
  7551. #~ msgctxt "@title:tab"
  7552. #~ msgid "Monitor"
  7553. #~ msgstr "Monitorar"
  7554. #~ msgctxt "@label"
  7555. #~ msgid "<a href='%1'>Check compatibility</a>"
  7556. #~ msgstr "<a href='%1'>Verificar compatibilidade</a>"
  7557. #~ msgctxt "description"
  7558. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7559. #~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura"
  7560. #~ msgctxt "@label:status"
  7561. #~ msgid "Blocked"
  7562. #~ msgstr "Bloqueado"
  7563. #~ msgctxt "@label:status"
  7564. #~ msgid "Can't start print"
  7565. #~ msgstr "Não consigo começar a imprimir"
  7566. #~ msgctxt "@action:button"
  7567. #~ msgid "Open Connect.."
  7568. #~ msgstr "Abrir Connect.."
  7569. #~ msgctxt "@info:title"
  7570. #~ msgid "Print Details"
  7571. #~ msgstr "Detalhes de Impressão"
  7572. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7573. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  7574. #~ msgstr "Para assegurar que sua {machine_name} esteja equipada com os recursos mais recentes, é recomendado atualizar o firmware regularmente. Isto pode ser feito na {machine_name} (quando conectado pela rede) ou via USB."
  7575. #~ msgctxt "@info:title"
  7576. #~ msgid "Layer View"
  7577. #~ msgstr "Visão de Camadas"
  7578. #~ msgctxt "@menuitem"
  7579. #~ msgid "Browse plugins"
  7580. #~ msgstr "Navegar complementos"
  7581. #~ msgctxt "@info:title"
  7582. #~ msgid "Export Details"
  7583. #~ msgstr "Detalhes da Exportação"
  7584. #~ msgctxt "@label"
  7585. #~ msgid ""
  7586. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7587. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7588. #~ " "
  7589. #~ msgstr ""
  7590. #~ "<p>Uma exceção fatal ocorreu e não foi possível haver recuperação!</p>\n"
  7591. #~ " <p>Por favor use a informação abaixo para publicar um relatório de erro em <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7592. #~ " "
  7593. #~ msgctxt "@action:button"
  7594. #~ msgid "Open Web Page"
  7595. #~ msgstr "Abrir Página Web"
  7596. #~ msgctxt "@action:button"
  7597. #~ msgid "Ok"
  7598. #~ msgstr "Ok"
  7599. #~ msgctxt "@label"
  7600. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7601. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  7602. #~ msgctxt "@label"
  7603. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7604. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas"
  7605. #~ msgctxt "@label"
  7606. #~ msgid "Completed on: "
  7607. #~ msgstr "Completado em: "
  7608. #~ msgctxt "@info:tooltip"
  7609. #~ msgid "Opens the print jobs page with your default web browser."
  7610. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default."
  7611. #~ msgctxt "@label"
  7612. #~ msgid "PRINTER GROUP"
  7613. #~ msgstr "GRUPO DE IMPRESSORAS"
  7614. #~ msgctxt "@action:warning"
  7615. #~ msgid "Loading a project will clear all models on the buildplate"
  7616. #~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão"
  7617. #~ msgctxt "@label"
  7618. #~ msgid ""
  7619. #~ " plugin contains a license.\n"
  7620. #~ "You need to accept this license to install this plugin.\n"
  7621. #~ "Do you agree with the terms below?"
  7622. #~ msgstr ""
  7623. #~ " complemento tem uma licença.\n"
  7624. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  7625. #~ "Você está de acordo com os termos abaixo?"
  7626. #~ msgctxt "@label"
  7627. #~ msgid "00h 00min"
  7628. #~ msgstr "00h 00min"
  7629. #~ msgctxt "@tooltip"
  7630. #~ msgid "<b>Time information</b>"
  7631. #~ msgstr "<b>Informação de tempo</b>"
  7632. #~ msgctxt "@description"
  7633. #~ msgid "Print time"
  7634. #~ msgstr "Tempo de impressão"
  7635. #~ msgctxt "@label"
  7636. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7637. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7638. #~ msgctxt "@label"
  7639. #~ msgid "%1m / ~ %2g"
  7640. #~ msgstr "%1m / ~ %2g"
  7641. #~ msgctxt "@title:window"
  7642. #~ msgid "Cura"
  7643. #~ msgstr "Cura"
  7644. #~ msgctxt "@label"
  7645. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7646. #~ msgstr "<a href='%1'>Verificar compatibilidade de material</a>"
  7647. #~ msgctxt "name"
  7648. #~ msgid "UM3 Network Connection (Cluster)"
  7649. #~ msgstr "Conexão de Rede UM3 (Cluster)"
  7650. #~ msgctxt "description"
  7651. #~ msgid "Provides the Layer view."
  7652. #~ msgstr "Provê a visão de Camadas."
  7653. #~ msgctxt "name"
  7654. #~ msgid "Layer View"
  7655. #~ msgstr "Visão de Camadas"
  7656. #~ msgctxt "@item:inlistbox"
  7657. #~ msgid "X-Ray"
  7658. #~ msgstr "Raios X"
  7659. #~ msgctxt "@label"
  7660. #~ msgid "Doodle3D"
  7661. #~ msgstr "Doodle3D"
  7662. #~ msgctxt "@info:whatsthis"
  7663. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7664. #~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D."
  7665. #~ msgctxt "@item:inmenu"
  7666. #~ msgid "Doodle3D printing"
  7667. #~ msgstr "Impressão Doodle3D"
  7668. #~ msgctxt "@action:button"
  7669. #~ msgid "Print with Doodle3D"
  7670. #~ msgstr "Imprimir com Doodle3D"
  7671. #~ msgctxt "@info:tooltip"
  7672. #~ msgid "Print with "
  7673. #~ msgstr "Imprimir com "
  7674. #~ msgctxt "@title:menu"
  7675. #~ msgid "Doodle3D"
  7676. #~ msgstr "Doodle3D"
  7677. #~ msgctxt "@item:inlistbox"
  7678. #~ msgid "Enable Scan devices..."
  7679. #~ msgstr "Habilitar dispositivos de escaneamento..."
  7680. #~ msgctxt "@info:progress"
  7681. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7682. #~ msgstr "Salvando em Unidade Removível <filename>{0}</filename>"
  7683. #~ msgctxt "@info:status"
  7684. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7685. #~ msgstr "Incapaz de salvar para <filename>{0}</filename>: <message>{1}</message>"
  7686. #~ msgctxt "@info:status"
  7687. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7688. #~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!"
  7689. #~ msgctxt "@item:inlistbox"
  7690. #~ msgid "Layers"
  7691. #~ msgstr "Camadas"
  7692. #~ msgid "Browse plugins"
  7693. #~ msgstr "Navegar por complementos"
  7694. #~ msgctxt "@item:inmenu"
  7695. #~ msgid "Solid"
  7696. #~ msgstr "Sólido"
  7697. #~ msgctxt "@label"
  7698. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7699. #~ msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  7700. #~ msgctxt "@info:status"
  7701. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7702. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: <message>{1}</message>"
  7703. #~ msgctxt "@info:status"
  7704. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7705. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: Complemento de gravação acusou falha."
  7706. #~ msgctxt "@info:status"
  7707. #~ msgid "Exported profile to <filename>{0}</filename>"
  7708. #~ msgstr "Perfil exportado para <filename>{0}</filename>"
  7709. #~ msgctxt "@info:status"
  7710. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7711. #~ msgstr "Falha na importação de perfil de <filename>{0}</filename>: <message>{1}</message>"
  7712. #~ msgctxt "@title:window"
  7713. #~ msgid "Doodle3D Settings"
  7714. #~ msgstr "Ajustes de Doodle3D"
  7715. #~ msgctxt "@title:window"
  7716. #~ msgid "Print to: %1"
  7717. #~ msgstr "Imprimir em: %1"
  7718. #~ msgctxt "@label"
  7719. #~ msgid "Extruder Temperature: %1/%2°C"
  7720. #~ msgstr "Temperatura do Extrusor: %1/%2°C"
  7721. #~ msgctxt "@label"
  7722. #~ msgid "Bed Temperature: %1/%2°C"
  7723. #~ msgstr "Temperatura da Mesa: %1/%2°C"
  7724. #~ msgctxt "@label"
  7725. #~ msgid "%1"
  7726. #~ msgstr "%1"
  7727. #~ msgctxt "@label"
  7728. #~ msgid "View Mode: Layers"
  7729. #~ msgstr "Modo de Visão: Camadas"
  7730. #~ msgctxt "@info:status"
  7731. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7732. #~ msgstr "Não foi possível importar material<filename>%1</filename>: <message>%2</message>"
  7733. #~ msgctxt "@info:status"
  7734. #~ msgid "Successfully imported material <filename>%1</filename>"
  7735. #~ msgstr "Material <filename>%1</filename> importado com sucesso"
  7736. #~ msgctxt "@info:status"
  7737. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7738. #~ msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  7739. #~ msgctxt "@info:status"
  7740. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7741. #~ msgstr "Material <filename>%1</filename> exportado com sucesso"
  7742. #~ msgctxt "@label"
  7743. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7744. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7745. #~ msgctxt "@label"
  7746. #~ msgid "%1 m / ~ %2 g"
  7747. #~ msgstr "%1 m / ~ %2 g"
  7748. #~ msgctxt "@label"
  7749. #~ msgid "Hotend"
  7750. #~ msgstr "Hotend"
  7751. #~ msgctxt "@action:button"
  7752. #~ msgid "View Mode"
  7753. #~ msgstr "Modo de Visualização"
  7754. #~ msgctxt "@title:tab"
  7755. #~ msgid "Print"
  7756. #~ msgstr "Imprimir"
  7757. #~ msgctxt "@label"
  7758. #~ msgid "0%"
  7759. #~ msgstr "0%"
  7760. #~ msgctxt "@label"
  7761. #~ msgid "Empty infill will leave your model hollow with low strength."
  7762. #~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência."
  7763. #~ msgctxt "@label"
  7764. #~ msgid "20%"
  7765. #~ msgstr "20%"
  7766. #~ msgctxt "@label"
  7767. #~ msgid "Light (20%) infill will give your model an average strength."
  7768. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média."
  7769. #~ msgctxt "@label"
  7770. #~ msgid "50%"
  7771. #~ msgstr "50%"
  7772. #~ msgctxt "@label"
  7773. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7774. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média."
  7775. #~ msgctxt "@label"
  7776. #~ msgid "100%"
  7777. #~ msgstr "100%"
  7778. #~ msgctxt "@label"
  7779. #~ msgid "Solid (100%) infill will make your model completely solid."
  7780. #~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido."
  7781. #~ msgctxt "@label"
  7782. #~ msgid "Gradual"
  7783. #~ msgstr "Gradual"
  7784. #~ msgctxt "description"
  7785. #~ msgid "Provides support for writing X3G files"
  7786. #~ msgstr "Provê suporte à escrita de arquivos X3G"
  7787. #~ msgctxt "name"
  7788. #~ msgid "X3G Writer"
  7789. #~ msgstr "Gerador de X3G"
  7790. #~ msgctxt "@label"
  7791. #~ msgid "Machine Settings action"
  7792. #~ msgstr "Ação de ajustes da máquina"
  7793. #~ msgctxt "@info:whatsthis"
  7794. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7795. #~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)"
  7796. #~ msgctxt "@label"
  7797. #~ msgid "X-Ray View"
  7798. #~ msgstr "Visão de Raios X"
  7799. #~ msgctxt "@info:whatsthis"
  7800. #~ msgid "Provides the X-Ray view."
  7801. #~ msgstr "Provê a visão de Raios X."
  7802. #~ msgctxt "@label"
  7803. #~ msgid "X3D Reader"
  7804. #~ msgstr "Leitor de X3D"
  7805. #~ msgctxt "@info:whatsthis"
  7806. #~ msgid "Provides support for reading X3D files."
  7807. #~ msgstr "Provê suporte para ler arquivos X3D."
  7808. #~ msgctxt "@label"
  7809. #~ msgid "GCode Writer"
  7810. #~ msgstr "Gerador de G-Code"
  7811. #~ msgctxt "@info:whatsthis"
  7812. #~ msgid "Writes GCode to a file."
  7813. #~ msgstr "Salva o G-Code em um arquivo."
  7814. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7815. #~ msgid "Print with Doodle3D"
  7816. #~ msgstr "Imprimir com Doodle3D"
  7817. #~ msgctxt "@info:whatsthis"
  7818. #~ msgid "Shows changes since latest checked version."
  7819. #~ msgstr "Mostra as alterações desde a última versão verificada."
  7820. #~ msgctxt "@label"
  7821. #~ msgid "Profile flatener"
  7822. #~ msgstr "Achatador de Perfil"
  7823. #~ msgctxt "@info:whatsthis"
  7824. #~ msgid "Create a flattend quality changes profile."
  7825. #~ msgstr "Faz um perfil plano com as mudanças de qualidade."
  7826. #~ msgctxt "@label"
  7827. #~ msgid "USB printing"
  7828. #~ msgstr "Impressão USB"
  7829. #~ msgctxt "@info:whatsthis"
  7830. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7831. #~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  7832. #~ msgctxt "X3G Writer Plugin Description"
  7833. #~ msgid "Writes X3G to a file"
  7834. #~ msgstr "Salva em arquivo X3G."
  7835. #~ msgctxt "@label"
  7836. #~ msgid "Removable Drive Output Device Plugin"
  7837. #~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível"
  7838. #~ msgctxt "@info:whatsthis"
  7839. #~ msgid "Provides removable drive hotplugging and writing support."
  7840. #~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível."
  7841. #~ msgctxt "@info:whatsthis"
  7842. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7843. #~ msgstr "Gerencia as conexões de rede em impressoras Ultimaker 3"
  7844. #~ msgctxt "@label"
  7845. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7846. #~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7847. #~ msgctxt "@label"
  7848. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7849. #~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora."
  7850. #~ msgctxt "@label"
  7851. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  7852. #~ msgstr "Os PrintCores e/ou materiais na sua impressora divergem dos de seu projeto atual. Para melhores resultados, sempre fatie para os PrintCores e materiais que estão carregados em sua impressora."
  7853. #~ msgctxt "@label"
  7854. #~ msgid "Post Processing"
  7855. #~ msgstr "Pós-processamento"
  7856. #~ msgctxt "Description of plugin"
  7857. #~ msgid "Extension that allows for user created scripts for post processing"
  7858. #~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento"
  7859. #~ msgctxt "@label"
  7860. #~ msgid "Auto Save"
  7861. #~ msgstr "Salvar automaticamente"
  7862. #~ msgctxt "@info:whatsthis"
  7863. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7864. #~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações."
  7865. #~ msgctxt "@label"
  7866. #~ msgid "Slice info"
  7867. #~ msgstr "Informações de fatiamento"
  7868. #~ msgctxt "@info:whatsthis"
  7869. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7870. #~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  7871. #~ msgctxt "@info"
  7872. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7873. #~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências."
  7874. #~ msgctxt "@label"
  7875. #~ msgid "Material Profiles"
  7876. #~ msgstr "Perfis de Material"
  7877. #~ msgctxt "@info:whatsthis"
  7878. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7879. #~ msgstr "Permite ler e escrever perfis de material baseado em XML."
  7880. #~ msgctxt "@label"
  7881. #~ msgid "Legacy Cura Profile Reader"
  7882. #~ msgstr "Leitor de perfis legados do Cura"
  7883. #~ msgctxt "@info:whatsthis"
  7884. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7885. #~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura."
  7886. #~ msgctxt "@label"
  7887. #~ msgid "GCode Profile Reader"
  7888. #~ msgstr "Leitor de perfis de G-Code"
  7889. #~ msgctxt "@info:whatsthis"
  7890. #~ msgid "Provides support for importing profiles from g-code files."
  7891. #~ msgstr "Provê suporte para importar perfis de arquivos G-Code."
  7892. #~ msgctxt "@label"
  7893. #~ msgid "Layer View"
  7894. #~ msgstr "Visão de Camadas"
  7895. #~ msgctxt "@info:whatsthis"
  7896. #~ msgid "Provides the Layer view."
  7897. #~ msgstr "Provê a Visão de Camadas"
  7898. #~ msgctxt "@label"
  7899. #~ msgid "Version Upgrade 2.5 to 2.6"
  7900. #~ msgstr "Atualização de Versão de 2.5 para 2.6"
  7901. #~ msgctxt "@info:whatsthis"
  7902. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7903. #~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6."
  7904. #~ msgctxt "@label"
  7905. #~ msgid "Version Upgrade 2.1 to 2.2"
  7906. #~ msgstr "Atualização de Versão de 2.1 para 2.2"
  7907. #~ msgctxt "@info:whatsthis"
  7908. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7909. #~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  7910. #~ msgctxt "@label"
  7911. #~ msgid "Version Upgrade 2.2 to 2.4"
  7912. #~ msgstr "Atualização de versão de 2.2 para 2.4"
  7913. #~ msgctxt "@info:whatsthis"
  7914. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7915. #~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  7916. #~ msgctxt "@label"
  7917. #~ msgid "Image Reader"
  7918. #~ msgstr "Leitor de Imagens"
  7919. #~ msgctxt "@info:whatsthis"
  7920. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7921. #~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D."
  7922. #~ msgctxt "@label"
  7923. #~ msgid "CuraEngine Backend"
  7924. #~ msgstr "Backend do CuraEngine"
  7925. #~ msgctxt "@info:whatsthis"
  7926. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7927. #~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine."
  7928. #~ msgctxt "@label"
  7929. #~ msgid "Per Model Settings Tool"
  7930. #~ msgstr "Ferramenta de Ajustes por Modelo"
  7931. #~ msgctxt "@info:whatsthis"
  7932. #~ msgid "Provides the Per Model Settings."
  7933. #~ msgstr "Provê ajustes específicos por Modelo."
  7934. #~ msgctxt "@label"
  7935. #~ msgid "3MF Reader"
  7936. #~ msgstr "Leitor de 3MF"
  7937. #~ msgctxt "@info:whatsthis"
  7938. #~ msgid "Provides support for reading 3MF files."
  7939. #~ msgstr "Provê suporte à leitura de arquivos 3MF."
  7940. #~ msgctxt "@label"
  7941. #~ msgid "Solid View"
  7942. #~ msgstr "Visão Sólida"
  7943. #~ msgctxt "@info:whatsthis"
  7944. #~ msgid "Provides a normal solid mesh view."
  7945. #~ msgstr "Provê uma visão de malha sólida normal."
  7946. #~ msgctxt "@label"
  7947. #~ msgid "G-code Reader"
  7948. #~ msgstr "Leitor de G-Code"
  7949. #~ msgctxt "@info:whatsthis"
  7950. #~ msgid "Allows loading and displaying G-code files."
  7951. #~ msgstr "Permite carregar e mostrar arquivos G-Code."
  7952. #~ msgctxt "@label"
  7953. #~ msgid "Cura Profile Writer"
  7954. #~ msgstr "Gravador de Perfis do Cura"
  7955. #~ msgctxt "@info:whatsthis"
  7956. #~ msgid "Provides support for exporting Cura profiles."
  7957. #~ msgstr "Provê suporte para a exportação de perfis do Cura."
  7958. #~ msgctxt "@label"
  7959. #~ msgid "3MF Writer"
  7960. #~ msgstr "Gerador 3MF"
  7961. #~ msgctxt "@info:whatsthis"
  7962. #~ msgid "Provides support for writing 3MF files."
  7963. #~ msgstr "Provê suporte para escrever arquivos 3MF."
  7964. #~ msgctxt "@label"
  7965. #~ msgid "Ultimaker machine actions"
  7966. #~ msgstr "Ações de máquina Ultimaker"
  7967. #~ msgctxt "@info:whatsthis"
  7968. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7969. #~ msgstr "Provê ações de máquina para impressoras Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)"
  7970. #~ msgctxt "@label"
  7971. #~ msgid "Cura Profile Reader"
  7972. #~ msgstr "Leitor de Perfis do Cura"
  7973. #~ msgctxt "@info:whatsthis"
  7974. #~ msgid "Provides support for importing Cura profiles."
  7975. #~ msgstr "Provê suporte para importar perfis do Cura."
  7976. #~ msgctxt "@info"
  7977. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7978. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7979. #~ msgctxt "@label"
  7980. #~ msgid "Build Plate Shape"
  7981. #~ msgstr "Forma da Mesa"
  7982. #~ msgctxt "@option:check"
  7983. #~ msgid "Machine Center is Zero"
  7984. #~ msgstr "Centro da Mesa é Zero"
  7985. #~ msgctxt "@option:check"
  7986. #~ msgid "Heated Bed"
  7987. #~ msgstr "Mesa Aquecida"
  7988. #~ msgctxt "@label"
  7989. #~ msgid "GCode Flavor"
  7990. #~ msgstr "Tipo de G-Code"
  7991. #~ msgctxt "@label"
  7992. #~ msgid "Material Diameter"
  7993. #~ msgstr "Diâmetro do Material"
  7994. #~ msgctxt "@label"
  7995. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7996. #~ msgstr "Se a sua impressora não está listada, leia o <a href='%1'>guia de resolução de problemas em impressão de rede</a>"
  7997. #~ msgctxt "@item:inlistbox"
  7998. #~ msgid "Ultimaker"
  7999. #~ msgstr "Ultimaker"
  8000. #~ msgctxt "@label"
  8001. #~ msgid "Support library for scientific computing "
  8002. #~ msgstr "Biblioteca de suporte para computação científica"
  8003. #~ msgctxt "@tooltip"
  8004. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  8005. #~ msgstr "<b>Configuração de Impressão</b><br/></br/>Editar ou revisar os ajustes para o trabalho de impressão ativo."
  8006. #~ msgctxt "@tooltip"
  8007. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  8008. #~ msgstr "<b>Monitor de Impressão</b><br/><br/>Monitorar o estado da impressora conectada e o trabalho de impressão em progresso."
  8009. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  8010. #~ msgid "Automatic: %1"
  8011. #~ msgstr "Automático: %1"
  8012. #~ msgctxt "@label:PrintjobStatus"
  8013. #~ msgid "Please load a 3d model"
  8014. #~ msgstr "Por favor carregue um modelo 3D"
  8015. #~ msgctxt "@label"
  8016. #~ msgid "Print Selected Model with %1"
  8017. #~ msgid_plural "Print Selected Models With %1"
  8018. #~ msgstr[0] "Imprimir Modelo Selecionado com %1"
  8019. #~ msgstr[1] "Imprimir Modelos Selecionados Com %1"
  8020. #~ msgctxt "@info:status"
  8021. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  8022. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}"
  8023. #~ msgctxt "@label"
  8024. #~ msgid "Version Upgrade 2.4 to 2.5"
  8025. #~ msgstr "Atualizar versão 2.4 para 2.5"
  8026. #~ msgctxt "@info:whatsthis"
  8027. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  8028. #~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5"
  8029. #~ msgctxt "@info:status"
  8030. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  8031. #~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar."
  8032. #~ msgctxt "@title:window"
  8033. #~ msgid "Oops!"
  8034. #~ msgstr "Oops!"
  8035. #~ msgctxt "@label"
  8036. #~ msgid ""
  8037. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  8038. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  8039. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  8040. #~ " "
  8041. #~ msgstr ""
  8042. #~ "<p>Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!</p>\n"
  8043. #~ " <p>Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.</p>\n"
  8044. #~ " <p>Por favor use a informação abaixo para postar um relatório de bug em <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  8045. #~ " "
  8046. #~ msgctxt "@label"
  8047. #~ msgid "Please enter the correct settings for your printer below:"
  8048. #~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:"
  8049. #~ msgctxt "@label"
  8050. #~ msgid "Extruder %1"
  8051. #~ msgstr "Extrusor %1"
  8052. #~ msgctxt "@label Followed by extruder selection drop-down."
  8053. #~ msgid "Print model with"
  8054. #~ msgstr "Imprimir modelo com"
  8055. #~ msgctxt "@label"
  8056. #~ msgid "You will need to restart the application for language changes to have effect."
  8057. #~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito."
  8058. #~ msgctxt "@info:tooltip"
  8059. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  8060. #~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado"
  8061. #~ msgctxt "@action:inmenu menubar:edit"
  8062. #~ msgid "Delete &Selection"
  8063. #~ msgstr "Eliminar &Seleção"
  8064. #~ msgctxt "@action:inmenu menubar:file"
  8065. #~ msgid "&Open File..."
  8066. #~ msgstr "&Abrir Arquivo..."
  8067. #~ msgctxt "@action:inmenu menubar:file"
  8068. #~ msgid "&Open Project..."
  8069. #~ msgstr "&Abrir Projeto..."
  8070. #~ msgctxt "@title:window"
  8071. #~ msgid "Multiply Model"
  8072. #~ msgstr "Multiplicar Modelo"
  8073. #~ msgctxt "@title:menu menubar:file"
  8074. #~ msgid "Save &All"
  8075. #~ msgstr "Salvar &Tudo"
  8076. #~ msgctxt "@title:window"
  8077. #~ msgid "Open file"
  8078. #~ msgstr "Abrir arquivo"
  8079. #~ msgctxt "@title:window"
  8080. #~ msgid "Open workspace"
  8081. #~ msgstr "Abrir espaço de trabalho"
  8082. #~ msgctxt "@label"
  8083. #~ msgid "Hollow"
  8084. #~ msgstr "Oco"
  8085. #~ msgctxt "@label"
  8086. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  8087. #~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência"
  8088. #~ msgctxt "@label"
  8089. #~ msgid "Light"
  8090. #~ msgstr "Leve"
  8091. #~ msgctxt "@label"
  8092. #~ msgid "Light (20%) infill will give your model an average strength"
  8093. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média"
  8094. #~ msgctxt "@label"
  8095. #~ msgid "Dense"
  8096. #~ msgstr "Denso"
  8097. #~ msgctxt "@label"
  8098. #~ msgid "Dense (50%) infill will give your model an above average strength"
  8099. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média"
  8100. #~ msgctxt "@label"
  8101. #~ msgid "Solid"
  8102. #~ msgstr "Sólido"
  8103. #~ msgctxt "@label"
  8104. #~ msgid "Solid (100%) infill will make your model completely solid"
  8105. #~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço."
  8106. #~ msgctxt "@label"
  8107. #~ msgid "Enable Support"
  8108. #~ msgstr "Habilitar Suporte"
  8109. #~ msgctxt "@label"
  8110. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  8111. #~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes."
  8112. #~ msgctxt "@label"
  8113. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  8114. #~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o <a href='%1'>Guia de Solução de Problemas da Ultimaker</a>."
  8115. #~ msgctxt "@info:status"
  8116. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  8117. #~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora."
  8118. #~ msgctxt "@info:status"
  8119. #~ msgid "Connected over the network to {0}."
  8120. #~ msgstr "Conectado pela rede a {0}."
  8121. #~ msgctxt "@info:status"
  8122. #~ msgid "Connected over the network to {0}. No access to control the printer."
  8123. #~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora."
  8124. #~ msgctxt "@info:status"
  8125. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  8126. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora."
  8127. #~ msgctxt "@label"
  8128. #~ msgid "You made changes to the following setting(s)/override(s):"
  8129. #~ msgstr "Foram feitas alterações nos seguintes ajustes:"
  8130. #~ msgctxt "@window:title"
  8131. #~ msgid "Switched profiles"
  8132. #~ msgstr "Perfis trocados"
  8133. #~ msgctxt "@label"
  8134. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  8135. #~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?"
  8136. #~ msgctxt "@label"
  8137. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  8138. #~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão."
  8139. #~ msgctxt "@label"
  8140. #~ msgid "Cost per Meter (Approx.)"
  8141. #~ msgstr "Custo por Metro (Aprox.)"
  8142. #~ msgctxt "@label"
  8143. #~ msgid "%1/m"
  8144. #~ msgstr "%1/m"
  8145. #~ msgctxt "@info:tooltip"
  8146. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  8147. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas ou somente a camada superior. Exibir 5 camadas leva mais tempo, mas mostra mais informação."
  8148. #~ msgctxt "@action:button"
  8149. #~ msgid "Display five top layers in layer view"
  8150. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas"
  8151. #~ msgctxt "@info:tooltip"
  8152. #~ msgid "Should only the top layers be displayed in layerview?"
  8153. #~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?"
  8154. #~ msgctxt "@option:check"
  8155. #~ msgid "Only display top layer(s) in layer view"
  8156. #~ msgstr "Somente exibir as camadas superiores na visão de camadas"
  8157. #~ msgctxt "@label"
  8158. #~ msgid "Opening files"
  8159. #~ msgstr "Abrindo arquivos..."
  8160. #~ msgctxt "@label"
  8161. #~ msgid "Printer Monitor"
  8162. #~ msgstr "Monitor da Impressora"
  8163. #~ msgctxt "@label"
  8164. #~ msgid "Temperatures"
  8165. #~ msgstr "Temperaturas"
  8166. #~ msgctxt "@label:PrintjobStatus"
  8167. #~ msgid "Preparing to slice..."
  8168. #~ msgstr "Preparando para fatiar..."
  8169. #~ msgctxt "@window:title"
  8170. #~ msgid "Changes on the Printer"
  8171. #~ msgstr "Alterações na Impressora"
  8172. #~ msgctxt "@action:inmenu"
  8173. #~ msgid "&Duplicate Model"
  8174. #~ msgstr "&Duplicar Modelo"
  8175. #~ msgctxt "@label"
  8176. #~ msgid "Helper Parts:"
  8177. #~ msgstr "Partes dos Assistentes:"
  8178. #~ msgctxt "@label"
  8179. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  8180. #~ msgstr "Habilita estruturas de suporte de impressão. Isto construirá estruturas de suporte abaixo do modelo para prevenir o modelo de cair ou ser impresso no ar."
  8181. #~ msgctxt "@label"
  8182. #~ msgid "Don't print support"
  8183. #~ msgstr "Não imprimir suporte"
  8184. #~ msgctxt "@label"
  8185. #~ msgid "Print support using %1"
  8186. #~ msgstr "Imprimir suporte usando %1"
  8187. #~ msgctxt "@label:listbox"
  8188. #~ msgid "Printer:"
  8189. #~ msgstr "Impressora:"
  8190. #~ msgctxt "@info:status"
  8191. #~ msgid "Successfully imported profiles {0}"
  8192. #~ msgstr "Perfis {0} importados com sucesso"
  8193. #~ msgctxt "@label"
  8194. #~ msgid "Scripts"
  8195. #~ msgstr "Scripts"
  8196. #~ msgctxt "@label"
  8197. #~ msgid "Active Scripts"
  8198. #~ msgstr "Scripts Ativos"
  8199. #~ msgctxt "@label"
  8200. #~ msgid "Done"
  8201. #~ msgstr "Feito"
  8202. #~ msgctxt "@item:inlistbox"
  8203. #~ msgid "English"
  8204. #~ msgstr "Inglês"
  8205. #~ msgctxt "@item:inlistbox"
  8206. #~ msgid "Finnish"
  8207. #~ msgstr "Finlandês"
  8208. #~ msgctxt "@item:inlistbox"
  8209. #~ msgid "French"
  8210. #~ msgstr "Francês"
  8211. #~ msgctxt "@item:inlistbox"
  8212. #~ msgid "German"
  8213. #~ msgstr "Alemão"
  8214. #~ msgctxt "@item:inlistbox"
  8215. #~ msgid "Italian"
  8216. #~ msgstr "Italiano"
  8217. #~ msgctxt "@item:inlistbox"
  8218. #~ msgid "Dutch"
  8219. #~ msgstr "Holandês"
  8220. #~ msgctxt "@item:inlistbox"
  8221. #~ msgid "Spanish"
  8222. #~ msgstr "Espanhol"
  8223. #~ msgctxt "@label"
  8224. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  8225. #~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?"
  8226. #~ msgctxt "@label:"
  8227. #~ msgid "Print Again"
  8228. #~ msgstr "Imprimir Novamente"