cura.po 392 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 5.0\n"
  9. "Report-Msgid-Bugs-To: \n"
  10. "POT-Creation-Date: 2022-09-27 14:50+0200\n"
  11. "PO-Revision-Date: 2022-10-10 08:19+0200\n"
  12. "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
  13. "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
  14. "Language: pt_BR\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  19. "X-Generator: Poedit 3.1.1\n"
  20. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:87
  21. msgctxt "@tooltip"
  22. msgid "Outer Wall"
  23. msgstr "Parede Externa"
  24. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:88
  25. msgctxt "@tooltip"
  26. msgid "Inner Walls"
  27. msgstr "Paredes Internas"
  28. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:89
  29. msgctxt "@tooltip"
  30. msgid "Skin"
  31. msgstr "Contorno"
  32. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:90
  33. msgctxt "@tooltip"
  34. msgid "Infill"
  35. msgstr "Preenchimento"
  36. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:91
  37. msgctxt "@tooltip"
  38. msgid "Support Infill"
  39. msgstr "Preenchimento de Suporte"
  40. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:92
  41. msgctxt "@tooltip"
  42. msgid "Support Interface"
  43. msgstr "Interface de Suporte"
  44. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:93
  45. msgctxt "@tooltip"
  46. msgid "Support"
  47. msgstr "Suporte"
  48. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:94
  49. msgctxt "@tooltip"
  50. msgid "Skirt"
  51. msgstr "Skirt (Saia)"
  52. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:95
  53. msgctxt "@tooltip"
  54. msgid "Prime Tower"
  55. msgstr "Torre de Prime"
  56. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:96
  57. msgctxt "@tooltip"
  58. msgid "Travel"
  59. msgstr "Percurso"
  60. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:97
  61. msgctxt "@tooltip"
  62. msgid "Retractions"
  63. msgstr "Retrações"
  64. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/PrintInformation.py:98
  65. msgctxt "@tooltip"
  66. msgid "Other"
  67. msgstr "Outros"
  68. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:37 /Users/c.lamboo/ultimaker/Cura/cura/UI/TextManager.py:63
  69. msgctxt "@text:window"
  70. msgid "The release notes could not be opened."
  71. msgstr "As notas de lançamento não puderam ser abertas."
  72. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/ObjectsModel.py:69
  73. #, python-brace-format
  74. msgctxt "@label"
  75. msgid "Group #{group_nr}"
  76. msgstr "Grupo #{group_nr}"
  77. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:57 /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:277
  78. msgctxt "@action:button"
  79. msgid "Next"
  80. msgstr "Próximo"
  81. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:286 /Users/c.lamboo/ultimaker/Cura/cura/UI/WhatsNewPagesModel.py:68
  82. msgctxt "@action:button"
  83. msgid "Skip"
  84. msgstr "Pular"
  85. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/WelcomePagesModel.py:290 /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:26
  86. msgctxt "@action:button"
  87. msgid "Finish"
  88. msgstr "Finalizar"
  89. #: /Users/c.lamboo/ultimaker/Cura/cura/UI/AddPrinterPagesModel.py:17 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  90. msgctxt "@action:button"
  91. msgid "Add"
  92. msgstr "Adicionar"
  93. #: /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
  94. #: /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
  95. #: /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
  96. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:139
  97. msgctxt "@action:button"
  98. msgid "Cancel"
  99. msgstr "Cancelar"
  100. #: /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
  101. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:188
  102. msgctxt "@action:button"
  103. msgid "Close"
  104. msgstr "Fechar"
  105. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:207 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:140
  106. msgctxt "@title:window"
  107. msgid "File Already Exists"
  108. msgstr "O Arquivo Já Existe"
  109. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:208 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:141
  110. #, python-brace-format
  111. msgctxt "@label Don't translate the XML tag <filename>!"
  112. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  113. msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  114. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:459 /Users/c.lamboo/ultimaker/Cura/cura/Settings/ContainerManager.py:462
  115. msgctxt "@info:status"
  116. msgid "Invalid file URL:"
  117. msgstr "URL de arquivo inválida:"
  118. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:36
  119. msgctxt "@info:not supported profile"
  120. msgid "Not supported"
  121. msgstr "Não Suportado"
  122. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/cura_empty_instance_containers.py:55
  123. msgctxt "@info:No intent profile selected"
  124. msgid "Default"
  125. msgstr "Default"
  126. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:745 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:219
  127. msgctxt "@label"
  128. msgid "Nozzle"
  129. msgstr "Bico"
  130. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:889
  131. msgctxt "@info:message Followed by a list of settings."
  132. msgid "Settings have been changed to match the current availability of extruders:"
  133. msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:"
  134. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:890
  135. msgctxt "@info:title"
  136. msgid "Settings updated"
  137. msgstr "Ajustes atualizados"
  138. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/MachineManager.py:1512
  139. msgctxt "@info:title"
  140. msgid "Extruder(s) Disabled"
  141. msgstr "Extrusor(es) Desabilitado(s)"
  142. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:153
  143. #, python-brace-format
  144. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  145. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  146. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  147. #: /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
  148. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  149. msgctxt "@info:title"
  150. msgid "Error"
  151. msgstr "Erro"
  152. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:163
  153. #, python-brace-format
  154. msgctxt "@info:status Don't translate the XML tag <filename>!"
  155. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  156. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: complemento escritor relatou erro."
  157. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:171
  158. #, python-brace-format
  159. msgctxt "@info:status Don't translate the XML tag <filename>!"
  160. msgid "Exported profile to <filename>{0}</filename>"
  161. msgstr "Perfil exportado para <filename>{0}</filename>"
  162. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:173
  163. msgctxt "@info:title"
  164. msgid "Export succeeded"
  165. msgstr "Exportação concluída"
  166. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:205
  167. #, python-brace-format
  168. msgctxt "@info:status Don't translate the XML tags <filename>!"
  169. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  170. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  171. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:209
  172. #, python-brace-format
  173. msgctxt "@info:status Don't translate the XML tags <filename>!"
  174. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  175. msgstr "Não foi possível importar perfil de <filename>{0}</filename> antes de uma impressora ser adicionada."
  176. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:224
  177. #, python-brace-format
  178. msgctxt "@info:status Don't translate the XML tags <filename>!"
  179. msgid "No custom profile to import in file <filename>{0}</filename>"
  180. msgstr "Não há perfil personalizado a importar no arquivo <filename>{0}</filename>"
  181. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:228
  182. #, python-brace-format
  183. msgctxt "@info:status Don't translate the XML tags <filename>!"
  184. msgid "Failed to import profile from <filename>{0}</filename>:"
  185. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  186. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:252 /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:262
  187. #, python-brace-format
  188. msgctxt "@info:status Don't translate the XML tags <filename>!"
  189. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  190. msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  191. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:355
  192. #, python-brace-format
  193. msgctxt "@info:status Don't translate the XML tag <filename>!"
  194. msgid "Failed to import profile from <filename>{0}</filename>:"
  195. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  196. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:359
  197. #, python-brace-format
  198. msgctxt "@info:status"
  199. msgid "Successfully imported profile {0}."
  200. msgstr "Perfil {0} importado com sucesso."
  201. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:366
  202. #, python-brace-format
  203. msgctxt "@info:status"
  204. msgid "File {0} does not contain any valid profile."
  205. msgstr "Arquivo {0} não contém nenhum perfil válido."
  206. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:369
  207. #, python-brace-format
  208. msgctxt "@info:status"
  209. msgid "Profile {0} has an unknown file type or is corrupted."
  210. msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido."
  211. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:443
  212. msgctxt "@label"
  213. msgid "Custom profile"
  214. msgstr "Perfil personalizado"
  215. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:459
  216. msgctxt "@info:status"
  217. msgid "Profile is missing a quality type."
  218. msgstr "Falta um tipo de qualidade ao Perfil."
  219. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:463
  220. msgctxt "@info:status"
  221. msgid "There is no active printer yet."
  222. msgstr "Não há impressora ativa ainda."
  223. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:469
  224. msgctxt "@info:status"
  225. msgid "Unable to add the profile."
  226. msgstr "Não foi possível adicionar o perfil."
  227. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:483
  228. #, python-brace-format
  229. msgctxt "@info:status"
  230. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  231. msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'."
  232. #: /Users/c.lamboo/ultimaker/Cura/cura/Settings/CuraContainerRegistry.py:488
  233. #, python-brace-format
  234. msgctxt "@info:status"
  235. 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."
  236. 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."
  237. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:30
  238. msgctxt "@info:status"
  239. msgid "Multiplying and placing objects"
  240. msgstr "Multiplicando e colocando objetos"
  241. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:32
  242. msgctxt "@info:title"
  243. msgid "Placing Objects"
  244. msgstr "Colocando Objetos"
  245. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:99 /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  246. msgctxt "@info:status"
  247. msgid "Unable to find a location within the build volume for all objects"
  248. msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos"
  249. #: /Users/c.lamboo/ultimaker/Cura/cura/MultiplyObjectsJob.py:100
  250. msgctxt "@info:title"
  251. msgid "Placing Object"
  252. msgstr "Colocando Objeto"
  253. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:540
  254. msgctxt "@info:progress"
  255. msgid "Loading machines..."
  256. msgstr "Carregando máquinas..."
  257. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:547
  258. msgctxt "@info:progress"
  259. msgid "Setting up preferences..."
  260. msgstr "Ajustando preferências..."
  261. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:692
  262. msgctxt "@info:progress"
  263. msgid "Initializing Active Machine..."
  264. msgstr "Inicializando Máquina Ativa..."
  265. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:838
  266. msgctxt "@info:progress"
  267. msgid "Initializing machine manager..."
  268. msgstr "Inicializando gestor de máquinas..."
  269. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:852
  270. msgctxt "@info:progress"
  271. msgid "Initializing build volume..."
  272. msgstr "Inicializando volume de impressão..."
  273. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:920
  274. msgctxt "@info:progress"
  275. msgid "Setting up scene..."
  276. msgstr "Configurando cena..."
  277. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:956
  278. msgctxt "@info:progress"
  279. msgid "Loading interface..."
  280. msgstr "Carregando interface..."
  281. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:961
  282. msgctxt "@info:progress"
  283. msgid "Initializing engine..."
  284. msgstr "Inicializando motor..."
  285. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1289
  286. #, python-format
  287. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  288. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  289. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  290. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1815
  291. #, python-brace-format
  292. msgctxt "@info:status"
  293. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  294. msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}"
  295. #: /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
  296. msgctxt "@info:title"
  297. msgid "Warning"
  298. msgstr "Aviso"
  299. #: /Users/c.lamboo/ultimaker/Cura/cura/CuraApplication.py:1827
  300. #, python-brace-format
  301. msgctxt "@info:status"
  302. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  303. msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}"
  304. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  305. msgctxt "@message"
  306. msgid "Could not read response."
  307. msgstr "Não foi possível ler a resposta."
  308. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  309. msgctxt "@message"
  310. msgid "The provided state is not correct."
  311. msgstr "O estado provido não está correto."
  312. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  313. msgctxt "@message"
  314. msgid "Timeout when authenticating with the account server."
  315. msgstr "Tempo esgotado ao autenticar com o servidor da conta."
  316. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  317. msgctxt "@message"
  318. msgid "Please give the required permissions when authorizing this application."
  319. msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação."
  320. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  321. msgctxt "@message"
  322. msgid "Something unexpected happened when trying to log in, please try again."
  323. msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente."
  324. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:216
  325. msgctxt "@info"
  326. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  327. msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa."
  328. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:277
  329. msgctxt "@info"
  330. msgid "Unable to reach the UltiMaker account server."
  331. msgstr "Não foi possível contactar o servidor de contas da UltiMaker."
  332. #: /Users/c.lamboo/ultimaker/Cura/cura/OAuth2/AuthorizationService.py:278
  333. msgctxt "@info:title"
  334. msgid "Log-in failed"
  335. msgstr "Login falhou"
  336. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:25
  337. msgctxt "@info:status"
  338. msgid "Finding new location for objects"
  339. msgstr "Achando novos lugares para objetos"
  340. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:29
  341. msgctxt "@info:title"
  342. msgid "Finding Location"
  343. msgstr "Buscando Localização"
  344. #: /Users/c.lamboo/ultimaker/Cura/cura/Arranging/ArrangeObjectsJob.py:43
  345. msgctxt "@info:title"
  346. msgid "Can't Find Location"
  347. msgstr "Não Foi Encontrada Localização"
  348. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/ExtrudersModel.py:219
  349. msgctxt "@menuitem"
  350. msgid "Not overridden"
  351. msgstr "Não sobreposto"
  352. #: /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
  353. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/IntentSelectionModel.py:61
  354. msgctxt "@label"
  355. msgid "Default"
  356. msgstr "Default"
  357. #: /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
  358. msgctxt "@label"
  359. msgid "Visual"
  360. msgstr "Visual"
  361. #: /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
  362. msgctxt "@text"
  363. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  364. msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície."
  365. #: /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
  366. msgctxt "@label"
  367. msgid "Engineering"
  368. msgstr "Engenharia"
  369. #: /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
  370. msgctxt "@text"
  371. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  372. 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."
  373. #: /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
  374. msgctxt "@label"
  375. msgid "Draft"
  376. msgstr "Rascunho"
  377. #: /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
  378. msgctxt "@text"
  379. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  380. 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."
  381. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  382. msgctxt "@info:status"
  383. msgid "Calculated"
  384. msgstr "Calculado"
  385. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:391
  386. msgctxt "@label"
  387. msgid "Custom profiles"
  388. msgstr "Perfis personalizados"
  389. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:426
  390. #, python-brace-format
  391. msgctxt "@item:inlistbox"
  392. msgid "All Supported Types ({0})"
  393. msgstr "Todos Os Tipos Suportados ({0})"
  394. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/QualityManagementModel.py:427
  395. msgctxt "@item:inlistbox"
  396. msgid "All Files (*)"
  397. msgstr "Todos Os Arquivos (*)"
  398. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  399. msgctxt "@label"
  400. msgid "Unknown"
  401. msgstr "Desconhecido"
  402. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  403. msgctxt "@label"
  404. msgid "The printer(s) below cannot be connected because they are part of a group"
  405. msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo"
  406. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  407. msgctxt "@label"
  408. msgid "Available networked printers"
  409. msgstr "Impressoras de rede disponíveis"
  410. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  411. msgctxt "@label"
  412. msgid "Connected printers"
  413. msgstr "Impressoras conectadas"
  414. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:160
  415. msgctxt "@label"
  416. msgid "Preset printers"
  417. msgstr "Impressoras pré-ajustadas"
  418. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/GlobalStacksModel.py:165
  419. #, python-brace-format
  420. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  421. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  422. msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!"
  423. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:232
  424. msgctxt "@label"
  425. msgid "Custom Material"
  426. msgstr "Material Personalizado"
  427. #: /Users/c.lamboo/ultimaker/Cura/cura/Machines/Models/MaterialManagementModel.py:233 /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  428. msgctxt "@label"
  429. msgid "Custom"
  430. msgstr "Personalizado"
  431. #: /Users/c.lamboo/ultimaker/Cura/cura/API/Account.py:199
  432. msgctxt "@info:title"
  433. msgid "Login failed"
  434. msgstr "Login falhou"
  435. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  436. msgctxt "@action:button"
  437. msgid "Please sync the material profiles with your printers before starting to print."
  438. msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir."
  439. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  440. msgctxt "@action:button"
  441. msgid "New materials installed"
  442. msgstr "Novos materiais instalados"
  443. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  444. msgctxt "@action:button"
  445. msgid "Sync materials"
  446. msgstr "Sincronizar materiais"
  447. #: /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
  448. msgctxt "@action:button"
  449. msgid "Learn more"
  450. msgstr "Saiba mais"
  451. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  452. msgctxt "@message:text"
  453. msgid "Could not save material archive to {}:"
  454. msgstr "Não foi possível salvar o arquivo de materiais para {}:"
  455. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  456. msgctxt "@message:title"
  457. msgid "Failed to save material archive"
  458. msgstr "Falha em salvar o arquivo de materiais"
  459. #: /Users/c.lamboo/ultimaker/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  460. msgctxt "@text"
  461. msgid "Unknown error."
  462. msgstr "Erro desconhecido."
  463. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  464. msgctxt "@text:error"
  465. msgid "Failed to create archive of materials to sync with printers."
  466. msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras."
  467. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  468. msgctxt "@text:error"
  469. msgid "Failed to load the archive of materials to sync it with printers."
  470. msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras."
  471. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  472. msgctxt "@text:error"
  473. msgid "The response from Digital Factory appears to be corrupted."
  474. msgstr "A resposta da Digital Factory parece estar corrompida."
  475. #: /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
  476. msgctxt "@text:error"
  477. msgid "The response from Digital Factory is missing important information."
  478. msgstr "A resposta da Digital Factory veio sem informações importantes."
  479. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  480. msgctxt "@text:error"
  481. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  482. msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras."
  483. #: /Users/c.lamboo/ultimaker/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  484. msgctxt "@text:error"
  485. msgid "Failed to connect to Digital Factory."
  486. msgstr "Falha em conectar à Digital Factory."
  487. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:100
  488. msgctxt "@info:status"
  489. 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."
  490. 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."
  491. #: /Users/c.lamboo/ultimaker/Cura/cura/BuildVolume.py:103
  492. msgctxt "@info:title"
  493. msgid "Build Volume"
  494. msgstr "Volume de Impressão"
  495. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:115
  496. msgctxt "@info:backup_failed"
  497. msgid "Could not create archive from user data directory: {}"
  498. msgstr "Não pude criar arquivo do diretório de dados de usuário: {}"
  499. #: /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
  500. msgctxt "@info:title"
  501. msgid "Backup"
  502. msgstr "Backup"
  503. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:134
  504. msgctxt "@info:backup_failed"
  505. msgid "Tried to restore a Cura backup without having proper data or meta data."
  506. msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados."
  507. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:145
  508. msgctxt "@info:backup_failed"
  509. msgid "Tried to restore a Cura backup that is higher than the current version."
  510. msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual."
  511. #: /Users/c.lamboo/ultimaker/Cura/cura/Backups/Backup.py:158
  512. msgctxt "@info:backup_failed"
  513. msgid "The following error occurred while trying to restore a Cura backup:"
  514. msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:"
  515. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:107
  516. msgctxt "@title:window"
  517. msgid "Cura can't start"
  518. msgstr "O Cura não consegue iniciar"
  519. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:113
  520. msgctxt "@label crash message"
  521. msgid ""
  522. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  523. " <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"
  524. " <p>Backups can be found in the configuration folder.</p>\n"
  525. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  526. " "
  527. msgstr ""
  528. "<p><b>Oops, o Ultimaker Cura encontrou algo que não parece estar correto.</p></b>\n"
  529. " <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"
  530. " <p>Cópias salvas podem ser encontradas na pasta de configuração.</p>\n"
  531. " <p>Por favor nos envie este Relatório de Falha para consertar o problema.</p>\n"
  532. " "
  533. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:122
  534. msgctxt "@action:button"
  535. msgid "Send crash report to UltiMaker"
  536. msgstr "Enviar relatório de falha à UltiMaker"
  537. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:125
  538. msgctxt "@action:button"
  539. msgid "Show detailed crash report"
  540. msgstr "Exibir relatório de falha detalhado"
  541. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:129
  542. msgctxt "@action:button"
  543. msgid "Show configuration folder"
  544. msgstr "Mostrar a pasta de configuração"
  545. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:140
  546. msgctxt "@action:button"
  547. msgid "Backup and Reset Configuration"
  548. msgstr "Salvar e Restabelecer Configuração"
  549. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:171
  550. msgctxt "@title:window"
  551. msgid "Crash Report"
  552. msgstr "Relatório de Problema"
  553. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:190
  554. msgctxt "@label crash message"
  555. msgid ""
  556. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  557. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  558. " "
  559. msgstr ""
  560. "<p><b>Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema</p></b>\n"
  561. " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores</p>\n"
  562. " "
  563. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:198
  564. msgctxt "@title:groupbox"
  565. msgid "System information"
  566. msgstr "Informação do Sistema"
  567. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:207
  568. msgctxt "@label unknown version of Cura"
  569. msgid "Unknown"
  570. msgstr "Desconhecida"
  571. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:228
  572. msgctxt "@label Cura version number"
  573. msgid "Cura version"
  574. msgstr "Versão do Cura"
  575. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:229
  576. msgctxt "@label"
  577. msgid "Cura language"
  578. msgstr "Linguagem do Cura"
  579. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:230
  580. msgctxt "@label"
  581. msgid "OS language"
  582. msgstr "Linguagem do SO"
  583. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:231
  584. msgctxt "@label Type of platform"
  585. msgid "Platform"
  586. msgstr "Plataforma"
  587. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:232
  588. msgctxt "@label"
  589. msgid "Qt version"
  590. msgstr "Versão do Qt"
  591. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:233
  592. msgctxt "@label"
  593. msgid "PyQt version"
  594. msgstr "Versão do PyQt"
  595. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:234
  596. msgctxt "@label OpenGL version"
  597. msgid "OpenGL"
  598. msgstr "OpenGL"
  599. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:264
  600. msgctxt "@label"
  601. msgid "Not yet initialized"
  602. msgstr "Ainda não inicializado"
  603. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:267
  604. #, python-brace-format
  605. msgctxt "@label OpenGL version"
  606. msgid "<li>OpenGL Version: {version}</li>"
  607. msgstr "<li>Versão da OpenGL: {version}</li>"
  608. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:268
  609. #, python-brace-format
  610. msgctxt "@label OpenGL vendor"
  611. msgid "<li>OpenGL Vendor: {vendor}</li>"
  612. msgstr "<li>Fornecedor da OpenGL: {vendor}</li>"
  613. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:269
  614. #, python-brace-format
  615. msgctxt "@label OpenGL renderer"
  616. msgid "<li>OpenGL Renderer: {renderer}</li>"
  617. msgstr "<li>Renderizador da OpenGL: {renderer}</li>"
  618. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:304
  619. msgctxt "@title:groupbox"
  620. msgid "Error traceback"
  621. msgstr "Traceback do erro"
  622. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:390
  623. msgctxt "@title:groupbox"
  624. msgid "Logs"
  625. msgstr "Registros"
  626. #: /Users/c.lamboo/ultimaker/Cura/cura/CrashHandler.py:418
  627. msgctxt "@action:button"
  628. msgid "Send report"
  629. msgstr "Enviar relatório"
  630. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  631. msgctxt "@action"
  632. msgid "Machine Settings"
  633. msgstr "Ajustes da Máquina"
  634. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:14
  635. msgctxt "@item:inlistbox"
  636. msgid "JPG Image"
  637. msgstr "Imagem JPG"
  638. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:18
  639. msgctxt "@item:inlistbox"
  640. msgid "JPEG Image"
  641. msgstr "Imagem JPEG"
  642. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:22
  643. msgctxt "@item:inlistbox"
  644. msgid "PNG Image"
  645. msgstr "Imagem PNG"
  646. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:26
  647. msgctxt "@item:inlistbox"
  648. msgid "BMP Image"
  649. msgstr "Imagem BMP"
  650. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/__init__.py:30
  651. msgctxt "@item:inlistbox"
  652. msgid "GIF Image"
  653. msgstr "Imagem GIF"
  654. #: /Users/c.lamboo/ultimaker/Cura/plugins/XRayView/__init__.py:12
  655. msgctxt "@item:inlistbox"
  656. msgid "X-Ray view"
  657. msgstr "Visão de Raios-X"
  658. #: /Users/c.lamboo/ultimaker/Cura/plugins/X3DReader/__init__.py:13
  659. msgctxt "@item:inlistbox"
  660. msgid "X3D File"
  661. msgstr "Arquivo X3D"
  662. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileReader/__init__.py:14 /Users/c.lamboo/ultimaker/Cura/plugins/CuraProfileWriter/__init__.py:14
  663. msgctxt "@item:inlistbox"
  664. msgid "Cura Profile"
  665. msgstr "Perfil do Cura"
  666. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  667. msgctxt "@item:inmenu"
  668. msgid "Post Processing"
  669. msgstr "Pós-Processamento"
  670. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  671. msgctxt "@item:inmenu"
  672. msgid "Modify G-Code"
  673. msgstr "Modificar G-Code"
  674. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  675. msgctxt "@info:status"
  676. msgid "There are no file formats available to write with!"
  677. msgstr "Não há formatos de arquivo disponíveis com os quais escrever!"
  678. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  679. msgctxt "@info:status"
  680. msgid "Print job queue is full. The printer can't accept a new job."
  681. msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho."
  682. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  683. msgctxt "@info:title"
  684. msgid "Queue Full"
  685. msgstr "Fila Cheia"
  686. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  687. msgctxt "@info:text"
  688. msgid "Could not upload the data to the printer."
  689. msgstr "Não foi possível transferir os dados para a impressora."
  690. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  691. msgctxt "@info:title"
  692. msgid "Network error"
  693. msgstr "Erro de rede"
  694. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  695. msgctxt "info:status"
  696. msgid "New printer detected from your UltiMaker account"
  697. msgid_plural "New printers detected from your Ultimaker account"
  698. msgstr[0] "Nova impressora detectada na sua conta Ultimaker"
  699. msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker"
  700. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  701. #, python-brace-format
  702. msgctxt "info:status Filled in with printer name and printer model."
  703. msgid "Adding printer {name} ({model}) from your account"
  704. msgstr "Adicionando impressora {name} ({model}) da sua conta"
  705. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  706. #, python-brace-format
  707. msgctxt "info:{0} gets replaced by a number of printers"
  708. msgid "... and {0} other"
  709. msgid_plural "... and {0} others"
  710. msgstr[0] "... e {0} outra"
  711. msgstr[1] "... e {0} outras"
  712. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  713. msgctxt "info:status"
  714. msgid "Printers added from Digital Factory:"
  715. msgstr "Impressoras adicionadas da Digital Factory:"
  716. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  717. msgctxt "@info:status"
  718. msgid "Please wait until the current job has been sent."
  719. msgstr "Por favor espere até que o trabalho atual tenha sido enviado."
  720. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  721. msgctxt "@info:title"
  722. msgid "Print error"
  723. msgstr "Erro de impressão"
  724. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  725. #, python-brace-format
  726. msgctxt "@info:status"
  727. msgid ""
  728. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  729. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  730. msgstr ""
  731. "Sua impressora <b>{printer_name}</b> poderia estar conectada via nuvem.\n"
  732. " Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory"
  733. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  734. msgctxt "@info:title"
  735. msgid "Are you ready for cloud printing?"
  736. msgstr "Você está pronto para a impressão de nuvem?"
  737. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  738. msgctxt "@action"
  739. msgid "Get started"
  740. msgstr "Começar"
  741. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  742. msgctxt "@action"
  743. msgid "Learn more"
  744. msgstr "Saiba mais"
  745. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  746. msgctxt "@info:status"
  747. msgid "You will receive a confirmation via email when the print job is approved"
  748. msgstr "Você receberá uma confirmação por email quando o trabalho de impressão for aprovado"
  749. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  750. msgctxt "@info:title"
  751. msgid "The print job was successfully submitted"
  752. msgstr "O trabalho de impressão foi submetido com sucesso"
  753. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  754. msgctxt "@action"
  755. msgid "Manage print jobs"
  756. msgstr "Gerenciar trabalhos de impressão"
  757. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  758. msgctxt "@info:status"
  759. msgid "Sending Print Job"
  760. msgstr "Enviando Trabalho de Impressão"
  761. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  762. msgctxt "@info:status"
  763. msgid "Uploading print job to printer."
  764. msgstr "Transferindo trabalho de impressão para a impressora."
  765. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  766. #, python-brace-format
  767. msgctxt "@info:status"
  768. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  769. msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}."
  770. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  771. msgctxt "@info:title"
  772. msgid "Sending materials to printer"
  773. msgstr "Enviando material para a impressora"
  774. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  775. #, python-brace-format
  776. msgctxt "@info:status"
  777. 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."
  778. 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."
  779. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  780. msgctxt "@info:title"
  781. msgid "Not a group host"
  782. msgstr "Não é host de grupo"
  783. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  784. msgctxt "@action"
  785. msgid "Configure group"
  786. msgstr "Configurar grupo"
  787. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:16
  788. msgctxt "info:status"
  789. msgid "This printer is not linked to the Digital Factory:"
  790. msgid_plural "These printers are not linked to the Digital Factory:"
  791. msgstr[0] "Esta impressora não está ligada à Digital Factory:"
  792. msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:"
  793. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:22 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  794. msgctxt "info:name"
  795. msgid "Ultimaker Digital Factory"
  796. msgstr "Ultimaker Digital Factory"
  797. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:28
  798. #, python-brace-format
  799. msgctxt "info:status"
  800. msgid "To establish a connection, please visit the {website_link}"
  801. msgstr "Para estabelecer uma conexão, por favor visite o {website_link}"
  802. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:32
  803. msgctxt "info:status"
  804. msgid "A cloud connection is not available for a printer"
  805. msgid_plural "A cloud connection is not available for some printers"
  806. msgstr[0] "Conexão de nuvem não está disponível para uma impressora"
  807. msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras"
  808. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:40
  809. msgctxt "@action:button"
  810. msgid "Keep printer configurations"
  811. msgstr "Manter configurações da impressora"
  812. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:45
  813. msgctxt "@action:button"
  814. msgid "Remove printers"
  815. msgstr "Remover impressoras"
  816. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  817. msgctxt "@info:status"
  818. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  819. 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."
  820. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  821. msgctxt "@info:title"
  822. msgid "Update your printer"
  823. msgstr "Atualize sua impressora"
  824. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  825. msgctxt "@info:status"
  826. msgid "Print job was successfully sent to the printer."
  827. msgstr "Trabalho de impressão enviado à impressora com sucesso."
  828. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  829. msgctxt "@info:title"
  830. msgid "Data Sent"
  831. msgstr "Dados Enviados"
  832. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  833. msgctxt "@action:button Preceded by 'Ready to'."
  834. msgid "Print over network"
  835. msgstr "Imprimir pela rede"
  836. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  837. msgctxt "@properties:tooltip"
  838. msgid "Print over network"
  839. msgstr "Imprime pela rede"
  840. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  841. msgctxt "@info:status"
  842. msgid "Connected over the network"
  843. msgstr "Conectado pela rede"
  844. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  845. msgctxt "@info:status"
  846. msgid "tomorrow"
  847. msgstr "amanhã"
  848. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  849. msgctxt "@info:status"
  850. msgid "today"
  851. msgstr "hoje"
  852. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  853. msgctxt "@action"
  854. msgid "Connect via Network"
  855. msgstr "Conectar pela rede"
  856. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  857. msgctxt "@action:button"
  858. msgid "Print via cloud"
  859. msgstr "Imprimir pela nuvem"
  860. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  861. msgctxt "@properties:tooltip"
  862. msgid "Print via cloud"
  863. msgstr "Imprimir pela nuvem"
  864. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  865. msgctxt "@info:status"
  866. msgid "Connected via cloud"
  867. msgstr "Conectado pela nuvem"
  868. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  869. #, python-brace-format
  870. msgctxt "@message {printer_name} is replaced with the name of the printer"
  871. msgid "{printer_name} will be removed until the next account sync."
  872. msgstr "{printer_name} será removida até a próxima sincronização de conta."
  873. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  874. #, python-brace-format
  875. msgctxt "@message {printer_name} is replaced with the name of the printer"
  876. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  877. msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}"
  878. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  879. #, python-brace-format
  880. msgctxt "@message {printer_name} is replaced with the name of the printer"
  881. msgid "Are you sure you want to remove {printer_name} temporarily?"
  882. msgstr "Tem certeza que quer remover {printer_name} temporariamente?"
  883. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  884. msgctxt "@title:window"
  885. msgid "Remove printers?"
  886. msgstr "Remover impressoras?"
  887. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  888. #, python-brace-format
  889. msgctxt "@label"
  890. msgid ""
  891. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  892. "Are you sure you want to continue?"
  893. msgid_plural ""
  894. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  895. "Are you sure you want to continue?"
  896. msgstr[0] ""
  897. "Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n"
  898. "Tem certeza que quer continuar?"
  899. msgstr[1] ""
  900. "Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n"
  901. "Tem certeza que quer continuar?"
  902. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  903. msgctxt "@label"
  904. msgid ""
  905. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  906. "Are you sure you want to continue?"
  907. msgstr ""
  908. "Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n"
  909. "Tem certeza que quer continuar?"
  910. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  911. msgctxt "@action:button"
  912. msgid "Monitor print"
  913. msgstr "Monitorar impressão"
  914. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  915. msgctxt "@action:tooltip"
  916. msgid "Track the print in Ultimaker Digital Factory"
  917. msgstr "Rastrear a impressão na Ultimaker Digital Factory"
  918. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  919. #, python-brace-format
  920. msgctxt "@error:send"
  921. msgid "Unknown error code when uploading print job: {0}"
  922. msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}"
  923. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:28
  924. msgctxt "@item:inlistbox"
  925. msgid "3MF file"
  926. msgstr "Arquivo 3MF"
  927. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/__init__.py:36
  928. msgctxt "@item:inlistbox"
  929. msgid "Cura Project 3MF file"
  930. msgstr "Arquivo de Projeto 3MF do Cura"
  931. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWriter.py:240
  932. msgctxt "@error:zip"
  933. msgid "Error writing 3mf file."
  934. msgstr "Erro ao escrever arquivo 3mf."
  935. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  936. msgctxt "@error:zip"
  937. msgid "3MF Writer plug-in is corrupt."
  938. msgstr "O complemento de Escrita 3MF está corrompido."
  939. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  940. msgctxt "@error"
  941. msgid "There is no workspace yet to write. Please add a printer first."
  942. msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro."
  943. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  944. msgctxt "@error:zip"
  945. msgid "No permission to write the workspace here."
  946. msgstr "Sem permissão para gravar o espaço de trabalho aqui."
  947. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  948. msgctxt "@error:zip"
  949. msgid "The operating system does not allow saving a project file to this location or with this file name."
  950. msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo."
  951. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  952. msgctxt "@info:backup_status"
  953. msgid "There was an error trying to restore your backup."
  954. msgstr "Houve um erro ao tentar restaurar seu backup."
  955. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  956. msgctxt "@item:inmenu"
  957. msgid "Manage backups"
  958. msgstr "Gerenciar backups"
  959. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  960. msgctxt "@info:title"
  961. msgid "Backups"
  962. msgstr "Backups"
  963. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  964. msgctxt "@info:backup_status"
  965. msgid "There was an error while uploading your backup."
  966. msgstr "Houve um erro ao transferir seu backup."
  967. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  968. msgctxt "@info:backup_status"
  969. msgid "Creating your backup..."
  970. msgstr "Criando seu backup..."
  971. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  972. msgctxt "@info:backup_status"
  973. msgid "There was an error while creating your backup."
  974. msgstr "Houve um erro ao criar seu backup."
  975. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  976. msgctxt "@info:backup_status"
  977. msgid "Uploading your backup..."
  978. msgstr "Enviando seu backup..."
  979. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  980. msgctxt "@info:backup_status"
  981. msgid "Your backup has finished uploading."
  982. msgstr "Seu backup terminou de ser enviado."
  983. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  984. msgctxt "@error:file_size"
  985. msgid "The backup exceeds the maximum file size."
  986. msgstr "O backup excede o tamanho máximo de arquivo."
  987. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  988. msgctxt "@text"
  989. msgid "Unable to read example data file."
  990. msgstr "Não foi possível ler o arquivo de dados de exemplo."
  991. #: /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
  992. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:168 /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/UFPWriter.py:178
  993. msgctxt "@info:error"
  994. msgid "Can't write to UFP file:"
  995. msgstr "Não foi possível escrever no arquivo UFP:"
  996. #: /Users/c.lamboo/ultimaker/Cura/plugins/UFPWriter/__init__.py:28 /Users/c.lamboo/ultimaker/Cura/plugins/UFPReader/__init__.py:22
  997. msgctxt "@item:inlistbox"
  998. msgid "UltiMaker Format Package"
  999. msgstr "Pacote de Formato da UltiMaker"
  1000. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1001. msgctxt "@text Placeholder for the username if it has been deleted"
  1002. msgid "deleted user"
  1003. msgstr "usuário removido"
  1004. #: /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
  1005. msgctxt "@item:inlistbox"
  1006. msgid "G-code File"
  1007. msgstr "Arquivo G-Code"
  1008. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:350
  1009. msgctxt "@info:status"
  1010. msgid "Parsing G-code"
  1011. msgstr "Interpretando G-Code"
  1012. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:352 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:506
  1013. msgctxt "@info:title"
  1014. msgid "G-code Details"
  1015. msgstr "Detalhes do G-Code"
  1016. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/FlavorParser.py:504
  1017. msgctxt "@info:generic"
  1018. 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."
  1019. 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."
  1020. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeReader/__init__.py:18
  1021. msgctxt "@item:inlistbox"
  1022. msgid "G File"
  1023. msgstr "Arquivo G"
  1024. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:15
  1025. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1026. msgid "Open Compressed Triangle Mesh"
  1027. msgstr "Open Compressed Triangle Mesh"
  1028. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:19
  1029. msgctxt "@item:inlistbox"
  1030. msgid "COLLADA Digital Asset Exchange"
  1031. msgstr "Câmbio de Ativos Digitais COLLADA"
  1032. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:23
  1033. msgctxt "@item:inlistbox"
  1034. msgid "glTF Binary"
  1035. msgstr "Binário glTF"
  1036. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:27
  1037. msgctxt "@item:inlistbox"
  1038. msgid "glTF Embedded JSON"
  1039. msgstr "glTF Embutido JSON"
  1040. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:36
  1041. msgctxt "@item:inlistbox"
  1042. msgid "Stanford Triangle Format"
  1043. msgstr "Formato de Triângulos de Stanford"
  1044. #: /Users/c.lamboo/ultimaker/Cura/plugins/TrimeshReader/__init__.py:40
  1045. msgctxt "@item:inlistbox"
  1046. msgid "Compressed COLLADA Digital Asset Exchange"
  1047. msgstr "Câmbio de Ativos Digitais COLLADA Comprimido"
  1048. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1049. msgctxt "@action"
  1050. msgid "Level build plate"
  1051. msgstr "Nivelar mesa"
  1052. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1053. msgctxt "@action"
  1054. msgid "Select upgrades"
  1055. msgstr "Selecionar Atualizações"
  1056. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzReader/__init__.py:17 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/__init__.py:17
  1057. msgctxt "@item:inlistbox"
  1058. msgid "Compressed G-code File"
  1059. msgstr "Arquivo de G-Code Comprimido"
  1060. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:117
  1061. msgctxt "@info:error"
  1062. msgid "Could not interpret the server's response."
  1063. msgstr "Não foi possível interpretar a resposta de servidor."
  1064. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/RemotePackageList.py:148
  1065. msgctxt "@info:error"
  1066. msgid "Could not reach Marketplace."
  1067. msgstr "Não foi possível conectar ao Marketplace."
  1068. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1069. msgctxt "@button"
  1070. msgid "Decline and remove from account"
  1071. msgstr "Recusar e remover da conta"
  1072. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:12 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1073. msgctxt "@button"
  1074. msgid "Decline"
  1075. msgstr "Recusar"
  1076. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:13 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  1077. msgctxt "@button"
  1078. msgid "Agree"
  1079. msgstr "Concordar"
  1080. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  1081. msgctxt "@title:window"
  1082. msgid "Plugin License Agreement"
  1083. msgstr "Acordo de Licença do Complemento"
  1084. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1085. msgctxt "@info:generic"
  1086. msgid "Do you want to sync material and software packages with your account?"
  1087. msgstr "Você quer sincronizar os pacotes de material e software com sua conta?"
  1088. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1089. msgctxt "@info:title"
  1090. msgid "Changes detected from your UltiMaker account"
  1091. msgstr "Alterações detectadas de sua conta UltiMaker"
  1092. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1093. msgctxt "@action:button"
  1094. msgid "Sync"
  1095. msgstr "Sincronizar"
  1096. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1097. msgctxt "@info:generic"
  1098. msgid "You need to quit and restart {} before changes have effect."
  1099. msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito."
  1100. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1101. msgctxt "@info:generic"
  1102. msgid "Syncing..."
  1103. msgstr "Sincronizando..."
  1104. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1105. msgctxt "@info:generic"
  1106. msgid "{} plugins failed to download"
  1107. msgstr "{} complementos falharam em baixar"
  1108. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:28
  1109. msgctxt "@label"
  1110. msgid "Installed Plugins"
  1111. msgstr "Complementos Instalados"
  1112. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:29
  1113. msgctxt "@label"
  1114. msgid "Installed Materials"
  1115. msgstr "Materiais Instalados"
  1116. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:33
  1117. msgctxt "@label"
  1118. msgid "Bundled Plugins"
  1119. msgstr "Complementos Empacotados"
  1120. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/LocalPackageList.py:34
  1121. msgctxt "@label"
  1122. msgid "Bundled Materials"
  1123. msgstr "Materiais Empacotados"
  1124. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:43
  1125. msgctxt "@label:property"
  1126. msgid "Unknown Package"
  1127. msgstr "Pacote Desconhecido"
  1128. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/PackageModel.py:66
  1129. msgctxt "@label:property"
  1130. msgid "Unknown Author"
  1131. msgstr "Autor Desconhecido"
  1132. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  1133. msgctxt "@item:intext"
  1134. msgid "Removable Drive"
  1135. msgstr "Unidade Removível"
  1136. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  1137. msgctxt "@action:button Preceded by 'Ready to'."
  1138. msgid "Save to Removable Drive"
  1139. msgstr "Salvar em Unidade Removível"
  1140. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  1141. #, python-brace-format
  1142. msgctxt "@item:inlistbox"
  1143. msgid "Save to Removable Drive {0}"
  1144. msgstr "Salvar em Unidade Removível {0}"
  1145. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  1146. #, python-brace-format
  1147. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  1148. msgid "Saving to Removable Drive <filename>{0}</filename>"
  1149. msgstr "Salvando na Unidade Removível <filename>{0}</filename>"
  1150. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  1151. msgctxt "@info:title"
  1152. msgid "Saving"
  1153. msgstr "Salvando"
  1154. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  1155. #, python-brace-format
  1156. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1157. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  1158. msgstr "Não foi possível salvar em <filename>{0}</filename>: <message>{1}</message>"
  1159. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  1160. #, python-brace-format
  1161. msgctxt "@info:status Don't translate the tag {device}!"
  1162. msgid "Could not find a file name when trying to write to {device}."
  1163. msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}."
  1164. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152 /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  1165. #, python-brace-format
  1166. msgctxt "@info:status"
  1167. msgid "Could not save to removable drive {0}: {1}"
  1168. msgstr "Não foi possível salvar em unidade removível {0}: {1}"
  1169. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  1170. #, python-brace-format
  1171. msgctxt "@info:status"
  1172. msgid "Saved to Removable Drive {0} as {1}"
  1173. msgstr "Salvo em Unidade Removível {0} como {1}"
  1174. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  1175. msgctxt "@info:title"
  1176. msgid "File Saved"
  1177. msgstr "Arquivo Salvo"
  1178. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1179. msgctxt "@action:button"
  1180. msgid "Eject"
  1181. msgstr "Ejetar"
  1182. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  1183. #, python-brace-format
  1184. msgctxt "@action"
  1185. msgid "Eject removable device {0}"
  1186. msgstr "Ejetar dispositivo removível {0}"
  1187. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  1188. #, python-brace-format
  1189. msgctxt "@info:status"
  1190. msgid "Ejected {0}. You can now safely remove the drive."
  1191. msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura."
  1192. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  1193. msgctxt "@info:title"
  1194. msgid "Safely Remove Hardware"
  1195. msgstr "Remover Hardware com Segurança"
  1196. #: /Users/c.lamboo/ultimaker/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  1197. #, python-brace-format
  1198. msgctxt "@info:status"
  1199. msgid "Failed to eject {0}. Another program may be using the drive."
  1200. msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade."
  1201. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/__init__.py:14
  1202. msgctxt "@item:inmenu"
  1203. msgid "Monitor"
  1204. msgstr "Monitor"
  1205. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1206. msgctxt "@message"
  1207. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1208. msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker."
  1209. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1210. msgctxt "@message:title"
  1211. msgid "Slicing failed"
  1212. msgstr "Fatiamento falhado"
  1213. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1214. msgctxt "@message:button"
  1215. msgid "Report a bug"
  1216. msgstr "Relatar um bug"
  1217. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1218. msgctxt "@message:description"
  1219. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1220. msgstr "Relatar um bug no issue tracker do UltiMaker Cura."
  1221. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:401
  1222. msgctxt "@info:status"
  1223. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1224. msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
  1225. #: /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
  1226. #: /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
  1227. msgctxt "@info:title"
  1228. msgid "Unable to slice"
  1229. msgstr "Não foi possível fatiar"
  1230. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:434
  1231. #, python-brace-format
  1232. msgctxt "@info:status"
  1233. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1234. msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
  1235. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:461
  1236. #, python-brace-format
  1237. msgctxt "@info:status"
  1238. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1239. 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}"
  1240. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:473
  1241. msgctxt "@info:status"
  1242. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1243. msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas."
  1244. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:485
  1245. #, python-format
  1246. msgctxt "@info:status"
  1247. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1248. msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s."
  1249. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:495
  1250. msgctxt "@info:status"
  1251. msgid ""
  1252. "Please review settings and check if your models:\n"
  1253. "- Fit within the build volume\n"
  1254. "- Are assigned to an enabled extruder\n"
  1255. "- Are not all set as modifier meshes"
  1256. msgstr ""
  1257. "Por favor revise os ajustes e verifique se seus modelos:\n"
  1258. "- Cabem dentro do volume de impressão\n"
  1259. "- Estão associados a um extrusor habilitado\n"
  1260. "- Não estão todos configurados como malhas de modificação"
  1261. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1262. msgctxt "@info:status"
  1263. msgid "Processing Layers"
  1264. msgstr "Processando Camadas"
  1265. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1266. msgctxt "@info:title"
  1267. msgid "Information"
  1268. msgstr "Informação"
  1269. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:27 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/__init__.py:33
  1270. msgctxt "@item:inlistbox"
  1271. msgid "3MF File"
  1272. msgstr "Arquivo 3MF"
  1273. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:212
  1274. msgctxt "@title:tab"
  1275. msgid "Recommended"
  1276. msgstr "Recomendado"
  1277. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:214
  1278. msgctxt "@title:tab"
  1279. msgid "Custom"
  1280. msgstr "Personalizado"
  1281. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:390
  1282. msgctxt "@info:status"
  1283. 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."
  1284. 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."
  1285. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:392
  1286. msgctxt "@info:title"
  1287. msgid "Material profiles not installed"
  1288. msgstr "Perfis de material não instalados"
  1289. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.py:405
  1290. msgctxt "@action:button"
  1291. msgid "Install Materials"
  1292. msgstr "Instalar Materiais"
  1293. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:545
  1294. #, python-brace-format
  1295. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1296. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1297. 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."
  1298. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:548
  1299. msgctxt "@info:title"
  1300. msgid "Open Project File"
  1301. msgstr "Abrir Arquivo de Projeto"
  1302. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:650
  1303. #, python-brace-format
  1304. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1305. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1306. msgstr "O arquivo de projeto <filename>{0}</filename> tornou-se subitamente inacessível: <message>{1}</message>."
  1307. #: /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
  1308. msgctxt "@info:title"
  1309. msgid "Can't Open Project File"
  1310. msgstr "Não Foi Possível Abrir o Arquivo de Projeto"
  1311. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:658 /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:676
  1312. #, python-brace-format
  1313. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1314. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1315. msgstr "Arquivo de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
  1316. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:723
  1317. #, python-brace-format
  1318. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1319. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  1320. msgstr "O arquivo de projeto <filename>{0}</filename> foi feito usando perfis que são desconhecidos para esta versão do UltiMaker Cura."
  1321. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  1322. msgctxt "@label"
  1323. msgid "Per Model Settings"
  1324. msgstr "Ajustes por Modelo"
  1325. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  1326. msgctxt "@info:tooltip"
  1327. msgid "Configure Per Model Settings"
  1328. msgstr "Configurar ajustes por Modelo"
  1329. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:31
  1330. msgctxt "@info:title"
  1331. msgid "3D Model Assistant"
  1332. msgstr "Assistente de Modelo 3D"
  1333. #: /Users/c.lamboo/ultimaker/Cura/plugins/ModelChecker/ModelChecker.py:97
  1334. #, python-brace-format
  1335. msgctxt "@info:status"
  1336. msgid ""
  1337. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1338. "<p>{model_names}</p>\n"
  1339. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1340. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1341. msgstr ""
  1342. "<p>Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:</p>\n"
  1343. "<p>{model_names}</p>\n"
  1344. "<p>Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.</p>\n"
  1345. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guia de qualidade de impressão</a></p>"
  1346. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1347. msgctxt "@item:inmenu"
  1348. msgid "USB printing"
  1349. msgstr "Impressão USB"
  1350. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1351. msgctxt "@action:button Preceded by 'Ready to'."
  1352. msgid "Print via USB"
  1353. msgstr "Imprimir pela USB"
  1354. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1355. msgctxt "@info:tooltip"
  1356. msgid "Print via USB"
  1357. msgstr "Imprimir pela USB"
  1358. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1359. msgctxt "@info:status"
  1360. msgid "Connected via USB"
  1361. msgstr "Conectado via USB"
  1362. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1363. msgctxt "@label"
  1364. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1365. msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?"
  1366. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  1367. msgctxt "@message"
  1368. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1369. 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."
  1370. #: /Users/c.lamboo/ultimaker/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  1371. msgctxt "@message"
  1372. msgid "Print in Progress"
  1373. msgstr "Impressão em Progresso"
  1374. #: /Users/c.lamboo/ultimaker/Cura/plugins/PreviewStage/__init__.py:13
  1375. msgctxt "@item:inmenu"
  1376. msgid "Preview"
  1377. msgstr "Pré-visualização"
  1378. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:75
  1379. msgctxt "@error:not supported"
  1380. msgid "GCodeWriter does not support non-text mode."
  1381. msgstr "O GCodeWriter não suporta modo binário."
  1382. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:81 /Users/c.lamboo/ultimaker/Cura/plugins/GCodeWriter/GCodeWriter.py:97
  1383. msgctxt "@warning:status"
  1384. msgid "Please prepare G-code before exporting."
  1385. msgstr "Por favor prepare o G-Code antes de exportar."
  1386. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1387. msgctxt "@action"
  1388. msgid "Update Firmware"
  1389. msgstr "Atualizar Firmware"
  1390. #: /Users/c.lamboo/ultimaker/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1391. msgctxt "@error:not supported"
  1392. msgid "GCodeGzWriter does not support text mode."
  1393. msgstr "O GCodeGzWriter não suporta modo binário."
  1394. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/__init__.py:15
  1395. msgctxt "@item:inlistbox"
  1396. msgid "Layer view"
  1397. msgstr "Visão de Camadas"
  1398. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:129
  1399. msgctxt "@info:status"
  1400. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1401. msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada."
  1402. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:130
  1403. msgctxt "@info:title"
  1404. msgid "Simulation View"
  1405. msgstr "Visão Simulada"
  1406. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:133
  1407. msgctxt "@info:status"
  1408. msgid "Nothing is shown because you need to slice first."
  1409. msgstr "Nada está exibido porque você precisa fatiar primeiro."
  1410. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:134
  1411. msgctxt "@info:title"
  1412. msgid "No layers to show"
  1413. msgstr "Não há camadas a exibir"
  1414. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationView.py:136 /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:74
  1415. msgctxt "@info:option_text"
  1416. msgid "Do not show this message again"
  1417. msgstr "Não mostrar essa mensagem novamente"
  1418. #: /Users/c.lamboo/ultimaker/Cura/plugins/LegacyProfileReader/__init__.py:14
  1419. msgctxt "@item:inlistbox"
  1420. msgid "Cura 15.04 profiles"
  1421. msgstr "Perfis do Cura 15.04"
  1422. #: /Users/c.lamboo/ultimaker/Cura/plugins/AMFReader/__init__.py:15
  1423. msgctxt "@item:inlistbox"
  1424. msgid "AMF File"
  1425. msgstr "Arquivo AMF"
  1426. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:71
  1427. msgctxt "@info:status"
  1428. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1429. msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura."
  1430. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/SolidView.py:73
  1431. msgctxt "@info:title"
  1432. msgid "Model Errors"
  1433. msgstr "Erros de Modelo"
  1434. #: /Users/c.lamboo/ultimaker/Cura/plugins/SolidView/__init__.py:12
  1435. msgctxt "@item:inmenu"
  1436. msgid "Solid view"
  1437. msgstr "Visão sólida"
  1438. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1439. #, python-brace-format
  1440. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1441. 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}."
  1442. 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}."
  1443. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1444. #, python-format
  1445. msgctxt "@info:title The %s gets replaced with the printer name."
  1446. msgid "New %s stable firmware available"
  1447. msgstr "Novo firmware estável de %s disponível"
  1448. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1449. msgctxt "@action:button"
  1450. msgid "How to update"
  1451. msgstr "Como atualizar"
  1452. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1453. msgctxt "@info"
  1454. msgid "Could not access update information."
  1455. msgstr "Não foi possível acessar informação de atualização."
  1456. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:12
  1457. msgctxt "@label"
  1458. msgid "Support Blocker"
  1459. msgstr "Bloqueador de Suporte"
  1460. #: /Users/c.lamboo/ultimaker/Cura/plugins/SupportEraser/__init__.py:13
  1461. msgctxt "@info:tooltip"
  1462. msgid "Create a volume in which supports are not printed."
  1463. msgstr "Cria um volume em que os suportes não são impressos."
  1464. #: /Users/c.lamboo/ultimaker/Cura/plugins/PrepareStage/__init__.py:12
  1465. msgctxt "@item:inmenu"
  1466. msgid "Prepare"
  1467. msgstr "Preparar"
  1468. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1469. msgctxt "@title:label"
  1470. msgid "Printer Settings"
  1471. msgstr "Ajustes de Impressora"
  1472. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1473. msgctxt "@label"
  1474. msgid "X (Width)"
  1475. msgstr "X (largura)"
  1476. #: /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
  1477. #: /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
  1478. #: /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
  1479. #: /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
  1480. msgctxt "@label"
  1481. msgid "mm"
  1482. msgstr "mm"
  1483. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1484. msgctxt "@label"
  1485. msgid "Y (Depth)"
  1486. msgstr "Y (Profundidade)"
  1487. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1488. msgctxt "@label"
  1489. msgid "Z (Height)"
  1490. msgstr "Z (Altura)"
  1491. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1492. msgctxt "@label"
  1493. msgid "Build plate shape"
  1494. msgstr "Forma da plataforma de impressão"
  1495. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1496. msgctxt "@label"
  1497. msgid "Origin at center"
  1498. msgstr "Origem no centro"
  1499. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1500. msgctxt "@label"
  1501. msgid "Heated bed"
  1502. msgstr "Mesa aquecida"
  1503. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1504. msgctxt "@label"
  1505. msgid "Heated build volume"
  1506. msgstr "Volume de construção aquecido"
  1507. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1508. msgctxt "@label"
  1509. msgid "G-code flavor"
  1510. msgstr "Sabor de G-Code"
  1511. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1512. msgctxt "@title:label"
  1513. msgid "Printhead Settings"
  1514. msgstr "Ajustes da Cabeça de Impressão"
  1515. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1516. msgctxt "@label"
  1517. msgid "X min"
  1518. msgstr "X mín"
  1519. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1520. msgctxt "@label"
  1521. msgid "Y min"
  1522. msgstr "Y mín"
  1523. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1524. msgctxt "@label"
  1525. msgid "X max"
  1526. msgstr "X máx"
  1527. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1528. msgctxt "@label"
  1529. msgid "Y max"
  1530. msgstr "Y máx"
  1531. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1532. msgctxt "@label"
  1533. msgid "Gantry Height"
  1534. msgstr "Altura do Eixo"
  1535. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1536. msgctxt "@label"
  1537. msgid "Number of Extruders"
  1538. msgstr "Número de Extrusores"
  1539. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  1540. msgctxt "@label"
  1541. msgid "Apply Extruder offsets to GCode"
  1542. msgstr "Aplicar deslocamentos de Extrusão ao G-Code"
  1543. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:389
  1544. msgctxt "@title:label"
  1545. msgid "Start G-code"
  1546. msgstr "G-Code Inicial"
  1547. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:400
  1548. msgctxt "@title:label"
  1549. msgid "End G-code"
  1550. msgstr "G-Code Final"
  1551. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1552. msgctxt "@title:tab"
  1553. msgid "Printer"
  1554. msgstr "Impressora"
  1555. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1556. msgctxt "@title:label"
  1557. msgid "Nozzle Settings"
  1558. msgstr "Ajustes do Bico"
  1559. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1560. msgctxt "@label"
  1561. msgid "Nozzle size"
  1562. msgstr "Tamanho do bico"
  1563. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1564. msgctxt "@label"
  1565. msgid "Compatible material diameter"
  1566. msgstr "Diâmetro de material compatível"
  1567. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1568. msgctxt "@label"
  1569. msgid "Nozzle offset X"
  1570. msgstr "Deslocamento X do Bico"
  1571. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1572. msgctxt "@label"
  1573. msgid "Nozzle offset Y"
  1574. msgstr "Deslocamento Y do Bico"
  1575. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1576. msgctxt "@label"
  1577. msgid "Cooling Fan Number"
  1578. msgstr "Número da Ventoinha de Resfriamento"
  1579. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1580. msgctxt "@title:label"
  1581. msgid "Extruder Start G-code"
  1582. msgstr "G-Code Inicial do Extrusor"
  1583. #: /Users/c.lamboo/ultimaker/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1584. msgctxt "@title:label"
  1585. msgid "Extruder End G-code"
  1586. msgstr "G-Code Final do Extrusor"
  1587. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:14
  1588. msgctxt "@title:window"
  1589. msgid "Convert Image"
  1590. msgstr "Converter Imagem"
  1591. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:33
  1592. msgctxt "@action:label"
  1593. msgid "Height (mm)"
  1594. msgstr "Altura (mm)"
  1595. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:56
  1596. msgctxt "@info:tooltip"
  1597. msgid "The maximum distance of each pixel from \"Base.\""
  1598. msgstr "A distância máxima de cada pixel da \"Base\"."
  1599. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:66
  1600. msgctxt "@action:label"
  1601. msgid "Base (mm)"
  1602. msgstr "Base (mm)"
  1603. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:90
  1604. msgctxt "@info:tooltip"
  1605. msgid "The base height from the build plate in millimeters."
  1606. msgstr "A altura-base da mesa de impressão em milímetros."
  1607. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:100
  1608. msgctxt "@action:label"
  1609. msgid "Width (mm)"
  1610. msgstr "Largura (mm)"
  1611. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:124
  1612. msgctxt "@info:tooltip"
  1613. msgid "The width in millimeters on the build plate"
  1614. msgstr "A largura em milímetros na plataforma de impressão"
  1615. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:134
  1616. msgctxt "@action:label"
  1617. msgid "Depth (mm)"
  1618. msgstr "Profundidade (mm)"
  1619. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:158
  1620. msgctxt "@info:tooltip"
  1621. msgid "The depth in millimeters on the build plate"
  1622. msgstr "A profundidade da mesa de impressão em milímetros"
  1623. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:187
  1624. msgctxt "@item:inlistbox"
  1625. msgid "Darker is higher"
  1626. msgstr "Mais escuro é mais alto"
  1627. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:188
  1628. msgctxt "@item:inlistbox"
  1629. msgid "Lighter is higher"
  1630. msgstr "Mais claro é mais alto"
  1631. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:195
  1632. msgctxt "@info:tooltip"
  1633. 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."
  1634. 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."
  1635. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:205
  1636. msgctxt "@action:label"
  1637. msgid "Color Model"
  1638. msgstr "Modelo de Cor"
  1639. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:224
  1640. msgctxt "@item:inlistbox"
  1641. msgid "Linear"
  1642. msgstr "Linear"
  1643. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:225
  1644. msgctxt "@item:inlistbox"
  1645. msgid "Translucency"
  1646. msgstr "Translucidez"
  1647. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:232
  1648. msgctxt "@info:tooltip"
  1649. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1650. 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."
  1651. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:242
  1652. msgctxt "@action:label"
  1653. msgid "1mm Transmittance (%)"
  1654. msgstr "Transmitância de 1mm (%)"
  1655. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:263
  1656. msgctxt "@info:tooltip"
  1657. 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."
  1658. 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."
  1659. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:274
  1660. msgctxt "@action:label"
  1661. msgid "Smoothing"
  1662. msgstr "Suavização"
  1663. #: /Users/c.lamboo/ultimaker/Cura/plugins/ImageReader/ConfigUI.qml:298
  1664. msgctxt "@info:tooltip"
  1665. msgid "The amount of smoothing to apply to the image."
  1666. msgstr "A quantidade de suavização para aplicar na imagem."
  1667. #: /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
  1668. msgctxt "@action:button"
  1669. msgid "OK"
  1670. msgstr "Ok"
  1671. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  1672. msgctxt "@title:window"
  1673. msgid "Post Processing Plugin"
  1674. msgstr "Complemento de Pós-Processamento"
  1675. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1676. msgctxt "@label"
  1677. msgid "Post Processing Scripts"
  1678. msgstr "Scripts de Pós-Processamento"
  1679. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  1680. msgctxt "@action"
  1681. msgid "Add a script"
  1682. msgstr "Adicionar um script"
  1683. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  1684. msgctxt "@label"
  1685. msgid "Settings"
  1686. msgstr "Ajustes"
  1687. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  1688. msgctxt "@info:tooltip"
  1689. msgid "Change active post-processing scripts."
  1690. msgstr "Alterar scripts de pós-processamento ativos."
  1691. #: /Users/c.lamboo/ultimaker/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1692. msgctxt "@info:tooltip"
  1693. msgid "The following script is active:"
  1694. msgid_plural "The following scripts are active:"
  1695. msgstr[0] "O seguinte script está ativo:"
  1696. msgstr[1] "Os seguintes scripts estão ativos:"
  1697. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1698. msgctxt "@label"
  1699. msgid "Move to top"
  1700. msgstr "Mover para o topo"
  1701. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  1702. msgctxt "@label"
  1703. msgid "Delete"
  1704. msgstr "Remover"
  1705. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:284
  1706. msgctxt "@label"
  1707. msgid "Resume"
  1708. msgstr "Continuar"
  1709. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  1710. msgctxt "@label"
  1711. msgid "Pausing..."
  1712. msgstr "Pausando..."
  1713. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  1714. msgctxt "@label"
  1715. msgid "Resuming..."
  1716. msgstr "Continuando..."
  1717. #: /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
  1718. msgctxt "@label"
  1719. msgid "Pause"
  1720. msgstr "Pausar"
  1721. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1722. msgctxt "@label"
  1723. msgid "Aborting..."
  1724. msgstr "Abortando..."
  1725. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  1726. msgctxt "@label"
  1727. msgid "Abort"
  1728. msgstr "Abortar"
  1729. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  1730. msgctxt "@label %1 is the name of a print job."
  1731. msgid "Are you sure you want to move %1 to the top of the queue?"
  1732. msgstr "Você tem certeza que quer mover %1 para o topo da fila?"
  1733. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  1734. msgctxt "@window:title"
  1735. msgid "Move print job to top"
  1736. msgstr "Move o trabalho de impressão para o topo da fila"
  1737. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  1738. msgctxt "@label %1 is the name of a print job."
  1739. msgid "Are you sure you want to delete %1?"
  1740. msgstr "Você tem certeza que quer remover %1?"
  1741. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  1742. msgctxt "@window:title"
  1743. msgid "Delete print job"
  1744. msgstr "Remover trabalho de impressão"
  1745. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  1746. msgctxt "@label %1 is the name of a print job."
  1747. msgid "Are you sure you want to abort %1?"
  1748. msgstr "Você tem certeza que quer abortar %1?"
  1749. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237 /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:326
  1750. msgctxt "@window:title"
  1751. msgid "Abort print"
  1752. msgstr "Abortar impressão"
  1753. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1754. msgctxt "@title:window"
  1755. msgid "Print over network"
  1756. msgstr "Imprimir pela rede"
  1757. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1758. msgctxt "@action:button"
  1759. msgid "Print"
  1760. msgstr "Imprimir"
  1761. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1762. msgctxt "@label"
  1763. msgid "Printer selection"
  1764. msgstr "Seleção de impressora"
  1765. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1766. msgctxt "@title:window"
  1767. msgid "Configuration Changes"
  1768. msgstr "Alterações de Configuração"
  1769. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1770. msgctxt "@action:button"
  1771. msgid "Override"
  1772. msgstr "Sobrepor"
  1773. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1774. msgctxt "@label"
  1775. msgid "The assigned printer, %1, requires the following configuration change:"
  1776. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1777. msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:"
  1778. msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:"
  1779. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1780. msgctxt "@label"
  1781. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1782. msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida."
  1783. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1784. msgctxt "@label"
  1785. msgid "Change material %1 from %2 to %3."
  1786. msgstr "Alterar material %1 de %2 para %3."
  1787. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1788. msgctxt "@label"
  1789. msgid "Load %3 as material %1 (This cannot be overridden)."
  1790. msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)."
  1791. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1792. msgctxt "@label"
  1793. msgid "Change print core %1 from %2 to %3."
  1794. msgstr "Alterar núcleo de impressão %1 de %2 para %3."
  1795. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1796. msgctxt "@label"
  1797. msgid "Change build plate to %1 (This cannot be overridden)."
  1798. msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)."
  1799. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1800. msgctxt "@label"
  1801. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1802. msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão."
  1803. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:181
  1804. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:178
  1805. msgctxt "@label"
  1806. msgid "Glass"
  1807. msgstr "Vidro"
  1808. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1809. msgctxt "@label"
  1810. msgid "Aluminum"
  1811. msgstr "Alumínio"
  1812. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1813. msgctxt "@label link to Connect and Cloud interfaces"
  1814. msgid "Manage printer"
  1815. msgstr "Gerir Impressora"
  1816. #: /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
  1817. msgctxt "@info"
  1818. msgid "Please update your printer's firmware to manage the queue remotely."
  1819. msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente."
  1820. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:287
  1821. msgctxt "@info"
  1822. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1823. 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."
  1824. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1825. msgctxt "@label:status"
  1826. msgid "Loading..."
  1827. msgstr "Carregando..."
  1828. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1829. msgctxt "@label:status"
  1830. msgid "Unavailable"
  1831. msgstr "Indisponível"
  1832. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:355
  1833. msgctxt "@label:status"
  1834. msgid "Unreachable"
  1835. msgstr "Inacessivel"
  1836. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:359
  1837. msgctxt "@label:status"
  1838. msgid "Idle"
  1839. msgstr "Ocioso"
  1840. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:363 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1841. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1842. msgctxt "@label:status"
  1843. msgid "Preparing..."
  1844. msgstr "Preparando..."
  1845. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:368
  1846. msgctxt "@label:status"
  1847. msgid "Printing"
  1848. msgstr "Imprimindo"
  1849. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:409
  1850. msgctxt "@label"
  1851. msgid "Untitled"
  1852. msgstr "Sem Título"
  1853. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:424
  1854. msgctxt "@label"
  1855. msgid "Anonymous"
  1856. msgstr "Anônimo"
  1857. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:445
  1858. msgctxt "@label:status"
  1859. msgid "Requires configuration changes"
  1860. msgstr "Requer mudanças na configuração"
  1861. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:459
  1862. msgctxt "@action:button"
  1863. msgid "Details"
  1864. msgstr "Detalhes"
  1865. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1866. msgctxt "@label"
  1867. msgid "Unavailable printer"
  1868. msgstr "Impressora indisponível"
  1869. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1870. msgctxt "@label"
  1871. msgid "First available"
  1872. msgstr "Primeira disponível"
  1873. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  1874. msgctxt "@info"
  1875. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1876. msgstr "Monitora suas impressoras de todo lugar usando a Ultimaker Digital Factory"
  1877. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  1878. msgctxt "@button"
  1879. msgid "View printers in Digital Factory"
  1880. msgstr "Ver impressoras na Digital Factory"
  1881. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1882. msgctxt "@title:window"
  1883. msgid "Connect to Networked Printer"
  1884. msgstr "Conectar a Impressora de Rede"
  1885. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1886. msgctxt "@label"
  1887. 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."
  1888. 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."
  1889. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1890. msgctxt "@label"
  1891. msgid "Select your printer from the list below:"
  1892. msgstr "Selecione sua impressora da lista abaixo:"
  1893. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1894. msgctxt "@action:button"
  1895. msgid "Edit"
  1896. msgstr "Editar"
  1897. #: /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
  1898. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:321
  1899. msgctxt "@action:button"
  1900. msgid "Remove"
  1901. msgstr "Remover"
  1902. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1903. msgctxt "@action:button"
  1904. msgid "Refresh"
  1905. msgstr "Atualizar"
  1906. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1907. msgctxt "@label"
  1908. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1909. 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>"
  1910. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  1911. msgctxt "@label"
  1912. msgid "Type"
  1913. msgstr "Tipo"
  1914. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  1915. msgctxt "@label"
  1916. msgid "Firmware version"
  1917. msgstr "Versão do firmware"
  1918. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  1919. msgctxt "@label"
  1920. msgid "Address"
  1921. msgstr "Endereço"
  1922. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1923. msgctxt "@label"
  1924. msgid "This printer is not set up to host a group of printers."
  1925. msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras."
  1926. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1927. msgctxt "@label"
  1928. msgid "This printer is the host for a group of %1 printers."
  1929. msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras."
  1930. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1931. msgctxt "@label"
  1932. msgid "The printer at this address has not yet responded."
  1933. msgstr "A impressora neste endereço ainda não respondeu."
  1934. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1935. msgctxt "@action:button"
  1936. msgid "Connect"
  1937. msgstr "Conectar"
  1938. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1939. msgctxt "@title:window"
  1940. msgid "Invalid IP address"
  1941. msgstr "Endereço IP inválido"
  1942. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  1943. msgctxt "@text"
  1944. msgid "Please enter a valid IP address."
  1945. msgstr "Por favor entre um endereço IP válido."
  1946. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1947. msgctxt "@title:window"
  1948. msgid "Printer Address"
  1949. msgstr "Endereço da Impressora"
  1950. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  1951. msgctxt "@label"
  1952. msgid "Enter the IP address of your printer on the network."
  1953. msgstr "Entre o endereço IP da sua impressora na rede."
  1954. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1955. msgctxt "@label"
  1956. msgid "Queued"
  1957. msgstr "Enfileirados"
  1958. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  1959. msgctxt "@label link to connect manager"
  1960. msgid "Manage in browser"
  1961. msgstr "Gerir no navegador"
  1962. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  1963. msgctxt "@label"
  1964. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1965. msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo."
  1966. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1967. msgctxt "@label"
  1968. msgid "Print jobs"
  1969. msgstr "Trabalhos de impressão"
  1970. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  1971. msgctxt "@label"
  1972. msgid "Total print time"
  1973. msgstr "Tempo total de impressão"
  1974. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  1975. msgctxt "@label"
  1976. msgid "Waiting for"
  1977. msgstr "Esperando por"
  1978. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1979. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1980. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1981. msgctxt "@label:status"
  1982. msgid "Aborted"
  1983. msgstr "Abortado"
  1984. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1985. msgctxt "@label:status"
  1986. msgid "Finished"
  1987. msgstr "Finalizado"
  1988. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1989. msgctxt "@label:status"
  1990. msgid "Aborting..."
  1991. msgstr "Abortando..."
  1992. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1993. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1994. msgctxt "@label:status"
  1995. msgid "Failed"
  1996. msgstr "Falhado"
  1997. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1998. msgctxt "@label:status"
  1999. msgid "Pausing..."
  2000. msgstr "Pausando..."
  2001. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2002. msgctxt "@label:status"
  2003. msgid "Paused"
  2004. msgstr "Pausado"
  2005. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2006. msgctxt "@label:status"
  2007. msgid "Resuming..."
  2008. msgstr "Continuando..."
  2009. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2010. msgctxt "@label:status"
  2011. msgid "Action required"
  2012. msgstr "Necessária uma ação"
  2013. #: /Users/c.lamboo/ultimaker/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2014. msgctxt "@label:status"
  2015. msgid "Finishes %1 at %2"
  2016. msgstr "Termina %1 em %2"
  2017. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2018. msgctxt "@title:window"
  2019. msgid "Cura Backups"
  2020. msgstr "Backups do Cura"
  2021. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2022. msgctxt "@backuplist:label"
  2023. msgid "Cura Version"
  2024. msgstr "Versão do Cura"
  2025. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2026. msgctxt "@backuplist:label"
  2027. msgid "Machines"
  2028. msgstr "Máquinas"
  2029. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2030. msgctxt "@backuplist:label"
  2031. msgid "Materials"
  2032. msgstr "Materiais"
  2033. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2034. msgctxt "@backuplist:label"
  2035. msgid "Profiles"
  2036. msgstr "Perfis"
  2037. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2038. msgctxt "@backuplist:label"
  2039. msgid "Plugins"
  2040. msgstr "Complementos"
  2041. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2042. msgctxt "@button"
  2043. msgid "Want more?"
  2044. msgstr "Quer mais?"
  2045. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2046. msgctxt "@button"
  2047. msgid "Backup Now"
  2048. msgstr "Backup Agora"
  2049. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2050. msgctxt "@checkbox:description"
  2051. msgid "Auto Backup"
  2052. msgstr "Auto Backup"
  2053. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2054. msgctxt "@checkbox:description"
  2055. msgid "Automatically create a backup each day that Cura is started."
  2056. msgstr "Criar um backup automaticamente toda vez que o Cura iniciar."
  2057. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2058. msgctxt "@button"
  2059. msgid "Restore"
  2060. msgstr "Restaurar"
  2061. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2062. msgctxt "@dialog:title"
  2063. msgid "Delete Backup"
  2064. msgstr "Apagar o Backup"
  2065. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2066. msgctxt "@dialog:info"
  2067. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2068. msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito."
  2069. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2070. msgctxt "@dialog:title"
  2071. msgid "Restore Backup"
  2072. msgstr "Restaurar Backup"
  2073. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2074. msgctxt "@dialog:info"
  2075. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2076. msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?"
  2077. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2078. msgctxt "@title"
  2079. msgid "My Backups"
  2080. msgstr "Meus backups"
  2081. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  2082. msgctxt "@empty_state"
  2083. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2084. msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um."
  2085. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  2086. msgctxt "@backup_limit_info"
  2087. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2088. msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos."
  2089. #: /Users/c.lamboo/ultimaker/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2090. msgctxt "@description"
  2091. msgid "Backup and synchronize your Cura settings."
  2092. msgstr "Fazer backup e sincronizar os ajustes do Cura."
  2093. #: /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
  2094. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:49
  2095. msgctxt "@button"
  2096. msgid "Sign in"
  2097. msgstr "Entrar"
  2098. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2099. msgctxt "@title:window"
  2100. msgid "More information on anonymous data collection"
  2101. msgstr "Mais informações em coleção anônima de dados"
  2102. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2103. msgctxt "@text:window"
  2104. 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:"
  2105. 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:"
  2106. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2107. msgctxt "@text:window"
  2108. msgid "I don't want to send anonymous data"
  2109. msgstr "Recusar enviar dados anônimos"
  2110. #: /Users/c.lamboo/ultimaker/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2111. msgctxt "@text:window"
  2112. msgid "Allow sending anonymous data"
  2113. msgstr "Permitir enviar dados anônimos"
  2114. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  2115. msgctxt "@option"
  2116. msgid "Save Cura project and print file"
  2117. msgstr "Salvar o projeto Cura e imprimir o arquivo"
  2118. #: /Users/c.lamboo/ultimaker/Cura/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  2119. msgctxt "@option"
  2120. msgid "Save Cura project"
  2121. msgstr "Salvar o projeto Cura"
  2122. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2123. msgctxt "@label"
  2124. msgid "Please select any upgrades made to this UltiMaker Original"
  2125. msgstr "Por favor selecionar quaisquer atualizações feitas nesta UltiMaker Original"
  2126. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  2127. msgctxt "@label"
  2128. msgid "Heated Build Plate (official kit or self-built)"
  2129. msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)"
  2130. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2131. msgctxt "@title"
  2132. msgid "Build Plate Leveling"
  2133. msgstr "Nivelamento da mesa de impressão"
  2134. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  2135. msgctxt "@label"
  2136. 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."
  2137. 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."
  2138. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  2139. msgctxt "@label"
  2140. 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."
  2141. 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."
  2142. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  2143. msgctxt "@action:button"
  2144. msgid "Start Build Plate Leveling"
  2145. msgstr "Iniciar Nivelamento da Mesa de Impressão"
  2146. #: /Users/c.lamboo/ultimaker/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  2147. msgctxt "@action:button"
  2148. msgid "Move to Next Position"
  2149. msgstr "Mover pra a Posição Seguinte"
  2150. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:172
  2151. msgctxt "@label Is followed by the name of an author"
  2152. msgid "By"
  2153. msgstr "Por"
  2154. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:207 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  2155. msgctxt "@button:label"
  2156. msgid "Learn More"
  2157. msgstr "Saiba mais"
  2158. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2159. msgctxt "@button"
  2160. msgid "Enable"
  2161. msgstr "Habilitar"
  2162. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:226
  2163. msgctxt "@button"
  2164. msgid "Disable"
  2165. msgstr "Desabilitar"
  2166. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:244
  2167. msgctxt "@button"
  2168. msgid "Downgrading..."
  2169. msgstr "Fazendo downgrade..."
  2170. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:245
  2171. msgctxt "@button"
  2172. msgid "Downgrade"
  2173. msgstr "Downgrade"
  2174. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:249
  2175. msgctxt "@button"
  2176. msgid "Installing..."
  2177. msgstr "Instalando..."
  2178. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:250
  2179. msgctxt "@button"
  2180. msgid "Install"
  2181. msgstr "Instalar"
  2182. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:254
  2183. msgctxt "@button"
  2184. msgid "Uninstall"
  2185. msgstr "Desinstalar"
  2186. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2187. msgctxt "@button"
  2188. msgid "Updating..."
  2189. msgstr "Atualizando..."
  2190. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:269
  2191. msgctxt "@button"
  2192. msgid "Update"
  2193. msgstr "Atualizar"
  2194. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2195. msgctxt "@header"
  2196. msgid "Install Plugins"
  2197. msgstr "Instalar Complementos"
  2198. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2199. msgctxt "@text"
  2200. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2201. 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."
  2202. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  2203. msgctxt "@title"
  2204. msgid "Changes from your account"
  2205. msgstr "Alterações da sua conta"
  2206. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  2207. msgctxt "@button"
  2208. msgid "Dismiss"
  2209. msgstr "Dispensar"
  2210. #: /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
  2211. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:118
  2212. msgctxt "@button"
  2213. msgid "Next"
  2214. msgstr "Próximo"
  2215. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  2216. msgctxt "@label"
  2217. msgid "The following packages will be added:"
  2218. msgstr "Os seguintes pacotes serão adicionados:"
  2219. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  2220. msgctxt "@label"
  2221. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2222. msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:"
  2223. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  2224. msgctxt "@label"
  2225. msgid "You need to accept the license to install the package"
  2226. msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado"
  2227. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  2228. msgctxt "@button"
  2229. msgid "Plugin license agreement"
  2230. msgstr "Acordo de licença do complemento"
  2231. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  2232. msgctxt "@text"
  2233. msgid "Please read and agree with the plugin licence."
  2234. msgstr "Por favor leia e concorde com a licença do complemento."
  2235. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  2236. msgctxt "@button"
  2237. msgid "Accept"
  2238. msgstr "Aceitar"
  2239. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:8 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/MissingPackages.qml:8
  2240. msgctxt "@header"
  2241. msgid "Install Materials"
  2242. msgstr "Instalar Materiais"
  2243. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2244. msgctxt "@text"
  2245. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2246. msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D UltiMaker."
  2247. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2248. msgctxt "@info:tooltip"
  2249. msgid "Manage packages"
  2250. msgstr "Gerir pacotes"
  2251. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:81
  2252. msgctxt "@header"
  2253. msgid "Description"
  2254. msgstr "Descrição"
  2255. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:110
  2256. msgctxt "@header"
  2257. msgid "Compatible printers"
  2258. msgstr "Impressoras compatíveis"
  2259. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:134
  2260. msgctxt "@info"
  2261. msgid "No compatibility information"
  2262. msgstr "Sem informação de compatibilidade"
  2263. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:152
  2264. msgctxt "@header"
  2265. msgid "Compatible support materials"
  2266. msgstr "Materiais de suporte compatíveis"
  2267. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:176
  2268. msgctxt "@info No materials"
  2269. msgid "None"
  2270. msgstr "Nenhum"
  2271. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:193
  2272. msgctxt "@header"
  2273. msgid "Compatible with Material Station"
  2274. msgstr "Compatível com Material Station"
  2275. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2276. msgctxt "@info"
  2277. msgid "Yes"
  2278. msgstr "Sim"
  2279. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:202 /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:228
  2280. msgctxt "@info"
  2281. msgid "No"
  2282. msgstr "Não"
  2283. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:219
  2284. msgctxt "@header"
  2285. msgid "Optimized for Air Manager"
  2286. msgstr "Otimizado para o Air Manager"
  2287. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2288. msgctxt "@button"
  2289. msgid "Visit plug-in website"
  2290. msgstr "Visitar sítio web de complementos"
  2291. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:243
  2292. msgctxt "@button"
  2293. msgid "Website"
  2294. msgstr "Sítio web"
  2295. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:252
  2296. msgctxt "@button"
  2297. msgid "Buy spool"
  2298. msgstr "Comprar carretel"
  2299. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:261
  2300. msgctxt "@button"
  2301. msgid "Safety datasheet"
  2302. msgstr "Ficha de segurança"
  2303. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:270
  2304. msgctxt "@button"
  2305. msgid "Technical datasheet"
  2306. msgstr "Ficha técnica"
  2307. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2308. msgctxt "@header"
  2309. msgid "Package details"
  2310. msgstr "Detalhes do pacote"
  2311. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2312. msgctxt "@button:tooltip"
  2313. msgid "Back"
  2314. msgstr "Voltar"
  2315. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2316. msgctxt "@button"
  2317. msgid "Failed to load packages:"
  2318. msgstr "Falha em carregar pacotes:"
  2319. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:151
  2320. msgctxt "@button"
  2321. msgid "Retry?"
  2322. msgstr "Tentar novamente?"
  2323. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:167
  2324. msgctxt "@button"
  2325. msgid "Loading"
  2326. msgstr "Carregando"
  2327. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2328. msgctxt "@message"
  2329. msgid "No more results to load"
  2330. msgstr "Não há mais resultados a carregar"
  2331. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:183
  2332. msgctxt "@message"
  2333. msgid "No results found with current filter"
  2334. msgstr "Não há resultados encontrados com o filtro atual"
  2335. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Packages.qml:226
  2336. msgctxt "@button"
  2337. msgid "Load more"
  2338. msgstr "Carregar mais"
  2339. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2340. msgctxt "@info"
  2341. msgid "UltiMaker Verified Plug-in"
  2342. msgstr "Complemento Verificado UltiMaker"
  2343. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2344. msgctxt "@info"
  2345. msgid "UltiMaker Certified Material"
  2346. msgstr "Material Certificado UltiMaker"
  2347. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2348. msgctxt "@info"
  2349. msgid "UltiMaker Verified Package"
  2350. msgstr "Pacote Verificado UltiMaker"
  2351. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2352. msgctxt "@header"
  2353. msgid "Manage packages"
  2354. msgstr "Gerir pacotes"
  2355. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2356. msgctxt "@text"
  2357. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2358. 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."
  2359. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  2360. msgctxt "@title"
  2361. msgid "Install missing Materials"
  2362. msgstr "Instalar Materiais faltantes"
  2363. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:87
  2364. msgctxt "@title"
  2365. msgid "Loading..."
  2366. msgstr "Carregando..."
  2367. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:148
  2368. msgctxt "@button"
  2369. msgid "Plugins"
  2370. msgstr "Complementos"
  2371. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:156
  2372. msgctxt "@button"
  2373. msgid "Materials"
  2374. msgstr "Materiais"
  2375. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:193
  2376. msgctxt "@info"
  2377. msgid "Search in the browser"
  2378. msgstr "Buscar no navegador"
  2379. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:271
  2380. msgctxt "@button"
  2381. msgid "In order to use the package you will need to restart Cura"
  2382. msgstr "Para usar o pacote você precisará reiniciar o Cura"
  2383. #: /Users/c.lamboo/ultimaker/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:279
  2384. msgctxt "@info:button, %1 is the application name"
  2385. msgid "Quit %1"
  2386. msgstr "Sair de %1"
  2387. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2388. msgctxt "@info"
  2389. msgid ""
  2390. "Please make sure your printer has a connection:\n"
  2391. "- Check if the printer is turned on.\n"
  2392. "- Check if the printer is connected to the network.\n"
  2393. "- Check if you are signed in to discover cloud-connected printers."
  2394. msgstr ""
  2395. "Por favor certifique-se que sua impressora está conectada>\n"
  2396. "- Verifique se ela está ligada.\n"
  2397. "- Verifique se ela está conectada à rede.\n"
  2398. "- Verifique se você está logado para descobrir impressoras conectadas à nuvem."
  2399. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:113
  2400. msgctxt "@info"
  2401. msgid "Please connect your printer to the network."
  2402. msgstr "Por favor conecte sua impressora à rede."
  2403. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:148
  2404. msgctxt "@label link to technical assistance"
  2405. msgid "View user manuals online"
  2406. msgstr "Ver manuais de usuário online"
  2407. #: /Users/c.lamboo/ultimaker/Cura/plugins/MonitorStage/MonitorMain.qml:164
  2408. msgctxt "@info"
  2409. msgid "In order to monitor your print from Cura, please connect the printer."
  2410. msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora."
  2411. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2412. msgctxt "@title:window"
  2413. msgid "Open Project"
  2414. msgstr "Abrir Projeto"
  2415. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:64
  2416. msgctxt "@action:ComboBox Update/override existing profile"
  2417. msgid "Update existing"
  2418. msgstr "Atualizar existentes"
  2419. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:65
  2420. msgctxt "@action:ComboBox Save settings in a new profile"
  2421. msgid "Create new"
  2422. msgstr "Criar novos"
  2423. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:83 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  2424. msgctxt "@action:title"
  2425. msgid "Summary - Cura Project"
  2426. msgstr "Resumo - Projeto do Cura"
  2427. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:109
  2428. msgctxt "@info:tooltip"
  2429. msgid "How should the conflict in the machine be resolved?"
  2430. msgstr "Como o conflito na máquina deve ser resolvido?"
  2431. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:165 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2432. msgctxt "@action:label"
  2433. msgid "Printer settings"
  2434. msgstr "Ajustes da impressora"
  2435. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:176 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2436. msgctxt "@action:label"
  2437. msgid "Type"
  2438. msgstr "Tipo"
  2439. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:193 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2440. msgctxt "@action:label"
  2441. msgid "Printer Group"
  2442. msgstr "Grupo de Impressora"
  2443. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:218
  2444. msgctxt "@info:tooltip"
  2445. msgid "How should the conflict in the profile be resolved?"
  2446. msgstr "Como o conflito no perfil deve ser resolvido?"
  2447. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:240 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  2448. msgctxt "@action:label"
  2449. msgid "Profile settings"
  2450. msgstr "Ajustes de perfil"
  2451. #: /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
  2452. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  2453. msgctxt "@action:label"
  2454. msgid "Name"
  2455. msgstr "Nome"
  2456. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:269 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  2457. msgctxt "@action:label"
  2458. msgid "Intent"
  2459. msgstr "Objetivo"
  2460. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:287 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  2461. msgctxt "@action:label"
  2462. msgid "Not in profile"
  2463. msgstr "Ausente no perfil"
  2464. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:293 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  2465. msgctxt "@action:label"
  2466. msgid "%1 override"
  2467. msgid_plural "%1 overrides"
  2468. msgstr[0] "%1 sobreposto"
  2469. msgstr[1] "%1 sobrepostos"
  2470. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:306
  2471. msgctxt "@action:label"
  2472. msgid "Derivative from"
  2473. msgstr "Derivado de"
  2474. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2475. msgctxt "@action:label"
  2476. msgid "%1, %2 override"
  2477. msgid_plural "%1, %2 overrides"
  2478. msgstr[0] "%1, %2 sobreposição"
  2479. msgstr[1] "%1, %2 sobreposições"
  2480. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:334
  2481. msgctxt "@info:tooltip"
  2482. msgid "How should the conflict in the material be resolved?"
  2483. msgstr "Como o conflito no material deve ser resolvido?"
  2484. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:361
  2485. msgctxt "@action:label"
  2486. msgid "Material settings"
  2487. msgstr "Ajustes de material"
  2488. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2489. msgctxt "@action:label"
  2490. msgid "Setting visibility"
  2491. msgstr "Visibilidade dos ajustes"
  2492. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  2493. msgctxt "@action:label"
  2494. msgid "Mode"
  2495. msgstr "Modo"
  2496. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:422
  2497. msgctxt "@action:label"
  2498. msgid "Visible settings:"
  2499. msgstr "Ajustes visíveis:"
  2500. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:427
  2501. msgctxt "@action:label"
  2502. msgid "%1 out of %2"
  2503. msgstr "%1 de %2"
  2504. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:448
  2505. msgctxt "@action:warning"
  2506. msgid "Loading a project will clear all models on the build plate."
  2507. msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão."
  2508. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:490
  2509. msgctxt "@label"
  2510. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  2511. msgstr "O material usado neste projeto não está instalado atualmente no Cura.<br/>Instale o perfil de material e reabra o projeto."
  2512. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:515
  2513. msgctxt "@action:button"
  2514. msgid "Open"
  2515. msgstr "Abrir"
  2516. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:521
  2517. msgctxt "@action:button"
  2518. msgid "Open project anyway"
  2519. msgstr "Abrir o projeto mesmo assim"
  2520. #: /Users/c.lamboo/ultimaker/Cura/plugins/3MFReader/WorkspaceDialog.qml:530
  2521. msgctxt "@action:button"
  2522. msgid "Install missing material"
  2523. msgstr "Instalar material faltante"
  2524. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  2525. msgctxt "@label"
  2526. msgid "Mesh Type"
  2527. msgstr "Tipo de Malha"
  2528. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  2529. msgctxt "@label"
  2530. msgid "Normal model"
  2531. msgstr "Modelo normal"
  2532. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  2533. msgctxt "@label"
  2534. msgid "Print as support"
  2535. msgstr "Imprimir como suporte"
  2536. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2537. msgctxt "@label"
  2538. msgid "Modify settings for overlaps"
  2539. msgstr "Modificar ajustes para sobreposições"
  2540. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2541. msgctxt "@label"
  2542. msgid "Don't support overlaps"
  2543. msgstr "Não suportar sobreposições"
  2544. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  2545. msgctxt "@item:inlistbox"
  2546. msgid "Infill mesh only"
  2547. msgstr "Somente malha de preenchimento"
  2548. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2549. msgctxt "@item:inlistbox"
  2550. msgid "Cutting mesh"
  2551. msgstr "Malha de corte"
  2552. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  2553. msgctxt "@action:button"
  2554. msgid "Select settings"
  2555. msgstr "Selecionar ajustes"
  2556. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2557. msgctxt "@title:window"
  2558. msgid "Select Settings to Customize for this model"
  2559. msgstr "Selecionar Ajustes a Personalizar para este modelo"
  2560. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:102
  2561. msgctxt "@label:textbox"
  2562. msgid "Filter..."
  2563. msgstr "Filtrar..."
  2564. #: /Users/c.lamboo/ultimaker/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2565. msgctxt "@label:checkbox"
  2566. msgid "Show all"
  2567. msgstr "Exibir tudo"
  2568. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  2569. msgctxt "@title"
  2570. msgid "Update Firmware"
  2571. msgstr "Atualizar Firmware"
  2572. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  2573. msgctxt "@label"
  2574. 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."
  2575. 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."
  2576. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  2577. msgctxt "@label"
  2578. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  2579. msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias."
  2580. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  2581. msgctxt "@action:button"
  2582. msgid "Automatically upgrade Firmware"
  2583. msgstr "Automaticamente atualizar Firmware"
  2584. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  2585. msgctxt "@action:button"
  2586. msgid "Upload custom Firmware"
  2587. msgstr "Carregar Firmware personalizado"
  2588. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  2589. msgctxt "@label"
  2590. msgid "Firmware can not be updated because there is no connection with the printer."
  2591. msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora."
  2592. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  2593. msgctxt "@label"
  2594. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  2595. msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware."
  2596. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  2597. msgctxt "@title:window"
  2598. msgid "Select custom firmware"
  2599. msgstr "Selecionar firmware personalizado"
  2600. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  2601. msgctxt "@title:window"
  2602. msgid "Firmware Update"
  2603. msgstr "Atualização do Firmware"
  2604. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  2605. msgctxt "@label"
  2606. msgid "Updating firmware."
  2607. msgstr "Atualizando firmware."
  2608. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  2609. msgctxt "@label"
  2610. msgid "Firmware update completed."
  2611. msgstr "Atualização do Firmware completada."
  2612. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  2613. msgctxt "@label"
  2614. msgid "Firmware update failed due to an unknown error."
  2615. msgstr "A atualização de Firmware falhou devido a um erro desconhecido."
  2616. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  2617. msgctxt "@label"
  2618. msgid "Firmware update failed due to an communication error."
  2619. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  2620. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  2621. msgctxt "@label"
  2622. msgid "Firmware update failed due to an input/output error."
  2623. msgstr "A atualização de firmware falhou devido a um erro de entrada e saída."
  2624. #: /Users/c.lamboo/ultimaker/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  2625. msgctxt "@label"
  2626. msgid "Firmware update failed due to missing firmware."
  2627. msgstr "A atualização de firmware falhou devido a firmware não encontrado."
  2628. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:18 /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2629. msgctxt "@label"
  2630. msgid "Color scheme"
  2631. msgstr "Esquema de Cores"
  2632. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2633. msgctxt "@label:listbox"
  2634. msgid "Material Color"
  2635. msgstr "Cor do Material"
  2636. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2637. msgctxt "@label:listbox"
  2638. msgid "Line Type"
  2639. msgstr "Tipo de Linha"
  2640. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2641. msgctxt "@label:listbox"
  2642. msgid "Speed"
  2643. msgstr "Velocidade"
  2644. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2645. msgctxt "@label:listbox"
  2646. msgid "Layer Thickness"
  2647. msgstr "Espessura de Camada"
  2648. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2649. msgctxt "@label:listbox"
  2650. msgid "Line Width"
  2651. msgstr "Largura de Extrusão"
  2652. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2653. msgctxt "@label:listbox"
  2654. msgid "Flow"
  2655. msgstr "Fluxo"
  2656. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2657. msgctxt "@label"
  2658. msgid "Compatibility Mode"
  2659. msgstr "Modo de Compatibilidade"
  2660. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2661. msgctxt "@label"
  2662. msgid "Travels"
  2663. msgstr "Percursos"
  2664. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2665. msgctxt "@label"
  2666. msgid "Helpers"
  2667. msgstr "Assistentes"
  2668. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2669. msgctxt "@label"
  2670. msgid "Shell"
  2671. msgstr "Perímetro"
  2672. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:74
  2673. msgctxt "@label"
  2674. msgid "Infill"
  2675. msgstr "Preenchimento"
  2676. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2677. msgctxt "@label"
  2678. msgid "Starts"
  2679. msgstr "Inícios"
  2680. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2681. msgctxt "@label"
  2682. msgid "Only Show Top Layers"
  2683. msgstr "Somente Exibir Camadas Superiores"
  2684. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2685. msgctxt "@label"
  2686. msgid "Show 5 Detailed Layers On Top"
  2687. msgstr "Exibir 5 Camadas Superiores Detalhadas"
  2688. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2689. msgctxt "@label"
  2690. msgid "Top / Bottom"
  2691. msgstr "Topo / Base"
  2692. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2693. msgctxt "@label"
  2694. msgid "Inner Wall"
  2695. msgstr "Parede Interna"
  2696. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2697. msgctxt "@label"
  2698. msgid "min"
  2699. msgstr "mín"
  2700. #: /Users/c.lamboo/ultimaker/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2701. msgctxt "@label"
  2702. msgid "max"
  2703. msgstr "máx"
  2704. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/SearchBar.qml:17
  2705. msgctxt "@placeholder"
  2706. msgid "Search"
  2707. msgstr "Buscar"
  2708. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:84
  2709. msgctxt "@label"
  2710. msgid "This setting is not used because all the settings that it influences are overridden."
  2711. msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos."
  2712. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:89
  2713. msgctxt "@label Header for list of settings."
  2714. msgid "Affects"
  2715. msgstr "Afeta"
  2716. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:94
  2717. msgctxt "@label Header for list of settings."
  2718. msgid "Affected By"
  2719. msgstr "Afetado Por"
  2720. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:190
  2721. msgctxt "@label"
  2722. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2723. msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
  2724. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:194
  2725. msgctxt "@label"
  2726. msgid "This setting is resolved from conflicting extruder-specific values:"
  2727. msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:"
  2728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:234
  2729. msgctxt "@label"
  2730. msgid ""
  2731. "This setting has a value that is different from the profile.\n"
  2732. "\n"
  2733. "Click to restore the value of the profile."
  2734. msgstr ""
  2735. "Este ajuste tem um valor que é diferente do perfil.\n"
  2736. "\n"
  2737. "Clique para restaurar o valor do perfil."
  2738. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingItem.qml:334
  2739. msgctxt "@label"
  2740. msgid ""
  2741. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2742. "\n"
  2743. "Click to restore the calculated value."
  2744. msgstr ""
  2745. "Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n"
  2746. "\n"
  2747. "Clique para restaurar o valor calculado."
  2748. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:48
  2749. msgctxt "@label:textbox"
  2750. msgid "Search settings"
  2751. msgstr "Ajustes de busca"
  2752. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:395
  2753. msgctxt "@action:menu"
  2754. msgid "Copy value to all extruders"
  2755. msgstr "Copiar valor para todos os extrusores"
  2756. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:404
  2757. msgctxt "@action:menu"
  2758. msgid "Copy all changed values to all extruders"
  2759. msgstr "Copiar todos os valores alterados para todos os extrusores"
  2760. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:440
  2761. msgctxt "@action:menu"
  2762. msgid "Hide this setting"
  2763. msgstr "Ocultar este ajuste"
  2764. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:453
  2765. msgctxt "@action:menu"
  2766. msgid "Don't show this setting"
  2767. msgstr "Não exibir este ajuste"
  2768. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:457
  2769. msgctxt "@action:menu"
  2770. msgid "Keep this setting visible"
  2771. msgstr "Manter este ajuste visível"
  2772. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingView.qml:476 /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:467
  2773. msgctxt "@action:menu"
  2774. msgid "Configure setting visibility..."
  2775. msgstr "Configurar a visibilidade dos ajustes..."
  2776. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Settings/SettingCategory.qml:115
  2777. msgctxt "@label"
  2778. msgid ""
  2779. "Some hidden settings use values different from their normal calculated value.\n"
  2780. "\n"
  2781. "Click to make these settings visible."
  2782. msgstr ""
  2783. "Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n"
  2784. "\n"
  2785. "Clique para tornar estes ajustes visíveis."
  2786. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2787. msgctxt "@action:button"
  2788. msgid "Marketplace"
  2789. msgstr "Mercado"
  2790. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2791. msgctxt "@title:menu menubar:toplevel"
  2792. msgid "&Settings"
  2793. msgstr "Aju&stes"
  2794. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2795. msgctxt "@title:window"
  2796. msgid "New project"
  2797. msgstr "Novo projeto"
  2798. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2799. msgctxt "@info:question"
  2800. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2801. msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos."
  2802. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  2803. msgctxt "@title:tab"
  2804. msgid "Setting Visibility"
  2805. msgstr "Visibilidade dos Ajustes"
  2806. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:24 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:134
  2807. msgctxt "@action:button"
  2808. msgid "Defaults"
  2809. msgstr "Defaults"
  2810. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:55
  2811. msgctxt "@label:textbox"
  2812. msgid "Check all"
  2813. msgstr "Verificar tudo"
  2814. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  2815. msgctxt "@title:window"
  2816. msgid "Sync materials with printers"
  2817. msgstr "Sincronizar materiais com impressoras"
  2818. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  2819. msgctxt "@title:header"
  2820. msgid "Sync materials with printers"
  2821. msgstr "Sincronizar materiais com impressoras"
  2822. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  2823. msgctxt "@text"
  2824. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  2825. msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras."
  2826. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  2827. msgctxt "@button"
  2828. msgid "Why do I need to sync material profiles?"
  2829. msgstr "Por que eu preciso sincronizar perfis de material?"
  2830. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  2831. msgctxt "@button"
  2832. msgid "Start"
  2833. msgstr "Iniciar"
  2834. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  2835. msgctxt "@title:header"
  2836. msgid "Sign in"
  2837. msgstr "Entrar"
  2838. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  2839. msgctxt "@text"
  2840. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  2841. msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura."
  2842. #: /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
  2843. msgctxt "@button"
  2844. msgid "Sync materials with USB"
  2845. msgstr "Sincronizar materiais usando USB"
  2846. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  2847. msgctxt "@title:header"
  2848. msgid "The following printers will receive the new material profiles:"
  2849. msgstr "Os seguintes materiais receberão novos perfis de material:"
  2850. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  2851. msgctxt "@title:header"
  2852. msgid "Something went wrong when sending the materials to the printers."
  2853. msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras."
  2854. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  2855. msgctxt "@title:header"
  2856. msgid "Material profiles successfully synced with the following printers:"
  2857. msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:"
  2858. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  2859. msgctxt "@button"
  2860. msgid "Troubleshooting"
  2861. msgstr "Resolução de problemas"
  2862. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  2863. msgctxt "@text Asking the user whether printers are missing in a list."
  2864. msgid "Printers missing?"
  2865. msgstr "Impressoras faltando?"
  2866. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  2867. msgctxt "@text"
  2868. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  2869. msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory."
  2870. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  2871. msgctxt "@button"
  2872. msgid "Refresh List"
  2873. msgstr "Atualizar Lista"
  2874. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  2875. msgctxt "@button"
  2876. msgid "Try again"
  2877. msgstr "Tentar novamente"
  2878. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  2879. msgctxt "@button"
  2880. msgid "Done"
  2881. msgstr "Feito"
  2882. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  2883. msgctxt "@button"
  2884. msgid "Sync"
  2885. msgstr "Sincronizar"
  2886. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  2887. msgctxt "@button"
  2888. msgid "Syncing"
  2889. msgstr "Sincronizando"
  2890. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  2891. msgctxt "@title:header"
  2892. msgid "No printers found"
  2893. msgstr "Nenhuma impressora encontrada"
  2894. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  2895. msgctxt "@text"
  2896. 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."
  2897. 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."
  2898. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  2899. msgctxt "@button"
  2900. msgid "Learn how to connect your printer to Digital Factory"
  2901. msgstr "Aprenda como conectar sua impressora à Digital Factory"
  2902. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  2903. msgctxt "@button"
  2904. msgid "Refresh"
  2905. msgstr "Atualizar"
  2906. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  2907. msgctxt "@title:header"
  2908. msgid "Sync material profiles via USB"
  2909. msgstr "Sincronizar perfis de material via USB"
  2910. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  2911. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  2912. msgid "Follow the following steps to load the new material profiles to your printer."
  2913. msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora."
  2914. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  2915. msgctxt "@text"
  2916. msgid "Click the export material archive button."
  2917. msgstr "Clique no botão de exportar arquivo de material."
  2918. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  2919. msgctxt "@text"
  2920. msgid "Save the .umm file on a USB stick."
  2921. msgstr "Grava o arquivo .umm em um pendrive USB."
  2922. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  2923. msgctxt "@text"
  2924. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  2925. msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material."
  2926. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  2927. msgctxt "@button"
  2928. msgid "How to load new material profiles to my printer"
  2929. msgstr "Como carregar novos perfis de material na minha impressora"
  2930. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  2931. msgctxt "@button"
  2932. msgid "Back"
  2933. msgstr "Voltar"
  2934. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  2935. msgctxt "@button"
  2936. msgid "Export material archive"
  2937. msgstr "Exportar arquivo de material"
  2938. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  2939. msgctxt "@title:window"
  2940. msgid "Export All Materials"
  2941. msgstr "Exportar Todos Os Materiais"
  2942. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  2943. msgctxt "@title:window"
  2944. msgid "Confirm Diameter Change"
  2945. msgstr "Confirmar Mudança de Diâmetro"
  2946. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  2947. msgctxt "@label (%1 is a number)"
  2948. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2949. msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?"
  2950. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  2951. msgctxt "@label"
  2952. msgid "Display Name"
  2953. msgstr "Exibir Nome"
  2954. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  2955. msgctxt "@label"
  2956. msgid "Brand"
  2957. msgstr "Marca"
  2958. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  2959. msgctxt "@label"
  2960. msgid "Material Type"
  2961. msgstr "Tipo de Material"
  2962. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  2963. msgctxt "@label"
  2964. msgid "Color"
  2965. msgstr "Cor"
  2966. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:262
  2967. msgctxt "@title"
  2968. msgid "Material color picker"
  2969. msgstr "Seletor de cores do material"
  2970. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:275
  2971. msgctxt "@label"
  2972. msgid "Properties"
  2973. msgstr "Propriedades"
  2974. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:286
  2975. msgctxt "@label"
  2976. msgid "Density"
  2977. msgstr "Densidade"
  2978. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:319
  2979. msgctxt "@label"
  2980. msgid "Diameter"
  2981. msgstr "Diâmetro"
  2982. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:369
  2983. msgctxt "@label"
  2984. msgid "Filament Cost"
  2985. msgstr "Custo do Filamento"
  2986. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:401
  2987. msgctxt "@label"
  2988. msgid "Filament weight"
  2989. msgstr "Peso do Filamento"
  2990. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:433
  2991. msgctxt "@label"
  2992. msgid "Filament length"
  2993. msgstr "Comprimento do Filamento"
  2994. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:451
  2995. msgctxt "@label"
  2996. msgid "Cost per Meter"
  2997. msgstr "Custo por Metro"
  2998. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:465
  2999. msgctxt "@label"
  3000. msgid "This material is linked to %1 and shares some of its properties."
  3001. msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades."
  3002. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:472
  3003. msgctxt "@label"
  3004. msgid "Unlink Material"
  3005. msgstr "Desvincular Material"
  3006. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:485
  3007. msgctxt "@label"
  3008. msgid "Description"
  3009. msgstr "Descrição"
  3010. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:503
  3011. msgctxt "@label"
  3012. msgid "Adhesion Information"
  3013. msgstr "Informação sobre Aderência"
  3014. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3015. msgctxt "@title"
  3016. msgid "Information"
  3017. msgstr "Informação"
  3018. #: /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
  3019. msgctxt "@label"
  3020. msgid "Print settings"
  3021. msgstr "Ajustes de impressão"
  3022. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:468
  3023. msgctxt "@title:tab"
  3024. msgid "Materials"
  3025. msgstr "Materiais"
  3026. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3027. msgctxt "@label"
  3028. msgid "Materials compatible with active printer:"
  3029. msgstr "Materiais compatíveis com a impressora ativa:"
  3030. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:94
  3031. msgctxt "@action:button"
  3032. msgid "Create new"
  3033. msgstr "Criar novo"
  3034. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:88
  3035. msgctxt "@action:button"
  3036. msgid "Import"
  3037. msgstr "Importar"
  3038. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3039. msgctxt "@action:button"
  3040. msgid "Sync with Printers"
  3041. msgstr "Sincronizar com Impressoras"
  3042. #: /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
  3043. msgctxt "@action:button"
  3044. msgid "Activate"
  3045. msgstr "Ativar"
  3046. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:311
  3047. msgctxt "@action:button"
  3048. msgid "Duplicate"
  3049. msgstr "Duplicar"
  3050. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:342
  3051. msgctxt "@action:button"
  3052. msgid "Export"
  3053. msgstr "Exportar"
  3054. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:392
  3055. msgctxt "@title:window"
  3056. msgid "Confirm Remove"
  3057. msgstr "Confirmar Remoção"
  3058. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:393
  3059. msgctxt "@label (%1 is object name)"
  3060. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3061. msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!"
  3062. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3063. msgctxt "@title:window"
  3064. msgid "Import Material"
  3065. msgstr "Importar Material"
  3066. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3067. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3068. msgid "Successfully imported material <filename>%1</filename>"
  3069. msgstr "Material <filename>%1</filename> importado com sucesso"
  3070. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3071. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3072. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3073. msgstr "Não foi possível importar material <filename>%1</filename>: <message>%2</message>"
  3074. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:267
  3075. msgctxt "@title:window"
  3076. msgid "Export Material"
  3077. msgstr "Exportar Material"
  3078. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:272
  3079. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3080. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3081. msgstr "Falha em exportar material para <filename>%1</filename>: <message>%2</message>"
  3082. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:275
  3083. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3084. msgid "Successfully exported material to <filename>%1</filename>"
  3085. msgstr "Material exportado para <filename>%1</filename> com sucesso"
  3086. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3087. msgctxt "@item:tooltip"
  3088. msgid "This setting has been hidden by the active machine and will not be visible."
  3089. msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível."
  3090. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3091. msgctxt "@item:tooltip %1 is list of setting names"
  3092. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3093. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3094. msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível."
  3095. msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível."
  3096. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:14 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:461
  3097. msgctxt "@title:tab"
  3098. msgid "General"
  3099. msgstr "Geral"
  3100. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:172
  3101. msgctxt "@label"
  3102. msgid "Interface"
  3103. msgstr "Interface"
  3104. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:215
  3105. msgctxt "@heading"
  3106. msgid "-- incomplete --"
  3107. msgstr "-- incompleto --"
  3108. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:261
  3109. msgctxt "@label"
  3110. msgid "Currency:"
  3111. msgstr "Moeda:"
  3112. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:277
  3113. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3114. msgid "Theme*:"
  3115. msgstr "Tema*:"
  3116. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:323
  3117. msgctxt "@info:tooltip"
  3118. msgid "Slice automatically when changing settings."
  3119. msgstr "Fatiar automaticamente quando mudar ajustes."
  3120. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:331
  3121. msgctxt "@option:check"
  3122. msgid "Slice automatically"
  3123. msgstr "Fatiar automaticamente"
  3124. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:340
  3125. msgctxt "@info:tooltip"
  3126. msgid "Show an icon and notifications in the system notification area."
  3127. msgstr ""
  3128. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:348
  3129. msgctxt "@option:check"
  3130. msgid "Add icon to system tray *"
  3131. msgstr "Adicionar ícone à bandeja do sistema *"
  3132. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:357
  3133. msgctxt "@label"
  3134. msgid "*You will need to restart the application for these changes to have effect."
  3135. msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito."
  3136. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3137. msgctxt "@label"
  3138. msgid "Viewport behavior"
  3139. msgstr "Comportamento da área de visualização"
  3140. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:381
  3141. msgctxt "@info:tooltip"
  3142. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3143. msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente."
  3144. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:390
  3145. msgctxt "@option:check"
  3146. msgid "Display overhang"
  3147. msgstr "Exibir seções pendentes"
  3148. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3149. msgctxt "@info:tooltip"
  3150. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3151. 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."
  3152. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3153. msgctxt "@option:check"
  3154. msgid "Display model errors"
  3155. msgstr "Exibir erros de modelo"
  3156. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:417
  3157. msgctxt "@info:tooltip"
  3158. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3159. msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado"
  3160. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:422
  3161. msgctxt "@action:button"
  3162. msgid "Center camera when item is selected"
  3163. msgstr "Centralizar câmera quanto o item é selecionado"
  3164. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:432
  3165. msgctxt "@info:tooltip"
  3166. msgid "Should the default zoom behavior of cura be inverted?"
  3167. msgstr "O comportamento default de ampliação deve ser invertido?"
  3168. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:437
  3169. msgctxt "@action:button"
  3170. msgid "Invert the direction of camera zoom."
  3171. msgstr "Inverter a direção da ampliação de câmera."
  3172. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3173. msgctxt "@info:tooltip"
  3174. msgid "Should zooming move in the direction of the mouse?"
  3175. msgstr "A ampliação (zoom) deve se mover na direção do mouse?"
  3176. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:453
  3177. msgctxt "@info:tooltip"
  3178. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3179. msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica."
  3180. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:458
  3181. msgctxt "@action:button"
  3182. msgid "Zoom toward mouse direction"
  3183. msgstr "Ampliar na direção do mouse"
  3184. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:484
  3185. msgctxt "@info:tooltip"
  3186. msgid "Should models on the platform be moved so that they no longer intersect?"
  3187. msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?"
  3188. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:489
  3189. msgctxt "@option:check"
  3190. msgid "Ensure models are kept apart"
  3191. msgstr "Assegurar que os modelos sejam mantidos separados"
  3192. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3193. msgctxt "@info:tooltip"
  3194. msgid "Should models on the platform be moved down to touch the build plate?"
  3195. msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?"
  3196. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3197. msgctxt "@option:check"
  3198. msgid "Automatically drop models to the build plate"
  3199. msgstr "Automaticamente fazer os modelos caírem na mesa de impressão"
  3200. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3201. msgctxt "@info:tooltip"
  3202. msgid "Show caution message in g-code reader."
  3203. msgstr "Exibir mensagem de alerta no leitor de G-Code."
  3204. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:524
  3205. msgctxt "@option:check"
  3206. msgid "Caution message in g-code reader"
  3207. msgstr "Mensagem de alera no leitor de G-Code"
  3208. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3209. msgctxt "@info:tooltip"
  3210. msgid "Should layer be forced into compatibility mode?"
  3211. msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?"
  3212. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:537
  3213. msgctxt "@option:check"
  3214. msgid "Force layer view compatibility mode (restart required)"
  3215. msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)"
  3216. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:547
  3217. msgctxt "@info:tooltip"
  3218. msgid "Should Cura open at the location it was closed?"
  3219. msgstr "O Cura deve abrir no lugar onde foi fechado?"
  3220. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:552
  3221. msgctxt "@option:check"
  3222. msgid "Restore window position on start"
  3223. msgstr "Restaurar posição da janela no início"
  3224. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:562
  3225. msgctxt "@info:tooltip"
  3226. msgid "What type of camera rendering should be used?"
  3227. msgstr "Que tipo de renderização de câmera deve ser usada?"
  3228. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:569
  3229. msgctxt "@window:text"
  3230. msgid "Camera rendering:"
  3231. msgstr "Renderização de câmera:"
  3232. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:576
  3233. msgid "Perspective"
  3234. msgstr "Perspectiva"
  3235. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:577
  3236. msgid "Orthographic"
  3237. msgstr "Ortográfica"
  3238. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:617
  3239. msgctxt "@label"
  3240. msgid "Opening and saving files"
  3241. msgstr "Abrindo e salvando arquivos"
  3242. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3243. msgctxt "@info:tooltip"
  3244. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3245. msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?"
  3246. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:629
  3247. msgctxt "@option:check"
  3248. msgid "Use a single instance of Cura"
  3249. msgstr "Usar uma única instância do Cura"
  3250. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:640
  3251. msgctxt "@info:tooltip"
  3252. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3253. msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?"
  3254. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:646
  3255. msgctxt "@option:check"
  3256. msgid "Clear buildplate before loading model into the single instance"
  3257. msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única"
  3258. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:656
  3259. msgctxt "@info:tooltip"
  3260. msgid "Should models be scaled to the build volume if they are too large?"
  3261. msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?"
  3262. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:661
  3263. msgctxt "@option:check"
  3264. msgid "Scale large models"
  3265. msgstr "Redimensionar modelos grandes"
  3266. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:671
  3267. msgctxt "@info:tooltip"
  3268. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3269. 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?"
  3270. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:676
  3271. msgctxt "@option:check"
  3272. msgid "Scale extremely small models"
  3273. msgstr "Redimensionar modelos minúsculos"
  3274. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:686
  3275. msgctxt "@info:tooltip"
  3276. msgid "Should models be selected after they are loaded?"
  3277. msgstr "Os modelos devem ser selecionados após serem carregados?"
  3278. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:691
  3279. msgctxt "@option:check"
  3280. msgid "Select models when loaded"
  3281. msgstr "Selecionar modelos ao carregar"
  3282. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:701
  3283. msgctxt "@info:tooltip"
  3284. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3285. msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?"
  3286. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:706
  3287. msgctxt "@option:check"
  3288. msgid "Add machine prefix to job name"
  3289. msgstr "Adicionar prefixo de máquina ao nome do trabalho"
  3290. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:716
  3291. msgctxt "@info:tooltip"
  3292. msgid "Should a summary be shown when saving a project file?"
  3293. msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?"
  3294. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:720
  3295. msgctxt "@option:check"
  3296. msgid "Show summary dialog when saving project"
  3297. msgstr "Exibir diálogo de resumo ao salvar projeto"
  3298. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:730
  3299. msgctxt "@info:tooltip"
  3300. msgid "Default behavior when opening a project file"
  3301. msgstr "Comportamento default ao abrir um arquivo de projeto"
  3302. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:738
  3303. msgctxt "@window:text"
  3304. msgid "Default behavior when opening a project file: "
  3305. msgstr "Comportamento default ao abrir um arquivo de projeto: "
  3306. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:753
  3307. msgctxt "@option:openProject"
  3308. msgid "Always ask me this"
  3309. msgstr "Sempre me perguntar"
  3310. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:754
  3311. msgctxt "@option:openProject"
  3312. msgid "Always open as a project"
  3313. msgstr "Sempre abrir como projeto"
  3314. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:755
  3315. msgctxt "@option:openProject"
  3316. msgid "Always import models"
  3317. msgstr "Sempre importar modelos"
  3318. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:792
  3319. msgctxt "@info:tooltip"
  3320. 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."
  3321. 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."
  3322. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:801 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:36
  3323. msgctxt "@label"
  3324. msgid "Profiles"
  3325. msgstr "Perfis"
  3326. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:806
  3327. msgctxt "@window:text"
  3328. msgid "Default behavior for changed setting values when switching to a different profile: "
  3329. msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: "
  3330. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:820 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:115
  3331. msgctxt "@option:discardOrKeep"
  3332. msgid "Always ask me this"
  3333. msgstr "Sempre perguntar"
  3334. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:821
  3335. msgctxt "@option:discardOrKeep"
  3336. msgid "Always discard changed settings"
  3337. msgstr "Sempre descartar alterações da configuração"
  3338. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:822
  3339. msgctxt "@option:discardOrKeep"
  3340. msgid "Always transfer changed settings to new profile"
  3341. msgstr "Sempre transferir as alterações para o novo perfil"
  3342. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:856
  3343. msgctxt "@label"
  3344. msgid "Privacy"
  3345. msgstr "Privacidade"
  3346. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:862
  3347. msgctxt "@info:tooltip"
  3348. 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."
  3349. 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."
  3350. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:867
  3351. msgctxt "@option:check"
  3352. msgid "Send (anonymous) print information"
  3353. msgstr "Enviar informação (anônima) de impressão"
  3354. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:897
  3355. msgctxt "@label"
  3356. msgid "Updates"
  3357. msgstr "Atualizações"
  3358. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:904
  3359. msgctxt "@info:tooltip"
  3360. msgid "Should Cura check for updates when the program is started?"
  3361. msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?"
  3362. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:909
  3363. msgctxt "@option:check"
  3364. msgid "Check for updates on start"
  3365. msgstr "Verificar atualizações na inicialização"
  3366. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:925
  3367. msgctxt "@info:tooltip"
  3368. msgid "When checking for updates, only check for stable releases."
  3369. msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis."
  3370. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:931
  3371. msgctxt "@option:radio"
  3372. msgid "Stable releases only"
  3373. msgstr "Versões estáveis somente"
  3374. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:941
  3375. msgctxt "@info:tooltip"
  3376. msgid "When checking for updates, check for both stable and for beta releases."
  3377. msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta."
  3378. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:947
  3379. msgctxt "@option:radio"
  3380. msgid "Stable and Beta releases"
  3381. msgstr "Versões estáveis ou beta"
  3382. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:957
  3383. msgctxt "@info:tooltip"
  3384. 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!"
  3385. 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!"
  3386. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/GeneralPage.qml:962
  3387. msgctxt "@option:check"
  3388. msgid "Get notifications for plugin updates"
  3389. msgstr "Ter notificações para atualizações de complementos"
  3390. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3391. msgctxt "@title:window"
  3392. msgid "Rename"
  3393. msgstr "Renomear"
  3394. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3395. msgctxt "@info"
  3396. msgid "Please provide a new name."
  3397. msgstr "Por favor, escolha um novo nome."
  3398. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:17 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:466
  3399. msgctxt "@title:tab"
  3400. msgid "Printers"
  3401. msgstr "Impressoras"
  3402. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:50
  3403. msgctxt "@action:button"
  3404. msgid "Add New"
  3405. msgstr "Adicionar Novo"
  3406. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/MachinesPage.qml:154 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:331
  3407. msgctxt "@action:button"
  3408. msgid "Rename"
  3409. msgstr "Renomear"
  3410. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:57 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:470
  3411. msgctxt "@title:tab"
  3412. msgid "Profiles"
  3413. msgstr "Perfis"
  3414. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:59
  3415. msgctxt "@label"
  3416. msgid "Profiles compatible with active printer:"
  3417. msgstr "Perfis compatíveis com a impressora ativa:"
  3418. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:98
  3419. msgctxt "@action:tooltip"
  3420. msgid "Create new profile from current settings/overrides"
  3421. msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais"
  3422. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:125
  3423. msgctxt "@action:label"
  3424. msgid "Some settings from current profile were overwritten."
  3425. msgstr "Alguns ajustes do perfil atual foram sobrescritos."
  3426. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:140
  3427. msgctxt "@action:button"
  3428. msgid "Update profile."
  3429. msgstr "Atualizar perfil."
  3430. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:143
  3431. msgctxt "@action:tooltip"
  3432. msgid "Update profile with current settings/overrides"
  3433. msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  3434. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:148 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3435. msgctxt "@action:button"
  3436. msgid "Discard current changes"
  3437. msgstr "Descartar ajustes atuais"
  3438. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:158
  3439. msgctxt "@action:label"
  3440. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3441. msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo."
  3442. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:165
  3443. msgctxt "@action:label"
  3444. msgid "Your current settings match the selected profile."
  3445. msgstr "Seus ajustes atuais coincidem com o perfil selecionado."
  3446. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:175
  3447. msgctxt "@title:tab"
  3448. msgid "Global Settings"
  3449. msgstr "Ajustes globais"
  3450. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3451. msgctxt "@title:window"
  3452. msgid "Create Profile"
  3453. msgstr "Criar Perfil"
  3454. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:280
  3455. msgctxt "@info"
  3456. msgid "Please provide a name for this profile."
  3457. msgstr "Por favor dê um nome a este perfil."
  3458. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:352 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:368
  3459. msgctxt "@title:window"
  3460. msgid "Export Profile"
  3461. msgstr "Exportar Perfil"
  3462. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:382
  3463. msgctxt "@title:window"
  3464. msgid "Duplicate Profile"
  3465. msgstr "Duplicar Perfil"
  3466. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:409
  3467. msgctxt "@title:window"
  3468. msgid "Rename Profile"
  3469. msgstr "Renomear Perfil"
  3470. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:422 /Users/c.lamboo/ultimaker/Cura/resources/qml/Preferences/ProfilesPage.qml:429
  3471. msgctxt "@title:window"
  3472. msgid "Import Profile"
  3473. msgstr "Importar Perfil"
  3474. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewsSelector.qml:50
  3475. msgctxt "@label"
  3476. msgid "View type"
  3477. msgstr "Tipo de Visão"
  3478. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:25
  3479. msgctxt "@info:tooltip"
  3480. msgid "3D View"
  3481. msgstr "Visão 3D"
  3482. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:38
  3483. msgctxt "@info:tooltip"
  3484. msgid "Front View"
  3485. msgstr "Viso de Frente"
  3486. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:51
  3487. msgctxt "@info:tooltip"
  3488. msgid "Top View"
  3489. msgstr "Visão de Cima"
  3490. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:64
  3491. msgctxt "@info:tooltip"
  3492. msgid "Left View"
  3493. msgstr "Visão à Esquerda"
  3494. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ViewOrientationControls.qml:77
  3495. msgctxt "@info:tooltip"
  3496. msgid "Right View"
  3497. msgstr "Visão à Direita"
  3498. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:109
  3499. msgctxt "@label"
  3500. msgid "Is printed as support."
  3501. msgstr "Está impresso como suporte."
  3502. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:112
  3503. msgctxt "@label"
  3504. msgid "Other models overlapping with this model are modified."
  3505. msgstr "Outros modelos se sobrepondo a esse modelo foram modificados."
  3506. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:115
  3507. msgctxt "@label"
  3508. msgid "Infill overlapping with this model is modified."
  3509. msgstr "Preenchimento se sobrepondo a este modelo foi modificado."
  3510. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:118
  3511. msgctxt "@label"
  3512. msgid "Overlaps with this model are not supported."
  3513. msgstr "Sobreposições neste modelo não são suportadas."
  3514. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectItemButton.qml:125
  3515. msgctxt "@label %1 is the number of settings it overrides."
  3516. msgid "Overrides %1 setting."
  3517. msgid_plural "Overrides %1 settings."
  3518. msgstr[0] "Sobrepõe %1 ajuste."
  3519. msgstr[1] "Sobrepõe %1 ajustes."
  3520. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:156
  3521. msgctxt "@label"
  3522. msgid "Active print"
  3523. msgstr "Impressão ativa"
  3524. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:164
  3525. msgctxt "@label"
  3526. msgid "Job Name"
  3527. msgstr "Nome do Trabalho"
  3528. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:172
  3529. msgctxt "@label"
  3530. msgid "Printing Time"
  3531. msgstr "Tempo de Impressão"
  3532. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintMonitor.qml:180
  3533. msgctxt "@label"
  3534. msgid "Estimated time left"
  3535. msgstr "Tempo restante estimado"
  3536. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3537. msgctxt "@label"
  3538. msgid "Add a printer"
  3539. msgstr "Adicionar uma impressora"
  3540. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:38
  3541. msgctxt "@label"
  3542. msgid "Add a networked printer"
  3543. msgstr "Adicionar uma impressora de rede"
  3544. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:87
  3545. msgctxt "@label"
  3546. msgid "Add a non-networked printer"
  3547. msgstr "Adicionar uma impressora local"
  3548. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3549. msgctxt "@label"
  3550. msgid "What's New"
  3551. msgstr "O Que Há de Novo"
  3552. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  3553. msgctxt "@label"
  3554. msgid "Manufacturer"
  3555. msgstr "Fabricante"
  3556. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  3557. msgctxt "@label"
  3558. msgid "Profile author"
  3559. msgstr "Autor do perfil"
  3560. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  3561. msgctxt "@label"
  3562. msgid "Printer name"
  3563. msgstr "Nome da impressora"
  3564. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  3565. msgctxt "@text"
  3566. msgid "Please name your printer"
  3567. msgstr "Por favor dê um nome à sua impressora"
  3568. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3569. msgctxt "@label"
  3570. msgid "Release Notes"
  3571. msgstr "Notas de lançamento"
  3572. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3573. msgctxt "@label"
  3574. msgid "There is no printer found over your network."
  3575. msgstr "Não foi encontrada nenhuma impressora em sua rede."
  3576. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  3577. msgctxt "@label"
  3578. msgid "Refresh"
  3579. msgstr "Atualizar"
  3580. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  3581. msgctxt "@label"
  3582. msgid "Add printer by IP"
  3583. msgstr "Adicionar impressora por IP"
  3584. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  3585. msgctxt "@label"
  3586. msgid "Add cloud printer"
  3587. msgstr "Adicionar impressora de nuvem"
  3588. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:220
  3589. msgctxt "@label"
  3590. msgid "Troubleshooting"
  3591. msgstr "Resolução de problemas"
  3592. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:64 /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:19
  3593. msgctxt "@label"
  3594. msgid "Sign in to the UltiMaker platform"
  3595. msgstr "Entre na plataforma UltiMaker"
  3596. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:123
  3597. msgctxt "@text"
  3598. msgid "Add material settings and plugins from the Marketplace"
  3599. msgstr "Adicionar ajustes de materiais e plugins do Marketplace"
  3600. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:149
  3601. msgctxt "@text"
  3602. msgid "Backup and sync your material settings and plugins"
  3603. msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins"
  3604. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:175
  3605. msgctxt "@text"
  3606. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  3607. msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade UltiMaker"
  3608. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:189
  3609. msgctxt "@button"
  3610. msgid "Skip"
  3611. msgstr "Pular"
  3612. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/CloudContent.qml:201
  3613. msgctxt "@text"
  3614. msgid "Create a free UltiMaker Account"
  3615. msgstr "Criar uma conta UltiMaker gratuita"
  3616. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3617. msgctxt "@label"
  3618. msgid "Help us to improve UltiMaker Cura"
  3619. msgstr "Nos ajude a melhor o UltiMaker Cura"
  3620. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:56
  3621. msgctxt "@text"
  3622. msgid "UltiMaker Cura collects anonymous data to improve print quality and user experience, including:"
  3623. msgstr "O UltiMaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:"
  3624. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:68
  3625. msgctxt "@text"
  3626. msgid "Machine types"
  3627. msgstr "Tipos de máquina"
  3628. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:74
  3629. msgctxt "@text"
  3630. msgid "Material usage"
  3631. msgstr "Uso do material"
  3632. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:80
  3633. msgctxt "@text"
  3634. msgid "Number of slices"
  3635. msgstr "Número de fatias"
  3636. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:86
  3637. msgctxt "@text"
  3638. msgid "Print settings"
  3639. msgstr "Ajustes de impressão"
  3640. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:99
  3641. msgctxt "@text"
  3642. msgid "Data collected by UltiMaker Cura will not contain any personal information."
  3643. msgstr "Dados coletados pelo UltiMaker Cura não conterão nenhuma informação pessoal."
  3644. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:100
  3645. msgctxt "@text"
  3646. msgid "More information"
  3647. msgstr "Mais informações"
  3648. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3649. msgctxt "@label"
  3650. msgid "Empty"
  3651. msgstr "Vazio"
  3652. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3653. msgctxt "@label"
  3654. msgid "Add a Cloud printer"
  3655. msgstr "Adicionar uma impressora de Nuvem"
  3656. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  3657. msgctxt "@label"
  3658. msgid "Waiting for Cloud response"
  3659. msgstr "Aguardando resposta da Nuvem"
  3660. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  3661. msgctxt "@label"
  3662. msgid "No printers found in your account?"
  3663. msgstr "Nenhuma impressora encontrada em sua conta?"
  3664. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  3665. msgctxt "@label"
  3666. msgid "The following printers in your account have been added in Cura:"
  3667. msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:"
  3668. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  3669. msgctxt "@button"
  3670. msgid "Add printer manually"
  3671. msgstr "Adicionar impressora manualmente"
  3672. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3673. msgctxt "@label"
  3674. msgid "User Agreement"
  3675. msgstr "Contrato de Usuário"
  3676. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  3677. msgctxt "@button"
  3678. msgid "Decline and close"
  3679. msgstr "Rejeitar e fechar"
  3680. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3681. msgctxt "@label"
  3682. msgid "Add printer by IP address"
  3683. msgstr "Adicionar impressora por endereço IP"
  3684. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  3685. msgctxt "@text"
  3686. msgid "Enter your printer's IP address."
  3687. msgstr "Entre o endereço IP de sua impressora."
  3688. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  3689. msgctxt "@button"
  3690. msgid "Add"
  3691. msgstr "Adicionar"
  3692. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  3693. msgctxt "@label"
  3694. msgid "Could not connect to device."
  3695. msgstr "Não foi possível conectar ao dispositivo."
  3696. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:196 /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  3697. msgctxt "@label"
  3698. msgid "Can't connect to your UltiMaker printer?"
  3699. msgstr "Não consegue conectar à sua impressora UltiMaker?"
  3700. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  3701. msgctxt "@label"
  3702. msgid "The printer at this address has not responded yet."
  3703. msgstr "A impressora neste endereço ainda não respondeu."
  3704. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  3705. msgctxt "@label"
  3706. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3707. msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo."
  3708. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  3709. msgctxt "@button"
  3710. msgid "Connect"
  3711. msgstr "Conectar"
  3712. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3713. msgctxt "@label"
  3714. msgid "Welcome to UltiMaker Cura"
  3715. msgstr "Bem-vindo ao UltiMaker Cura"
  3716. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:67
  3717. msgctxt "@text"
  3718. msgid "Please follow these steps to set up UltiMaker Cura. This will only take a few moments."
  3719. msgstr "Por favor siga estes passos para configurar o UltiMaker Cura. Isto tomará apenas alguns momentos."
  3720. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/WelcomePages/WelcomeContent.qml:82
  3721. msgctxt "@button"
  3722. msgid "Get started"
  3723. msgstr "Começar"
  3724. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ObjectSelector.qml:59
  3725. msgctxt "@label"
  3726. msgid "Object list"
  3727. msgstr "Lista de objetos"
  3728. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:81
  3729. msgctxt "@action:inmenu"
  3730. msgid "Show Online Troubleshooting"
  3731. msgstr "Mostrar Resolução de Problemas Online"
  3732. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:88
  3733. msgctxt "@action:inmenu"
  3734. msgid "Toggle Full Screen"
  3735. msgstr "Alternar Tela Cheia"
  3736. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:96
  3737. msgctxt "@action:inmenu"
  3738. msgid "Exit Full Screen"
  3739. msgstr "Sair da Tela Cheia"
  3740. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:103
  3741. msgctxt "@action:inmenu menubar:edit"
  3742. msgid "&Undo"
  3743. msgstr "Desfazer (&U)"
  3744. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:113
  3745. msgctxt "@action:inmenu menubar:edit"
  3746. msgid "&Redo"
  3747. msgstr "&Refazer"
  3748. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:131
  3749. msgctxt "@action:inmenu menubar:file"
  3750. msgid "&Quit"
  3751. msgstr "Sair (&Q)"
  3752. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:139
  3753. msgctxt "@action:inmenu menubar:view"
  3754. msgid "3D View"
  3755. msgstr "Visão &3D"
  3756. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:146
  3757. msgctxt "@action:inmenu menubar:view"
  3758. msgid "Front View"
  3759. msgstr "Visão Frontal"
  3760. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:153
  3761. msgctxt "@action:inmenu menubar:view"
  3762. msgid "Top View"
  3763. msgstr "Visão Superior"
  3764. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:160
  3765. msgctxt "@action:inmenu menubar:view"
  3766. msgid "Bottom View"
  3767. msgstr "Visão de Baixo"
  3768. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:167
  3769. msgctxt "@action:inmenu menubar:view"
  3770. msgid "Left Side View"
  3771. msgstr "Visão do Lado Esquerdo"
  3772. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:174
  3773. msgctxt "@action:inmenu menubar:view"
  3774. msgid "Right Side View"
  3775. msgstr "Visão do Lado Direito"
  3776. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:188
  3777. msgctxt "@action:inmenu"
  3778. msgid "Configure Cura..."
  3779. msgstr "Configurar Cura..."
  3780. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:195
  3781. msgctxt "@action:inmenu menubar:printer"
  3782. msgid "&Add Printer..."
  3783. msgstr "&Adicionar Impressora..."
  3784. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:201
  3785. msgctxt "@action:inmenu menubar:printer"
  3786. msgid "Manage Pr&inters..."
  3787. msgstr "Adm&inistrar Impressoras..."
  3788. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:208
  3789. msgctxt "@action:inmenu"
  3790. msgid "Manage Materials..."
  3791. msgstr "Administrar Materiais..."
  3792. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:216
  3793. msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  3794. msgid "Add more materials from Marketplace"
  3795. msgstr "Adicionar mais materiais ao Marketplace"
  3796. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:223
  3797. msgctxt "@action:inmenu menubar:profile"
  3798. msgid "&Update profile with current settings/overrides"
  3799. msgstr "At&ualizar perfil com valores e sobreposições atuais"
  3800. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:231
  3801. msgctxt "@action:inmenu menubar:profile"
  3802. msgid "&Discard current changes"
  3803. msgstr "&Descartar ajustes atuais"
  3804. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:243
  3805. msgctxt "@action:inmenu menubar:profile"
  3806. msgid "&Create profile from current settings/overrides..."
  3807. msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..."
  3808. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:249
  3809. msgctxt "@action:inmenu menubar:profile"
  3810. msgid "Manage Profiles..."
  3811. msgstr "Administrar perfis..."
  3812. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:257
  3813. msgctxt "@action:inmenu menubar:help"
  3814. msgid "Show Online &Documentation"
  3815. msgstr "Exibir &Documentação Online"
  3816. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:265
  3817. msgctxt "@action:inmenu menubar:help"
  3818. msgid "Report a &Bug"
  3819. msgstr "Relatar um &Bug"
  3820. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:273
  3821. msgctxt "@action:inmenu menubar:help"
  3822. msgid "What's New"
  3823. msgstr "Novidades"
  3824. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:287
  3825. msgctxt "@action:inmenu menubar:help"
  3826. msgid "About..."
  3827. msgstr "Sobre..."
  3828. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:294
  3829. msgctxt "@action:inmenu menubar:edit"
  3830. msgid "Delete Selected"
  3831. msgstr "Remover Selecionados"
  3832. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:304
  3833. msgctxt "@action:inmenu menubar:edit"
  3834. msgid "Center Selected"
  3835. msgstr "Centralizar Selecionados"
  3836. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:313
  3837. msgctxt "@action:inmenu menubar:edit"
  3838. msgid "Multiply Selected"
  3839. msgstr "Multiplicar Selecionados"
  3840. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:322
  3841. msgctxt "@action:inmenu"
  3842. msgid "Delete Model"
  3843. msgstr "Remover Modelo"
  3844. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:330
  3845. msgctxt "@action:inmenu"
  3846. msgid "Ce&nter Model on Platform"
  3847. msgstr "Ce&ntralizar Modelo na Mesa"
  3848. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:336
  3849. msgctxt "@action:inmenu menubar:edit"
  3850. msgid "&Group Models"
  3851. msgstr "A&grupar Modelos"
  3852. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:356
  3853. msgctxt "@action:inmenu menubar:edit"
  3854. msgid "Ungroup Models"
  3855. msgstr "Desagrupar Modelos"
  3856. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:366
  3857. msgctxt "@action:inmenu menubar:edit"
  3858. msgid "&Merge Models"
  3859. msgstr "Co&mbinar Modelos"
  3860. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:376
  3861. msgctxt "@action:inmenu"
  3862. msgid "&Multiply Model..."
  3863. msgstr "&Multiplicar Modelo..."
  3864. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:383
  3865. msgctxt "@action:inmenu menubar:edit"
  3866. msgid "Select All Models"
  3867. msgstr "Selecionar Todos Os Modelos"
  3868. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:393
  3869. msgctxt "@action:inmenu menubar:edit"
  3870. msgid "Clear Build Plate"
  3871. msgstr "Esvaziar a Mesa de Impressão"
  3872. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:403
  3873. msgctxt "@action:inmenu menubar:file"
  3874. msgid "Reload All Models"
  3875. msgstr "Recarregar Todos Os Modelos"
  3876. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:412
  3877. msgctxt "@action:inmenu menubar:edit"
  3878. msgid "Arrange All Models"
  3879. msgstr "Posicionar Todos os Modelos"
  3880. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:420
  3881. msgctxt "@action:inmenu menubar:edit"
  3882. msgid "Arrange Selection"
  3883. msgstr "Posicionar Seleção"
  3884. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:427
  3885. msgctxt "@action:inmenu menubar:edit"
  3886. msgid "Reset All Model Positions"
  3887. msgstr "Reestabelecer as Posições de Todos Os Modelos"
  3888. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:434
  3889. msgctxt "@action:inmenu menubar:edit"
  3890. msgid "Reset All Model Transformations"
  3891. msgstr "Remover as Transformações de Todos Os Modelos"
  3892. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:443
  3893. msgctxt "@action:inmenu menubar:file"
  3894. msgid "&Open File(s)..."
  3895. msgstr "Abrir Arquiv&o(s)..."
  3896. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:453
  3897. msgctxt "@action:inmenu menubar:file"
  3898. msgid "&New Project..."
  3899. msgstr "&Novo Projeto..."
  3900. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Actions.qml:460
  3901. msgctxt "@action:inmenu menubar:help"
  3902. msgid "Show Configuration Folder"
  3903. msgstr "Exibir Pasta de Configuração"
  3904. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ExtruderButton.qml:16
  3905. msgctxt "@label %1 is filled in with the name of an extruder"
  3906. msgid "Print Selected Model with %1"
  3907. msgid_plural "Print Selected Models with %1"
  3908. msgstr[0] "Imprimir Modelo Selecionado com %1"
  3909. msgstr[1] "Imprimir Modelos Selecionados com %1"
  3910. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:115
  3911. msgctxt "@label:MonitorStatus"
  3912. msgid "Not connected to a printer"
  3913. msgstr "Não conectado a nenhuma impressora"
  3914. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:119
  3915. msgctxt "@label:MonitorStatus"
  3916. msgid "Printer does not accept commands"
  3917. msgstr "A impressora não aceita comandos"
  3918. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:129
  3919. msgctxt "@label:MonitorStatus"
  3920. msgid "In maintenance. Please check the printer"
  3921. msgstr "Em manutenção. Por favor verifique a impressora"
  3922. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:140
  3923. msgctxt "@label:MonitorStatus"
  3924. msgid "Lost connection with the printer"
  3925. msgstr "A conexão à impressora foi perdida"
  3926. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:142
  3927. msgctxt "@label:MonitorStatus"
  3928. msgid "Printing..."
  3929. msgstr "Imprimindo..."
  3930. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:145
  3931. msgctxt "@label:MonitorStatus"
  3932. msgid "Paused"
  3933. msgstr "Pausado"
  3934. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:148
  3935. msgctxt "@label:MonitorStatus"
  3936. msgid "Preparing..."
  3937. msgstr "Preparando..."
  3938. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:150
  3939. msgctxt "@label:MonitorStatus"
  3940. msgid "Please remove the print"
  3941. msgstr "Por favor remova a impressão"
  3942. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:318
  3943. msgctxt "@label"
  3944. msgid "Abort Print"
  3945. msgstr "Abortar Impressão"
  3946. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/MonitorButton.qml:327
  3947. msgctxt "@label"
  3948. msgid "Are you sure you want to abort the print?"
  3949. msgstr "Tem certeza que deseja abortar a impressão?"
  3950. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:36
  3951. msgctxt "@title:column"
  3952. msgid "Setting"
  3953. msgstr "Ajustes"
  3954. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:37
  3955. msgctxt "@title:column"
  3956. msgid "Profile"
  3957. msgstr "Perfil"
  3958. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:38
  3959. msgctxt "@title:column"
  3960. msgid "Current"
  3961. msgstr "Atual"
  3962. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ProfileOverview.qml:39
  3963. msgctxt "@title:column Unit of measurement"
  3964. msgid "Unit"
  3965. msgstr "Unidade"
  3966. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3967. msgctxt "@title:menu"
  3968. msgid "&Material"
  3969. msgstr "&Material"
  3970. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3971. msgctxt "@action:inmenu"
  3972. msgid "Set as Active Extruder"
  3973. msgstr "Definir Como Extrusor Ativo"
  3974. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3975. msgctxt "@action:inmenu"
  3976. msgid "Enable Extruder"
  3977. msgstr "Habilitar Extrusor"
  3978. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3979. msgctxt "@action:inmenu"
  3980. msgid "Disable Extruder"
  3981. msgstr "Desabilitar Extrusor"
  3982. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:13
  3983. msgctxt "@title:menu menubar:toplevel"
  3984. msgid "&File"
  3985. msgstr "Arquivo (&F)"
  3986. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:45
  3987. msgctxt "@title:menu menubar:file"
  3988. msgid "&Save Project..."
  3989. msgstr "&Salvar Projeto..."
  3990. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:78
  3991. msgctxt "@title:menu menubar:file"
  3992. msgid "&Export..."
  3993. msgstr "&Exportar..."
  3994. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/FileMenu.qml:89
  3995. msgctxt "@action:inmenu menubar:file"
  3996. msgid "Export Selection..."
  3997. msgstr "Exportar Seleção..."
  3998. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3999. msgctxt "@label:category menu label"
  4000. msgid "Material"
  4001. msgstr "Material"
  4002. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:53
  4003. msgctxt "@label:category menu label"
  4004. msgid "Favorites"
  4005. msgstr "Favoritos"
  4006. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/MaterialMenu.qml:78
  4007. msgctxt "@label:category menu label"
  4008. msgid "Generic"
  4009. msgstr "Genérico"
  4010. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:13
  4011. msgctxt "@title:menu menubar:settings"
  4012. msgid "&Printer"
  4013. msgstr "Im&pressora"
  4014. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:17
  4015. msgctxt "@label:category menu label"
  4016. msgid "Network enabled printers"
  4017. msgstr "Impressoras habilitadas pela rede"
  4018. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PrinterMenu.qml:50
  4019. msgctxt "@label:category menu label"
  4020. msgid "Local printers"
  4021. msgstr "Impressoras locais"
  4022. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  4023. msgctxt "@title:menu menubar:toplevel"
  4024. msgid "E&xtensions"
  4025. msgstr "E&xtensões"
  4026. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  4027. msgctxt "@title:menu menubar:file"
  4028. msgid "Open File(s)..."
  4029. msgstr "Abrir Arquivo(s)..."
  4030. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  4031. msgctxt "@title:menu menubar:toplevel"
  4032. msgid "P&references"
  4033. msgstr "P&referências"
  4034. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4035. msgctxt "@header"
  4036. msgid "Configurations"
  4037. msgstr "Configurações"
  4038. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4039. msgctxt "@header"
  4040. msgid "Custom"
  4041. msgstr "Personalizado"
  4042. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4043. msgctxt "@label"
  4044. msgid "Enabled"
  4045. msgstr "Habilitado"
  4046. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4047. msgctxt "@label"
  4048. msgid "Material"
  4049. msgstr "Material"
  4050. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4051. msgctxt "@label"
  4052. msgid "Use glue for better adhesion with this material combination."
  4053. msgstr "Use cola para melhor aderência com essa combinação de materiais."
  4054. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4055. msgctxt "@label"
  4056. msgid "Loading available configurations from the printer..."
  4057. msgstr "Carregando configurações disponíveis da impressora..."
  4058. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4059. msgctxt "@label"
  4060. msgid "The configurations are not available because the printer is disconnected."
  4061. msgstr "As configurações não estão disponíveis porque a impressora está desconectada."
  4062. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4063. msgctxt "@label"
  4064. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4065. 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."
  4066. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4067. msgctxt "@label"
  4068. msgid "Marketplace"
  4069. msgstr "Mercado"
  4070. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4071. msgctxt "@tooltip"
  4072. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4073. msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento."
  4074. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4075. msgctxt "@tooltip"
  4076. msgid "There are no profiles matching the configuration of this extruder."
  4077. msgstr "Não há perfis correspondendo à configuração deste extrusor."
  4078. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4079. msgctxt "@label"
  4080. msgid "Select configuration"
  4081. msgstr "Selecione configuração"
  4082. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4083. msgctxt "@label"
  4084. msgid "Configurations"
  4085. msgstr "Configurações"
  4086. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/HelpMenu.qml:14
  4087. msgctxt "@title:menu menubar:toplevel"
  4088. msgid "&Help"
  4089. msgstr "Ajuda (&H)"
  4090. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  4091. msgctxt "@title:menu menubar:file"
  4092. msgid "Save Project..."
  4093. msgstr "Salvar Projeto..."
  4094. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  4095. msgctxt "@title:menu menubar:file"
  4096. msgid "Open &Recent"
  4097. msgstr "Abrir &Recente"
  4098. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:13
  4099. msgctxt "@title:menu menubar:toplevel"
  4100. msgid "&View"
  4101. msgstr "&Ver"
  4102. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:17
  4103. msgctxt "@action:inmenu menubar:view"
  4104. msgid "&Camera position"
  4105. msgstr "Posição da &câmera"
  4106. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:30
  4107. msgctxt "@action:inmenu menubar:view"
  4108. msgid "Camera view"
  4109. msgstr "Visão de câmera"
  4110. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:48
  4111. msgctxt "@action:inmenu menubar:view"
  4112. msgid "Perspective"
  4113. msgstr "Perspectiva"
  4114. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ViewMenu.qml:59
  4115. msgctxt "@action:inmenu menubar:view"
  4116. msgid "Orthographic"
  4117. msgstr "Ortográfico"
  4118. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:29
  4119. msgctxt "@label"
  4120. msgid "Print Selected Model With:"
  4121. msgid_plural "Print Selected Models With:"
  4122. msgstr[0] "Imprimir Modelo Selecionado Com:"
  4123. msgstr[1] "Imprimir Modelos Selecionados Com:"
  4124. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:92
  4125. msgctxt "@title:window"
  4126. msgid "Multiply Selected Model"
  4127. msgid_plural "Multiply Selected Models"
  4128. msgstr[0] "Multiplicar Modelo Selecionado"
  4129. msgstr[1] "Multiplicar Modelos Selecionados"
  4130. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/ContextMenu.qml:123
  4131. msgctxt "@label"
  4132. msgid "Number of Copies"
  4133. msgstr "Número de Cópias"
  4134. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/EditMenu.qml:12
  4135. msgctxt "@title:menu menubar:toplevel"
  4136. msgid "&Edit"
  4137. msgstr "&Editar"
  4138. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4139. msgctxt "@action:inmenu"
  4140. msgid "Visible Settings"
  4141. msgstr "Ajustes Visíveis"
  4142. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4143. msgctxt "@action:inmenu"
  4144. msgid "Collapse All Categories"
  4145. msgstr "Encolher Todas As Categorias"
  4146. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4147. msgctxt "@action:inmenu"
  4148. msgid "Manage Setting Visibility..."
  4149. msgstr "Gerenciar Visibilidade dos Ajustes..."
  4150. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  4151. msgctxt "@title:window"
  4152. msgid "Select Printer"
  4153. msgstr "Selecione Impressora"
  4154. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  4155. msgctxt "@title:label"
  4156. msgid "Compatible Printers"
  4157. msgstr "Impressoras Compatíveis"
  4158. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml:94
  4159. msgctxt "@description"
  4160. msgid "No compatible printers, that are currently online, where found."
  4161. msgstr "Não foram encontradas impressoras compatíveis que estivessem online no momento."
  4162. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:635
  4163. msgctxt "@title:window"
  4164. msgid "Open file(s)"
  4165. msgstr "Abrir arquivo(s)"
  4166. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4167. msgctxt "@text:window"
  4168. 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?"
  4169. 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?"
  4170. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4171. msgctxt "@action:button"
  4172. msgid "Import all as models"
  4173. msgstr "Importar todos como modelos"
  4174. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  4175. msgctxt "@title:window"
  4176. msgid "Open project file"
  4177. msgstr "Abrir arquivo de projeto"
  4178. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  4179. msgctxt "@text:window"
  4180. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  4181. msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?"
  4182. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  4183. msgctxt "@text:window"
  4184. msgid "Remember my choice"
  4185. msgstr "Lembrar minha escolha"
  4186. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  4187. msgctxt "@action:button"
  4188. msgid "Open as project"
  4189. msgstr "Abrir como projeto"
  4190. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  4191. msgctxt "@action:button"
  4192. msgid "Import models"
  4193. msgstr "Importar modelos"
  4194. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  4195. msgctxt "@title:window"
  4196. msgid "Discard or Keep changes"
  4197. msgstr "Descartar ou Manter alterações"
  4198. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:59
  4199. msgctxt "@text:window, %1 is a profile name"
  4200. 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'."
  4201. 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'."
  4202. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:85
  4203. msgctxt "@title:column"
  4204. msgid "Profile settings"
  4205. msgstr "Ajustes de perfil"
  4206. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:87
  4207. msgctxt "@title:column"
  4208. msgid "Current changes"
  4209. msgstr "Alterações atuais"
  4210. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  4211. msgctxt "@option:discardOrKeep"
  4212. msgid "Discard and never ask again"
  4213. msgstr "Descartar e não perguntar novamente"
  4214. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:117
  4215. msgctxt "@option:discardOrKeep"
  4216. msgid "Keep and never ask again"
  4217. msgstr "Manter e não perguntar novamente"
  4218. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:147
  4219. msgctxt "@action:button"
  4220. msgid "Discard changes"
  4221. msgstr "Descartar alterações"
  4222. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:153
  4223. msgctxt "@action:button"
  4224. msgid "Keep changes"
  4225. msgstr "Manter alterações"
  4226. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4227. msgctxt "@title:window"
  4228. msgid "Save Project"
  4229. msgstr "Salvar Projeto"
  4230. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4231. msgctxt "@action:label"
  4232. msgid "Extruder %1"
  4233. msgstr "Extrusor %1"
  4234. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4235. msgctxt "@action:label"
  4236. msgid "%1 & material"
  4237. msgstr "%1 & material"
  4238. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4239. msgctxt "@action:label"
  4240. msgid "Material"
  4241. msgstr "Material"
  4242. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4243. msgctxt "@action:label"
  4244. msgid "Don't show project summary on save again"
  4245. msgstr "Não exibir resumo do projeto ao salvar novamente"
  4246. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4247. msgctxt "@action:button"
  4248. msgid "Save"
  4249. msgstr "Salvar"
  4250. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  4251. msgctxt "@title:window The argument is the application name."
  4252. msgid "About %1"
  4253. msgstr "Sobre %1"
  4254. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:59
  4255. msgctxt "@label"
  4256. msgid "version: %1"
  4257. msgstr "versão: %1"
  4258. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:74
  4259. msgctxt "@label"
  4260. msgid "End-to-end solution for fused filament 3D printing."
  4261. msgstr "Solução completa para impressão 3D com filamento fundido."
  4262. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:87
  4263. msgctxt "@info:credit"
  4264. msgid ""
  4265. "Cura is developed by UltiMaker in cooperation with the community.\n"
  4266. "Cura proudly uses the following open source projects:"
  4267. msgstr ""
  4268. "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n"
  4269. "Cura orgulhosamente usa os seguintes projetos open-source:"
  4270. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  4271. msgctxt "@label Description for application component"
  4272. msgid "Graphical user interface"
  4273. msgstr "Interface Gráfica de usuário"
  4274. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  4275. msgctxt "@label Description for application component"
  4276. msgid "Application framework"
  4277. msgstr "Framework de Aplicações"
  4278. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  4279. msgctxt "@label Description for application component"
  4280. msgid "G-code generator"
  4281. msgstr "Gerador de G-Code"
  4282. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  4283. msgctxt "@label Description for application component"
  4284. msgid "Interprocess communication library"
  4285. msgstr "Biblioteca de comunicação interprocessos"
  4286. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  4287. msgctxt "@label Description for application component"
  4288. msgid "Python bindings for libnest2d"
  4289. msgstr "Ligações de Python para a libnest2d"
  4290. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  4291. msgctxt "@label Description for application component"
  4292. msgid "Polygon packing library, developed by Prusa Research"
  4293. msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research"
  4294. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  4295. msgctxt "@label Description for application component"
  4296. msgid "Support library for handling 3MF files"
  4297. msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF"
  4298. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  4299. msgctxt "@label Description for application component"
  4300. msgid "Support library for file metadata and streaming"
  4301. msgstr "Biblioteca de suporte para streaming e metadados de arquivo"
  4302. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  4303. msgctxt "@label Description for application dependency"
  4304. msgid "Programming language"
  4305. msgstr "Linguagem de Programação"
  4306. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  4307. msgctxt "@label Description for application dependency"
  4308. msgid "GUI framework"
  4309. msgstr "Framework Gráfica"
  4310. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  4311. msgctxt "@label Description for application dependency"
  4312. msgid "GUI framework bindings"
  4313. msgstr "Ligações da Framework Gráfica"
  4314. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  4315. msgctxt "@label Description for application dependency"
  4316. msgid "C/C++ Binding library"
  4317. msgstr "Biblioteca de Ligações C/C++"
  4318. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  4319. msgctxt "@label Description for application dependency"
  4320. msgid "Data interchange format"
  4321. msgstr "Formato de Intercâmbio de Dados"
  4322. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  4323. msgctxt "@label"
  4324. msgid "Font"
  4325. msgstr "Fonte"
  4326. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  4327. msgctxt "@label Description for application dependency"
  4328. msgid "Polygon clipping library"
  4329. msgstr "Biblioteca de recorte de polígonos"
  4330. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  4331. msgctxt "@label Description for application dependency"
  4332. msgid "JSON parser"
  4333. msgstr "Parser JSON"
  4334. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  4335. msgctxt "@label Description for application dependency"
  4336. msgid "Utility functions, including an image loader"
  4337. msgstr "Funções de utilidade, incluindo um carregador de imagem"
  4338. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  4339. msgctxt "@label Description for application dependency"
  4340. msgid "Utility library, including Voronoi generation"
  4341. msgstr "Biblioteca de utilidade, incluindo geração Voronoi"
  4342. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:162 /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  4343. msgctxt "@label Description for application dependency"
  4344. msgid "Root Certificates for validating SSL trustworthiness"
  4345. msgstr "Certificados-Raiz para validar confiança SSL"
  4346. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  4347. msgctxt "@label Description for application dependency"
  4348. msgid "Compatibility between Python 2 and 3"
  4349. msgstr "Compatibilidade entre Python 2 e 3"
  4350. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  4351. msgctxt "@label Description for application dependency"
  4352. msgid "Support library for system keyring access"
  4353. msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema"
  4354. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:166
  4355. msgctxt "@label Description for application dependency"
  4356. msgid "Support library for faster math"
  4357. msgstr "Biblioteca de suporte para matemática acelerada"
  4358. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:167
  4359. msgctxt "@label Description for application dependency"
  4360. msgid "Support library for handling STL files"
  4361. msgstr "Biblioteca de suporte para manuseamento de arquivos STL"
  4362. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:168
  4363. msgctxt "@label Description for application dependency"
  4364. msgid "Python bindings for Clipper"
  4365. msgstr "Ligações de Python pra Clipper"
  4366. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  4367. msgctxt "@label Description for application dependency"
  4368. msgid "Serial communication library"
  4369. msgstr "Biblioteca de comunicação serial"
  4370. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:170
  4371. msgctxt "@label Description for application dependency"
  4372. msgid "Support library for scientific computing"
  4373. msgstr "Biblioteca de suporte para computação científica"
  4374. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:171
  4375. msgctxt "@Label Description for application dependency"
  4376. msgid "Python Error tracking library"
  4377. msgstr "Biblioteca de rastreamento de Erros Python"
  4378. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  4379. msgctxt "@label Description for application dependency"
  4380. msgid "Support library for handling triangular meshes"
  4381. msgstr "Biblioteca de suporte para manuseamento de malhas triangulares"
  4382. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  4383. msgctxt "@label Description for application dependency"
  4384. msgid "ZeroConf discovery library"
  4385. msgstr "Biblioteca de descoberta 'ZeroConf'"
  4386. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:176
  4387. msgctxt "@label Description for development tool"
  4388. msgid "Universal build system configuration"
  4389. msgstr "Configuração de sistema universal de construção"
  4390. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:177
  4391. msgctxt "@label Description for development tool"
  4392. msgid "Dependency and package manager"
  4393. msgstr "Gestor de pacote e dependência"
  4394. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:178
  4395. msgctxt "@label Description for development tool"
  4396. msgid "Packaging Python-applications"
  4397. msgstr "Empacotamento de aplicações Python"
  4398. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:179
  4399. msgctxt "@label Description for development tool"
  4400. msgid "Linux cross-distribution application deployment"
  4401. msgstr "Implementação de aplicação multidistribuição em Linux"
  4402. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Dialogs/AboutDialog.qml:180
  4403. msgctxt "@label Description for development tool"
  4404. msgid "Generating Windows installers"
  4405. msgstr "Gerando instaladores Windows"
  4406. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ColorDialog.qml:107
  4407. msgctxt "@label"
  4408. msgid "Hex"
  4409. msgstr "Hexa"
  4410. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  4411. msgctxt "@label:button"
  4412. msgid "My printers"
  4413. msgstr "Minhas impressoras"
  4414. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  4415. msgctxt "@tooltip:button"
  4416. msgid "Monitor printers in Ultimaker Digital Factory."
  4417. msgstr "Monitora as impressoras na Ultimaker Digital Factory."
  4418. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  4419. msgctxt "@tooltip:button"
  4420. msgid "Create print projects in Digital Library."
  4421. msgstr "Cria projetos de impressão na Digital Library."
  4422. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  4423. msgctxt "@label:button"
  4424. msgid "Print jobs"
  4425. msgstr "Trabalhos de impressão"
  4426. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  4427. msgctxt "@tooltip:button"
  4428. msgid "Monitor print jobs and reprint from your print history."
  4429. msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico."
  4430. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  4431. msgctxt "@tooltip:button"
  4432. msgid "Extend UltiMaker Cura with plugins and material profiles."
  4433. msgstr "Estende o UltiMaker Cura com complementos e perfis de material."
  4434. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  4435. msgctxt "@tooltip:button"
  4436. msgid "Become a 3D printing expert with UltiMaker e-learning."
  4437. msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning."
  4438. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  4439. msgctxt "@label:button"
  4440. msgid "UltiMaker support"
  4441. msgstr "Suporte UltiMaker"
  4442. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  4443. msgctxt "@tooltip:button"
  4444. msgid "Learn how to get started with UltiMaker Cura."
  4445. msgstr "Saiba como começar com o UltiMaker Cura."
  4446. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  4447. msgctxt "@label:button"
  4448. msgid "Ask a question"
  4449. msgstr "Fazer uma pergunta"
  4450. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  4451. msgctxt "@tooltip:button"
  4452. msgid "Consult the UltiMaker Community."
  4453. msgstr "Consultar a Comunidade UltiMaker."
  4454. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  4455. msgctxt "@label:button"
  4456. msgid "Report a bug"
  4457. msgstr "Relatar um problema"
  4458. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  4459. msgctxt "@tooltip:button"
  4460. msgid "Let developers know that something is going wrong."
  4461. msgstr "Deixe os desenvolvedores saberem que algo está errado."
  4462. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  4463. msgctxt "@tooltip:button"
  4464. msgid "Visit the UltiMaker website."
  4465. msgstr "Visita o website da UltiMaker."
  4466. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  4467. msgctxt "@label"
  4468. msgid "Support"
  4469. msgstr "Suporte"
  4470. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:44 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:78
  4471. msgctxt "@label"
  4472. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4473. 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."
  4474. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:54
  4475. msgctxt "@info, %1 is the name of the custom profile"
  4476. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  4477. msgstr "<b>%1</b> perfil personalizado está ativo e alguns ajustes foram sobrescritos."
  4478. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:68
  4479. msgctxt "@info, %1 is the name of the custom profile"
  4480. msgid "<b>%1</b> custom profile is overriding some settings."
  4481. msgstr "<b>%1</b> perfil personalizado está sobrepondo alguns ajustes."
  4482. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/ProfileWarningReset.qml:79
  4483. msgctxt "@info"
  4484. msgid "Some settings were changed."
  4485. msgstr "Alguns ajustes foram alterados."
  4486. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:78 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:254
  4487. msgctxt "@label"
  4488. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4489. msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo."
  4490. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:216
  4491. msgctxt "@label"
  4492. msgid "Gradual infill"
  4493. msgstr "Preenchimento gradual"
  4494. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  4495. msgctxt "@error"
  4496. msgid "Configuration not supported"
  4497. msgstr "Configuração não suportada"
  4498. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  4499. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  4500. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  4501. msgstr "Nenhum perfil está disponível para a configuração selecionada de material/%1. Por favor altere sua configuração."
  4502. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  4503. msgctxt "@button:label"
  4504. msgid "Learn more"
  4505. msgstr "Saber mais"
  4506. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  4507. msgctxt "@label"
  4508. msgid "Adhesion"
  4509. msgstr "Aderência"
  4510. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:76
  4511. msgctxt "@label"
  4512. 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."
  4513. 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."
  4514. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  4515. msgctxt "@label"
  4516. msgid "Resolution"
  4517. msgstr "Resolução"
  4518. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  4519. msgctxt "@label shown when we load a Gcode file"
  4520. msgid "Print setup disabled. G-code file can not be modified."
  4521. msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado."
  4522. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4523. msgctxt "@label:Should be short"
  4524. msgid "On"
  4525. msgstr "On"
  4526. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4527. msgctxt "@label:Should be short"
  4528. msgid "Off"
  4529. msgstr "Off"
  4530. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  4531. msgctxt "@label"
  4532. msgid "Experimental"
  4533. msgstr "Experimental"
  4534. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:142
  4535. msgctxt "@button"
  4536. msgid "Recommended"
  4537. msgstr "Recomendado"
  4538. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:156
  4539. msgctxt "@button"
  4540. msgid "Custom"
  4541. msgstr "Personalizado"
  4542. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  4543. msgctxt "@label"
  4544. msgid "Profile"
  4545. msgstr "Perfil"
  4546. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:145
  4547. msgctxt "@tooltip"
  4548. msgid ""
  4549. "Some setting/override values are different from the values stored in the profile.\n"
  4550. "\n"
  4551. "Click to open the profile manager."
  4552. msgstr ""
  4553. "Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n"
  4554. "\n"
  4555. "Clique para abrir o gerenciador de perfis."
  4556. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  4557. msgctxt "@label:header"
  4558. msgid "Custom profiles"
  4559. msgstr "Perfis personalizados"
  4560. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4561. msgctxt "@info:status"
  4562. msgid "The printer is not connected."
  4563. msgstr "A impressora não está conectada."
  4564. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  4565. msgctxt "@label"
  4566. msgid "Build plate"
  4567. msgstr "Mesa de Impressão"
  4568. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  4569. msgctxt "@tooltip"
  4570. 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."
  4571. msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado."
  4572. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4573. msgctxt "@tooltip"
  4574. msgid "The current temperature of the heated bed."
  4575. msgstr "A temperatura atual da mesa aquecida."
  4576. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  4577. msgctxt "@tooltip of temperature input"
  4578. msgid "The temperature to pre-heat the bed to."
  4579. msgstr "A temperatura em que pré-aquecer a mesa."
  4580. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  4581. msgctxt "@button Cancel pre-heating"
  4582. msgid "Cancel"
  4583. msgstr "Cancelar"
  4584. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  4585. msgctxt "@button"
  4586. msgid "Pre-heat"
  4587. msgstr "Pré-aquecer"
  4588. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  4589. msgctxt "@tooltip of pre-heat"
  4590. 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."
  4591. 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."
  4592. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  4593. msgctxt "@label"
  4594. msgid "Extruder"
  4595. msgstr "Extrusor"
  4596. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  4597. msgctxt "@tooltip"
  4598. 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."
  4599. 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."
  4600. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  4601. msgctxt "@tooltip"
  4602. msgid "The current temperature of this hotend."
  4603. msgstr "A temperatura atual deste hotend."
  4604. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  4605. msgctxt "@tooltip of temperature input"
  4606. msgid "The temperature to pre-heat the hotend to."
  4607. msgstr "A temperatura com a qual pré-aquecer o hotend."
  4608. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  4609. msgctxt "@tooltip of pre-heat"
  4610. 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."
  4611. 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."
  4612. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  4613. msgctxt "@tooltip"
  4614. msgid "The colour of the material in this extruder."
  4615. msgstr "A cor do material neste extrusor."
  4616. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  4617. msgctxt "@tooltip"
  4618. msgid "The material in this extruder."
  4619. msgstr "O material neste extrusor."
  4620. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  4621. msgctxt "@tooltip"
  4622. msgid "The nozzle inserted in this extruder."
  4623. msgstr "O bico inserido neste extrusor."
  4624. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  4625. msgctxt "@label"
  4626. msgid "Printer control"
  4627. msgstr "Controle da Impressora"
  4628. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  4629. msgctxt "@label"
  4630. msgid "Jog Position"
  4631. msgstr "Posição de Trote"
  4632. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  4633. msgctxt "@label"
  4634. msgid "X/Y"
  4635. msgstr "X/Y"
  4636. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  4637. msgctxt "@label"
  4638. msgid "Z"
  4639. msgstr "Z"
  4640. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  4641. msgctxt "@label"
  4642. msgid "Jog Distance"
  4643. msgstr "Distância de Trote"
  4644. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4645. msgctxt "@label"
  4646. msgid "Send G-code"
  4647. msgstr "Enviar G-Code"
  4648. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  4649. msgctxt "@tooltip of G-code command input"
  4650. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4651. msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando."
  4652. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:250
  4653. msgctxt "@label"
  4654. msgid "This package will be installed after restarting."
  4655. msgstr "Este pacote será instalado após o reinício."
  4656. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:464
  4657. msgctxt "@title:tab"
  4658. msgid "Settings"
  4659. msgstr "Ajustes"
  4660. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:587
  4661. msgctxt "@title:window %1 is the application name"
  4662. msgid "Closing %1"
  4663. msgstr "Fechando %1"
  4664. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:588 /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:597
  4665. msgctxt "@label %1 is the application name"
  4666. msgid "Are you sure you want to exit %1?"
  4667. msgstr "Tem certeza que quer sair de %1?"
  4668. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:740
  4669. msgctxt "@window:title"
  4670. msgid "Install Package"
  4671. msgstr "Instalar Pacote"
  4672. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:747
  4673. msgctxt "@title:window"
  4674. msgid "Open File(s)"
  4675. msgstr "Abrir Arquivo(s)"
  4676. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:749
  4677. msgctxt "@text:window"
  4678. 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."
  4679. 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."
  4680. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:829
  4681. msgctxt "@title:window"
  4682. msgid "Add Printer"
  4683. msgstr "Adicionar Impressora"
  4684. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Cura.qml:837
  4685. msgctxt "@title:window"
  4686. msgid "What's New"
  4687. msgstr "Novidades"
  4688. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:39
  4689. msgctxt "@text"
  4690. msgid ""
  4691. "- Add material profiles and plug-ins from the Marketplace\n"
  4692. "- Back-up and sync your material profiles and plug-ins\n"
  4693. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  4694. msgstr ""
  4695. "- Adicione perfis de material e plug-ins do Marketplace\n"
  4696. "- Faça backup e sincronize seus perfis de materiais e plugins\n"
  4697. "- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker"
  4698. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/GeneralOperations.qml:58
  4699. msgctxt "@button"
  4700. msgid "Create a free UltiMaker account"
  4701. msgstr "Criar uma conta UltiMaker gratuita"
  4702. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/AccountWidget.qml:24
  4703. msgctxt "@action:button"
  4704. msgid "Sign in"
  4705. msgstr "Entrar"
  4706. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:78
  4707. msgctxt "@label The argument is a timestamp"
  4708. msgid "Last update: %1"
  4709. msgstr "Última atualização: %1"
  4710. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:107
  4711. msgctxt "@button"
  4712. msgid "UltiMaker Account"
  4713. msgstr "Conta na UltiMaker"
  4714. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/UserOperations.qml:126
  4715. msgctxt "@button"
  4716. msgid "Sign Out"
  4717. msgstr "Deslogar"
  4718. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:35
  4719. msgctxt "@label"
  4720. msgid "Checking..."
  4721. msgstr "Verificando..."
  4722. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:42
  4723. msgctxt "@label"
  4724. msgid "Account synced"
  4725. msgstr "Conta sincronizada"
  4726. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:49
  4727. msgctxt "@label"
  4728. msgid "Something went wrong..."
  4729. msgstr "Alguma coisa deu errado..."
  4730. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:102
  4731. msgctxt "@button"
  4732. msgid "Install pending updates"
  4733. msgstr "Instalação aguardando atualizações"
  4734. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Account/SyncState.qml:123
  4735. msgctxt "@button"
  4736. msgid "Check for account updates"
  4737. msgstr "Verificar atualizações da conta"
  4738. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4739. msgctxt "@status"
  4740. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4741. msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet."
  4742. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4743. msgctxt "@status"
  4744. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4745. msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão."
  4746. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4747. msgctxt "@status"
  4748. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4749. msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem."
  4750. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4751. msgctxt "@status"
  4752. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4753. msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet."
  4754. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:237
  4755. msgctxt "@button"
  4756. msgid "Add printer"
  4757. msgstr "Adicionar impressora"
  4758. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelector.qml:254
  4759. msgctxt "@button"
  4760. msgid "Manage printers"
  4761. msgstr "Gerenciar impressoras"
  4762. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:34
  4763. msgctxt "@label"
  4764. msgid "Hide all connected printers"
  4765. msgstr "Omitir todas as impressoras conectadas"
  4766. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineListButton.qml:47
  4767. msgctxt "@label"
  4768. msgid "Show all connected printers"
  4769. msgstr "Mostrar todas as impressoras conectadas"
  4770. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4771. msgctxt "@label"
  4772. msgid "Other printers"
  4773. msgstr "Outras impressoras"
  4774. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  4775. msgctxt "@label:PrintjobStatus"
  4776. msgid "Slicing..."
  4777. msgstr "Fatiando..."
  4778. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:78
  4779. msgctxt "@label:PrintjobStatus"
  4780. msgid "Unable to slice"
  4781. msgstr "Não foi possível fatiar"
  4782. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4783. msgctxt "@button"
  4784. msgid "Processing"
  4785. msgstr "Processando"
  4786. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:114
  4787. msgctxt "@button"
  4788. msgid "Slice"
  4789. msgstr "Fatiar"
  4790. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:115
  4791. msgctxt "@label"
  4792. msgid "Start the slicing process"
  4793. msgstr "Inicia o processo de fatiamento"
  4794. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:132
  4795. msgctxt "@button"
  4796. msgid "Cancel"
  4797. msgstr "Cancelar"
  4798. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4799. msgctxt "@label"
  4800. msgid "Time estimation"
  4801. msgstr "Estimativa de tempo"
  4802. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:107
  4803. msgctxt "@label"
  4804. msgid "Material estimation"
  4805. msgstr "Estimativa de material"
  4806. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:156
  4807. msgctxt "@label m for meter"
  4808. msgid "%1m"
  4809. msgstr "%1m"
  4810. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:157
  4811. msgctxt "@label g for grams"
  4812. msgid "%1g"
  4813. msgstr "%1g"
  4814. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4815. msgctxt "@label"
  4816. msgid "No time estimation available"
  4817. msgstr "Sem estimativa de tempo disponível"
  4818. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4819. msgctxt "@label"
  4820. msgid "No cost estimation available"
  4821. msgstr "Sem estimativa de custo disponível"
  4822. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4823. msgctxt "@button"
  4824. msgid "Preview"
  4825. msgstr "Pré-visualização"
  4826. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/JobSpecs.qml:93
  4827. msgctxt "@text Print job name"
  4828. msgid "Untitled"
  4829. msgstr "Sem Título"
  4830. #: /Users/c.lamboo/ultimaker/Cura/resources/qml/Widgets/ComboBox.qml:18
  4831. msgctxt "@label"
  4832. msgid "No items to select from"
  4833. msgstr "Sem itens para selecionar"
  4834. #: /MachineSettingsAction/plugin.json
  4835. msgctxt "description"
  4836. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4837. msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)."
  4838. #: /MachineSettingsAction/plugin.json
  4839. msgctxt "name"
  4840. msgid "Machine Settings Action"
  4841. msgstr "Ação de Ajustes de Máquina"
  4842. #: /ImageReader/plugin.json
  4843. msgctxt "description"
  4844. msgid "Enables ability to generate printable geometry from 2D image files."
  4845. msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D."
  4846. #: /ImageReader/plugin.json
  4847. msgctxt "name"
  4848. msgid "Image Reader"
  4849. msgstr "Leitor de Imagens"
  4850. #: /XRayView/plugin.json
  4851. msgctxt "description"
  4852. msgid "Provides the X-Ray view."
  4853. msgstr "Provê a visão de Raios-X."
  4854. #: /XRayView/plugin.json
  4855. msgctxt "name"
  4856. msgid "X-Ray View"
  4857. msgstr "Visão de Raios-X"
  4858. #: /X3DReader/plugin.json
  4859. msgctxt "description"
  4860. msgid "Provides support for reading X3D files."
  4861. msgstr "Provê suporte à leitura de arquivos X3D."
  4862. #: /X3DReader/plugin.json
  4863. msgctxt "name"
  4864. msgid "X3D Reader"
  4865. msgstr "Leitor de X3D"
  4866. #: /CuraProfileReader/plugin.json
  4867. msgctxt "description"
  4868. msgid "Provides support for importing Cura profiles."
  4869. msgstr "Provê suporte à importação de perfis do Cura."
  4870. #: /CuraProfileReader/plugin.json
  4871. msgctxt "name"
  4872. msgid "Cura Profile Reader"
  4873. msgstr "Leitor de Perfis do Cura"
  4874. #: /PostProcessingPlugin/plugin.json
  4875. msgctxt "description"
  4876. msgid "Extension that allows for user created scripts for post processing"
  4877. msgstr "Extensão que permite scripts criados por usuários para pós-processamento"
  4878. #: /PostProcessingPlugin/plugin.json
  4879. msgctxt "name"
  4880. msgid "Post Processing"
  4881. msgstr "Pós-processamento"
  4882. #: /UM3NetworkPrinting/plugin.json
  4883. msgctxt "description"
  4884. msgid "Manages network connections to UltiMaker networked printers."
  4885. msgstr "Administra conexões de rede a impressora UltiMaker conectadas."
  4886. #: /UM3NetworkPrinting/plugin.json
  4887. msgctxt "name"
  4888. msgid "UltiMaker Network Connection"
  4889. msgstr "Conexão de Rede UltiMaker"
  4890. #: /3MFWriter/plugin.json
  4891. msgctxt "description"
  4892. msgid "Provides support for writing 3MF files."
  4893. msgstr "Provê suporte à escrita de arquivos 3MF."
  4894. #: /3MFWriter/plugin.json
  4895. msgctxt "name"
  4896. msgid "3MF Writer"
  4897. msgstr "Gerador de 3MF"
  4898. #: /CuraDrive/plugin.json
  4899. msgctxt "description"
  4900. msgid "Backup and restore your configuration."
  4901. msgstr "Permite backup e restauração da configuração."
  4902. #: /CuraDrive/plugin.json
  4903. msgctxt "name"
  4904. msgid "Cura Backups"
  4905. msgstr "Backups Cura"
  4906. #: /SliceInfoPlugin/plugin.json
  4907. msgctxt "description"
  4908. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4909. msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  4910. #: /SliceInfoPlugin/plugin.json
  4911. msgctxt "name"
  4912. msgid "Slice info"
  4913. msgstr "Informação de fatiamento"
  4914. #: /UFPWriter/plugin.json
  4915. msgctxt "description"
  4916. msgid "Provides support for writing UltiMaker Format Packages."
  4917. msgstr "Provê suporte para a escrita de UltiMaker Format Packages (Pacotes de Formato da Ultimaker)."
  4918. #: /UFPWriter/plugin.json
  4919. msgctxt "name"
  4920. msgid "UFP Writer"
  4921. msgstr "Gerador de UFP"
  4922. #: /DigitalLibrary/plugin.json
  4923. msgctxt "description"
  4924. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4925. msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela."
  4926. #: /DigitalLibrary/plugin.json
  4927. msgctxt "name"
  4928. msgid "Ultimaker Digital Library"
  4929. msgstr "Digital Library da UltiMaker"
  4930. #: /GCodeProfileReader/plugin.json
  4931. msgctxt "description"
  4932. msgid "Provides support for importing profiles from g-code files."
  4933. msgstr "Provê suporte a importar perfis de arquivos G-Code."
  4934. #: /GCodeProfileReader/plugin.json
  4935. msgctxt "name"
  4936. msgid "G-code Profile Reader"
  4937. msgstr "Leitor de Perfil de G-Code"
  4938. #: /GCodeReader/plugin.json
  4939. msgctxt "description"
  4940. msgid "Allows loading and displaying G-code files."
  4941. msgstr "Permite carregar e exibir arquivos G-Code."
  4942. #: /GCodeReader/plugin.json
  4943. msgctxt "name"
  4944. msgid "G-code Reader"
  4945. msgstr "Leitor de G-Code"
  4946. #: /TrimeshReader/plugin.json
  4947. msgctxt "description"
  4948. msgid "Provides support for reading model files."
  4949. msgstr "Provê suporta a ler arquivos de modelo."
  4950. #: /TrimeshReader/plugin.json
  4951. msgctxt "name"
  4952. msgid "Trimesh Reader"
  4953. msgstr "Leitor Trimesh"
  4954. #: /UltimakerMachineActions/plugin.json
  4955. msgctxt "description"
  4956. msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4957. msgstr "Provê ações de máquina para impressoras da UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)."
  4958. #: /UltimakerMachineActions/plugin.json
  4959. msgctxt "name"
  4960. msgid "UltiMaker machine actions"
  4961. msgstr "Ações de máquina UltiMaker"
  4962. #: /GCodeGzReader/plugin.json
  4963. msgctxt "description"
  4964. msgid "Reads g-code from a compressed archive."
  4965. msgstr "Lê G-Code de um arquivo comprimido."
  4966. #: /GCodeGzReader/plugin.json
  4967. msgctxt "name"
  4968. msgid "Compressed G-code Reader"
  4969. msgstr "Leitor de G-Code Comprimido"
  4970. #: /Marketplace/plugin.json
  4971. msgctxt "description"
  4972. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  4973. msgstr "Gerencia extensões à aplicação e permite navegar extensões do sítio web da UltiMaker."
  4974. #: /Marketplace/plugin.json
  4975. msgctxt "name"
  4976. msgid "Marketplace"
  4977. msgstr "Marketplace"
  4978. #: /RemovableDriveOutputDevice/plugin.json
  4979. msgctxt "description"
  4980. msgid "Provides removable drive hotplugging and writing support."
  4981. msgstr "Provê suporte a escrita e reconhecimento de drives a quente."
  4982. #: /RemovableDriveOutputDevice/plugin.json
  4983. msgctxt "name"
  4984. msgid "Removable Drive Output Device Plugin"
  4985. msgstr "Complemento de Dispositivo de Escrita Removível"
  4986. #: /MonitorStage/plugin.json
  4987. msgctxt "description"
  4988. msgid "Provides a monitor stage in Cura."
  4989. msgstr "Provê um estágio de monitor no Cura."
  4990. #: /MonitorStage/plugin.json
  4991. msgctxt "name"
  4992. msgid "Monitor Stage"
  4993. msgstr "Estágio de Monitor"
  4994. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  4995. msgctxt "description"
  4996. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4997. msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6."
  4998. #: /VersionUpgrade/VersionUpgrade25to26/plugin.json
  4999. msgctxt "name"
  5000. msgid "Version Upgrade 2.5 to 2.6"
  5001. msgstr "Atualização de Versão de 2.5 para 2.6"
  5002. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5003. msgctxt "description"
  5004. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5005. msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7."
  5006. #: /VersionUpgrade/VersionUpgrade26to27/plugin.json
  5007. msgctxt "name"
  5008. msgid "Version Upgrade 2.6 to 2.7"
  5009. msgstr "Atualização de Versão de 2.6 para 2.7"
  5010. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5011. msgctxt "description"
  5012. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5013. msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0."
  5014. #: /VersionUpgrade/VersionUpgrade413to50/plugin.json
  5015. msgctxt "name"
  5016. msgid "Version Upgrade 4.13 to 5.0"
  5017. msgstr "Atualização de Versão de 4.13 para 5.0"
  5018. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5019. msgctxt "description"
  5020. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5021. msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9."
  5022. #: /VersionUpgrade/VersionUpgrade48to49/plugin.json
  5023. msgctxt "name"
  5024. msgid "Version Upgrade 4.8 to 4.9"
  5025. msgstr "Atualização de Versão de 4.8 para 4.9"
  5026. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5027. msgctxt "description"
  5028. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5029. msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5."
  5030. #: /VersionUpgrade/VersionUpgrade34to35/plugin.json
  5031. msgctxt "name"
  5032. msgid "Version Upgrade 3.4 to 3.5"
  5033. msgstr "Atualização de Versão de 3.4 para 3.5"
  5034. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5035. msgctxt "description"
  5036. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5037. msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5."
  5038. #: /VersionUpgrade/VersionUpgrade44to45/plugin.json
  5039. msgctxt "name"
  5040. msgid "Version Upgrade 4.4 to 4.5"
  5041. msgstr "Atualização de Versão de 4.4 para 4.5"
  5042. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5043. msgctxt "description"
  5044. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5045. msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4."
  5046. #: /VersionUpgrade/VersionUpgrade43to44/plugin.json
  5047. msgctxt "name"
  5048. msgid "Version Upgrade 4.3 to 4.4"
  5049. msgstr "Atualização de Versão de 4.3 para 4.4"
  5050. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5051. msgctxt "description"
  5052. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5053. msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3."
  5054. #: /VersionUpgrade/VersionUpgrade32to33/plugin.json
  5055. msgctxt "name"
  5056. msgid "Version Upgrade 3.2 to 3.3"
  5057. msgstr "Atualização de Versão de 3.2 para 3.3"
  5058. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5059. msgctxt "description"
  5060. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5061. msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4."
  5062. #: /VersionUpgrade/VersionUpgrade33to34/plugin.json
  5063. msgctxt "name"
  5064. msgid "Version Upgrade 3.3 to 3.4"
  5065. msgstr "Atualização de Versão de 3.3 para 3.4"
  5066. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5067. msgctxt "description"
  5068. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5069. msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2."
  5070. #: /VersionUpgrade/VersionUpgrade41to42/plugin.json
  5071. msgctxt "name"
  5072. msgid "Version Upgrade 4.1 to 4.2"
  5073. msgstr "Atualização de Versão de 4.1 para 4.2"
  5074. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5075. msgctxt "description"
  5076. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5077. msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3."
  5078. #: /VersionUpgrade/VersionUpgrade42to43/plugin.json
  5079. msgctxt "name"
  5080. msgid "Version Upgrade 4.2 to 4.3"
  5081. msgstr "Atualização de Versão de 4.2 para 4.3"
  5082. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5083. msgctxt "description"
  5084. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5085. msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7."
  5086. #: /VersionUpgrade/VersionUpgrade462to47/plugin.json
  5087. msgctxt "name"
  5088. msgid "Version Upgrade 4.6.2 to 4.7"
  5089. msgstr "Atualização de Versão de 4.6.2 para 4.7"
  5090. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5091. msgctxt "description"
  5092. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5093. msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0."
  5094. #: /VersionUpgrade/VersionUpgrade35to40/plugin.json
  5095. msgctxt "name"
  5096. msgid "Version Upgrade 3.5 to 4.0"
  5097. msgstr "Atualização de Versão de 3.5 para 4.0"
  5098. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5099. msgctxt "description"
  5100. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5101. msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  5102. #: /VersionUpgrade/VersionUpgrade22to24/plugin.json
  5103. msgctxt "name"
  5104. msgid "Version Upgrade 2.2 to 2.4"
  5105. msgstr "Atualização de Versão de 2.2 para 2.4"
  5106. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5107. msgctxt "description"
  5108. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5109. msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  5110. #: /VersionUpgrade/VersionUpgrade21to22/plugin.json
  5111. msgctxt "name"
  5112. msgid "Version Upgrade 2.1 to 2.2"
  5113. msgstr "Atualização de Versão de 2.1 para 2.2"
  5114. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5115. msgctxt "description"
  5116. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5117. msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2."
  5118. #: /VersionUpgrade/VersionUpgrade460to462/plugin.json
  5119. msgctxt "name"
  5120. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5121. msgstr "Atualização de Versão de 4.6.0 para 4.6.2"
  5122. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5123. msgctxt "description"
  5124. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5125. msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8."
  5126. #: /VersionUpgrade/VersionUpgrade47to48/plugin.json
  5127. msgctxt "name"
  5128. msgid "Version Upgrade 4.7 to 4.8"
  5129. msgstr "Atualização de Versão de 4.7 para 4.8"
  5130. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5131. msgctxt "description"
  5132. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5133. msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10."
  5134. #: /VersionUpgrade/VersionUpgrade49to410/plugin.json
  5135. msgctxt "name"
  5136. msgid "Version Upgrade 4.9 to 4.10"
  5137. msgstr "Atualização de Versão de 4.9 para 4.10"
  5138. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5139. msgctxt "description"
  5140. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5141. msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6."
  5142. #: /VersionUpgrade/VersionUpgrade45to46/plugin.json
  5143. msgctxt "name"
  5144. msgid "Version Upgrade 4.5 to 4.6"
  5145. msgstr "Atualização de Versão de 4.5 para 4.6"
  5146. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5147. msgctxt "description"
  5148. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5149. msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0."
  5150. #: /VersionUpgrade/VersionUpgrade27to30/plugin.json
  5151. msgctxt "name"
  5152. msgid "Version Upgrade 2.7 to 3.0"
  5153. msgstr "Atualização de Versão de 2.7 para 3.0"
  5154. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5155. msgctxt "description"
  5156. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5157. msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1."
  5158. #: /VersionUpgrade/VersionUpgrade30to31/plugin.json
  5159. msgctxt "name"
  5160. msgid "Version Upgrade 3.0 to 3.1"
  5161. msgstr "Atualização de Versão 3.0 para 3.1"
  5162. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5163. msgctxt "description"
  5164. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5165. msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12."
  5166. #: /VersionUpgrade/VersionUpgrade411to412/plugin.json
  5167. msgctxt "name"
  5168. msgid "Version Upgrade 4.11 to 4.12"
  5169. msgstr "Atualização de Versão de 4.11 para 4.12"
  5170. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5171. msgctxt "description"
  5172. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5173. msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1."
  5174. #: /VersionUpgrade/VersionUpgrade40to41/plugin.json
  5175. msgctxt "name"
  5176. msgid "Version Upgrade 4.0 to 4.1"
  5177. msgstr "Atualização de Versão de 4.0 para 4.1"
  5178. #: /CuraEngineBackend/plugin.json
  5179. msgctxt "description"
  5180. msgid "Provides the link to the CuraEngine slicing backend."
  5181. msgstr "Provê a ligação ao backend de fatiamento CuraEngine."
  5182. #: /CuraEngineBackend/plugin.json
  5183. msgctxt "name"
  5184. msgid "CuraEngine Backend"
  5185. msgstr "CuraEngine Backend"
  5186. #: /3MFReader/plugin.json
  5187. msgctxt "description"
  5188. msgid "Provides support for reading 3MF files."
  5189. msgstr "Provê suporte à leitura de arquivos 3MF."
  5190. #: /3MFReader/plugin.json
  5191. msgctxt "name"
  5192. msgid "3MF Reader"
  5193. msgstr "Leitor de 3MF"
  5194. #: /PerObjectSettingsTool/plugin.json
  5195. msgctxt "description"
  5196. msgid "Provides the Per Model Settings."
  5197. msgstr "Provê Ajustes Por Modelo."
  5198. #: /PerObjectSettingsTool/plugin.json
  5199. msgctxt "name"
  5200. msgid "Per Model Settings Tool"
  5201. msgstr "Ferramenta de Ajustes Por Modelo"
  5202. #: /XmlMaterialProfile/plugin.json
  5203. msgctxt "description"
  5204. msgid "Provides capabilities to read and write XML-based material profiles."
  5205. msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML."
  5206. #: /XmlMaterialProfile/plugin.json
  5207. msgctxt "name"
  5208. msgid "Material Profiles"
  5209. msgstr "Perfis de Material"
  5210. #: /CuraProfileWriter/plugin.json
  5211. msgctxt "description"
  5212. msgid "Provides support for exporting Cura profiles."
  5213. msgstr "Provê suporte à exportação de perfis do Cura."
  5214. #: /CuraProfileWriter/plugin.json
  5215. msgctxt "name"
  5216. msgid "Cura Profile Writer"
  5217. msgstr "Gravador de Perfis do Cura"
  5218. #: /ModelChecker/plugin.json
  5219. msgctxt "description"
  5220. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  5221. msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões."
  5222. #: /ModelChecker/plugin.json
  5223. msgctxt "name"
  5224. msgid "Model Checker"
  5225. msgstr "Verificador de Modelo"
  5226. #: /USBPrinting/plugin.json
  5227. msgctxt "description"
  5228. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5229. msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  5230. #: /USBPrinting/plugin.json
  5231. msgctxt "name"
  5232. msgid "USB printing"
  5233. msgstr "Impressão USB"
  5234. #: /PreviewStage/plugin.json
  5235. msgctxt "description"
  5236. msgid "Provides a preview stage in Cura."
  5237. msgstr "Provê uma etapa de pré-visualização ao Cura."
  5238. #: /PreviewStage/plugin.json
  5239. msgctxt "name"
  5240. msgid "Preview Stage"
  5241. msgstr "Estágio de Pré-visualização"
  5242. #: /GCodeWriter/plugin.json
  5243. msgctxt "description"
  5244. msgid "Writes g-code to a file."
  5245. msgstr "Escreve em formato G-Code."
  5246. #: /GCodeWriter/plugin.json
  5247. msgctxt "name"
  5248. msgid "G-code Writer"
  5249. msgstr "Gerador de G-Code"
  5250. #: /UFPReader/plugin.json
  5251. msgctxt "description"
  5252. msgid "Provides support for reading UltiMaker Format Packages."
  5253. msgstr "Provê suporte a leitura de Pacotes de Formato UltiMaker (UFP)."
  5254. #: /UFPReader/plugin.json
  5255. msgctxt "name"
  5256. msgid "UFP Reader"
  5257. msgstr "Leitor UFP"
  5258. #: /FirmwareUpdater/plugin.json
  5259. msgctxt "description"
  5260. msgid "Provides a machine actions for updating firmware."
  5261. msgstr "Provê ações de máquina para atualização do firmware."
  5262. #: /FirmwareUpdater/plugin.json
  5263. msgctxt "name"
  5264. msgid "Firmware Updater"
  5265. msgstr "Atualizador de Firmware"
  5266. #: /GCodeGzWriter/plugin.json
  5267. msgctxt "description"
  5268. msgid "Writes g-code to a compressed archive."
  5269. msgstr "Escreve em formato G-Code comprimido."
  5270. #: /GCodeGzWriter/plugin.json
  5271. msgctxt "name"
  5272. msgid "Compressed G-code Writer"
  5273. msgstr "Gerador de G-Code Comprimido"
  5274. #: /SimulationView/plugin.json
  5275. msgctxt "description"
  5276. msgid "Provides the preview of sliced layerdata."
  5277. msgstr "Provê a pré-visualização de dados de camada fatiados."
  5278. #: /SimulationView/plugin.json
  5279. msgctxt "name"
  5280. msgid "Simulation View"
  5281. msgstr "Visão Simulada"
  5282. #: /LegacyProfileReader/plugin.json
  5283. msgctxt "description"
  5284. msgid "Provides support for importing profiles from legacy Cura versions."
  5285. msgstr "Provê suporte a importação de perfis de versões legadas do Cura."
  5286. #: /LegacyProfileReader/plugin.json
  5287. msgctxt "name"
  5288. msgid "Legacy Cura Profile Reader"
  5289. msgstr "Leitor de Perfis de Cura Legado"
  5290. #: /AMFReader/plugin.json
  5291. msgctxt "description"
  5292. msgid "Provides support for reading AMF files."
  5293. msgstr "Provê suporta à leitura de arquivos AMF."
  5294. #: /AMFReader/plugin.json
  5295. msgctxt "name"
  5296. msgid "AMF Reader"
  5297. msgstr "Leitor AMF"
  5298. #: /SolidView/plugin.json
  5299. msgctxt "description"
  5300. msgid "Provides a normal solid mesh view."
  5301. msgstr "Provê uma visualização de malha sólida normal."
  5302. #: /SolidView/plugin.json
  5303. msgctxt "name"
  5304. msgid "Solid View"
  5305. msgstr "Visão Sólida"
  5306. #: /FirmwareUpdateChecker/plugin.json
  5307. msgctxt "description"
  5308. msgid "Checks for firmware updates."
  5309. msgstr "Verifica por atualizações de firmware."
  5310. #: /FirmwareUpdateChecker/plugin.json
  5311. msgctxt "name"
  5312. msgid "Firmware Update Checker"
  5313. msgstr "Verificador de Atualizações de Firmware"
  5314. #: /SentryLogger/plugin.json
  5315. msgctxt "description"
  5316. msgid "Logs certain events so that they can be used by the crash reporter"
  5317. msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes"
  5318. #: /SentryLogger/plugin.json
  5319. msgctxt "name"
  5320. msgid "Sentry Logger"
  5321. msgstr "Sentinela para Registro"
  5322. #: /SupportEraser/plugin.json
  5323. msgctxt "description"
  5324. msgid "Creates an eraser mesh to block the printing of support in certain places"
  5325. msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares"
  5326. #: /SupportEraser/plugin.json
  5327. msgctxt "name"
  5328. msgid "Support Eraser"
  5329. msgstr "Apagador de Suporte"
  5330. #: /PrepareStage/plugin.json
  5331. msgctxt "description"
  5332. msgid "Provides a prepare stage in Cura."
  5333. msgstr "Provê um estágio de preparação no Cura."
  5334. #: /PrepareStage/plugin.json
  5335. msgctxt "name"
  5336. msgid "Prepare Stage"
  5337. msgstr "Estágio de Preparação"
  5338. #, python-brace-format
  5339. #~ msgctxt "@error:material"
  5340. #~ msgid "It was not possible to store material package information in project file: {material}. This project may not open correctly on other systems."
  5341. #~ 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."
  5342. #~ msgctxt "@info:title"
  5343. #~ msgid "Failed to save material package information"
  5344. #~ msgstr "Falha em salvar informação de pacote de material"
  5345. #~ msgctxt "@label Description for application dependency"
  5346. #~ msgid "Python Error tracking library"
  5347. #~ msgstr "Biblioteca de rastreamento de Erros de Python"
  5348. #~ msgctxt "@label"
  5349. #~ msgid "Printer"
  5350. #~ msgstr "Impressora"
  5351. #~ msgctxt "@info"
  5352. #~ msgid "custom profile is active and you overwrote some settings."
  5353. #~ msgstr "o perfil personalizado está ativo e você sobrescreveu alguns ajustes."
  5354. #~ msgctxt "@info"
  5355. #~ msgid "custom profile is overriding some settings."
  5356. #~ msgstr "o perfil personalizado está sobrepujando alguns ajustes."
  5357. #~ msgctxt "@label"
  5358. #~ msgid "Not yet initialized<br/>"
  5359. #~ msgstr "Ainda não inicializado<br/>"
  5360. #~ msgctxt "@label"
  5361. #~ msgid "By"
  5362. #~ msgstr "Por"
  5363. #~ msgctxt "@Label"
  5364. #~ msgid "Static type checker for Python"
  5365. #~ msgstr "Verificador de tipos estáticos para Python"
  5366. #~ msgctxt "@Label"
  5367. #~ msgid "Root Certificates for validating SSL trustworthiness"
  5368. #~ msgstr "Certificados raiz para validar confiança de SSL"
  5369. #~ msgctxt "@label"
  5370. #~ msgid "Python extensions for Microsoft Windows"
  5371. #~ msgstr "Extensões de python para o Microsoft Windows"
  5372. #~ msgctxt "@label"
  5373. #~ msgid "SVG icons"
  5374. #~ msgstr "Ícones SVG"
  5375. #~ 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')"
  5376. #~ msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  5377. #~ msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  5378. #~ msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele"
  5379. #~ msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles"
  5380. #~ msgctxt "@tooltip"
  5381. #~ msgid "You have modified some profile settings. If you want to change these go to custom mode."
  5382. #~ msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado."
  5383. #~ msgctxt "@action:button"
  5384. #~ msgid "Sync materials with printers"
  5385. #~ msgstr "Sincronizar materiais"
  5386. #~ msgctxt "@title:window"
  5387. #~ msgid "Convert Image..."
  5388. #~ msgstr "Converter imagem..."
  5389. #~ msgctxt "@info:tooltip"
  5390. #~ msgid "The width in millimeters on the build plate."
  5391. #~ msgstr "A largura da mesa de impressão em milímetros."
  5392. #~ msgctxt "@title"
  5393. #~ msgid "Marketplace"
  5394. #~ msgstr "Mercado"
  5395. #~ msgctxt "@info"
  5396. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5397. #~ msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito."
  5398. #~ msgctxt "@action:button"
  5399. #~ msgid "Install"
  5400. #~ msgstr "Instalar"
  5401. #~ msgctxt "@action:button"
  5402. #~ msgid "Installed"
  5403. #~ msgstr "Instalado"
  5404. #~ msgctxt "@label"
  5405. #~ msgid "Premium"
  5406. #~ msgstr "Premium"
  5407. #~ msgctxt "@info:tooltip"
  5408. #~ msgid "Go to Web Marketplace"
  5409. #~ msgstr "Ir ao Mercado Web"
  5410. #~ msgctxt "@label"
  5411. #~ msgid "Search materials"
  5412. #~ msgstr "Buscar materiais"
  5413. #~ msgctxt "@label"
  5414. #~ msgid "Compatibility"
  5415. #~ msgstr "Compatibilidade"
  5416. #~ msgctxt "@label:table_header"
  5417. #~ msgid "Machine"
  5418. #~ msgstr "Máquina"
  5419. #~ msgctxt "@label:table_header"
  5420. #~ msgid "Build Plate"
  5421. #~ msgstr "Plataforma de Impressão"
  5422. #~ msgctxt "@label:table_header"
  5423. #~ msgid "Support"
  5424. #~ msgstr "Suporte"
  5425. #~ msgctxt "@label:table_header"
  5426. #~ msgid "Quality"
  5427. #~ msgstr "Qualidade"
  5428. #~ msgctxt "@action:label"
  5429. #~ msgid "Technical Data Sheet"
  5430. #~ msgstr "Documento de Dados Técnicos"
  5431. #~ msgctxt "@action:label"
  5432. #~ msgid "Safety Data Sheet"
  5433. #~ msgstr "Documento de Dados de Segurança"
  5434. #~ msgctxt "@action:label"
  5435. #~ msgid "Printing Guidelines"
  5436. #~ msgstr "Diretrizes de Impressão"
  5437. #~ msgctxt "@action:label"
  5438. #~ msgid "Website"
  5439. #~ msgstr "Sítio Web"
  5440. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5441. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5442. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para instalar ou atualizar"
  5443. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5444. #~ msgid "<a href='%1'>Buy material spools</a>"
  5445. #~ msgstr "<a href='%1'>Comprar rolos de material</a>"
  5446. #~ msgctxt "@action:button"
  5447. #~ msgid "Update"
  5448. #~ msgstr "Atualizar"
  5449. #~ msgctxt "@action:button"
  5450. #~ msgid "Updating"
  5451. #~ msgstr "Atualizando"
  5452. #~ msgctxt "@action:button"
  5453. #~ msgid "Updated"
  5454. #~ msgstr "Atualizado"
  5455. #~ msgctxt "@action:button"
  5456. #~ msgid "Back"
  5457. #~ msgstr "Voltar"
  5458. #~ msgctxt "@title:tab"
  5459. #~ msgid "Plugins"
  5460. #~ msgstr "Complementos"
  5461. #~ msgctxt "@title:tab"
  5462. #~ msgid "Installed"
  5463. #~ msgstr "Instalado"
  5464. #~ msgctxt "@label"
  5465. #~ msgid "Will install upon restarting"
  5466. #~ msgstr "Será instalado ao reiniciar"
  5467. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5468. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5469. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para atualizar"
  5470. #~ msgctxt "@action:button"
  5471. #~ msgid "Downgrade"
  5472. #~ msgstr "Downgrade"
  5473. #~ msgctxt "@action:button"
  5474. #~ msgid "Uninstall"
  5475. #~ msgstr "Desinstalar"
  5476. #~ msgctxt "@label"
  5477. #~ msgid "Community Contributions"
  5478. #~ msgstr "Contribuições da Comunidade"
  5479. #~ msgctxt "@label"
  5480. #~ msgid "Community Plugins"
  5481. #~ msgstr "Complementos da Comunidade"
  5482. #~ msgctxt "@label"
  5483. #~ msgid "Generic Materials"
  5484. #~ msgstr "Materiais Genéricos"
  5485. #~ msgctxt "@info"
  5486. #~ msgid "Fetching packages..."
  5487. #~ msgstr "Obtendo pacotes..."
  5488. #~ msgctxt "@label"
  5489. #~ msgid "Website"
  5490. #~ msgstr "Sítio Web"
  5491. #~ msgctxt "@label"
  5492. #~ msgid "Email"
  5493. #~ msgstr "Email"
  5494. #~ msgctxt "@description"
  5495. #~ msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  5496. #~ msgstr "Por favor se logue para adquirir complementos e materiais verificados para o UltiMaker Cura Enterprise"
  5497. #~ msgctxt "@label"
  5498. #~ msgid "Version"
  5499. #~ msgstr "Versão"
  5500. #~ msgctxt "@label"
  5501. #~ msgid "Last updated"
  5502. #~ msgstr "Última atualização"
  5503. #~ msgctxt "@label"
  5504. #~ msgid "Downloads"
  5505. #~ msgstr "Downloads"
  5506. #~ msgctxt "@title:tab"
  5507. #~ msgid "Installed plugins"
  5508. #~ msgstr "Complementos instalados"
  5509. #~ msgctxt "@info"
  5510. #~ msgid "No plugin has been installed."
  5511. #~ msgstr "Nenhum complemento foi instalado."
  5512. #~ msgctxt "@title:tab"
  5513. #~ msgid "Installed materials"
  5514. #~ msgstr "Materiais instalados"
  5515. #~ msgctxt "@info"
  5516. #~ msgid "No material has been installed."
  5517. #~ msgstr "Nenhum material foi instalado."
  5518. #~ msgctxt "@title:tab"
  5519. #~ msgid "Bundled plugins"
  5520. #~ msgstr "Complementos empacotados"
  5521. #~ msgctxt "@title:tab"
  5522. #~ msgid "Bundled materials"
  5523. #~ msgstr "Materiais empacotados"
  5524. #~ msgctxt "@info"
  5525. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5526. #~ msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão."
  5527. #~ msgctxt "@title:window"
  5528. #~ msgid "Confirm uninstall"
  5529. #~ msgstr "Confirme a desinstalação"
  5530. #~ msgctxt "@text:window"
  5531. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5532. #~ 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."
  5533. #~ msgctxt "@text:window"
  5534. #~ msgid "Materials"
  5535. #~ msgstr "Materiais"
  5536. #~ msgctxt "@text:window"
  5537. #~ msgid "Profiles"
  5538. #~ msgstr "Perfis"
  5539. #~ msgctxt "@action:button"
  5540. #~ msgid "Confirm"
  5541. #~ msgstr "Confirmar"
  5542. #~ msgctxt "@info:tooltip"
  5543. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5544. #~ msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção."
  5545. #~ msgctxt "@label"
  5546. #~ msgid "Support library for handling planar objects"
  5547. #~ msgstr "Biblioteca de suporte para manuseamento de objetos planares"
  5548. #~ msgctxt "@text:window, %1 is a profile name"
  5549. #~ msgid ""
  5550. #~ "You have customized some profile settings.\n"
  5551. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5552. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5553. #~ msgstr ""
  5554. #~ "Você personalizou alguns ajustes de perfil.\n"
  5555. #~ "Gostaria de manter estes ajustes alterados após mudar de perfis?\n"
  5556. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5557. #~ msgctxt "@action:inmenu menubar:view"
  5558. #~ msgid "&Build plate"
  5559. #~ msgstr "Plataforma de Impressão (&B)"
  5560. #~ msgctxt "@label"
  5561. #~ msgid "Create"
  5562. #~ msgstr "Criar"
  5563. #~ msgctxt "@label"
  5564. #~ msgid "Duplicate"
  5565. #~ msgstr "Duplicar"
  5566. #~ msgctxt "@label %1 is printer name"
  5567. #~ msgid "Printer: %1"
  5568. #~ msgstr "Impressora: %1"
  5569. #~ msgctxt "@action:button"
  5570. #~ msgid "Update profile with current settings/overrides"
  5571. #~ msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  5572. #~ msgctxt "@label"
  5573. #~ msgid "Theme:"
  5574. #~ msgstr "Tema:"
  5575. #~ msgctxt "@label"
  5576. #~ msgid "You will need to restart the application for these changes to have effect."
  5577. #~ msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito."
  5578. #~ msgctxt "@action:button"
  5579. #~ msgid "More information"
  5580. #~ msgstr "Mais informações"
  5581. #~ msgctxt "@action:button"
  5582. #~ msgid "Create"
  5583. #~ msgstr "Criar"
  5584. #~ msgctxt "@action:button Sending materials to printers"
  5585. #~ msgid "Sync with Printers"
  5586. #~ msgstr "Sincronizar com Impressoras"
  5587. #~ msgctxt "@action:label"
  5588. #~ msgid "Printer"
  5589. #~ msgstr "Impressora"
  5590. #~ msgctxt "@title:column"
  5591. #~ msgid "Unit"
  5592. #~ msgstr "Unidade"
  5593. #~ msgctxt "@action:inmenu"
  5594. #~ msgid "Show Online Troubleshooting Guide"
  5595. #~ msgstr "Mostra Guia de Resolução de Problemas Online"
  5596. #~ msgctxt "@action:inmenu"
  5597. #~ msgid "Add more materials from Marketplace"
  5598. #~ msgstr "Adicionar mais materiais do Mercado"
  5599. #~ msgctxt "@action:inmenu menubar:edit"
  5600. #~ msgid "Arrange All Models To All Build Plates"
  5601. #~ msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão"
  5602. #~ msgctxt "@action:menu"
  5603. #~ msgid "&Marketplace"
  5604. #~ msgstr "&Mercado"
  5605. #~ msgctxt "description"
  5606. #~ msgid "Find, manage and install new Cura packages."
  5607. #~ msgstr "Buscar, gerenciar e instalar novos pacotes do Cura."
  5608. #~ msgctxt "name"
  5609. #~ msgid "Toolbox"
  5610. #~ msgstr "Ferramentas"
  5611. #~ msgctxt "description"
  5612. #~ msgid "Provides the Simulation view."
  5613. #~ msgstr "Provê a Visão Simulada."
  5614. #~ msgctxt "@info:status"
  5615. #~ msgid "Send and monitor print jobs from anywhere using your UltiMaker account."
  5616. #~ msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta UltiMaker."
  5617. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5618. #~ msgid "Connect to Ultimaker Digital Factory"
  5619. #~ msgstr "Conectar à Ultimaker Digital Factory"
  5620. #~ msgctxt "@info"
  5621. #~ msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura."
  5622. #~ msgstr "Feeds de webcam para impressoras de nuvem não podem ser vistos pelo UltiMaker Cura."
  5623. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5624. #~ 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}."
  5625. #~ 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}."
  5626. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5627. #~ msgid "New %s firmware available"
  5628. #~ msgstr "Novo firmware de %s disponível"
  5629. #~ msgctxt "@info:status"
  5630. #~ msgid "Global stack is missing."
  5631. #~ msgstr "A pilha global não foi encontrada."
  5632. #~ msgctxt "@info:status"
  5633. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5634. #~ msgstr "Seu modelo não é manifold. As áreas ressaltadas indicam superfícies faltantes ou incorretas."
  5635. #~ msgctxt "@info:title"
  5636. #~ msgid "Model errors"
  5637. #~ msgstr "Erros de modelo"
  5638. #~ msgctxt "@label:listbox"
  5639. #~ msgid "Layer thickness"
  5640. #~ msgstr "Largura de camada"
  5641. #~ msgctxt "@label"
  5642. #~ msgid "Your key to connected 3D printing"
  5643. #~ msgstr "Sua chave para impressão 3D conectada"
  5644. #~ msgctxt "@text"
  5645. #~ msgid ""
  5646. #~ "- Customize your experience with more print profiles and plugins\n"
  5647. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5648. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5649. #~ msgstr ""
  5650. #~ "- Personalize sua experiência com mais perfis de impressão e complementos\n"
  5651. #~ "- Mantenha-se flexível ao sincronizar sua configuração e a acessar em qualquer lugar\n"
  5652. #~ "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  5653. #~ msgctxt "@button"
  5654. #~ msgid "Create account"
  5655. #~ msgstr "Criar conta"
  5656. #~ msgctxt "@action:inmenu menubar:edit"
  5657. #~ msgid "Delete Selected Model"
  5658. #~ msgid_plural "Delete Selected Models"
  5659. #~ msgstr[0] "Remover Modelo Selecionado"
  5660. #~ msgstr[1] "Remover Modelos Selecionados"
  5661. #~ msgctxt "@action:inmenu menubar:edit"
  5662. #~ msgid "Center Selected Model"
  5663. #~ msgid_plural "Center Selected Models"
  5664. #~ msgstr[0] "Centralizar Modelo Selecionado"
  5665. #~ msgstr[1] "Centralizar Modelos Selecionados"
  5666. #~ msgctxt "@action:inmenu menubar:edit"
  5667. #~ msgid "Multiply Selected Model"
  5668. #~ msgid_plural "Multiply Selected Models"
  5669. #~ msgstr[0] "Multiplicar Modelo Selecionado"
  5670. #~ msgstr[1] "Multiplicar Modelos Selecionados"
  5671. #~ msgctxt "@button"
  5672. #~ msgid "Finish"
  5673. #~ msgstr "Finalizar"
  5674. #~ msgctxt "@label"
  5675. #~ msgid "UltiMaker Account"
  5676. #~ msgstr "Conta da UltiMaker"
  5677. #~ msgctxt "@text"
  5678. #~ msgid "Your key to connected 3D printing"
  5679. #~ msgstr "Sua chave para a impressão 3D conectada"
  5680. #~ msgctxt "@text"
  5681. #~ msgid "- Customize your experience with more print profiles and plugins"
  5682. #~ msgstr "- Personalize sua experiência com mais perfis de impressão e complementos"
  5683. #~ msgctxt "@text"
  5684. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5685. #~ msgstr "- Flexibilize-se ao sincronizar sua configuração e a acessar de qualquer lugar"
  5686. #~ msgctxt "@text"
  5687. #~ msgid "- Increase efficiency with a remote workflow on UltiMaker printers"
  5688. #~ msgstr "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras UltiMaker"
  5689. #~ msgctxt "@text"
  5690. #~ msgid ""
  5691. #~ "Please follow these steps to set up\n"
  5692. #~ "Ultimaker Cura. This will only take a few moments."
  5693. #~ msgstr ""
  5694. #~ "Por favor siga estes passos para configurar\n"
  5695. #~ "o Ultimaker Cura. Isto tomará apenas alguns momentos."
  5696. #~ msgctxt "@label"
  5697. #~ msgid "What's new in UltiMaker Cura"
  5698. #~ msgstr "O que há de novo no UltiMaker Cura"
  5699. #~ msgctxt "@label ({} is object name)"
  5700. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5701. #~ msgstr "Tem certeza que deseja remover {}? Isto não pode ser desfeito!"
  5702. #~ msgctxt "@info:status"
  5703. #~ msgid "The selected model was too small to load."
  5704. #~ msgstr "O modelo selecionado é pequenos demais para carregar."
  5705. #~ msgctxt "@info:status"
  5706. #~ msgid "Successfully imported profile {0}"
  5707. #~ msgstr "Perfil {0} importado com sucesso"
  5708. #~ msgctxt "@info:status"
  5709. #~ msgid "Could not find a quality type {0} for the current configuration."
  5710. #~ msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual."
  5711. #~ msgctxt "info:status"
  5712. #~ msgid "Adding printer {} ({}) from your account"
  5713. #~ msgstr "Adicionando impressora {} ({}) da sua conta"
  5714. #~ msgctxt "info:hidden list items"
  5715. #~ msgid "<li>... and {} others</li>"
  5716. #~ msgstr "<li>... e {} outras</li>"
  5717. #~ msgctxt "info:status"
  5718. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5719. #~ msgstr "Impressoras adicionadas da Digital Factory:<ul>{}</ul>"
  5720. #~ msgctxt "info:status"
  5721. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5722. #~ msgstr "<ul>{}</ul>Para estabelecer uma conexão, por favor visite a <a href='https://mycloud.UltiMaker.com/'>Ultimaker Digital Factory</a>."
  5723. #~ msgctxt "@label ({} is printer name)"
  5724. #~ 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?"
  5725. #~ 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?"
  5726. #~ msgctxt "@label"
  5727. #~ msgid ""
  5728. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5729. #~ "Are you sure you want to continue?"
  5730. #~ msgstr ""
  5731. #~ "Você está para remover {} impressora(s) do Cura. Esta ação não pode ser desfeita. \n"
  5732. #~ "Tem certeza que quer continuar?"
  5733. #~ msgctxt "@label"
  5734. #~ msgid ""
  5735. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5736. #~ "Are you sure you want to continue?"
  5737. #~ msgstr ""
  5738. #~ "Você está para remover todas as impressoras do Cura. Esta ação não pode ser defeita. \n"
  5739. #~ "Tem certeza que quer continuar?"
  5740. #~ msgctxt "@action:ComboBox option"
  5741. #~ msgid "Update"
  5742. #~ msgstr "Atualizar"
  5743. #~ msgctxt "@action:ComboBox option"
  5744. #~ msgid "Create new"
  5745. #~ msgstr "Criar novo"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Shared Heater"
  5748. #~ msgstr "Aquecedor Compartilhado"
  5749. #~ msgctxt "@info"
  5750. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5751. #~ msgstr "A webcam não está disponível porque você está monitorando uma impressora de nuvem."
  5752. #~ msgctxt "@button"
  5753. #~ msgid "Ultimaker Digital Factory"
  5754. #~ msgstr "Ultimaker Digital Factory"
  5755. #~ msgctxt "@text:window, %1 is a profile name"
  5756. #~ msgid ""
  5757. #~ "You have customized some profile settings.\n"
  5758. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5759. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5760. #~ msgstr ""
  5761. #~ "Você personalizou alguns ajustes de perfil.\n"
  5762. #~ "Você gostaria de manter esses ajustes alterados depois de trocar os perfis?\n"
  5763. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5764. #~ msgctxt "@label"
  5765. #~ msgid "Overrides %1 setting."
  5766. #~ msgid_plural "Overrides %1 settings."
  5767. #~ msgstr[0] "Substitui %1 ajuste."
  5768. #~ msgstr[1] "Substitui %1 ajustes."
  5769. #~ msgctxt "@text"
  5770. #~ msgid "Please give your printer a name"
  5771. #~ msgstr "Por favor dê um nome à sua impressora"
  5772. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5773. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5774. #~ msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora."
  5775. #~ msgctxt "@action:button"
  5776. #~ msgid "Print via Cloud"
  5777. #~ msgstr "Imprimir por Nuvem"
  5778. #~ msgctxt "@properties:tooltip"
  5779. #~ msgid "Print via Cloud"
  5780. #~ msgstr "Imprimir por Nuvem"
  5781. #~ msgctxt "@info:status"
  5782. #~ msgid "Connected via Cloud"
  5783. #~ msgstr "Conectado por Nuvem"
  5784. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5785. #~ msgid "Connect to UltiMaker Cloud"
  5786. #~ msgstr "Conectar à Nuvem UltiMaker"
  5787. #~ msgctxt "@label"
  5788. #~ msgid "You need to login first before you can rate"
  5789. #~ msgstr "Você precisa entrar em sua conta para dar notas"
  5790. #~ msgctxt "@label"
  5791. #~ msgid "You need to install the package before you can rate"
  5792. #~ msgstr "Você precisa instalar o pacote para dar notas"
  5793. #~ msgctxt "@label"
  5794. #~ msgid "ratings"
  5795. #~ msgstr "notas"
  5796. #~ msgctxt "@label"
  5797. #~ msgid "Featured"
  5798. #~ msgstr "Em destaque"
  5799. #~ msgctxt "@label"
  5800. #~ msgid "Your rating"
  5801. #~ msgstr "Sua nota"
  5802. #~ msgctxt "@label"
  5803. #~ msgid "Author"
  5804. #~ msgstr "Autor"
  5805. #~ msgctxt "@description"
  5806. #~ msgid "Get plugins and materials verified by UltiMaker"
  5807. #~ msgstr "Obter complementos e materiais verificados pela UltiMaker"
  5808. #~ msgctxt "@label The argument is a username."
  5809. #~ msgid "Hi %1"
  5810. #~ msgstr "Oi, %1"
  5811. #~ msgctxt "@button"
  5812. #~ msgid "UltiMaker account"
  5813. #~ msgstr "Conta da UltiMaker"
  5814. #~ msgctxt "@button"
  5815. #~ msgid "Sign out"
  5816. #~ msgstr "Sair da conta"
  5817. #~ msgctxt "@label"
  5818. #~ msgid "Support library for analysis of complex networks"
  5819. #~ msgstr "Biblioteca de suporte para análises de redes complexas"
  5820. #~ msgctxt "@Label"
  5821. #~ msgid "Python HTTP library"
  5822. #~ msgstr "Biblioteca de HTTP Python"
  5823. #~ msgctxt "@text:window"
  5824. #~ msgid ""
  5825. #~ "You have customized some profile settings.\n"
  5826. #~ "Would you like to keep or discard those settings?"
  5827. #~ msgstr ""
  5828. #~ "Você personalizou alguns ajustes de perfil.\n"
  5829. #~ "Gostaria de manter ou descartar estes ajustes?"
  5830. #~ msgctxt "@title:column"
  5831. #~ msgid "Default"
  5832. #~ msgstr "Default"
  5833. #~ msgctxt "@title:column"
  5834. #~ msgid "Customized"
  5835. #~ msgstr "Personalizado"
  5836. #~ msgctxt "@action:button"
  5837. #~ msgid "Discard"
  5838. #~ msgstr "Descartar"
  5839. #~ msgctxt "@action:button"
  5840. #~ msgid "Keep"
  5841. #~ msgstr "Manter"
  5842. #~ msgctxt "@action:button"
  5843. #~ msgid "Create New Profile"
  5844. #~ msgstr "Criar Novo Perfil"
  5845. #~ msgctxt "@title:menu menubar:file"
  5846. #~ msgid "&Save..."
  5847. #~ msgstr "&Salvar..."
  5848. #~ msgctxt "@text"
  5849. #~ msgid "Place enter your printer's IP address."
  5850. #~ msgstr "Por favor entre o endereço IP da sua impressora."
  5851. #~ msgctxt "@button"
  5852. #~ msgid "Create an account"
  5853. #~ msgstr "Criar uma conta"
  5854. #~ msgctxt "@info:generic"
  5855. #~ msgid ""
  5856. #~ "\n"
  5857. #~ "Do you want to sync material and software packages with your account?"
  5858. #~ msgstr ""
  5859. #~ "\n"
  5860. #~ "Você quer sincronizar os pacotes de material e software com sua conta?"
  5861. #~ msgctxt "@info:generic"
  5862. #~ msgid ""
  5863. #~ "\n"
  5864. #~ "Syncing..."
  5865. #~ msgstr ""
  5866. #~ "\n"
  5867. #~ "Sincronizando..."
  5868. #~ msgctxt "@info:status"
  5869. #~ 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."
  5870. #~ 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."
  5871. #~ msgctxt "@info:backup_status"
  5872. #~ msgid "There was an error listing your backups."
  5873. #~ msgstr "Houve um erro ao listar seus backups."
  5874. #~ msgctxt "@title:groupbox"
  5875. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5876. #~ msgstr "Descrição do usuário (Nota: Os desenvolvedores podem não falar sua língua, por favor use inglês se possível)"
  5877. #~ msgctxt "@title:window"
  5878. #~ msgid "Closing Cura"
  5879. #~ msgstr "Fechando o Cura"
  5880. #~ msgctxt "@label"
  5881. #~ msgid "Are you sure you want to exit Cura?"
  5882. #~ msgstr "Você tem certeza que deseja sair do Cura?"
  5883. #~ msgctxt "@label"
  5884. #~ msgid "Language:"
  5885. #~ msgstr "Idioma:"
  5886. #~ msgctxt "@label"
  5887. #~ msgid "UltiMaker Cloud"
  5888. #~ msgstr "UltiMaker Cloud"
  5889. #~ msgctxt "@text"
  5890. #~ msgid "The next generation 3D printing workflow"
  5891. #~ msgstr "O fluxo de trabalho da nova geração de impressão 3D"
  5892. #~ msgctxt "@text"
  5893. #~ msgid "- Send print jobs to UltiMaker printers outside your local network"
  5894. #~ msgstr "- Enviar trabalhos de impressão a impressoras UltiMaker fora da sua rede local"
  5895. #~ msgctxt "@text"
  5896. #~ msgid "- Store your UltiMaker Cura settings in the cloud for use anywhere"
  5897. #~ msgstr "- Armazenar seus ajustes do UltiMaker Cura na nuvem para uso em qualquer local"
  5898. #~ msgctxt "@text"
  5899. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5900. #~ msgstr "- Conseguir acesso exclusivo a perfis de impressão das melhores marcas"
  5901. #~ msgctxt "@label"
  5902. #~ msgid "The value is resolved from per-extruder values "
  5903. #~ msgstr "O valor é resolvido de valores específicos de cada extrusor "
  5904. #~ msgctxt "@label"
  5905. #~ msgid "The next generation 3D printing workflow"
  5906. #~ msgstr "O fluxo de trabalho da próxima geração de impressão 3D"
  5907. #~ msgctxt "@text"
  5908. #~ msgid ""
  5909. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5910. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5911. #~ "- Get exclusive access to print profiles from leading brands"
  5912. #~ msgstr ""
  5913. #~ "- Envia trabalho de impressão às impressoras Ultimaker fora da sua rede local\n"
  5914. #~ "- Armazena seus ajustes do Ultimaker Cura na nuvem para uso de qualquer lugar\n"
  5915. #~ "- Consegue acesso exclusivo a perfis de impressão das melhores marcas"
  5916. #~ msgctxt "@title:window"
  5917. #~ msgid "About "
  5918. #~ msgstr "Sobre "
  5919. #~ msgctxt "@info:button"
  5920. #~ msgid "Quit Cura"
  5921. #~ msgstr "Sair do Cura"
  5922. #~ msgctxt "@action:checkbox"
  5923. #~ msgid "Infill only"
  5924. #~ msgstr "Preenchimento apenas"
  5925. #~ msgctxt "@info:tooltip"
  5926. #~ msgid "Change active post-processing scripts"
  5927. #~ msgstr "Troca os scripts de pós-processamento ativos"
  5928. #~ msgctxt "@label:listbox"
  5929. #~ msgid "Feedrate"
  5930. #~ msgstr "Taxa de alimentação"
  5931. #~ msgctxt "name"
  5932. #~ msgid "Machine Settings action"
  5933. #~ msgstr "Ação de Configurações de Máquina"
  5934. #~ msgctxt "@info:title"
  5935. #~ msgid "New cloud printers found"
  5936. #~ msgstr "Novas impressoras de nuvem encontradas"
  5937. #~ msgctxt "@info:message"
  5938. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5939. #~ msgstr "Novas impressoras foram encontradas conectadas à sua conta; você as pode ver na sua lista de impressoras descobertas."
  5940. #~ msgctxt "@info:status"
  5941. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5942. #~ msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada"
  5943. #~ msgctxt "@label"
  5944. #~ msgid "Pre-sliced file {0}"
  5945. #~ msgstr "Arquivo pré-fatiado {0}"
  5946. #~ msgctxt "@label"
  5947. #~ msgid ""
  5948. #~ "This plugin contains a license.\n"
  5949. #~ "You need to accept this license to install this plugin.\n"
  5950. #~ "Do you agree with the terms below?"
  5951. #~ msgstr ""
  5952. #~ "Este plugin contém uma licença.\n"
  5953. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  5954. #~ "Você concorda com os termos abaixo?"
  5955. #~ msgctxt "@action:button"
  5956. #~ msgid "Accept"
  5957. #~ msgstr "Aceitar"
  5958. #~ msgctxt "@action:button"
  5959. #~ msgid "Decline"
  5960. #~ msgstr "Recusar"
  5961. #~ msgctxt "@action:inmenu"
  5962. #~ msgid "Show All Settings"
  5963. #~ msgstr "Mostrar Todos Os Ajustes"
  5964. #~ msgctxt "@title:window"
  5965. #~ msgid "UltiMaker Cura"
  5966. #~ msgstr "UltiMaker Cura"
  5967. #~ msgctxt "@title:window"
  5968. #~ msgid "About Cura"
  5969. #~ msgstr "Sobre o Cura"
  5970. #~ msgctxt "@item:inmenu"
  5971. #~ msgid "Flatten active settings"
  5972. #~ msgstr "Achatar os ajustes ativos"
  5973. #~ msgctxt "@info:status"
  5974. #~ msgid "Profile has been flattened & activated."
  5975. #~ msgstr "O perfil foi achatado & ativado."
  5976. #~ msgctxt "X3g Writer Plugin Description"
  5977. #~ msgid "Writes X3g to files"
  5978. #~ msgstr "Grava em formato X3g"
  5979. #~ msgctxt "X3g Writer File Description"
  5980. #~ msgid "X3g File"
  5981. #~ msgstr "Arquivo X3g"
  5982. #~ msgctxt "X3G Writer File Description"
  5983. #~ msgid "X3G File"
  5984. #~ msgstr "Arquivo X3G"
  5985. #~ msgctxt "@item:inlistbox"
  5986. #~ msgid "Open Compressed Triangle Mesh"
  5987. #~ msgstr "Malha Comprimida de Triângulos Aberta"
  5988. #~ msgctxt "@item:inmenu"
  5989. #~ msgid "Profile Assistant"
  5990. #~ msgstr "Assistente de Perfil"
  5991. #~ msgctxt "@item:inlistbox"
  5992. #~ msgid "Profile Assistant"
  5993. #~ msgstr "Assistente de Perfil"
  5994. #~ msgctxt "@action:button"
  5995. #~ msgid "Retry"
  5996. #~ msgstr "Tentar novamente"
  5997. #~ msgctxt "@label:table_header"
  5998. #~ msgid "Print Core"
  5999. #~ msgstr "Núcleo de Impressão"
  6000. #~ msgctxt "@label"
  6001. #~ msgid "Don't support overlap with other models"
  6002. #~ msgstr "Não suportar sobreposição com outros modelos"
  6003. #~ msgctxt "@label"
  6004. #~ msgid "Modify settings for overlap with other models"
  6005. #~ msgstr "Modificar ajustes para sobrepor com outros modelos"
  6006. #~ msgctxt "@label"
  6007. #~ msgid "Modify settings for infill of other models"
  6008. #~ msgstr "Modificar ajustes para preenchimento de outros modelos"
  6009. #~ msgctxt "@action:ComboBox option"
  6010. #~ msgid "Update existing"
  6011. #~ msgstr "Atualizar existente"
  6012. #~ msgctxt "@label"
  6013. #~ msgid "Not supported"
  6014. #~ msgstr "Não suportado"
  6015. #~ msgctxt "@action:button"
  6016. #~ msgid "Previous"
  6017. #~ msgstr "Anterior"
  6018. #~ msgctxt "@label"
  6019. #~ msgid "Tip"
  6020. #~ msgstr "Dica"
  6021. #~ msgctxt "@label"
  6022. #~ msgid "Print experiment"
  6023. #~ msgstr "Imprimir experimento"
  6024. #~ msgctxt "@label"
  6025. #~ msgid "Checklist"
  6026. #~ msgstr "Lista de verificação"
  6027. #~ msgctxt "@label"
  6028. #~ msgid "Please select any upgrades made to this UltiMaker 2."
  6029. #~ msgstr "Por favor selecione quaisquer atualizações feitas nesta UltiMaker 2."
  6030. #~ msgctxt "@label"
  6031. #~ msgid "Olsson Block"
  6032. #~ msgstr "Bloco Olsson"
  6033. #~ msgctxt "@window:text"
  6034. #~ msgid "Camera rendering: "
  6035. #~ msgstr "Renderização de câmera:"
  6036. #~ msgctxt "@info:tooltip"
  6037. #~ msgid "Use multi build plate functionality"
  6038. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão"
  6039. #~ msgctxt "@option:check"
  6040. #~ msgid "Use multi build plate functionality (restart required)"
  6041. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)"
  6042. #~ msgctxt "@label"
  6043. #~ msgid "Default profiles"
  6044. #~ msgstr "Perfis default"
  6045. #~ msgctxt "@label:textbox"
  6046. #~ msgid "search settings"
  6047. #~ msgstr "procurar nos ajustes"
  6048. #~ msgctxt "@label"
  6049. #~ msgid "Layer Height"
  6050. #~ msgstr "Altura de Camada"
  6051. #~ msgctxt "@tooltip"
  6052. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6053. #~ 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."
  6054. #~ msgctxt "@tooltip"
  6055. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6056. #~ msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado"
  6057. #~ msgctxt "@title:menu"
  6058. #~ msgid "&Build plate"
  6059. #~ msgstr "Plataforma de Impressão (&B)"
  6060. #~ msgctxt "@title:settings"
  6061. #~ msgid "&Profile"
  6062. #~ msgstr "&Perfil"
  6063. #~ msgctxt "@action:label"
  6064. #~ msgid "Build plate"
  6065. #~ msgstr "Plataforma de Impressão"
  6066. #~ msgctxt "description"
  6067. #~ msgid "Dump the contents of all settings to a HTML file."
  6068. #~ msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML."
  6069. #~ msgctxt "name"
  6070. #~ msgid "God Mode"
  6071. #~ msgstr "Modo Deus"
  6072. #~ msgctxt "description"
  6073. #~ msgid "Create a flattened quality changes profile."
  6074. #~ msgstr "Cria um perfil de mudanças de qualidade achatado."
  6075. #~ msgctxt "name"
  6076. #~ msgid "Profile Flattener"
  6077. #~ msgstr "Achatador de Perfil"
  6078. #~ msgctxt "description"
  6079. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6080. #~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in."
  6081. #~ msgctxt "name"
  6082. #~ msgid "Print Profile Assistant"
  6083. #~ msgstr "Assistente de Perfil de Impressão"
  6084. #~ msgctxt "@info:status"
  6085. #~ msgid "Connected over the network."
  6086. #~ msgstr "Conectado pela rede."
  6087. #~ msgctxt "@info:status"
  6088. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6089. #~ msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora."
  6090. #~ msgctxt "@info:status"
  6091. #~ msgid "Connected over the network. No access to control the printer."
  6092. #~ msgstr "Conectado pela rede. Sem acesso para controlar a impressora."
  6093. #~ msgctxt "@info:status"
  6094. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6095. #~ msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora"
  6096. #~ msgctxt "@info:title"
  6097. #~ msgid "Authentication status"
  6098. #~ msgstr "Status da autenticação"
  6099. #~ msgctxt "@info:title"
  6100. #~ msgid "Authentication Status"
  6101. #~ msgstr "Status da Autenticação"
  6102. #~ msgctxt "@info:tooltip"
  6103. #~ msgid "Re-send the access request"
  6104. #~ msgstr "Reenvia o pedido de acesso"
  6105. #~ msgctxt "@info:status"
  6106. #~ msgid "Access to the printer accepted"
  6107. #~ msgstr "Acesso à impressora confirmado"
  6108. #~ msgctxt "@info:status"
  6109. #~ msgid "No access to print with this printer. Unable to send print job."
  6110. #~ msgstr "Sem acesso para imprimir por esta impressora. Não foi possível enviar o trabalho de impressão."
  6111. #~ msgctxt "@action:button"
  6112. #~ msgid "Request Access"
  6113. #~ msgstr "Solicitar acesso"
  6114. #~ msgctxt "@info:tooltip"
  6115. #~ msgid "Send access request to the printer"
  6116. #~ msgstr "Envia pedido de acesso à impressora"
  6117. #~ msgctxt "@label"
  6118. #~ msgid "Unable to start a new print job."
  6119. #~ msgstr "Não foi possível iniciar novo trabalho de impressão."
  6120. #~ msgctxt "@label"
  6121. #~ 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."
  6122. #~ 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."
  6123. #~ msgctxt "@window:title"
  6124. #~ msgid "Mismatched configuration"
  6125. #~ msgstr "Configuração conflitante"
  6126. #~ msgctxt "@label"
  6127. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6128. #~ msgstr "Tem certeza que quer imprimir com a configuração selecionada?"
  6129. #~ msgctxt "@label"
  6130. #~ 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."
  6131. #~ 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."
  6132. #~ msgctxt "@info:status"
  6133. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6134. #~ msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior."
  6135. #~ msgctxt "@info:status"
  6136. #~ msgid "Sending data to printer"
  6137. #~ msgstr "Enviando dados à impressora"
  6138. #~ msgctxt "@info:title"
  6139. #~ msgid "Sending Data"
  6140. #~ msgstr "Enviando Dados"
  6141. #~ msgctxt "@info:status"
  6142. #~ msgid "No Printcore loaded in slot {slot_number}"
  6143. #~ msgstr "Printcore não carregado no slot {slot_number}"
  6144. #~ msgctxt "@info:status"
  6145. #~ msgid "No material loaded in slot {slot_number}"
  6146. #~ msgstr "Nenhum material carregado no slot {slot_number}"
  6147. #~ msgctxt "@label"
  6148. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6149. #~ msgstr "PrintCore Diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  6150. #~ msgctxt "@label"
  6151. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6152. #~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  6153. #~ msgctxt "@window:title"
  6154. #~ msgid "Sync with your printer"
  6155. #~ msgstr "Sincronizar com a impressora"
  6156. #~ msgctxt "@label"
  6157. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6158. #~ msgstr "Deseja usar a configuração atual de sua impressora no Cura?"
  6159. #~ msgctxt "@label"
  6160. #~ 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."
  6161. #~ 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."
  6162. #~ msgctxt "@action:button"
  6163. #~ msgid "View in Monitor"
  6164. #~ msgstr "Ver no Monitor"
  6165. #~ msgctxt "@info:status"
  6166. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6167. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'."
  6168. #~ msgctxt "@info:status"
  6169. #~ msgid "The print job '{job_name}' was finished."
  6170. #~ msgstr "O trabalho de impressão '{job_name}' terminou."
  6171. #~ msgctxt "@info:status"
  6172. #~ msgid "Print finished"
  6173. #~ msgstr "Impressão Concluída"
  6174. #~ msgctxt "@label:material"
  6175. #~ msgid "Empty"
  6176. #~ msgstr "Vazio"
  6177. #~ msgctxt "@label:material"
  6178. #~ msgid "Unknown"
  6179. #~ msgstr "Desconhecido"
  6180. #~ msgctxt "@info:title"
  6181. #~ msgid "Cloud error"
  6182. #~ msgstr "Erro de nuvem"
  6183. #~ msgctxt "@info:status"
  6184. #~ msgid "Could not export print job."
  6185. #~ msgstr "Não foi possível exportar o trabalho de impressão."
  6186. #~ msgctxt "@info:description"
  6187. #~ msgid "There was an error connecting to the cloud."
  6188. #~ msgstr "Houve um erro ao conectar à nuvem."
  6189. #~ msgctxt "@info:status"
  6190. #~ msgid "Uploading via UltiMaker Cloud"
  6191. #~ msgstr "Transferindo via UltiMaker Cloud"
  6192. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6193. #~ msgid "Connect to UltiMaker Cloud"
  6194. #~ msgstr "Conectar à UltiMaker Cloud"
  6195. #~ msgctxt "@action"
  6196. #~ msgid "Don't ask me again for this printer."
  6197. #~ msgstr "Não me pergunte novamente para esta impressora."
  6198. #~ msgctxt "@info:status"
  6199. #~ msgid "You can now send and monitor print jobs from anywhere using your UltiMaker account."
  6200. #~ msgstr "Você agora pode enviar e monitorar trabalhoas de impressão de qualquer lugar usando sua conta UltiMaker."
  6201. #~ msgctxt "@info:status"
  6202. #~ msgid "Connected!"
  6203. #~ msgstr "Conectado!"
  6204. #~ msgctxt "@action"
  6205. #~ msgid "Review your connection"
  6206. #~ msgstr "Rever sua conexão"
  6207. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6208. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6209. #~ 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."
  6210. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6211. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6212. #~ msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  6213. #~ msgctxt "@window:title"
  6214. #~ msgid "Existing Connection"
  6215. #~ msgstr "Conexão Existente"
  6216. #~ msgctxt "@message:text"
  6217. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6218. #~ msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo."
  6219. #~ msgctxt "@label"
  6220. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6221. #~ msgstr "Entre o endereço IP ou nome de sua impressora na rede."
  6222. #~ msgctxt "@info:tooltip"
  6223. #~ msgid "Connect to a printer"
  6224. #~ msgstr "Conecta a uma impressora"
  6225. #~ msgctxt "@title"
  6226. #~ msgid "Cura Settings Guide"
  6227. #~ msgstr "Guia de Ajustes do Cura"
  6228. #~ msgctxt "@info:tooltip"
  6229. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6230. #~ msgstr "Ampliar na direção do mouse não é suportado na perspectiva ortogonal."
  6231. #~ msgid "Orthogonal"
  6232. #~ msgstr "Ortogonal"
  6233. #~ msgctxt "description"
  6234. #~ msgid "Manages network connections to UltiMaker 3 printers."
  6235. #~ msgstr "Gerencia conexões de rede a impressoras UltiMaker 3."
  6236. #~ msgctxt "name"
  6237. #~ msgid "UM3 Network Connection"
  6238. #~ msgstr "Conexão de Rede UM3"
  6239. #~ msgctxt "description"
  6240. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6241. #~ msgstr "Provê informação extra e explicações sobre ajustes do Cura com imagens e animações."
  6242. #~ msgctxt "name"
  6243. #~ msgid "Settings Guide"
  6244. #~ msgstr "Guia de Ajustes"
  6245. #~ msgctxt "@item:inmenu"
  6246. #~ msgid "Cura Settings Guide"
  6247. #~ msgstr "Guia de Ajustes do Cura"
  6248. #~ msgctxt "@info:generic"
  6249. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6250. #~ msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]"
  6251. #~ msgctxt "@title:groupbox"
  6252. #~ msgid "User description"
  6253. #~ msgstr "Descrição do usuário"
  6254. #~ msgctxt "@info"
  6255. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6256. #~ msgstr "Estas opçÕes não estão disponíveis porque você está monitorando uma impressora de nuvem."
  6257. #~ msgctxt "@label link to connect manager"
  6258. #~ msgid "Go to Cura Connect"
  6259. #~ msgstr "Ir ao Cura Connect"
  6260. #~ msgctxt "@info"
  6261. #~ msgid "All jobs are printed."
  6262. #~ msgstr "Todos os trabalhos foram impressos."
  6263. #~ msgctxt "@label link to connect manager"
  6264. #~ msgid "View print history"
  6265. #~ msgstr "Ver histórico de impressão"
  6266. #~ msgctxt "@label"
  6267. #~ msgid ""
  6268. #~ "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"
  6269. #~ "\n"
  6270. #~ "Select your printer from the list below:"
  6271. #~ msgstr ""
  6272. #~ "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-"
  6273. #~ "Code para sua impressora.\n"
  6274. #~ "\n"
  6275. #~ "Selecione sua impressora da lista abaixo:"
  6276. #~ msgctxt "@info"
  6277. #~ msgid ""
  6278. #~ "Please make sure your printer has a connection:\n"
  6279. #~ "- Check if the printer is turned on.\n"
  6280. #~ "- Check if the printer is connected to the network."
  6281. #~ msgstr ""
  6282. #~ "Por favor certifique-se que sua impressora está conectada:\n"
  6283. #~ "- Verifique se a impressora está ligada.\n"
  6284. #~ "- Verifique se a impressora está conectada à rede."
  6285. #~ msgctxt "@option:check"
  6286. #~ msgid "See only current build plate"
  6287. #~ msgstr "Ver somente a plataforma de impressão atual"
  6288. #~ msgctxt "@action:button"
  6289. #~ msgid "Arrange to all build plates"
  6290. #~ msgstr "Posicionar em todas as plataformas de impressão"
  6291. #~ msgctxt "@action:button"
  6292. #~ msgid "Arrange current build plate"
  6293. #~ msgstr "Reposicionar a plataforma de impressão atual"
  6294. #~ msgctxt "description"
  6295. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6296. #~ 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)."
  6297. #~ msgctxt "name"
  6298. #~ msgid "X3GWriter"
  6299. #~ msgstr "Gerador de X3G"
  6300. #~ msgctxt "description"
  6301. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6302. #~ msgstr "Lê arquivos SVG como caminhos do extrusor, para depurar movimentos da impressora."
  6303. #~ msgctxt "name"
  6304. #~ msgid "SVG Toolpath Reader"
  6305. #~ msgstr "Leitor de Toolpath SVG"
  6306. #~ msgctxt "@item:inmenu"
  6307. #~ msgid "Changelog"
  6308. #~ msgstr "Registro de Alterações"
  6309. #~ msgctxt "@item:inmenu"
  6310. #~ msgid "Show Changelog"
  6311. #~ msgstr "Exibir registro de alterações"
  6312. #~ msgctxt "@info:status"
  6313. #~ msgid "Sending data to remote cluster"
  6314. #~ msgstr "Enviando dados ao cluster remoto"
  6315. #~ msgctxt "@info:status"
  6316. #~ msgid "Connect to UltiMaker Cloud"
  6317. #~ msgstr "Conectar à UltiMaker Cloud"
  6318. #~ msgctxt "@info"
  6319. #~ msgid "Cura collects anonymized usage statistics."
  6320. #~ msgstr "O Cura coleta estatísticas anônimas de uso."
  6321. #~ msgctxt "@info:title"
  6322. #~ msgid "Collecting Data"
  6323. #~ msgstr "Coletando Dados"
  6324. #~ msgctxt "@action:button"
  6325. #~ msgid "More info"
  6326. #~ msgstr "Mais informações"
  6327. #~ msgctxt "@action:tooltip"
  6328. #~ msgid "See more information on what data Cura sends."
  6329. #~ msgstr "Ver mais informações sobre os dados enviados pelo Cura."
  6330. #~ msgctxt "@action:button"
  6331. #~ msgid "Allow"
  6332. #~ msgstr "Permitir"
  6333. #~ msgctxt "@action:tooltip"
  6334. #~ 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."
  6335. #~ 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."
  6336. #~ msgctxt "@item:inmenu"
  6337. #~ msgid "Evaluation"
  6338. #~ msgstr "Avaliação"
  6339. #~ msgctxt "@info:title"
  6340. #~ msgid "Network enabled printers"
  6341. #~ msgstr "Impressoras habilitadas em rede"
  6342. #~ msgctxt "@info:title"
  6343. #~ msgid "Local printers"
  6344. #~ msgstr "Impressoras locais"
  6345. #~ msgctxt "@info:backup_failed"
  6346. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6347. #~ msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual."
  6348. #~ msgctxt "@title"
  6349. #~ msgid "Machine Settings"
  6350. #~ msgstr "Ajustes da Máquina"
  6351. #~ msgctxt "@label"
  6352. #~ msgid "Printer Settings"
  6353. #~ msgstr "Ajustes da Impressora"
  6354. #~ msgctxt "@option:check"
  6355. #~ msgid "Origin at center"
  6356. #~ msgstr "Origem no centro"
  6357. #~ msgctxt "@option:check"
  6358. #~ msgid "Heated bed"
  6359. #~ msgstr "Mesa aquecida"
  6360. #~ msgctxt "@label"
  6361. #~ msgid "Printhead Settings"
  6362. #~ msgstr "Ajustes da Cabeça de Impressão"
  6363. #~ msgctxt "@tooltip"
  6364. #~ 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\"."
  6365. #~ 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\"."
  6366. #~ msgctxt "@tooltip"
  6367. #~ 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\"."
  6368. #~ 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\"."
  6369. #~ msgctxt "@tooltip"
  6370. #~ 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\"."
  6371. #~ 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\"."
  6372. #~ msgctxt "@tooltip"
  6373. #~ 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\"."
  6374. #~ 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\"."
  6375. #~ msgctxt "@label"
  6376. #~ msgid "Gantry height"
  6377. #~ msgstr "Altura do eixo"
  6378. #~ msgctxt "@tooltip"
  6379. #~ 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\"."
  6380. #~ 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\"."
  6381. #~ msgctxt "@label"
  6382. #~ msgid "Start G-code"
  6383. #~ msgstr "G-Code Inicial"
  6384. #~ msgctxt "@tooltip"
  6385. #~ msgid "G-code commands to be executed at the very start."
  6386. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  6387. #~ msgctxt "@label"
  6388. #~ msgid "End G-code"
  6389. #~ msgstr "G-Code Final"
  6390. #~ msgctxt "@tooltip"
  6391. #~ msgid "G-code commands to be executed at the very end."
  6392. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  6393. #~ msgctxt "@label"
  6394. #~ msgid "Nozzle Settings"
  6395. #~ msgstr "Ajustes do Bico"
  6396. #~ msgctxt "@tooltip"
  6397. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6398. #~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil."
  6399. #~ msgctxt "@label"
  6400. #~ msgid "Extruder Start G-code"
  6401. #~ msgstr "G-Code Inicial do Extrusor"
  6402. #~ msgctxt "@label"
  6403. #~ msgid "Extruder End G-code"
  6404. #~ msgstr "G-Code Final do Extrusor"
  6405. #~ msgctxt "@label"
  6406. #~ msgid "Changelog"
  6407. #~ msgstr "Registro de alterações"
  6408. #~ msgctxt "@title:window"
  6409. #~ msgid "User Agreement"
  6410. #~ msgstr "Termos de Acordo do Usuário"
  6411. #~ msgctxt "@alabel"
  6412. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6413. #~ msgstr "Introduza o endereço IP ou hostname da sua impressora na rede."
  6414. #~ msgctxt "@info"
  6415. #~ msgid "Please select a network connected printer to monitor."
  6416. #~ msgstr "Por favor selecione uma impressora conectada à rede para monitorar."
  6417. #~ msgctxt "@info"
  6418. #~ msgid "Please connect your UltiMaker printer to your local network."
  6419. #~ msgstr "Por favor conecte sua impressora UltiMaker à sua rede local."
  6420. #~ msgctxt "@text:window"
  6421. #~ 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."
  6422. #~ 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."
  6423. #~ msgctxt "@text:window"
  6424. #~ msgid "I don't want to send this data"
  6425. #~ msgstr "Não desejo enviar estes dados"
  6426. #~ msgctxt "@text:window"
  6427. #~ msgid "Allow sending this data to UltiMaker and help us improve Cura"
  6428. #~ msgstr "Permitir enviar estes dados à UltiMaker para ajudar a melhorar o Cura"
  6429. #~ msgctxt "@label"
  6430. #~ msgid "No print selected"
  6431. #~ msgstr "Nenhuma impressão selecionada"
  6432. #~ msgctxt "@info:tooltip"
  6433. #~ 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."
  6434. #~ 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."
  6435. #~ msgctxt "@title"
  6436. #~ msgid "Select Printer Upgrades"
  6437. #~ msgstr "Seleccionar Atualizações da Impressora"
  6438. #~ msgctxt "@label"
  6439. #~ 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."
  6440. #~ 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."
  6441. #~ msgctxt "@tooltip"
  6442. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6443. #~ 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"
  6444. #~ msgctxt "@label shown when we load a Gcode file"
  6445. #~ msgid "Print setup disabled. G code file can not be modified."
  6446. #~ msgstr "Configuração de impressão desabilitada. Arquivo de G-Code não pode ser modificado."
  6447. #~ msgctxt "@label"
  6448. #~ msgid "See the material compatibility chart"
  6449. #~ msgstr "Veja o diagrama de compatibilidade de material"
  6450. #~ msgctxt "@label"
  6451. #~ msgid "View types"
  6452. #~ msgstr "Ver tipos"
  6453. #~ msgctxt "@label"
  6454. #~ msgid "Hi "
  6455. #~ msgstr "Oi "
  6456. #~ msgctxt "@text"
  6457. #~ msgid ""
  6458. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6459. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6460. #~ "- Get exclusive access to material profiles from leading brands"
  6461. #~ msgstr ""
  6462. #~ "- Envia trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  6463. #~ "- Guarda seus ajustes do Ultimaker Cura na nuvem para uso em qualquer lugar\n"
  6464. #~ "- Obtém acesso exclusivo a perfis de material de marcas reconhecidas"
  6465. #~ msgctxt "@label:PrintjobStatus"
  6466. #~ msgid "Unable to Slice"
  6467. #~ msgstr "Não Foi Possível Fatiar"
  6468. #~ msgctxt "@label"
  6469. #~ msgid "Time specification"
  6470. #~ msgstr "Especificação de tempo"
  6471. #~ msgctxt "@label"
  6472. #~ msgid "Material specification"
  6473. #~ msgstr "Especificação de material"
  6474. #~ msgctxt "@title:tab"
  6475. #~ msgid "Add a printer to Cura"
  6476. #~ msgstr "Adiciona uma impressora ao Cura"
  6477. #~ msgctxt "@title:tab"
  6478. #~ msgid ""
  6479. #~ "Select the printer you want to use from the list below.\n"
  6480. #~ "\n"
  6481. #~ "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."
  6482. #~ msgstr ""
  6483. #~ "Selecione a impressora que deseja usar da lista abaixo.\n"
  6484. #~ "\n"
  6485. #~ "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."
  6486. #~ msgctxt "@label"
  6487. #~ msgid "Printer Name"
  6488. #~ msgstr "Nome da Impressora"
  6489. #~ msgctxt "@action:button"
  6490. #~ msgid "Add Printer"
  6491. #~ msgstr "Adicionar Impressora"
  6492. #~ msgid "Modify G-Code"
  6493. #~ msgstr "Modificar G-Code"
  6494. #~ msgctxt "@info:status"
  6495. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6496. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem."
  6497. #~ msgctxt "@info:status"
  6498. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6499. #~ msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada."
  6500. #~ msgctxt "@info:title"
  6501. #~ msgid "Incompatible Material"
  6502. #~ msgstr "Material Incompatível"
  6503. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6504. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6505. #~ msgstr "Falha ao importa perfil de <filename>{0}</filename>: <message>{1}</message>"
  6506. #~ msgctxt "@title"
  6507. #~ msgid "Toolbox"
  6508. #~ msgstr "Ferramentas"
  6509. #~ msgctxt "@label"
  6510. #~ msgid "Not available"
  6511. #~ msgstr "Não disponível"
  6512. #~ msgctxt "@label"
  6513. #~ msgid "Unreachable"
  6514. #~ msgstr "Inacessível"
  6515. #~ msgctxt "@label"
  6516. #~ msgid "Available"
  6517. #~ msgstr "Disponível"
  6518. #~ msgctxt "@label:status"
  6519. #~ msgid "Preparing"
  6520. #~ msgstr "Preparando"
  6521. #~ msgctxt "@label:status"
  6522. #~ msgid "Pausing"
  6523. #~ msgstr "Pausando"
  6524. #~ msgctxt "@label:status"
  6525. #~ msgid "Resuming"
  6526. #~ msgstr "Continuando"
  6527. #~ msgctxt "@label"
  6528. #~ msgid "Waiting for: Unavailable printer"
  6529. #~ msgstr "Aguardando por: Impressora indisponível"
  6530. #~ msgctxt "@label"
  6531. #~ msgid "Waiting for: First available"
  6532. #~ msgstr "Aguardando por: A primeira disponível"
  6533. #~ msgctxt "@label"
  6534. #~ msgid "Waiting for: "
  6535. #~ msgstr "Aguardando por: "
  6536. #~ msgctxt "@label"
  6537. #~ msgid "Configuration change"
  6538. #~ msgstr "Alteração de configuração"
  6539. #~ msgctxt "@label"
  6540. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6541. #~ msgstr "A impressora atribuída, %1, requer as seguintes alterações de configuração:"
  6542. #~ msgctxt "@label"
  6543. #~ msgid "Override"
  6544. #~ msgstr "Sobrepôr"
  6545. #~ msgctxt "@label"
  6546. #~ 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?"
  6547. #~ 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?"
  6548. #~ msgctxt "@window:title"
  6549. #~ msgid "Override configuration configuration and start print"
  6550. #~ msgstr "Sobrepôr configuração e iniciar impressão"
  6551. #~ msgctxt "@label link to connect manager"
  6552. #~ msgid "Manage queue"
  6553. #~ msgstr "Gerenciar fila"
  6554. #~ msgctxt "@label"
  6555. #~ msgid "Printing"
  6556. #~ msgstr "Imprimindo"
  6557. #~ msgctxt "@label link to connect manager"
  6558. #~ msgid "Manage printers"
  6559. #~ msgstr "Gerenciar impressoras"
  6560. #~ msgctxt "@action:button"
  6561. #~ msgid "Activate Configuration"
  6562. #~ msgstr "Ativar Configuração"
  6563. #~ msgctxt "@info:tooltip"
  6564. #~ msgid "Load the configuration of the printer into Cura"
  6565. #~ msgstr "Carrega a configuração da impressora no Cura"
  6566. #~ msgctxt "@label"
  6567. #~ msgid "Show Travels"
  6568. #~ msgstr "Exibir Percursos"
  6569. #~ msgctxt "@label"
  6570. #~ msgid "Show Helpers"
  6571. #~ msgstr "Exibir Assistentes"
  6572. #~ msgctxt "@label"
  6573. #~ msgid "Show Shell"
  6574. #~ msgstr "Exibir Perímetro"
  6575. #~ msgctxt "@label"
  6576. #~ msgid "Show Infill"
  6577. #~ msgstr "Exibir Preenchimento"
  6578. #~ msgctxt "@text:window"
  6579. #~ msgid "I don't want to send these data"
  6580. #~ msgstr "Eu não quero enviar estes dados"
  6581. #~ msgctxt "@text:window"
  6582. #~ msgid "Allow sending these data to UltiMaker and help us improve Cura"
  6583. #~ msgstr "Permite o envio destes dados para a UltiMaker e nos auxilia a aprimorar o Cura"
  6584. #~ msgctxt "@label"
  6585. #~ msgid "Printer type:"
  6586. #~ msgstr "Tipo de impressora:"
  6587. #~ msgctxt "@label"
  6588. #~ msgid "Connection:"
  6589. #~ msgstr "Conexão:"
  6590. #~ msgctxt "@label"
  6591. #~ msgid "State:"
  6592. #~ msgstr "Estado:"
  6593. #~ msgctxt "@label:MonitorStatus"
  6594. #~ msgid "Waiting for a printjob"
  6595. #~ msgstr "Esperando um trabalho de impressão"
  6596. #~ msgctxt "@label:MonitorStatus"
  6597. #~ msgid "Waiting for someone to clear the build plate"
  6598. #~ msgstr "Esperando que alguém esvazie a mesa de impressão"
  6599. #~ msgctxt "@label:MonitorStatus"
  6600. #~ msgid "Aborting print..."
  6601. #~ msgstr "Abortando impressão..."
  6602. #~ msgctxt "@label"
  6603. #~ msgid "Protected profiles"
  6604. #~ msgstr "Perfis Protegidos"
  6605. #~ msgctxt "@label"
  6606. #~ msgid "Printer Name:"
  6607. #~ msgstr "Nome da Impressora:"
  6608. #~ msgctxt "@label"
  6609. #~ msgid "Profile:"
  6610. #~ msgstr "Perfil:"
  6611. #~ msgctxt "@label:textbox"
  6612. #~ msgid "Search..."
  6613. #~ msgstr "Buscar..."
  6614. #~ msgctxt "@action:inmenu"
  6615. #~ msgid "Collapse All"
  6616. #~ msgstr "Encolher Todos"
  6617. #~ msgctxt "@action:inmenu"
  6618. #~ msgid "Expand All"
  6619. #~ msgstr "Expandir Todos"
  6620. #~ msgctxt "@label:header configurations"
  6621. #~ msgid "Available configurations"
  6622. #~ msgstr "Configurações disponíveis"
  6623. #~ msgctxt "@label:extruder label"
  6624. #~ msgid "Extruder"
  6625. #~ msgstr "Extrusor"
  6626. #~ msgctxt "@label:extruder label"
  6627. #~ msgid "Yes"
  6628. #~ msgstr "Sim"
  6629. #~ msgctxt "@label:extruder label"
  6630. #~ msgid "No"
  6631. #~ msgstr "Não"
  6632. #~ msgctxt "@label:listbox"
  6633. #~ msgid "Print Setup"
  6634. #~ msgstr "Configuração de Impressão"
  6635. #~ msgctxt "@label:listbox"
  6636. #~ msgid ""
  6637. #~ "Print Setup disabled\n"
  6638. #~ "G-code files cannot be modified"
  6639. #~ msgstr ""
  6640. #~ "Configuração de Impressão desabilitada\n"
  6641. #~ "Arquivos G-Code não podem ser modificados"
  6642. #~ msgctxt "@label Hours and minutes"
  6643. #~ msgid "00h 00min"
  6644. #~ msgstr "00h 00min"
  6645. #~ msgctxt "@tooltip"
  6646. #~ msgid "Time specification"
  6647. #~ msgstr "Especificação de tempo"
  6648. #~ msgctxt "@label"
  6649. #~ msgid "Cost specification"
  6650. #~ msgstr "Especificação de custo"
  6651. #~ msgctxt "@label"
  6652. #~ msgid "Total:"
  6653. #~ msgstr "Total:"
  6654. #~ msgctxt "@tooltip"
  6655. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6656. #~ msgstr "<b>Configuração Recomendada de Impressão</b><br/><br/>Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados."
  6657. #~ msgctxt "@tooltip"
  6658. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6659. #~ msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com controle fino sobre cada parte do processo de fatiamento."
  6660. #~ msgctxt "@action:inmenu menubar:help"
  6661. #~ msgid "Show Engine &Log..."
  6662. #~ msgstr "Exibir o Registro do Motor de Fatiamento (&L)..."
  6663. #~ msgctxt "@action:menu"
  6664. #~ msgid "Browse packages..."
  6665. #~ msgstr "Navegar pacotes..."
  6666. #~ msgctxt "@action:inmenu menubar:view"
  6667. #~ msgid "Expand/Collapse Sidebar"
  6668. #~ msgstr "Expandir/Encolher Barra Lateral"
  6669. #~ msgctxt "@label:PrintjobStatus"
  6670. #~ msgid "Please load a 3D model"
  6671. #~ msgstr "Por favor carregue um modelo 3D"
  6672. #~ msgctxt "@label:PrintjobStatus"
  6673. #~ msgid "Ready to slice"
  6674. #~ msgstr "Pronto para fatiar"
  6675. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6676. #~ msgid "Ready to %1"
  6677. #~ msgstr "Pronto para %1"
  6678. #~ msgctxt "@label:PrintjobStatus"
  6679. #~ msgid "Slicing unavailable"
  6680. #~ msgstr "Fatiamento indisponível"
  6681. #~ msgctxt "@info:tooltip"
  6682. #~ msgid "Slice current printjob"
  6683. #~ msgstr "Fatiar trabalho de impressão atual"
  6684. #~ msgctxt "@info:tooltip"
  6685. #~ msgid "Cancel slicing process"
  6686. #~ msgstr "Cancelar processo de fatiamento"
  6687. #~ msgctxt "@label:Printjob"
  6688. #~ msgid "Prepare"
  6689. #~ msgstr "Preparar"
  6690. #~ msgctxt "@label:Printjob"
  6691. #~ msgid "Cancel"
  6692. #~ msgstr "Cancelar"
  6693. #~ msgctxt "@info:tooltip"
  6694. #~ msgid "Select the active output device"
  6695. #~ msgstr "Selecione o dispositivo de saída ativo"
  6696. #~ msgctxt "@title:menu"
  6697. #~ msgid "&View"
  6698. #~ msgstr "&Ver"
  6699. #~ msgctxt "@title:menu"
  6700. #~ msgid "&Settings"
  6701. #~ msgstr "Aju&stes"
  6702. #~ msgctxt "@title:menu menubar:toplevel"
  6703. #~ msgid "&Toolbox"
  6704. #~ msgstr "Ferramen&tas"
  6705. #~ msgctxt "@action:button"
  6706. #~ msgid "Open File"
  6707. #~ msgstr "Abrir arquivo"
  6708. #~ msgctxt "@tooltip"
  6709. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6710. #~ 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"
  6711. #~ msgctxt "@label"
  6712. #~ msgid "Print Speed"
  6713. #~ msgstr "Velocidade de Impressão"
  6714. #~ msgctxt "@label"
  6715. #~ msgid "Slower"
  6716. #~ msgstr "Mais Lento"
  6717. #~ msgctxt "@label"
  6718. #~ msgid "Faster"
  6719. #~ msgstr "Mais Rápido"
  6720. #~ msgctxt "@label"
  6721. #~ msgid "Enable gradual"
  6722. #~ msgstr "Habilitar gradual"
  6723. #~ msgctxt "@label"
  6724. #~ msgid "Generate Support"
  6725. #~ msgstr "Gerar Suportes"
  6726. #~ msgctxt "@label"
  6727. #~ msgid "Build Plate Adhesion"
  6728. #~ msgstr "Aderência à Mesa de Impressão"
  6729. #~ msgctxt "@label"
  6730. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>UltiMaker Troubleshooting Guides</a>"
  6731. #~ msgstr "Precisa de ajuda para melhorar sua impressões?<br>Leia os <a href='%1'>Guias de Resolução de Problema da UltiMaker</a>"
  6732. #~ msgctxt "@title:window"
  6733. #~ msgid "Engine Log"
  6734. #~ msgstr "Registro do Motor de Fatiamento"
  6735. #~ msgctxt "@label"
  6736. #~ msgid "Printer type"
  6737. #~ msgstr "Tipo de impressora"
  6738. #~ msgctxt "@label"
  6739. #~ msgid "Use glue with this material combination"
  6740. #~ msgstr "Use cola com esta combinação de materiais"
  6741. #~ msgctxt "@label"
  6742. #~ msgid "Check compatibility"
  6743. #~ msgstr "Verificar compatibilidade"
  6744. #~ msgctxt "@tooltip"
  6745. #~ msgid "Click to check the material compatibility on UltiMaker.com."
  6746. #~ msgstr "Clique para verificar a compatibilidade do material em UltiMaker.com."
  6747. #~ msgctxt "description"
  6748. #~ msgid "Shows changes since latest checked version."
  6749. #~ msgstr "Mostra alterações desde a última versão verificada."
  6750. #~ msgctxt "name"
  6751. #~ msgid "Changelog"
  6752. #~ msgstr "Registro de Alterações"
  6753. #~ msgctxt "description"
  6754. #~ msgid "Create a flattend quality changes profile."
  6755. #~ msgstr "Cria um perfil de alterações achatado."
  6756. #~ msgctxt "name"
  6757. #~ msgid "Profile flatener"
  6758. #~ msgstr "Achatador de Perfil"
  6759. #~ msgctxt "description"
  6760. #~ msgid "Ask the user once if he/she agrees with our license."
  6761. #~ msgstr "Perguntar ao usuário uma vez se concorda com nossa licença."
  6762. #~ msgctxt "name"
  6763. #~ msgid "UserAgreement"
  6764. #~ msgstr "Acordo de Usuário"
  6765. #~ msgctxt "@warning:status"
  6766. #~ msgid "Please generate G-code before saving."
  6767. #~ msgstr "Por favor gere o G-Code antes de salvar."
  6768. #~ msgctxt "@action"
  6769. #~ msgid "Upgrade Firmware"
  6770. #~ msgstr "Atualizar Firmware"
  6771. #~ msgctxt "@label unknown material"
  6772. #~ msgid "Unknown"
  6773. #~ msgstr "Desconhecido"
  6774. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6775. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6776. #~ msgstr "Não há perfil personalizado para importar no arquivo <filename>{0}</filename>"
  6777. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6778. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6779. #~ msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  6780. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6781. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6782. #~ 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."
  6783. #~ msgctxt "@title:window"
  6784. #~ msgid "Confirm uninstall "
  6785. #~ msgstr "Confirme a deinstalação"
  6786. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6787. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6788. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6789. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6790. #~ msgid "%1m / ~ %2g"
  6791. #~ msgstr "%1m / ~ %2g"
  6792. #~ msgctxt "@title"
  6793. #~ msgid "Upgrade Firmware"
  6794. #~ msgstr "Atualizar Firmware"
  6795. #~ msgctxt "@action:button"
  6796. #~ msgid "Print with Doodle3D WiFi-Box"
  6797. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6798. #~ msgctxt "@properties:tooltip"
  6799. #~ msgid "Print with Doodle3D WiFi-Box"
  6800. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6801. #~ msgctxt "@info:status"
  6802. #~ msgid "Connecting to Doodle3D Connect"
  6803. #~ msgstr "Conectando ao Doodle3D Connect"
  6804. #~ msgctxt "@info:status"
  6805. #~ msgid "Sending data to Doodle3D Connect"
  6806. #~ msgstr "Enviando dados ao Doodle3D Connect"
  6807. #~ msgctxt "@info:status"
  6808. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6809. #~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?"
  6810. #~ msgctxt "@info:status"
  6811. #~ msgid "Storing data on Doodle3D Connect"
  6812. #~ msgstr "Armazenando dados no Doodle3D Connect"
  6813. #~ msgctxt "@info:status"
  6814. #~ msgid "File sent to Doodle3D Connect"
  6815. #~ msgstr "Arquivo enviado ao Doodle3D Connect"
  6816. #~ msgctxt "@action:button"
  6817. #~ msgid "Open Connect..."
  6818. #~ msgstr "Abrir Connect..."
  6819. #~ msgctxt "@info:tooltip"
  6820. #~ msgid "Open the Doodle3D Connect web interface"
  6821. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  6822. #~ msgctxt "@item:inlistbox"
  6823. #~ msgid "Blender file"
  6824. #~ msgstr "Arquivo do Blender"
  6825. #~ msgctxt "@info:status"
  6826. #~ msgid ""
  6827. #~ "Could not export using \"{}\" quality!\n"
  6828. #~ "Felt back to \"{}\"."
  6829. #~ msgstr ""
  6830. #~ "Não foi possível exportar usando qualidade \"{}\"!\n"
  6831. #~ "Foi usada a \"{}\"."
  6832. #~ msgctxt "@label"
  6833. #~ msgid "Contact"
  6834. #~ msgstr "Contato"
  6835. #~ msgctxt "@label"
  6836. #~ msgid "This printer is not set up to host a group of UltiMaker 3 printers."
  6837. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras UltiMaker 3."
  6838. #~ msgctxt "@label"
  6839. #~ msgid "This printer is the host for a group of %1 UltiMaker 3 printers."
  6840. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras UltiMaker 3."
  6841. #~ msgctxt "@label: arg 1 is group name"
  6842. #~ msgid "%1 is not set up to host a group of connected UltiMaker 3 printers"
  6843. #~ msgstr "%1 não está configurada para hospedar um grupo de impressora UltiMaker 3 conectadas"
  6844. #~ msgctxt "@label link to connect manager"
  6845. #~ msgid "Add/Remove printers"
  6846. #~ msgstr "Adicionar/Remover impressoras"
  6847. #~ msgctxt "@info:tooltip"
  6848. #~ msgid "Opens the print jobs page with your default web browser."
  6849. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador default."
  6850. #~ msgctxt "@action:button"
  6851. #~ msgid "View print jobs"
  6852. #~ msgstr "Visualizar trabalhos de impressão"
  6853. #~ msgctxt "@label:status"
  6854. #~ msgid "Preparing to print"
  6855. #~ msgstr "Preparando para imprimir"
  6856. #~ msgctxt "@label:status"
  6857. #~ msgid "Available"
  6858. #~ msgstr "Disponível"
  6859. #~ msgctxt "@label:status"
  6860. #~ msgid "Lost connection with the printer"
  6861. #~ msgstr "Conexão à impressora perdida"
  6862. #~ msgctxt "@label:status"
  6863. #~ msgid "Unknown"
  6864. #~ msgstr "Desconhecido"
  6865. #~ msgctxt "@label:status"
  6866. #~ msgid "Disabled"
  6867. #~ msgstr "Desabilitado"
  6868. #~ msgctxt "@label:status"
  6869. #~ msgid "Reserved"
  6870. #~ msgstr "Reservado"
  6871. #~ msgctxt "@label"
  6872. #~ msgid "Preparing to print"
  6873. #~ msgstr "Preparando para imprimir"
  6874. #~ msgctxt "@label:status"
  6875. #~ msgid "Print aborted"
  6876. #~ msgstr "A impressão foi interrompida"
  6877. #~ msgctxt "@label"
  6878. #~ msgid "Not accepting print jobs"
  6879. #~ msgstr "Não aceitando trabalhos de impressão"
  6880. #~ msgctxt "@label"
  6881. #~ msgid "Finishes at: "
  6882. #~ msgstr "Termina em: "
  6883. #~ msgctxt "@label"
  6884. #~ msgid "Clear build plate"
  6885. #~ msgstr "Esvaziar a mesa de impressão"
  6886. #~ msgctxt "@label"
  6887. #~ msgid "Waiting for configuration change"
  6888. #~ msgstr "Esperando alteração de configuração"
  6889. #~ msgctxt "@title"
  6890. #~ msgid "Print jobs"
  6891. #~ msgstr "Trabalhos de impressão"
  6892. #~ msgctxt "@label:title"
  6893. #~ msgid "Printers"
  6894. #~ msgstr "Impressoras"
  6895. #~ msgctxt "@action:button"
  6896. #~ msgid "View printers"
  6897. #~ msgstr "Visualizar impressoras"
  6898. #~ msgctxt "@label:"
  6899. #~ msgid "Pause"
  6900. #~ msgstr "Pausar"
  6901. #~ msgctxt "@label:"
  6902. #~ msgid "Resume"
  6903. #~ msgstr "Continuar"
  6904. #~ msgctxt "@label:"
  6905. #~ msgid "Abort Print"
  6906. #~ msgstr "Abortar Impressão"
  6907. #~ msgctxt "@option:openProject"
  6908. #~ msgid "Always ask"
  6909. #~ msgstr "Sempre perguntar"
  6910. #~ msgctxt "@label"
  6911. #~ msgid "Override Profile"
  6912. #~ msgstr "Sobrescrever Perfil"
  6913. #~ msgctxt "@info:tooltip"
  6914. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6915. #~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)"
  6916. #~ msgctxt "@option:check"
  6917. #~ msgid "Do not arrange objects on load"
  6918. #~ msgstr "Não posicionar objetos ao carregar."
  6919. #~ msgctxt "@action:inmenu menubar:file"
  6920. #~ msgid "&Save Selection to File"
  6921. #~ msgstr "Salvar &Seleção em Arquivo"
  6922. #~ msgctxt "@title:menu menubar:file"
  6923. #~ msgid "Save &As..."
  6924. #~ msgstr "S&alvar Como..."
  6925. #~ msgctxt "@title:menu menubar:file"
  6926. #~ msgid "Save &Project..."
  6927. #~ msgstr "Salvar &Projeto..."
  6928. #~ msgctxt "@label"
  6929. #~ msgid "Use adhesion sheet or glue with this material combination"
  6930. #~ msgstr "Use camada de aderência ou cola com esta combinação de material"
  6931. #~ msgctxt "description"
  6932. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6933. #~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D."
  6934. #~ msgctxt "name"
  6935. #~ msgid "Doodle3D WiFi-Box"
  6936. #~ msgstr "WiFi-Box Doodle3D"
  6937. #~ msgctxt "description"
  6938. #~ msgid "Provides an edit window for direct script editing."
  6939. #~ msgstr "Provê uma janela de edição para edição direta de script."
  6940. #~ msgctxt "name"
  6941. #~ msgid "Live scripting tool"
  6942. #~ msgstr "Ferramenta de scripting integrada"
  6943. #~ msgctxt "description"
  6944. #~ msgid "Helps to open Blender files directly in Cura."
  6945. #~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura."
  6946. #~ msgctxt "name"
  6947. #~ msgid "Blender Integration (experimental)"
  6948. #~ msgstr "Integração ao Blender (experimental)"
  6949. #~ msgctxt "@info:title"
  6950. #~ msgid "Model Checker Warning"
  6951. #~ msgstr "Alerta de Verificador de Modelo"
  6952. #~ msgctxt "@info:status"
  6953. #~ msgid ""
  6954. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6955. #~ "Tips that may be useful to improve the print quality:\n"
  6956. #~ "1) Use rounded corners.\n"
  6957. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6958. #~ "3) Use a different material."
  6959. #~ msgstr ""
  6960. #~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n"
  6961. #~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n"
  6962. #~ "1) Use cantos arredondados.\n"
  6963. #~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n"
  6964. #~ "3) Use material diferente."
  6965. #~ msgctxt "@info:status"
  6966. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6967. #~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks."
  6968. #~ msgctxt "@info:status"
  6969. #~ msgid ""
  6970. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6971. #~ "\n"
  6972. #~ "Thanks!"
  6973. #~ msgstr ""
  6974. #~ "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"
  6975. #~ "\n"
  6976. #~ "Obrigado!"
  6977. #~ msgctxt "@info:status"
  6978. #~ msgid ""
  6979. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6980. #~ "\n"
  6981. #~ "Sorry!"
  6982. #~ msgstr ""
  6983. #~ "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"
  6984. #~ "\n"
  6985. #~ "Desculpe!"
  6986. #~ msgctxt "@item:inlistbox"
  6987. #~ msgid "SolidWorks part file"
  6988. #~ msgstr "Arquivo de parte de SolidWorks"
  6989. #~ msgctxt "@item:inlistbox"
  6990. #~ msgid "SolidWorks assembly file"
  6991. #~ msgstr "Arquivo de montagem de SolidWorks"
  6992. #~ msgctxt "@item:inlistbox"
  6993. #~ msgid "SolidWorks drawing file"
  6994. #~ msgstr "Arquivo de desenho do SolidWorks"
  6995. #~ msgctxt "@info:status"
  6996. #~ msgid ""
  6997. #~ "Dear customer,\n"
  6998. #~ "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"
  6999. #~ "\n"
  7000. #~ "With kind regards\n"
  7001. #~ " - Thomas Karl Pietrowski"
  7002. #~ msgstr ""
  7003. #~ "Caro cliente,\n"
  7004. #~ "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"
  7005. #~ "\n"
  7006. #~ "Atenciosamente\n"
  7007. #~ " - Thomas Karl Pietrowski"
  7008. #~ msgctxt "@info:status"
  7009. #~ msgid ""
  7010. #~ "Dear customer,\n"
  7011. #~ "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"
  7012. #~ "\n"
  7013. #~ "With kind regards\n"
  7014. #~ " - Thomas Karl Pietrowski"
  7015. #~ msgstr ""
  7016. #~ "Caro cliente,\n"
  7017. #~ "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"
  7018. #~ "\n"
  7019. #~ "Atenciosamente\n"
  7020. #~ " - Thomas Karl Pietrowski"
  7021. #~ msgid "Configure"
  7022. #~ msgstr "Configure"
  7023. #~ msgid "Installation guide for SolidWorks macro"
  7024. #~ msgstr "Guia de Instalação para macro do SolidWorks"
  7025. #~ msgctxt "@action:button"
  7026. #~ msgid "Disable"
  7027. #~ msgstr "Desabilitar"
  7028. #~ msgctxt "@action:tooltip"
  7029. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7030. #~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências."
  7031. #~ msgid "Install"
  7032. #~ msgstr "Instalar"
  7033. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7034. #~ 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."
  7035. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7036. #~ msgstr "Plugin Siemens NX do Cura instalado com sucesso."
  7037. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7038. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR."
  7039. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7040. #~ 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."
  7041. #~ msgctxt "@info:status"
  7042. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7043. #~ msgstr "Falha ao pegar identificador do complemento de <filename>{0}</filename>"
  7044. #~ msgctxt "@info:tile"
  7045. #~ msgid "Warning"
  7046. #~ msgstr "Aviso"
  7047. #~ msgctxt "@window:title"
  7048. #~ msgid "Plugin browser"
  7049. #~ msgstr "Navegador de complementos"
  7050. #~ msgctxt "@label"
  7051. #~ msgid "UltiMaker 3"
  7052. #~ msgstr "UltiMaker 3"
  7053. #~ msgctxt "@label"
  7054. #~ msgid "UltiMaker 3 Extended"
  7055. #~ msgstr "UltiMaker 3 Extended"
  7056. #~ msgctxt "@title:window"
  7057. #~ msgid "SolidWorks: Export wizard"
  7058. #~ msgstr "SolidWorks: Assistente de Exportação"
  7059. #~ msgctxt "@action:label"
  7060. #~ msgid "Quality:"
  7061. #~ msgstr "Qualidade"
  7062. #~ msgctxt "@option:curaSolidworksStlQuality"
  7063. #~ msgid "Fine (3D-printing)"
  7064. #~ msgstr "Fina (impressão-3D)"
  7065. #~ msgctxt "@option:curaSolidworksStlQuality"
  7066. #~ msgid "Coarse (3D-printing)"
  7067. #~ msgstr "Baixa"
  7068. #~ msgctxt "@option:curaSolidworksStlQuality"
  7069. #~ msgid "Fine (SolidWorks)"
  7070. #~ msgstr "Fina (SolidWorks)"
  7071. #~ msgctxt "@option:curaSolidworksStlQuality"
  7072. #~ msgid "Coarse (SolidWorks)"
  7073. #~ msgstr "Baixa (SolidWorks)"
  7074. #~ msgctxt "@text:window"
  7075. #~ msgid "Show this dialog again"
  7076. #~ msgstr "Mostrar este diálogo novamente"
  7077. #~ msgctxt "@action:button"
  7078. #~ msgid "Continue"
  7079. #~ msgstr "Continuar"
  7080. #~ msgctxt "@action:button"
  7081. #~ msgid "Abort"
  7082. #~ msgstr "Abortar"
  7083. #~ msgctxt "@title:window"
  7084. #~ msgid "How to install Cura SolidWorks macro"
  7085. #~ msgstr "Como instalar a macro de SolidWorks do Cura"
  7086. #~ msgctxt "@description:label"
  7087. #~ msgid "Steps:"
  7088. #~ msgstr "Passos:"
  7089. #~ msgctxt "@action:button"
  7090. #~ msgid ""
  7091. #~ "Open the directory\n"
  7092. #~ "with macro and icon"
  7093. #~ msgstr ""
  7094. #~ "Abrir o diretório\n"
  7095. #~ "com a macro e o ícone"
  7096. #~ msgctxt "@description:label"
  7097. #~ msgid "Instructions:"
  7098. #~ msgstr "Instruções:"
  7099. #~ msgctxt "@action:playpause"
  7100. #~ msgid "Play"
  7101. #~ msgstr "Tocar"
  7102. #~ msgctxt "@action:playpause"
  7103. #~ msgid "Pause"
  7104. #~ msgstr "Pausar"
  7105. #~ msgctxt "@action:button"
  7106. #~ msgid "Previous Step"
  7107. #~ msgstr "Passo Anterior"
  7108. #~ msgctxt "@action:button"
  7109. #~ msgid "Done"
  7110. #~ msgstr "Finalizado"
  7111. #~ msgctxt "@action:button"
  7112. #~ msgid "Next Step"
  7113. #~ msgstr "Passo Seguinte"
  7114. #~ msgctxt "@title:window"
  7115. #~ msgid "SolidWorks plugin: Configuration"
  7116. #~ msgstr "Complemento do SolidWorks: Configuração"
  7117. #~ msgctxt "@title:tab"
  7118. #~ msgid "Conversion settings"
  7119. #~ msgstr "Ajustes de conversão"
  7120. #~ msgctxt "@label"
  7121. #~ msgid "First choice:"
  7122. #~ msgstr "Primeira escolha:"
  7123. #~ msgctxt "@text:menu"
  7124. #~ msgid "Latest installed version (Recommended)"
  7125. #~ msgstr "Última versão instalada (Recomendado)"
  7126. #~ msgctxt "@text:menu"
  7127. #~ msgid "Default version"
  7128. #~ msgstr "Versão default"
  7129. #~ msgctxt "@label"
  7130. #~ msgid "Show wizard before opening SolidWorks files"
  7131. #~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks"
  7132. #~ msgctxt "@label"
  7133. #~ msgid "Automatically rotate opened file into normed orientation"
  7134. #~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada"
  7135. #~ msgctxt "@title:tab"
  7136. #~ msgid "Installation(s)"
  7137. #~ msgstr "Instalações"
  7138. #~ msgctxt "@label"
  7139. #~ msgid "COM service found"
  7140. #~ msgstr "Serviço COM encontrado"
  7141. #~ msgctxt "@label"
  7142. #~ msgid "Executable found"
  7143. #~ msgstr "Executável encontrado"
  7144. #~ msgctxt "@label"
  7145. #~ msgid "COM starting"
  7146. #~ msgstr "COM iniciando"
  7147. #~ msgctxt "@label"
  7148. #~ msgid "Revision number"
  7149. #~ msgstr "Número de revisão"
  7150. #~ msgctxt "@label"
  7151. #~ msgid "Functions available"
  7152. #~ msgstr "Funções disponíveis"
  7153. #~ msgctxt "@label (%1 is object name)"
  7154. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7155. #~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?"
  7156. #~ msgctxt "@action:menu"
  7157. #~ msgid "Browse plugins..."
  7158. #~ msgstr "Navegar complementos..."
  7159. #~ msgctxt "@title:menu menubar:toplevel"
  7160. #~ msgid "P&lugins"
  7161. #~ msgstr "Comp&lementos"
  7162. #~ msgctxt "@window:title"
  7163. #~ msgid "Install Plugin"
  7164. #~ msgstr "Instalar Complemento"
  7165. #~ msgctxt "description"
  7166. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7167. #~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)"
  7168. #~ msgctxt "description"
  7169. #~ msgid "Manages network connections to UltiMaker 3 printers"
  7170. #~ msgstr "Gerencia conexões de rede a impressoras UltiMaker 3"
  7171. #~ msgctxt "description"
  7172. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7173. #~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais."
  7174. #~ msgctxt "name"
  7175. #~ msgid "SolidWorks Integration"
  7176. #~ msgstr "Integração ao SolidWorks"
  7177. #~ msgctxt "description"
  7178. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7179. #~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações."
  7180. #~ msgctxt "name"
  7181. #~ msgid "Auto Save"
  7182. #~ msgstr "Auto-Salvar"
  7183. #~ msgctxt "description"
  7184. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7185. #~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX."
  7186. #~ msgctxt "name"
  7187. #~ msgid "Siemens NX Integration"
  7188. #~ msgstr "Integração ao Siemens NX"
  7189. #~ msgctxt "description"
  7190. #~ msgid "Find, manage and install new plugins."
  7191. #~ msgstr "Busca, gerencia e instala novos complementos."
  7192. #~ msgctxt "name"
  7193. #~ msgid "Plugin Browser"
  7194. #~ msgstr "Navegador de Complementos"
  7195. #~ msgctxt "description"
  7196. #~ msgid "Ask the user once if he/she agrees with our license"
  7197. #~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença"
  7198. #~ msgctxt "description"
  7199. #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7200. #~ msgstr "Provê ações de máquina para UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)"
  7201. #~ msgctxt "@item:inlistbox"
  7202. #~ msgid "GCode File"
  7203. #~ msgstr "Arquivo G-Code"
  7204. #~ msgctxt "@info:status"
  7205. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7206. #~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada."
  7207. #~ msgctxt "@info:title"
  7208. #~ msgid "Printer Unavailable"
  7209. #~ msgstr "Impressora Não Disponível"
  7210. #~ msgctxt "@info:status"
  7211. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7212. #~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode."
  7213. #~ msgctxt "@info:title"
  7214. #~ msgid "USB Printing"
  7215. #~ msgstr "Impressão USB"
  7216. #~ msgctxt "@info:status"
  7217. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7218. #~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB."
  7219. #~ msgctxt "@info"
  7220. #~ msgid "Unable to update firmware because there are no printers connected."
  7221. #~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas."
  7222. #~ msgctxt "@info"
  7223. #~ msgid "Could not find firmware required for the printer at %s."
  7224. #~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s."
  7225. #~ msgctxt "@info:title"
  7226. #~ msgid "Printer Firmware"
  7227. #~ msgstr "Firmware da Impressora"
  7228. #~ msgctxt "@info:title"
  7229. #~ msgid "Connection status"
  7230. #~ msgstr "Status da Conexão"
  7231. #~ msgctxt "@info:title"
  7232. #~ msgid "Connection Status"
  7233. #~ msgstr "Status da Conexão"
  7234. #~ msgctxt "@info:status"
  7235. #~ msgid "Access request was denied on the printer."
  7236. #~ msgstr "Pedido de acesso foi negado na impressora."
  7237. #~ msgctxt "@info:status"
  7238. #~ msgid "Access request failed due to a timeout."
  7239. #~ msgstr "Pedido de acesso falhou devido a tempo esgotado."
  7240. #~ msgctxt "@info:status"
  7241. #~ msgid "The connection with the network was lost."
  7242. #~ msgstr "A conexão à rede foi perdida."
  7243. #~ msgctxt "@info:status"
  7244. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7245. #~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada."
  7246. #~ msgctxt "@info:status"
  7247. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7248. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s."
  7249. #~ msgctxt "@info:title"
  7250. #~ msgid "Printer Status"
  7251. #~ msgstr "Status da Impressora"
  7252. #~ msgctxt "@info:status"
  7253. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7254. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}"
  7255. #~ msgctxt "@info:status"
  7256. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7257. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}"
  7258. #~ msgctxt "@label"
  7259. #~ msgid "Not enough material for spool {0}."
  7260. #~ msgstr "Não há material suficiente para o carretel {0}."
  7261. #~ msgctxt "@label"
  7262. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7263. #~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7264. #~ msgctxt "@label"
  7265. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7266. #~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora."
  7267. #~ msgctxt "@info:status"
  7268. #~ msgid "Unable to send data to printer. Is another job still active?"
  7269. #~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?"
  7270. #~ msgctxt "@label:MonitorStatus"
  7271. #~ msgid "Print aborted. Please check the printer"
  7272. #~ msgstr "Impressão abortada. Por favor verifique a impressora"
  7273. #~ msgctxt "@label:MonitorStatus"
  7274. #~ msgid "Pausing print..."
  7275. #~ msgstr "Pausando impressão..."
  7276. #~ msgctxt "@label:MonitorStatus"
  7277. #~ msgid "Resuming print..."
  7278. #~ msgstr "Continuando impressão..."
  7279. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers."
  7280. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras UltiMaker 3 conectadas."
  7281. #~ msgctxt "Count is number of printers."
  7282. #~ msgid "This printer is the host for a group of {count} connected UltiMaker 3 printers."
  7283. #~ msgstr "Esta impressora hospeda um grupo de {count} impressoras UltiMaker 3 conectadas."
  7284. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7285. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa."
  7286. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7287. #~ 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."
  7288. #~ msgctxt "@info:status"
  7289. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected UltiMaker 3 printers."
  7290. #~ 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."
  7291. #~ msgctxt "@info:status"
  7292. #~ msgid "Unable to send print job to group {cluster_name}."
  7293. #~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}."
  7294. #~ msgctxt "@info:status"
  7295. #~ msgid "Sent {file_name} to group {cluster_name}."
  7296. #~ msgstr "{file_name} enviado ao grupo {cluster_name}."
  7297. #~ msgctxt "@action:button"
  7298. #~ msgid "Show print jobs"
  7299. #~ msgstr "Exibir trabalhos de impressão"
  7300. #~ msgctxt "@info:tooltip"
  7301. #~ msgid "Opens the print jobs interface in your browser."
  7302. #~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador."
  7303. #~ msgctxt "@label Printer name"
  7304. #~ msgid "Unknown"
  7305. #~ msgstr "Desconhecida"
  7306. #~ msgctxt "@info:progress"
  7307. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7308. #~ msgstr "Enviando <filename>{file_name}</filename> ao grupo {cluster_name}"
  7309. #~ msgctxt "@info:status"
  7310. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7311. #~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks."
  7312. #~ msgctxt "@info:status"
  7313. #~ msgid ""
  7314. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7315. #~ "\n"
  7316. #~ " Thanks!."
  7317. #~ msgstr ""
  7318. #~ "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"
  7319. #~ "\n"
  7320. #~ " Obrigado!."
  7321. #~ msgctxt "@info:status"
  7322. #~ msgid ""
  7323. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7324. #~ "\n"
  7325. #~ "Sorry!"
  7326. #~ msgstr ""
  7327. #~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n"
  7328. #~ "\n"
  7329. #~ "Desculpe!"
  7330. #~ msgctxt "@item:material"
  7331. #~ msgid "No material loaded"
  7332. #~ msgstr "Não há material carregado"
  7333. #~ msgctxt "@item:material"
  7334. #~ msgid "Unknown material"
  7335. #~ msgstr "Material desconhecido"
  7336. #~ msgctxt "@info:status Has a cancel button next to it."
  7337. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7338. #~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual."
  7339. #~ msgctxt "@action:button"
  7340. #~ msgid "Undo"
  7341. #~ msgstr "Desfazer"
  7342. #~ msgctxt "@action"
  7343. #~ msgid "Undo changing the material diameter."
  7344. #~ msgstr "Desfaz a mudança no diâmetro do material."
  7345. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7346. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7347. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> não corresponde à sua máquina atual, não foi possível importá-lo."
  7348. #~ msgctxt "@label crash message"
  7349. #~ msgid ""
  7350. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7351. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7352. #~ " "
  7353. #~ msgstr ""
  7354. #~ "<p><b>Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema</p></b>\n"
  7355. #~ " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores</p>\n"
  7356. #~ " "
  7357. #~ msgctxt "@label"
  7358. #~ msgid "not yet initialised<br/>"
  7359. #~ msgstr "ainda não inicializado<br/>"
  7360. #~ msgctxt "@label"
  7361. #~ msgid "Gcode flavor"
  7362. #~ msgstr "Sabor de G-Code"
  7363. #~ msgctxt "@label"
  7364. #~ msgid "Start Gcode"
  7365. #~ msgstr "G-Code Inicial"
  7366. #~ msgctxt "@tooltip"
  7367. #~ msgid "Gcode commands to be executed at the very start."
  7368. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  7369. #~ msgctxt "@label"
  7370. #~ msgid "End Gcode"
  7371. #~ msgstr "G-Code Final"
  7372. #~ msgctxt "@tooltip"
  7373. #~ msgid "Gcode commands to be executed at the very end."
  7374. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  7375. #~ msgctxt "@label"
  7376. #~ msgid "Extruder Start Gcode"
  7377. #~ msgstr "G-Code Inicial do Extrusor"
  7378. #~ msgctxt "@label"
  7379. #~ msgid "Extruder End Gcode"
  7380. #~ msgstr "G-Code Final do Extrusor"
  7381. #~ msgctxt "@label"
  7382. #~ msgid "Starting firmware update, this may take a while."
  7383. #~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco."
  7384. #~ msgctxt "@label"
  7385. #~ msgid "Unknown error code: %1"
  7386. #~ msgstr "Código de erro desconhecido: %1"
  7387. #~ msgctxt "@label Printer name"
  7388. #~ msgid "UltiMaker 3"
  7389. #~ msgstr "UltiMaker 3"
  7390. #~ msgctxt "@label Printer name"
  7391. #~ msgid "UltiMaker 3 Extended"
  7392. #~ msgstr "UltiMaker 3 Extended"
  7393. #~ msgctxt "@label Printer status"
  7394. #~ msgid "Unknown"
  7395. #~ msgstr "Desconhecido"
  7396. #~ msgctxt "@title:window"
  7397. #~ msgid "Find & Update plugins"
  7398. #~ msgstr "Buscar & Atualizar complementos"
  7399. #~ msgctxt "@label"
  7400. #~ msgid "Here you can find a list of Third Party plugins."
  7401. #~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros."
  7402. #~ msgctxt "@action:button"
  7403. #~ msgid "Upgrade"
  7404. #~ msgstr "Atualizar"
  7405. #~ msgctxt "@action:button"
  7406. #~ msgid "Download"
  7407. #~ msgstr "Baixar"
  7408. #~ msgctxt "@info:tooltip"
  7409. #~ msgid "Show caution message in gcode reader."
  7410. #~ msgstr "Exibir mensagem de advertência no leitor de g-code."
  7411. #~ msgctxt "@option:check"
  7412. #~ msgid "Caution message in gcode reader"
  7413. #~ msgstr "Mensagem de advertência no leitor de g-code"
  7414. #~ msgctxt "@window:title"
  7415. #~ msgid "Import Profile"
  7416. #~ msgstr "Importar Perfil"
  7417. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7418. #~ msgid "Printer: %1, %2: %3"
  7419. #~ msgstr "Impressora: %1, %2: %3"
  7420. #~ msgctxt "@action:label %1 is printer name"
  7421. #~ msgid "Printer: %1"
  7422. #~ msgstr "Impressora: %1"
  7423. #~ msgctxt "@label"
  7424. #~ msgid "GCode generator"
  7425. #~ msgstr "Gerador de G-Code"
  7426. #~ msgctxt "@action:menu"
  7427. #~ msgid "Configure setting visiblity..."
  7428. #~ msgstr "Configurar a visibilidade dos ajustes..."
  7429. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7430. #~ msgid "Automatic: %1"
  7431. #~ msgstr "Automático: %1"
  7432. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7433. #~ msgid "Automatic: %1"
  7434. #~ msgstr "Automático: %1"
  7435. #~ msgctxt "@info:status"
  7436. #~ msgid "No printer connected"
  7437. #~ msgstr "Nenhuma impressora conectada"
  7438. #~ msgctxt "@tooltip"
  7439. #~ msgid "The current temperature of this extruder."
  7440. #~ msgstr "A temperatura atual deste extrusor."
  7441. #~ msgctxt "@action:menu"
  7442. #~ msgid "Installed plugins..."
  7443. #~ msgstr "Complementos instalados..."
  7444. #~ msgctxt "@label"
  7445. #~ msgid "Support Extruder"
  7446. #~ msgstr "Extrusor do Suporte"
  7447. #~ msgctxt "description"
  7448. #~ msgid "Writes GCode to a file."
  7449. #~ msgstr "Escreve G-Code para aquivo."
  7450. #~ msgctxt "name"
  7451. #~ msgid "GCode Writer"
  7452. #~ msgstr "Gerador de G-Code"
  7453. #~ msgctxt "name"
  7454. #~ msgid "GCode Profile Reader"
  7455. #~ msgstr "Leitor de Perfis de G-Code"
  7456. #~ msgctxt "@info:status"
  7457. #~ 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!"
  7458. #~ 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!"
  7459. #~ msgctxt "@info:status"
  7460. #~ msgid "Error while starting %s!"
  7461. #~ msgstr "Erro ao iniciar %s!"
  7462. #~ msgctxt "@item:inlistbox"
  7463. #~ msgid "Simulation view"
  7464. #~ msgstr "Visão simulada"
  7465. #~ msgctxt "@info"
  7466. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7467. #~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências."
  7468. #~ msgctxt "@action:button"
  7469. #~ msgid "Dismiss"
  7470. #~ msgstr "Fechar"
  7471. #~ msgctxt "@menuitem"
  7472. #~ msgid "Global"
  7473. #~ msgstr "Global"
  7474. #~ msgctxt "@label crash message"
  7475. #~ msgid ""
  7476. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7477. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7478. #~ " "
  7479. #~ msgstr ""
  7480. #~ "<p><b>Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema</p></b>\n"
  7481. #~ " <p>Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores</p>\n"
  7482. #~ " "
  7483. #~ msgctxt "@label Cura version"
  7484. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7485. #~ msgstr "<b>Versão do Cura:</b> {version}<br/>"
  7486. #~ msgctxt "@label Platform"
  7487. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7488. #~ msgstr "<b>Plataforma:</b> {platform}<br/>"
  7489. #~ msgctxt "@label Qt version"
  7490. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7491. #~ msgstr "<b>Versão da Qt:</b> {qt}<br/>"
  7492. #~ msgctxt "@label PyQt version"
  7493. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7494. #~ msgstr "<b>Versão da PyQt:</b> {pyqt}<br/>"
  7495. #~ msgctxt "@label OpenGL"
  7496. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7497. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7498. #~ msgctxt "@title:groupbox"
  7499. #~ msgid "Exception traceback"
  7500. #~ msgstr "Traceback de exceção"
  7501. #~ msgctxt "@label"
  7502. #~ msgid "Material diameter"
  7503. #~ msgstr "Diâmetro do material"
  7504. #~ msgctxt "@title:window"
  7505. #~ msgid "Cura SolidWorks Plugin Configuration"
  7506. #~ msgstr "Configuração do Complemento de Solidworks do Cura"
  7507. #~ msgctxt "@action:label"
  7508. #~ msgid "Default quality of the exported STL:"
  7509. #~ msgstr "Qualidade default do STL exportado:"
  7510. #~ msgctxt "@option:curaSolidworksStlQuality"
  7511. #~ msgid "Always ask"
  7512. #~ msgstr "Sempre perguntar"
  7513. #~ msgctxt "@option:curaSolidworksStlQuality"
  7514. #~ msgid "Always use Fine quality"
  7515. #~ msgstr "Sempre usar qualidade Alta"
  7516. #~ msgctxt "@option:curaSolidworksStlQuality"
  7517. #~ msgid "Always use Coarse quality"
  7518. #~ msgstr "Sempre usar qualidade Baixa"
  7519. #~ msgctxt "@title:window"
  7520. #~ msgid "Import SolidWorks File as STL..."
  7521. #~ msgstr "Importar Arquivo SolidWorks como STL..."
  7522. #~ msgctxt "@info:tooltip"
  7523. #~ msgid "Quality of the Exported STL"
  7524. #~ msgstr "Qualidade do STL Exportado"
  7525. #~ msgctxt "@action:label"
  7526. #~ msgid "Quality"
  7527. #~ msgstr "Qualidade"
  7528. #~ msgctxt "@option:curaSolidworksStlQuality"
  7529. #~ msgid "Coarse"
  7530. #~ msgstr "Baixa"
  7531. #~ msgctxt "@option:curaSolidworksStlQuality"
  7532. #~ msgid "Fine"
  7533. #~ msgstr "Alta"
  7534. #~ msgctxt "@"
  7535. #~ msgid "No Profile Available"
  7536. #~ msgstr "Nenhum Perfil Disponível"
  7537. #~ msgctxt "@label"
  7538. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7539. #~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores"
  7540. #~ msgctxt "@tooltip"
  7541. #~ msgid "<b>Time specification</b><br/><table>"
  7542. #~ msgstr "<b>Especificação de tempo</b><br/><table>"
  7543. #~ msgctxt "@action:inmenu menubar:view"
  7544. #~ msgid "&Reset camera position"
  7545. #~ msgstr "&Recompor posições de câmera"
  7546. #~ msgctxt "@title:menu menubar:file"
  7547. #~ msgid "Save project"
  7548. #~ msgstr "Salvar projeto"
  7549. #~ msgctxt "@title:tab"
  7550. #~ msgid "Prepare"
  7551. #~ msgstr "Preparar"
  7552. #~ msgctxt "@title:tab"
  7553. #~ msgid "Monitor"
  7554. #~ msgstr "Monitorar"
  7555. #~ msgctxt "@label"
  7556. #~ msgid "<a href='%1'>Check compatibility</a>"
  7557. #~ msgstr "<a href='%1'>Verificar compatibilidade</a>"
  7558. #~ msgctxt "description"
  7559. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7560. #~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura"
  7561. #~ msgctxt "@label:status"
  7562. #~ msgid "Blocked"
  7563. #~ msgstr "Bloqueado"
  7564. #~ msgctxt "@label:status"
  7565. #~ msgid "Can't start print"
  7566. #~ msgstr "Não consigo começar a imprimir"
  7567. #~ msgctxt "@action:button"
  7568. #~ msgid "Open Connect.."
  7569. #~ msgstr "Abrir Connect.."
  7570. #~ msgctxt "@info:title"
  7571. #~ msgid "Print Details"
  7572. #~ msgstr "Detalhes de Impressão"
  7573. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7574. #~ 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."
  7575. #~ 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."
  7576. #~ msgctxt "@info:title"
  7577. #~ msgid "Layer View"
  7578. #~ msgstr "Visão de Camadas"
  7579. #~ msgctxt "@menuitem"
  7580. #~ msgid "Browse plugins"
  7581. #~ msgstr "Navegar complementos"
  7582. #~ msgctxt "@info:title"
  7583. #~ msgid "Export Details"
  7584. #~ msgstr "Detalhes da Exportação"
  7585. #~ msgctxt "@label"
  7586. #~ msgid ""
  7587. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7588. #~ " <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"
  7589. #~ " "
  7590. #~ msgstr ""
  7591. #~ "<p>Uma exceção fatal ocorreu e não foi possível haver recuperação!</p>\n"
  7592. #~ " <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"
  7593. #~ " "
  7594. #~ msgctxt "@action:button"
  7595. #~ msgid "Open Web Page"
  7596. #~ msgstr "Abrir Página Web"
  7597. #~ msgctxt "@action:button"
  7598. #~ msgid "Ok"
  7599. #~ msgstr "Ok"
  7600. #~ msgctxt "@label"
  7601. #~ msgid "This printer is not set up to host a group of connected UltiMaker 3 printers"
  7602. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras UltiMaker 3 conectadas."
  7603. #~ msgctxt "@label"
  7604. #~ msgid "This printer is the host for a group of %1 connected UltiMaker 3 printers"
  7605. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras UltiMaker 3 conectadas"
  7606. #~ msgctxt "@label"
  7607. #~ msgid "Completed on: "
  7608. #~ msgstr "Completado em: "
  7609. #~ msgctxt "@info:tooltip"
  7610. #~ msgid "Opens the print jobs page with your default web browser."
  7611. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default."
  7612. #~ msgctxt "@label"
  7613. #~ msgid "PRINTER GROUP"
  7614. #~ msgstr "GRUPO DE IMPRESSORAS"
  7615. #~ msgctxt "@action:warning"
  7616. #~ msgid "Loading a project will clear all models on the buildplate"
  7617. #~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão"
  7618. #~ msgctxt "@label"
  7619. #~ msgid ""
  7620. #~ " plugin contains a license.\n"
  7621. #~ "You need to accept this license to install this plugin.\n"
  7622. #~ "Do you agree with the terms below?"
  7623. #~ msgstr ""
  7624. #~ " complemento tem uma licença.\n"
  7625. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  7626. #~ "Você está de acordo com os termos abaixo?"
  7627. #~ msgctxt "@label"
  7628. #~ msgid "00h 00min"
  7629. #~ msgstr "00h 00min"
  7630. #~ msgctxt "@tooltip"
  7631. #~ msgid "<b>Time information</b>"
  7632. #~ msgstr "<b>Informação de tempo</b>"
  7633. #~ msgctxt "@description"
  7634. #~ msgid "Print time"
  7635. #~ msgstr "Tempo de impressão"
  7636. #~ msgctxt "@label"
  7637. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7638. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7639. #~ msgctxt "@label"
  7640. #~ msgid "%1m / ~ %2g"
  7641. #~ msgstr "%1m / ~ %2g"
  7642. #~ msgctxt "@title:window"
  7643. #~ msgid "Cura"
  7644. #~ msgstr "Cura"
  7645. #~ msgctxt "@label"
  7646. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7647. #~ msgstr "<a href='%1'>Verificar compatibilidade de material</a>"
  7648. #~ msgctxt "name"
  7649. #~ msgid "UM3 Network Connection (Cluster)"
  7650. #~ msgstr "Conexão de Rede UM3 (Cluster)"
  7651. #~ msgctxt "description"
  7652. #~ msgid "Provides the Layer view."
  7653. #~ msgstr "Provê a visão de Camadas."
  7654. #~ msgctxt "name"
  7655. #~ msgid "Layer View"
  7656. #~ msgstr "Visão de Camadas"
  7657. #~ msgctxt "@item:inlistbox"
  7658. #~ msgid "X-Ray"
  7659. #~ msgstr "Raios X"
  7660. #~ msgctxt "@label"
  7661. #~ msgid "Doodle3D"
  7662. #~ msgstr "Doodle3D"
  7663. #~ msgctxt "@info:whatsthis"
  7664. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7665. #~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D."
  7666. #~ msgctxt "@item:inmenu"
  7667. #~ msgid "Doodle3D printing"
  7668. #~ msgstr "Impressão Doodle3D"
  7669. #~ msgctxt "@action:button"
  7670. #~ msgid "Print with Doodle3D"
  7671. #~ msgstr "Imprimir com Doodle3D"
  7672. #~ msgctxt "@info:tooltip"
  7673. #~ msgid "Print with "
  7674. #~ msgstr "Imprimir com "
  7675. #~ msgctxt "@title:menu"
  7676. #~ msgid "Doodle3D"
  7677. #~ msgstr "Doodle3D"
  7678. #~ msgctxt "@item:inlistbox"
  7679. #~ msgid "Enable Scan devices..."
  7680. #~ msgstr "Habilitar dispositivos de escaneamento..."
  7681. #~ msgctxt "@info:progress"
  7682. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7683. #~ msgstr "Salvando em Unidade Removível <filename>{0}</filename>"
  7684. #~ msgctxt "@info:status"
  7685. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7686. #~ msgstr "Incapaz de salvar para <filename>{0}</filename>: <message>{1}</message>"
  7687. #~ msgctxt "@info:status"
  7688. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7689. #~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!"
  7690. #~ msgctxt "@item:inlistbox"
  7691. #~ msgid "Layers"
  7692. #~ msgstr "Camadas"
  7693. #~ msgid "Browse plugins"
  7694. #~ msgstr "Navegar por complementos"
  7695. #~ msgctxt "@item:inmenu"
  7696. #~ msgid "Solid"
  7697. #~ msgstr "Sólido"
  7698. #~ msgctxt "@label"
  7699. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7700. #~ msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  7701. #~ msgctxt "@info:status"
  7702. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7703. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: <message>{1}</message>"
  7704. #~ msgctxt "@info:status"
  7705. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7706. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: Complemento de gravação acusou falha."
  7707. #~ msgctxt "@info:status"
  7708. #~ msgid "Exported profile to <filename>{0}</filename>"
  7709. #~ msgstr "Perfil exportado para <filename>{0}</filename>"
  7710. #~ msgctxt "@info:status"
  7711. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7712. #~ msgstr "Falha na importação de perfil de <filename>{0}</filename>: <message>{1}</message>"
  7713. #~ msgctxt "@title:window"
  7714. #~ msgid "Doodle3D Settings"
  7715. #~ msgstr "Ajustes de Doodle3D"
  7716. #~ msgctxt "@title:window"
  7717. #~ msgid "Print to: %1"
  7718. #~ msgstr "Imprimir em: %1"
  7719. #~ msgctxt "@label"
  7720. #~ msgid "Extruder Temperature: %1/%2°C"
  7721. #~ msgstr "Temperatura do Extrusor: %1/%2°C"
  7722. #~ msgctxt "@label"
  7723. #~ msgid "Bed Temperature: %1/%2°C"
  7724. #~ msgstr "Temperatura da Mesa: %1/%2°C"
  7725. #~ msgctxt "@label"
  7726. #~ msgid "%1"
  7727. #~ msgstr "%1"
  7728. #~ msgctxt "@label"
  7729. #~ msgid "View Mode: Layers"
  7730. #~ msgstr "Modo de Visão: Camadas"
  7731. #~ msgctxt "@info:status"
  7732. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7733. #~ msgstr "Não foi possível importar material<filename>%1</filename>: <message>%2</message>"
  7734. #~ msgctxt "@info:status"
  7735. #~ msgid "Successfully imported material <filename>%1</filename>"
  7736. #~ msgstr "Material <filename>%1</filename> importado com sucesso"
  7737. #~ msgctxt "@info:status"
  7738. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7739. #~ msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  7740. #~ msgctxt "@info:status"
  7741. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7742. #~ msgstr "Material <filename>%1</filename> exportado com sucesso"
  7743. #~ msgctxt "@label"
  7744. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7745. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7746. #~ msgctxt "@label"
  7747. #~ msgid "%1 m / ~ %2 g"
  7748. #~ msgstr "%1 m / ~ %2 g"
  7749. #~ msgctxt "@label"
  7750. #~ msgid "Hotend"
  7751. #~ msgstr "Hotend"
  7752. #~ msgctxt "@action:button"
  7753. #~ msgid "View Mode"
  7754. #~ msgstr "Modo de Visualização"
  7755. #~ msgctxt "@title:tab"
  7756. #~ msgid "Print"
  7757. #~ msgstr "Imprimir"
  7758. #~ msgctxt "@label"
  7759. #~ msgid "0%"
  7760. #~ msgstr "0%"
  7761. #~ msgctxt "@label"
  7762. #~ msgid "Empty infill will leave your model hollow with low strength."
  7763. #~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência."
  7764. #~ msgctxt "@label"
  7765. #~ msgid "20%"
  7766. #~ msgstr "20%"
  7767. #~ msgctxt "@label"
  7768. #~ msgid "Light (20%) infill will give your model an average strength."
  7769. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média."
  7770. #~ msgctxt "@label"
  7771. #~ msgid "50%"
  7772. #~ msgstr "50%"
  7773. #~ msgctxt "@label"
  7774. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7775. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média."
  7776. #~ msgctxt "@label"
  7777. #~ msgid "100%"
  7778. #~ msgstr "100%"
  7779. #~ msgctxt "@label"
  7780. #~ msgid "Solid (100%) infill will make your model completely solid."
  7781. #~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido."
  7782. #~ msgctxt "@label"
  7783. #~ msgid "Gradual"
  7784. #~ msgstr "Gradual"
  7785. #~ msgctxt "description"
  7786. #~ msgid "Provides support for writing X3G files"
  7787. #~ msgstr "Provê suporte à escrita de arquivos X3G"
  7788. #~ msgctxt "name"
  7789. #~ msgid "X3G Writer"
  7790. #~ msgstr "Gerador de X3G"
  7791. #~ msgctxt "@label"
  7792. #~ msgid "Machine Settings action"
  7793. #~ msgstr "Ação de ajustes da máquina"
  7794. #~ msgctxt "@info:whatsthis"
  7795. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7796. #~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)"
  7797. #~ msgctxt "@label"
  7798. #~ msgid "X-Ray View"
  7799. #~ msgstr "Visão de Raios X"
  7800. #~ msgctxt "@info:whatsthis"
  7801. #~ msgid "Provides the X-Ray view."
  7802. #~ msgstr "Provê a visão de Raios X."
  7803. #~ msgctxt "@label"
  7804. #~ msgid "X3D Reader"
  7805. #~ msgstr "Leitor de X3D"
  7806. #~ msgctxt "@info:whatsthis"
  7807. #~ msgid "Provides support for reading X3D files."
  7808. #~ msgstr "Provê suporte para ler arquivos X3D."
  7809. #~ msgctxt "@label"
  7810. #~ msgid "GCode Writer"
  7811. #~ msgstr "Gerador de G-Code"
  7812. #~ msgctxt "@info:whatsthis"
  7813. #~ msgid "Writes GCode to a file."
  7814. #~ msgstr "Salva o G-Code em um arquivo."
  7815. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7816. #~ msgid "Print with Doodle3D"
  7817. #~ msgstr "Imprimir com Doodle3D"
  7818. #~ msgctxt "@info:whatsthis"
  7819. #~ msgid "Shows changes since latest checked version."
  7820. #~ msgstr "Mostra as alterações desde a última versão verificada."
  7821. #~ msgctxt "@label"
  7822. #~ msgid "Profile flatener"
  7823. #~ msgstr "Achatador de Perfil"
  7824. #~ msgctxt "@info:whatsthis"
  7825. #~ msgid "Create a flattend quality changes profile."
  7826. #~ msgstr "Faz um perfil plano com as mudanças de qualidade."
  7827. #~ msgctxt "@label"
  7828. #~ msgid "USB printing"
  7829. #~ msgstr "Impressão USB"
  7830. #~ msgctxt "@info:whatsthis"
  7831. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7832. #~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  7833. #~ msgctxt "X3G Writer Plugin Description"
  7834. #~ msgid "Writes X3G to a file"
  7835. #~ msgstr "Salva em arquivo X3G."
  7836. #~ msgctxt "@label"
  7837. #~ msgid "Removable Drive Output Device Plugin"
  7838. #~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível"
  7839. #~ msgctxt "@info:whatsthis"
  7840. #~ msgid "Provides removable drive hotplugging and writing support."
  7841. #~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível."
  7842. #~ msgctxt "@info:whatsthis"
  7843. #~ msgid "Manages network connections to UltiMaker 3 printers"
  7844. #~ msgstr "Gerencia as conexões de rede em impressoras UltiMaker 3"
  7845. #~ msgctxt "@label"
  7846. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7847. #~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7848. #~ msgctxt "@label"
  7849. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7850. #~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora."
  7851. #~ msgctxt "@label"
  7852. #~ 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."
  7853. #~ 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."
  7854. #~ msgctxt "@label"
  7855. #~ msgid "Post Processing"
  7856. #~ msgstr "Pós-processamento"
  7857. #~ msgctxt "Description of plugin"
  7858. #~ msgid "Extension that allows for user created scripts for post processing"
  7859. #~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento"
  7860. #~ msgctxt "@label"
  7861. #~ msgid "Auto Save"
  7862. #~ msgstr "Salvar automaticamente"
  7863. #~ msgctxt "@info:whatsthis"
  7864. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7865. #~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações."
  7866. #~ msgctxt "@label"
  7867. #~ msgid "Slice info"
  7868. #~ msgstr "Informações de fatiamento"
  7869. #~ msgctxt "@info:whatsthis"
  7870. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7871. #~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  7872. #~ msgctxt "@info"
  7873. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7874. #~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências."
  7875. #~ msgctxt "@label"
  7876. #~ msgid "Material Profiles"
  7877. #~ msgstr "Perfis de Material"
  7878. #~ msgctxt "@info:whatsthis"
  7879. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7880. #~ msgstr "Permite ler e escrever perfis de material baseado em XML."
  7881. #~ msgctxt "@label"
  7882. #~ msgid "Legacy Cura Profile Reader"
  7883. #~ msgstr "Leitor de perfis legados do Cura"
  7884. #~ msgctxt "@info:whatsthis"
  7885. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7886. #~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura."
  7887. #~ msgctxt "@label"
  7888. #~ msgid "GCode Profile Reader"
  7889. #~ msgstr "Leitor de perfis de G-Code"
  7890. #~ msgctxt "@info:whatsthis"
  7891. #~ msgid "Provides support for importing profiles from g-code files."
  7892. #~ msgstr "Provê suporte para importar perfis de arquivos G-Code."
  7893. #~ msgctxt "@label"
  7894. #~ msgid "Layer View"
  7895. #~ msgstr "Visão de Camadas"
  7896. #~ msgctxt "@info:whatsthis"
  7897. #~ msgid "Provides the Layer view."
  7898. #~ msgstr "Provê a Visão de Camadas"
  7899. #~ msgctxt "@label"
  7900. #~ msgid "Version Upgrade 2.5 to 2.6"
  7901. #~ msgstr "Atualização de Versão de 2.5 para 2.6"
  7902. #~ msgctxt "@info:whatsthis"
  7903. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7904. #~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6."
  7905. #~ msgctxt "@label"
  7906. #~ msgid "Version Upgrade 2.1 to 2.2"
  7907. #~ msgstr "Atualização de Versão de 2.1 para 2.2"
  7908. #~ msgctxt "@info:whatsthis"
  7909. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7910. #~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  7911. #~ msgctxt "@label"
  7912. #~ msgid "Version Upgrade 2.2 to 2.4"
  7913. #~ msgstr "Atualização de versão de 2.2 para 2.4"
  7914. #~ msgctxt "@info:whatsthis"
  7915. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7916. #~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  7917. #~ msgctxt "@label"
  7918. #~ msgid "Image Reader"
  7919. #~ msgstr "Leitor de Imagens"
  7920. #~ msgctxt "@info:whatsthis"
  7921. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7922. #~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D."
  7923. #~ msgctxt "@label"
  7924. #~ msgid "CuraEngine Backend"
  7925. #~ msgstr "Backend do CuraEngine"
  7926. #~ msgctxt "@info:whatsthis"
  7927. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7928. #~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine."
  7929. #~ msgctxt "@label"
  7930. #~ msgid "Per Model Settings Tool"
  7931. #~ msgstr "Ferramenta de Ajustes por Modelo"
  7932. #~ msgctxt "@info:whatsthis"
  7933. #~ msgid "Provides the Per Model Settings."
  7934. #~ msgstr "Provê ajustes específicos por Modelo."
  7935. #~ msgctxt "@label"
  7936. #~ msgid "3MF Reader"
  7937. #~ msgstr "Leitor de 3MF"
  7938. #~ msgctxt "@info:whatsthis"
  7939. #~ msgid "Provides support for reading 3MF files."
  7940. #~ msgstr "Provê suporte à leitura de arquivos 3MF."
  7941. #~ msgctxt "@label"
  7942. #~ msgid "Solid View"
  7943. #~ msgstr "Visão Sólida"
  7944. #~ msgctxt "@info:whatsthis"
  7945. #~ msgid "Provides a normal solid mesh view."
  7946. #~ msgstr "Provê uma visão de malha sólida normal."
  7947. #~ msgctxt "@label"
  7948. #~ msgid "G-code Reader"
  7949. #~ msgstr "Leitor de G-Code"
  7950. #~ msgctxt "@info:whatsthis"
  7951. #~ msgid "Allows loading and displaying G-code files."
  7952. #~ msgstr "Permite carregar e mostrar arquivos G-Code."
  7953. #~ msgctxt "@label"
  7954. #~ msgid "Cura Profile Writer"
  7955. #~ msgstr "Gravador de Perfis do Cura"
  7956. #~ msgctxt "@info:whatsthis"
  7957. #~ msgid "Provides support for exporting Cura profiles."
  7958. #~ msgstr "Provê suporte para a exportação de perfis do Cura."
  7959. #~ msgctxt "@label"
  7960. #~ msgid "3MF Writer"
  7961. #~ msgstr "Gerador 3MF"
  7962. #~ msgctxt "@info:whatsthis"
  7963. #~ msgid "Provides support for writing 3MF files."
  7964. #~ msgstr "Provê suporte para escrever arquivos 3MF."
  7965. #~ msgctxt "@label"
  7966. #~ msgid "UltiMaker machine actions"
  7967. #~ msgstr "Ações de máquina UltiMaker"
  7968. #~ msgctxt "@info:whatsthis"
  7969. #~ msgid "Provides machine actions for UltiMaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7970. #~ msgstr "Provê ações de máquina para impressoras UltiMaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)"
  7971. #~ msgctxt "@label"
  7972. #~ msgid "Cura Profile Reader"
  7973. #~ msgstr "Leitor de Perfis do Cura"
  7974. #~ msgctxt "@info:whatsthis"
  7975. #~ msgid "Provides support for importing Cura profiles."
  7976. #~ msgstr "Provê suporte para importar perfis do Cura."
  7977. #~ msgctxt "@info"
  7978. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7979. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7980. #~ msgctxt "@label"
  7981. #~ msgid "Build Plate Shape"
  7982. #~ msgstr "Forma da Mesa"
  7983. #~ msgctxt "@option:check"
  7984. #~ msgid "Machine Center is Zero"
  7985. #~ msgstr "Centro da Mesa é Zero"
  7986. #~ msgctxt "@option:check"
  7987. #~ msgid "Heated Bed"
  7988. #~ msgstr "Mesa Aquecida"
  7989. #~ msgctxt "@label"
  7990. #~ msgid "GCode Flavor"
  7991. #~ msgstr "Tipo de G-Code"
  7992. #~ msgctxt "@label"
  7993. #~ msgid "Material Diameter"
  7994. #~ msgstr "Diâmetro do Material"
  7995. #~ msgctxt "@label"
  7996. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7997. #~ 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>"
  7998. #~ msgctxt "@item:inlistbox"
  7999. #~ msgid "UltiMaker"
  8000. #~ msgstr "UltiMaker"
  8001. #~ msgctxt "@label"
  8002. #~ msgid "Support library for scientific computing "
  8003. #~ msgstr "Biblioteca de suporte para computação científica"
  8004. #~ msgctxt "@tooltip"
  8005. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  8006. #~ msgstr "<b>Configuração de Impressão</b><br/></br/>Editar ou revisar os ajustes para o trabalho de impressão ativo."
  8007. #~ msgctxt "@tooltip"
  8008. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  8009. #~ msgstr "<b>Monitor de Impressão</b><br/><br/>Monitorar o estado da impressora conectada e o trabalho de impressão em progresso."
  8010. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  8011. #~ msgid "Automatic: %1"
  8012. #~ msgstr "Automático: %1"
  8013. #~ msgctxt "@label:PrintjobStatus"
  8014. #~ msgid "Please load a 3d model"
  8015. #~ msgstr "Por favor carregue um modelo 3D"
  8016. #~ msgctxt "@label"
  8017. #~ msgid "Print Selected Model with %1"
  8018. #~ msgid_plural "Print Selected Models With %1"
  8019. #~ msgstr[0] "Imprimir Modelo Selecionado com %1"
  8020. #~ msgstr[1] "Imprimir Modelos Selecionados Com %1"
  8021. #~ msgctxt "@info:status"
  8022. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  8023. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}"
  8024. #~ msgctxt "@label"
  8025. #~ msgid "Version Upgrade 2.4 to 2.5"
  8026. #~ msgstr "Atualizar versão 2.4 para 2.5"
  8027. #~ msgctxt "@info:whatsthis"
  8028. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  8029. #~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5"
  8030. #~ msgctxt "@info:status"
  8031. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  8032. #~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar."
  8033. #~ msgctxt "@title:window"
  8034. #~ msgid "Oops!"
  8035. #~ msgstr "Oops!"
  8036. #~ msgctxt "@label"
  8037. #~ msgid ""
  8038. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  8039. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  8040. #~ " <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"
  8041. #~ " "
  8042. #~ msgstr ""
  8043. #~ "<p>Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!</p>\n"
  8044. #~ " <p>Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.</p>\n"
  8045. #~ " <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"
  8046. #~ " "
  8047. #~ msgctxt "@label"
  8048. #~ msgid "Please enter the correct settings for your printer below:"
  8049. #~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:"
  8050. #~ msgctxt "@label"
  8051. #~ msgid "Extruder %1"
  8052. #~ msgstr "Extrusor %1"
  8053. #~ msgctxt "@label Followed by extruder selection drop-down."
  8054. #~ msgid "Print model with"
  8055. #~ msgstr "Imprimir modelo com"
  8056. #~ msgctxt "@label"
  8057. #~ msgid "You will need to restart the application for language changes to have effect."
  8058. #~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito."
  8059. #~ msgctxt "@info:tooltip"
  8060. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  8061. #~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado"
  8062. #~ msgctxt "@action:inmenu menubar:edit"
  8063. #~ msgid "Delete &Selection"
  8064. #~ msgstr "Eliminar &Seleção"
  8065. #~ msgctxt "@action:inmenu menubar:file"
  8066. #~ msgid "&Open File..."
  8067. #~ msgstr "&Abrir Arquivo..."
  8068. #~ msgctxt "@action:inmenu menubar:file"
  8069. #~ msgid "&Open Project..."
  8070. #~ msgstr "&Abrir Projeto..."
  8071. #~ msgctxt "@title:window"
  8072. #~ msgid "Multiply Model"
  8073. #~ msgstr "Multiplicar Modelo"
  8074. #~ msgctxt "@title:menu menubar:file"
  8075. #~ msgid "Save &All"
  8076. #~ msgstr "Salvar &Tudo"
  8077. #~ msgctxt "@title:window"
  8078. #~ msgid "Open file"
  8079. #~ msgstr "Abrir arquivo"
  8080. #~ msgctxt "@title:window"
  8081. #~ msgid "Open workspace"
  8082. #~ msgstr "Abrir espaço de trabalho"
  8083. #~ msgctxt "@label"
  8084. #~ msgid "Hollow"
  8085. #~ msgstr "Oco"
  8086. #~ msgctxt "@label"
  8087. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  8088. #~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência"
  8089. #~ msgctxt "@label"
  8090. #~ msgid "Light"
  8091. #~ msgstr "Leve"
  8092. #~ msgctxt "@label"
  8093. #~ msgid "Light (20%) infill will give your model an average strength"
  8094. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média"
  8095. #~ msgctxt "@label"
  8096. #~ msgid "Dense"
  8097. #~ msgstr "Denso"
  8098. #~ msgctxt "@label"
  8099. #~ msgid "Dense (50%) infill will give your model an above average strength"
  8100. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média"
  8101. #~ msgctxt "@label"
  8102. #~ msgid "Solid"
  8103. #~ msgstr "Sólido"
  8104. #~ msgctxt "@label"
  8105. #~ msgid "Solid (100%) infill will make your model completely solid"
  8106. #~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço."
  8107. #~ msgctxt "@label"
  8108. #~ msgid "Enable Support"
  8109. #~ msgstr "Habilitar Suporte"
  8110. #~ msgctxt "@label"
  8111. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  8112. #~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes."
  8113. #~ msgctxt "@label"
  8114. #~ msgid "Need help improving your prints? Read the <a href='%1'>UltiMaker Troubleshooting Guides</a>"
  8115. #~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o <a href='%1'>Guia de Solução de Problemas da UltiMaker</a>."
  8116. #~ msgctxt "@info:status"
  8117. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  8118. #~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora."
  8119. #~ msgctxt "@info:status"
  8120. #~ msgid "Connected over the network to {0}."
  8121. #~ msgstr "Conectado pela rede a {0}."
  8122. #~ msgctxt "@info:status"
  8123. #~ msgid "Connected over the network to {0}. No access to control the printer."
  8124. #~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora."
  8125. #~ msgctxt "@info:status"
  8126. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  8127. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora."
  8128. #~ msgctxt "@label"
  8129. #~ msgid "You made changes to the following setting(s)/override(s):"
  8130. #~ msgstr "Foram feitas alterações nos seguintes ajustes:"
  8131. #~ msgctxt "@window:title"
  8132. #~ msgid "Switched profiles"
  8133. #~ msgstr "Perfis trocados"
  8134. #~ msgctxt "@label"
  8135. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  8136. #~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?"
  8137. #~ msgctxt "@label"
  8138. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  8139. #~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão."
  8140. #~ msgctxt "@label"
  8141. #~ msgid "Cost per Meter (Approx.)"
  8142. #~ msgstr "Custo por Metro (Aprox.)"
  8143. #~ msgctxt "@label"
  8144. #~ msgid "%1/m"
  8145. #~ msgstr "%1/m"
  8146. #~ msgctxt "@info:tooltip"
  8147. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  8148. #~ 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."
  8149. #~ msgctxt "@action:button"
  8150. #~ msgid "Display five top layers in layer view"
  8151. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas"
  8152. #~ msgctxt "@info:tooltip"
  8153. #~ msgid "Should only the top layers be displayed in layerview?"
  8154. #~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?"
  8155. #~ msgctxt "@option:check"
  8156. #~ msgid "Only display top layer(s) in layer view"
  8157. #~ msgstr "Somente exibir as camadas superiores na visão de camadas"
  8158. #~ msgctxt "@label"
  8159. #~ msgid "Opening files"
  8160. #~ msgstr "Abrindo arquivos..."
  8161. #~ msgctxt "@label"
  8162. #~ msgid "Printer Monitor"
  8163. #~ msgstr "Monitor da Impressora"
  8164. #~ msgctxt "@label"
  8165. #~ msgid "Temperatures"
  8166. #~ msgstr "Temperaturas"
  8167. #~ msgctxt "@label:PrintjobStatus"
  8168. #~ msgid "Preparing to slice..."
  8169. #~ msgstr "Preparando para fatiar..."
  8170. #~ msgctxt "@window:title"
  8171. #~ msgid "Changes on the Printer"
  8172. #~ msgstr "Alterações na Impressora"
  8173. #~ msgctxt "@action:inmenu"
  8174. #~ msgid "&Duplicate Model"
  8175. #~ msgstr "&Duplicar Modelo"
  8176. #~ msgctxt "@label"
  8177. #~ msgid "Helper Parts:"
  8178. #~ msgstr "Partes dos Assistentes:"
  8179. #~ msgctxt "@label"
  8180. #~ 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."
  8181. #~ 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."
  8182. #~ msgctxt "@label"
  8183. #~ msgid "Don't print support"
  8184. #~ msgstr "Não imprimir suporte"
  8185. #~ msgctxt "@label"
  8186. #~ msgid "Print support using %1"
  8187. #~ msgstr "Imprimir suporte usando %1"
  8188. #~ msgctxt "@label:listbox"
  8189. #~ msgid "Printer:"
  8190. #~ msgstr "Impressora:"
  8191. #~ msgctxt "@info:status"
  8192. #~ msgid "Successfully imported profiles {0}"
  8193. #~ msgstr "Perfis {0} importados com sucesso"
  8194. #~ msgctxt "@label"
  8195. #~ msgid "Scripts"
  8196. #~ msgstr "Scripts"
  8197. #~ msgctxt "@label"
  8198. #~ msgid "Active Scripts"
  8199. #~ msgstr "Scripts Ativos"
  8200. #~ msgctxt "@label"
  8201. #~ msgid "Done"
  8202. #~ msgstr "Feito"
  8203. #~ msgctxt "@item:inlistbox"
  8204. #~ msgid "English"
  8205. #~ msgstr "Inglês"
  8206. #~ msgctxt "@item:inlistbox"
  8207. #~ msgid "Finnish"
  8208. #~ msgstr "Finlandês"
  8209. #~ msgctxt "@item:inlistbox"
  8210. #~ msgid "French"
  8211. #~ msgstr "Francês"
  8212. #~ msgctxt "@item:inlistbox"
  8213. #~ msgid "German"
  8214. #~ msgstr "Alemão"
  8215. #~ msgctxt "@item:inlistbox"
  8216. #~ msgid "Italian"
  8217. #~ msgstr "Italiano"
  8218. #~ msgctxt "@item:inlistbox"
  8219. #~ msgid "Dutch"
  8220. #~ msgstr "Holandês"
  8221. #~ msgctxt "@item:inlistbox"
  8222. #~ msgid "Spanish"
  8223. #~ msgstr "Espanhol"
  8224. #~ msgctxt "@label"
  8225. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  8226. #~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?"
  8227. #~ msgctxt "@label:"
  8228. #~ msgid "Print Again"
  8229. #~ msgstr "Imprimir Novamente"