cura.po 388 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.0\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0200\n"
  10. "PO-Revision-Date: 2022-04-28 03:56+0200\n"
  11. "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
  12. "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
  13. "Language: pt_BR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 3.0.1\n"
  19. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PrepareStage/__init__.py:12
  20. msgctxt "@item:inmenu"
  21. msgid "Prepare"
  22. msgstr "Preparar"
  23. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileWriter/__init__.py:14 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileReader/__init__.py:14
  24. msgctxt "@item:inlistbox"
  25. msgid "Cura Profile"
  26. msgstr "Perfil do Cura"
  27. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:15
  28. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  29. msgid "Open Compressed Triangle Mesh"
  30. msgstr "Open Compressed Triangle Mesh"
  31. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:19
  32. msgctxt "@item:inlistbox"
  33. msgid "COLLADA Digital Asset Exchange"
  34. msgstr "Câmbio de Ativos Digitais COLLADA"
  35. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:23
  36. msgctxt "@item:inlistbox"
  37. msgid "glTF Binary"
  38. msgstr "Binário glTF"
  39. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:27
  40. msgctxt "@item:inlistbox"
  41. msgid "glTF Embedded JSON"
  42. msgstr "glTF Embutido JSON"
  43. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:36
  44. msgctxt "@item:inlistbox"
  45. msgid "Stanford Triangle Format"
  46. msgstr "Formato de Triângulos de Stanford"
  47. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:40
  48. msgctxt "@item:inlistbox"
  49. msgid "Compressed COLLADA Digital Asset Exchange"
  50. msgstr "Câmbio de Ativos Digitais COLLADA Comprimido"
  51. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  52. msgctxt "@info"
  53. msgid "Could not access update information."
  54. msgstr "Não foi possível acessar informação de atualização."
  55. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  56. #, python-brace-format
  57. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  58. 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}."
  59. 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}."
  60. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  61. #, python-format
  62. msgctxt "@info:title The %s gets replaced with the printer name."
  63. msgid "New %s stable firmware available"
  64. msgstr "Novo firmware estável de %s disponível"
  65. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  66. msgctxt "@action:button"
  67. msgid "How to update"
  68. msgstr "Como atualizar"
  69. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/__init__.py:14
  70. msgctxt "@item:inmenu"
  71. msgid "Monitor"
  72. msgstr "Monitor"
  73. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  74. msgctxt "@action:button Preceded by 'Ready to'."
  75. msgid "Save to Removable Drive"
  76. msgstr "Salvar em Unidade Removível"
  77. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  78. #, python-brace-format
  79. msgctxt "@item:inlistbox"
  80. msgid "Save to Removable Drive {0}"
  81. msgstr "Salvar em Unidade Removível {0}"
  82. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  83. msgctxt "@info:status"
  84. msgid "There are no file formats available to write with!"
  85. msgstr "Não há formatos de arquivo disponíveis com os quais escrever!"
  86. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  87. #, python-brace-format
  88. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  89. msgid "Saving to Removable Drive <filename>{0}</filename>"
  90. msgstr "Salvando na Unidade Removível <filename>{0}</filename>"
  91. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  92. msgctxt "@info:title"
  93. msgid "Saving"
  94. msgstr "Salvando"
  95. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108 /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  96. #, python-brace-format
  97. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  98. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  99. msgstr "Não foi possível salvar em <filename>{0}</filename>: <message>{1}</message>"
  100. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  101. #, python-brace-format
  102. msgctxt "@info:status Don't translate the tag {device}!"
  103. msgid "Could not find a file name when trying to write to {device}."
  104. msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}."
  105. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140 /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  106. #, python-brace-format
  107. msgctxt "@info:status"
  108. msgid "Could not save to removable drive {0}: {1}"
  109. msgstr "Não foi possível salvar em unidade removível {0}: {1}"
  110. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141 /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161 /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1782
  111. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:156 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:166
  112. msgctxt "@info:title"
  113. msgid "Error"
  114. msgstr "Erro"
  115. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  116. #, python-brace-format
  117. msgctxt "@info:status"
  118. msgid "Saved to Removable Drive {0} as {1}"
  119. msgstr "Salvo em Unidade Removível {0} como {1}"
  120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  121. msgctxt "@info:title"
  122. msgid "File Saved"
  123. msgstr "Arquivo Salvo"
  124. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  125. msgctxt "@action:button"
  126. msgid "Eject"
  127. msgstr "Ejetar"
  128. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  129. #, python-brace-format
  130. msgctxt "@action"
  131. msgid "Eject removable device {0}"
  132. msgstr "Ejetar dispositivo removível {0}"
  133. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  134. #, python-brace-format
  135. msgctxt "@info:status"
  136. msgid "Ejected {0}. You can now safely remove the drive."
  137. msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura."
  138. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  139. msgctxt "@info:title"
  140. msgid "Safely Remove Hardware"
  141. msgstr "Remover Hardware com Segurança"
  142. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  143. #, python-brace-format
  144. msgctxt "@info:status"
  145. msgid "Failed to eject {0}. Another program may be using the drive."
  146. msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade."
  147. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177 /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1770 /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:217
  148. msgctxt "@info:title"
  149. msgid "Warning"
  150. msgstr "Aviso"
  151. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  152. msgctxt "@item:intext"
  153. msgid "Removable Drive"
  154. msgstr "Unidade Removível"
  155. #: /home/remco/dev/code/ulti/trans/Cura/plugins/AMFReader/__init__.py:15
  156. msgctxt "@item:inlistbox"
  157. msgid "AMF File"
  158. msgstr "Arquivo AMF"
  159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPReader/__init__.py:22 /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/__init__.py:28
  160. msgctxt "@item:inlistbox"
  161. msgid "Ultimaker Format Package"
  162. msgstr "Pacote de Formato da Ultimaker"
  163. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  164. msgctxt "@label"
  165. msgid "Per Model Settings"
  166. msgstr "Ajustes por Modelo"
  167. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  168. msgctxt "@info:tooltip"
  169. msgid "Configure Per Model Settings"
  170. msgstr "Configurar ajustes por Modelo"
  171. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  172. msgctxt "@action"
  173. msgid "Update Firmware"
  174. msgstr "Atualizar Firmware"
  175. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  176. #, python-brace-format
  177. msgctxt "@info:status"
  178. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  179. msgstr "O Cura detectou perfis de material que não estão instalados ainda na impressora host do grupo {0}."
  180. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  181. msgctxt "@info:title"
  182. msgid "Sending materials to printer"
  183. msgstr "Enviando material para a impressora"
  184. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  185. #, python-brace-format
  186. msgctxt "@info:status"
  187. 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."
  188. 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."
  189. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  190. msgctxt "@info:title"
  191. msgid "Not a group host"
  192. msgstr "Não é host de grupo"
  193. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  194. msgctxt "@action"
  195. msgid "Configure group"
  196. msgstr "Configurar grupo"
  197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  198. msgctxt "@info:status"
  199. msgid "Sending Print Job"
  200. msgstr "Enviando Trabalho de Impressão"
  201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  202. msgctxt "@info:status"
  203. msgid "Uploading print job to printer."
  204. msgstr "Transferindo trabalho de impressão para a impressora."
  205. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  206. msgctxt "@info:status"
  207. msgid "Print job queue is full. The printer can't accept a new job."
  208. msgstr "A fila de trabalhos de impressão está cheia. A impressora não pode aceitar novo trabalho."
  209. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  210. msgctxt "@info:title"
  211. msgid "Queue Full"
  212. msgstr "Fila Cheia"
  213. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  214. msgctxt "@info:status"
  215. msgid "Please wait until the current job has been sent."
  216. msgstr "Por favor espere até que o trabalho atual tenha sido enviado."
  217. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  218. msgctxt "@info:title"
  219. msgid "Print error"
  220. msgstr "Erro de impressão"
  221. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  222. msgctxt "@info:status"
  223. msgid "Print job was successfully sent to the printer."
  224. msgstr "Trabalho de impressão enviado à impressora com sucesso."
  225. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  226. msgctxt "@info:title"
  227. msgid "Data Sent"
  228. msgstr "Dados Enviados"
  229. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  230. #, python-brace-format
  231. msgctxt "@info:status"
  232. msgid ""
  233. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  234. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  235. msgstr ""
  236. "Sua impressora <b>{printer_name}</b> poderia estar conectada via nuvem.\n"
  237. " Gerencie sua fila de impressão e monitore suas impressoras de qualquer lugar conectando sua impressora à Digital Factory"
  238. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  239. msgctxt "@info:title"
  240. msgid "Are you ready for cloud printing?"
  241. msgstr "Você está pronto para a impressão de nuvem?"
  242. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  243. msgctxt "@action"
  244. msgid "Get started"
  245. msgstr "Começar"
  246. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  247. msgctxt "@action"
  248. msgid "Learn more"
  249. msgstr "Saiba mais"
  250. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  251. msgctxt "@info:status"
  252. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  253. 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."
  254. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  255. msgctxt "@info:title"
  256. msgid "Update your printer"
  257. msgstr "Atualize sua impressora"
  258. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  259. msgctxt "@info:text"
  260. msgid "Could not upload the data to the printer."
  261. msgstr "Não foi possível transferir os dados para a impressora."
  262. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  263. msgctxt "@info:title"
  264. msgid "Network error"
  265. msgstr "Erro de rede"
  266. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  267. msgctxt "@action:button Preceded by 'Ready to'."
  268. msgid "Print over network"
  269. msgstr "Imprimir pela rede"
  270. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  271. msgctxt "@properties:tooltip"
  272. msgid "Print over network"
  273. msgstr "Imprime pela rede"
  274. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  275. msgctxt "@info:status"
  276. msgid "Connected over the network"
  277. msgstr "Conectado pela rede"
  278. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  279. msgctxt "@info:status"
  280. msgid "tomorrow"
  281. msgstr "amanhã"
  282. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  283. msgctxt "@info:status"
  284. msgid "today"
  285. msgstr "hoje"
  286. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  287. msgctxt "@action"
  288. msgid "Connect via Network"
  289. msgstr "Conectar pela rede"
  290. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  291. msgctxt "info:status"
  292. msgid "New printer detected from your Ultimaker account"
  293. msgid_plural "New printers detected from your Ultimaker account"
  294. msgstr[0] "Nova impressora detectada na sua conta Ultimaker"
  295. msgstr[1] "Novas impressoras detectadas na sua conta Ultimaker"
  296. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  297. #, python-brace-format
  298. msgctxt "info:status Filled in with printer name and printer model."
  299. msgid "Adding printer {name} ({model}) from your account"
  300. msgstr "Adicionando impressora {name} ({model}) da sua conta"
  301. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  302. #, python-brace-format
  303. msgctxt "info:{0} gets replaced by a number of printers"
  304. msgid "... and {0} other"
  305. msgid_plural "... and {0} others"
  306. msgstr[0] "... e {0} outra"
  307. msgstr[1] "... e {0} outras"
  308. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  309. msgctxt "info:status"
  310. msgid "Printers added from Digital Factory:"
  311. msgstr "Impressoras adicionadas da Digital Factory:"
  312. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  313. msgctxt "info:status"
  314. msgid "A cloud connection is not available for a printer"
  315. msgid_plural "A cloud connection is not available for some printers"
  316. msgstr[0] "Conexão de nuvem não está disponível para uma impressora"
  317. msgstr[1] "Conexão de nuvem não está disponível para algumas impressoras"
  318. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  319. msgctxt "info:status"
  320. msgid "This printer is not linked to the Digital Factory:"
  321. msgid_plural "These printers are not linked to the Digital Factory:"
  322. msgstr[0] "Esta impressora não está ligada à Digital Factory:"
  323. msgstr[1] "Estas impressoras não estão ligadas à Digital Factory:"
  324. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  325. msgctxt "info:name"
  326. msgid "Ultimaker Digital Factory"
  327. msgstr "Ultimaker Digital Factory"
  328. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  329. #, python-brace-format
  330. msgctxt "info:status"
  331. msgid "To establish a connection, please visit the {website_link}"
  332. msgstr "Para estabelecer uma conexão, por favor visite o {website_link}"
  333. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  334. msgctxt "@action:button"
  335. msgid "Keep printer configurations"
  336. msgstr "Manter configurações da impressora"
  337. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  338. msgctxt "@action:button"
  339. msgid "Remove printers"
  340. msgstr "Remover impressoras"
  341. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  342. #, python-brace-format
  343. msgctxt "@message {printer_name} is replaced with the name of the printer"
  344. msgid "{printer_name} will be removed until the next account sync."
  345. msgstr "{printer_name} será removida até a próxima sincronização de conta."
  346. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  347. #, python-brace-format
  348. msgctxt "@message {printer_name} is replaced with the name of the printer"
  349. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  350. msgstr "Para remover {printer_name} permanentemente, visite {digital_factory_link}"
  351. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  352. #, python-brace-format
  353. msgctxt "@message {printer_name} is replaced with the name of the printer"
  354. msgid "Are you sure you want to remove {printer_name} temporarily?"
  355. msgstr "Tem certeza que quer remover {printer_name} temporariamente?"
  356. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  357. msgctxt "@title:window"
  358. msgid "Remove printers?"
  359. msgstr "Remover impressoras?"
  360. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  361. #, python-brace-format
  362. msgctxt "@label"
  363. msgid ""
  364. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  365. "Are you sure you want to continue?"
  366. msgid_plural ""
  367. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  368. "Are you sure you want to continue?"
  369. msgstr[0] ""
  370. "Você está prestes a remover {0} impressora do Cura. Esta ação não pode ser desfeita.\n"
  371. "Tem certeza que quer continuar?"
  372. msgstr[1] ""
  373. "Você está prestes a remover {0} impressoras do Cura. Esta ação não pode ser desfeita.\n"
  374. "Tem certeza que quer continuar?"
  375. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  376. msgctxt "@label"
  377. msgid ""
  378. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  379. "Are you sure you want to continue?"
  380. msgstr ""
  381. "Você está prestes a remover todas as impressoras do Cura. Esta ação não pode ser desfeita.\n"
  382. "Tem certeza que quer continuar?"
  383. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  384. msgctxt "@action:button"
  385. msgid "Print via cloud"
  386. msgstr "Imprimir pela nuvem"
  387. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  388. msgctxt "@properties:tooltip"
  389. msgid "Print via cloud"
  390. msgstr "Imprimir pela nuvem"
  391. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  392. msgctxt "@info:status"
  393. msgid "Connected via cloud"
  394. msgstr "Conectado pela nuvem"
  395. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  396. msgctxt "@action:button"
  397. msgid "Monitor print"
  398. msgstr "Monitorar impressão"
  399. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  400. msgctxt "@action:tooltip"
  401. msgid "Track the print in Ultimaker Digital Factory"
  402. msgstr "Rastrear a impressão na Ultimaker Digital Factory"
  403. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  404. #, python-brace-format
  405. msgctxt "@error:send"
  406. msgid "Unknown error code when uploading print job: {0}"
  407. msgstr "Código de erro desconhecido ao transferir trabalho de impressão: {0}"
  408. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:31
  409. msgctxt "@info:title"
  410. msgid "3D Model Assistant"
  411. msgstr "Assistente de Modelo 3D"
  412. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:97
  413. #, python-brace-format
  414. msgctxt "@info:status"
  415. msgid ""
  416. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  417. "<p>{model_names}</p>\n"
  418. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  419. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  420. msgstr ""
  421. "<p>Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:</p>\n"
  422. "<p>{model_names}</p>\n"
  423. "<p>Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.</p>\n"
  424. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guia de qualidade de impressão</a></p>"
  425. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:129
  426. msgctxt "@info:status"
  427. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  428. msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada."
  429. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:130
  430. msgctxt "@info:title"
  431. msgid "Simulation View"
  432. msgstr "Visão Simulada"
  433. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:133
  434. msgctxt "@info:status"
  435. msgid "Nothing is shown because you need to slice first."
  436. msgstr "Nada está exibido porque você precisa fatiar primeiro."
  437. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:134
  438. msgctxt "@info:title"
  439. msgid "No layers to show"
  440. msgstr "Não há camadas a exibir"
  441. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:136 /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:74
  442. msgctxt "@info:option_text"
  443. msgid "Do not show this message again"
  444. msgstr "Não mostrar essa mensagem novamente"
  445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/__init__.py:15
  446. msgctxt "@item:inlistbox"
  447. msgid "Layer view"
  448. msgstr "Visão de Camadas"
  449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  450. msgctxt "@error:not supported"
  451. msgid "GCodeWriter does not support non-text mode."
  452. msgstr "O GCodeWriter não suporta modo binário."
  453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:80 /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  454. msgctxt "@warning:status"
  455. msgid "Please prepare G-code before exporting."
  456. msgstr "Por favor prepare o G-Code antes de exportar."
  457. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/__init__.py:16 /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeProfileReader/__init__.py:14 /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:14
  458. msgctxt "@item:inlistbox"
  459. msgid "G-code File"
  460. msgstr "Arquivo G-Code"
  461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  462. msgctxt "@error:zip"
  463. msgid "Error writing 3mf file."
  464. msgstr "Erro ao escrever arquivo 3mf."
  465. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  466. msgctxt "@error:zip"
  467. msgid "3MF Writer plug-in is corrupt."
  468. msgstr "O complemento de Escrita 3MF está corrompido."
  469. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  470. msgctxt "@error"
  471. msgid "There is no workspace yet to write. Please add a printer first."
  472. msgstr "Não existe espaço de trabalho ainda para a escrita. Por favor adicione uma impressora primeiro."
  473. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64 /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  474. msgctxt "@error:zip"
  475. msgid "No permission to write the workspace here."
  476. msgstr "Sem permissão para gravar o espaço de trabalho aqui."
  477. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  478. msgctxt "@error:zip"
  479. msgid "The operating system does not allow saving a project file to this location or with this file name."
  480. msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo."
  481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:26
  482. msgctxt "@item:inlistbox"
  483. msgid "3MF file"
  484. msgstr "Arquivo 3MF"
  485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:34
  486. msgctxt "@item:inlistbox"
  487. msgid "Cura Project 3MF file"
  488. msgstr "Arquivo de Projeto 3MF do Cura"
  489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzReader/__init__.py:17 /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/__init__.py:17
  490. msgctxt "@item:inlistbox"
  491. msgid "Compressed G-code File"
  492. msgstr "Arquivo de G-Code Comprimido"
  493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  494. msgctxt "@message"
  495. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  496. msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker."
  497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  498. msgctxt "@message:title"
  499. msgid "Slicing failed"
  500. msgstr "Fatiamento falhado"
  501. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  502. msgctxt "@message:button"
  503. msgid "Report a bug"
  504. msgstr "Relatar um bug"
  505. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  506. msgctxt "@message:description"
  507. msgid "Report a bug on Ultimaker Cura's issue tracker."
  508. msgstr "Relatar um bug no issue tracker do Ultimaker Cura."
  509. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  510. msgctxt "@info:status"
  511. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  512. msgstr "Não foi possível fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
  513. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  514. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  515. msgctxt "@info:title"
  516. msgid "Unable to slice"
  517. msgstr "Não foi possível fatiar"
  518. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  519. #, python-brace-format
  520. msgctxt "@info:status"
  521. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  522. msgstr "Não foi possível fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
  523. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  524. #, python-brace-format
  525. msgctxt "@info:status"
  526. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  527. 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}"
  528. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  529. msgctxt "@info:status"
  530. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  531. msgstr "Não foi possível fatiar porque a torre de purga ou posição de purga são inválidas."
  532. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  533. #, python-format
  534. msgctxt "@info:status"
  535. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  536. msgstr "Não foi possível fatiar porque há objetos associados com o Extrusor desabilitado %s."
  537. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  538. msgctxt "@info:status"
  539. msgid ""
  540. "Please review settings and check if your models:\n"
  541. "- Fit within the build volume\n"
  542. "- Are assigned to an enabled extruder\n"
  543. "- Are not all set as modifier meshes"
  544. msgstr ""
  545. "Por favor revise os ajustes e verifique se seus modelos:\n"
  546. "- Cabem dentro do volume de impressão\n"
  547. "- Estão associados a um extrusor habilitado\n"
  548. "- Não estão todos configurados como malhas de modificação"
  549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  550. msgctxt "@info:status"
  551. msgid "Processing Layers"
  552. msgstr "Processando Camadas"
  553. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  554. msgctxt "@info:title"
  555. msgid "Information"
  556. msgstr "Informação"
  557. #: /home/remco/dev/code/ulti/trans/Cura/plugins/X3DReader/__init__.py:13
  558. msgctxt "@item:inlistbox"
  559. msgid "X3D File"
  560. msgstr "Arquivo X3D"
  561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:14
  562. msgctxt "@item:inlistbox"
  563. msgid "JPG Image"
  564. msgstr "Imagem JPG"
  565. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:18
  566. msgctxt "@item:inlistbox"
  567. msgid "JPEG Image"
  568. msgstr "Imagem JPEG"
  569. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:22
  570. msgctxt "@item:inlistbox"
  571. msgid "PNG Image"
  572. msgstr "Imagem PNG"
  573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:26
  574. msgctxt "@item:inlistbox"
  575. msgid "BMP Image"
  576. msgstr "Imagem BMP"
  577. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:30
  578. msgctxt "@item:inlistbox"
  579. msgid "GIF Image"
  580. msgstr "Imagem GIF"
  581. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:713
  582. msgctxt "@label"
  583. msgid "Nozzle"
  584. msgstr "Bico"
  585. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:544
  586. #, python-brace-format
  587. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  588. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  589. 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."
  590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  591. msgctxt "@info:title"
  592. msgid "Open Project File"
  593. msgstr "Abrir Arquivo de Projeto"
  594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:644
  595. #, python-brace-format
  596. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  597. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  598. msgstr "O arquivo de projeto <filename>{0}</filename> tornou-se subitamente inacessível: <message>{1}</message>."
  599. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:645 /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:653
  600. msgctxt "@info:title"
  601. msgid "Can't Open Project File"
  602. msgstr "Não Foi Possível Abrir o Arquivo de Projeto"
  603. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:652
  604. #, python-brace-format
  605. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  606. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  607. msgstr "Arquivo de projeto <filename>{0}</filename> está corrompido: <message>{1}</message>."
  608. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:705
  609. #, python-brace-format
  610. msgctxt "@info:error Don't translate the XML tag <filename>!"
  611. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  612. msgstr "O arquivo de projeto <filename>{0}</filename> foi feito usando perfis que são desconhecidos para esta versão do Ultimaker Cura."
  613. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  614. msgctxt "@title:tab"
  615. msgid "Recommended"
  616. msgstr "Recomendado"
  617. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  618. msgctxt "@title:tab"
  619. msgid "Custom"
  620. msgstr "Personalizado"
  621. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:27 /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:33
  622. msgctxt "@item:inlistbox"
  623. msgid "3MF File"
  624. msgstr "Arquivo 3MF"
  625. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:57 /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:72 /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:94 /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:149
  626. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:159
  627. msgctxt "@info:error"
  628. msgid "Can't write to UFP file:"
  629. msgstr "Não foi possível escrever no arquivo UFP:"
  630. #: /home/remco/dev/code/ulti/trans/Cura/plugins/LegacyProfileReader/__init__.py:14
  631. msgctxt "@item:inlistbox"
  632. msgid "Cura 15.04 profiles"
  633. msgstr "Perfis do Cura 15.04"
  634. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  635. msgctxt "@info:title"
  636. msgid "Backups"
  637. msgstr "Backups"
  638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  639. msgctxt "@info:backup_status"
  640. msgid "There was an error while uploading your backup."
  641. msgstr "Houve um erro ao transferir seu backup."
  642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  643. msgctxt "@info:backup_status"
  644. msgid "Creating your backup..."
  645. msgstr "Criando seu backup..."
  646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  647. msgctxt "@info:backup_status"
  648. msgid "There was an error while creating your backup."
  649. msgstr "Houve um erro ao criar seu backup."
  650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  651. msgctxt "@info:backup_status"
  652. msgid "Uploading your backup..."
  653. msgstr "Enviando seu backup..."
  654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  655. msgctxt "@info:backup_status"
  656. msgid "Your backup has finished uploading."
  657. msgstr "Seu backup terminou de ser enviado."
  658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  659. msgctxt "@error:file_size"
  660. msgid "The backup exceeds the maximum file size."
  661. msgstr "O backup excede o tamanho máximo de arquivo."
  662. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  663. msgctxt "@item:inmenu"
  664. msgid "Manage backups"
  665. msgstr "Gerenciar backups"
  666. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126 /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:122 /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:159
  667. msgctxt "@info:title"
  668. msgid "Backup"
  669. msgstr "Backup"
  670. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DriveApiService.py:86 /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  671. msgctxt "@info:backup_status"
  672. msgid "There was an error trying to restore your backup."
  673. msgstr "Houve um erro ao tentar restaurar seu backup."
  674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  675. msgctxt "@text"
  676. msgid "Unable to read example data file."
  677. msgstr "Não foi possível ler o arquivo de dados de exemplo."
  678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  679. msgctxt "@error:not supported"
  680. msgid "GCodeGzWriter does not support text mode."
  681. msgstr "O GCodeGzWriter não suporta modo binário."
  682. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  683. msgctxt "@item:inmenu"
  684. msgid "Post Processing"
  685. msgstr "Pós-Processamento"
  686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  687. msgctxt "@item:inmenu"
  688. msgid "Modify G-Code"
  689. msgstr "Modificar G-Code"
  690. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:12
  691. msgctxt "@label"
  692. msgid "Support Blocker"
  693. msgstr "Bloqueador de Suporte"
  694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:13
  695. msgctxt "@info:tooltip"
  696. msgid "Create a volume in which supports are not printed."
  697. msgstr "Cria um volume em que os suportes não são impressos."
  698. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PreviewStage/__init__.py:13
  699. msgctxt "@item:inmenu"
  700. msgid "Preview"
  701. msgstr "Pré-visualização"
  702. #: /home/remco/dev/code/ulti/trans/Cura/plugins/XRayView/__init__.py:12
  703. msgctxt "@item:inlistbox"
  704. msgid "X-Ray view"
  705. msgstr "Visão de Raios-X"
  706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  707. msgctxt "@action"
  708. msgid "Level build plate"
  709. msgstr "Nivelar mesa"
  710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  711. msgctxt "@action"
  712. msgid "Select upgrades"
  713. msgstr "Selecionar Atualizações"
  714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:43
  715. msgctxt "@label:property"
  716. msgid "Unknown Package"
  717. msgstr "Pacote Desconhecido"
  718. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:66
  719. msgctxt "@label:property"
  720. msgid "Unknown Author"
  721. msgstr "Autor Desconhecido"
  722. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:116
  723. msgctxt "@info:error"
  724. msgid "Could not interpret the server's response."
  725. msgstr "Não foi possível interpretar a resposta de servidor."
  726. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:146
  727. msgctxt "@info:error"
  728. msgid "Could not reach Marketplace."
  729. msgstr "Não foi possível conectar ao Marketplace."
  730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:28
  731. msgctxt "@label"
  732. msgid "Installed Plugins"
  733. msgstr "Complementos Instalados"
  734. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:29
  735. msgctxt "@label"
  736. msgid "Installed Materials"
  737. msgstr "Materiais Instalados"
  738. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:33
  739. msgctxt "@label"
  740. msgid "Bundled Plugins"
  741. msgstr "Complementos Empacotados"
  742. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:34
  743. msgctxt "@label"
  744. msgid "Bundled Materials"
  745. msgstr "Materiais Empacotados"
  746. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:71
  747. msgctxt "@info:status"
  748. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  749. msgstr "As áreas ressaltadas indicam superfícies faltantes ou incorretas. Conserte seu modelo e o abra novamente no Cura."
  750. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:73
  751. msgctxt "@info:title"
  752. msgid "Model Errors"
  753. msgstr "Erros de Modelo"
  754. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:80 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:71 /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  755. msgctxt "@action:button"
  756. msgid "Learn more"
  757. msgstr "Saiba mais"
  758. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/__init__.py:12
  759. msgctxt "@item:inmenu"
  760. msgid "Solid view"
  761. msgstr "Visão sólida"
  762. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:350
  763. msgctxt "@info:status"
  764. msgid "Parsing G-code"
  765. msgstr "Interpretando G-Code"
  766. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:352 /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:506
  767. msgctxt "@info:title"
  768. msgid "G-code Details"
  769. msgstr "Detalhes do G-Code"
  770. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:504
  771. msgctxt "@info:generic"
  772. 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."
  773. 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."
  774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:18
  775. msgctxt "@item:inlistbox"
  776. msgid "G File"
  777. msgstr "Arquivo G"
  778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  779. msgctxt "@action"
  780. msgid "Machine Settings"
  781. msgstr "Ajustes da Máquina"
  782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  783. msgctxt "@item:inmenu"
  784. msgid "USB printing"
  785. msgstr "Impressão USB"
  786. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  787. msgctxt "@action:button Preceded by 'Ready to'."
  788. msgid "Print via USB"
  789. msgstr "Imprimir pela USB"
  790. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  791. msgctxt "@info:tooltip"
  792. msgid "Print via USB"
  793. msgstr "Imprimir pela USB"
  794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  795. msgctxt "@info:status"
  796. msgid "Connected via USB"
  797. msgstr "Conectado via USB"
  798. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  799. msgctxt "@label"
  800. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  801. msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?"
  802. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  803. msgctxt "@message"
  804. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  805. 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."
  806. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  807. msgctxt "@message"
  808. msgid "Print in Progress"
  809. msgstr "Impressão em Progresso"
  810. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:529
  811. msgctxt "@info:progress"
  812. msgid "Loading machines..."
  813. msgstr "Carregando máquinas..."
  814. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:536
  815. msgctxt "@info:progress"
  816. msgid "Setting up preferences..."
  817. msgstr "Ajustando preferências..."
  818. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:678
  819. msgctxt "@info:progress"
  820. msgid "Initializing Active Machine..."
  821. msgstr "Inicializando Máquina Ativa..."
  822. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:802
  823. msgctxt "@info:progress"
  824. msgid "Initializing machine manager..."
  825. msgstr "Inicializando gestor de máquinas..."
  826. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:816
  827. msgctxt "@info:progress"
  828. msgid "Initializing build volume..."
  829. msgstr "Inicializando volume de impressão..."
  830. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:884
  831. msgctxt "@info:progress"
  832. msgid "Setting up scene..."
  833. msgstr "Configurando cena..."
  834. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:920
  835. msgctxt "@info:progress"
  836. msgid "Loading interface..."
  837. msgstr "Carregando interface..."
  838. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:925
  839. msgctxt "@info:progress"
  840. msgid "Initializing engine..."
  841. msgstr "Inicializando motor..."
  842. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1242
  843. #, python-format
  844. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  845. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  846. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  847. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1768
  848. #, python-brace-format
  849. msgctxt "@info:status"
  850. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  851. msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}"
  852. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1780
  853. #, python-brace-format
  854. msgctxt "@info:status"
  855. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  856. msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}"
  857. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:42 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:338 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:11
  858. msgctxt "@label"
  859. msgid "Default"
  860. msgstr "Default"
  861. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:45 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:14
  862. msgctxt "@label"
  863. msgid "Visual"
  864. msgstr "Visual"
  865. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:46 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:15
  866. msgctxt "@text"
  867. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  868. msgstr "O perfil visual é projetado para imprimir protótipos e modelos virtuais com o objetivo de alta qualidade visual e de superfície."
  869. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:49 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:18
  870. msgctxt "@label"
  871. msgid "Engineering"
  872. msgstr "Engenharia"
  873. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:50 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:19
  874. msgctxt "@text"
  875. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  876. 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."
  877. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:53 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:22
  878. msgctxt "@label"
  879. msgid "Draft"
  880. msgstr "Rascunho"
  881. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:54 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:23
  882. msgctxt "@text"
  883. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  884. 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."
  885. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/ExtrudersModel.py:219
  886. msgctxt "@menuitem"
  887. msgid "Not overridden"
  888. msgstr "Não sobreposto"
  889. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  890. #, python-brace-format
  891. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  892. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  893. msgstr "Tem certeza que deseja remover {0}? Isto não pode ser defeito!"
  894. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83 /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:361 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1614
  895. msgctxt "@label"
  896. msgid "Unknown"
  897. msgstr "Desconhecido"
  898. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  899. msgctxt "@label"
  900. msgid "The printer(s) below cannot be connected because they are part of a group"
  901. msgstr "As impressoras abaixo não podem ser conectadas por serem parte de um grupo"
  902. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  903. msgctxt "@label"
  904. msgid "Available networked printers"
  905. msgstr "Impressoras de rede disponíveis"
  906. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  907. msgctxt "@info:status"
  908. msgid "Calculated"
  909. msgstr "Calculado"
  910. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:55 /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  911. msgctxt "@action:button"
  912. msgid "Please sync the material profiles with your printers before starting to print."
  913. msgstr "Por favor sincronize os perfis de material com suas impressoras antes de começar a imprimir."
  914. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:56 /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  915. msgctxt "@action:button"
  916. msgid "New materials installed"
  917. msgstr "Novos materiais instalados"
  918. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:63 /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  919. msgctxt "@action:button"
  920. msgid "Sync materials"
  921. msgstr "Sincronizar materiais"
  922. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  923. msgctxt "@label"
  924. msgid "Custom Material"
  925. msgstr "Material Personalizado"
  926. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:289 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:336
  927. msgctxt "@label"
  928. msgid "Custom"
  929. msgstr "Personalizado"
  930. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:390
  931. msgctxt "@label"
  932. msgid "Custom profiles"
  933. msgstr "Perfis personalizados"
  934. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:425
  935. #, python-brace-format
  936. msgctxt "@item:inlistbox"
  937. msgid "All Supported Types ({0})"
  938. msgstr "Todos Os Tipos Suportados ({0})"
  939. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:426
  940. msgctxt "@item:inlistbox"
  941. msgid "All Files (*)"
  942. msgstr "Todos Os Arquivos (*)"
  943. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  944. msgctxt "@text:error"
  945. msgid "Failed to create archive of materials to sync with printers."
  946. msgstr "Falha em criar arquivo de materiais para sincronizar com impressoras."
  947. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111 /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  948. msgctxt "@text:error"
  949. msgid "Failed to load the archive of materials to sync it with printers."
  950. msgstr "Falha em carregar o arquivo de materiais para sincronizar com impressoras."
  951. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  952. msgctxt "@text:error"
  953. msgid "The response from Digital Factory appears to be corrupted."
  954. msgstr "A resposta da Digital Factory parece estar corrompida."
  955. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147 /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151 /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  956. msgctxt "@text:error"
  957. msgid "The response from Digital Factory is missing important information."
  958. msgstr "A resposta da Digital Factory veio sem informações importantes."
  959. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  960. msgctxt "@text:error"
  961. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  962. msgstr "Falha em conectar com a Digital Factory para sincronizar materiais com algumas das impressoras."
  963. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  964. msgctxt "@text:error"
  965. msgid "Failed to connect to Digital Factory."
  966. msgstr "Falha em conectar à Digital Factory."
  967. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:115
  968. msgctxt "@info:backup_failed"
  969. msgid "Could not create archive from user data directory: {}"
  970. msgstr "Não pude criar arquivo do diretório de dados de usuário: {}"
  971. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:134
  972. msgctxt "@info:backup_failed"
  973. msgid "Tried to restore a Cura backup without having proper data or meta data."
  974. msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados."
  975. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:145
  976. msgctxt "@info:backup_failed"
  977. msgid "Tried to restore a Cura backup that is higher than the current version."
  978. msgstr "Tentativa de restauração de backup do Cura de versão maior que a atual."
  979. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:158
  980. msgctxt "@info:backup_failed"
  981. msgid "The following error occurred while trying to restore a Cura backup:"
  982. msgstr "O seguinte erro ocorreu ao tentar restaurar um backup do Cura:"
  983. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  984. msgctxt "@info:status"
  985. msgid "Finding new location for objects"
  986. msgstr "Achando novos lugares para objetos"
  987. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  988. msgctxt "@info:title"
  989. msgid "Finding Location"
  990. msgstr "Buscando Localização"
  991. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:41 /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:99
  992. msgctxt "@info:status"
  993. msgid "Unable to find a location within the build volume for all objects"
  994. msgstr "Não foi possível achar um lugar dentro do volume de construção para todos os objetos"
  995. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  996. msgctxt "@info:title"
  997. msgid "Can't Find Location"
  998. msgstr "Não Foi Encontrada Localização"
  999. #: /home/remco/dev/code/ulti/trans/Cura/cura/API/Account.py:190
  1000. msgctxt "@info:title"
  1001. msgid "Login failed"
  1002. msgstr "Login falhou"
  1003. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:85
  1004. msgctxt "@tooltip"
  1005. msgid "Outer Wall"
  1006. msgstr "Parede Externa"
  1007. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:86
  1008. msgctxt "@tooltip"
  1009. msgid "Inner Walls"
  1010. msgstr "Paredes Internas"
  1011. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:87
  1012. msgctxt "@tooltip"
  1013. msgid "Skin"
  1014. msgstr "Contorno"
  1015. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:88
  1016. msgctxt "@tooltip"
  1017. msgid "Infill"
  1018. msgstr "Preenchimento"
  1019. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:89
  1020. msgctxt "@tooltip"
  1021. msgid "Support Infill"
  1022. msgstr "Preenchimento de Suporte"
  1023. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:90
  1024. msgctxt "@tooltip"
  1025. msgid "Support Interface"
  1026. msgstr "Interface de Suporte"
  1027. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:91
  1028. msgctxt "@tooltip"
  1029. msgid "Support"
  1030. msgstr "Suporte"
  1031. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:92
  1032. msgctxt "@tooltip"
  1033. msgid "Skirt"
  1034. msgstr "Skirt (Saia)"
  1035. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:93
  1036. msgctxt "@tooltip"
  1037. msgid "Prime Tower"
  1038. msgstr "Torre de Prime"
  1039. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:94
  1040. msgctxt "@tooltip"
  1041. msgid "Travel"
  1042. msgstr "Percurso"
  1043. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:95
  1044. msgctxt "@tooltip"
  1045. msgid "Retractions"
  1046. msgstr "Retrações"
  1047. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:96
  1048. msgctxt "@tooltip"
  1049. msgid "Other"
  1050. msgstr "Outros"
  1051. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/ObjectsModel.py:69
  1052. #, python-brace-format
  1053. msgctxt "@label"
  1054. msgid "Group #{group_nr}"
  1055. msgstr "Grupo #{group_nr}"
  1056. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:37 /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:63
  1057. msgctxt "@text:window"
  1058. msgid "The release notes could not be opened."
  1059. msgstr "As notas de lançamento não puderam ser abertas."
  1060. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:67 /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:286
  1061. msgctxt "@action:button"
  1062. msgid "Skip"
  1063. msgstr "Pular"
  1064. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:72 /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135 /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:178
  1065. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:450 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  1066. msgctxt "@action:button"
  1067. msgid "Close"
  1068. msgstr "Fechar"
  1069. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:17 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  1070. msgctxt "@action:button"
  1071. msgid "Add"
  1072. msgstr "Adicionar"
  1073. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:26 /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:290
  1074. msgctxt "@action:button"
  1075. msgid "Finish"
  1076. msgstr "Finalizar"
  1077. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:33 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  1078. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:323 /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:451 /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  1079. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:74
  1080. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:136
  1081. msgctxt "@action:button"
  1082. msgid "Cancel"
  1083. msgstr "Cancelar"
  1084. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:57 /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:277
  1085. msgctxt "@action:button"
  1086. msgid "Next"
  1087. msgstr "Próximo"
  1088. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:100
  1089. msgctxt "@info:status"
  1090. 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."
  1091. 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."
  1092. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:103
  1093. msgctxt "@info:title"
  1094. msgid "Build Volume"
  1095. msgstr "Volume de Impressão"
  1096. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  1097. msgctxt "@message:text"
  1098. msgid "Could not save material archive to {}:"
  1099. msgstr "Não foi possível salvar o arquivo de materiais para {}:"
  1100. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  1101. msgctxt "@message:title"
  1102. msgid "Failed to save material archive"
  1103. msgstr "Falha em salvar o arquivo de materiais"
  1104. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  1105. msgctxt "@text"
  1106. msgid "Unknown error."
  1107. msgstr "Erro desconhecido."
  1108. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:207 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:140
  1109. msgctxt "@title:window"
  1110. msgid "File Already Exists"
  1111. msgstr "O Arquivo Já Existe"
  1112. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:208 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:141
  1113. #, python-brace-format
  1114. msgctxt "@label Don't translate the XML tag <filename>!"
  1115. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  1116. msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  1117. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:459 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:462
  1118. msgctxt "@info:status"
  1119. msgid "Invalid file URL:"
  1120. msgstr "URL de arquivo inválida:"
  1121. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1122. msgctxt "@info:not supported profile"
  1123. msgid "Not supported"
  1124. msgstr "Não Suportado"
  1125. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1126. msgctxt "@info:No intent profile selected"
  1127. msgid "Default"
  1128. msgstr "Default"
  1129. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:857
  1130. msgctxt "@info:message Followed by a list of settings."
  1131. msgid "Settings have been changed to match the current availability of extruders:"
  1132. msgstr "Os ajustes foram alterados para seguir a disponibilidade de extrusores atuais:"
  1133. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:858
  1134. msgctxt "@info:title"
  1135. msgid "Settings updated"
  1136. msgstr "Ajustes atualizados"
  1137. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1480
  1138. msgctxt "@info:title"
  1139. msgid "Extruder(s) Disabled"
  1140. msgstr "Extrusor(es) Desabilitado(s)"
  1141. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:153
  1142. #, python-brace-format
  1143. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1144. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1145. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  1146. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:163
  1147. #, python-brace-format
  1148. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1149. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1150. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: complemento escritor relatou erro."
  1151. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:171
  1152. #, python-brace-format
  1153. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1154. msgid "Exported profile to <filename>{0}</filename>"
  1155. msgstr "Perfil exportado para <filename>{0}</filename>"
  1156. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:173
  1157. msgctxt "@info:title"
  1158. msgid "Export succeeded"
  1159. msgstr "Exportação concluída"
  1160. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:205
  1161. #, python-brace-format
  1162. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1163. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1164. msgstr "Falha ao importar perfil de <filename>{0}</filename>: {1}"
  1165. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:209
  1166. #, python-brace-format
  1167. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1168. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  1169. msgstr "Não foi possível importar perfil de <filename>{0}</filename> antes de uma impressora ser adicionada."
  1170. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:224
  1171. #, python-brace-format
  1172. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1173. msgid "No custom profile to import in file <filename>{0}</filename>"
  1174. msgstr "Não há perfil personalizado a importar no arquivo <filename>{0}</filename>"
  1175. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:228
  1176. #, python-brace-format
  1177. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1178. msgid "Failed to import profile from <filename>{0}</filename>:"
  1179. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  1180. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:252 /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:262
  1181. #, python-brace-format
  1182. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1183. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  1184. msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  1185. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:355
  1186. #, python-brace-format
  1187. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1188. msgid "Failed to import profile from <filename>{0}</filename>:"
  1189. msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  1190. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:359
  1191. #, python-brace-format
  1192. msgctxt "@info:status"
  1193. msgid "Successfully imported profile {0}."
  1194. msgstr "Perfil {0} importado com sucesso."
  1195. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:366
  1196. #, python-brace-format
  1197. msgctxt "@info:status"
  1198. msgid "File {0} does not contain any valid profile."
  1199. msgstr "Arquivo {0} não contém nenhum perfil válido."
  1200. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:369
  1201. #, python-brace-format
  1202. msgctxt "@info:status"
  1203. msgid "Profile {0} has an unknown file type or is corrupted."
  1204. msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido."
  1205. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:443
  1206. msgctxt "@label"
  1207. msgid "Custom profile"
  1208. msgstr "Perfil personalizado"
  1209. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:459
  1210. msgctxt "@info:status"
  1211. msgid "Profile is missing a quality type."
  1212. msgstr "Falta um tipo de qualidade ao Perfil."
  1213. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:463
  1214. msgctxt "@info:status"
  1215. msgid "There is no active printer yet."
  1216. msgstr "Não há impressora ativa ainda."
  1217. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:469
  1218. msgctxt "@info:status"
  1219. msgid "Unable to add the profile."
  1220. msgstr "Não foi possível adicionar o perfil."
  1221. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:483
  1222. #, python-brace-format
  1223. msgctxt "@info:status"
  1224. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  1225. msgstr "Tipo de qualidade '{0}' não é compatível com a definição de máquina ativa atual '{1}'."
  1226. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:488
  1227. #, python-brace-format
  1228. msgctxt "@info:status"
  1229. 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."
  1230. 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."
  1231. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:30
  1232. msgctxt "@info:status"
  1233. msgid "Multiplying and placing objects"
  1234. msgstr "Multiplicando e colocando objetos"
  1235. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:32
  1236. msgctxt "@info:title"
  1237. msgid "Placing Objects"
  1238. msgstr "Colocando Objetos"
  1239. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:100
  1240. msgctxt "@info:title"
  1241. msgid "Placing Object"
  1242. msgstr "Colocando Objeto"
  1243. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:216
  1244. msgctxt "@info"
  1245. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  1246. msgstr "Não foi possível iniciar processo de sign-in. Verifique se outra tentativa de sign-in ainda está ativa."
  1247. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:277
  1248. msgctxt "@info"
  1249. msgid "Unable to reach the Ultimaker account server."
  1250. msgstr "Não foi possível contactar o servidor de contas da Ultimaker."
  1251. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:278
  1252. msgctxt "@info:title"
  1253. msgid "Log-in failed"
  1254. msgstr "Login falhou"
  1255. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  1256. msgctxt "@message"
  1257. msgid "Could not read response."
  1258. msgstr "Não foi possível ler a resposta."
  1259. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  1260. msgctxt "@message"
  1261. msgid "The provided state is not correct."
  1262. msgstr "O estado provido não está correto."
  1263. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  1264. msgctxt "@message"
  1265. msgid "Timeout when authenticating with the account server."
  1266. msgstr "Tempo esgotado ao autenticar com o servidor da conta."
  1267. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  1268. msgctxt "@message"
  1269. msgid "Please give the required permissions when authorizing this application."
  1270. msgstr "Por favor dê as permissões requeridas ao autorizar esta aplicação."
  1271. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  1272. msgctxt "@message"
  1273. msgid "Something unexpected happened when trying to log in, please try again."
  1274. msgstr "Algo inesperado aconteceu ao tentar login, por favor tente novamente."
  1275. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:107
  1276. msgctxt "@title:window"
  1277. msgid "Cura can't start"
  1278. msgstr "O Cura não consegue iniciar"
  1279. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:113
  1280. msgctxt "@label crash message"
  1281. msgid ""
  1282. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  1283. " <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"
  1284. " <p>Backups can be found in the configuration folder.</p>\n"
  1285. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  1286. " "
  1287. msgstr ""
  1288. "<p><b>Oops, o Ultimaker Cura encontrou algo que não parece estar correto.</p></b>\n"
  1289. " <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"
  1290. " <p>Cópias salvas podem ser encontradas na pasta de configuração.</p>\n"
  1291. " <p>Por favor nos envie este Relatório de Falha para consertar o problema.</p>\n"
  1292. " "
  1293. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:122
  1294. msgctxt "@action:button"
  1295. msgid "Send crash report to Ultimaker"
  1296. msgstr "Enviar relatório de falha à Ultimaker"
  1297. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:125
  1298. msgctxt "@action:button"
  1299. msgid "Show detailed crash report"
  1300. msgstr "Exibir relatório de falha detalhado"
  1301. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:129
  1302. msgctxt "@action:button"
  1303. msgid "Show configuration folder"
  1304. msgstr "Mostrar a pasta de configuração"
  1305. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:140
  1306. msgctxt "@action:button"
  1307. msgid "Backup and Reset Configuration"
  1308. msgstr "Salvar e Restabelecer Configuração"
  1309. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:171
  1310. msgctxt "@title:window"
  1311. msgid "Crash Report"
  1312. msgstr "Relatório de Problema"
  1313. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:190
  1314. msgctxt "@label crash message"
  1315. msgid ""
  1316. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  1317. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  1318. " "
  1319. msgstr ""
  1320. "<p><b>Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema</p></b>\n"
  1321. " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores</p>\n"
  1322. " "
  1323. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:198
  1324. msgctxt "@title:groupbox"
  1325. msgid "System information"
  1326. msgstr "Informação do Sistema"
  1327. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:207
  1328. msgctxt "@label unknown version of Cura"
  1329. msgid "Unknown"
  1330. msgstr "Desconhecida"
  1331. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:228
  1332. msgctxt "@label Cura version number"
  1333. msgid "Cura version"
  1334. msgstr "Versão do Cura"
  1335. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:229
  1336. msgctxt "@label"
  1337. msgid "Cura language"
  1338. msgstr "Linguagem do Cura"
  1339. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:230
  1340. msgctxt "@label"
  1341. msgid "OS language"
  1342. msgstr "Linguagem do SO"
  1343. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:231
  1344. msgctxt "@label Type of platform"
  1345. msgid "Platform"
  1346. msgstr "Plataforma"
  1347. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:232
  1348. msgctxt "@label"
  1349. msgid "Qt version"
  1350. msgstr "Versão do Qt"
  1351. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:233
  1352. msgctxt "@label"
  1353. msgid "PyQt version"
  1354. msgstr "Versão do PyQt"
  1355. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:234
  1356. msgctxt "@label OpenGL version"
  1357. msgid "OpenGL"
  1358. msgstr "OpenGL"
  1359. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:264
  1360. msgctxt "@label"
  1361. msgid "Not yet initialized<br/>"
  1362. msgstr "Ainda não inicializado<br/>"
  1363. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:267
  1364. #, python-brace-format
  1365. msgctxt "@label OpenGL version"
  1366. msgid "<li>OpenGL Version: {version}</li>"
  1367. msgstr "<li>Versão da OpenGL: {version}</li>"
  1368. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:268
  1369. #, python-brace-format
  1370. msgctxt "@label OpenGL vendor"
  1371. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1372. msgstr "<li>Fornecedor da OpenGL: {vendor}</li>"
  1373. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:269
  1374. #, python-brace-format
  1375. msgctxt "@label OpenGL renderer"
  1376. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1377. msgstr "<li>Renderizador da OpenGL: {renderer}</li>"
  1378. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:303
  1379. msgctxt "@title:groupbox"
  1380. msgid "Error traceback"
  1381. msgstr "Traceback do erro"
  1382. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:389
  1383. msgctxt "@title:groupbox"
  1384. msgid "Logs"
  1385. msgstr "Registros"
  1386. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:417
  1387. msgctxt "@action:button"
  1388. msgid "Send report"
  1389. msgstr "Enviar relatório"
  1390. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1391. msgctxt "@info"
  1392. msgid ""
  1393. "Please make sure your printer has a connection:\n"
  1394. "- Check if the printer is turned on.\n"
  1395. "- Check if the printer is connected to the network.\n"
  1396. "- Check if you are signed in to discover cloud-connected printers."
  1397. msgstr ""
  1398. "Por favor certifique-se que sua impressora está conectada>\n"
  1399. "- Verifique se ela está ligada.\n"
  1400. "- Verifique se ela está conectada à rede.\n"
  1401. "- Verifique se você está logado para descobrir impressoras conectadas à nuvem."
  1402. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:113
  1403. msgctxt "@info"
  1404. msgid "Please connect your printer to the network."
  1405. msgstr "Por favor conecte sua impressora à rede."
  1406. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:146
  1407. msgctxt "@label link to technical assistance"
  1408. msgid "View user manuals online"
  1409. msgstr "Ver manuais de usuário online"
  1410. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:163
  1411. msgctxt "@info"
  1412. msgid "In order to monitor your print from Cura, please connect the printer."
  1413. msgstr "Para monitorar sua impressão pelo Cura, por favor conecte a impressora."
  1414. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  1415. msgctxt "@title:window"
  1416. msgid "Select Settings to Customize for this model"
  1417. msgstr "Selecionar Ajustes a Personalizar para este modelo"
  1418. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:100
  1419. msgctxt "@label:textbox"
  1420. msgid "Filter..."
  1421. msgstr "Filtrar..."
  1422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  1423. msgctxt "@label:checkbox"
  1424. msgid "Show all"
  1425. msgstr "Exibir tudo"
  1426. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1427. msgctxt "@label"
  1428. msgid "Mesh Type"
  1429. msgstr "Tipo de Malha"
  1430. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1431. msgctxt "@label"
  1432. msgid "Normal model"
  1433. msgstr "Modelo normal"
  1434. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1435. msgctxt "@label"
  1436. msgid "Print as support"
  1437. msgstr "Imprimir como suporte"
  1438. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1439. msgctxt "@label"
  1440. msgid "Modify settings for overlaps"
  1441. msgstr "Modificar ajustes para sobreposições"
  1442. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  1443. msgctxt "@label"
  1444. msgid "Don't support overlaps"
  1445. msgstr "Não suportar sobreposições"
  1446. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  1447. msgctxt "@item:inlistbox"
  1448. msgid "Infill mesh only"
  1449. msgstr "Somente malha de preenchimento"
  1450. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  1451. msgctxt "@item:inlistbox"
  1452. msgid "Cutting mesh"
  1453. msgstr "Malha de corte"
  1454. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  1455. msgctxt "@action:button"
  1456. msgid "Select settings"
  1457. msgstr "Selecionar ajustes"
  1458. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1459. msgctxt "@title"
  1460. msgid "Update Firmware"
  1461. msgstr "Atualizar Firmware"
  1462. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1463. msgctxt "@label"
  1464. 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."
  1465. 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."
  1466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1467. msgctxt "@label"
  1468. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1469. msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias."
  1470. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1471. msgctxt "@action:button"
  1472. msgid "Automatically upgrade Firmware"
  1473. msgstr "Automaticamente atualizar Firmware"
  1474. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1475. msgctxt "@action:button"
  1476. msgid "Upload custom Firmware"
  1477. msgstr "Carregar Firmware personalizado"
  1478. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1479. msgctxt "@label"
  1480. msgid "Firmware can not be updated because there is no connection with the printer."
  1481. msgstr "O firmware não pode ser atualizado porque não há conexão com a impressora."
  1482. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1483. msgctxt "@label"
  1484. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1485. msgstr "O firmware não pode ser atualizado porque a conexão com a impressora não suporta atualização de firmware."
  1486. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1487. msgctxt "@title:window"
  1488. msgid "Select custom firmware"
  1489. msgstr "Selecionar firmware personalizado"
  1490. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:114
  1491. msgctxt "@title:window"
  1492. msgid "Firmware Update"
  1493. msgstr "Atualização do Firmware"
  1494. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:138
  1495. msgctxt "@label"
  1496. msgid "Updating firmware."
  1497. msgstr "Atualizando firmware."
  1498. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:140
  1499. msgctxt "@label"
  1500. msgid "Firmware update completed."
  1501. msgstr "Atualização do Firmware completada."
  1502. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:142
  1503. msgctxt "@label"
  1504. msgid "Firmware update failed due to an unknown error."
  1505. msgstr "A atualização de Firmware falhou devido a um erro desconhecido."
  1506. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:144
  1507. msgctxt "@label"
  1508. msgid "Firmware update failed due to an communication error."
  1509. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  1510. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:146
  1511. msgctxt "@label"
  1512. msgid "Firmware update failed due to an input/output error."
  1513. msgstr "A atualização de firmware falhou devido a um erro de entrada e saída."
  1514. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:148
  1515. msgctxt "@label"
  1516. msgid "Firmware update failed due to missing firmware."
  1517. msgstr "A atualização de firmware falhou devido a firmware não encontrado."
  1518. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1519. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1520. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1521. msgctxt "@label:status"
  1522. msgid "Aborted"
  1523. msgstr "Abortado"
  1524. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1525. msgctxt "@label:status"
  1526. msgid "Finished"
  1527. msgstr "Finalizado"
  1528. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1529. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1530. msgctxt "@label:status"
  1531. msgid "Preparing..."
  1532. msgstr "Preparando..."
  1533. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1534. msgctxt "@label:status"
  1535. msgid "Aborting..."
  1536. msgstr "Abortando..."
  1537. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1538. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1539. msgctxt "@label:status"
  1540. msgid "Failed"
  1541. msgstr "Falhado"
  1542. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1543. msgctxt "@label:status"
  1544. msgid "Pausing..."
  1545. msgstr "Pausando..."
  1546. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1547. msgctxt "@label:status"
  1548. msgid "Paused"
  1549. msgstr "Pausado"
  1550. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1551. msgctxt "@label:status"
  1552. msgid "Resuming..."
  1553. msgstr "Continuando..."
  1554. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1555. msgctxt "@label:status"
  1556. msgid "Action required"
  1557. msgstr "Necessária uma ação"
  1558. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1559. msgctxt "@label:status"
  1560. msgid "Finishes %1 at %2"
  1561. msgstr "Termina %1 em %2"
  1562. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1563. msgctxt "@label link to Connect and Cloud interfaces"
  1564. msgid "Manage printer"
  1565. msgstr "Gerir Impressora"
  1566. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1567. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175
  1568. msgctxt "@label"
  1569. msgid "Glass"
  1570. msgstr "Vidro"
  1571. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241 /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467
  1572. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239
  1573. msgctxt "@info"
  1574. msgid "Please update your printer's firmware to manage the queue remotely."
  1575. msgstr "Por favor atualize o firmware de sua impressora parar gerir a fila remotamente."
  1576. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275
  1577. msgctxt "@info"
  1578. msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1579. 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."
  1580. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335
  1581. msgctxt "@label:status"
  1582. msgid "Loading..."
  1583. msgstr "Carregando..."
  1584. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339
  1585. msgctxt "@label:status"
  1586. msgid "Unavailable"
  1587. msgstr "Indisponível"
  1588. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343
  1589. msgctxt "@label:status"
  1590. msgid "Unreachable"
  1591. msgstr "Inacessivel"
  1592. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1593. msgctxt "@label:status"
  1594. msgid "Idle"
  1595. msgstr "Ocioso"
  1596. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1597. msgctxt "@label:status"
  1598. msgid "Printing"
  1599. msgstr "Imprimindo"
  1600. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397
  1601. msgctxt "@label"
  1602. msgid "Untitled"
  1603. msgstr "Sem Título"
  1604. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412
  1605. msgctxt "@label"
  1606. msgid "Anonymous"
  1607. msgstr "Anônimo"
  1608. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433
  1609. msgctxt "@label:status"
  1610. msgid "Requires configuration changes"
  1611. msgstr "Requer mudanças na configuração"
  1612. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447
  1613. msgctxt "@action:button"
  1614. msgid "Details"
  1615. msgstr "Detalhes"
  1616. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1617. msgctxt "@title:window"
  1618. msgid "Configuration Changes"
  1619. msgstr "Alterações de Configuração"
  1620. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1621. msgctxt "@action:button"
  1622. msgid "Override"
  1623. msgstr "Sobrepor"
  1624. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1625. msgctxt "@label"
  1626. msgid "The assigned printer, %1, requires the following configuration change:"
  1627. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1628. msgstr[0] "A impressora associada, %1, requer a seguinte alteração de configuração:"
  1629. msgstr[1] "A impressora associada, %1, requer as seguintes alterações de configuração:"
  1630. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1631. msgctxt "@label"
  1632. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1633. msgstr "A impressora %1 está associada, mas o trabalho contém configuração de material desconhecida."
  1634. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1635. msgctxt "@label"
  1636. msgid "Change material %1 from %2 to %3."
  1637. msgstr "Alterar material %1 de %2 para %3."
  1638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1639. msgctxt "@label"
  1640. msgid "Load %3 as material %1 (This cannot be overridden)."
  1641. msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)."
  1642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1643. msgctxt "@label"
  1644. msgid "Change print core %1 from %2 to %3."
  1645. msgstr "Alterar núcleo de impressão %1 de %2 para %3."
  1646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1647. msgctxt "@label"
  1648. msgid "Change build plate to %1 (This cannot be overridden)."
  1649. msgstr "Alterar mesa de impressão para %1 (Isto não pode ser sobreposto)."
  1650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1651. msgctxt "@label"
  1652. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1653. msgstr "Sobrepor irá usar os ajustes especificados com a configuração existente da impressora. Isto pode causar falha da impressão."
  1654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1655. msgctxt "@label"
  1656. msgid "Aluminum"
  1657. msgstr "Alumínio"
  1658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1659. msgctxt "@title:window"
  1660. msgid "Print over network"
  1661. msgstr "Imprimir pela rede"
  1662. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1663. msgctxt "@action:button"
  1664. msgid "Print"
  1665. msgstr "Imprimir"
  1666. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1667. msgctxt "@label"
  1668. msgid "Printer selection"
  1669. msgstr "Seleção de impressora"
  1670. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1671. msgctxt "@title:window"
  1672. msgid "Connect to Networked Printer"
  1673. msgstr "Conectar a Impressora de Rede"
  1674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1675. msgctxt "@label"
  1676. 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."
  1677. 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."
  1678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1679. msgctxt "@label"
  1680. msgid "Select your printer from the list below:"
  1681. msgstr "Selecione sua impressora da lista abaixo:"
  1682. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1683. msgctxt "@action:button"
  1684. msgid "Edit"
  1685. msgstr "Editar"
  1686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:141 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1687. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:320
  1688. msgctxt "@action:button"
  1689. msgid "Remove"
  1690. msgstr "Remover"
  1691. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1692. msgctxt "@action:button"
  1693. msgid "Refresh"
  1694. msgstr "Atualizar"
  1695. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1696. msgctxt "@label"
  1697. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1698. 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>"
  1699. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1700. msgctxt "@label"
  1701. msgid "Type"
  1702. msgstr "Tipo"
  1703. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1704. msgctxt "@label"
  1705. msgid "Firmware version"
  1706. msgstr "Versão do firmware"
  1707. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1708. msgctxt "@label"
  1709. msgid "Address"
  1710. msgstr "Endereço"
  1711. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1712. msgctxt "@label"
  1713. msgid "This printer is not set up to host a group of printers."
  1714. msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras."
  1715. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1716. msgctxt "@label"
  1717. msgid "This printer is the host for a group of %1 printers."
  1718. msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras."
  1719. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1720. msgctxt "@label"
  1721. msgid "The printer at this address has not yet responded."
  1722. msgstr "A impressora neste endereço ainda não respondeu."
  1723. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1724. msgctxt "@action:button"
  1725. msgid "Connect"
  1726. msgstr "Conectar"
  1727. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1728. msgctxt "@title:window"
  1729. msgid "Invalid IP address"
  1730. msgstr "Endereço IP inválido"
  1731. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1732. msgctxt "@text"
  1733. msgid "Please enter a valid IP address."
  1734. msgstr "Por favor entre um endereço IP válido."
  1735. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1736. msgctxt "@title:window"
  1737. msgid "Printer Address"
  1738. msgstr "Endereço da Impressora"
  1739. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1740. msgctxt "@label"
  1741. msgid "Enter the IP address of your printer on the network."
  1742. msgstr "Entre o endereço IP da sua impressora na rede."
  1743. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1744. msgctxt "@label"
  1745. msgid "Unavailable printer"
  1746. msgstr "Impressora indisponível"
  1747. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1748. msgctxt "@label"
  1749. msgid "First available"
  1750. msgstr "Primeira disponível"
  1751. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1752. msgctxt "@label"
  1753. msgid "Move to top"
  1754. msgstr "Mover para o topo"
  1755. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1756. msgctxt "@label"
  1757. msgid "Delete"
  1758. msgstr "Remover"
  1759. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100 /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:284
  1760. msgctxt "@label"
  1761. msgid "Resume"
  1762. msgstr "Continuar"
  1763. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1764. msgctxt "@label"
  1765. msgid "Pausing..."
  1766. msgstr "Pausando..."
  1767. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1768. msgctxt "@label"
  1769. msgid "Resuming..."
  1770. msgstr "Continuando..."
  1771. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106 /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:279 /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:288
  1772. msgctxt "@label"
  1773. msgid "Pause"
  1774. msgstr "Pausar"
  1775. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1776. msgctxt "@label"
  1777. msgid "Aborting..."
  1778. msgstr "Abortando..."
  1779. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1780. msgctxt "@label"
  1781. msgid "Abort"
  1782. msgstr "Abortar"
  1783. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142
  1784. msgctxt "@label %1 is the name of a print job."
  1785. msgid "Are you sure you want to move %1 to the top of the queue?"
  1786. msgstr "Você tem certeza que quer mover %1 para o topo da fila?"
  1787. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1788. msgctxt "@window:title"
  1789. msgid "Move print job to top"
  1790. msgstr "Move o trabalho de impressão para o topo da fila"
  1791. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151
  1792. msgctxt "@label %1 is the name of a print job."
  1793. msgid "Are you sure you want to delete %1?"
  1794. msgstr "Você tem certeza que quer remover %1?"
  1795. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152
  1796. msgctxt "@window:title"
  1797. msgid "Delete print job"
  1798. msgstr "Remover trabalho de impressão"
  1799. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160
  1800. msgctxt "@label %1 is the name of a print job."
  1801. msgid "Are you sure you want to abort %1?"
  1802. msgstr "Você tem certeza que quer abortar %1?"
  1803. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161 /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:326
  1804. msgctxt "@window:title"
  1805. msgid "Abort print"
  1806. msgstr "Abortar impressão"
  1807. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1808. msgctxt "@label"
  1809. msgid "Queued"
  1810. msgstr "Enfileirados"
  1811. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63
  1812. msgctxt "@label link to connect manager"
  1813. msgid "Manage in browser"
  1814. msgstr "Gerir no navegador"
  1815. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90
  1816. msgctxt "@label"
  1817. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1818. msgstr "Não há trabalhos de impressão na fila. Fatie e envie um trabalho para adicioná-lo."
  1819. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98
  1820. msgctxt "@label"
  1821. msgid "Print jobs"
  1822. msgstr "Trabalhos de impressão"
  1823. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107
  1824. msgctxt "@label"
  1825. msgid "Total print time"
  1826. msgstr "Tempo total de impressão"
  1827. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  1828. msgctxt "@label"
  1829. msgid "Waiting for"
  1830. msgstr "Esperando por"
  1831. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:19 /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:48
  1832. msgctxt "@label"
  1833. msgid "Color scheme"
  1834. msgstr "Esquema de Cores"
  1835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  1836. msgctxt "@label:listbox"
  1837. msgid "Material Color"
  1838. msgstr "Cor do Material"
  1839. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  1840. msgctxt "@label:listbox"
  1841. msgid "Line Type"
  1842. msgstr "Tipo de Linha"
  1843. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  1844. msgctxt "@label:listbox"
  1845. msgid "Speed"
  1846. msgstr "Velocidade"
  1847. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  1848. msgctxt "@label:listbox"
  1849. msgid "Layer Thickness"
  1850. msgstr "Espessura de Camada"
  1851. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  1852. msgctxt "@label:listbox"
  1853. msgid "Line Width"
  1854. msgstr "Largura de Extrusão"
  1855. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  1856. msgctxt "@label:listbox"
  1857. msgid "Flow"
  1858. msgstr "Fluxo"
  1859. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:165
  1860. msgctxt "@label"
  1861. msgid "Compatibility Mode"
  1862. msgstr "Modo de Compatibilidade"
  1863. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:232
  1864. msgctxt "@label"
  1865. msgid "Travels"
  1866. msgstr "Percursos"
  1867. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:238
  1868. msgctxt "@label"
  1869. msgid "Helpers"
  1870. msgstr "Assistentes"
  1871. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:244
  1872. msgctxt "@label"
  1873. msgid "Shell"
  1874. msgstr "Perímetro"
  1875. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:250 /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64
  1876. msgctxt "@label"
  1877. msgid "Infill"
  1878. msgstr "Preenchimento"
  1879. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:258
  1880. msgctxt "@label"
  1881. msgid "Starts"
  1882. msgstr "Inícios"
  1883. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  1884. msgctxt "@label"
  1885. msgid "Only Show Top Layers"
  1886. msgstr "Somente Exibir Camadas Superiores"
  1887. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:316
  1888. msgctxt "@label"
  1889. msgid "Show 5 Detailed Layers On Top"
  1890. msgstr "Exibir 5 Camadas Superiores Detalhadas"
  1891. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:329
  1892. msgctxt "@label"
  1893. msgid "Top / Bottom"
  1894. msgstr "Topo / Base"
  1895. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:333
  1896. msgctxt "@label"
  1897. msgid "Inner Wall"
  1898. msgstr "Parede Interna"
  1899. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:400
  1900. msgctxt "@label"
  1901. msgid "min"
  1902. msgstr "mín"
  1903. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:465
  1904. msgctxt "@label"
  1905. msgid "max"
  1906. msgstr "máx"
  1907. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:14
  1908. msgctxt "@title:window"
  1909. msgid "Convert Image"
  1910. msgstr "Converter Imagem"
  1911. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:33
  1912. msgctxt "@action:label"
  1913. msgid "Height (mm)"
  1914. msgstr "Altura (mm)"
  1915. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:56
  1916. msgctxt "@info:tooltip"
  1917. msgid "The maximum distance of each pixel from \"Base.\""
  1918. msgstr "A distância máxima de cada pixel da \"Base\"."
  1919. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:66
  1920. msgctxt "@action:label"
  1921. msgid "Base (mm)"
  1922. msgstr "Base (mm)"
  1923. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:90
  1924. msgctxt "@info:tooltip"
  1925. msgid "The base height from the build plate in millimeters."
  1926. msgstr "A altura-base da mesa de impressão em milímetros."
  1927. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:100
  1928. msgctxt "@action:label"
  1929. msgid "Width (mm)"
  1930. msgstr "Largura (mm)"
  1931. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:124
  1932. msgctxt "@info:tooltip"
  1933. msgid "The width in millimeters on the build plate"
  1934. msgstr "A largura em milímetros na plataforma de impressão"
  1935. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:134
  1936. msgctxt "@action:label"
  1937. msgid "Depth (mm)"
  1938. msgstr "Profundidade (mm)"
  1939. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:158
  1940. msgctxt "@info:tooltip"
  1941. msgid "The depth in millimeters on the build plate"
  1942. msgstr "A profundidade da mesa de impressão em milímetros"
  1943. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:187
  1944. msgctxt "@item:inlistbox"
  1945. msgid "Darker is higher"
  1946. msgstr "Mais escuro é mais alto"
  1947. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:188
  1948. msgctxt "@item:inlistbox"
  1949. msgid "Lighter is higher"
  1950. msgstr "Mais claro é mais alto"
  1951. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:195
  1952. msgctxt "@info:tooltip"
  1953. 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."
  1954. 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."
  1955. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:205
  1956. msgctxt "@action:label"
  1957. msgid "Color Model"
  1958. msgstr "Modelo de Cor"
  1959. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:224
  1960. msgctxt "@item:inlistbox"
  1961. msgid "Linear"
  1962. msgstr "Linear"
  1963. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:225
  1964. msgctxt "@item:inlistbox"
  1965. msgid "Translucency"
  1966. msgstr "Translucidez"
  1967. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:232
  1968. msgctxt "@info:tooltip"
  1969. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1970. 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."
  1971. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:242
  1972. msgctxt "@action:label"
  1973. msgid "1mm Transmittance (%)"
  1974. msgstr "Transmitância de 1mm (%)"
  1975. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:263
  1976. msgctxt "@info:tooltip"
  1977. 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."
  1978. 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."
  1979. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:274
  1980. msgctxt "@action:label"
  1981. msgid "Smoothing"
  1982. msgstr "Suavização"
  1983. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:298
  1984. msgctxt "@info:tooltip"
  1985. msgid "The amount of smoothing to apply to the image."
  1986. msgstr "A quantidade de suavização para aplicar na imagem."
  1987. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:329 /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:80
  1988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:140
  1989. msgctxt "@action:button"
  1990. msgid "OK"
  1991. msgstr "Ok"
  1992. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  1993. msgctxt "@title:window"
  1994. msgid "Open Project"
  1995. msgstr "Abrir Projeto"
  1996. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:55
  1997. msgctxt "@action:ComboBox Update/override existing profile"
  1998. msgid "Update existing"
  1999. msgstr "Atualizar existentes"
  2000. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:56
  2001. msgctxt "@action:ComboBox Save settings in a new profile"
  2002. msgid "Create new"
  2003. msgstr "Criar novos"
  2004. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:74 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:52
  2005. msgctxt "@action:title"
  2006. msgid "Summary - Cura Project"
  2007. msgstr "Resumo - Projeto do Cura"
  2008. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:100
  2009. msgctxt "@info:tooltip"
  2010. msgid "How should the conflict in the machine be resolved?"
  2011. msgstr "Como o conflito na máquina deve ser resolvido?"
  2012. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:156 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:88
  2013. msgctxt "@action:label"
  2014. msgid "Printer settings"
  2015. msgstr "Ajustes da impressora"
  2016. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:167 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2017. msgctxt "@action:label"
  2018. msgid "Type"
  2019. msgstr "Tipo"
  2020. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:184 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2021. msgctxt "@action:label"
  2022. msgid "Printer Group"
  2023. msgstr "Grupo de Impressora"
  2024. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:209
  2025. msgctxt "@info:tooltip"
  2026. msgid "How should the conflict in the profile be resolved?"
  2027. msgstr "Como o conflito no perfil deve ser resolvido?"
  2028. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:231 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:213
  2029. msgctxt "@action:label"
  2030. msgid "Profile settings"
  2031. msgstr "Ajustes de perfil"
  2032. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:242 /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:367 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:237
  2034. msgctxt "@action:label"
  2035. msgid "Name"
  2036. msgstr "Nome"
  2037. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:260 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  2038. msgctxt "@action:label"
  2039. msgid "Intent"
  2040. msgstr "Objetivo"
  2041. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:278 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2042. msgctxt "@action:label"
  2043. msgid "Not in profile"
  2044. msgstr "Ausente no perfil"
  2045. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:284 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2046. msgctxt "@action:label"
  2047. msgid "%1 override"
  2048. msgid_plural "%1 overrides"
  2049. msgstr[0] "%1 sobreposto"
  2050. msgstr[1] "%1 sobrepostos"
  2051. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:297
  2052. msgctxt "@action:label"
  2053. msgid "Derivative from"
  2054. msgstr "Derivado de"
  2055. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:303
  2056. msgctxt "@action:label"
  2057. msgid "%1, %2 override"
  2058. msgid_plural "%1, %2 overrides"
  2059. msgstr[0] "%1, %2 sobreposição"
  2060. msgstr[1] "%1, %2 sobreposições"
  2061. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  2062. msgctxt "@info:tooltip"
  2063. msgid "How should the conflict in the material be resolved?"
  2064. msgstr "Como o conflito no material deve ser resolvido?"
  2065. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2066. msgctxt "@action:label"
  2067. msgid "Material settings"
  2068. msgstr "Ajustes de material"
  2069. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:388
  2070. msgctxt "@action:label"
  2071. msgid "Setting visibility"
  2072. msgstr "Visibilidade dos ajustes"
  2073. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2074. msgctxt "@action:label"
  2075. msgid "Mode"
  2076. msgstr "Modo"
  2077. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:413
  2078. msgctxt "@action:label"
  2079. msgid "Visible settings:"
  2080. msgstr "Ajustes visíveis:"
  2081. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:418
  2082. msgctxt "@action:label"
  2083. msgid "%1 out of %2"
  2084. msgstr "%1 de %2"
  2085. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:439
  2086. msgctxt "@action:warning"
  2087. msgid "Loading a project will clear all models on the build plate."
  2088. msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão."
  2089. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:456
  2090. msgctxt "@action:button"
  2091. msgid "Open"
  2092. msgstr "Abrir"
  2093. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2094. msgctxt "@button"
  2095. msgid "Want more?"
  2096. msgstr "Quer mais?"
  2097. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2098. msgctxt "@button"
  2099. msgid "Backup Now"
  2100. msgstr "Backup Agora"
  2101. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2102. msgctxt "@checkbox:description"
  2103. msgid "Auto Backup"
  2104. msgstr "Auto Backup"
  2105. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2106. msgctxt "@checkbox:description"
  2107. msgid "Automatically create a backup each day that Cura is started."
  2108. msgstr "Criar um backup automaticamente toda vez que o Cura iniciar."
  2109. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2110. msgctxt "@backuplist:label"
  2111. msgid "Cura Version"
  2112. msgstr "Versão do Cura"
  2113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2114. msgctxt "@backuplist:label"
  2115. msgid "Machines"
  2116. msgstr "Máquinas"
  2117. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2118. msgctxt "@backuplist:label"
  2119. msgid "Materials"
  2120. msgstr "Materiais"
  2121. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2122. msgctxt "@backuplist:label"
  2123. msgid "Profiles"
  2124. msgstr "Perfis"
  2125. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2126. msgctxt "@backuplist:label"
  2127. msgid "Plugins"
  2128. msgstr "Complementos"
  2129. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2130. msgctxt "@button"
  2131. msgid "Restore"
  2132. msgstr "Restaurar"
  2133. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2134. msgctxt "@dialog:title"
  2135. msgid "Delete Backup"
  2136. msgstr "Apagar o Backup"
  2137. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2138. msgctxt "@dialog:info"
  2139. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2140. msgstr "Você tem certeza que deseja apagar este backup? Isto não pode ser desfeito."
  2141. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2142. msgctxt "@dialog:title"
  2143. msgid "Restore Backup"
  2144. msgstr "Restaurar Backup"
  2145. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2146. msgctxt "@dialog:info"
  2147. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2148. msgstr "Você precisará reiniciar o Cura antes que seu backup seja restaurado. Deseja fechar o Cura agora?"
  2149. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2150. msgctxt "@description"
  2151. msgid "Backup and synchronize your Cura settings."
  2152. msgstr "Fazer backup e sincronizar os ajustes do Cura."
  2153. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:49 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:163
  2154. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  2155. msgctxt "@button"
  2156. msgid "Sign in"
  2157. msgstr "Entrar"
  2158. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2159. msgctxt "@title"
  2160. msgid "My Backups"
  2161. msgstr "Meus backups"
  2162. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2163. msgctxt "@empty_state"
  2164. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2165. msgstr "Você não tem nenhum backup atualmente. Use o botão 'Backup Agora' para criar um."
  2166. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2167. msgctxt "@backup_limit_info"
  2168. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2169. msgstr "Durante a fase de pré-visualização, você estará limitado a 5 backups visíveis. Remova um backup para ver os mais antigos."
  2170. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2171. msgctxt "@title:window"
  2172. msgid "Cura Backups"
  2173. msgstr "Backups do Cura"
  2174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2175. msgctxt "@title:window"
  2176. msgid "More information on anonymous data collection"
  2177. msgstr "Mais informações em coleção anônima de dados"
  2178. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2179. msgctxt "@text:window"
  2180. 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:"
  2181. 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:"
  2182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2183. msgctxt "@text:window"
  2184. msgid "I don't want to send anonymous data"
  2185. msgstr "Recusar enviar dados anônimos"
  2186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2187. msgctxt "@text:window"
  2188. msgid "Allow sending anonymous data"
  2189. msgstr "Permitir enviar dados anônimos"
  2190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2191. msgctxt "@title:window"
  2192. msgid "Post Processing Plugin"
  2193. msgstr "Complemento de Pós-Processamento"
  2194. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2195. msgctxt "@label"
  2196. msgid "Post Processing Scripts"
  2197. msgstr "Scripts de Pós-Processamento"
  2198. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:221
  2199. msgctxt "@action"
  2200. msgid "Add a script"
  2201. msgstr "Adicionar um script"
  2202. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:257
  2203. msgctxt "@label"
  2204. msgid "Settings"
  2205. msgstr "Ajustes"
  2206. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:466
  2207. msgctxt "@info:tooltip"
  2208. msgid "Change active post-processing scripts."
  2209. msgstr "Alterar scripts de pós-processamento ativos."
  2210. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:470
  2211. msgctxt "@info:tooltip"
  2212. msgid "The following script is active:"
  2213. msgid_plural "The following scripts are active:"
  2214. msgstr[0] "O seguinte script está ativo:"
  2215. msgstr[1] "Os seguintes scripts estão ativos:"
  2216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2217. msgctxt "@label"
  2218. msgid "Please select any upgrades made to this Ultimaker Original"
  2219. msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original"
  2220. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2221. msgctxt "@label"
  2222. msgid "Heated Build Plate (official kit or self-built)"
  2223. msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)"
  2224. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2225. msgctxt "@title"
  2226. msgid "Build Plate Leveling"
  2227. msgstr "Nivelamento da mesa de impressão"
  2228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2229. msgctxt "@label"
  2230. 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."
  2231. 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."
  2232. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2233. msgctxt "@label"
  2234. 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."
  2235. 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."
  2236. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2237. msgctxt "@action:button"
  2238. msgid "Start Build Plate Leveling"
  2239. msgstr "Iniciar Nivelamento da Mesa de Impressão"
  2240. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2241. msgctxt "@action:button"
  2242. msgid "Move to Next Position"
  2243. msgstr "Mover pra a Posição Seguinte"
  2244. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2245. msgctxt "@info"
  2246. msgid "Ultimaker Verified Plug-in"
  2247. msgstr "Complemento Verificado Ultimaker"
  2248. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2249. msgctxt "@info"
  2250. msgid "Ultimaker Certified Material"
  2251. msgstr "Material Certificado Ultimaker"
  2252. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2253. msgctxt "@info"
  2254. msgid "Ultimaker Verified Package"
  2255. msgstr "Pacote Verificado Ultimaker"
  2256. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:84
  2257. msgctxt "@title"
  2258. msgid "Loading..."
  2259. msgstr "Carregando..."
  2260. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:143
  2261. msgctxt "@button"
  2262. msgid "Plugins"
  2263. msgstr "Complementos"
  2264. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:151
  2265. msgctxt "@button"
  2266. msgid "Materials"
  2267. msgstr "Materiais"
  2268. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:188
  2269. msgctxt "@info"
  2270. msgid "Search in the browser"
  2271. msgstr "Buscar no navegador"
  2272. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:266
  2273. msgctxt "@button"
  2274. msgid "In order to use the package you will need to restart Cura"
  2275. msgstr "Para usar o pacote você precisará reiniciar o Cura"
  2276. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:274
  2277. msgctxt "@info:button, %1 is the application name"
  2278. msgid "Quit %1"
  2279. msgstr "Sair de %1"
  2280. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:165
  2281. msgctxt "@label"
  2282. msgid "By"
  2283. msgstr "Por"
  2284. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2285. msgctxt "@button"
  2286. msgid "Enable"
  2287. msgstr "Habilitar"
  2288. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2289. msgctxt "@button"
  2290. msgid "Disable"
  2291. msgstr "Desabilitar"
  2292. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:217
  2293. msgctxt "@button"
  2294. msgid "Downgrading..."
  2295. msgstr "Fazendo downgrade..."
  2296. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:218
  2297. msgctxt "@button"
  2298. msgid "Downgrade"
  2299. msgstr "Downgrade"
  2300. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:222
  2301. msgctxt "@button"
  2302. msgid "Installing..."
  2303. msgstr "Instalando..."
  2304. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:223
  2305. msgctxt "@button"
  2306. msgid "Install"
  2307. msgstr "Instalar"
  2308. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:227
  2309. msgctxt "@button"
  2310. msgid "Uninstall"
  2311. msgstr "Desinstalar"
  2312. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2313. msgctxt "@button"
  2314. msgid "Updating..."
  2315. msgstr "Atualizando..."
  2316. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2317. msgctxt "@button"
  2318. msgid "Update"
  2319. msgstr "Atualizar"
  2320. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2321. msgctxt "@header"
  2322. msgid "Install Plugins"
  2323. msgstr "Instalar Complementos"
  2324. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2325. msgctxt "@text"
  2326. msgid "Streamline your workflow and customize your Ultimaker Cura experience with plugins contributed by our amazing community of users."
  2327. 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."
  2328. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2329. msgctxt "@info:tooltip"
  2330. msgid "Manage packages"
  2331. msgstr "Gerir pacotes"
  2332. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:85
  2333. msgctxt "@header"
  2334. msgid "Description"
  2335. msgstr "Descrição"
  2336. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:117
  2337. msgctxt "@header"
  2338. msgid "Compatible printers"
  2339. msgstr "Impressoras compatíveis"
  2340. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:143
  2341. msgctxt "@info"
  2342. msgid "No compatibility information"
  2343. msgstr "Sem informação de compatibilidade"
  2344. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:162
  2345. msgctxt "@header"
  2346. msgid "Compatible support materials"
  2347. msgstr "Materiais de suporte compatíveis"
  2348. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:188
  2349. msgctxt "@info No materials"
  2350. msgid "None"
  2351. msgstr "Nenhum"
  2352. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:206
  2353. msgctxt "@header"
  2354. msgid "Compatible with Material Station"
  2355. msgstr "Compatível com Material Station"
  2356. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216 /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2357. msgctxt "@info"
  2358. msgid "Yes"
  2359. msgstr "Sim"
  2360. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216 /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2361. msgctxt "@info"
  2362. msgid "No"
  2363. msgstr "Não"
  2364. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:234
  2365. msgctxt "@header"
  2366. msgid "Optimized for Air Manager"
  2367. msgstr "Otimizado para o Air Manager"
  2368. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2369. msgctxt "@button"
  2370. msgid "Visit plug-in website"
  2371. msgstr "Visitar sítio web de complementos"
  2372. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2373. msgctxt "@button"
  2374. msgid "Website"
  2375. msgstr "Sítio web"
  2376. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:269
  2377. msgctxt "@button"
  2378. msgid "Buy spool"
  2379. msgstr "Comprar carretel"
  2380. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:278
  2381. msgctxt "@button"
  2382. msgid "Safety datasheet"
  2383. msgstr "Ficha de segurança"
  2384. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:287
  2385. msgctxt "@button"
  2386. msgid "Technical datasheet"
  2387. msgstr "Ficha técnica"
  2388. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2389. msgctxt "@header"
  2390. msgid "Package details"
  2391. msgstr "Detalhes do pacote"
  2392. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2393. msgctxt "@button:tooltip"
  2394. msgid "Back"
  2395. msgstr "Voltar"
  2396. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:16
  2397. msgctxt "@button"
  2398. msgid "Plugin license agreement"
  2399. msgstr "Acordo de licença do complemento"
  2400. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:48
  2401. msgctxt "@text"
  2402. msgid "Please read and agree with the plugin licence."
  2403. msgstr "Por favor leia e concorde com a licença do complemento."
  2404. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:74
  2405. msgctxt "@button"
  2406. msgid "Accept"
  2407. msgstr "Aceitar"
  2408. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:83
  2409. msgctxt "@button"
  2410. msgid "Decline"
  2411. msgstr "Recusar"
  2412. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2413. msgctxt "@button"
  2414. msgid "Failed to load packages:"
  2415. msgstr "Falha em carregar pacotes:"
  2416. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2417. msgctxt "@button"
  2418. msgid "Retry?"
  2419. msgstr "Tentar novamente?"
  2420. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:180
  2421. msgctxt "@button"
  2422. msgid "Loading"
  2423. msgstr "Carregando"
  2424. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2425. msgctxt "@message"
  2426. msgid "No more results to load"
  2427. msgstr "Não há mais resultados a carregar"
  2428. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2429. msgctxt "@message"
  2430. msgid "No results found with current filter"
  2431. msgstr "Não há resultados encontrados com o filtro atual"
  2432. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:239
  2433. msgctxt "@button"
  2434. msgid "Load more"
  2435. msgstr "Carregar mais"
  2436. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2437. msgctxt "@header"
  2438. msgid "Manage packages"
  2439. msgstr "Gerir pacotes"
  2440. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2441. msgctxt "@text"
  2442. msgid "Manage your Ultimaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  2443. 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."
  2444. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2445. msgctxt "@header"
  2446. msgid "Install Materials"
  2447. msgstr "Instalar Materiais"
  2448. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2449. msgctxt "@text"
  2450. msgid "Select and install material profiles optimised for your Ultimaker 3D printers."
  2451. msgstr "Selecione e instale perfis de material otimizados para suas impressoras 3D Ultimaker."
  2452. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2453. msgctxt "@title:tab"
  2454. msgid "Printer"
  2455. msgstr "Impressora"
  2456. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2457. msgctxt "@title:label"
  2458. msgid "Nozzle Settings"
  2459. msgstr "Ajustes do Bico"
  2460. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2461. msgctxt "@label"
  2462. msgid "Nozzle size"
  2463. msgstr "Tamanho do bico"
  2464. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2465. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2467. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265 /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2468. msgctxt "@label"
  2469. msgid "mm"
  2470. msgstr "mm"
  2471. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2472. msgctxt "@label"
  2473. msgid "Compatible material diameter"
  2474. msgstr "Diâmetro de material compatível"
  2475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2476. msgctxt "@label"
  2477. msgid "Nozzle offset X"
  2478. msgstr "Deslocamento X do Bico"
  2479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2480. msgctxt "@label"
  2481. msgid "Nozzle offset Y"
  2482. msgstr "Deslocamento Y do Bico"
  2483. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2484. msgctxt "@label"
  2485. msgid "Cooling Fan Number"
  2486. msgstr "Número da Ventoinha de Resfriamento"
  2487. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2488. msgctxt "@title:label"
  2489. msgid "Extruder Start G-code"
  2490. msgstr "G-Code Inicial do Extrusor"
  2491. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2492. msgctxt "@title:label"
  2493. msgid "Extruder End G-code"
  2494. msgstr "G-Code Final do Extrusor"
  2495. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2496. msgctxt "@title:label"
  2497. msgid "Printer Settings"
  2498. msgstr "Ajustes de Impressora"
  2499. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2500. msgctxt "@label"
  2501. msgid "X (Width)"
  2502. msgstr "X (largura)"
  2503. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2504. msgctxt "@label"
  2505. msgid "Y (Depth)"
  2506. msgstr "Y (Profundidade)"
  2507. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2508. msgctxt "@label"
  2509. msgid "Z (Height)"
  2510. msgstr "Z (Altura)"
  2511. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2512. msgctxt "@label"
  2513. msgid "Build plate shape"
  2514. msgstr "Forma da plataforma de impressão"
  2515. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2516. msgctxt "@label"
  2517. msgid "Origin at center"
  2518. msgstr "Origem no centro"
  2519. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2520. msgctxt "@label"
  2521. msgid "Heated bed"
  2522. msgstr "Mesa aquecida"
  2523. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2524. msgctxt "@label"
  2525. msgid "Heated build volume"
  2526. msgstr "Volume de construção aquecido"
  2527. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2528. msgctxt "@label"
  2529. msgid "G-code flavor"
  2530. msgstr "Sabor de G-Code"
  2531. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2532. msgctxt "@title:label"
  2533. msgid "Printhead Settings"
  2534. msgstr "Ajustes da Cabeça de Impressão"
  2535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2536. msgctxt "@label"
  2537. msgid "X min"
  2538. msgstr "X mín"
  2539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2540. msgctxt "@label"
  2541. msgid "Y min"
  2542. msgstr "Y mín"
  2543. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2544. msgctxt "@label"
  2545. msgid "X max"
  2546. msgstr "X máx"
  2547. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2548. msgctxt "@label"
  2549. msgid "Y max"
  2550. msgstr "Y máx"
  2551. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2552. msgctxt "@label"
  2553. msgid "Gantry Height"
  2554. msgstr "Altura do Eixo"
  2555. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2556. msgctxt "@label"
  2557. msgid "Number of Extruders"
  2558. msgstr "Número de Extrusores"
  2559. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2560. msgctxt "@label"
  2561. msgid "Apply Extruder offsets to GCode"
  2562. msgstr "Aplicar deslocamentos de Extrusão ao G-Code"
  2563. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2564. msgctxt "@title:label"
  2565. msgid "Start G-code"
  2566. msgstr "G-Code Inicial"
  2567. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2568. msgctxt "@title:label"
  2569. msgid "End G-code"
  2570. msgstr "G-Code Final"
  2571. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2572. msgctxt "@label:button"
  2573. msgid "My printers"
  2574. msgstr "Minhas impressoras"
  2575. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2576. msgctxt "@tooltip:button"
  2577. msgid "Monitor printers in Ultimaker Digital Factory."
  2578. msgstr "Monitora as impressoras na Ultimaker Digital Factory."
  2579. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2580. msgctxt "@tooltip:button"
  2581. msgid "Create print projects in Digital Library."
  2582. msgstr "Cria projetos de impressão na Digital Library."
  2583. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2584. msgctxt "@label:button"
  2585. msgid "Print jobs"
  2586. msgstr "Trabalhos de impressão"
  2587. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2588. msgctxt "@tooltip:button"
  2589. msgid "Monitor print jobs and reprint from your print history."
  2590. msgstr "Monitora trabalhos de impressão e reimprime a partir do histórico."
  2591. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2592. msgctxt "@tooltip:button"
  2593. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2594. msgstr "Estende o Ultimaker Cura com complementos e perfis de material."
  2595. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2596. msgctxt "@tooltip:button"
  2597. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2598. msgstr "Torne-se um especialista em impressão 3D com Ultimaker e-learning."
  2599. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2600. msgctxt "@label:button"
  2601. msgid "Ultimaker support"
  2602. msgstr "Suporte Ultimaker"
  2603. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  2604. msgctxt "@tooltip:button"
  2605. msgid "Learn how to get started with Ultimaker Cura."
  2606. msgstr "Saiba como começar com o Ultimaker Cura."
  2607. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  2608. msgctxt "@label:button"
  2609. msgid "Ask a question"
  2610. msgstr "Fazer uma pergunta"
  2611. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  2612. msgctxt "@tooltip:button"
  2613. msgid "Consult the Ultimaker Community."
  2614. msgstr "Consultar a Comunidade Ultimaker."
  2615. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  2616. msgctxt "@label:button"
  2617. msgid "Report a bug"
  2618. msgstr "Relatar um problema"
  2619. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  2620. msgctxt "@tooltip:button"
  2621. msgid "Let developers know that something is going wrong."
  2622. msgstr "Deixe os desenvolvedores saberem que algo está errado."
  2623. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  2624. msgctxt "@tooltip:button"
  2625. msgid "Visit the Ultimaker website."
  2626. msgstr "Visita o website da Ultimaker."
  2627. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ExtruderButton.qml:16
  2628. msgctxt "@label %1 is filled in with the name of an extruder"
  2629. msgid "Print Selected Model with %1"
  2630. msgid_plural "Print Selected Models with %1"
  2631. msgstr[0] "Imprimir Modelo Selecionado com %1"
  2632. msgstr[1] "Imprimir Modelos Selecionados com %1"
  2633. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2634. msgctxt "@title:menu menubar:toplevel"
  2635. msgid "&Settings"
  2636. msgstr "Aju&stes"
  2637. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2638. msgctxt "@title:window"
  2639. msgid "New project"
  2640. msgstr "Novo projeto"
  2641. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2642. msgctxt "@info:question"
  2643. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2644. msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos."
  2645. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2646. msgctxt "@action:button"
  2647. msgid "Marketplace"
  2648. msgstr "Mercado"
  2649. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2650. msgctxt "@label"
  2651. msgid "Build plate"
  2652. msgstr "Mesa de Impressão"
  2653. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2654. msgctxt "@tooltip"
  2655. 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."
  2656. msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado."
  2657. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  2658. msgctxt "@tooltip"
  2659. msgid "The current temperature of the heated bed."
  2660. msgstr "A temperatura atual da mesa aquecida."
  2661. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  2662. msgctxt "@tooltip of temperature input"
  2663. msgid "The temperature to pre-heat the bed to."
  2664. msgstr "A temperatura em que pré-aquecer a mesa."
  2665. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259 /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  2666. msgctxt "@button Cancel pre-heating"
  2667. msgid "Cancel"
  2668. msgstr "Cancelar"
  2669. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263 /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  2670. msgctxt "@button"
  2671. msgid "Pre-heat"
  2672. msgstr "Pré-aquecer"
  2673. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  2674. msgctxt "@tooltip of pre-heat"
  2675. 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."
  2676. 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."
  2677. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:56
  2678. msgctxt "@info:status"
  2679. msgid "The printer is not connected."
  2680. msgstr "A impressora não está conectada."
  2681. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  2682. msgctxt "@label"
  2683. msgid "Printer control"
  2684. msgstr "Controle da Impressora"
  2685. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  2686. msgctxt "@label"
  2687. msgid "Jog Position"
  2688. msgstr "Posição de Trote"
  2689. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  2690. msgctxt "@label"
  2691. msgid "X/Y"
  2692. msgstr "X/Y"
  2693. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2694. msgctxt "@label"
  2695. msgid "Z"
  2696. msgstr "Z"
  2697. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  2698. msgctxt "@label"
  2699. msgid "Jog Distance"
  2700. msgstr "Distância de Trote"
  2701. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  2702. msgctxt "@label"
  2703. msgid "Send G-code"
  2704. msgstr "Enviar G-Code"
  2705. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  2706. msgctxt "@tooltip of G-code command input"
  2707. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2708. msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando."
  2709. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  2710. msgctxt "@label"
  2711. msgid "Extruder"
  2712. msgstr "Extrusor"
  2713. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  2714. msgctxt "@tooltip"
  2715. 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."
  2716. 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."
  2717. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  2718. msgctxt "@tooltip"
  2719. msgid "The current temperature of this hotend."
  2720. msgstr "A temperatura atual deste hotend."
  2721. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  2722. msgctxt "@tooltip of temperature input"
  2723. msgid "The temperature to pre-heat the hotend to."
  2724. msgstr "A temperatura com a qual pré-aquecer o hotend."
  2725. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  2726. msgctxt "@tooltip of pre-heat"
  2727. 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."
  2728. 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."
  2729. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  2730. msgctxt "@tooltip"
  2731. msgid "The colour of the material in this extruder."
  2732. msgstr "A cor do material neste extrusor."
  2733. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  2734. msgctxt "@tooltip"
  2735. msgid "The material in this extruder."
  2736. msgstr "O material neste extrusor."
  2737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  2738. msgctxt "@tooltip"
  2739. msgid "The nozzle inserted in this extruder."
  2740. msgstr "O bico inserido neste extrusor."
  2741. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  2742. msgctxt "@title:window"
  2743. msgid "Open project file"
  2744. msgstr "Abrir arquivo de projeto"
  2745. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83
  2746. msgctxt "@text:window"
  2747. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2748. msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?"
  2749. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  2750. msgctxt "@text:window"
  2751. msgid "Remember my choice"
  2752. msgstr "Lembrar minha escolha"
  2753. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  2754. msgctxt "@action:button"
  2755. msgid "Open as project"
  2756. msgstr "Abrir como projeto"
  2757. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  2758. msgctxt "@action:button"
  2759. msgid "Import models"
  2760. msgstr "Importar modelos"
  2761. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  2762. msgctxt "@title:window"
  2763. msgid "Save Project"
  2764. msgstr "Salvar Projeto"
  2765. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:168
  2766. msgctxt "@action:label"
  2767. msgid "Extruder %1"
  2768. msgstr "Extrusor %1"
  2769. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:184
  2770. msgctxt "@action:label"
  2771. msgid "%1 & material"
  2772. msgstr "%1 & material"
  2773. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:186
  2774. msgctxt "@action:label"
  2775. msgid "Material"
  2776. msgstr "Material"
  2777. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:275
  2778. msgctxt "@action:label"
  2779. msgid "Don't show project summary on save again"
  2780. msgstr "Não exibir resumo do projeto ao salvar novamente"
  2781. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:289
  2782. msgctxt "@action:button"
  2783. msgid "Save"
  2784. msgstr "Salvar"
  2785. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:637
  2786. msgctxt "@title:window"
  2787. msgid "Open file(s)"
  2788. msgstr "Abrir arquivo(s)"
  2789. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  2790. msgctxt "@text:window"
  2791. 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?"
  2792. 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?"
  2793. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  2794. msgctxt "@action:button"
  2795. msgid "Import all as models"
  2796. msgstr "Importar todos como modelos"
  2797. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2798. msgctxt "@title:window The argument is the application name."
  2799. msgid "About %1"
  2800. msgstr "Sobre %1"
  2801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2802. msgctxt "@label"
  2803. msgid "version: %1"
  2804. msgstr "versão: %1"
  2805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2806. msgctxt "@label"
  2807. msgid "End-to-end solution for fused filament 3D printing."
  2808. msgstr "Solução completa para impressão 3D com filamento fundido."
  2809. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2810. msgctxt "@info:credit"
  2811. msgid ""
  2812. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2813. "Cura proudly uses the following open source projects:"
  2814. msgstr ""
  2815. "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n"
  2816. "Cura orgulhosamente usa os seguintes projetos open-source:"
  2817. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  2818. msgctxt "@label"
  2819. msgid "Graphical user interface"
  2820. msgstr "Interface Gráfica de usuário"
  2821. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2822. msgctxt "@label"
  2823. msgid "Application framework"
  2824. msgstr "Framework de Aplicações"
  2825. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2826. msgctxt "@label"
  2827. msgid "G-code generator"
  2828. msgstr "Gerador de G-Code"
  2829. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2830. msgctxt "@label"
  2831. msgid "Interprocess communication library"
  2832. msgstr "Biblioteca de comunicação interprocessos"
  2833. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  2834. msgctxt "@label"
  2835. msgid "Programming language"
  2836. msgstr "Linguagem de Programação"
  2837. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2838. msgctxt "@label"
  2839. msgid "GUI framework"
  2840. msgstr "Framework Gráfica"
  2841. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2842. msgctxt "@label"
  2843. msgid "GUI framework bindings"
  2844. msgstr "Ligações da Framework Gráfica"
  2845. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2846. msgctxt "@label"
  2847. msgid "C/C++ Binding library"
  2848. msgstr "Biblioteca de Ligações C/C++"
  2849. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2850. msgctxt "@label"
  2851. msgid "Data interchange format"
  2852. msgstr "Formato de Intercâmbio de Dados"
  2853. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2854. msgctxt "@label"
  2855. msgid "Support library for scientific computing"
  2856. msgstr "Biblioteca de suporte para computação científica"
  2857. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2858. msgctxt "@label"
  2859. msgid "Support library for faster math"
  2860. msgstr "Biblioteca de suporte para matemática acelerada"
  2861. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2862. msgctxt "@label"
  2863. msgid "Support library for handling STL files"
  2864. msgstr "Biblioteca de suporte para manuseamento de arquivos STL"
  2865. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2866. msgctxt "@label"
  2867. msgid "Support library for handling triangular meshes"
  2868. msgstr "Biblioteca de suporte para manuseamento de malhas triangulares"
  2869. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2870. msgctxt "@label"
  2871. msgid "Support library for handling 3MF files"
  2872. msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF"
  2873. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2874. msgctxt "@label"
  2875. msgid "Support library for file metadata and streaming"
  2876. msgstr "Biblioteca de suporte para streaming e metadados de arquivo"
  2877. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2878. msgctxt "@label"
  2879. msgid "Serial communication library"
  2880. msgstr "Biblioteca de comunicação serial"
  2881. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2882. msgctxt "@label"
  2883. msgid "ZeroConf discovery library"
  2884. msgstr "Biblioteca de descoberta 'ZeroConf'"
  2885. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2886. msgctxt "@label"
  2887. msgid "Polygon clipping library"
  2888. msgstr "Biblioteca de recorte de polígonos"
  2889. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2890. msgctxt "@label"
  2891. msgid "Python bindings for Clipper"
  2892. msgstr "Ligações de Python pra Clipper"
  2893. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2894. msgctxt "@Label"
  2895. msgid "Static type checker for Python"
  2896. msgstr "Verificador de tipos estáticos para Python"
  2897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:155 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  2898. msgctxt "@Label"
  2899. msgid "Root Certificates for validating SSL trustworthiness"
  2900. msgstr "Certificados raiz para validar confiança de SSL"
  2901. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  2902. msgctxt "@Label"
  2903. msgid "Python Error tracking library"
  2904. msgstr "Biblioteca de rastreamento de Erros de Python"
  2905. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2906. msgctxt "@label"
  2907. msgid "Polygon packing library, developed by Prusa Research"
  2908. msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research"
  2909. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2910. msgctxt "@label"
  2911. msgid "Python bindings for libnest2d"
  2912. msgstr "Ligações de Python para a libnest2d"
  2913. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2914. msgctxt "@label"
  2915. msgid "Support library for system keyring access"
  2916. msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema"
  2917. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  2918. msgctxt "@label"
  2919. msgid "Python extensions for Microsoft Windows"
  2920. msgstr "Extensões de python para o Microsoft Windows"
  2921. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  2922. msgctxt "@label"
  2923. msgid "Font"
  2924. msgstr "Fonte"
  2925. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  2926. msgctxt "@label"
  2927. msgid "SVG icons"
  2928. msgstr "Ícones SVG"
  2929. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  2930. msgctxt "@label"
  2931. msgid "Linux cross-distribution application deployment"
  2932. msgstr "Implementação de aplicação multidistribuição em Linux"
  2933. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:14
  2934. msgctxt "@title:window"
  2935. msgid "Discard or Keep changes"
  2936. msgstr "Descartar ou Manter alterações"
  2937. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:50
  2938. msgctxt "@text:window, %1 is a profile name"
  2939. 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'."
  2940. 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'."
  2941. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:76
  2942. msgctxt "@title:column"
  2943. msgid "Profile settings"
  2944. msgstr "Ajustes de perfil"
  2945. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:78
  2946. msgctxt "@title:column"
  2947. msgid "Current changes"
  2948. msgstr "Alterações atuais"
  2949. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:107 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:798
  2950. msgctxt "@option:discardOrKeep"
  2951. msgid "Always ask me this"
  2952. msgstr "Sempre perguntar"
  2953. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:108
  2954. msgctxt "@option:discardOrKeep"
  2955. msgid "Discard and never ask again"
  2956. msgstr "Descartar e não perguntar novamente"
  2957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  2958. msgctxt "@option:discardOrKeep"
  2959. msgid "Keep and never ask again"
  2960. msgstr "Manter e não perguntar novamente"
  2961. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:139
  2962. msgctxt "@action:button"
  2963. msgid "Discard changes"
  2964. msgstr "Descartar alterações"
  2965. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:145
  2966. msgctxt "@action:button"
  2967. msgid "Keep changes"
  2968. msgstr "Manter alterações"
  2969. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Widgets/ComboBox.qml:18
  2970. msgctxt "@label"
  2971. msgid "No items to select from"
  2972. msgstr "Sem itens para selecionar"
  2973. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2974. msgctxt "@title:menu menubar:file"
  2975. msgid "Open File(s)..."
  2976. msgstr "Abrir Arquivo(s)..."
  2977. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2978. msgctxt "@title:menu menubar:file"
  2979. msgid "Open &Recent"
  2980. msgstr "Abrir &Recente"
  2981. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  2982. msgctxt "@action:inmenu"
  2983. msgid "Visible Settings"
  2984. msgstr "Ajustes Visíveis"
  2985. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  2986. msgctxt "@action:inmenu"
  2987. msgid "Collapse All Categories"
  2988. msgstr "Encolher Todas As Categorias"
  2989. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  2990. msgctxt "@action:inmenu"
  2991. msgid "Manage Setting Visibility..."
  2992. msgstr "Gerenciar Visibilidade dos Ajustes..."
  2993. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:34
  2994. msgctxt "@title:menu"
  2995. msgid "&Material"
  2996. msgstr "&Material"
  2997. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:49
  2998. msgctxt "@action:inmenu"
  2999. msgid "Set as Active Extruder"
  3000. msgstr "Definir Como Extrusor Ativo"
  3001. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3002. msgctxt "@action:inmenu"
  3003. msgid "Enable Extruder"
  3004. msgstr "Habilitar Extrusor"
  3005. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3006. msgctxt "@action:inmenu"
  3007. msgid "Disable Extruder"
  3008. msgstr "Desabilitar Extrusor"
  3009. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3010. msgctxt "@label:category menu label"
  3011. msgid "Material"
  3012. msgstr "Material"
  3013. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:53
  3014. msgctxt "@label:category menu label"
  3015. msgid "Favorites"
  3016. msgstr "Favoritos"
  3017. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:78
  3018. msgctxt "@label:category menu label"
  3019. msgid "Generic"
  3020. msgstr "Genérico"
  3021. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/HelpMenu.qml:14
  3022. msgctxt "@title:menu menubar:toplevel"
  3023. msgid "&Help"
  3024. msgstr "Ajuda (&H)"
  3025. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:13
  3026. msgctxt "@title:menu menubar:toplevel"
  3027. msgid "&File"
  3028. msgstr "Arquivo (&F)"
  3029. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:44
  3030. msgctxt "@title:menu menubar:file"
  3031. msgid "&Save Project..."
  3032. msgstr "&Salvar Projeto..."
  3033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:77
  3034. msgctxt "@title:menu menubar:file"
  3035. msgid "&Export..."
  3036. msgstr "&Exportar..."
  3037. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:88
  3038. msgctxt "@action:inmenu menubar:file"
  3039. msgid "Export Selection..."
  3040. msgstr "Exportar Seleção..."
  3041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  3042. msgctxt "@title:menu menubar:toplevel"
  3043. msgid "P&references"
  3044. msgstr "P&referências"
  3045. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/EditMenu.qml:12
  3046. msgctxt "@title:menu menubar:toplevel"
  3047. msgid "&Edit"
  3048. msgstr "&Editar"
  3049. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:13
  3050. msgctxt "@title:menu menubar:settings"
  3051. msgid "&Printer"
  3052. msgstr "Im&pressora"
  3053. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:17
  3054. msgctxt "@label:category menu label"
  3055. msgid "Network enabled printers"
  3056. msgstr "Impressoras habilitadas pela rede"
  3057. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:50
  3058. msgctxt "@label:category menu label"
  3059. msgid "Local printers"
  3060. msgstr "Impressoras locais"
  3061. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  3062. msgctxt "@title:menu menubar:toplevel"
  3063. msgid "E&xtensions"
  3064. msgstr "E&xtensões"
  3065. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3066. msgctxt "@header"
  3067. msgid "Configurations"
  3068. msgstr "Configurações"
  3069. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3070. msgctxt "@label"
  3071. msgid "Loading available configurations from the printer..."
  3072. msgstr "Carregando configurações disponíveis da impressora..."
  3073. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3074. msgctxt "@label"
  3075. msgid "The configurations are not available because the printer is disconnected."
  3076. msgstr "As configurações não estão disponíveis porque a impressora está desconectada."
  3077. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3078. msgctxt "@label"
  3079. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3080. 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."
  3081. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3082. msgctxt "@label"
  3083. msgid "Marketplace"
  3084. msgstr "Mercado"
  3085. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:101
  3086. msgctxt "@tooltip"
  3087. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3088. msgstr "A configuração deste extrusor não é permitida e proíbe o fatiamento."
  3089. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:105
  3090. msgctxt "@tooltip"
  3091. msgid "There are no profiles matching the configuration of this extruder."
  3092. msgstr "Não há perfis correspondendo à configuração deste extrusor."
  3093. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:245
  3094. msgctxt "@label"
  3095. msgid "Select configuration"
  3096. msgstr "Selecione configuração"
  3097. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:354
  3098. msgctxt "@label"
  3099. msgid "Configurations"
  3100. msgstr "Configurações"
  3101. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  3102. msgctxt "@header"
  3103. msgid "Custom"
  3104. msgstr "Personalizado"
  3105. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62
  3106. msgctxt "@label"
  3107. msgid "Printer"
  3108. msgstr "Impressora"
  3109. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:214
  3110. msgctxt "@label"
  3111. msgid "Enabled"
  3112. msgstr "Habilitado"
  3113. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:263
  3114. msgctxt "@label"
  3115. msgid "Material"
  3116. msgstr "Material"
  3117. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:391
  3118. msgctxt "@label"
  3119. msgid "Use glue for better adhesion with this material combination."
  3120. msgstr "Use cola para melhor aderência com essa combinação de materiais."
  3121. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:29
  3122. msgctxt "@label"
  3123. msgid "Print Selected Model With:"
  3124. msgid_plural "Print Selected Models With:"
  3125. msgstr[0] "Imprimir Modelo Selecionado Com:"
  3126. msgstr[1] "Imprimir Modelos Selecionados Com:"
  3127. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:92
  3128. msgctxt "@title:window"
  3129. msgid "Multiply Selected Model"
  3130. msgid_plural "Multiply Selected Models"
  3131. msgstr[0] "Multiplicar Modelo Selecionado"
  3132. msgstr[1] "Multiplicar Modelos Selecionados"
  3133. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:123
  3134. msgctxt "@label"
  3135. msgid "Number of Copies"
  3136. msgstr "Número de Cópias"
  3137. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3138. msgctxt "@title:menu menubar:file"
  3139. msgid "Save Project..."
  3140. msgstr "Salvar Projeto..."
  3141. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:13
  3142. msgctxt "@title:menu menubar:toplevel"
  3143. msgid "&View"
  3144. msgstr "&Ver"
  3145. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:17
  3146. msgctxt "@action:inmenu menubar:view"
  3147. msgid "&Camera position"
  3148. msgstr "Posição da &câmera"
  3149. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:30
  3150. msgctxt "@action:inmenu menubar:view"
  3151. msgid "Camera view"
  3152. msgstr "Visão de câmera"
  3153. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:48
  3154. msgctxt "@action:inmenu menubar:view"
  3155. msgid "Perspective"
  3156. msgstr "Perspectiva"
  3157. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:59
  3158. msgctxt "@action:inmenu menubar:view"
  3159. msgid "Orthographic"
  3160. msgstr "Ortográfico"
  3161. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewsSelector.qml:50
  3162. msgctxt "@label"
  3163. msgid "View type"
  3164. msgstr "Tipo de Visão"
  3165. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:19 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3166. msgctxt "@label"
  3167. msgid "Sign in to the Ultimaker platform"
  3168. msgstr "Entre na plataforma Ultimaker"
  3169. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:39
  3170. msgctxt "@text"
  3171. msgid ""
  3172. "- Add material profiles and plug-ins from the Marketplace\n"
  3173. "- Back-up and sync your material profiles and plug-ins\n"
  3174. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3175. msgstr ""
  3176. "- Adicione perfis de material e plug-ins do Marketplace\n"
  3177. "- Faça backup e sincronize seus perfis de materiais e plugins\n"
  3178. "- Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da comunidade Ultimaker"
  3179. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:58
  3180. msgctxt "@button"
  3181. msgid "Create a free Ultimaker account"
  3182. msgstr "Criar uma conta Ultimaker gratuita"
  3183. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/AccountWidget.qml:24
  3184. msgctxt "@action:button"
  3185. msgid "Sign in"
  3186. msgstr "Entrar"
  3187. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:77
  3188. msgctxt "@label The argument is a timestamp"
  3189. msgid "Last update: %1"
  3190. msgstr "Última atualização: %1"
  3191. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:104
  3192. msgctxt "@button"
  3193. msgid "Ultimaker Account"
  3194. msgstr "Conta na Ultimaker"
  3195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:120
  3196. msgctxt "@button"
  3197. msgid "Sign Out"
  3198. msgstr "Deslogar"
  3199. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:28
  3200. msgctxt "@label"
  3201. msgid "Checking..."
  3202. msgstr "Verificando..."
  3203. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:35
  3204. msgctxt "@label"
  3205. msgid "Account synced"
  3206. msgstr "Conta sincronizada"
  3207. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:42
  3208. msgctxt "@label"
  3209. msgid "Something went wrong..."
  3210. msgstr "Alguma coisa deu errado..."
  3211. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:95
  3212. msgctxt "@button"
  3213. msgid "Install pending updates"
  3214. msgstr "Instalação aguardando atualizações"
  3215. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:116
  3216. msgctxt "@button"
  3217. msgid "Check for account updates"
  3218. msgstr "Verificar atualizações da conta"
  3219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3220. msgctxt "@label:PrintjobStatus"
  3221. msgid "Slicing..."
  3222. msgstr "Fatiando..."
  3223. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:81
  3224. msgctxt "@label:PrintjobStatus"
  3225. msgid "Unable to slice"
  3226. msgstr "Não foi possível fatiar"
  3227. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3228. msgctxt "@button"
  3229. msgid "Processing"
  3230. msgstr "Processando"
  3231. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3232. msgctxt "@button"
  3233. msgid "Slice"
  3234. msgstr "Fatiar"
  3235. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  3236. msgctxt "@label"
  3237. msgid "Start the slicing process"
  3238. msgstr "Inicia o processo de fatiamento"
  3239. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:137
  3240. msgctxt "@button"
  3241. msgid "Cancel"
  3242. msgstr "Cancelar"
  3243. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3244. msgctxt "@label"
  3245. msgid "Time estimation"
  3246. msgstr "Estimativa de tempo"
  3247. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3248. msgctxt "@label"
  3249. msgid "Material estimation"
  3250. msgstr "Estimativa de material"
  3251. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3252. msgctxt "@label m for meter"
  3253. msgid "%1m"
  3254. msgstr "%1m"
  3255. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3256. msgctxt "@label g for grams"
  3257. msgid "%1g"
  3258. msgstr "%1g"
  3259. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3260. msgctxt "@label"
  3261. msgid "No time estimation available"
  3262. msgstr "Sem estimativa de tempo disponível"
  3263. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3264. msgctxt "@label"
  3265. msgid "No cost estimation available"
  3266. msgstr "Sem estimativa de custo disponível"
  3267. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3268. msgctxt "@button"
  3269. msgid "Preview"
  3270. msgstr "Pré-visualização"
  3271. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:253
  3272. msgctxt "@label"
  3273. msgid "This package will be installed after restarting."
  3274. msgstr "Este pacote será instalado após o reinício."
  3275. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:463 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3276. msgctxt "@title:tab"
  3277. msgid "General"
  3278. msgstr "Geral"
  3279. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:466
  3280. msgctxt "@title:tab"
  3281. msgid "Settings"
  3282. msgstr "Ajustes"
  3283. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:468 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3284. msgctxt "@title:tab"
  3285. msgid "Printers"
  3286. msgstr "Impressoras"
  3287. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:470 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3288. msgctxt "@title:tab"
  3289. msgid "Materials"
  3290. msgstr "Materiais"
  3291. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:472 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:56
  3292. msgctxt "@title:tab"
  3293. msgid "Profiles"
  3294. msgstr "Perfis"
  3295. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:589
  3296. msgctxt "@title:window %1 is the application name"
  3297. msgid "Closing %1"
  3298. msgstr "Fechando %1"
  3299. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:590 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:599
  3300. msgctxt "@label %1 is the application name"
  3301. msgid "Are you sure you want to exit %1?"
  3302. msgstr "Tem certeza que quer sair de %1?"
  3303. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:747
  3304. msgctxt "@window:title"
  3305. msgid "Install Package"
  3306. msgstr "Instalar Pacote"
  3307. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:754
  3308. msgctxt "@title:window"
  3309. msgid "Open File(s)"
  3310. msgstr "Abrir Arquivo(s)"
  3311. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:756
  3312. msgctxt "@text:window"
  3313. 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."
  3314. 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."
  3315. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:836
  3316. msgctxt "@title:window"
  3317. msgid "Add Printer"
  3318. msgstr "Adicionar Impressora"
  3319. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:844
  3320. msgctxt "@title:window"
  3321. msgid "What's New"
  3322. msgstr "Novidades"
  3323. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3324. msgctxt "@label:Should be short"
  3325. msgid "On"
  3326. msgstr "On"
  3327. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3328. msgctxt "@label:Should be short"
  3329. msgid "Off"
  3330. msgstr "Off"
  3331. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3332. msgctxt "@label"
  3333. msgid "Experimental"
  3334. msgstr "Experimental"
  3335. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3336. msgctxt "@label"
  3337. msgid "Print settings"
  3338. msgstr "Ajustes de impressão"
  3339. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3340. msgctxt "@label shown when we load a Gcode file"
  3341. msgid "Print setup disabled. G-code file can not be modified."
  3342. msgstr "Configuração de Impressão desabilitada. O arquivo de G-Code não pode ser modificado."
  3343. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3344. msgctxt "@button"
  3345. msgid "Recommended"
  3346. msgstr "Recomendado"
  3347. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3348. msgctxt "@button"
  3349. msgid "Custom"
  3350. msgstr "Personalizado"
  3351. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3352. 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')"
  3353. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  3354. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  3355. msgstr[0] "Não há perfil %1 para a configuração no extrusor %2. O objetivo default será usado no lugar dele"
  3356. msgstr[1] "Não há perfis %1 para a configurações nos extrusores %2. O objetivo default será usado no lugar deles"
  3357. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:195
  3358. msgctxt "@label"
  3359. msgid "Gradual infill"
  3360. msgstr "Preenchimento gradual"
  3361. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:233
  3362. msgctxt "@label"
  3363. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3364. msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo."
  3365. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28
  3366. msgctxt "@label"
  3367. msgid "Support"
  3368. msgstr "Suporte"
  3369. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69
  3370. msgctxt "@label"
  3371. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3372. 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."
  3373. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:50 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3374. msgctxt "@label"
  3375. msgid "Profiles"
  3376. msgstr "Perfis"
  3377. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:80
  3378. msgctxt "@tooltip"
  3379. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3380. msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado."
  3381. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  3382. msgctxt "@label"
  3383. msgid "Adhesion"
  3384. msgstr "Aderência"
  3385. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72
  3386. msgctxt "@label"
  3387. 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."
  3388. 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."
  3389. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  3390. msgctxt "@label:header"
  3391. msgid "Custom profiles"
  3392. msgstr "Perfis personalizados"
  3393. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:147
  3394. msgctxt "@action:button"
  3395. msgid "Discard current changes"
  3396. msgstr "Descartar ajustes atuais"
  3397. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  3398. msgctxt "@label"
  3399. msgid "Profile"
  3400. msgstr "Perfil"
  3401. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:157
  3402. msgctxt "@tooltip"
  3403. msgid ""
  3404. "Some setting/override values are different from the values stored in the profile.\n"
  3405. "\n"
  3406. "Click to open the profile manager."
  3407. msgstr ""
  3408. "Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n"
  3409. "\n"
  3410. "Clique para abrir o gerenciador de perfis."
  3411. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:37
  3412. msgctxt "@title:column"
  3413. msgid "Setting"
  3414. msgstr "Ajustes"
  3415. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:38
  3416. msgctxt "@title:column"
  3417. msgid "Profile"
  3418. msgstr "Perfil"
  3419. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:39
  3420. msgctxt "@title:column"
  3421. msgid "Current"
  3422. msgstr "Atual"
  3423. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:40
  3424. msgctxt "@title:column Unit of measurement"
  3425. msgid "Unit"
  3426. msgstr "Unidade"
  3427. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3428. msgctxt "@title:window"
  3429. msgid "Rename"
  3430. msgstr "Renomear"
  3431. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3432. msgctxt "@info"
  3433. msgid "Please provide a new name."
  3434. msgstr "Por favor, escolha um novo nome."
  3435. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3436. msgctxt "@item:tooltip"
  3437. msgid "This setting has been hidden by the active machine and will not be visible."
  3438. msgstr "Este ajuste foi omitido para a máquina ativa e não ficará visível."
  3439. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3440. msgctxt "@item:tooltip %1 is list of setting names"
  3441. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3442. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3443. msgstr[0] "Este ajuste foi mantido invisível pelo valor de %1. Altere o valor desse ajuste para tornar este ajuste visível."
  3444. msgstr[1] "Este ajuste foi mantido invisível pelos valores de %1. Altere o valor desses ajustes para tornar este ajuste visível."
  3445. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3446. msgctxt "@title:tab"
  3447. msgid "Setting Visibility"
  3448. msgstr "Visibilidade dos Ajustes"
  3449. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:22 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:131
  3450. msgctxt "@action:button"
  3451. msgid "Defaults"
  3452. msgstr "Defaults"
  3453. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:53
  3454. msgctxt "@label:textbox"
  3455. msgid "Check all"
  3456. msgstr "Verificar tudo"
  3457. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:49
  3458. msgctxt "@action:button"
  3459. msgid "Add New"
  3460. msgstr "Adicionar Novo"
  3461. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:135 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:293
  3462. msgctxt "@action:button"
  3463. msgid "Activate"
  3464. msgstr "Ativar"
  3465. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:147 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:330
  3466. msgctxt "@action:button"
  3467. msgid "Rename"
  3468. msgstr "Renomear"
  3469. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3470. msgctxt "@title:window"
  3471. msgid "Confirm Diameter Change"
  3472. msgstr "Confirmar Mudança de Diâmetro"
  3473. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3474. msgctxt "@label (%1 is a number)"
  3475. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3476. msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?"
  3477. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3478. msgctxt "@label"
  3479. msgid "Display Name"
  3480. msgstr "Exibir Nome"
  3481. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3482. msgctxt "@label"
  3483. msgid "Brand"
  3484. msgstr "Marca"
  3485. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3486. msgctxt "@label"
  3487. msgid "Material Type"
  3488. msgstr "Tipo de Material"
  3489. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:209
  3490. msgctxt "@label"
  3491. msgid "Color"
  3492. msgstr "Cor"
  3493. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:261
  3494. msgctxt "@title"
  3495. msgid "Material color picker"
  3496. msgstr "Seletor de cores do material"
  3497. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:274
  3498. msgctxt "@label"
  3499. msgid "Properties"
  3500. msgstr "Propriedades"
  3501. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:285
  3502. msgctxt "@label"
  3503. msgid "Density"
  3504. msgstr "Densidade"
  3505. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:318
  3506. msgctxt "@label"
  3507. msgid "Diameter"
  3508. msgstr "Diâmetro"
  3509. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:368
  3510. msgctxt "@label"
  3511. msgid "Filament Cost"
  3512. msgstr "Custo do Filamento"
  3513. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:400
  3514. msgctxt "@label"
  3515. msgid "Filament weight"
  3516. msgstr "Peso do Filamento"
  3517. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:432
  3518. msgctxt "@label"
  3519. msgid "Filament length"
  3520. msgstr "Comprimento do Filamento"
  3521. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:450
  3522. msgctxt "@label"
  3523. msgid "Cost per Meter"
  3524. msgstr "Custo por Metro"
  3525. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:464
  3526. msgctxt "@label"
  3527. msgid "This material is linked to %1 and shares some of its properties."
  3528. msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades."
  3529. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:471
  3530. msgctxt "@label"
  3531. msgid "Unlink Material"
  3532. msgstr "Desvincular Material"
  3533. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:484
  3534. msgctxt "@label"
  3535. msgid "Description"
  3536. msgstr "Descrição"
  3537. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:502
  3538. msgctxt "@label"
  3539. msgid "Adhesion Information"
  3540. msgstr "Informação sobre Aderência"
  3541. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:637
  3542. msgctxt "@title"
  3543. msgid "Information"
  3544. msgstr "Informação"
  3545. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3546. msgctxt "@title:window"
  3547. msgid "Sync materials with printers"
  3548. msgstr "Sincronizar materiais com impressoras"
  3549. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:48
  3550. msgctxt "@title:header"
  3551. msgid "Sync materials with printers"
  3552. msgstr "Sincronizar materiais com impressoras"
  3553. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:54
  3554. msgctxt "@text"
  3555. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  3556. msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras."
  3557. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:76
  3558. msgctxt "@button"
  3559. msgid "Why do I need to sync material profiles?"
  3560. msgstr "Por que eu preciso sincronizar perfis de material?"
  3561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:85
  3562. msgctxt "@button"
  3563. msgid "Start"
  3564. msgstr "Iniciar"
  3565. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:127
  3566. msgctxt "@title:header"
  3567. msgid "Sign in"
  3568. msgstr "Entrar"
  3569. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:133
  3570. msgctxt "@text"
  3571. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3572. msgstr "Para automaticamente sincronizar os perfis de material com todas as suas impressoras conectadas à Digital Factory, você precisa estar logado pelo Cura."
  3573. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:157 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:587
  3574. msgctxt "@button"
  3575. msgid "Sync materials with USB"
  3576. msgstr "Sincronizar materiais usando USB"
  3577. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:190
  3578. msgctxt "@title:header"
  3579. msgid "The following printers will receive the new material profiles:"
  3580. msgstr "Os seguintes materiais receberão novos perfis de material:"
  3581. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:197
  3582. msgctxt "@title:header"
  3583. msgid "Something went wrong when sending the materials to the printers."
  3584. msgstr "Algo de errado aconteceu ao enviar os materiais às impressoras."
  3585. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:204
  3586. msgctxt "@title:header"
  3587. msgid "Material profiles successfully synced with the following printers:"
  3588. msgstr "Perfis de material sincronizados com sucesso com as seguintes impressoras:"
  3589. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429
  3590. msgctxt "@button"
  3591. msgid "Troubleshooting"
  3592. msgstr "Resolução de problemas"
  3593. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406
  3594. msgctxt "@text Asking the user whether printers are missing in a list."
  3595. msgid "Printers missing?"
  3596. msgstr "Impressoras faltando?"
  3597. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408
  3598. msgctxt "@text"
  3599. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  3600. msgstr "Certifique-se de que todas as suas impressoras estejam LIGADAS e conectadas à Digital Factory."
  3601. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417
  3602. msgctxt "@button"
  3603. msgid "Refresh List"
  3604. msgstr "Atualizar Lista"
  3605. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3606. msgctxt "@button"
  3607. msgid "Try again"
  3608. msgstr "Tentar novamente"
  3609. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3610. msgctxt "@button"
  3611. msgid "Done"
  3612. msgstr "Feito"
  3613. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:607
  3614. msgctxt "@button"
  3615. msgid "Sync"
  3616. msgstr "Sincronizar"
  3617. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519
  3618. msgctxt "@button"
  3619. msgid "Syncing"
  3620. msgstr "Sincronizando"
  3621. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537
  3622. msgctxt "@title:header"
  3623. msgid "No printers found"
  3624. msgstr "Nenhuma impressora encontrada"
  3625. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558
  3626. msgctxt "@text"
  3627. 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."
  3628. 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."
  3629. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:570
  3630. msgctxt "@button"
  3631. msgid "Learn how to connect your printer to Digital Factory"
  3632. msgstr "Aprenda como conectar sua impressora à Digital Factory"
  3633. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:598
  3634. msgctxt "@button"
  3635. msgid "Refresh"
  3636. msgstr "Atualizar"
  3637. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:627
  3638. msgctxt "@title:header"
  3639. msgid "Sync material profiles via USB"
  3640. msgstr "Sincronizar perfis de material via USB"
  3641. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:633
  3642. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  3643. msgid "Follow the following steps to load the new material profiles to your printer."
  3644. msgstr "Siga os passos seguintes para carregar os perfis de material novos na sua impressora."
  3645. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665
  3646. msgctxt "@text"
  3647. msgid "Click the export material archive button."
  3648. msgstr "Clique no botão de exportar arquivo de material."
  3649. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:666
  3650. msgctxt "@text"
  3651. msgid "Save the .umm file on a USB stick."
  3652. msgstr "Grava o arquivo .umm em um pendrive USB."
  3653. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:667
  3654. msgctxt "@text"
  3655. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  3656. msgstr "Insira o pendrive USB na sua impressora e faça o procedimento de carregar novos perfis de material."
  3657. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:675
  3658. msgctxt "@button"
  3659. msgid "How to load new material profiles to my printer"
  3660. msgstr "Como carregar novos perfis de material na minha impressora"
  3661. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3662. msgctxt "@button"
  3663. msgid "Back"
  3664. msgstr "Voltar"
  3665. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3666. msgctxt "@button"
  3667. msgid "Export material archive"
  3668. msgstr "Exportar arquivo de material"
  3669. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:733
  3670. msgctxt "@title:window"
  3671. msgid "Export All Materials"
  3672. msgstr "Exportar Todos Os Materiais"
  3673. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  3674. msgctxt "@label"
  3675. msgid "Materials compatible with active printer:"
  3676. msgstr "Materiais compatíveis com a impressora ativa:"
  3677. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:93
  3678. msgctxt "@action:button"
  3679. msgid "Create new"
  3680. msgstr "Criar novo"
  3681. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  3682. msgctxt "@action:button"
  3683. msgid "Import"
  3684. msgstr "Importar"
  3685. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  3686. msgctxt "@action:button"
  3687. msgid "Sync with Printers"
  3688. msgstr "Sincronizar com Impressoras"
  3689. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:310
  3690. msgctxt "@action:button"
  3691. msgid "Duplicate"
  3692. msgstr "Duplicar"
  3693. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:341
  3694. msgctxt "@action:button"
  3695. msgid "Export"
  3696. msgstr "Exportar"
  3697. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:386
  3698. msgctxt "@title:window"
  3699. msgid "Confirm Remove"
  3700. msgstr "Confirmar Remoção"
  3701. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:387
  3702. msgctxt "@label (%1 is object name)"
  3703. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3704. msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!"
  3705. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  3706. msgctxt "@title:window"
  3707. msgid "Import Material"
  3708. msgstr "Importar Material"
  3709. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  3710. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3711. msgid "Successfully imported material <filename>%1</filename>"
  3712. msgstr "Material <filename>%1</filename> importado com sucesso"
  3713. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  3714. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3715. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3716. msgstr "Não foi possível importar material <filename>%1</filename>: <message>%2</message>"
  3717. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:265
  3718. msgctxt "@title:window"
  3719. msgid "Export Material"
  3720. msgstr "Exportar Material"
  3721. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:270
  3722. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3723. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3724. msgstr "Falha em exportar material para <filename>%1</filename>: <message>%2</message>"
  3725. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:273
  3726. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3727. msgid "Successfully exported material to <filename>%1</filename>"
  3728. msgstr "Material exportado para <filename>%1</filename> com sucesso"
  3729. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:58
  3730. msgctxt "@label"
  3731. msgid "Profiles compatible with active printer:"
  3732. msgstr "Perfis compatíveis com a impressora ativa:"
  3733. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:97
  3734. msgctxt "@action:tooltip"
  3735. msgid "Create new profile from current settings/overrides"
  3736. msgstr "Criar novo perfil a partir dos ajustes/sobreposições atuais"
  3737. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:124
  3738. msgctxt "@action:label"
  3739. msgid "Some settings from current profile were overwritten."
  3740. msgstr "Alguns ajustes do perfil atual foram sobrescritos."
  3741. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:139
  3742. msgctxt "@action:button"
  3743. msgid "Update profile."
  3744. msgstr "Atualizar perfil."
  3745. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  3746. msgctxt "@action:tooltip"
  3747. msgid "Update profile with current settings/overrides"
  3748. msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  3749. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:157
  3750. msgctxt "@action:label"
  3751. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3752. msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo."
  3753. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:164
  3754. msgctxt "@action:label"
  3755. msgid "Your current settings match the selected profile."
  3756. msgstr "Seus ajustes atuais coincidem com o perfil selecionado."
  3757. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  3758. msgctxt "@title:tab"
  3759. msgid "Global Settings"
  3760. msgstr "Ajustes globais"
  3761. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3762. msgctxt "@title:window"
  3763. msgid "Create Profile"
  3764. msgstr "Criar Perfil"
  3765. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:279
  3766. msgctxt "@info"
  3767. msgid "Please provide a name for this profile."
  3768. msgstr "Por favor dê um nome a este perfil."
  3769. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:351 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:362
  3770. msgctxt "@title:window"
  3771. msgid "Export Profile"
  3772. msgstr "Exportar Perfil"
  3773. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:376
  3774. msgctxt "@title:window"
  3775. msgid "Duplicate Profile"
  3776. msgstr "Duplicar Perfil"
  3777. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  3778. msgctxt "@title:window"
  3779. msgid "Rename Profile"
  3780. msgstr "Renomear Perfil"
  3781. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:416 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:423
  3782. msgctxt "@title:window"
  3783. msgid "Import Profile"
  3784. msgstr "Importar Perfil"
  3785. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:169
  3786. msgctxt "@label"
  3787. msgid "Interface"
  3788. msgstr "Interface"
  3789. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:213
  3790. msgctxt "@heading"
  3791. msgid "-- incomplete --"
  3792. msgstr "-- incompleto --"
  3793. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:258
  3794. msgctxt "@label"
  3795. msgid "Currency:"
  3796. msgstr "Moeda:"
  3797. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:273
  3798. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3799. msgid "Theme*:"
  3800. msgstr "Tema*:"
  3801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:319
  3802. msgctxt "@info:tooltip"
  3803. msgid "Slice automatically when changing settings."
  3804. msgstr "Fatiar automaticamente quando mudar ajustes."
  3805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:327
  3806. msgctxt "@option:check"
  3807. msgid "Slice automatically"
  3808. msgstr "Fatiar automaticamente"
  3809. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:336
  3810. msgctxt "@label"
  3811. msgid "*You will need to restart the application for these changes to have effect."
  3812. msgstr "*Você precisa reiniciar a aplicação para que estas alterações tenham efeito."
  3813. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3814. msgctxt "@label"
  3815. msgid "Viewport behavior"
  3816. msgstr "Comportamento da área de visualização"
  3817. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:359
  3818. msgctxt "@info:tooltip"
  3819. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3820. msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente."
  3821. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3822. msgctxt "@option:check"
  3823. msgid "Display overhang"
  3824. msgstr "Exibir seções pendentes"
  3825. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:378
  3826. msgctxt "@info:tooltip"
  3827. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3828. 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."
  3829. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:387
  3830. msgctxt "@option:check"
  3831. msgid "Display model errors"
  3832. msgstr "Exibir erros de modelo"
  3833. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:395
  3834. msgctxt "@info:tooltip"
  3835. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3836. msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado"
  3837. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:400
  3838. msgctxt "@action:button"
  3839. msgid "Center camera when item is selected"
  3840. msgstr "Centralizar câmera quanto o item é selecionado"
  3841. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:410
  3842. msgctxt "@info:tooltip"
  3843. msgid "Should the default zoom behavior of cura be inverted?"
  3844. msgstr "O comportamento default de ampliação deve ser invertido?"
  3845. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:415
  3846. msgctxt "@action:button"
  3847. msgid "Invert the direction of camera zoom."
  3848. msgstr "Inverter a direção da ampliação de câmera."
  3849. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  3850. msgctxt "@info:tooltip"
  3851. msgid "Should zooming move in the direction of the mouse?"
  3852. msgstr "A ampliação (zoom) deve se mover na direção do mouse?"
  3853. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  3854. msgctxt "@info:tooltip"
  3855. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3856. msgstr "Ampliar com o mouse não é suportado na perspectiva ortográfica."
  3857. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:436
  3858. msgctxt "@action:button"
  3859. msgid "Zoom toward mouse direction"
  3860. msgstr "Ampliar na direção do mouse"
  3861. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:462
  3862. msgctxt "@info:tooltip"
  3863. msgid "Should models on the platform be moved so that they no longer intersect?"
  3864. msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?"
  3865. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:467
  3866. msgctxt "@option:check"
  3867. msgid "Ensure models are kept apart"
  3868. msgstr "Assegurar que os modelos sejam mantidos separados"
  3869. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:476
  3870. msgctxt "@info:tooltip"
  3871. msgid "Should models on the platform be moved down to touch the build plate?"
  3872. msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?"
  3873. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:481
  3874. msgctxt "@option:check"
  3875. msgid "Automatically drop models to the build plate"
  3876. msgstr "Automaticamente fazer os modelos caírem na mesa de impressão"
  3877. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:493
  3878. msgctxt "@info:tooltip"
  3879. msgid "Show caution message in g-code reader."
  3880. msgstr "Exibir mensagem de alerta no leitor de G-Code."
  3881. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:502
  3882. msgctxt "@option:check"
  3883. msgid "Caution message in g-code reader"
  3884. msgstr "Mensagem de alera no leitor de G-Code"
  3885. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:510
  3886. msgctxt "@info:tooltip"
  3887. msgid "Should layer be forced into compatibility mode?"
  3888. msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?"
  3889. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:515
  3890. msgctxt "@option:check"
  3891. msgid "Force layer view compatibility mode (restart required)"
  3892. msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)"
  3893. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:525
  3894. msgctxt "@info:tooltip"
  3895. msgid "Should Cura open at the location it was closed?"
  3896. msgstr "O Cura deve abrir no lugar onde foi fechado?"
  3897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:530
  3898. msgctxt "@option:check"
  3899. msgid "Restore window position on start"
  3900. msgstr "Restaurar posição da janela no início"
  3901. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:540
  3902. msgctxt "@info:tooltip"
  3903. msgid "What type of camera rendering should be used?"
  3904. msgstr "Que tipo de renderização de câmera deve ser usada?"
  3905. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:547
  3906. msgctxt "@window:text"
  3907. msgid "Camera rendering:"
  3908. msgstr "Renderização de câmera:"
  3909. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:554
  3910. msgid "Perspective"
  3911. msgstr "Perspectiva"
  3912. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:555
  3913. msgid "Orthographic"
  3914. msgstr "Ortográfica"
  3915. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:595
  3916. msgctxt "@label"
  3917. msgid "Opening and saving files"
  3918. msgstr "Abrindo e salvando arquivos"
  3919. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:602
  3920. msgctxt "@info:tooltip"
  3921. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3922. msgstr "Arquivos da área de trabalho ou de aplicações externas devem ser abertos na mesma instância do Cura?"
  3923. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:607
  3924. msgctxt "@option:check"
  3925. msgid "Use a single instance of Cura"
  3926. msgstr "Usar uma única instância do Cura"
  3927. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:618
  3928. msgctxt "@info:tooltip"
  3929. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  3930. msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?"
  3931. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:624
  3932. msgctxt "@option:check"
  3933. msgid "Clear buildplate before loading model into the single instance"
  3934. msgstr "Limpar a plataforma de impressão antes de carregar modelo em instância única"
  3935. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:634
  3936. msgctxt "@info:tooltip"
  3937. msgid "Should models be scaled to the build volume if they are too large?"
  3938. msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?"
  3939. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:639
  3940. msgctxt "@option:check"
  3941. msgid "Scale large models"
  3942. msgstr "Redimensionar modelos grandes"
  3943. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3944. msgctxt "@info:tooltip"
  3945. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3946. 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?"
  3947. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:654
  3948. msgctxt "@option:check"
  3949. msgid "Scale extremely small models"
  3950. msgstr "Redimensionar modelos minúsculos"
  3951. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:664
  3952. msgctxt "@info:tooltip"
  3953. msgid "Should models be selected after they are loaded?"
  3954. msgstr "Os modelos devem ser selecionados após serem carregados?"
  3955. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:669
  3956. msgctxt "@option:check"
  3957. msgid "Select models when loaded"
  3958. msgstr "Selecionar modelos ao carregar"
  3959. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:679
  3960. msgctxt "@info:tooltip"
  3961. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3962. msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?"
  3963. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:684
  3964. msgctxt "@option:check"
  3965. msgid "Add machine prefix to job name"
  3966. msgstr "Adicionar prefixo de máquina ao nome do trabalho"
  3967. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:694
  3968. msgctxt "@info:tooltip"
  3969. msgid "Should a summary be shown when saving a project file?"
  3970. msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?"
  3971. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:698
  3972. msgctxt "@option:check"
  3973. msgid "Show summary dialog when saving project"
  3974. msgstr "Exibir diálogo de resumo ao salvar projeto"
  3975. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:708
  3976. msgctxt "@info:tooltip"
  3977. msgid "Default behavior when opening a project file"
  3978. msgstr "Comportamento default ao abrir um arquivo de projeto"
  3979. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:716
  3980. msgctxt "@window:text"
  3981. msgid "Default behavior when opening a project file: "
  3982. msgstr "Comportamento default ao abrir um arquivo de projeto: "
  3983. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:731
  3984. msgctxt "@option:openProject"
  3985. msgid "Always ask me this"
  3986. msgstr "Sempre me perguntar"
  3987. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:732
  3988. msgctxt "@option:openProject"
  3989. msgid "Always open as a project"
  3990. msgstr "Sempre abrir como projeto"
  3991. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3992. msgctxt "@option:openProject"
  3993. msgid "Always import models"
  3994. msgstr "Sempre importar modelos"
  3995. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:770
  3996. msgctxt "@info:tooltip"
  3997. 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."
  3998. 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."
  3999. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:784
  4000. msgctxt "@window:text"
  4001. msgid "Default behavior for changed setting values when switching to a different profile: "
  4002. msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: "
  4003. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:799
  4004. msgctxt "@option:discardOrKeep"
  4005. msgid "Always discard changed settings"
  4006. msgstr "Sempre descartar alterações da configuração"
  4007. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:800
  4008. msgctxt "@option:discardOrKeep"
  4009. msgid "Always transfer changed settings to new profile"
  4010. msgstr "Sempre transferir as alterações para o novo perfil"
  4011. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:834
  4012. msgctxt "@label"
  4013. msgid "Privacy"
  4014. msgstr "Privacidade"
  4015. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:840
  4016. msgctxt "@info:tooltip"
  4017. 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."
  4018. 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."
  4019. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:845
  4020. msgctxt "@option:check"
  4021. msgid "Send (anonymous) print information"
  4022. msgstr "Enviar informação (anônima) de impressão"
  4023. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:875
  4024. msgctxt "@label"
  4025. msgid "Updates"
  4026. msgstr "Atualizações"
  4027. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:882
  4028. msgctxt "@info:tooltip"
  4029. msgid "Should Cura check for updates when the program is started?"
  4030. msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?"
  4031. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:887
  4032. msgctxt "@option:check"
  4033. msgid "Check for updates on start"
  4034. msgstr "Verificar atualizações na inicialização"
  4035. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:903
  4036. msgctxt "@info:tooltip"
  4037. msgid "When checking for updates, only check for stable releases."
  4038. msgstr "Ao procurar por atualizações, somente o fazer para versões estáveis."
  4039. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:909
  4040. msgctxt "@option:radio"
  4041. msgid "Stable releases only"
  4042. msgstr "Versões estáveis somente"
  4043. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:919
  4044. msgctxt "@info:tooltip"
  4045. msgid "When checking for updates, check for both stable and for beta releases."
  4046. msgstr "Ao procurar por atualizações, fazer para versões estáveis ou beta."
  4047. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:925
  4048. msgctxt "@option:radio"
  4049. msgid "Stable and Beta releases"
  4050. msgstr "Versões estáveis ou beta"
  4051. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:935
  4052. msgctxt "@info:tooltip"
  4053. 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!"
  4054. 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!"
  4055. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:940
  4056. msgctxt "@option:check"
  4057. msgid "Get notifications for plugin updates"
  4058. msgstr "Ter notificações para atualizações de complementos"
  4059. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4060. msgctxt "@label"
  4061. msgid "Add printer by IP address"
  4062. msgstr "Adicionar impressora por endereço IP"
  4063. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4064. msgctxt "@text"
  4065. msgid "Enter your printer's IP address."
  4066. msgstr "Entre o endereço IP de sua impressora."
  4067. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4068. msgctxt "@button"
  4069. msgid "Add"
  4070. msgstr "Adicionar"
  4071. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4072. msgctxt "@label"
  4073. msgid "Could not connect to device."
  4074. msgstr "Não foi possível conectar ao dispositivo."
  4075. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4076. msgctxt "@label"
  4077. msgid "Can't connect to your Ultimaker printer?"
  4078. msgstr "Não consegue conectar à sua impressora Ultimaker?"
  4079. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4080. msgctxt "@label"
  4081. msgid "The printer at this address has not responded yet."
  4082. msgstr "A impressora neste endereço ainda não respondeu."
  4083. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4084. msgctxt "@label"
  4085. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4086. msgstr "Esta impressora não pode ser adicionada porque é uma impressora desconhecida ou porque não é o host do grupo."
  4087. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4088. msgctxt "@button"
  4089. msgid "Connect"
  4090. msgstr "Conectar"
  4091. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4092. msgctxt "@label"
  4093. msgid "Release Notes"
  4094. msgstr "Notas de lançamento"
  4095. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4096. msgctxt "@label"
  4097. msgid "User Agreement"
  4098. msgstr "Contrato de Usuário"
  4099. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  4100. msgctxt "@button"
  4101. msgid "Agree"
  4102. msgstr "Concordar"
  4103. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4104. msgctxt "@button"
  4105. msgid "Decline and close"
  4106. msgstr "Rejeitar e fechar"
  4107. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4108. msgctxt "@label"
  4109. msgid "What's New"
  4110. msgstr "O Que Há de Novo"
  4111. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:184 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77 /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  4112. msgctxt "@button"
  4113. msgid "Next"
  4114. msgstr "Próximo"
  4115. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4116. msgctxt "@label"
  4117. msgid "Add a Cloud printer"
  4118. msgstr "Adicionar uma impressora de Nuvem"
  4119. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4120. msgctxt "@label"
  4121. msgid "Waiting for Cloud response"
  4122. msgstr "Aguardando resposta da Nuvem"
  4123. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4124. msgctxt "@label"
  4125. msgid "No printers found in your account?"
  4126. msgstr "Nenhuma impressora encontrada em sua conta?"
  4127. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4128. msgctxt "@label"
  4129. msgid "The following printers in your account have been added in Cura:"
  4130. msgstr "As seguintes impressoras da sua conta foram adicionadas ao Cura:"
  4131. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:194
  4132. msgctxt "@button"
  4133. msgid "Add printer manually"
  4134. msgstr "Adicionar impressora manualmente"
  4135. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4136. msgctxt "@text"
  4137. msgid "Add material settings and plugins from the Marketplace"
  4138. msgstr "Adicionar ajustes de materiais e plugins do Marketplace"
  4139. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4140. msgctxt "@text"
  4141. msgid "Backup and sync your material settings and plugins"
  4142. msgstr "Fazer backup e sincronizar seus ajustes de materiais e plugins"
  4143. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4144. msgctxt "@text"
  4145. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4146. msgstr "Compartilhe ideias e consiga ajuda de mais de 48.000 usuários da Comunidade Ultimaker"
  4147. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4148. msgctxt "@button"
  4149. msgid "Skip"
  4150. msgstr "Pular"
  4151. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4152. msgctxt "@text"
  4153. msgid "Create a free Ultimaker Account"
  4154. msgstr "Criar uma conta Ultimaker gratuita"
  4155. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4156. msgctxt "@label"
  4157. msgid "Welcome to Ultimaker Cura"
  4158. msgstr "Bem-vindo ao Ultimaker Cura"
  4159. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4160. msgctxt "@text"
  4161. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  4162. msgstr "Por favor siga estes passos para configurar o Ultimaker Cura. Isto tomará apenas alguns momentos."
  4163. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4164. msgctxt "@button"
  4165. msgid "Get started"
  4166. msgstr "Começar"
  4167. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4168. msgctxt "@label"
  4169. msgid "Empty"
  4170. msgstr "Vazio"
  4171. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:206
  4172. msgctxt "@label"
  4173. msgid "Manufacturer"
  4174. msgstr "Fabricante"
  4175. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:217
  4176. msgctxt "@label"
  4177. msgid "Profile author"
  4178. msgstr "Autor do perfil"
  4179. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:229
  4180. msgctxt "@label"
  4181. msgid "Printer name"
  4182. msgstr "Nome da impressora"
  4183. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  4184. msgctxt "@text"
  4185. msgid "Please name your printer"
  4186. msgstr "Por favor dê um nome à sua impressora"
  4187. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4188. msgctxt "@label"
  4189. msgid "Add a printer"
  4190. msgstr "Adicionar uma impressora"
  4191. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4192. msgctxt "@label"
  4193. msgid "Add a networked printer"
  4194. msgstr "Adicionar uma impressora de rede"
  4195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:88
  4196. msgctxt "@label"
  4197. msgid "Add a non-networked printer"
  4198. msgstr "Adicionar uma impressora local"
  4199. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4200. msgctxt "@label"
  4201. msgid "There is no printer found over your network."
  4202. msgstr "Não foi encontrada nenhuma impressora em sua rede."
  4203. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  4204. msgctxt "@label"
  4205. msgid "Refresh"
  4206. msgstr "Atualizar"
  4207. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  4208. msgctxt "@label"
  4209. msgid "Add printer by IP"
  4210. msgstr "Adicionar impressora por IP"
  4211. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  4212. msgctxt "@label"
  4213. msgid "Add cloud printer"
  4214. msgstr "Adicionar impressora de nuvem"
  4215. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:221
  4216. msgctxt "@label"
  4217. msgid "Troubleshooting"
  4218. msgstr "Resolução de problemas"
  4219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4220. msgctxt "@label"
  4221. msgid "Help us to improve Ultimaker Cura"
  4222. msgstr "Nos ajude a melhor o Ultimaker Cura"
  4223. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4224. msgctxt "@text"
  4225. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4226. msgstr "O Ultimaker Cura coleta dados anônimos para melhor a qualidade de impressão e experiência do usuário, incluindo:"
  4227. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4228. msgctxt "@text"
  4229. msgid "Machine types"
  4230. msgstr "Tipos de máquina"
  4231. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4232. msgctxt "@text"
  4233. msgid "Material usage"
  4234. msgstr "Uso do material"
  4235. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4236. msgctxt "@text"
  4237. msgid "Number of slices"
  4238. msgstr "Número de fatias"
  4239. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4240. msgctxt "@text"
  4241. msgid "Print settings"
  4242. msgstr "Ajustes de impressão"
  4243. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4244. msgctxt "@text"
  4245. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4246. msgstr "Dados coletados pelo Ultimaker Cura não conterão nenhuma informação pessoal."
  4247. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4248. msgctxt "@text"
  4249. msgid "More information"
  4250. msgstr "Mais informações"
  4251. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectSelector.qml:59
  4252. msgctxt "@label"
  4253. msgid "Object list"
  4254. msgstr "Lista de objetos"
  4255. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:109
  4256. msgctxt "@label"
  4257. msgid "Is printed as support."
  4258. msgstr "Está impresso como suporte."
  4259. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:112
  4260. msgctxt "@label"
  4261. msgid "Other models overlapping with this model are modified."
  4262. msgstr "Outros modelos se sobrepondo a esse modelo foram modificados."
  4263. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:115
  4264. msgctxt "@label"
  4265. msgid "Infill overlapping with this model is modified."
  4266. msgstr "Preenchimento se sobrepondo a este modelo foi modificado."
  4267. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:118
  4268. msgctxt "@label"
  4269. msgid "Overlaps with this model are not supported."
  4270. msgstr "Sobreposições neste modelo não são suportadas."
  4271. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:125
  4272. msgctxt "@label %1 is the number of settings it overrides."
  4273. msgid "Overrides %1 setting."
  4274. msgid_plural "Overrides %1 settings."
  4275. msgstr[0] "Sobrepõe %1 ajuste."
  4276. msgstr[1] "Sobrepõe %1 ajustes."
  4277. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4278. msgctxt "@label"
  4279. msgid "Connected printers"
  4280. msgstr "Impressoras conectadas"
  4281. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4282. msgctxt "@label"
  4283. msgid "Preset printers"
  4284. msgstr "Impressoras pré-ajustadas"
  4285. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4286. msgctxt "@status"
  4287. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4288. msgstr "A impressora de nuvem está offline. Por favor verifique se a impressora está ligada e conectada à internet."
  4289. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4290. msgctxt "@status"
  4291. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4292. msgstr "Esta impressora não está vinculada à sua conta. Por favor visite a Ultimaker Digital Factory para estabelecer uma conexão."
  4293. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4294. msgctxt "@status"
  4295. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4296. msgstr "A conexão de nuvem está indisponível. Por favor se logue para se conectar à impressora de nuvem."
  4297. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4298. msgctxt "@status"
  4299. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4300. msgstr "A conexão de nuvem está indisponível. Por favor verifique sua conexão de internet."
  4301. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:236
  4302. msgctxt "@button"
  4303. msgid "Add printer"
  4304. msgstr "Adicionar impressora"
  4305. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:253
  4306. msgctxt "@button"
  4307. msgid "Manage printers"
  4308. msgstr "Gerenciar impressoras"
  4309. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/SearchBar.qml:17
  4310. msgctxt "@placeholder"
  4311. msgid "Search"
  4312. msgstr "Buscar"
  4313. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/JobSpecs.qml:93
  4314. msgctxt "@text Print job name"
  4315. msgid "Untitled"
  4316. msgstr "Sem Título"
  4317. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:115
  4318. msgctxt "@label:MonitorStatus"
  4319. msgid "Not connected to a printer"
  4320. msgstr "Não conectado a nenhuma impressora"
  4321. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:119
  4322. msgctxt "@label:MonitorStatus"
  4323. msgid "Printer does not accept commands"
  4324. msgstr "A impressora não aceita comandos"
  4325. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:129
  4326. msgctxt "@label:MonitorStatus"
  4327. msgid "In maintenance. Please check the printer"
  4328. msgstr "Em manutenção. Por favor verifique a impressora"
  4329. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:140
  4330. msgctxt "@label:MonitorStatus"
  4331. msgid "Lost connection with the printer"
  4332. msgstr "A conexão à impressora foi perdida"
  4333. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:142
  4334. msgctxt "@label:MonitorStatus"
  4335. msgid "Printing..."
  4336. msgstr "Imprimindo..."
  4337. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:145
  4338. msgctxt "@label:MonitorStatus"
  4339. msgid "Paused"
  4340. msgstr "Pausado"
  4341. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:148
  4342. msgctxt "@label:MonitorStatus"
  4343. msgid "Preparing..."
  4344. msgstr "Preparando..."
  4345. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:150
  4346. msgctxt "@label:MonitorStatus"
  4347. msgid "Please remove the print"
  4348. msgstr "Por favor remova a impressão"
  4349. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:318
  4350. msgctxt "@label"
  4351. msgid "Abort Print"
  4352. msgstr "Abortar Impressão"
  4353. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:327
  4354. msgctxt "@label"
  4355. msgid "Are you sure you want to abort the print?"
  4356. msgstr "Tem certeza que deseja abortar a impressão?"
  4357. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingCategory.qml:115
  4358. msgctxt "@label"
  4359. msgid ""
  4360. "Some hidden settings use values different from their normal calculated value.\n"
  4361. "\n"
  4362. "Click to make these settings visible."
  4363. msgstr ""
  4364. "Alguns ajustes ocultos usam valores diferentes de seu valor calculado normal.\n"
  4365. "\n"
  4366. "Clique para tornar estes ajustes visíveis."
  4367. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:47
  4368. msgctxt "@label:textbox"
  4369. msgid "Search settings"
  4370. msgstr "Ajustes de busca"
  4371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:428
  4372. msgctxt "@action:menu"
  4373. msgid "Copy value to all extruders"
  4374. msgstr "Copiar valor para todos os extrusores"
  4375. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:437
  4376. msgctxt "@action:menu"
  4377. msgid "Copy all changed values to all extruders"
  4378. msgstr "Copiar todos os valores alterados para todos os extrusores"
  4379. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:473
  4380. msgctxt "@action:menu"
  4381. msgid "Hide this setting"
  4382. msgstr "Ocultar este ajuste"
  4383. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:486
  4384. msgctxt "@action:menu"
  4385. msgid "Don't show this setting"
  4386. msgstr "Não exibir este ajuste"
  4387. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:490
  4388. msgctxt "@action:menu"
  4389. msgid "Keep this setting visible"
  4390. msgstr "Manter este ajuste visível"
  4391. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:509 /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:467
  4392. msgctxt "@action:menu"
  4393. msgid "Configure setting visibility..."
  4394. msgstr "Configurar a visibilidade dos ajustes..."
  4395. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:78
  4396. msgctxt "@label"
  4397. msgid "This setting is not used because all the settings that it influences are overridden."
  4398. msgstr "Este ajuste não é usado porque todos os ajustes que ele influencia estão sobrepostos."
  4399. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:83
  4400. msgctxt "@label Header for list of settings."
  4401. msgid "Affects"
  4402. msgstr "Afeta"
  4403. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:88
  4404. msgctxt "@label Header for list of settings."
  4405. msgid "Affected By"
  4406. msgstr "Afetado Por"
  4407. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:185
  4408. msgctxt "@label"
  4409. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4410. msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
  4411. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:189
  4412. msgctxt "@label"
  4413. msgid "This setting is resolved from conflicting extruder-specific values:"
  4414. msgstr "Este ajuste é resolvido dos valores conflitante específicos de extrusor:"
  4415. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:229
  4416. msgctxt "@label"
  4417. msgid ""
  4418. "This setting has a value that is different from the profile.\n"
  4419. "\n"
  4420. "Click to restore the value of the profile."
  4421. msgstr ""
  4422. "Este ajuste tem um valor que é diferente do perfil.\n"
  4423. "\n"
  4424. "Clique para restaurar o valor do perfil."
  4425. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:329
  4426. msgctxt "@label"
  4427. msgid ""
  4428. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4429. "\n"
  4430. "Click to restore the calculated value."
  4431. msgstr ""
  4432. "Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n"
  4433. "\n"
  4434. "Clique para restaurar o valor calculado."
  4435. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:104
  4436. msgctxt "@label"
  4437. msgid "Hex"
  4438. msgstr "Hexa"
  4439. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:156
  4440. msgctxt "@label"
  4441. msgid "Active print"
  4442. msgstr "Impressão ativa"
  4443. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:164
  4444. msgctxt "@label"
  4445. msgid "Job Name"
  4446. msgstr "Nome do Trabalho"
  4447. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:172
  4448. msgctxt "@label"
  4449. msgid "Printing Time"
  4450. msgstr "Tempo de Impressão"
  4451. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:180
  4452. msgctxt "@label"
  4453. msgid "Estimated time left"
  4454. msgstr "Tempo restante estimado"
  4455. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:81
  4456. msgctxt "@action:inmenu"
  4457. msgid "Show Online Troubleshooting"
  4458. msgstr "Mostrar Resolução de Problemas Online"
  4459. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:88
  4460. msgctxt "@action:inmenu"
  4461. msgid "Toggle Full Screen"
  4462. msgstr "Alternar Tela Cheia"
  4463. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:96
  4464. msgctxt "@action:inmenu"
  4465. msgid "Exit Full Screen"
  4466. msgstr "Sair da Tela Cheia"
  4467. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:103
  4468. msgctxt "@action:inmenu menubar:edit"
  4469. msgid "&Undo"
  4470. msgstr "Desfazer (&U)"
  4471. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:113
  4472. msgctxt "@action:inmenu menubar:edit"
  4473. msgid "&Redo"
  4474. msgstr "&Refazer"
  4475. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:131
  4476. msgctxt "@action:inmenu menubar:file"
  4477. msgid "&Quit"
  4478. msgstr "Sair (&Q)"
  4479. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:139
  4480. msgctxt "@action:inmenu menubar:view"
  4481. msgid "3D View"
  4482. msgstr "Visão &3D"
  4483. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:146
  4484. msgctxt "@action:inmenu menubar:view"
  4485. msgid "Front View"
  4486. msgstr "Visão Frontal"
  4487. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:153
  4488. msgctxt "@action:inmenu menubar:view"
  4489. msgid "Top View"
  4490. msgstr "Visão Superior"
  4491. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:160
  4492. msgctxt "@action:inmenu menubar:view"
  4493. msgid "Bottom View"
  4494. msgstr "Visão de Baixo"
  4495. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:167
  4496. msgctxt "@action:inmenu menubar:view"
  4497. msgid "Left Side View"
  4498. msgstr "Visão do Lado Esquerdo"
  4499. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:174
  4500. msgctxt "@action:inmenu menubar:view"
  4501. msgid "Right Side View"
  4502. msgstr "Visão do Lado Direito"
  4503. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:188
  4504. msgctxt "@action:inmenu"
  4505. msgid "Configure Cura..."
  4506. msgstr "Configurar Cura..."
  4507. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:195
  4508. msgctxt "@action:inmenu menubar:printer"
  4509. msgid "&Add Printer..."
  4510. msgstr "&Adicionar Impressora..."
  4511. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:201
  4512. msgctxt "@action:inmenu menubar:printer"
  4513. msgid "Manage Pr&inters..."
  4514. msgstr "Adm&inistrar Impressoras..."
  4515. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:208
  4516. msgctxt "@action:inmenu"
  4517. msgid "Manage Materials..."
  4518. msgstr "Administrar Materiais..."
  4519. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:216
  4520. msgctxt "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't translate."
  4521. msgid "Add more materials from Marketplace"
  4522. msgstr "Adicionar mais materiais ao Marketplace"
  4523. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:223
  4524. msgctxt "@action:inmenu menubar:profile"
  4525. msgid "&Update profile with current settings/overrides"
  4526. msgstr "At&ualizar perfil com valores e sobreposições atuais"
  4527. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:231
  4528. msgctxt "@action:inmenu menubar:profile"
  4529. msgid "&Discard current changes"
  4530. msgstr "&Descartar ajustes atuais"
  4531. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:243
  4532. msgctxt "@action:inmenu menubar:profile"
  4533. msgid "&Create profile from current settings/overrides..."
  4534. msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..."
  4535. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:249
  4536. msgctxt "@action:inmenu menubar:profile"
  4537. msgid "Manage Profiles..."
  4538. msgstr "Administrar perfis..."
  4539. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:257
  4540. msgctxt "@action:inmenu menubar:help"
  4541. msgid "Show Online &Documentation"
  4542. msgstr "Exibir &Documentação Online"
  4543. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:265
  4544. msgctxt "@action:inmenu menubar:help"
  4545. msgid "Report a &Bug"
  4546. msgstr "Relatar um &Bug"
  4547. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:273
  4548. msgctxt "@action:inmenu menubar:help"
  4549. msgid "What's New"
  4550. msgstr "Novidades"
  4551. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:287
  4552. msgctxt "@action:inmenu menubar:help"
  4553. msgid "About..."
  4554. msgstr "Sobre..."
  4555. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:294
  4556. msgctxt "@action:inmenu menubar:edit"
  4557. msgid "Delete Selected"
  4558. msgstr "Remover Selecionados"
  4559. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:304
  4560. msgctxt "@action:inmenu menubar:edit"
  4561. msgid "Center Selected"
  4562. msgstr "Centralizar Selecionados"
  4563. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:313
  4564. msgctxt "@action:inmenu menubar:edit"
  4565. msgid "Multiply Selected"
  4566. msgstr "Multiplicar Selecionados"
  4567. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:322
  4568. msgctxt "@action:inmenu"
  4569. msgid "Delete Model"
  4570. msgstr "Remover Modelo"
  4571. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:330
  4572. msgctxt "@action:inmenu"
  4573. msgid "Ce&nter Model on Platform"
  4574. msgstr "Ce&ntralizar Modelo na Mesa"
  4575. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:336
  4576. msgctxt "@action:inmenu menubar:edit"
  4577. msgid "&Group Models"
  4578. msgstr "A&grupar Modelos"
  4579. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:356
  4580. msgctxt "@action:inmenu menubar:edit"
  4581. msgid "Ungroup Models"
  4582. msgstr "Desagrupar Modelos"
  4583. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:366
  4584. msgctxt "@action:inmenu menubar:edit"
  4585. msgid "&Merge Models"
  4586. msgstr "Co&mbinar Modelos"
  4587. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:376
  4588. msgctxt "@action:inmenu"
  4589. msgid "&Multiply Model..."
  4590. msgstr "&Multiplicar Modelo..."
  4591. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:383
  4592. msgctxt "@action:inmenu menubar:edit"
  4593. msgid "Select All Models"
  4594. msgstr "Selecionar Todos Os Modelos"
  4595. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:393
  4596. msgctxt "@action:inmenu menubar:edit"
  4597. msgid "Clear Build Plate"
  4598. msgstr "Esvaziar a Mesa de Impressão"
  4599. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:403
  4600. msgctxt "@action:inmenu menubar:file"
  4601. msgid "Reload All Models"
  4602. msgstr "Recarregar Todos Os Modelos"
  4603. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:412
  4604. msgctxt "@action:inmenu menubar:edit"
  4605. msgid "Arrange All Models"
  4606. msgstr "Posicionar Todos os Modelos"
  4607. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:420
  4608. msgctxt "@action:inmenu menubar:edit"
  4609. msgid "Arrange Selection"
  4610. msgstr "Posicionar Seleção"
  4611. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:427
  4612. msgctxt "@action:inmenu menubar:edit"
  4613. msgid "Reset All Model Positions"
  4614. msgstr "Reestabelecer as Posições de Todos Os Modelos"
  4615. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:434
  4616. msgctxt "@action:inmenu menubar:edit"
  4617. msgid "Reset All Model Transformations"
  4618. msgstr "Remover as Transformações de Todos Os Modelos"
  4619. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:443
  4620. msgctxt "@action:inmenu menubar:file"
  4621. msgid "&Open File(s)..."
  4622. msgstr "Abrir Arquiv&o(s)..."
  4623. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:453
  4624. msgctxt "@action:inmenu menubar:file"
  4625. msgid "&New Project..."
  4626. msgstr "&Novo Projeto..."
  4627. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:460
  4628. msgctxt "@action:inmenu menubar:help"
  4629. msgid "Show Configuration Folder"
  4630. msgstr "Exibir Pasta de Configuração"
  4631. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:25
  4632. msgctxt "@info:tooltip"
  4633. msgid "3D View"
  4634. msgstr "Visão 3D"
  4635. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:38
  4636. msgctxt "@info:tooltip"
  4637. msgid "Front View"
  4638. msgstr "Viso de Frente"
  4639. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:51
  4640. msgctxt "@info:tooltip"
  4641. msgid "Top View"
  4642. msgstr "Visão de Cima"
  4643. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:64
  4644. msgctxt "@info:tooltip"
  4645. msgid "Left View"
  4646. msgstr "Visão à Esquerda"
  4647. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:77
  4648. msgctxt "@info:tooltip"
  4649. msgid "Right View"
  4650. msgstr "Visão à Direita"
  4651. #: PrepareStage/plugin.json
  4652. msgctxt "description"
  4653. msgid "Provides a prepare stage in Cura."
  4654. msgstr "Provê um estágio de preparação no Cura."
  4655. #: PrepareStage/plugin.json
  4656. msgctxt "name"
  4657. msgid "Prepare Stage"
  4658. msgstr "Estágio de Preparação"
  4659. #: CuraProfileWriter/plugin.json
  4660. msgctxt "description"
  4661. msgid "Provides support for exporting Cura profiles."
  4662. msgstr "Provê suporte à exportação de perfis do Cura."
  4663. #: CuraProfileWriter/plugin.json
  4664. msgctxt "name"
  4665. msgid "Cura Profile Writer"
  4666. msgstr "Gravador de Perfis do Cura"
  4667. #: TrimeshReader/plugin.json
  4668. msgctxt "description"
  4669. msgid "Provides support for reading model files."
  4670. msgstr "Provê suporta a ler arquivos de modelo."
  4671. #: TrimeshReader/plugin.json
  4672. msgctxt "name"
  4673. msgid "Trimesh Reader"
  4674. msgstr "Leitor Trimesh"
  4675. #: FirmwareUpdateChecker/plugin.json
  4676. msgctxt "description"
  4677. msgid "Checks for firmware updates."
  4678. msgstr "Verifica por atualizações de firmware."
  4679. #: FirmwareUpdateChecker/plugin.json
  4680. msgctxt "name"
  4681. msgid "Firmware Update Checker"
  4682. msgstr "Verificador de Atualizações de Firmware"
  4683. #: SentryLogger/plugin.json
  4684. msgctxt "description"
  4685. msgid "Logs certain events so that they can be used by the crash reporter"
  4686. msgstr "Registra certos eventos de forma que possam ser usados pelo relator de acidentes"
  4687. #: SentryLogger/plugin.json
  4688. msgctxt "name"
  4689. msgid "Sentry Logger"
  4690. msgstr "Sentinela para Registro"
  4691. #: MonitorStage/plugin.json
  4692. msgctxt "description"
  4693. msgid "Provides a monitor stage in Cura."
  4694. msgstr "Provê um estágio de monitor no Cura."
  4695. #: MonitorStage/plugin.json
  4696. msgctxt "name"
  4697. msgid "Monitor Stage"
  4698. msgstr "Estágio de Monitor"
  4699. #: RemovableDriveOutputDevice/plugin.json
  4700. msgctxt "description"
  4701. msgid "Provides removable drive hotplugging and writing support."
  4702. msgstr "Provê suporte a escrita e reconhecimento de drives a quente."
  4703. #: RemovableDriveOutputDevice/plugin.json
  4704. msgctxt "name"
  4705. msgid "Removable Drive Output Device Plugin"
  4706. msgstr "Complemento de Dispositivo de Escrita Removível"
  4707. #: AMFReader/plugin.json
  4708. msgctxt "description"
  4709. msgid "Provides support for reading AMF files."
  4710. msgstr "Provê suporta à leitura de arquivos AMF."
  4711. #: AMFReader/plugin.json
  4712. msgctxt "name"
  4713. msgid "AMF Reader"
  4714. msgstr "Leitor AMF"
  4715. #: UFPReader/plugin.json
  4716. msgctxt "description"
  4717. msgid "Provides support for reading Ultimaker Format Packages."
  4718. msgstr "Provê suporte a leitura de Pacotes de Formato Ultimaker (UFP)."
  4719. #: UFPReader/plugin.json
  4720. msgctxt "name"
  4721. msgid "UFP Reader"
  4722. msgstr "Leitor UFP"
  4723. #: DigitalLibrary/plugin.json
  4724. msgctxt "description"
  4725. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4726. msgstr "Conecta-se à Digital Library, permitindo ao Cura abrir arquivos dela e gravar arquivos nela."
  4727. #: DigitalLibrary/plugin.json
  4728. msgctxt "name"
  4729. msgid "Ultimaker Digital Library"
  4730. msgstr "Digital Library da Ultimaker"
  4731. #: PerObjectSettingsTool/plugin.json
  4732. msgctxt "description"
  4733. msgid "Provides the Per Model Settings."
  4734. msgstr "Provê Ajustes Por Modelo."
  4735. #: PerObjectSettingsTool/plugin.json
  4736. msgctxt "name"
  4737. msgid "Per Model Settings Tool"
  4738. msgstr "Ferramenta de Ajustes Por Modelo"
  4739. #: FirmwareUpdater/plugin.json
  4740. msgctxt "description"
  4741. msgid "Provides a machine actions for updating firmware."
  4742. msgstr "Provê ações de máquina para atualização do firmware."
  4743. #: FirmwareUpdater/plugin.json
  4744. msgctxt "name"
  4745. msgid "Firmware Updater"
  4746. msgstr "Atualizador de Firmware"
  4747. #: UM3NetworkPrinting/plugin.json
  4748. msgctxt "description"
  4749. msgid "Manages network connections to Ultimaker networked printers."
  4750. msgstr "Administra conexões de rede a impressora Ultimaker conectadas."
  4751. #: UM3NetworkPrinting/plugin.json
  4752. msgctxt "name"
  4753. msgid "Ultimaker Network Connection"
  4754. msgstr "Conexão de Rede Ultimaker"
  4755. #: ModelChecker/plugin.json
  4756. msgctxt "description"
  4757. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4758. msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões."
  4759. #: ModelChecker/plugin.json
  4760. msgctxt "name"
  4761. msgid "Model Checker"
  4762. msgstr "Verificador de Modelo"
  4763. #: SimulationView/plugin.json
  4764. msgctxt "description"
  4765. msgid "Provides the preview of sliced layerdata."
  4766. msgstr "Provê a pré-visualização de dados de camada fatiados."
  4767. #: SimulationView/plugin.json
  4768. msgctxt "name"
  4769. msgid "Simulation View"
  4770. msgstr "Visão Simulada"
  4771. #: GCodeWriter/plugin.json
  4772. msgctxt "description"
  4773. msgid "Writes g-code to a file."
  4774. msgstr "Escreve em formato G-Code."
  4775. #: GCodeWriter/plugin.json
  4776. msgctxt "name"
  4777. msgid "G-code Writer"
  4778. msgstr "Gerador de G-Code"
  4779. #: 3MFWriter/plugin.json
  4780. msgctxt "description"
  4781. msgid "Provides support for writing 3MF files."
  4782. msgstr "Provê suporte à escrita de arquivos 3MF."
  4783. #: 3MFWriter/plugin.json
  4784. msgctxt "name"
  4785. msgid "3MF Writer"
  4786. msgstr "Gerador de 3MF"
  4787. #: GCodeGzReader/plugin.json
  4788. msgctxt "description"
  4789. msgid "Reads g-code from a compressed archive."
  4790. msgstr "Lê G-Code de um arquivo comprimido."
  4791. #: GCodeGzReader/plugin.json
  4792. msgctxt "name"
  4793. msgid "Compressed G-code Reader"
  4794. msgstr "Leitor de G-Code Comprimido"
  4795. #: XmlMaterialProfile/plugin.json
  4796. msgctxt "description"
  4797. msgid "Provides capabilities to read and write XML-based material profiles."
  4798. msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML."
  4799. #: XmlMaterialProfile/plugin.json
  4800. msgctxt "name"
  4801. msgid "Material Profiles"
  4802. msgstr "Perfis de Material"
  4803. #: CuraEngineBackend/plugin.json
  4804. msgctxt "description"
  4805. msgid "Provides the link to the CuraEngine slicing backend."
  4806. msgstr "Provê a ligação ao backend de fatiamento CuraEngine."
  4807. #: CuraEngineBackend/plugin.json
  4808. msgctxt "name"
  4809. msgid "CuraEngine Backend"
  4810. msgstr "CuraEngine Backend"
  4811. #: X3DReader/plugin.json
  4812. msgctxt "description"
  4813. msgid "Provides support for reading X3D files."
  4814. msgstr "Provê suporte à leitura de arquivos X3D."
  4815. #: X3DReader/plugin.json
  4816. msgctxt "name"
  4817. msgid "X3D Reader"
  4818. msgstr "Leitor de X3D"
  4819. #: ImageReader/plugin.json
  4820. msgctxt "description"
  4821. msgid "Enables ability to generate printable geometry from 2D image files."
  4822. msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D."
  4823. #: ImageReader/plugin.json
  4824. msgctxt "name"
  4825. msgid "Image Reader"
  4826. msgstr "Leitor de Imagens"
  4827. #: 3MFReader/plugin.json
  4828. msgctxt "description"
  4829. msgid "Provides support for reading 3MF files."
  4830. msgstr "Provê suporte à leitura de arquivos 3MF."
  4831. #: 3MFReader/plugin.json
  4832. msgctxt "name"
  4833. msgid "3MF Reader"
  4834. msgstr "Leitor de 3MF"
  4835. #: UFPWriter/plugin.json
  4836. msgctxt "description"
  4837. msgid "Provides support for writing Ultimaker Format Packages."
  4838. msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)."
  4839. #: UFPWriter/plugin.json
  4840. msgctxt "name"
  4841. msgid "UFP Writer"
  4842. msgstr "Gerador de UFP"
  4843. #: LegacyProfileReader/plugin.json
  4844. msgctxt "description"
  4845. msgid "Provides support for importing profiles from legacy Cura versions."
  4846. msgstr "Provê suporte a importação de perfis de versões legadas do Cura."
  4847. #: LegacyProfileReader/plugin.json
  4848. msgctxt "name"
  4849. msgid "Legacy Cura Profile Reader"
  4850. msgstr "Leitor de Perfis de Cura Legado"
  4851. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4852. msgctxt "description"
  4853. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4854. msgstr "Atualiza configurações do Cura 4.3 para o Cura 4.4."
  4855. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4856. msgctxt "name"
  4857. msgid "Version Upgrade 4.3 to 4.4"
  4858. msgstr "Atualização de Versão de 4.3 para 4.4"
  4859. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4860. msgctxt "description"
  4861. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4862. msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  4863. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4864. msgctxt "name"
  4865. msgid "Version Upgrade 2.1 to 2.2"
  4866. msgstr "Atualização de Versão de 2.1 para 2.2"
  4867. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4868. msgctxt "description"
  4869. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4870. msgstr "Atualiza configurações do Cura 4.1 para o Cura 4.2."
  4871. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4872. msgctxt "name"
  4873. msgid "Version Upgrade 4.1 to 4.2"
  4874. msgstr "Atualização de Versão de 4.1 para 4.2"
  4875. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  4876. msgctxt "description"
  4877. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  4878. msgstr "Atualiza configurações do Cura 4.13 para o Cura 5.0."
  4879. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  4880. msgctxt "name"
  4881. msgid "Version Upgrade 4.13 to 5.0"
  4882. msgstr "Atualização de Versão de 4.13 para 5.0"
  4883. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4884. msgctxt "description"
  4885. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4886. msgstr "Atualiza configurações do Cura 4.5 para o Cura 4.6."
  4887. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4888. msgctxt "name"
  4889. msgid "Version Upgrade 4.5 to 4.6"
  4890. msgstr "Atualização de Versão de 4.5 para 4.6"
  4891. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4892. msgctxt "description"
  4893. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4894. msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4."
  4895. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4896. msgctxt "name"
  4897. msgid "Version Upgrade 3.3 to 3.4"
  4898. msgstr "Atualização de Versão de 3.3 para 3.4"
  4899. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4900. msgctxt "description"
  4901. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  4902. msgstr "Atualiza configurações do Cura 4.8 para o Cura 4.9."
  4903. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  4904. msgctxt "name"
  4905. msgid "Version Upgrade 4.8 to 4.9"
  4906. msgstr "Atualização de Versão de 4.8 para 4.9"
  4907. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4908. msgctxt "description"
  4909. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4910. msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0."
  4911. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4912. msgctxt "name"
  4913. msgid "Version Upgrade 2.7 to 3.0"
  4914. msgstr "Atualização de Versão de 2.7 para 3.0"
  4915. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4916. msgctxt "description"
  4917. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4918. msgstr "Atualiza configurações do Cura 4.4 para o Cura 4.5."
  4919. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4920. msgctxt "name"
  4921. msgid "Version Upgrade 4.4 to 4.5"
  4922. msgstr "Atualização de Versão de 4.4 para 4.5"
  4923. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4924. msgctxt "description"
  4925. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4926. msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1."
  4927. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4928. msgctxt "name"
  4929. msgid "Version Upgrade 3.0 to 3.1"
  4930. msgstr "Atualização de Versão 3.0 para 3.1"
  4931. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4932. msgctxt "description"
  4933. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4934. msgstr "Atualiza configurações do Cura 4.6.0 para o Cura 4.6.2."
  4935. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4936. msgctxt "name"
  4937. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4938. msgstr "Atualização de Versão de 4.6.0 para 4.6.2"
  4939. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4940. msgctxt "description"
  4941. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4942. msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7."
  4943. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4944. msgctxt "name"
  4945. msgid "Version Upgrade 2.6 to 2.7"
  4946. msgstr "Atualização de Versão de 2.6 para 2.7"
  4947. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4948. msgctxt "description"
  4949. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4950. msgstr "Atualiza configurações do Cura 4.2 para o Cura 4.3."
  4951. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4952. msgctxt "name"
  4953. msgid "Version Upgrade 4.2 to 4.3"
  4954. msgstr "Atualização de Versão de 4.2 para 4.3"
  4955. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4956. msgctxt "description"
  4957. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4958. msgstr "Atualiza configurações do Cura 4.0 para o Cura 4.1."
  4959. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4960. msgctxt "name"
  4961. msgid "Version Upgrade 4.0 to 4.1"
  4962. msgstr "Atualização de Versão de 4.0 para 4.1"
  4963. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4964. msgctxt "description"
  4965. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4966. msgstr "Atualiza configurações do Cura 4.6.2 para o Cura 4.7."
  4967. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4968. msgctxt "name"
  4969. msgid "Version Upgrade 4.6.2 to 4.7"
  4970. msgstr "Atualização de Versão de 4.6.2 para 4.7"
  4971. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4972. msgctxt "description"
  4973. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  4974. msgstr "Atualiza configurações do Cura 4.9 para o Cura 4.10."
  4975. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  4976. msgctxt "name"
  4977. msgid "Version Upgrade 4.9 to 4.10"
  4978. msgstr "Atualização de Versão de 4.9 para 4.10"
  4979. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4980. msgctxt "description"
  4981. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4982. msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  4983. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4984. msgctxt "name"
  4985. msgid "Version Upgrade 2.2 to 2.4"
  4986. msgstr "Atualização de Versão de 2.2 para 2.4"
  4987. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4988. msgctxt "description"
  4989. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4990. msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3."
  4991. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4992. msgctxt "name"
  4993. msgid "Version Upgrade 3.2 to 3.3"
  4994. msgstr "Atualização de Versão de 3.2 para 3.3"
  4995. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4996. msgctxt "description"
  4997. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4998. msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6."
  4999. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5000. msgctxt "name"
  5001. msgid "Version Upgrade 2.5 to 2.6"
  5002. msgstr "Atualização de Versão de 2.5 para 2.6"
  5003. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5004. msgctxt "description"
  5005. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5006. msgstr "Atualiza configuração do Cura 3.5 para o Cura 4.0."
  5007. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5008. msgctxt "name"
  5009. msgid "Version Upgrade 3.5 to 4.0"
  5010. msgstr "Atualização de Versão de 3.5 para 4.0"
  5011. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5012. msgctxt "description"
  5013. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5014. msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5."
  5015. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5016. msgctxt "name"
  5017. msgid "Version Upgrade 3.4 to 3.5"
  5018. msgstr "Atualização de Versão de 3.4 para 3.5"
  5019. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5020. msgctxt "description"
  5021. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5022. msgstr "Atualiza configurações do Cura 4.7 para o Cura 4.8."
  5023. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5024. msgctxt "name"
  5025. msgid "Version Upgrade 4.7 to 4.8"
  5026. msgstr "Atualização de Versão de 4.7 para 4.8"
  5027. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5028. msgctxt "description"
  5029. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5030. msgstr "Atualiza configurações do Cura 4.11 para o Cura 4.12."
  5031. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5032. msgctxt "name"
  5033. msgid "Version Upgrade 4.11 to 4.12"
  5034. msgstr "Atualização de Versão de 4.11 para 4.12"
  5035. #: CuraDrive/plugin.json
  5036. msgctxt "description"
  5037. msgid "Backup and restore your configuration."
  5038. msgstr "Permite backup e restauração da configuração."
  5039. #: CuraDrive/plugin.json
  5040. msgctxt "name"
  5041. msgid "Cura Backups"
  5042. msgstr "Backups Cura"
  5043. #: CuraProfileReader/plugin.json
  5044. msgctxt "description"
  5045. msgid "Provides support for importing Cura profiles."
  5046. msgstr "Provê suporte à importação de perfis do Cura."
  5047. #: CuraProfileReader/plugin.json
  5048. msgctxt "name"
  5049. msgid "Cura Profile Reader"
  5050. msgstr "Leitor de Perfis do Cura"
  5051. #: SliceInfoPlugin/plugin.json
  5052. msgctxt "description"
  5053. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5054. msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  5055. #: SliceInfoPlugin/plugin.json
  5056. msgctxt "name"
  5057. msgid "Slice info"
  5058. msgstr "Informação de fatiamento"
  5059. #: GCodeProfileReader/plugin.json
  5060. msgctxt "description"
  5061. msgid "Provides support for importing profiles from g-code files."
  5062. msgstr "Provê suporte a importar perfis de arquivos G-Code."
  5063. #: GCodeProfileReader/plugin.json
  5064. msgctxt "name"
  5065. msgid "G-code Profile Reader"
  5066. msgstr "Leitor de Perfil de G-Code"
  5067. #: GCodeGzWriter/plugin.json
  5068. msgctxt "description"
  5069. msgid "Writes g-code to a compressed archive."
  5070. msgstr "Escreve em formato G-Code comprimido."
  5071. #: GCodeGzWriter/plugin.json
  5072. msgctxt "name"
  5073. msgid "Compressed G-code Writer"
  5074. msgstr "Gerador de G-Code Comprimido"
  5075. #: PostProcessingPlugin/plugin.json
  5076. msgctxt "description"
  5077. msgid "Extension that allows for user created scripts for post processing"
  5078. msgstr "Extensão que permite scripts criados por usuários para pós-processamento"
  5079. #: PostProcessingPlugin/plugin.json
  5080. msgctxt "name"
  5081. msgid "Post Processing"
  5082. msgstr "Pós-processamento"
  5083. #: SupportEraser/plugin.json
  5084. msgctxt "description"
  5085. msgid "Creates an eraser mesh to block the printing of support in certain places"
  5086. msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares"
  5087. #: SupportEraser/plugin.json
  5088. msgctxt "name"
  5089. msgid "Support Eraser"
  5090. msgstr "Apagador de Suporte"
  5091. #: PreviewStage/plugin.json
  5092. msgctxt "description"
  5093. msgid "Provides a preview stage in Cura."
  5094. msgstr "Provê uma etapa de pré-visualização ao Cura."
  5095. #: PreviewStage/plugin.json
  5096. msgctxt "name"
  5097. msgid "Preview Stage"
  5098. msgstr "Estágio de Pré-visualização"
  5099. #: XRayView/plugin.json
  5100. msgctxt "description"
  5101. msgid "Provides the X-Ray view."
  5102. msgstr "Provê a visão de Raios-X."
  5103. #: XRayView/plugin.json
  5104. msgctxt "name"
  5105. msgid "X-Ray View"
  5106. msgstr "Visão de Raios-X"
  5107. #: UltimakerMachineActions/plugin.json
  5108. msgctxt "description"
  5109. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  5110. msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)."
  5111. #: UltimakerMachineActions/plugin.json
  5112. msgctxt "name"
  5113. msgid "Ultimaker machine actions"
  5114. msgstr "Ações de máquina Ultimaker"
  5115. #: Marketplace/plugin.json
  5116. msgctxt "description"
  5117. msgid "Manages extensions to the application and allows browsing extensions from the Ultimaker website."
  5118. msgstr "Gerencia extensões à aplicação e permite navegar extensões do sítio web da Ultimaker."
  5119. #: Marketplace/plugin.json
  5120. msgctxt "name"
  5121. msgid "Marketplace"
  5122. msgstr "Marketplace"
  5123. #: SolidView/plugin.json
  5124. msgctxt "description"
  5125. msgid "Provides a normal solid mesh view."
  5126. msgstr "Provê uma visualização de malha sólida normal."
  5127. #: SolidView/plugin.json
  5128. msgctxt "name"
  5129. msgid "Solid View"
  5130. msgstr "Visão Sólida"
  5131. #: GCodeReader/plugin.json
  5132. msgctxt "description"
  5133. msgid "Allows loading and displaying G-code files."
  5134. msgstr "Permite carregar e exibir arquivos G-Code."
  5135. #: GCodeReader/plugin.json
  5136. msgctxt "name"
  5137. msgid "G-code Reader"
  5138. msgstr "Leitor de G-Code"
  5139. #: MachineSettingsAction/plugin.json
  5140. msgctxt "description"
  5141. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  5142. msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)."
  5143. #: MachineSettingsAction/plugin.json
  5144. msgctxt "name"
  5145. msgid "Machine Settings Action"
  5146. msgstr "Ação de Ajustes de Máquina"
  5147. #: USBPrinting/plugin.json
  5148. msgctxt "description"
  5149. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5150. msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  5151. #: USBPrinting/plugin.json
  5152. msgctxt "name"
  5153. msgid "USB printing"
  5154. msgstr "Impressão USB"
  5155. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/OnboardBanner.qml:35
  5156. msgctxt "@button:label"
  5157. msgid "Learn More"
  5158. msgstr "Saiba mais"
  5159. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  5160. msgctxt "@label"
  5161. msgid "You need to accept the license to install the package"
  5162. msgstr "Você precisa aceitar a licença para que o pacote possa ser instalado"
  5163. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  5164. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  5165. msgctxt "@info:title"
  5166. msgid "Changes detected from your Ultimaker account"
  5167. msgstr "Alterações detectadas de sua conta Ultimaker"
  5168. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  5169. msgctxt "@title"
  5170. msgid "Changes from your account"
  5171. msgstr "Alterações da sua conta"
  5172. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  5173. msgctxt "@button"
  5174. msgid "Dismiss"
  5175. msgstr "Dispensar"
  5176. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicensePresenter.py:42
  5177. msgctxt "@button"
  5178. msgid "Decline and remove from account"
  5179. msgstr "Recusar e remover da conta"
  5180. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  5181. msgctxt "@info:generic"
  5182. msgid "Do you want to sync material and software packages with your account?"
  5183. msgstr "Você quer sincronizar os pacotes de material e software com sua conta?"
  5184. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  5185. msgctxt "@info:generic"
  5186. msgid "Syncing..."
  5187. msgstr "Sincronizando..."
  5188. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  5189. msgctxt "@label"
  5190. msgid "The following packages will be added:"
  5191. msgstr "Os seguintes pacotes serão adicionados:"
  5192. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  5193. msgctxt "@info:generic"
  5194. msgid "You need to quit and restart {} before changes have effect."
  5195. msgstr "Você precisa sair e reiniciar {} para que as alterações tenham efeito."
  5196. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  5197. msgctxt "@info:generic"
  5198. msgid "{} plugins failed to download"
  5199. msgstr "{} complementos falharam em baixar"
  5200. #: /Users/j.delarago/development/cura_installation/Cura/plugins/Marketplace/CloudSync/LicenseModel.py:77
  5201. msgctxt "@title:window"
  5202. msgid "Plugin License Agreement"
  5203. msgstr "Acordo de Licença do Complemento"
  5204. #~ msgctxt "@action:button"
  5205. #~ msgid "Sync materials with printers"
  5206. #~ msgstr "Sincronizar materiais"
  5207. #~ msgctxt "@action:button"
  5208. #~ msgid "Sync"
  5209. #~ msgstr "Sincronizar"
  5210. #~ msgctxt "@title:window"
  5211. #~ msgid "Convert Image..."
  5212. #~ msgstr "Converter imagem..."
  5213. #~ msgctxt "@info:tooltip"
  5214. #~ msgid "The width in millimeters on the build plate."
  5215. #~ msgstr "A largura da mesa de impressão em milímetros."
  5216. #~ msgctxt "@title"
  5217. #~ msgid "Marketplace"
  5218. #~ msgstr "Mercado"
  5219. #~ msgctxt "@info"
  5220. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5221. #~ msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito."
  5222. #~ msgctxt "@action:button"
  5223. #~ msgid "Install"
  5224. #~ msgstr "Instalar"
  5225. #~ msgctxt "@action:button"
  5226. #~ msgid "Installed"
  5227. #~ msgstr "Instalado"
  5228. #~ msgctxt "@label"
  5229. #~ msgid "Premium"
  5230. #~ msgstr "Premium"
  5231. #~ msgctxt "@info:tooltip"
  5232. #~ msgid "Go to Web Marketplace"
  5233. #~ msgstr "Ir ao Mercado Web"
  5234. #~ msgctxt "@label"
  5235. #~ msgid "Search materials"
  5236. #~ msgstr "Buscar materiais"
  5237. #~ msgctxt "@label"
  5238. #~ msgid "Compatibility"
  5239. #~ msgstr "Compatibilidade"
  5240. #~ msgctxt "@label:table_header"
  5241. #~ msgid "Machine"
  5242. #~ msgstr "Máquina"
  5243. #~ msgctxt "@label:table_header"
  5244. #~ msgid "Build Plate"
  5245. #~ msgstr "Plataforma de Impressão"
  5246. #~ msgctxt "@label:table_header"
  5247. #~ msgid "Support"
  5248. #~ msgstr "Suporte"
  5249. #~ msgctxt "@label:table_header"
  5250. #~ msgid "Quality"
  5251. #~ msgstr "Qualidade"
  5252. #~ msgctxt "@action:label"
  5253. #~ msgid "Technical Data Sheet"
  5254. #~ msgstr "Documento de Dados Técnicos"
  5255. #~ msgctxt "@action:label"
  5256. #~ msgid "Safety Data Sheet"
  5257. #~ msgstr "Documento de Dados de Segurança"
  5258. #~ msgctxt "@action:label"
  5259. #~ msgid "Printing Guidelines"
  5260. #~ msgstr "Diretrizes de Impressão"
  5261. #~ msgctxt "@action:label"
  5262. #~ msgid "Website"
  5263. #~ msgstr "Sítio Web"
  5264. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5265. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5266. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para instalar ou atualizar"
  5267. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5268. #~ msgid "<a href='%1'>Buy material spools</a>"
  5269. #~ msgstr "<a href='%1'>Comprar rolos de material</a>"
  5270. #~ msgctxt "@action:button"
  5271. #~ msgid "Update"
  5272. #~ msgstr "Atualizar"
  5273. #~ msgctxt "@action:button"
  5274. #~ msgid "Updating"
  5275. #~ msgstr "Atualizando"
  5276. #~ msgctxt "@action:button"
  5277. #~ msgid "Updated"
  5278. #~ msgstr "Atualizado"
  5279. #~ msgctxt "@action:button"
  5280. #~ msgid "Back"
  5281. #~ msgstr "Voltar"
  5282. #~ msgctxt "@title:tab"
  5283. #~ msgid "Plugins"
  5284. #~ msgstr "Complementos"
  5285. #~ msgctxt "@title:tab"
  5286. #~ msgid "Installed"
  5287. #~ msgstr "Instalado"
  5288. #~ msgctxt "@label"
  5289. #~ msgid "Will install upon restarting"
  5290. #~ msgstr "Será instalado ao reiniciar"
  5291. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5292. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5293. #~ msgstr "<a href='%1'>Entrar</a> na conta é necessário para atualizar"
  5294. #~ msgctxt "@action:button"
  5295. #~ msgid "Downgrade"
  5296. #~ msgstr "Downgrade"
  5297. #~ msgctxt "@action:button"
  5298. #~ msgid "Uninstall"
  5299. #~ msgstr "Desinstalar"
  5300. #~ msgctxt "@label"
  5301. #~ msgid "Community Contributions"
  5302. #~ msgstr "Contribuições da Comunidade"
  5303. #~ msgctxt "@label"
  5304. #~ msgid "Community Plugins"
  5305. #~ msgstr "Complementos da Comunidade"
  5306. #~ msgctxt "@label"
  5307. #~ msgid "Generic Materials"
  5308. #~ msgstr "Materiais Genéricos"
  5309. #~ msgctxt "@info"
  5310. #~ msgid "Fetching packages..."
  5311. #~ msgstr "Obtendo pacotes..."
  5312. #~ msgctxt "@label"
  5313. #~ msgid "Website"
  5314. #~ msgstr "Sítio Web"
  5315. #~ msgctxt "@label"
  5316. #~ msgid "Email"
  5317. #~ msgstr "Email"
  5318. #~ msgctxt "@description"
  5319. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5320. #~ msgstr "Por favor se logue para adquirir complementos e materiais verificados para o Ultimaker Cura Enterprise"
  5321. #~ msgctxt "@label"
  5322. #~ msgid "Version"
  5323. #~ msgstr "Versão"
  5324. #~ msgctxt "@label"
  5325. #~ msgid "Last updated"
  5326. #~ msgstr "Última atualização"
  5327. #~ msgctxt "@label"
  5328. #~ msgid "Downloads"
  5329. #~ msgstr "Downloads"
  5330. #~ msgctxt "@title:tab"
  5331. #~ msgid "Installed plugins"
  5332. #~ msgstr "Complementos instalados"
  5333. #~ msgctxt "@info"
  5334. #~ msgid "No plugin has been installed."
  5335. #~ msgstr "Nenhum complemento foi instalado."
  5336. #~ msgctxt "@title:tab"
  5337. #~ msgid "Installed materials"
  5338. #~ msgstr "Materiais instalados"
  5339. #~ msgctxt "@info"
  5340. #~ msgid "No material has been installed."
  5341. #~ msgstr "Nenhum material foi instalado."
  5342. #~ msgctxt "@title:tab"
  5343. #~ msgid "Bundled plugins"
  5344. #~ msgstr "Complementos empacotados"
  5345. #~ msgctxt "@title:tab"
  5346. #~ msgid "Bundled materials"
  5347. #~ msgstr "Materiais empacotados"
  5348. #~ msgctxt "@info"
  5349. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5350. #~ msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão."
  5351. #~ msgctxt "@label"
  5352. #~ msgid "The following packages can not be installed because of an incompatible Cura version:"
  5353. #~ msgstr "Os seguintes pacotes não podem ser instalados por incompatibilidade de versão do Cura:"
  5354. #~ msgctxt "@title:window"
  5355. #~ msgid "Confirm uninstall"
  5356. #~ msgstr "Confirme a desinstalação"
  5357. #~ msgctxt "@text:window"
  5358. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5359. #~ 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."
  5360. #~ msgctxt "@text:window"
  5361. #~ msgid "Materials"
  5362. #~ msgstr "Materiais"
  5363. #~ msgctxt "@text:window"
  5364. #~ msgid "Profiles"
  5365. #~ msgstr "Perfis"
  5366. #~ msgctxt "@action:button"
  5367. #~ msgid "Confirm"
  5368. #~ msgstr "Confirmar"
  5369. #~ msgctxt "@info:tooltip"
  5370. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5371. #~ msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção."
  5372. #~ msgctxt "@label"
  5373. #~ msgid "Support library for handling planar objects"
  5374. #~ msgstr "Biblioteca de suporte para manuseamento de objetos planares"
  5375. #~ msgctxt "@text:window, %1 is a profile name"
  5376. #~ msgid ""
  5377. #~ "You have customized some profile settings.\n"
  5378. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5379. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5380. #~ msgstr ""
  5381. #~ "Você personalizou alguns ajustes de perfil.\n"
  5382. #~ "Gostaria de manter estes ajustes alterados após mudar de perfis?\n"
  5383. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5384. #~ msgctxt "@action:inmenu menubar:view"
  5385. #~ msgid "&Build plate"
  5386. #~ msgstr "Plataforma de Impressão (&B)"
  5387. #~ msgctxt "@label"
  5388. #~ msgid "Create"
  5389. #~ msgstr "Criar"
  5390. #~ msgctxt "@label"
  5391. #~ msgid "Duplicate"
  5392. #~ msgstr "Duplicar"
  5393. #~ msgctxt "@label %1 is printer name"
  5394. #~ msgid "Printer: %1"
  5395. #~ msgstr "Impressora: %1"
  5396. #~ msgctxt "@action:button"
  5397. #~ msgid "Update profile with current settings/overrides"
  5398. #~ msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  5399. #~ msgctxt "@label"
  5400. #~ msgid "Theme:"
  5401. #~ msgstr "Tema:"
  5402. #~ msgctxt "@label"
  5403. #~ msgid "You will need to restart the application for these changes to have effect."
  5404. #~ msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito."
  5405. #~ msgctxt "@action:button"
  5406. #~ msgid "More information"
  5407. #~ msgstr "Mais informações"
  5408. #~ msgctxt "@action:button"
  5409. #~ msgid "Create"
  5410. #~ msgstr "Criar"
  5411. #~ msgctxt "@action:button Sending materials to printers"
  5412. #~ msgid "Sync with Printers"
  5413. #~ msgstr "Sincronizar com Impressoras"
  5414. #~ msgctxt "@action:label"
  5415. #~ msgid "Printer"
  5416. #~ msgstr "Impressora"
  5417. #~ msgctxt "@title:column"
  5418. #~ msgid "Unit"
  5419. #~ msgstr "Unidade"
  5420. #~ msgctxt "@action:inmenu"
  5421. #~ msgid "Show Online Troubleshooting Guide"
  5422. #~ msgstr "Mostra Guia de Resolução de Problemas Online"
  5423. #~ msgctxt "@action:inmenu"
  5424. #~ msgid "Add more materials from Marketplace"
  5425. #~ msgstr "Adicionar mais materiais do Mercado"
  5426. #~ msgctxt "@action:inmenu menubar:edit"
  5427. #~ msgid "Arrange All Models To All Build Plates"
  5428. #~ msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão"
  5429. #~ msgctxt "@action:menu"
  5430. #~ msgid "&Marketplace"
  5431. #~ msgstr "&Mercado"
  5432. #~ msgctxt "description"
  5433. #~ msgid "Find, manage and install new Cura packages."
  5434. #~ msgstr "Buscar, gerenciar e instalar novos pacotes do Cura."
  5435. #~ msgctxt "name"
  5436. #~ msgid "Toolbox"
  5437. #~ msgstr "Ferramentas"
  5438. #~ msgctxt "description"
  5439. #~ msgid "Provides the Simulation view."
  5440. #~ msgstr "Provê a Visão Simulada."
  5441. #~ msgctxt "@info:status"
  5442. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5443. #~ msgstr "Envia e monitora trabalhos de impressão de qualquer lugar usando sua conta Ultimaker."
  5444. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5445. #~ msgid "Connect to Ultimaker Digital Factory"
  5446. #~ msgstr "Conectar à Ultimaker Digital Factory"
  5447. #~ msgctxt "@info"
  5448. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5449. #~ msgstr "Feeds de webcam para impressoras de nuvem não podem ser vistos pelo Ultimaker Cura."
  5450. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5451. #~ 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}."
  5452. #~ 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}."
  5453. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5454. #~ msgid "New %s firmware available"
  5455. #~ msgstr "Novo firmware de %s disponível"
  5456. #~ msgctxt "@info:status"
  5457. #~ msgid "Global stack is missing."
  5458. #~ msgstr "A pilha global não foi encontrada."
  5459. #~ msgctxt "@info:status"
  5460. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5461. #~ msgstr "Seu modelo não é manifold. As áreas ressaltadas indicam superfícies faltantes ou incorretas."
  5462. #~ msgctxt "@info:title"
  5463. #~ msgid "Model errors"
  5464. #~ msgstr "Erros de modelo"
  5465. #~ msgctxt "@label:listbox"
  5466. #~ msgid "Layer thickness"
  5467. #~ msgstr "Largura de camada"
  5468. #~ msgctxt "@label"
  5469. #~ msgid "Your key to connected 3D printing"
  5470. #~ msgstr "Sua chave para impressão 3D conectada"
  5471. #~ msgctxt "@text"
  5472. #~ msgid ""
  5473. #~ "- Customize your experience with more print profiles and plugins\n"
  5474. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5475. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5476. #~ msgstr ""
  5477. #~ "- Personalize sua experiência com mais perfis de impressão e complementos\n"
  5478. #~ "- Mantenha-se flexível ao sincronizar sua configuração e a acessar em qualquer lugar\n"
  5479. #~ "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  5480. #~ msgctxt "@button"
  5481. #~ msgid "Create account"
  5482. #~ msgstr "Criar conta"
  5483. #~ msgctxt "@action:inmenu menubar:edit"
  5484. #~ msgid "Delete Selected Model"
  5485. #~ msgid_plural "Delete Selected Models"
  5486. #~ msgstr[0] "Remover Modelo Selecionado"
  5487. #~ msgstr[1] "Remover Modelos Selecionados"
  5488. #~ msgctxt "@action:inmenu menubar:edit"
  5489. #~ msgid "Center Selected Model"
  5490. #~ msgid_plural "Center Selected Models"
  5491. #~ msgstr[0] "Centralizar Modelo Selecionado"
  5492. #~ msgstr[1] "Centralizar Modelos Selecionados"
  5493. #~ msgctxt "@action:inmenu menubar:edit"
  5494. #~ msgid "Multiply Selected Model"
  5495. #~ msgid_plural "Multiply Selected Models"
  5496. #~ msgstr[0] "Multiplicar Modelo Selecionado"
  5497. #~ msgstr[1] "Multiplicar Modelos Selecionados"
  5498. #~ msgctxt "@button"
  5499. #~ msgid "Finish"
  5500. #~ msgstr "Finalizar"
  5501. #~ msgctxt "@label"
  5502. #~ msgid "Ultimaker Account"
  5503. #~ msgstr "Conta da Ultimaker"
  5504. #~ msgctxt "@text"
  5505. #~ msgid "Your key to connected 3D printing"
  5506. #~ msgstr "Sua chave para a impressão 3D conectada"
  5507. #~ msgctxt "@text"
  5508. #~ msgid "- Customize your experience with more print profiles and plugins"
  5509. #~ msgstr "- Personalize sua experiência com mais perfis de impressão e complementos"
  5510. #~ msgctxt "@text"
  5511. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5512. #~ msgstr "- Flexibilize-se ao sincronizar sua configuração e a acessar de qualquer lugar"
  5513. #~ msgctxt "@text"
  5514. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5515. #~ msgstr "- Melhore a eficiência com um fluxo de trabalho remoto com as impressoras Ultimaker"
  5516. #~ msgctxt "@text"
  5517. #~ msgid ""
  5518. #~ "Please follow these steps to set up\n"
  5519. #~ "Ultimaker Cura. This will only take a few moments."
  5520. #~ msgstr ""
  5521. #~ "Por favor siga estes passos para configurar\n"
  5522. #~ "o Ultimaker Cura. Isto tomará apenas alguns momentos."
  5523. #~ msgctxt "@label"
  5524. #~ msgid "What's new in Ultimaker Cura"
  5525. #~ msgstr "O que há de novo no Ultimaker Cura"
  5526. #~ msgctxt "@label ({} is object name)"
  5527. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5528. #~ msgstr "Tem certeza que deseja remover {}? Isto não pode ser desfeito!"
  5529. #~ msgctxt "@info:status"
  5530. #~ msgid "The selected model was too small to load."
  5531. #~ msgstr "O modelo selecionado é pequenos demais para carregar."
  5532. #~ msgctxt "@info:status"
  5533. #~ msgid "Successfully imported profile {0}"
  5534. #~ msgstr "Perfil {0} importado com sucesso"
  5535. #~ msgctxt "@info:status"
  5536. #~ msgid "Could not find a quality type {0} for the current configuration."
  5537. #~ msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual."
  5538. #~ msgctxt "info:status"
  5539. #~ msgid "Adding printer {} ({}) from your account"
  5540. #~ msgstr "Adicionando impressora {} ({}) da sua conta"
  5541. #~ msgctxt "info:hidden list items"
  5542. #~ msgid "<li>... and {} others</li>"
  5543. #~ msgstr "<li>... e {} outras</li>"
  5544. #~ msgctxt "info:status"
  5545. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5546. #~ msgstr "Impressoras adicionadas da Digital Factory:<ul>{}</ul>"
  5547. #~ msgctxt "info:status"
  5548. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5549. #~ msgstr "<ul>{}</ul>Para estabelecer uma conexão, por favor visite a <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5550. #~ msgctxt "@label ({} is printer name)"
  5551. #~ 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?"
  5552. #~ 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?"
  5553. #~ msgctxt "@label"
  5554. #~ msgid ""
  5555. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5556. #~ "Are you sure you want to continue?"
  5557. #~ msgstr ""
  5558. #~ "Você está para remover {} impressora(s) do Cura. Esta ação não pode ser desfeita. \n"
  5559. #~ "Tem certeza que quer continuar?"
  5560. #~ msgctxt "@label"
  5561. #~ msgid ""
  5562. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5563. #~ "Are you sure you want to continue?"
  5564. #~ msgstr ""
  5565. #~ "Você está para remover todas as impressoras do Cura. Esta ação não pode ser defeita. \n"
  5566. #~ "Tem certeza que quer continuar?"
  5567. #~ msgctxt "@action:ComboBox option"
  5568. #~ msgid "Update"
  5569. #~ msgstr "Atualizar"
  5570. #~ msgctxt "@action:ComboBox option"
  5571. #~ msgid "Create new"
  5572. #~ msgstr "Criar novo"
  5573. #~ msgctxt "@label"
  5574. #~ msgid "Shared Heater"
  5575. #~ msgstr "Aquecedor Compartilhado"
  5576. #~ msgctxt "@info"
  5577. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5578. #~ msgstr "A webcam não está disponível porque você está monitorando uma impressora de nuvem."
  5579. #~ msgctxt "@button"
  5580. #~ msgid "Ultimaker Digital Factory"
  5581. #~ msgstr "Ultimaker Digital Factory"
  5582. #~ msgctxt "@text:window, %1 is a profile name"
  5583. #~ msgid ""
  5584. #~ "You have customized some profile settings.\n"
  5585. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5586. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5587. #~ msgstr ""
  5588. #~ "Você personalizou alguns ajustes de perfil.\n"
  5589. #~ "Você gostaria de manter esses ajustes alterados depois de trocar os perfis?\n"
  5590. #~ "Alternativamente, você pode descartar as alterações para carregar os defaults de '%1'."
  5591. #~ msgctxt "@label"
  5592. #~ msgid "Overrides %1 setting."
  5593. #~ msgid_plural "Overrides %1 settings."
  5594. #~ msgstr[0] "Substitui %1 ajuste."
  5595. #~ msgstr[1] "Substitui %1 ajustes."
  5596. #~ msgctxt "@text"
  5597. #~ msgid "Please give your printer a name"
  5598. #~ msgstr "Por favor dê um nome à sua impressora"
  5599. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5600. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5601. #~ msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora."
  5602. #~ msgctxt "@action:button"
  5603. #~ msgid "Print via Cloud"
  5604. #~ msgstr "Imprimir por Nuvem"
  5605. #~ msgctxt "@properties:tooltip"
  5606. #~ msgid "Print via Cloud"
  5607. #~ msgstr "Imprimir por Nuvem"
  5608. #~ msgctxt "@info:status"
  5609. #~ msgid "Connected via Cloud"
  5610. #~ msgstr "Conectado por Nuvem"
  5611. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5612. #~ msgid "Connect to Ultimaker Cloud"
  5613. #~ msgstr "Conectar à Nuvem Ultimaker"
  5614. #~ msgctxt "@label"
  5615. #~ msgid "You need to login first before you can rate"
  5616. #~ msgstr "Você precisa entrar em sua conta para dar notas"
  5617. #~ msgctxt "@label"
  5618. #~ msgid "You need to install the package before you can rate"
  5619. #~ msgstr "Você precisa instalar o pacote para dar notas"
  5620. #~ msgctxt "@label"
  5621. #~ msgid "ratings"
  5622. #~ msgstr "notas"
  5623. #~ msgctxt "@label"
  5624. #~ msgid "Featured"
  5625. #~ msgstr "Em destaque"
  5626. #~ msgctxt "@label"
  5627. #~ msgid "Your rating"
  5628. #~ msgstr "Sua nota"
  5629. #~ msgctxt "@label"
  5630. #~ msgid "Author"
  5631. #~ msgstr "Autor"
  5632. #~ msgctxt "@description"
  5633. #~ msgid "Get plugins and materials verified by Ultimaker"
  5634. #~ msgstr "Obter complementos e materiais verificados pela Ultimaker"
  5635. #~ msgctxt "@label The argument is a username."
  5636. #~ msgid "Hi %1"
  5637. #~ msgstr "Oi, %1"
  5638. #~ msgctxt "@button"
  5639. #~ msgid "Ultimaker account"
  5640. #~ msgstr "Conta da Ultimaker"
  5641. #~ msgctxt "@button"
  5642. #~ msgid "Sign out"
  5643. #~ msgstr "Sair da conta"
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Support library for analysis of complex networks"
  5646. #~ msgstr "Biblioteca de suporte para análises de redes complexas"
  5647. #~ msgctxt "@Label"
  5648. #~ msgid "Python HTTP library"
  5649. #~ msgstr "Biblioteca de HTTP Python"
  5650. #~ msgctxt "@text:window"
  5651. #~ msgid ""
  5652. #~ "You have customized some profile settings.\n"
  5653. #~ "Would you like to keep or discard those settings?"
  5654. #~ msgstr ""
  5655. #~ "Você personalizou alguns ajustes de perfil.\n"
  5656. #~ "Gostaria de manter ou descartar estes ajustes?"
  5657. #~ msgctxt "@title:column"
  5658. #~ msgid "Default"
  5659. #~ msgstr "Default"
  5660. #~ msgctxt "@title:column"
  5661. #~ msgid "Customized"
  5662. #~ msgstr "Personalizado"
  5663. #~ msgctxt "@action:button"
  5664. #~ msgid "Discard"
  5665. #~ msgstr "Descartar"
  5666. #~ msgctxt "@action:button"
  5667. #~ msgid "Keep"
  5668. #~ msgstr "Manter"
  5669. #~ msgctxt "@action:button"
  5670. #~ msgid "Create New Profile"
  5671. #~ msgstr "Criar Novo Perfil"
  5672. #~ msgctxt "@title:menu menubar:file"
  5673. #~ msgid "&Save..."
  5674. #~ msgstr "&Salvar..."
  5675. #~ msgctxt "@text"
  5676. #~ msgid "Place enter your printer's IP address."
  5677. #~ msgstr "Por favor entre o endereço IP da sua impressora."
  5678. #~ msgctxt "@button"
  5679. #~ msgid "Create an account"
  5680. #~ msgstr "Criar uma conta"
  5681. #~ msgctxt "@info:generic"
  5682. #~ msgid ""
  5683. #~ "\n"
  5684. #~ "Do you want to sync material and software packages with your account?"
  5685. #~ msgstr ""
  5686. #~ "\n"
  5687. #~ "Você quer sincronizar os pacotes de material e software com sua conta?"
  5688. #~ msgctxt "@info:generic"
  5689. #~ msgid ""
  5690. #~ "\n"
  5691. #~ "Syncing..."
  5692. #~ msgstr ""
  5693. #~ "\n"
  5694. #~ "Sincronizando..."
  5695. #~ msgctxt "@info:status"
  5696. #~ 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."
  5697. #~ 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."
  5698. #~ msgctxt "@info:backup_status"
  5699. #~ msgid "There was an error listing your backups."
  5700. #~ msgstr "Houve um erro ao listar seus backups."
  5701. #~ msgctxt "@title:groupbox"
  5702. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5703. #~ msgstr "Descrição do usuário (Nota: Os desenvolvedores podem não falar sua língua, por favor use inglês se possível)"
  5704. #~ msgctxt "@title:window"
  5705. #~ msgid "Closing Cura"
  5706. #~ msgstr "Fechando o Cura"
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Are you sure you want to exit Cura?"
  5709. #~ msgstr "Você tem certeza que deseja sair do Cura?"
  5710. #~ msgctxt "@label"
  5711. #~ msgid "Language:"
  5712. #~ msgstr "Idioma:"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Ultimaker Cloud"
  5715. #~ msgstr "Ultimaker Cloud"
  5716. #~ msgctxt "@text"
  5717. #~ msgid "The next generation 3D printing workflow"
  5718. #~ msgstr "O fluxo de trabalho da nova geração de impressão 3D"
  5719. #~ msgctxt "@text"
  5720. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5721. #~ msgstr "- Enviar trabalhos de impressão a impressoras Ultimaker fora da sua rede local"
  5722. #~ msgctxt "@text"
  5723. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5724. #~ msgstr "- Armazenar seus ajustes do Ultimaker Cura na nuvem para uso em qualquer local"
  5725. #~ msgctxt "@text"
  5726. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5727. #~ msgstr "- Conseguir acesso exclusivo a perfis de impressão das melhores marcas"
  5728. #~ msgctxt "@label"
  5729. #~ msgid "The value is resolved from per-extruder values "
  5730. #~ msgstr "O valor é resolvido de valores específicos de cada extrusor "
  5731. #~ msgctxt "@label"
  5732. #~ msgid "The next generation 3D printing workflow"
  5733. #~ msgstr "O fluxo de trabalho da próxima geração de impressão 3D"
  5734. #~ msgctxt "@text"
  5735. #~ msgid ""
  5736. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5737. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5738. #~ "- Get exclusive access to print profiles from leading brands"
  5739. #~ msgstr ""
  5740. #~ "- Envia trabalho de impressão às impressoras Ultimaker fora da sua rede local\n"
  5741. #~ "- Armazena seus ajustes do Ultimaker Cura na nuvem para uso de qualquer lugar\n"
  5742. #~ "- Consegue acesso exclusivo a perfis de impressão das melhores marcas"
  5743. #~ msgctxt "@title:window"
  5744. #~ msgid "About "
  5745. #~ msgstr "Sobre "
  5746. #~ msgctxt "@info:button"
  5747. #~ msgid "Quit Cura"
  5748. #~ msgstr "Sair do Cura"
  5749. #~ msgctxt "@action:checkbox"
  5750. #~ msgid "Infill only"
  5751. #~ msgstr "Preenchimento apenas"
  5752. #~ msgctxt "@info:tooltip"
  5753. #~ msgid "Change active post-processing scripts"
  5754. #~ msgstr "Troca os scripts de pós-processamento ativos"
  5755. #~ msgctxt "@label:listbox"
  5756. #~ msgid "Feedrate"
  5757. #~ msgstr "Taxa de alimentação"
  5758. #~ msgctxt "name"
  5759. #~ msgid "Machine Settings action"
  5760. #~ msgstr "Ação de Configurações de Máquina"
  5761. #~ msgctxt "@info:title"
  5762. #~ msgid "New cloud printers found"
  5763. #~ msgstr "Novas impressoras de nuvem encontradas"
  5764. #~ msgctxt "@info:message"
  5765. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5766. #~ msgstr "Novas impressoras foram encontradas conectadas à sua conta; você as pode ver na sua lista de impressoras descobertas."
  5767. #~ msgctxt "@info:status"
  5768. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5769. #~ msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada"
  5770. #~ msgctxt "@label"
  5771. #~ msgid "Pre-sliced file {0}"
  5772. #~ msgstr "Arquivo pré-fatiado {0}"
  5773. #~ msgctxt "@label"
  5774. #~ msgid ""
  5775. #~ "This plugin contains a license.\n"
  5776. #~ "You need to accept this license to install this plugin.\n"
  5777. #~ "Do you agree with the terms below?"
  5778. #~ msgstr ""
  5779. #~ "Este plugin contém uma licença.\n"
  5780. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  5781. #~ "Você concorda com os termos abaixo?"
  5782. #~ msgctxt "@action:button"
  5783. #~ msgid "Accept"
  5784. #~ msgstr "Aceitar"
  5785. #~ msgctxt "@action:button"
  5786. #~ msgid "Decline"
  5787. #~ msgstr "Recusar"
  5788. #~ msgctxt "@action:inmenu"
  5789. #~ msgid "Show All Settings"
  5790. #~ msgstr "Mostrar Todos Os Ajustes"
  5791. #~ msgctxt "@title:window"
  5792. #~ msgid "Ultimaker Cura"
  5793. #~ msgstr "Ultimaker Cura"
  5794. #~ msgctxt "@title:window"
  5795. #~ msgid "About Cura"
  5796. #~ msgstr "Sobre o Cura"
  5797. #~ msgctxt "@item:inmenu"
  5798. #~ msgid "Flatten active settings"
  5799. #~ msgstr "Achatar os ajustes ativos"
  5800. #~ msgctxt "@info:status"
  5801. #~ msgid "Profile has been flattened & activated."
  5802. #~ msgstr "O perfil foi achatado & ativado."
  5803. #~ msgctxt "X3g Writer Plugin Description"
  5804. #~ msgid "Writes X3g to files"
  5805. #~ msgstr "Grava em formato X3g"
  5806. #~ msgctxt "X3g Writer File Description"
  5807. #~ msgid "X3g File"
  5808. #~ msgstr "Arquivo X3g"
  5809. #~ msgctxt "X3G Writer File Description"
  5810. #~ msgid "X3G File"
  5811. #~ msgstr "Arquivo X3G"
  5812. #~ msgctxt "@item:inlistbox"
  5813. #~ msgid "Open Compressed Triangle Mesh"
  5814. #~ msgstr "Malha Comprimida de Triângulos Aberta"
  5815. #~ msgctxt "@item:inmenu"
  5816. #~ msgid "Profile Assistant"
  5817. #~ msgstr "Assistente de Perfil"
  5818. #~ msgctxt "@item:inlistbox"
  5819. #~ msgid "Profile Assistant"
  5820. #~ msgstr "Assistente de Perfil"
  5821. #~ msgctxt "@action:button"
  5822. #~ msgid "Retry"
  5823. #~ msgstr "Tentar novamente"
  5824. #~ msgctxt "@label:table_header"
  5825. #~ msgid "Print Core"
  5826. #~ msgstr "Núcleo de Impressão"
  5827. #~ msgctxt "@label"
  5828. #~ msgid "Don't support overlap with other models"
  5829. #~ msgstr "Não suportar sobreposição com outros modelos"
  5830. #~ msgctxt "@label"
  5831. #~ msgid "Modify settings for overlap with other models"
  5832. #~ msgstr "Modificar ajustes para sobrepor com outros modelos"
  5833. #~ msgctxt "@label"
  5834. #~ msgid "Modify settings for infill of other models"
  5835. #~ msgstr "Modificar ajustes para preenchimento de outros modelos"
  5836. #~ msgctxt "@action:ComboBox option"
  5837. #~ msgid "Update existing"
  5838. #~ msgstr "Atualizar existente"
  5839. #~ msgctxt "@label"
  5840. #~ msgid "Not supported"
  5841. #~ msgstr "Não suportado"
  5842. #~ msgctxt "@action:button"
  5843. #~ msgid "Previous"
  5844. #~ msgstr "Anterior"
  5845. #~ msgctxt "@label"
  5846. #~ msgid "Tip"
  5847. #~ msgstr "Dica"
  5848. #~ msgctxt "@label"
  5849. #~ msgid "Print experiment"
  5850. #~ msgstr "Imprimir experimento"
  5851. #~ msgctxt "@label"
  5852. #~ msgid "Checklist"
  5853. #~ msgstr "Lista de verificação"
  5854. #~ msgctxt "@label"
  5855. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5856. #~ msgstr "Por favor selecione quaisquer atualizações feitas nesta Ultimaker 2."
  5857. #~ msgctxt "@label"
  5858. #~ msgid "Olsson Block"
  5859. #~ msgstr "Bloco Olsson"
  5860. #~ msgctxt "@window:text"
  5861. #~ msgid "Camera rendering: "
  5862. #~ msgstr "Renderização de câmera:"
  5863. #~ msgctxt "@info:tooltip"
  5864. #~ msgid "Use multi build plate functionality"
  5865. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão"
  5866. #~ msgctxt "@option:check"
  5867. #~ msgid "Use multi build plate functionality (restart required)"
  5868. #~ msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)"
  5869. #~ msgctxt "@label"
  5870. #~ msgid "Default profiles"
  5871. #~ msgstr "Perfis default"
  5872. #~ msgctxt "@label:textbox"
  5873. #~ msgid "search settings"
  5874. #~ msgstr "procurar nos ajustes"
  5875. #~ msgctxt "@label"
  5876. #~ msgid "Layer Height"
  5877. #~ msgstr "Altura de Camada"
  5878. #~ msgctxt "@tooltip"
  5879. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5880. #~ 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."
  5881. #~ msgctxt "@tooltip"
  5882. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5883. #~ msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado"
  5884. #~ msgctxt "@title:menu"
  5885. #~ msgid "&Build plate"
  5886. #~ msgstr "Plataforma de Impressão (&B)"
  5887. #~ msgctxt "@title:settings"
  5888. #~ msgid "&Profile"
  5889. #~ msgstr "&Perfil"
  5890. #~ msgctxt "@action:label"
  5891. #~ msgid "Build plate"
  5892. #~ msgstr "Plataforma de Impressão"
  5893. #~ msgctxt "description"
  5894. #~ msgid "Dump the contents of all settings to a HTML file."
  5895. #~ msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML."
  5896. #~ msgctxt "name"
  5897. #~ msgid "God Mode"
  5898. #~ msgstr "Modo Deus"
  5899. #~ msgctxt "description"
  5900. #~ msgid "Create a flattened quality changes profile."
  5901. #~ msgstr "Cria um perfil de mudanças de qualidade achatado."
  5902. #~ msgctxt "name"
  5903. #~ msgid "Profile Flattener"
  5904. #~ msgstr "Achatador de Perfil"
  5905. #~ msgctxt "description"
  5906. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5907. #~ msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in."
  5908. #~ msgctxt "name"
  5909. #~ msgid "Print Profile Assistant"
  5910. #~ msgstr "Assistente de Perfil de Impressão"
  5911. #~ msgctxt "@info:status"
  5912. #~ msgid "Connected over the network."
  5913. #~ msgstr "Conectado pela rede."
  5914. #~ msgctxt "@info:status"
  5915. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5916. #~ msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora."
  5917. #~ msgctxt "@info:status"
  5918. #~ msgid "Connected over the network. No access to control the printer."
  5919. #~ msgstr "Conectado pela rede. Sem acesso para controlar a impressora."
  5920. #~ msgctxt "@info:status"
  5921. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5922. #~ msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora"
  5923. #~ msgctxt "@info:title"
  5924. #~ msgid "Authentication status"
  5925. #~ msgstr "Status da autenticação"
  5926. #~ msgctxt "@info:title"
  5927. #~ msgid "Authentication Status"
  5928. #~ msgstr "Status da Autenticação"
  5929. #~ msgctxt "@info:tooltip"
  5930. #~ msgid "Re-send the access request"
  5931. #~ msgstr "Reenvia o pedido de acesso"
  5932. #~ msgctxt "@info:status"
  5933. #~ msgid "Access to the printer accepted"
  5934. #~ msgstr "Acesso à impressora confirmado"
  5935. #~ msgctxt "@info:status"
  5936. #~ msgid "No access to print with this printer. Unable to send print job."
  5937. #~ msgstr "Sem acesso para imprimir por esta impressora. Não foi possível enviar o trabalho de impressão."
  5938. #~ msgctxt "@action:button"
  5939. #~ msgid "Request Access"
  5940. #~ msgstr "Solicitar acesso"
  5941. #~ msgctxt "@info:tooltip"
  5942. #~ msgid "Send access request to the printer"
  5943. #~ msgstr "Envia pedido de acesso à impressora"
  5944. #~ msgctxt "@label"
  5945. #~ msgid "Unable to start a new print job."
  5946. #~ msgstr "Não foi possível iniciar novo trabalho de impressão."
  5947. #~ msgctxt "@label"
  5948. #~ 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."
  5949. #~ 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."
  5950. #~ msgctxt "@window:title"
  5951. #~ msgid "Mismatched configuration"
  5952. #~ msgstr "Configuração conflitante"
  5953. #~ msgctxt "@label"
  5954. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5955. #~ msgstr "Tem certeza que quer imprimir com a configuração selecionada?"
  5956. #~ msgctxt "@label"
  5957. #~ 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."
  5958. #~ 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."
  5959. #~ msgctxt "@info:status"
  5960. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5961. #~ msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior."
  5962. #~ msgctxt "@info:status"
  5963. #~ msgid "Sending data to printer"
  5964. #~ msgstr "Enviando dados à impressora"
  5965. #~ msgctxt "@info:title"
  5966. #~ msgid "Sending Data"
  5967. #~ msgstr "Enviando Dados"
  5968. #~ msgctxt "@info:status"
  5969. #~ msgid "No Printcore loaded in slot {slot_number}"
  5970. #~ msgstr "Printcore não carregado no slot {slot_number}"
  5971. #~ msgctxt "@info:status"
  5972. #~ msgid "No material loaded in slot {slot_number}"
  5973. #~ msgstr "Nenhum material carregado no slot {slot_number}"
  5974. #~ msgctxt "@label"
  5975. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5976. #~ msgstr "PrintCore Diferente (Cura: {cura_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  5977. #~ msgctxt "@label"
  5978. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5979. #~ msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  5980. #~ msgctxt "@window:title"
  5981. #~ msgid "Sync with your printer"
  5982. #~ msgstr "Sincronizar com a impressora"
  5983. #~ msgctxt "@label"
  5984. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5985. #~ msgstr "Deseja usar a configuração atual de sua impressora no Cura?"
  5986. #~ msgctxt "@label"
  5987. #~ 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."
  5988. #~ 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."
  5989. #~ msgctxt "@action:button"
  5990. #~ msgid "View in Monitor"
  5991. #~ msgstr "Ver no Monitor"
  5992. #~ msgctxt "@info:status"
  5993. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5994. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'."
  5995. #~ msgctxt "@info:status"
  5996. #~ msgid "The print job '{job_name}' was finished."
  5997. #~ msgstr "O trabalho de impressão '{job_name}' terminou."
  5998. #~ msgctxt "@info:status"
  5999. #~ msgid "Print finished"
  6000. #~ msgstr "Impressão Concluída"
  6001. #~ msgctxt "@label:material"
  6002. #~ msgid "Empty"
  6003. #~ msgstr "Vazio"
  6004. #~ msgctxt "@label:material"
  6005. #~ msgid "Unknown"
  6006. #~ msgstr "Desconhecido"
  6007. #~ msgctxt "@info:title"
  6008. #~ msgid "Cloud error"
  6009. #~ msgstr "Erro de nuvem"
  6010. #~ msgctxt "@info:status"
  6011. #~ msgid "Could not export print job."
  6012. #~ msgstr "Não foi possível exportar o trabalho de impressão."
  6013. #~ msgctxt "@info:description"
  6014. #~ msgid "There was an error connecting to the cloud."
  6015. #~ msgstr "Houve um erro ao conectar à nuvem."
  6016. #~ msgctxt "@info:status"
  6017. #~ msgid "Uploading via Ultimaker Cloud"
  6018. #~ msgstr "Transferindo via Ultimaker Cloud"
  6019. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6020. #~ msgid "Connect to Ultimaker Cloud"
  6021. #~ msgstr "Conectar à Ultimaker Cloud"
  6022. #~ msgctxt "@action"
  6023. #~ msgid "Don't ask me again for this printer."
  6024. #~ msgstr "Não me pergunte novamente para esta impressora."
  6025. #~ msgctxt "@info:status"
  6026. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6027. #~ msgstr "Você agora pode enviar e monitorar trabalhoas de impressão de qualquer lugar usando sua conta Ultimaker."
  6028. #~ msgctxt "@info:status"
  6029. #~ msgid "Connected!"
  6030. #~ msgstr "Conectado!"
  6031. #~ msgctxt "@action"
  6032. #~ msgid "Review your connection"
  6033. #~ msgstr "Rever sua conexão"
  6034. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6035. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6036. #~ 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."
  6037. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6038. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6039. #~ msgstr "Erro ao importar perfil de <filename>{0}</filename>:"
  6040. #~ msgctxt "@window:title"
  6041. #~ msgid "Existing Connection"
  6042. #~ msgstr "Conexão Existente"
  6043. #~ msgctxt "@message:text"
  6044. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6045. #~ msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo."
  6046. #~ msgctxt "@label"
  6047. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6048. #~ msgstr "Entre o endereço IP ou nome de sua impressora na rede."
  6049. #~ msgctxt "@info:tooltip"
  6050. #~ msgid "Connect to a printer"
  6051. #~ msgstr "Conecta a uma impressora"
  6052. #~ msgctxt "@title"
  6053. #~ msgid "Cura Settings Guide"
  6054. #~ msgstr "Guia de Ajustes do Cura"
  6055. #~ msgctxt "@info:tooltip"
  6056. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6057. #~ msgstr "Ampliar na direção do mouse não é suportado na perspectiva ortogonal."
  6058. #~ msgid "Orthogonal"
  6059. #~ msgstr "Ortogonal"
  6060. #~ msgctxt "description"
  6061. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6062. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3."
  6063. #~ msgctxt "name"
  6064. #~ msgid "UM3 Network Connection"
  6065. #~ msgstr "Conexão de Rede UM3"
  6066. #~ msgctxt "description"
  6067. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6068. #~ msgstr "Provê informação extra e explicações sobre ajustes do Cura com imagens e animações."
  6069. #~ msgctxt "name"
  6070. #~ msgid "Settings Guide"
  6071. #~ msgstr "Guia de Ajustes"
  6072. #~ msgctxt "@item:inmenu"
  6073. #~ msgid "Cura Settings Guide"
  6074. #~ msgstr "Guia de Ajustes do Cura"
  6075. #~ msgctxt "@info:generic"
  6076. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6077. #~ msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]"
  6078. #~ msgctxt "@title:groupbox"
  6079. #~ msgid "User description"
  6080. #~ msgstr "Descrição do usuário"
  6081. #~ msgctxt "@info"
  6082. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6083. #~ msgstr "Estas opçÕes não estão disponíveis porque você está monitorando uma impressora de nuvem."
  6084. #~ msgctxt "@label link to connect manager"
  6085. #~ msgid "Go to Cura Connect"
  6086. #~ msgstr "Ir ao Cura Connect"
  6087. #~ msgctxt "@info"
  6088. #~ msgid "All jobs are printed."
  6089. #~ msgstr "Todos os trabalhos foram impressos."
  6090. #~ msgctxt "@label link to connect manager"
  6091. #~ msgid "View print history"
  6092. #~ msgstr "Ver histórico de impressão"
  6093. #~ msgctxt "@label"
  6094. #~ msgid ""
  6095. #~ "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"
  6096. #~ "\n"
  6097. #~ "Select your printer from the list below:"
  6098. #~ msgstr ""
  6099. #~ "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-Code para sua impressora.\n"
  6100. #~ "\n"
  6101. #~ "Selecione sua impressora da lista abaixo:"
  6102. #~ msgctxt "@info"
  6103. #~ msgid ""
  6104. #~ "Please make sure your printer has a connection:\n"
  6105. #~ "- Check if the printer is turned on.\n"
  6106. #~ "- Check if the printer is connected to the network."
  6107. #~ msgstr ""
  6108. #~ "Por favor certifique-se que sua impressora está conectada:\n"
  6109. #~ "- Verifique se a impressora está ligada.\n"
  6110. #~ "- Verifique se a impressora está conectada à rede."
  6111. #~ msgctxt "@option:check"
  6112. #~ msgid "See only current build plate"
  6113. #~ msgstr "Ver somente a plataforma de impressão atual"
  6114. #~ msgctxt "@action:button"
  6115. #~ msgid "Arrange to all build plates"
  6116. #~ msgstr "Posicionar em todas as plataformas de impressão"
  6117. #~ msgctxt "@action:button"
  6118. #~ msgid "Arrange current build plate"
  6119. #~ msgstr "Reposicionar a plataforma de impressão atual"
  6120. #~ msgctxt "description"
  6121. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6122. #~ 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)."
  6123. #~ msgctxt "name"
  6124. #~ msgid "X3GWriter"
  6125. #~ msgstr "Gerador de X3G"
  6126. #~ msgctxt "description"
  6127. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6128. #~ msgstr "Lê arquivos SVG como caminhos do extrusor, para depurar movimentos da impressora."
  6129. #~ msgctxt "name"
  6130. #~ msgid "SVG Toolpath Reader"
  6131. #~ msgstr "Leitor de Toolpath SVG"
  6132. #~ msgctxt "@item:inmenu"
  6133. #~ msgid "Changelog"
  6134. #~ msgstr "Registro de Alterações"
  6135. #~ msgctxt "@item:inmenu"
  6136. #~ msgid "Show Changelog"
  6137. #~ msgstr "Exibir registro de alterações"
  6138. #~ msgctxt "@info:status"
  6139. #~ msgid "Sending data to remote cluster"
  6140. #~ msgstr "Enviando dados ao cluster remoto"
  6141. #~ msgctxt "@info:status"
  6142. #~ msgid "Connect to Ultimaker Cloud"
  6143. #~ msgstr "Conectar à Ultimaker Cloud"
  6144. #~ msgctxt "@info"
  6145. #~ msgid "Cura collects anonymized usage statistics."
  6146. #~ msgstr "O Cura coleta estatísticas anônimas de uso."
  6147. #~ msgctxt "@info:title"
  6148. #~ msgid "Collecting Data"
  6149. #~ msgstr "Coletando Dados"
  6150. #~ msgctxt "@action:button"
  6151. #~ msgid "More info"
  6152. #~ msgstr "Mais informações"
  6153. #~ msgctxt "@action:tooltip"
  6154. #~ msgid "See more information on what data Cura sends."
  6155. #~ msgstr "Ver mais informações sobre os dados enviados pelo Cura."
  6156. #~ msgctxt "@action:button"
  6157. #~ msgid "Allow"
  6158. #~ msgstr "Permitir"
  6159. #~ msgctxt "@action:tooltip"
  6160. #~ 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."
  6161. #~ 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."
  6162. #~ msgctxt "@item:inmenu"
  6163. #~ msgid "Evaluation"
  6164. #~ msgstr "Avaliação"
  6165. #~ msgctxt "@info:title"
  6166. #~ msgid "Network enabled printers"
  6167. #~ msgstr "Impressoras habilitadas em rede"
  6168. #~ msgctxt "@info:title"
  6169. #~ msgid "Local printers"
  6170. #~ msgstr "Impressoras locais"
  6171. #~ msgctxt "@info:backup_failed"
  6172. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6173. #~ msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual."
  6174. #~ msgctxt "@title"
  6175. #~ msgid "Machine Settings"
  6176. #~ msgstr "Ajustes da Máquina"
  6177. #~ msgctxt "@label"
  6178. #~ msgid "Printer Settings"
  6179. #~ msgstr "Ajustes da Impressora"
  6180. #~ msgctxt "@option:check"
  6181. #~ msgid "Origin at center"
  6182. #~ msgstr "Origem no centro"
  6183. #~ msgctxt "@option:check"
  6184. #~ msgid "Heated bed"
  6185. #~ msgstr "Mesa aquecida"
  6186. #~ msgctxt "@label"
  6187. #~ msgid "Printhead Settings"
  6188. #~ msgstr "Ajustes da Cabeça de Impressão"
  6189. #~ msgctxt "@tooltip"
  6190. #~ 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\"."
  6191. #~ 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\"."
  6192. #~ msgctxt "@tooltip"
  6193. #~ 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\"."
  6194. #~ 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\"."
  6195. #~ msgctxt "@tooltip"
  6196. #~ 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\"."
  6197. #~ 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\"."
  6198. #~ msgctxt "@tooltip"
  6199. #~ 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\"."
  6200. #~ 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\"."
  6201. #~ msgctxt "@label"
  6202. #~ msgid "Gantry height"
  6203. #~ msgstr "Altura do eixo"
  6204. #~ msgctxt "@tooltip"
  6205. #~ 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\"."
  6206. #~ 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\"."
  6207. #~ msgctxt "@label"
  6208. #~ msgid "Start G-code"
  6209. #~ msgstr "G-Code Inicial"
  6210. #~ msgctxt "@tooltip"
  6211. #~ msgid "G-code commands to be executed at the very start."
  6212. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  6213. #~ msgctxt "@label"
  6214. #~ msgid "End G-code"
  6215. #~ msgstr "G-Code Final"
  6216. #~ msgctxt "@tooltip"
  6217. #~ msgid "G-code commands to be executed at the very end."
  6218. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  6219. #~ msgctxt "@label"
  6220. #~ msgid "Nozzle Settings"
  6221. #~ msgstr "Ajustes do Bico"
  6222. #~ msgctxt "@tooltip"
  6223. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6224. #~ msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil."
  6225. #~ msgctxt "@label"
  6226. #~ msgid "Extruder Start G-code"
  6227. #~ msgstr "G-Code Inicial do Extrusor"
  6228. #~ msgctxt "@label"
  6229. #~ msgid "Extruder End G-code"
  6230. #~ msgstr "G-Code Final do Extrusor"
  6231. #~ msgctxt "@label"
  6232. #~ msgid "Changelog"
  6233. #~ msgstr "Registro de alterações"
  6234. #~ msgctxt "@title:window"
  6235. #~ msgid "User Agreement"
  6236. #~ msgstr "Termos de Acordo do Usuário"
  6237. #~ msgctxt "@alabel"
  6238. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6239. #~ msgstr "Introduza o endereço IP ou hostname da sua impressora na rede."
  6240. #~ msgctxt "@info"
  6241. #~ msgid "Please select a network connected printer to monitor."
  6242. #~ msgstr "Por favor selecione uma impressora conectada à rede para monitorar."
  6243. #~ msgctxt "@info"
  6244. #~ msgid "Please connect your Ultimaker printer to your local network."
  6245. #~ msgstr "Por favor conecte sua impressora Ultimaker à sua rede local."
  6246. #~ msgctxt "@text:window"
  6247. #~ 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."
  6248. #~ 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."
  6249. #~ msgctxt "@text:window"
  6250. #~ msgid "I don't want to send this data"
  6251. #~ msgstr "Não desejo enviar estes dados"
  6252. #~ msgctxt "@text:window"
  6253. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6254. #~ msgstr "Permitir enviar estes dados à Ultimaker para ajudar a melhorar o Cura"
  6255. #~ msgctxt "@label"
  6256. #~ msgid "No print selected"
  6257. #~ msgstr "Nenhuma impressão selecionada"
  6258. #~ msgctxt "@info:tooltip"
  6259. #~ 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."
  6260. #~ 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."
  6261. #~ msgctxt "@title"
  6262. #~ msgid "Select Printer Upgrades"
  6263. #~ msgstr "Seleccionar Atualizações da Impressora"
  6264. #~ msgctxt "@label"
  6265. #~ 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."
  6266. #~ 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."
  6267. #~ msgctxt "@tooltip"
  6268. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6269. #~ 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"
  6270. #~ msgctxt "@label shown when we load a Gcode file"
  6271. #~ msgid "Print setup disabled. G code file can not be modified."
  6272. #~ msgstr "Configuração de impressão desabilitada. Arquivo de G-Code não pode ser modificado."
  6273. #~ msgctxt "@label"
  6274. #~ msgid "See the material compatibility chart"
  6275. #~ msgstr "Veja o diagrama de compatibilidade de material"
  6276. #~ msgctxt "@label"
  6277. #~ msgid "View types"
  6278. #~ msgstr "Ver tipos"
  6279. #~ msgctxt "@label"
  6280. #~ msgid "Hi "
  6281. #~ msgstr "Oi "
  6282. #~ msgctxt "@text"
  6283. #~ msgid ""
  6284. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6285. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6286. #~ "- Get exclusive access to material profiles from leading brands"
  6287. #~ msgstr ""
  6288. #~ "- Envia trabalhos de impressão para impressoras Ultimaker fora da sua rede local\n"
  6289. #~ "- Guarda seus ajustes do Ultimaker Cura na nuvem para uso em qualquer lugar\n"
  6290. #~ "- Obtém acesso exclusivo a perfis de material de marcas reconhecidas"
  6291. #~ msgctxt "@label:PrintjobStatus"
  6292. #~ msgid "Unable to Slice"
  6293. #~ msgstr "Não Foi Possível Fatiar"
  6294. #~ msgctxt "@label"
  6295. #~ msgid "Time specification"
  6296. #~ msgstr "Especificação de tempo"
  6297. #~ msgctxt "@label"
  6298. #~ msgid "Material specification"
  6299. #~ msgstr "Especificação de material"
  6300. #~ msgctxt "@title:tab"
  6301. #~ msgid "Add a printer to Cura"
  6302. #~ msgstr "Adiciona uma impressora ao Cura"
  6303. #~ msgctxt "@title:tab"
  6304. #~ msgid ""
  6305. #~ "Select the printer you want to use from the list below.\n"
  6306. #~ "\n"
  6307. #~ "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."
  6308. #~ msgstr ""
  6309. #~ "Selecione a impressora que deseja usar da lista abaixo.\n"
  6310. #~ "\n"
  6311. #~ "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."
  6312. #~ msgctxt "@label"
  6313. #~ msgid "Printer Name"
  6314. #~ msgstr "Nome da Impressora"
  6315. #~ msgctxt "@action:button"
  6316. #~ msgid "Add Printer"
  6317. #~ msgstr "Adicionar Impressora"
  6318. #~ msgid "Modify G-Code"
  6319. #~ msgstr "Modificar G-Code"
  6320. #~ msgctxt "@info:status"
  6321. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6322. #~ msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem."
  6323. #~ msgctxt "@info:status"
  6324. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6325. #~ msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada."
  6326. #~ msgctxt "@info:title"
  6327. #~ msgid "Incompatible Material"
  6328. #~ msgstr "Material Incompatível"
  6329. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6330. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6331. #~ msgstr "Falha ao importa perfil de <filename>{0}</filename>: <message>{1}</message>"
  6332. #~ msgctxt "@title"
  6333. #~ msgid "Toolbox"
  6334. #~ msgstr "Ferramentas"
  6335. #~ msgctxt "@label"
  6336. #~ msgid "Not available"
  6337. #~ msgstr "Não disponível"
  6338. #~ msgctxt "@label"
  6339. #~ msgid "Unreachable"
  6340. #~ msgstr "Inacessível"
  6341. #~ msgctxt "@label"
  6342. #~ msgid "Available"
  6343. #~ msgstr "Disponível"
  6344. #~ msgctxt "@label:status"
  6345. #~ msgid "Preparing"
  6346. #~ msgstr "Preparando"
  6347. #~ msgctxt "@label:status"
  6348. #~ msgid "Pausing"
  6349. #~ msgstr "Pausando"
  6350. #~ msgctxt "@label:status"
  6351. #~ msgid "Resuming"
  6352. #~ msgstr "Continuando"
  6353. #~ msgctxt "@label"
  6354. #~ msgid "Waiting for: Unavailable printer"
  6355. #~ msgstr "Aguardando por: Impressora indisponível"
  6356. #~ msgctxt "@label"
  6357. #~ msgid "Waiting for: First available"
  6358. #~ msgstr "Aguardando por: A primeira disponível"
  6359. #~ msgctxt "@label"
  6360. #~ msgid "Waiting for: "
  6361. #~ msgstr "Aguardando por: "
  6362. #~ msgctxt "@label"
  6363. #~ msgid "Configuration change"
  6364. #~ msgstr "Alteração de configuração"
  6365. #~ msgctxt "@label"
  6366. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6367. #~ msgstr "A impressora atribuída, %1, requer as seguintes alterações de configuração:"
  6368. #~ msgctxt "@label"
  6369. #~ msgid "Override"
  6370. #~ msgstr "Sobrepôr"
  6371. #~ msgctxt "@label"
  6372. #~ 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?"
  6373. #~ 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?"
  6374. #~ msgctxt "@window:title"
  6375. #~ msgid "Override configuration configuration and start print"
  6376. #~ msgstr "Sobrepôr configuração e iniciar impressão"
  6377. #~ msgctxt "@label link to connect manager"
  6378. #~ msgid "Manage queue"
  6379. #~ msgstr "Gerenciar fila"
  6380. #~ msgctxt "@label"
  6381. #~ msgid "Printing"
  6382. #~ msgstr "Imprimindo"
  6383. #~ msgctxt "@label link to connect manager"
  6384. #~ msgid "Manage printers"
  6385. #~ msgstr "Gerenciar impressoras"
  6386. #~ msgctxt "@action:button"
  6387. #~ msgid "Activate Configuration"
  6388. #~ msgstr "Ativar Configuração"
  6389. #~ msgctxt "@info:tooltip"
  6390. #~ msgid "Load the configuration of the printer into Cura"
  6391. #~ msgstr "Carrega a configuração da impressora no Cura"
  6392. #~ msgctxt "@label"
  6393. #~ msgid "Show Travels"
  6394. #~ msgstr "Exibir Percursos"
  6395. #~ msgctxt "@label"
  6396. #~ msgid "Show Helpers"
  6397. #~ msgstr "Exibir Assistentes"
  6398. #~ msgctxt "@label"
  6399. #~ msgid "Show Shell"
  6400. #~ msgstr "Exibir Perímetro"
  6401. #~ msgctxt "@label"
  6402. #~ msgid "Show Infill"
  6403. #~ msgstr "Exibir Preenchimento"
  6404. #~ msgctxt "@text:window"
  6405. #~ msgid "I don't want to send these data"
  6406. #~ msgstr "Eu não quero enviar estes dados"
  6407. #~ msgctxt "@text:window"
  6408. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6409. #~ msgstr "Permite o envio destes dados para a Ultimaker e nos auxilia a aprimorar o Cura"
  6410. #~ msgctxt "@label"
  6411. #~ msgid "Printer type:"
  6412. #~ msgstr "Tipo de impressora:"
  6413. #~ msgctxt "@label"
  6414. #~ msgid "Connection:"
  6415. #~ msgstr "Conexão:"
  6416. #~ msgctxt "@label"
  6417. #~ msgid "State:"
  6418. #~ msgstr "Estado:"
  6419. #~ msgctxt "@label:MonitorStatus"
  6420. #~ msgid "Waiting for a printjob"
  6421. #~ msgstr "Esperando um trabalho de impressão"
  6422. #~ msgctxt "@label:MonitorStatus"
  6423. #~ msgid "Waiting for someone to clear the build plate"
  6424. #~ msgstr "Esperando que alguém esvazie a mesa de impressão"
  6425. #~ msgctxt "@label:MonitorStatus"
  6426. #~ msgid "Aborting print..."
  6427. #~ msgstr "Abortando impressão..."
  6428. #~ msgctxt "@label"
  6429. #~ msgid "Protected profiles"
  6430. #~ msgstr "Perfis Protegidos"
  6431. #~ msgctxt "@label"
  6432. #~ msgid "Printer Name:"
  6433. #~ msgstr "Nome da Impressora:"
  6434. #~ msgctxt "@label"
  6435. #~ msgid "Profile:"
  6436. #~ msgstr "Perfil:"
  6437. #~ msgctxt "@label:textbox"
  6438. #~ msgid "Search..."
  6439. #~ msgstr "Buscar..."
  6440. #~ msgctxt "@action:inmenu"
  6441. #~ msgid "Collapse All"
  6442. #~ msgstr "Encolher Todos"
  6443. #~ msgctxt "@action:inmenu"
  6444. #~ msgid "Expand All"
  6445. #~ msgstr "Expandir Todos"
  6446. #~ msgctxt "@label:header configurations"
  6447. #~ msgid "Available configurations"
  6448. #~ msgstr "Configurações disponíveis"
  6449. #~ msgctxt "@label:extruder label"
  6450. #~ msgid "Extruder"
  6451. #~ msgstr "Extrusor"
  6452. #~ msgctxt "@label:extruder label"
  6453. #~ msgid "Yes"
  6454. #~ msgstr "Sim"
  6455. #~ msgctxt "@label:extruder label"
  6456. #~ msgid "No"
  6457. #~ msgstr "Não"
  6458. #~ msgctxt "@label:listbox"
  6459. #~ msgid "Print Setup"
  6460. #~ msgstr "Configuração de Impressão"
  6461. #~ msgctxt "@label:listbox"
  6462. #~ msgid ""
  6463. #~ "Print Setup disabled\n"
  6464. #~ "G-code files cannot be modified"
  6465. #~ msgstr ""
  6466. #~ "Configuração de Impressão desabilitada\n"
  6467. #~ "Arquivos G-Code não podem ser modificados"
  6468. #~ msgctxt "@label Hours and minutes"
  6469. #~ msgid "00h 00min"
  6470. #~ msgstr "00h 00min"
  6471. #~ msgctxt "@tooltip"
  6472. #~ msgid "Time specification"
  6473. #~ msgstr "Especificação de tempo"
  6474. #~ msgctxt "@label"
  6475. #~ msgid "Cost specification"
  6476. #~ msgstr "Especificação de custo"
  6477. #~ msgctxt "@label"
  6478. #~ msgid "Total:"
  6479. #~ msgstr "Total:"
  6480. #~ msgctxt "@tooltip"
  6481. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6482. #~ msgstr "<b>Configuração Recomendada de Impressão</b><br/><br/>Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados."
  6483. #~ msgctxt "@tooltip"
  6484. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6485. #~ msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com controle fino sobre cada parte do processo de fatiamento."
  6486. #~ msgctxt "@action:inmenu menubar:help"
  6487. #~ msgid "Show Engine &Log..."
  6488. #~ msgstr "Exibir o Registro do Motor de Fatiamento (&L)..."
  6489. #~ msgctxt "@action:menu"
  6490. #~ msgid "Browse packages..."
  6491. #~ msgstr "Navegar pacotes..."
  6492. #~ msgctxt "@action:inmenu menubar:view"
  6493. #~ msgid "Expand/Collapse Sidebar"
  6494. #~ msgstr "Expandir/Encolher Barra Lateral"
  6495. #~ msgctxt "@label:PrintjobStatus"
  6496. #~ msgid "Please load a 3D model"
  6497. #~ msgstr "Por favor carregue um modelo 3D"
  6498. #~ msgctxt "@label:PrintjobStatus"
  6499. #~ msgid "Ready to slice"
  6500. #~ msgstr "Pronto para fatiar"
  6501. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6502. #~ msgid "Ready to %1"
  6503. #~ msgstr "Pronto para %1"
  6504. #~ msgctxt "@label:PrintjobStatus"
  6505. #~ msgid "Slicing unavailable"
  6506. #~ msgstr "Fatiamento indisponível"
  6507. #~ msgctxt "@info:tooltip"
  6508. #~ msgid "Slice current printjob"
  6509. #~ msgstr "Fatiar trabalho de impressão atual"
  6510. #~ msgctxt "@info:tooltip"
  6511. #~ msgid "Cancel slicing process"
  6512. #~ msgstr "Cancelar processo de fatiamento"
  6513. #~ msgctxt "@label:Printjob"
  6514. #~ msgid "Prepare"
  6515. #~ msgstr "Preparar"
  6516. #~ msgctxt "@label:Printjob"
  6517. #~ msgid "Cancel"
  6518. #~ msgstr "Cancelar"
  6519. #~ msgctxt "@info:tooltip"
  6520. #~ msgid "Select the active output device"
  6521. #~ msgstr "Selecione o dispositivo de saída ativo"
  6522. #~ msgctxt "@title:menu"
  6523. #~ msgid "&View"
  6524. #~ msgstr "&Ver"
  6525. #~ msgctxt "@title:menu"
  6526. #~ msgid "&Settings"
  6527. #~ msgstr "Aju&stes"
  6528. #~ msgctxt "@title:menu menubar:toplevel"
  6529. #~ msgid "&Toolbox"
  6530. #~ msgstr "Ferramen&tas"
  6531. #~ msgctxt "@action:button"
  6532. #~ msgid "Open File"
  6533. #~ msgstr "Abrir arquivo"
  6534. #~ msgctxt "@tooltip"
  6535. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6536. #~ 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"
  6537. #~ msgctxt "@label"
  6538. #~ msgid "Print Speed"
  6539. #~ msgstr "Velocidade de Impressão"
  6540. #~ msgctxt "@label"
  6541. #~ msgid "Slower"
  6542. #~ msgstr "Mais Lento"
  6543. #~ msgctxt "@label"
  6544. #~ msgid "Faster"
  6545. #~ msgstr "Mais Rápido"
  6546. #~ msgctxt "@label"
  6547. #~ msgid "Enable gradual"
  6548. #~ msgstr "Habilitar gradual"
  6549. #~ msgctxt "@label"
  6550. #~ msgid "Generate Support"
  6551. #~ msgstr "Gerar Suportes"
  6552. #~ msgctxt "@label"
  6553. #~ msgid "Build Plate Adhesion"
  6554. #~ msgstr "Aderência à Mesa de Impressão"
  6555. #~ msgctxt "@label"
  6556. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6557. #~ msgstr "Precisa de ajuda para melhorar sua impressões?<br>Leia os <a href='%1'>Guias de Resolução de Problema da Ultimaker</a>"
  6558. #~ msgctxt "@title:window"
  6559. #~ msgid "Engine Log"
  6560. #~ msgstr "Registro do Motor de Fatiamento"
  6561. #~ msgctxt "@label"
  6562. #~ msgid "Printer type"
  6563. #~ msgstr "Tipo de impressora"
  6564. #~ msgctxt "@label"
  6565. #~ msgid "Use glue with this material combination"
  6566. #~ msgstr "Use cola com esta combinação de materiais"
  6567. #~ msgctxt "@label"
  6568. #~ msgid "Check compatibility"
  6569. #~ msgstr "Verificar compatibilidade"
  6570. #~ msgctxt "@tooltip"
  6571. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6572. #~ msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com."
  6573. #~ msgctxt "description"
  6574. #~ msgid "Shows changes since latest checked version."
  6575. #~ msgstr "Mostra alterações desde a última versão verificada."
  6576. #~ msgctxt "name"
  6577. #~ msgid "Changelog"
  6578. #~ msgstr "Registro de Alterações"
  6579. #~ msgctxt "description"
  6580. #~ msgid "Create a flattend quality changes profile."
  6581. #~ msgstr "Cria um perfil de alterações achatado."
  6582. #~ msgctxt "name"
  6583. #~ msgid "Profile flatener"
  6584. #~ msgstr "Achatador de Perfil"
  6585. #~ msgctxt "description"
  6586. #~ msgid "Ask the user once if he/she agrees with our license."
  6587. #~ msgstr "Perguntar ao usuário uma vez se concorda com nossa licença."
  6588. #~ msgctxt "name"
  6589. #~ msgid "UserAgreement"
  6590. #~ msgstr "Acordo de Usuário"
  6591. #~ msgctxt "@warning:status"
  6592. #~ msgid "Please generate G-code before saving."
  6593. #~ msgstr "Por favor gere o G-Code antes de salvar."
  6594. #~ msgctxt "@action"
  6595. #~ msgid "Upgrade Firmware"
  6596. #~ msgstr "Atualizar Firmware"
  6597. #~ msgctxt "@label unknown material"
  6598. #~ msgid "Unknown"
  6599. #~ msgstr "Desconhecido"
  6600. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6601. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6602. #~ msgstr "Não há perfil personalizado para importar no arquivo <filename>{0}</filename>"
  6603. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6604. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6605. #~ msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  6606. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6607. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6608. #~ 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."
  6609. #~ msgctxt "@title:window"
  6610. #~ msgid "Confirm uninstall "
  6611. #~ msgstr "Confirme a deinstalação"
  6612. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6613. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6614. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  6615. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6616. #~ msgid "%1m / ~ %2g"
  6617. #~ msgstr "%1m / ~ %2g"
  6618. #~ msgctxt "@title"
  6619. #~ msgid "Upgrade Firmware"
  6620. #~ msgstr "Atualizar Firmware"
  6621. #~ msgctxt "@action:button"
  6622. #~ msgid "Print with Doodle3D WiFi-Box"
  6623. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6624. #~ msgctxt "@properties:tooltip"
  6625. #~ msgid "Print with Doodle3D WiFi-Box"
  6626. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  6627. #~ msgctxt "@info:status"
  6628. #~ msgid "Connecting to Doodle3D Connect"
  6629. #~ msgstr "Conectando ao Doodle3D Connect"
  6630. #~ msgctxt "@info:status"
  6631. #~ msgid "Sending data to Doodle3D Connect"
  6632. #~ msgstr "Enviando dados ao Doodle3D Connect"
  6633. #~ msgctxt "@info:status"
  6634. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6635. #~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?"
  6636. #~ msgctxt "@info:status"
  6637. #~ msgid "Storing data on Doodle3D Connect"
  6638. #~ msgstr "Armazenando dados no Doodle3D Connect"
  6639. #~ msgctxt "@info:status"
  6640. #~ msgid "File sent to Doodle3D Connect"
  6641. #~ msgstr "Arquivo enviado ao Doodle3D Connect"
  6642. #~ msgctxt "@action:button"
  6643. #~ msgid "Open Connect..."
  6644. #~ msgstr "Abrir Connect..."
  6645. #~ msgctxt "@info:tooltip"
  6646. #~ msgid "Open the Doodle3D Connect web interface"
  6647. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  6648. #~ msgctxt "@item:inlistbox"
  6649. #~ msgid "Blender file"
  6650. #~ msgstr "Arquivo do Blender"
  6651. #~ msgctxt "@info:status"
  6652. #~ msgid ""
  6653. #~ "Could not export using \"{}\" quality!\n"
  6654. #~ "Felt back to \"{}\"."
  6655. #~ msgstr ""
  6656. #~ "Não foi possível exportar usando qualidade \"{}\"!\n"
  6657. #~ "Foi usada a \"{}\"."
  6658. #~ msgctxt "@label"
  6659. #~ msgid "Contact"
  6660. #~ msgstr "Contato"
  6661. #~ msgctxt "@label"
  6662. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6663. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3."
  6664. #~ msgctxt "@label"
  6665. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6666. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3."
  6667. #~ msgctxt "@label: arg 1 is group name"
  6668. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6669. #~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas"
  6670. #~ msgctxt "@label link to connect manager"
  6671. #~ msgid "Add/Remove printers"
  6672. #~ msgstr "Adicionar/Remover impressoras"
  6673. #~ msgctxt "@info:tooltip"
  6674. #~ msgid "Opens the print jobs page with your default web browser."
  6675. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador default."
  6676. #~ msgctxt "@action:button"
  6677. #~ msgid "View print jobs"
  6678. #~ msgstr "Visualizar trabalhos de impressão"
  6679. #~ msgctxt "@label:status"
  6680. #~ msgid "Preparing to print"
  6681. #~ msgstr "Preparando para imprimir"
  6682. #~ msgctxt "@label:status"
  6683. #~ msgid "Available"
  6684. #~ msgstr "Disponível"
  6685. #~ msgctxt "@label:status"
  6686. #~ msgid "Lost connection with the printer"
  6687. #~ msgstr "Conexão à impressora perdida"
  6688. #~ msgctxt "@label:status"
  6689. #~ msgid "Unknown"
  6690. #~ msgstr "Desconhecido"
  6691. #~ msgctxt "@label:status"
  6692. #~ msgid "Disabled"
  6693. #~ msgstr "Desabilitado"
  6694. #~ msgctxt "@label:status"
  6695. #~ msgid "Reserved"
  6696. #~ msgstr "Reservado"
  6697. #~ msgctxt "@label"
  6698. #~ msgid "Preparing to print"
  6699. #~ msgstr "Preparando para imprimir"
  6700. #~ msgctxt "@label:status"
  6701. #~ msgid "Print aborted"
  6702. #~ msgstr "A impressão foi interrompida"
  6703. #~ msgctxt "@label"
  6704. #~ msgid "Not accepting print jobs"
  6705. #~ msgstr "Não aceitando trabalhos de impressão"
  6706. #~ msgctxt "@label"
  6707. #~ msgid "Finishes at: "
  6708. #~ msgstr "Termina em: "
  6709. #~ msgctxt "@label"
  6710. #~ msgid "Clear build plate"
  6711. #~ msgstr "Esvaziar a mesa de impressão"
  6712. #~ msgctxt "@label"
  6713. #~ msgid "Waiting for configuration change"
  6714. #~ msgstr "Esperando alteração de configuração"
  6715. #~ msgctxt "@title"
  6716. #~ msgid "Print jobs"
  6717. #~ msgstr "Trabalhos de impressão"
  6718. #~ msgctxt "@label:title"
  6719. #~ msgid "Printers"
  6720. #~ msgstr "Impressoras"
  6721. #~ msgctxt "@action:button"
  6722. #~ msgid "View printers"
  6723. #~ msgstr "Visualizar impressoras"
  6724. #~ msgctxt "@label:"
  6725. #~ msgid "Pause"
  6726. #~ msgstr "Pausar"
  6727. #~ msgctxt "@label:"
  6728. #~ msgid "Resume"
  6729. #~ msgstr "Continuar"
  6730. #~ msgctxt "@label:"
  6731. #~ msgid "Abort Print"
  6732. #~ msgstr "Abortar Impressão"
  6733. #~ msgctxt "@option:openProject"
  6734. #~ msgid "Always ask"
  6735. #~ msgstr "Sempre perguntar"
  6736. #~ msgctxt "@label"
  6737. #~ msgid "Override Profile"
  6738. #~ msgstr "Sobrescrever Perfil"
  6739. #~ msgctxt "@info:tooltip"
  6740. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6741. #~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)"
  6742. #~ msgctxt "@option:check"
  6743. #~ msgid "Do not arrange objects on load"
  6744. #~ msgstr "Não posicionar objetos ao carregar."
  6745. #~ msgctxt "@action:inmenu menubar:file"
  6746. #~ msgid "&Save Selection to File"
  6747. #~ msgstr "Salvar &Seleção em Arquivo"
  6748. #~ msgctxt "@title:menu menubar:file"
  6749. #~ msgid "Save &As..."
  6750. #~ msgstr "S&alvar Como..."
  6751. #~ msgctxt "@title:menu menubar:file"
  6752. #~ msgid "Save &Project..."
  6753. #~ msgstr "Salvar &Projeto..."
  6754. #~ msgctxt "@label"
  6755. #~ msgid "Use adhesion sheet or glue with this material combination"
  6756. #~ msgstr "Use camada de aderência ou cola com esta combinação de material"
  6757. #~ msgctxt "description"
  6758. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6759. #~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D."
  6760. #~ msgctxt "name"
  6761. #~ msgid "Doodle3D WiFi-Box"
  6762. #~ msgstr "WiFi-Box Doodle3D"
  6763. #~ msgctxt "description"
  6764. #~ msgid "Provides an edit window for direct script editing."
  6765. #~ msgstr "Provê uma janela de edição para edição direta de script."
  6766. #~ msgctxt "name"
  6767. #~ msgid "Live scripting tool"
  6768. #~ msgstr "Ferramenta de scripting integrada"
  6769. #~ msgctxt "description"
  6770. #~ msgid "Helps to open Blender files directly in Cura."
  6771. #~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura."
  6772. #~ msgctxt "name"
  6773. #~ msgid "Blender Integration (experimental)"
  6774. #~ msgstr "Integração ao Blender (experimental)"
  6775. #~ msgctxt "@info:title"
  6776. #~ msgid "Model Checker Warning"
  6777. #~ msgstr "Alerta de Verificador de Modelo"
  6778. #~ msgctxt "@info:status"
  6779. #~ msgid ""
  6780. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6781. #~ "Tips that may be useful to improve the print quality:\n"
  6782. #~ "1) Use rounded corners.\n"
  6783. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6784. #~ "3) Use a different material."
  6785. #~ msgstr ""
  6786. #~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n"
  6787. #~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n"
  6788. #~ "1) Use cantos arredondados.\n"
  6789. #~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n"
  6790. #~ "3) Use material diferente."
  6791. #~ msgctxt "@info:status"
  6792. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6793. #~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks."
  6794. #~ msgctxt "@info:status"
  6795. #~ msgid ""
  6796. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6797. #~ "\n"
  6798. #~ "Thanks!"
  6799. #~ msgstr ""
  6800. #~ "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"
  6801. #~ "\n"
  6802. #~ "Obrigado!"
  6803. #~ msgctxt "@info:status"
  6804. #~ msgid ""
  6805. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6806. #~ "\n"
  6807. #~ "Sorry!"
  6808. #~ msgstr ""
  6809. #~ "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"
  6810. #~ "\n"
  6811. #~ "Desculpe!"
  6812. #~ msgctxt "@item:inlistbox"
  6813. #~ msgid "SolidWorks part file"
  6814. #~ msgstr "Arquivo de parte de SolidWorks"
  6815. #~ msgctxt "@item:inlistbox"
  6816. #~ msgid "SolidWorks assembly file"
  6817. #~ msgstr "Arquivo de montagem de SolidWorks"
  6818. #~ msgctxt "@item:inlistbox"
  6819. #~ msgid "SolidWorks drawing file"
  6820. #~ msgstr "Arquivo de desenho do SolidWorks"
  6821. #~ msgctxt "@info:status"
  6822. #~ msgid ""
  6823. #~ "Dear customer,\n"
  6824. #~ "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"
  6825. #~ "\n"
  6826. #~ "With kind regards\n"
  6827. #~ " - Thomas Karl Pietrowski"
  6828. #~ msgstr ""
  6829. #~ "Caro cliente,\n"
  6830. #~ "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"
  6831. #~ "\n"
  6832. #~ "Atenciosamente\n"
  6833. #~ " - Thomas Karl Pietrowski"
  6834. #~ msgctxt "@info:status"
  6835. #~ msgid ""
  6836. #~ "Dear customer,\n"
  6837. #~ "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"
  6838. #~ "\n"
  6839. #~ "With kind regards\n"
  6840. #~ " - Thomas Karl Pietrowski"
  6841. #~ msgstr ""
  6842. #~ "Caro cliente,\n"
  6843. #~ "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"
  6844. #~ "\n"
  6845. #~ "Atenciosamente\n"
  6846. #~ " - Thomas Karl Pietrowski"
  6847. #~ msgid "Configure"
  6848. #~ msgstr "Configure"
  6849. #~ msgid "Installation guide for SolidWorks macro"
  6850. #~ msgstr "Guia de Instalação para macro do SolidWorks"
  6851. #~ msgctxt "@action:button"
  6852. #~ msgid "Disable"
  6853. #~ msgstr "Desabilitar"
  6854. #~ msgctxt "@action:tooltip"
  6855. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6856. #~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências."
  6857. #~ msgid "Install"
  6858. #~ msgstr "Instalar"
  6859. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6860. #~ 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."
  6861. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6862. #~ msgstr "Plugin Siemens NX do Cura instalado com sucesso."
  6863. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6864. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR."
  6865. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6866. #~ 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."
  6867. #~ msgctxt "@info:status"
  6868. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6869. #~ msgstr "Falha ao pegar identificador do complemento de <filename>{0}</filename>"
  6870. #~ msgctxt "@info:tile"
  6871. #~ msgid "Warning"
  6872. #~ msgstr "Aviso"
  6873. #~ msgctxt "@window:title"
  6874. #~ msgid "Plugin browser"
  6875. #~ msgstr "Navegador de complementos"
  6876. #~ msgctxt "@label"
  6877. #~ msgid "Ultimaker 3"
  6878. #~ msgstr "Ultimaker 3"
  6879. #~ msgctxt "@label"
  6880. #~ msgid "Ultimaker 3 Extended"
  6881. #~ msgstr "Ultimaker 3 Extended"
  6882. #~ msgctxt "@title:window"
  6883. #~ msgid "SolidWorks: Export wizard"
  6884. #~ msgstr "SolidWorks: Assistente de Exportação"
  6885. #~ msgctxt "@action:label"
  6886. #~ msgid "Quality:"
  6887. #~ msgstr "Qualidade"
  6888. #~ msgctxt "@option:curaSolidworksStlQuality"
  6889. #~ msgid "Fine (3D-printing)"
  6890. #~ msgstr "Fina (impressão-3D)"
  6891. #~ msgctxt "@option:curaSolidworksStlQuality"
  6892. #~ msgid "Coarse (3D-printing)"
  6893. #~ msgstr "Baixa"
  6894. #~ msgctxt "@option:curaSolidworksStlQuality"
  6895. #~ msgid "Fine (SolidWorks)"
  6896. #~ msgstr "Fina (SolidWorks)"
  6897. #~ msgctxt "@option:curaSolidworksStlQuality"
  6898. #~ msgid "Coarse (SolidWorks)"
  6899. #~ msgstr "Baixa (SolidWorks)"
  6900. #~ msgctxt "@text:window"
  6901. #~ msgid "Show this dialog again"
  6902. #~ msgstr "Mostrar este diálogo novamente"
  6903. #~ msgctxt "@action:button"
  6904. #~ msgid "Continue"
  6905. #~ msgstr "Continuar"
  6906. #~ msgctxt "@action:button"
  6907. #~ msgid "Abort"
  6908. #~ msgstr "Abortar"
  6909. #~ msgctxt "@title:window"
  6910. #~ msgid "How to install Cura SolidWorks macro"
  6911. #~ msgstr "Como instalar a macro de SolidWorks do Cura"
  6912. #~ msgctxt "@description:label"
  6913. #~ msgid "Steps:"
  6914. #~ msgstr "Passos:"
  6915. #~ msgctxt "@action:button"
  6916. #~ msgid ""
  6917. #~ "Open the directory\n"
  6918. #~ "with macro and icon"
  6919. #~ msgstr ""
  6920. #~ "Abrir o diretório\n"
  6921. #~ "com a macro e o ícone"
  6922. #~ msgctxt "@description:label"
  6923. #~ msgid "Instructions:"
  6924. #~ msgstr "Instruções:"
  6925. #~ msgctxt "@action:playpause"
  6926. #~ msgid "Play"
  6927. #~ msgstr "Tocar"
  6928. #~ msgctxt "@action:playpause"
  6929. #~ msgid "Pause"
  6930. #~ msgstr "Pausar"
  6931. #~ msgctxt "@action:button"
  6932. #~ msgid "Previous Step"
  6933. #~ msgstr "Passo Anterior"
  6934. #~ msgctxt "@action:button"
  6935. #~ msgid "Done"
  6936. #~ msgstr "Finalizado"
  6937. #~ msgctxt "@action:button"
  6938. #~ msgid "Next Step"
  6939. #~ msgstr "Passo Seguinte"
  6940. #~ msgctxt "@title:window"
  6941. #~ msgid "SolidWorks plugin: Configuration"
  6942. #~ msgstr "Complemento do SolidWorks: Configuração"
  6943. #~ msgctxt "@title:tab"
  6944. #~ msgid "Conversion settings"
  6945. #~ msgstr "Ajustes de conversão"
  6946. #~ msgctxt "@label"
  6947. #~ msgid "First choice:"
  6948. #~ msgstr "Primeira escolha:"
  6949. #~ msgctxt "@text:menu"
  6950. #~ msgid "Latest installed version (Recommended)"
  6951. #~ msgstr "Última versão instalada (Recomendado)"
  6952. #~ msgctxt "@text:menu"
  6953. #~ msgid "Default version"
  6954. #~ msgstr "Versão default"
  6955. #~ msgctxt "@label"
  6956. #~ msgid "Show wizard before opening SolidWorks files"
  6957. #~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks"
  6958. #~ msgctxt "@label"
  6959. #~ msgid "Automatically rotate opened file into normed orientation"
  6960. #~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada"
  6961. #~ msgctxt "@title:tab"
  6962. #~ msgid "Installation(s)"
  6963. #~ msgstr "Instalações"
  6964. #~ msgctxt "@label"
  6965. #~ msgid "COM service found"
  6966. #~ msgstr "Serviço COM encontrado"
  6967. #~ msgctxt "@label"
  6968. #~ msgid "Executable found"
  6969. #~ msgstr "Executável encontrado"
  6970. #~ msgctxt "@label"
  6971. #~ msgid "COM starting"
  6972. #~ msgstr "COM iniciando"
  6973. #~ msgctxt "@label"
  6974. #~ msgid "Revision number"
  6975. #~ msgstr "Número de revisão"
  6976. #~ msgctxt "@label"
  6977. #~ msgid "Functions available"
  6978. #~ msgstr "Funções disponíveis"
  6979. #~ msgctxt "@label (%1 is object name)"
  6980. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6981. #~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?"
  6982. #~ msgctxt "@action:menu"
  6983. #~ msgid "Browse plugins..."
  6984. #~ msgstr "Navegar complementos..."
  6985. #~ msgctxt "@title:menu menubar:toplevel"
  6986. #~ msgid "P&lugins"
  6987. #~ msgstr "Comp&lementos"
  6988. #~ msgctxt "@window:title"
  6989. #~ msgid "Install Plugin"
  6990. #~ msgstr "Instalar Complemento"
  6991. #~ msgctxt "description"
  6992. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6993. #~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)"
  6994. #~ msgctxt "description"
  6995. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6996. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3"
  6997. #~ msgctxt "description"
  6998. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6999. #~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais."
  7000. #~ msgctxt "name"
  7001. #~ msgid "SolidWorks Integration"
  7002. #~ msgstr "Integração ao SolidWorks"
  7003. #~ msgctxt "description"
  7004. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7005. #~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações."
  7006. #~ msgctxt "name"
  7007. #~ msgid "Auto Save"
  7008. #~ msgstr "Auto-Salvar"
  7009. #~ msgctxt "description"
  7010. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7011. #~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX."
  7012. #~ msgctxt "name"
  7013. #~ msgid "Siemens NX Integration"
  7014. #~ msgstr "Integração ao Siemens NX"
  7015. #~ msgctxt "description"
  7016. #~ msgid "Find, manage and install new plugins."
  7017. #~ msgstr "Busca, gerencia e instala novos complementos."
  7018. #~ msgctxt "name"
  7019. #~ msgid "Plugin Browser"
  7020. #~ msgstr "Navegador de Complementos"
  7021. #~ msgctxt "description"
  7022. #~ msgid "Ask the user once if he/she agrees with our license"
  7023. #~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença"
  7024. #~ msgctxt "description"
  7025. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7026. #~ msgstr "Provê ações de máquina para Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)"
  7027. #~ msgctxt "@item:inlistbox"
  7028. #~ msgid "GCode File"
  7029. #~ msgstr "Arquivo G-Code"
  7030. #~ msgctxt "@info:status"
  7031. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7032. #~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada."
  7033. #~ msgctxt "@info:title"
  7034. #~ msgid "Printer Unavailable"
  7035. #~ msgstr "Impressora Não Disponível"
  7036. #~ msgctxt "@info:status"
  7037. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7038. #~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode."
  7039. #~ msgctxt "@info:title"
  7040. #~ msgid "USB Printing"
  7041. #~ msgstr "Impressão USB"
  7042. #~ msgctxt "@info:status"
  7043. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7044. #~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB."
  7045. #~ msgctxt "@info"
  7046. #~ msgid "Unable to update firmware because there are no printers connected."
  7047. #~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas."
  7048. #~ msgctxt "@info"
  7049. #~ msgid "Could not find firmware required for the printer at %s."
  7050. #~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s."
  7051. #~ msgctxt "@info:title"
  7052. #~ msgid "Printer Firmware"
  7053. #~ msgstr "Firmware da Impressora"
  7054. #~ msgctxt "@info:title"
  7055. #~ msgid "Connection status"
  7056. #~ msgstr "Status da Conexão"
  7057. #~ msgctxt "@info:title"
  7058. #~ msgid "Connection Status"
  7059. #~ msgstr "Status da Conexão"
  7060. #~ msgctxt "@info:status"
  7061. #~ msgid "Access request was denied on the printer."
  7062. #~ msgstr "Pedido de acesso foi negado na impressora."
  7063. #~ msgctxt "@info:status"
  7064. #~ msgid "Access request failed due to a timeout."
  7065. #~ msgstr "Pedido de acesso falhou devido a tempo esgotado."
  7066. #~ msgctxt "@info:status"
  7067. #~ msgid "The connection with the network was lost."
  7068. #~ msgstr "A conexão à rede foi perdida."
  7069. #~ msgctxt "@info:status"
  7070. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7071. #~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada."
  7072. #~ msgctxt "@info:status"
  7073. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7074. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s."
  7075. #~ msgctxt "@info:title"
  7076. #~ msgid "Printer Status"
  7077. #~ msgstr "Status da Impressora"
  7078. #~ msgctxt "@info:status"
  7079. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7080. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}"
  7081. #~ msgctxt "@info:status"
  7082. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7083. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}"
  7084. #~ msgctxt "@label"
  7085. #~ msgid "Not enough material for spool {0}."
  7086. #~ msgstr "Não há material suficiente para o carretel {0}."
  7087. #~ msgctxt "@label"
  7088. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7089. #~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7090. #~ msgctxt "@label"
  7091. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7092. #~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora."
  7093. #~ msgctxt "@info:status"
  7094. #~ msgid "Unable to send data to printer. Is another job still active?"
  7095. #~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?"
  7096. #~ msgctxt "@label:MonitorStatus"
  7097. #~ msgid "Print aborted. Please check the printer"
  7098. #~ msgstr "Impressão abortada. Por favor verifique a impressora"
  7099. #~ msgctxt "@label:MonitorStatus"
  7100. #~ msgid "Pausing print..."
  7101. #~ msgstr "Pausando impressão..."
  7102. #~ msgctxt "@label:MonitorStatus"
  7103. #~ msgid "Resuming print..."
  7104. #~ msgstr "Continuando impressão..."
  7105. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  7106. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  7107. #~ msgctxt "Count is number of printers."
  7108. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  7109. #~ msgstr "Esta impressora hospeda um grupo de {count} impressoras Ultimaker 3 conectadas."
  7110. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7111. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa."
  7112. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7113. #~ 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."
  7114. #~ msgctxt "@info:status"
  7115. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  7116. #~ 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."
  7117. #~ msgctxt "@info:status"
  7118. #~ msgid "Unable to send print job to group {cluster_name}."
  7119. #~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}."
  7120. #~ msgctxt "@info:status"
  7121. #~ msgid "Sent {file_name} to group {cluster_name}."
  7122. #~ msgstr "{file_name} enviado ao grupo {cluster_name}."
  7123. #~ msgctxt "@action:button"
  7124. #~ msgid "Show print jobs"
  7125. #~ msgstr "Exibir trabalhos de impressão"
  7126. #~ msgctxt "@info:tooltip"
  7127. #~ msgid "Opens the print jobs interface in your browser."
  7128. #~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador."
  7129. #~ msgctxt "@label Printer name"
  7130. #~ msgid "Unknown"
  7131. #~ msgstr "Desconhecida"
  7132. #~ msgctxt "@info:progress"
  7133. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7134. #~ msgstr "Enviando <filename>{file_name}</filename> ao grupo {cluster_name}"
  7135. #~ msgctxt "@info:status"
  7136. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7137. #~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks."
  7138. #~ msgctxt "@info:status"
  7139. #~ msgid ""
  7140. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7141. #~ "\n"
  7142. #~ " Thanks!."
  7143. #~ msgstr ""
  7144. #~ "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"
  7145. #~ "\n"
  7146. #~ " Obrigado!."
  7147. #~ msgctxt "@info:status"
  7148. #~ msgid ""
  7149. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7150. #~ "\n"
  7151. #~ "Sorry!"
  7152. #~ msgstr ""
  7153. #~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n"
  7154. #~ "\n"
  7155. #~ "Desculpe!"
  7156. #~ msgctxt "@item:material"
  7157. #~ msgid "No material loaded"
  7158. #~ msgstr "Não há material carregado"
  7159. #~ msgctxt "@item:material"
  7160. #~ msgid "Unknown material"
  7161. #~ msgstr "Material desconhecido"
  7162. #~ msgctxt "@info:status Has a cancel button next to it."
  7163. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7164. #~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual."
  7165. #~ msgctxt "@action:button"
  7166. #~ msgid "Undo"
  7167. #~ msgstr "Desfazer"
  7168. #~ msgctxt "@action"
  7169. #~ msgid "Undo changing the material diameter."
  7170. #~ msgstr "Desfaz a mudança no diâmetro do material."
  7171. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7172. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7173. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> não corresponde à sua máquina atual, não foi possível importá-lo."
  7174. #~ msgctxt "@label crash message"
  7175. #~ msgid ""
  7176. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7177. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7178. #~ " "
  7179. #~ msgstr ""
  7180. #~ "<p><b>Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema</p></b>\n"
  7181. #~ " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores</p>\n"
  7182. #~ " "
  7183. #~ msgctxt "@label"
  7184. #~ msgid "not yet initialised<br/>"
  7185. #~ msgstr "ainda não inicializado<br/>"
  7186. #~ msgctxt "@label"
  7187. #~ msgid "Gcode flavor"
  7188. #~ msgstr "Sabor de G-Code"
  7189. #~ msgctxt "@label"
  7190. #~ msgid "Start Gcode"
  7191. #~ msgstr "G-Code Inicial"
  7192. #~ msgctxt "@tooltip"
  7193. #~ msgid "Gcode commands to be executed at the very start."
  7194. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  7195. #~ msgctxt "@label"
  7196. #~ msgid "End Gcode"
  7197. #~ msgstr "G-Code Final"
  7198. #~ msgctxt "@tooltip"
  7199. #~ msgid "Gcode commands to be executed at the very end."
  7200. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  7201. #~ msgctxt "@label"
  7202. #~ msgid "Extruder Start Gcode"
  7203. #~ msgstr "G-Code Inicial do Extrusor"
  7204. #~ msgctxt "@label"
  7205. #~ msgid "Extruder End Gcode"
  7206. #~ msgstr "G-Code Final do Extrusor"
  7207. #~ msgctxt "@label"
  7208. #~ msgid "Starting firmware update, this may take a while."
  7209. #~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco."
  7210. #~ msgctxt "@label"
  7211. #~ msgid "Unknown error code: %1"
  7212. #~ msgstr "Código de erro desconhecido: %1"
  7213. #~ msgctxt "@label Printer name"
  7214. #~ msgid "Ultimaker 3"
  7215. #~ msgstr "Ultimaker 3"
  7216. #~ msgctxt "@label Printer name"
  7217. #~ msgid "Ultimaker 3 Extended"
  7218. #~ msgstr "Ultimaker 3 Extended"
  7219. #~ msgctxt "@label Printer status"
  7220. #~ msgid "Unknown"
  7221. #~ msgstr "Desconhecido"
  7222. #~ msgctxt "@title:window"
  7223. #~ msgid "Find & Update plugins"
  7224. #~ msgstr "Buscar & Atualizar complementos"
  7225. #~ msgctxt "@label"
  7226. #~ msgid "Here you can find a list of Third Party plugins."
  7227. #~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros."
  7228. #~ msgctxt "@action:button"
  7229. #~ msgid "Upgrade"
  7230. #~ msgstr "Atualizar"
  7231. #~ msgctxt "@action:button"
  7232. #~ msgid "Download"
  7233. #~ msgstr "Baixar"
  7234. #~ msgctxt "@info:tooltip"
  7235. #~ msgid "Show caution message in gcode reader."
  7236. #~ msgstr "Exibir mensagem de advertência no leitor de g-code."
  7237. #~ msgctxt "@option:check"
  7238. #~ msgid "Caution message in gcode reader"
  7239. #~ msgstr "Mensagem de advertência no leitor de g-code"
  7240. #~ msgctxt "@window:title"
  7241. #~ msgid "Import Profile"
  7242. #~ msgstr "Importar Perfil"
  7243. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7244. #~ msgid "Printer: %1, %2: %3"
  7245. #~ msgstr "Impressora: %1, %2: %3"
  7246. #~ msgctxt "@action:label %1 is printer name"
  7247. #~ msgid "Printer: %1"
  7248. #~ msgstr "Impressora: %1"
  7249. #~ msgctxt "@label"
  7250. #~ msgid "GCode generator"
  7251. #~ msgstr "Gerador de G-Code"
  7252. #~ msgctxt "@action:menu"
  7253. #~ msgid "Configure setting visiblity..."
  7254. #~ msgstr "Configurar a visibilidade dos ajustes..."
  7255. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7256. #~ msgid "Automatic: %1"
  7257. #~ msgstr "Automático: %1"
  7258. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7259. #~ msgid "Automatic: %1"
  7260. #~ msgstr "Automático: %1"
  7261. #~ msgctxt "@info:status"
  7262. #~ msgid "No printer connected"
  7263. #~ msgstr "Nenhuma impressora conectada"
  7264. #~ msgctxt "@tooltip"
  7265. #~ msgid "The current temperature of this extruder."
  7266. #~ msgstr "A temperatura atual deste extrusor."
  7267. #~ msgctxt "@action:menu"
  7268. #~ msgid "Installed plugins..."
  7269. #~ msgstr "Complementos instalados..."
  7270. #~ msgctxt "@label"
  7271. #~ msgid "Support Extruder"
  7272. #~ msgstr "Extrusor do Suporte"
  7273. #~ msgctxt "description"
  7274. #~ msgid "Writes GCode to a file."
  7275. #~ msgstr "Escreve G-Code para aquivo."
  7276. #~ msgctxt "name"
  7277. #~ msgid "GCode Writer"
  7278. #~ msgstr "Gerador de G-Code"
  7279. #~ msgctxt "name"
  7280. #~ msgid "GCode Profile Reader"
  7281. #~ msgstr "Leitor de Perfis de G-Code"
  7282. #~ msgctxt "@info:status"
  7283. #~ 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!"
  7284. #~ 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!"
  7285. #~ msgctxt "@info:status"
  7286. #~ msgid "Error while starting %s!"
  7287. #~ msgstr "Erro ao iniciar %s!"
  7288. #~ msgctxt "@item:inlistbox"
  7289. #~ msgid "Simulation view"
  7290. #~ msgstr "Visão simulada"
  7291. #~ msgctxt "@info"
  7292. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7293. #~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências."
  7294. #~ msgctxt "@action:button"
  7295. #~ msgid "Dismiss"
  7296. #~ msgstr "Fechar"
  7297. #~ msgctxt "@menuitem"
  7298. #~ msgid "Global"
  7299. #~ msgstr "Global"
  7300. #~ msgctxt "@label crash message"
  7301. #~ msgid ""
  7302. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7303. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7304. #~ " "
  7305. #~ msgstr ""
  7306. #~ "<p><b>Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema</p></b>\n"
  7307. #~ " <p>Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores</p>\n"
  7308. #~ " "
  7309. #~ msgctxt "@label Cura version"
  7310. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7311. #~ msgstr "<b>Versão do Cura:</b> {version}<br/>"
  7312. #~ msgctxt "@label Platform"
  7313. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7314. #~ msgstr "<b>Plataforma:</b> {platform}<br/>"
  7315. #~ msgctxt "@label Qt version"
  7316. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7317. #~ msgstr "<b>Versão da Qt:</b> {qt}<br/>"
  7318. #~ msgctxt "@label PyQt version"
  7319. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7320. #~ msgstr "<b>Versão da PyQt:</b> {pyqt}<br/>"
  7321. #~ msgctxt "@label OpenGL"
  7322. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7323. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7324. #~ msgctxt "@title:groupbox"
  7325. #~ msgid "Exception traceback"
  7326. #~ msgstr "Traceback de exceção"
  7327. #~ msgctxt "@label"
  7328. #~ msgid "Material diameter"
  7329. #~ msgstr "Diâmetro do material"
  7330. #~ msgctxt "@title:window"
  7331. #~ msgid "Cura SolidWorks Plugin Configuration"
  7332. #~ msgstr "Configuração do Complemento de Solidworks do Cura"
  7333. #~ msgctxt "@action:label"
  7334. #~ msgid "Default quality of the exported STL:"
  7335. #~ msgstr "Qualidade default do STL exportado:"
  7336. #~ msgctxt "@option:curaSolidworksStlQuality"
  7337. #~ msgid "Always ask"
  7338. #~ msgstr "Sempre perguntar"
  7339. #~ msgctxt "@option:curaSolidworksStlQuality"
  7340. #~ msgid "Always use Fine quality"
  7341. #~ msgstr "Sempre usar qualidade Alta"
  7342. #~ msgctxt "@option:curaSolidworksStlQuality"
  7343. #~ msgid "Always use Coarse quality"
  7344. #~ msgstr "Sempre usar qualidade Baixa"
  7345. #~ msgctxt "@title:window"
  7346. #~ msgid "Import SolidWorks File as STL..."
  7347. #~ msgstr "Importar Arquivo SolidWorks como STL..."
  7348. #~ msgctxt "@info:tooltip"
  7349. #~ msgid "Quality of the Exported STL"
  7350. #~ msgstr "Qualidade do STL Exportado"
  7351. #~ msgctxt "@action:label"
  7352. #~ msgid "Quality"
  7353. #~ msgstr "Qualidade"
  7354. #~ msgctxt "@option:curaSolidworksStlQuality"
  7355. #~ msgid "Coarse"
  7356. #~ msgstr "Baixa"
  7357. #~ msgctxt "@option:curaSolidworksStlQuality"
  7358. #~ msgid "Fine"
  7359. #~ msgstr "Alta"
  7360. #~ msgctxt "@"
  7361. #~ msgid "No Profile Available"
  7362. #~ msgstr "Nenhum Perfil Disponível"
  7363. #~ msgctxt "@label"
  7364. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7365. #~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores"
  7366. #~ msgctxt "@tooltip"
  7367. #~ msgid "<b>Time specification</b><br/><table>"
  7368. #~ msgstr "<b>Especificação de tempo</b><br/><table>"
  7369. #~ msgctxt "@action:inmenu menubar:view"
  7370. #~ msgid "&Reset camera position"
  7371. #~ msgstr "&Recompor posições de câmera"
  7372. #~ msgctxt "@title:menu menubar:file"
  7373. #~ msgid "Save project"
  7374. #~ msgstr "Salvar projeto"
  7375. #~ msgctxt "@title:tab"
  7376. #~ msgid "Prepare"
  7377. #~ msgstr "Preparar"
  7378. #~ msgctxt "@title:tab"
  7379. #~ msgid "Monitor"
  7380. #~ msgstr "Monitorar"
  7381. #~ msgctxt "@label"
  7382. #~ msgid "<a href='%1'>Check compatibility</a>"
  7383. #~ msgstr "<a href='%1'>Verificar compatibilidade</a>"
  7384. #~ msgctxt "description"
  7385. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7386. #~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura"
  7387. #~ msgctxt "@label:status"
  7388. #~ msgid "Blocked"
  7389. #~ msgstr "Bloqueado"
  7390. #~ msgctxt "@label:status"
  7391. #~ msgid "Can't start print"
  7392. #~ msgstr "Não consigo começar a imprimir"
  7393. #~ msgctxt "@action:button"
  7394. #~ msgid "Open Connect.."
  7395. #~ msgstr "Abrir Connect.."
  7396. #~ msgctxt "@info:title"
  7397. #~ msgid "Print Details"
  7398. #~ msgstr "Detalhes de Impressão"
  7399. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7400. #~ 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."
  7401. #~ 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."
  7402. #~ msgctxt "@info:title"
  7403. #~ msgid "Layer View"
  7404. #~ msgstr "Visão de Camadas"
  7405. #~ msgctxt "@menuitem"
  7406. #~ msgid "Browse plugins"
  7407. #~ msgstr "Navegar complementos"
  7408. #~ msgctxt "@info:title"
  7409. #~ msgid "Export Details"
  7410. #~ msgstr "Detalhes da Exportação"
  7411. #~ msgctxt "@label"
  7412. #~ msgid ""
  7413. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7414. #~ " <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"
  7415. #~ " "
  7416. #~ msgstr ""
  7417. #~ "<p>Uma exceção fatal ocorreu e não foi possível haver recuperação!</p>\n"
  7418. #~ " <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"
  7419. #~ " "
  7420. #~ msgctxt "@action:button"
  7421. #~ msgid "Open Web Page"
  7422. #~ msgstr "Abrir Página Web"
  7423. #~ msgctxt "@action:button"
  7424. #~ msgid "Ok"
  7425. #~ msgstr "Ok"
  7426. #~ msgctxt "@label"
  7427. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7428. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  7429. #~ msgctxt "@label"
  7430. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7431. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas"
  7432. #~ msgctxt "@label"
  7433. #~ msgid "Completed on: "
  7434. #~ msgstr "Completado em: "
  7435. #~ msgctxt "@info:tooltip"
  7436. #~ msgid "Opens the print jobs page with your default web browser."
  7437. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default."
  7438. #~ msgctxt "@label"
  7439. #~ msgid "PRINTER GROUP"
  7440. #~ msgstr "GRUPO DE IMPRESSORAS"
  7441. #~ msgctxt "@action:warning"
  7442. #~ msgid "Loading a project will clear all models on the buildplate"
  7443. #~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão"
  7444. #~ msgctxt "@label"
  7445. #~ msgid ""
  7446. #~ " plugin contains a license.\n"
  7447. #~ "You need to accept this license to install this plugin.\n"
  7448. #~ "Do you agree with the terms below?"
  7449. #~ msgstr ""
  7450. #~ " complemento tem uma licença.\n"
  7451. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  7452. #~ "Você está de acordo com os termos abaixo?"
  7453. #~ msgctxt "@label"
  7454. #~ msgid "00h 00min"
  7455. #~ msgstr "00h 00min"
  7456. #~ msgctxt "@tooltip"
  7457. #~ msgid "<b>Time information</b>"
  7458. #~ msgstr "<b>Informação de tempo</b>"
  7459. #~ msgctxt "@description"
  7460. #~ msgid "Print time"
  7461. #~ msgstr "Tempo de impressão"
  7462. #~ msgctxt "@label"
  7463. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7464. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  7465. #~ msgctxt "@label"
  7466. #~ msgid "%1m / ~ %2g"
  7467. #~ msgstr "%1m / ~ %2g"
  7468. #~ msgctxt "@title:window"
  7469. #~ msgid "Cura"
  7470. #~ msgstr "Cura"
  7471. #~ msgctxt "@label"
  7472. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7473. #~ msgstr "<a href='%1'>Verificar compatibilidade de material</a>"
  7474. #~ msgctxt "name"
  7475. #~ msgid "UM3 Network Connection (Cluster)"
  7476. #~ msgstr "Conexão de Rede UM3 (Cluster)"
  7477. #~ msgctxt "description"
  7478. #~ msgid "Provides the Layer view."
  7479. #~ msgstr "Provê a visão de Camadas."
  7480. #~ msgctxt "name"
  7481. #~ msgid "Layer View"
  7482. #~ msgstr "Visão de Camadas"
  7483. #~ msgctxt "@item:inlistbox"
  7484. #~ msgid "X-Ray"
  7485. #~ msgstr "Raios X"
  7486. #~ msgctxt "@label"
  7487. #~ msgid "Doodle3D"
  7488. #~ msgstr "Doodle3D"
  7489. #~ msgctxt "@info:whatsthis"
  7490. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7491. #~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D."
  7492. #~ msgctxt "@item:inmenu"
  7493. #~ msgid "Doodle3D printing"
  7494. #~ msgstr "Impressão Doodle3D"
  7495. #~ msgctxt "@action:button"
  7496. #~ msgid "Print with Doodle3D"
  7497. #~ msgstr "Imprimir com Doodle3D"
  7498. #~ msgctxt "@info:tooltip"
  7499. #~ msgid "Print with "
  7500. #~ msgstr "Imprimir com "
  7501. #~ msgctxt "@title:menu"
  7502. #~ msgid "Doodle3D"
  7503. #~ msgstr "Doodle3D"
  7504. #~ msgctxt "@item:inlistbox"
  7505. #~ msgid "Enable Scan devices..."
  7506. #~ msgstr "Habilitar dispositivos de escaneamento..."
  7507. #~ msgctxt "@info:progress"
  7508. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7509. #~ msgstr "Salvando em Unidade Removível <filename>{0}</filename>"
  7510. #~ msgctxt "@info:status"
  7511. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7512. #~ msgstr "Incapaz de salvar para <filename>{0}</filename>: <message>{1}</message>"
  7513. #~ msgctxt "@info:status"
  7514. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7515. #~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!"
  7516. #~ msgctxt "@item:inlistbox"
  7517. #~ msgid "Layers"
  7518. #~ msgstr "Camadas"
  7519. #~ msgid "Browse plugins"
  7520. #~ msgstr "Navegar por complementos"
  7521. #~ msgctxt "@item:inmenu"
  7522. #~ msgid "Solid"
  7523. #~ msgstr "Sólido"
  7524. #~ msgctxt "@label"
  7525. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7526. #~ msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  7527. #~ msgctxt "@info:status"
  7528. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7529. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: <message>{1}</message>"
  7530. #~ msgctxt "@info:status"
  7531. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7532. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: Complemento de gravação acusou falha."
  7533. #~ msgctxt "@info:status"
  7534. #~ msgid "Exported profile to <filename>{0}</filename>"
  7535. #~ msgstr "Perfil exportado para <filename>{0}</filename>"
  7536. #~ msgctxt "@info:status"
  7537. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7538. #~ msgstr "Falha na importação de perfil de <filename>{0}</filename>: <message>{1}</message>"
  7539. #~ msgctxt "@title:window"
  7540. #~ msgid "Doodle3D Settings"
  7541. #~ msgstr "Ajustes de Doodle3D"
  7542. #~ msgctxt "@title:window"
  7543. #~ msgid "Print to: %1"
  7544. #~ msgstr "Imprimir em: %1"
  7545. #~ msgctxt "@label"
  7546. #~ msgid "Extruder Temperature: %1/%2°C"
  7547. #~ msgstr "Temperatura do Extrusor: %1/%2°C"
  7548. #~ msgctxt "@label"
  7549. #~ msgid "Bed Temperature: %1/%2°C"
  7550. #~ msgstr "Temperatura da Mesa: %1/%2°C"
  7551. #~ msgctxt "@label"
  7552. #~ msgid "%1"
  7553. #~ msgstr "%1"
  7554. #~ msgctxt "@label"
  7555. #~ msgid "View Mode: Layers"
  7556. #~ msgstr "Modo de Visão: Camadas"
  7557. #~ msgctxt "@info:status"
  7558. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7559. #~ msgstr "Não foi possível importar material<filename>%1</filename>: <message>%2</message>"
  7560. #~ msgctxt "@info:status"
  7561. #~ msgid "Successfully imported material <filename>%1</filename>"
  7562. #~ msgstr "Material <filename>%1</filename> importado com sucesso"
  7563. #~ msgctxt "@info:status"
  7564. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7565. #~ msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  7566. #~ msgctxt "@info:status"
  7567. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7568. #~ msgstr "Material <filename>%1</filename> exportado com sucesso"
  7569. #~ msgctxt "@label"
  7570. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7571. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7572. #~ msgctxt "@label"
  7573. #~ msgid "%1 m / ~ %2 g"
  7574. #~ msgstr "%1 m / ~ %2 g"
  7575. #~ msgctxt "@label"
  7576. #~ msgid "Hotend"
  7577. #~ msgstr "Hotend"
  7578. #~ msgctxt "@action:button"
  7579. #~ msgid "View Mode"
  7580. #~ msgstr "Modo de Visualização"
  7581. #~ msgctxt "@title:tab"
  7582. #~ msgid "Print"
  7583. #~ msgstr "Imprimir"
  7584. #~ msgctxt "@label"
  7585. #~ msgid "0%"
  7586. #~ msgstr "0%"
  7587. #~ msgctxt "@label"
  7588. #~ msgid "Empty infill will leave your model hollow with low strength."
  7589. #~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência."
  7590. #~ msgctxt "@label"
  7591. #~ msgid "20%"
  7592. #~ msgstr "20%"
  7593. #~ msgctxt "@label"
  7594. #~ msgid "Light (20%) infill will give your model an average strength."
  7595. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média."
  7596. #~ msgctxt "@label"
  7597. #~ msgid "50%"
  7598. #~ msgstr "50%"
  7599. #~ msgctxt "@label"
  7600. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7601. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média."
  7602. #~ msgctxt "@label"
  7603. #~ msgid "100%"
  7604. #~ msgstr "100%"
  7605. #~ msgctxt "@label"
  7606. #~ msgid "Solid (100%) infill will make your model completely solid."
  7607. #~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido."
  7608. #~ msgctxt "@label"
  7609. #~ msgid "Gradual"
  7610. #~ msgstr "Gradual"
  7611. #~ msgctxt "description"
  7612. #~ msgid "Provides support for writing X3G files"
  7613. #~ msgstr "Provê suporte à escrita de arquivos X3G"
  7614. #~ msgctxt "name"
  7615. #~ msgid "X3G Writer"
  7616. #~ msgstr "Gerador de X3G"
  7617. #~ msgctxt "@label"
  7618. #~ msgid "Machine Settings action"
  7619. #~ msgstr "Ação de ajustes da máquina"
  7620. #~ msgctxt "@info:whatsthis"
  7621. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7622. #~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)"
  7623. #~ msgctxt "@label"
  7624. #~ msgid "X-Ray View"
  7625. #~ msgstr "Visão de Raios X"
  7626. #~ msgctxt "@info:whatsthis"
  7627. #~ msgid "Provides the X-Ray view."
  7628. #~ msgstr "Provê a visão de Raios X."
  7629. #~ msgctxt "@label"
  7630. #~ msgid "X3D Reader"
  7631. #~ msgstr "Leitor de X3D"
  7632. #~ msgctxt "@info:whatsthis"
  7633. #~ msgid "Provides support for reading X3D files."
  7634. #~ msgstr "Provê suporte para ler arquivos X3D."
  7635. #~ msgctxt "@label"
  7636. #~ msgid "GCode Writer"
  7637. #~ msgstr "Gerador de G-Code"
  7638. #~ msgctxt "@info:whatsthis"
  7639. #~ msgid "Writes GCode to a file."
  7640. #~ msgstr "Salva o G-Code em um arquivo."
  7641. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7642. #~ msgid "Print with Doodle3D"
  7643. #~ msgstr "Imprimir com Doodle3D"
  7644. #~ msgctxt "@info:whatsthis"
  7645. #~ msgid "Shows changes since latest checked version."
  7646. #~ msgstr "Mostra as alterações desde a última versão verificada."
  7647. #~ msgctxt "@label"
  7648. #~ msgid "Profile flatener"
  7649. #~ msgstr "Achatador de Perfil"
  7650. #~ msgctxt "@info:whatsthis"
  7651. #~ msgid "Create a flattend quality changes profile."
  7652. #~ msgstr "Faz um perfil plano com as mudanças de qualidade."
  7653. #~ msgctxt "@label"
  7654. #~ msgid "USB printing"
  7655. #~ msgstr "Impressão USB"
  7656. #~ msgctxt "@info:whatsthis"
  7657. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7658. #~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  7659. #~ msgctxt "X3G Writer Plugin Description"
  7660. #~ msgid "Writes X3G to a file"
  7661. #~ msgstr "Salva em arquivo X3G."
  7662. #~ msgctxt "@label"
  7663. #~ msgid "Removable Drive Output Device Plugin"
  7664. #~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível"
  7665. #~ msgctxt "@info:whatsthis"
  7666. #~ msgid "Provides removable drive hotplugging and writing support."
  7667. #~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível."
  7668. #~ msgctxt "@info:whatsthis"
  7669. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7670. #~ msgstr "Gerencia as conexões de rede em impressoras Ultimaker 3"
  7671. #~ msgctxt "@label"
  7672. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7673. #~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  7674. #~ msgctxt "@label"
  7675. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7676. #~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora."
  7677. #~ msgctxt "@label"
  7678. #~ 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."
  7679. #~ 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."
  7680. #~ msgctxt "@label"
  7681. #~ msgid "Post Processing"
  7682. #~ msgstr "Pós-processamento"
  7683. #~ msgctxt "Description of plugin"
  7684. #~ msgid "Extension that allows for user created scripts for post processing"
  7685. #~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento"
  7686. #~ msgctxt "@label"
  7687. #~ msgid "Auto Save"
  7688. #~ msgstr "Salvar automaticamente"
  7689. #~ msgctxt "@info:whatsthis"
  7690. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7691. #~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações."
  7692. #~ msgctxt "@label"
  7693. #~ msgid "Slice info"
  7694. #~ msgstr "Informações de fatiamento"
  7695. #~ msgctxt "@info:whatsthis"
  7696. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7697. #~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  7698. #~ msgctxt "@info"
  7699. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7700. #~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências."
  7701. #~ msgctxt "@label"
  7702. #~ msgid "Material Profiles"
  7703. #~ msgstr "Perfis de Material"
  7704. #~ msgctxt "@info:whatsthis"
  7705. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7706. #~ msgstr "Permite ler e escrever perfis de material baseado em XML."
  7707. #~ msgctxt "@label"
  7708. #~ msgid "Legacy Cura Profile Reader"
  7709. #~ msgstr "Leitor de perfis legados do Cura"
  7710. #~ msgctxt "@info:whatsthis"
  7711. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7712. #~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura."
  7713. #~ msgctxt "@label"
  7714. #~ msgid "GCode Profile Reader"
  7715. #~ msgstr "Leitor de perfis de G-Code"
  7716. #~ msgctxt "@info:whatsthis"
  7717. #~ msgid "Provides support for importing profiles from g-code files."
  7718. #~ msgstr "Provê suporte para importar perfis de arquivos G-Code."
  7719. #~ msgctxt "@label"
  7720. #~ msgid "Layer View"
  7721. #~ msgstr "Visão de Camadas"
  7722. #~ msgctxt "@info:whatsthis"
  7723. #~ msgid "Provides the Layer view."
  7724. #~ msgstr "Provê a Visão de Camadas"
  7725. #~ msgctxt "@label"
  7726. #~ msgid "Version Upgrade 2.5 to 2.6"
  7727. #~ msgstr "Atualização de Versão de 2.5 para 2.6"
  7728. #~ msgctxt "@info:whatsthis"
  7729. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7730. #~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6."
  7731. #~ msgctxt "@label"
  7732. #~ msgid "Version Upgrade 2.1 to 2.2"
  7733. #~ msgstr "Atualização de Versão de 2.1 para 2.2"
  7734. #~ msgctxt "@info:whatsthis"
  7735. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7736. #~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  7737. #~ msgctxt "@label"
  7738. #~ msgid "Version Upgrade 2.2 to 2.4"
  7739. #~ msgstr "Atualização de versão de 2.2 para 2.4"
  7740. #~ msgctxt "@info:whatsthis"
  7741. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7742. #~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  7743. #~ msgctxt "@label"
  7744. #~ msgid "Image Reader"
  7745. #~ msgstr "Leitor de Imagens"
  7746. #~ msgctxt "@info:whatsthis"
  7747. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7748. #~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D."
  7749. #~ msgctxt "@label"
  7750. #~ msgid "CuraEngine Backend"
  7751. #~ msgstr "Backend do CuraEngine"
  7752. #~ msgctxt "@info:whatsthis"
  7753. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7754. #~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine."
  7755. #~ msgctxt "@label"
  7756. #~ msgid "Per Model Settings Tool"
  7757. #~ msgstr "Ferramenta de Ajustes por Modelo"
  7758. #~ msgctxt "@info:whatsthis"
  7759. #~ msgid "Provides the Per Model Settings."
  7760. #~ msgstr "Provê ajustes específicos por Modelo."
  7761. #~ msgctxt "@label"
  7762. #~ msgid "3MF Reader"
  7763. #~ msgstr "Leitor de 3MF"
  7764. #~ msgctxt "@info:whatsthis"
  7765. #~ msgid "Provides support for reading 3MF files."
  7766. #~ msgstr "Provê suporte à leitura de arquivos 3MF."
  7767. #~ msgctxt "@label"
  7768. #~ msgid "Solid View"
  7769. #~ msgstr "Visão Sólida"
  7770. #~ msgctxt "@info:whatsthis"
  7771. #~ msgid "Provides a normal solid mesh view."
  7772. #~ msgstr "Provê uma visão de malha sólida normal."
  7773. #~ msgctxt "@label"
  7774. #~ msgid "G-code Reader"
  7775. #~ msgstr "Leitor de G-Code"
  7776. #~ msgctxt "@info:whatsthis"
  7777. #~ msgid "Allows loading and displaying G-code files."
  7778. #~ msgstr "Permite carregar e mostrar arquivos G-Code."
  7779. #~ msgctxt "@label"
  7780. #~ msgid "Cura Profile Writer"
  7781. #~ msgstr "Gravador de Perfis do Cura"
  7782. #~ msgctxt "@info:whatsthis"
  7783. #~ msgid "Provides support for exporting Cura profiles."
  7784. #~ msgstr "Provê suporte para a exportação de perfis do Cura."
  7785. #~ msgctxt "@label"
  7786. #~ msgid "3MF Writer"
  7787. #~ msgstr "Gerador 3MF"
  7788. #~ msgctxt "@info:whatsthis"
  7789. #~ msgid "Provides support for writing 3MF files."
  7790. #~ msgstr "Provê suporte para escrever arquivos 3MF."
  7791. #~ msgctxt "@label"
  7792. #~ msgid "Ultimaker machine actions"
  7793. #~ msgstr "Ações de máquina Ultimaker"
  7794. #~ msgctxt "@info:whatsthis"
  7795. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7796. #~ msgstr "Provê ações de máquina para impressoras Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)"
  7797. #~ msgctxt "@label"
  7798. #~ msgid "Cura Profile Reader"
  7799. #~ msgstr "Leitor de Perfis do Cura"
  7800. #~ msgctxt "@info:whatsthis"
  7801. #~ msgid "Provides support for importing Cura profiles."
  7802. #~ msgstr "Provê suporte para importar perfis do Cura."
  7803. #~ msgctxt "@info"
  7804. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7805. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7806. #~ msgctxt "@label"
  7807. #~ msgid "Build Plate Shape"
  7808. #~ msgstr "Forma da Mesa"
  7809. #~ msgctxt "@option:check"
  7810. #~ msgid "Machine Center is Zero"
  7811. #~ msgstr "Centro da Mesa é Zero"
  7812. #~ msgctxt "@option:check"
  7813. #~ msgid "Heated Bed"
  7814. #~ msgstr "Mesa Aquecida"
  7815. #~ msgctxt "@label"
  7816. #~ msgid "GCode Flavor"
  7817. #~ msgstr "Tipo de G-Code"
  7818. #~ msgctxt "@label"
  7819. #~ msgid "Material Diameter"
  7820. #~ msgstr "Diâmetro do Material"
  7821. #~ msgctxt "@label"
  7822. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7823. #~ 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>"
  7824. #~ msgctxt "@item:inlistbox"
  7825. #~ msgid "Ultimaker"
  7826. #~ msgstr "Ultimaker"
  7827. #~ msgctxt "@label"
  7828. #~ msgid "Support library for scientific computing "
  7829. #~ msgstr "Biblioteca de suporte para computação científica"
  7830. #~ msgctxt "@tooltip"
  7831. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7832. #~ msgstr "<b>Configuração de Impressão</b><br/></br/>Editar ou revisar os ajustes para o trabalho de impressão ativo."
  7833. #~ msgctxt "@tooltip"
  7834. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7835. #~ msgstr "<b>Monitor de Impressão</b><br/><br/>Monitorar o estado da impressora conectada e o trabalho de impressão em progresso."
  7836. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7837. #~ msgid "Automatic: %1"
  7838. #~ msgstr "Automático: %1"
  7839. #~ msgctxt "@label:PrintjobStatus"
  7840. #~ msgid "Please load a 3d model"
  7841. #~ msgstr "Por favor carregue um modelo 3D"
  7842. #~ msgctxt "@label"
  7843. #~ msgid "Print Selected Model with %1"
  7844. #~ msgid_plural "Print Selected Models With %1"
  7845. #~ msgstr[0] "Imprimir Modelo Selecionado com %1"
  7846. #~ msgstr[1] "Imprimir Modelos Selecionados Com %1"
  7847. #~ msgctxt "@info:status"
  7848. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7849. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}"
  7850. #~ msgctxt "@label"
  7851. #~ msgid "Version Upgrade 2.4 to 2.5"
  7852. #~ msgstr "Atualizar versão 2.4 para 2.5"
  7853. #~ msgctxt "@info:whatsthis"
  7854. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7855. #~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5"
  7856. #~ msgctxt "@info:status"
  7857. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7858. #~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar."
  7859. #~ msgctxt "@title:window"
  7860. #~ msgid "Oops!"
  7861. #~ msgstr "Oops!"
  7862. #~ msgctxt "@label"
  7863. #~ msgid ""
  7864. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7865. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7866. #~ " <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"
  7867. #~ " "
  7868. #~ msgstr ""
  7869. #~ "<p>Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!</p>\n"
  7870. #~ " <p>Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.</p>\n"
  7871. #~ " <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"
  7872. #~ " "
  7873. #~ msgctxt "@label"
  7874. #~ msgid "Please enter the correct settings for your printer below:"
  7875. #~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:"
  7876. #~ msgctxt "@label"
  7877. #~ msgid "Extruder %1"
  7878. #~ msgstr "Extrusor %1"
  7879. #~ msgctxt "@label Followed by extruder selection drop-down."
  7880. #~ msgid "Print model with"
  7881. #~ msgstr "Imprimir modelo com"
  7882. #~ msgctxt "@label"
  7883. #~ msgid "You will need to restart the application for language changes to have effect."
  7884. #~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito."
  7885. #~ msgctxt "@info:tooltip"
  7886. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7887. #~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado"
  7888. #~ msgctxt "@action:inmenu menubar:edit"
  7889. #~ msgid "Delete &Selection"
  7890. #~ msgstr "Eliminar &Seleção"
  7891. #~ msgctxt "@action:inmenu menubar:file"
  7892. #~ msgid "&Open File..."
  7893. #~ msgstr "&Abrir Arquivo..."
  7894. #~ msgctxt "@action:inmenu menubar:file"
  7895. #~ msgid "&Open Project..."
  7896. #~ msgstr "&Abrir Projeto..."
  7897. #~ msgctxt "@title:window"
  7898. #~ msgid "Multiply Model"
  7899. #~ msgstr "Multiplicar Modelo"
  7900. #~ msgctxt "@title:menu menubar:file"
  7901. #~ msgid "Save &All"
  7902. #~ msgstr "Salvar &Tudo"
  7903. #~ msgctxt "@title:window"
  7904. #~ msgid "Open file"
  7905. #~ msgstr "Abrir arquivo"
  7906. #~ msgctxt "@title:window"
  7907. #~ msgid "Open workspace"
  7908. #~ msgstr "Abrir espaço de trabalho"
  7909. #~ msgctxt "@label"
  7910. #~ msgid "Hollow"
  7911. #~ msgstr "Oco"
  7912. #~ msgctxt "@label"
  7913. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7914. #~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência"
  7915. #~ msgctxt "@label"
  7916. #~ msgid "Light"
  7917. #~ msgstr "Leve"
  7918. #~ msgctxt "@label"
  7919. #~ msgid "Light (20%) infill will give your model an average strength"
  7920. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média"
  7921. #~ msgctxt "@label"
  7922. #~ msgid "Dense"
  7923. #~ msgstr "Denso"
  7924. #~ msgctxt "@label"
  7925. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7926. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média"
  7927. #~ msgctxt "@label"
  7928. #~ msgid "Solid"
  7929. #~ msgstr "Sólido"
  7930. #~ msgctxt "@label"
  7931. #~ msgid "Solid (100%) infill will make your model completely solid"
  7932. #~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço."
  7933. #~ msgctxt "@label"
  7934. #~ msgid "Enable Support"
  7935. #~ msgstr "Habilitar Suporte"
  7936. #~ msgctxt "@label"
  7937. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7938. #~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes."
  7939. #~ msgctxt "@label"
  7940. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7941. #~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o <a href='%1'>Guia de Solução de Problemas da Ultimaker</a>."
  7942. #~ msgctxt "@info:status"
  7943. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7944. #~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora."
  7945. #~ msgctxt "@info:status"
  7946. #~ msgid "Connected over the network to {0}."
  7947. #~ msgstr "Conectado pela rede a {0}."
  7948. #~ msgctxt "@info:status"
  7949. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7950. #~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora."
  7951. #~ msgctxt "@info:status"
  7952. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7953. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora."
  7954. #~ msgctxt "@label"
  7955. #~ msgid "You made changes to the following setting(s)/override(s):"
  7956. #~ msgstr "Foram feitas alterações nos seguintes ajustes:"
  7957. #~ msgctxt "@window:title"
  7958. #~ msgid "Switched profiles"
  7959. #~ msgstr "Perfis trocados"
  7960. #~ msgctxt "@label"
  7961. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7962. #~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?"
  7963. #~ msgctxt "@label"
  7964. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7965. #~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão."
  7966. #~ msgctxt "@label"
  7967. #~ msgid "Cost per Meter (Approx.)"
  7968. #~ msgstr "Custo por Metro (Aprox.)"
  7969. #~ msgctxt "@label"
  7970. #~ msgid "%1/m"
  7971. #~ msgstr "%1/m"
  7972. #~ msgctxt "@info:tooltip"
  7973. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7974. #~ 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."
  7975. #~ msgctxt "@action:button"
  7976. #~ msgid "Display five top layers in layer view"
  7977. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas"
  7978. #~ msgctxt "@info:tooltip"
  7979. #~ msgid "Should only the top layers be displayed in layerview?"
  7980. #~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?"
  7981. #~ msgctxt "@option:check"
  7982. #~ msgid "Only display top layer(s) in layer view"
  7983. #~ msgstr "Somente exibir as camadas superiores na visão de camadas"
  7984. #~ msgctxt "@label"
  7985. #~ msgid "Opening files"
  7986. #~ msgstr "Abrindo arquivos..."
  7987. #~ msgctxt "@label"
  7988. #~ msgid "Printer Monitor"
  7989. #~ msgstr "Monitor da Impressora"
  7990. #~ msgctxt "@label"
  7991. #~ msgid "Temperatures"
  7992. #~ msgstr "Temperaturas"
  7993. #~ msgctxt "@label:PrintjobStatus"
  7994. #~ msgid "Preparing to slice..."
  7995. #~ msgstr "Preparando para fatiar..."
  7996. #~ msgctxt "@window:title"
  7997. #~ msgid "Changes on the Printer"
  7998. #~ msgstr "Alterações na Impressora"
  7999. #~ msgctxt "@action:inmenu"
  8000. #~ msgid "&Duplicate Model"
  8001. #~ msgstr "&Duplicar Modelo"
  8002. #~ msgctxt "@label"
  8003. #~ msgid "Helper Parts:"
  8004. #~ msgstr "Partes dos Assistentes:"
  8005. #~ msgctxt "@label"
  8006. #~ 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."
  8007. #~ 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."
  8008. #~ msgctxt "@label"
  8009. #~ msgid "Don't print support"
  8010. #~ msgstr "Não imprimir suporte"
  8011. #~ msgctxt "@label"
  8012. #~ msgid "Print support using %1"
  8013. #~ msgstr "Imprimir suporte usando %1"
  8014. #~ msgctxt "@label:listbox"
  8015. #~ msgid "Printer:"
  8016. #~ msgstr "Impressora:"
  8017. #~ msgctxt "@info:status"
  8018. #~ msgid "Successfully imported profiles {0}"
  8019. #~ msgstr "Perfis {0} importados com sucesso"
  8020. #~ msgctxt "@label"
  8021. #~ msgid "Scripts"
  8022. #~ msgstr "Scripts"
  8023. #~ msgctxt "@label"
  8024. #~ msgid "Active Scripts"
  8025. #~ msgstr "Scripts Ativos"
  8026. #~ msgctxt "@label"
  8027. #~ msgid "Done"
  8028. #~ msgstr "Feito"
  8029. #~ msgctxt "@item:inlistbox"
  8030. #~ msgid "English"
  8031. #~ msgstr "Inglês"
  8032. #~ msgctxt "@item:inlistbox"
  8033. #~ msgid "Finnish"
  8034. #~ msgstr "Finlandês"
  8035. #~ msgctxt "@item:inlistbox"
  8036. #~ msgid "French"
  8037. #~ msgstr "Francês"
  8038. #~ msgctxt "@item:inlistbox"
  8039. #~ msgid "German"
  8040. #~ msgstr "Alemão"
  8041. #~ msgctxt "@item:inlistbox"
  8042. #~ msgid "Italian"
  8043. #~ msgstr "Italiano"
  8044. #~ msgctxt "@item:inlistbox"
  8045. #~ msgid "Dutch"
  8046. #~ msgstr "Holandês"
  8047. #~ msgctxt "@item:inlistbox"
  8048. #~ msgid "Spanish"
  8049. #~ msgstr "Espanhol"
  8050. #~ msgctxt "@label"
  8051. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  8052. #~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?"
  8053. #~ msgctxt "@label:"
  8054. #~ msgid "Print Again"
  8055. #~ msgstr "Imprimir Novamente"