cura.po 246 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.5\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-09-19 17:07+0200\n"
  11. "PO-Revision-Date: 2018-10-01 03:20-0300\n"
  12. "Last-Translator: Cláudio Sampaio <patola@makerlinux.com.br>\n"
  13. "Language-Team: Cláudio Sampaio <patola@makerlinux.com.br>\n"
  14. "Language: pt_BR\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  19. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:22
  20. msgctxt "@action"
  21. msgid "Machine Settings"
  22. msgstr "Ajustes da Máquina"
  23. #: /home/ruben/Projects/Cura/plugins/XRayView/__init__.py:12
  24. msgctxt "@item:inlistbox"
  25. msgid "X-Ray view"
  26. msgstr "Visão de Raios-X"
  27. #: /home/ruben/Projects/Cura/plugins/X3DReader/__init__.py:13
  28. msgctxt "@item:inlistbox"
  29. msgid "X3D File"
  30. msgstr "Arquivo X3D"
  31. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  32. #: /home/ruben/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  33. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:14
  34. msgctxt "@item:inlistbox"
  35. msgid "G-code File"
  36. msgstr "Arquivo G-Code"
  37. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:67
  38. msgctxt "@error:not supported"
  39. msgid "GCodeWriter does not support non-text mode."
  40. msgstr "O GCodeWriter não suporta modo binário."
  41. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:73
  42. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:89
  43. msgctxt "@warning:status"
  44. msgid "Please generate G-code before saving."
  45. msgstr "Por favor gere o G-Code antes de salvar."
  46. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30
  47. msgctxt "@info:title"
  48. msgid "3D Model Assistant"
  49. msgstr "Assistente de Modelo 3D"
  50. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:80
  51. #, python-brace-format
  52. msgctxt "@info:status"
  53. msgid ""
  54. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  55. "<p>{model_names}</p>\n"
  56. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  57. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  58. msgstr ""
  59. "<p>Um ou mais modelos 3D podem não ser impressos otimamente devido ao tamanho e configuração de material:</p>\n"
  60. "<p>{model_names}</p>\n"
  61. "<p>Descubra como assegurar a melhor qualidade de impressão e confiabilidade possível.</p>\n"
  62. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guia de qualidade de impressão</a></p>"
  63. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:32
  64. msgctxt "@item:inmenu"
  65. msgid "Show Changelog"
  66. msgstr "Exibir registro de alterações"
  67. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:23
  68. msgctxt "@item:inmenu"
  69. msgid "Flatten active settings"
  70. msgstr "Achatar os ajustes ativos"
  71. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:35
  72. msgctxt "@info:status"
  73. msgid "Profile has been flattened & activated."
  74. msgstr "O perfil foi achatado & ativado."
  75. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:40
  76. msgctxt "@item:inmenu"
  77. msgid "USB printing"
  78. msgstr "Impressão USB"
  79. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:41
  80. msgctxt "@action:button Preceded by 'Ready to'."
  81. msgid "Print via USB"
  82. msgstr "Imprimir pela USB"
  83. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  84. msgctxt "@info:tooltip"
  85. msgid "Print via USB"
  86. msgstr "Imprimir pela USB"
  87. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:83
  88. msgctxt "@info:status"
  89. msgid "Connected via USB"
  90. msgstr "Conectado via USB"
  91. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:103
  92. msgctxt "@label"
  93. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  94. msgstr "Uma impressão USB está em progresso, fechar o Cura interromperá esta impressão. Tem certeza?"
  95. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15
  96. #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15
  97. msgctxt "X3G Writer File Description"
  98. msgid "X3G File"
  99. msgstr "Arquivo X3G"
  100. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:16
  101. msgctxt "X3g Writer Plugin Description"
  102. msgid "Writes X3g to files"
  103. msgstr "Grava em formato X3g"
  104. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:21
  105. msgctxt "X3g Writer File Description"
  106. msgid "X3g File"
  107. msgstr "Arquivo X3g"
  108. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  109. #: /home/ruben/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  110. msgctxt "@item:inlistbox"
  111. msgid "Compressed G-code File"
  112. msgstr "Arquivo de G-Code Comprimido"
  113. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38
  114. msgctxt "@error:not supported"
  115. msgid "GCodeGzWriter does not support text mode."
  116. msgstr "O GCodeGzWriter não suporta modo binário."
  117. #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38
  118. msgctxt "@item:inlistbox"
  119. msgid "Ultimaker Format Package"
  120. msgstr "Pacote de Formato da Ultimaker"
  121. #: /home/ruben/Projects/Cura/plugins/PrepareStage/__init__.py:12
  122. msgctxt "@item:inmenu"
  123. msgid "Prepare"
  124. msgstr "Preparar"
  125. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  126. msgctxt "@action:button Preceded by 'Ready to'."
  127. msgid "Save to Removable Drive"
  128. msgstr "Salvar em Unidade Removível"
  129. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  130. #, python-brace-format
  131. msgctxt "@item:inlistbox"
  132. msgid "Save to Removable Drive {0}"
  133. msgstr "Salvar em Unidade Removível {0}"
  134. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  135. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:131
  136. msgctxt "@info:status"
  137. msgid "There are no file formats available to write with!"
  138. msgstr "Não há formatos de arquivo disponíveis com os quais escrever!"
  139. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  140. #, python-brace-format
  141. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  142. msgid "Saving to Removable Drive <filename>{0}</filename>"
  143. msgstr "Salvando na Unidade Removível <filename>{0}</filename>"
  144. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  145. msgctxt "@info:title"
  146. msgid "Saving"
  147. msgstr "Salvando"
  148. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  149. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  150. #, python-brace-format
  151. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  152. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  153. msgstr "Não foi possível salvar em <filename>{0}</filename>: <message>{1}</message>"
  154. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  155. #, python-brace-format
  156. msgctxt "@info:status Don't translate the tag {device}!"
  157. msgid "Could not find a file name when trying to write to {device}."
  158. msgstr "Não foi possível encontrar nome de arquivo ao tentar escrever em {device}."
  159. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  160. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  161. #, python-brace-format
  162. msgctxt "@info:status"
  163. msgid "Could not save to removable drive {0}: {1}"
  164. msgstr "Não foi possível salvar em unidade removível {0}: {1}"
  165. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  166. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  167. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140
  168. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1567
  169. msgctxt "@info:title"
  170. msgid "Error"
  171. msgstr "Erro"
  172. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  173. #, python-brace-format
  174. msgctxt "@info:status"
  175. msgid "Saved to Removable Drive {0} as {1}"
  176. msgstr "Salvo em Unidade Removível {0} como {1}"
  177. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  178. msgctxt "@info:title"
  179. msgid "File Saved"
  180. msgstr "Arquivo Salvo"
  181. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  182. msgctxt "@action:button"
  183. msgid "Eject"
  184. msgstr "Ejetar"
  185. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  186. #, python-brace-format
  187. msgctxt "@action"
  188. msgid "Eject removable device {0}"
  189. msgstr "Ejetar dispositivo removível {0}"
  190. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  191. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  192. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1557
  193. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1651
  194. msgctxt "@info:title"
  195. msgid "Warning"
  196. msgstr "Aviso"
  197. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  198. #, python-brace-format
  199. msgctxt "@info:status"
  200. msgid "Ejected {0}. You can now safely remove the drive."
  201. msgstr "{0} ejetado. A unidade agora pode ser removida de forma segura."
  202. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  203. msgctxt "@info:title"
  204. msgid "Safely Remove Hardware"
  205. msgstr "Remover Hardware com Segurança"
  206. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  207. #, python-brace-format
  208. msgctxt "@info:status"
  209. msgid "Failed to eject {0}. Another program may be using the drive."
  210. msgstr "Erro ao ejetar {0}. Outro programa pode estar usando a unidade."
  211. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:68
  212. msgctxt "@item:intext"
  213. msgid "Removable Drive"
  214. msgstr "Unidade Removível"
  215. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:74
  216. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:86
  217. msgctxt "@action:button Preceded by 'Ready to'."
  218. msgid "Print over network"
  219. msgstr "Imprimir pela rede"
  220. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:75
  221. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:87
  222. msgctxt "@properties:tooltip"
  223. msgid "Print over network"
  224. msgstr "Imprime pela rede"
  225. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:88
  226. msgctxt "@info:status"
  227. msgid "Connected over the network."
  228. msgstr "Conectado pela rede."
  229. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:91
  230. msgctxt "@info:status"
  231. msgid "Connected over the network. Please approve the access request on the printer."
  232. msgstr "Conectado pela rede. Por favor aprove a requisição de acesso na impressora."
  233. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:93
  234. msgctxt "@info:status"
  235. msgid "Connected over the network. No access to control the printer."
  236. msgstr "Conectado pela rede. Sem acesso para controlar a impressora."
  237. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:98
  238. msgctxt "@info:status"
  239. msgid "Access to the printer requested. Please approve the request on the printer"
  240. msgstr "Acesso à impressora solicitado. Por favor aprove a requisição na impressora"
  241. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:101
  242. msgctxt "@info:title"
  243. msgid "Authentication status"
  244. msgstr "Status da autenticação"
  245. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:103
  246. msgctxt "@info:status"
  247. msgid ""
  248. msgstr ""
  249. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:104
  250. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:110
  251. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:114
  252. msgctxt "@info:title"
  253. msgid "Authentication Status"
  254. msgstr "Status da Autenticação"
  255. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:105
  256. msgctxt "@action:button"
  257. msgid "Retry"
  258. msgstr "Tentar novamente"
  259. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:106
  260. msgctxt "@info:tooltip"
  261. msgid "Re-send the access request"
  262. msgstr "Reenvia o pedido de acesso"
  263. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:109
  264. msgctxt "@info:status"
  265. msgid "Access to the printer accepted"
  266. msgstr "Acesso à impressora confirmado"
  267. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:113
  268. msgctxt "@info:status"
  269. msgid "No access to print with this printer. Unable to send print job."
  270. msgstr "Sem acesso para imprimir por esta impressora. Incapaz de enviar o trabalho de impressão."
  271. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:115
  272. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:29
  273. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:73
  274. msgctxt "@action:button"
  275. msgid "Request Access"
  276. msgstr "Solicitar acesso"
  277. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:117
  278. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:28
  279. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:72
  280. msgctxt "@info:tooltip"
  281. msgid "Send access request to the printer"
  282. msgstr "Envia pedido de acesso à impressora"
  283. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:202
  284. msgctxt "@label"
  285. msgid "Unable to start a new print job."
  286. msgstr "Incapaz de iniciar novo trabalho de impressão."
  287. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:204
  288. msgctxt "@label"
  289. 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."
  290. 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."
  291. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:210
  292. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:232
  293. msgctxt "@window:title"
  294. msgid "Mismatched configuration"
  295. msgstr "Configuração conflitante"
  296. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:224
  297. msgctxt "@label"
  298. msgid "Are you sure you wish to print with the selected configuration?"
  299. msgstr "Tem certeza que quer imprimir com a configuração selecionada?"
  300. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:226
  301. msgctxt "@label"
  302. 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."
  303. 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."
  304. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:253
  305. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:197
  306. msgctxt "@info:status"
  307. msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  308. msgstr "Envio de novos trabalhos (temporariamente) bloqueado, ainda enviando o trabalho de impressão anterior."
  309. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:260
  310. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:216
  311. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:232
  312. msgctxt "@info:status"
  313. msgid "Sending data to printer"
  314. msgstr "Enviando dados à impressora"
  315. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:261
  316. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:217
  317. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:233
  318. msgctxt "@info:title"
  319. msgid "Sending Data"
  320. msgstr "Enviando Dados"
  321. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:262
  322. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:234
  323. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18
  324. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:80
  325. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:378
  326. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:92
  327. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143
  328. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188
  329. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391
  330. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87
  331. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:279
  332. msgctxt "@action:button"
  333. msgid "Cancel"
  334. msgstr "Cancelar"
  335. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:325
  336. #, python-brace-format
  337. msgctxt "@info:status"
  338. msgid "No Printcore loaded in slot {slot_number}"
  339. msgstr "Printcore não carregado no slot {slot_number}"
  340. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:331
  341. #, python-brace-format
  342. msgctxt "@info:status"
  343. msgid "No material loaded in slot {slot_number}"
  344. msgstr "Nenhum material carregado no slot {slot_number}"
  345. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:354
  346. #, python-brace-format
  347. msgctxt "@label"
  348. msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  349. msgstr "PrintCore Diferente (Cura: {cure_printcore_name}, Impressora: {remote_printcore_name}) selecionado para o extrusor {extruder_id}"
  350. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:363
  351. #, python-brace-format
  352. msgctxt "@label"
  353. msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  354. msgstr "Material diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  355. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:549
  356. msgctxt "@window:title"
  357. msgid "Sync with your printer"
  358. msgstr "Sincronizar com a impressora"
  359. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:551
  360. msgctxt "@label"
  361. msgid "Would you like to use your current printer configuration in Cura?"
  362. msgstr "Deseja usar a configuração atual de sua impressora no Cura?"
  363. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/LegacyUM3OutputDevice.py:553
  364. msgctxt "@label"
  365. 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."
  366. 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."
  367. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:89
  368. msgctxt "@info:status"
  369. msgid "Connected over the network"
  370. msgstr "Conectado pela rede"
  371. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:310
  372. msgctxt "@info:status"
  373. msgid "Print job was successfully sent to the printer."
  374. msgstr "Trabalho de impressão enviado à impressora com sucesso."
  375. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:312
  376. msgctxt "@info:title"
  377. msgid "Data Sent"
  378. msgstr "Dados Enviados"
  379. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:313
  380. msgctxt "@action:button"
  381. msgid "View in Monitor"
  382. msgstr "Ver no Monitor"
  383. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:420
  384. #, python-brace-format
  385. msgctxt "@info:status"
  386. msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  387. msgstr "{printer_name} acabou de imprimir '{job_name}'."
  388. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:422
  389. #, python-brace-format
  390. msgctxt "@info:status"
  391. msgid "The print job '{job_name}' was finished."
  392. msgstr "O trabalho de impressão '{job_name}' terminou."
  393. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/ClusterUM3OutputDevice.py:423
  394. msgctxt "@info:status"
  395. msgid "Print finished"
  396. msgstr "Impressão Concluída"
  397. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/DiscoverUM3Action.py:26
  398. msgctxt "@action"
  399. msgid "Connect via Network"
  400. msgstr "Conectar pela rede"
  401. #: /home/ruben/Projects/Cura/plugins/MonitorStage/__init__.py:12
  402. msgctxt "@item:inmenu"
  403. msgid "Monitor"
  404. msgstr "Monitor"
  405. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:68
  406. #, python-brace-format
  407. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  408. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  409. msgstr "Novos recursos estão disponível para sua {machine_name}! Recomenda-se atualizar o firmware da impressora."
  410. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:72
  411. #, python-format
  412. msgctxt "@info:title The %s gets replaced with the printer name."
  413. msgid "New %s firmware available"
  414. msgstr "Novo firmware de %s disponível"
  415. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:75
  416. msgctxt "@action:button"
  417. msgid "How to update"
  418. msgstr "Como atualizar"
  419. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:91
  420. msgctxt "@info"
  421. msgid "Could not access update information."
  422. msgstr "Não foi possível acessar informação de atualização."
  423. #: /home/ruben/Projects/Cura/plugins/SimulationView/__init__.py:14
  424. msgctxt "@item:inlistbox"
  425. msgid "Layer view"
  426. msgstr "Visão de Camadas"
  427. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:102
  428. msgctxt "@info:status"
  429. msgid "Cura does not accurately display layers when Wire Printing is enabled"
  430. msgstr "O Cura não mostra as camadas corretamente quando Impressão em Arame estiver habilitada"
  431. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103
  432. msgctxt "@info:title"
  433. msgid "Simulation View"
  434. msgstr "Visão Simulada"
  435. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:28
  436. msgid "Modify G-Code"
  437. msgstr "Modificar G-Code"
  438. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:12
  439. msgctxt "@label"
  440. msgid "Support Blocker"
  441. msgstr "Bloqueador de Suporte"
  442. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:13
  443. msgctxt "@info:tooltip"
  444. msgid "Create a volume in which supports are not printed."
  445. msgstr "Cria um volume em que os suportes não são impressos."
  446. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:43
  447. msgctxt "@info"
  448. msgid "Cura collects anonymized usage statistics."
  449. msgstr "O Cura coleta estatísticas anônimas de uso."
  450. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:46
  451. msgctxt "@info:title"
  452. msgid "Collecting Data"
  453. msgstr "Coletando Dados"
  454. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:48
  455. msgctxt "@action:button"
  456. msgid "More info"
  457. msgstr "Mais informações"
  458. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49
  459. msgctxt "@action:tooltip"
  460. msgid "See more information on what data Cura sends."
  461. msgstr "Ver mais informações sobre os dados enviados pelo Cura."
  462. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:51
  463. msgctxt "@action:button"
  464. msgid "Allow"
  465. msgstr "Permitir"
  466. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52
  467. msgctxt "@action:tooltip"
  468. 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."
  469. 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."
  470. #: /home/ruben/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  471. msgctxt "@item:inlistbox"
  472. msgid "Cura 15.04 profiles"
  473. msgstr "Perfis do Cura 15.04"
  474. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14
  475. msgctxt "@item:inlistbox"
  476. msgid "JPG Image"
  477. msgstr "Imagem JPG"
  478. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:18
  479. msgctxt "@item:inlistbox"
  480. msgid "JPEG Image"
  481. msgstr "Imagem JPEG"
  482. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:22
  483. msgctxt "@item:inlistbox"
  484. msgid "PNG Image"
  485. msgstr "Imagem PNG"
  486. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:26
  487. msgctxt "@item:inlistbox"
  488. msgid "BMP Image"
  489. msgstr "Imagem BMP"
  490. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:30
  491. msgctxt "@item:inlistbox"
  492. msgid "GIF Image"
  493. msgstr "Imagem GIF"
  494. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333
  495. msgctxt "@info:status"
  496. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  497. msgstr "Incapaz de fatiar com o material atual visto que é incompatível com a máquina ou configuração selecionada."
  498. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:333
  499. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:364
  500. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:388
  501. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:397
  502. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:406
  503. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:415
  504. msgctxt "@info:title"
  505. msgid "Unable to slice"
  506. msgstr "Incapaz de fatiar"
  507. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:363
  508. #, python-brace-format
  509. msgctxt "@info:status"
  510. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  511. msgstr "Incapaz de fatiar com os ajustes atuais. Os seguintes ajustes têm erros: {0}"
  512. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387
  513. #, python-brace-format
  514. msgctxt "@info:status"
  515. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  516. msgstr "Incapaz de fatiar devido a alguns ajustes por modelo. Os seguintes ajustes têm erros em um dos modelos ou mais: {error_labels}"
  517. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  518. msgctxt "@info:status"
  519. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  520. msgstr "Incapaz de fatiar porque a torre de purga ou posição de purga são inválidas."
  521. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:405
  522. #, python-format
  523. msgctxt "@info:status"
  524. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  525. msgstr "Incapaz de fatiar porque há objetos associados com o Extrusor desabilitado %s."
  526. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:414
  527. msgctxt "@info:status"
  528. msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  529. msgstr "Nada a fatiar porque nenhum dos modelos cabe no volume de impressão. Por favor redimensione ou rotacione os modelos para caberem."
  530. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:49
  531. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242
  532. msgctxt "@info:status"
  533. msgid "Processing Layers"
  534. msgstr "Processando Camadas"
  535. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:242
  536. msgctxt "@info:title"
  537. msgid "Information"
  538. msgstr "Informação"
  539. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  540. msgctxt "@label"
  541. msgid "Per Model Settings"
  542. msgstr "Ajustes por Modelo"
  543. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  544. msgctxt "@info:tooltip"
  545. msgid "Configure Per Model Settings"
  546. msgstr "Configurar ajustes por Modelo"
  547. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:175
  548. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:576
  549. msgctxt "@title:tab"
  550. msgid "Recommended"
  551. msgstr "Recomendado"
  552. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:177
  553. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:581
  554. msgctxt "@title:tab"
  555. msgid "Custom"
  556. msgstr "Personalizado"
  557. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:28
  558. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:34
  559. msgctxt "@item:inlistbox"
  560. msgid "3MF File"
  561. msgstr "Arquivo 3MF"
  562. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:190
  563. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:711
  564. msgctxt "@label"
  565. msgid "Nozzle"
  566. msgstr "Bico"
  567. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:468
  568. #, python-brace-format
  569. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  570. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  571. 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."
  572. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:471
  573. msgctxt "@info:title"
  574. msgid "Open Project File"
  575. msgstr "Abrir Arquivo de Projeto"
  576. #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12
  577. msgctxt "@item:inmenu"
  578. msgid "Solid view"
  579. msgstr "Visão sólida"
  580. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:18
  581. msgctxt "@item:inlistbox"
  582. msgid "G File"
  583. msgstr "Arquivo G"
  584. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:317
  585. msgctxt "@info:status"
  586. msgid "Parsing G-code"
  587. msgstr "Interpretando G-Code"
  588. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:319
  589. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:466
  590. msgctxt "@info:title"
  591. msgid "G-code Details"
  592. msgstr "Detalhes do G-Code"
  593. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:464
  594. msgctxt "@info:generic"
  595. 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."
  596. msgstr "Assegure-se 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."
  597. #: /home/ruben/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  598. #: /home/ruben/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  599. msgctxt "@item:inlistbox"
  600. msgid "Cura Profile"
  601. msgstr "Perfil do Cura"
  602. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:12
  603. msgctxt "@item:inmenu"
  604. msgid "Profile Assistant"
  605. msgstr "Assistente de Perfil"
  606. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/__init__.py:17
  607. msgctxt "@item:inlistbox"
  608. msgid "Profile Assistant"
  609. msgstr "Assistente de Perfil"
  610. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26
  611. msgctxt "@item:inlistbox"
  612. msgid "3MF file"
  613. msgstr "Arquivo 3MF"
  614. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34
  615. msgctxt "@item:inlistbox"
  616. msgid "Cura Project 3MF file"
  617. msgstr "Arquivo de Projeto 3MF do Cura"
  618. #: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:179
  619. msgctxt "@error:zip"
  620. msgid "Error writing 3mf file."
  621. msgstr "Erro ao escrever arquivo 3mf."
  622. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17
  623. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  624. msgctxt "@action"
  625. msgid "Select upgrades"
  626. msgstr "Selecionar Atualizações"
  627. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.py:12
  628. msgctxt "@action"
  629. msgid "Upgrade Firmware"
  630. msgstr "Atualizar Firmware"
  631. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.py:14
  632. msgctxt "@action"
  633. msgid "Checkup"
  634. msgstr "Verificação"
  635. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  636. msgctxt "@action"
  637. msgid "Level build plate"
  638. msgstr "Nivelar mesa"
  639. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:98
  640. msgctxt "@tooltip"
  641. msgid "Outer Wall"
  642. msgstr "Parede Externa"
  643. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:99
  644. msgctxt "@tooltip"
  645. msgid "Inner Walls"
  646. msgstr "Paredes Internas"
  647. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:100
  648. msgctxt "@tooltip"
  649. msgid "Skin"
  650. msgstr "Contorno"
  651. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:101
  652. msgctxt "@tooltip"
  653. msgid "Infill"
  654. msgstr "Preenchimento"
  655. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:102
  656. msgctxt "@tooltip"
  657. msgid "Support Infill"
  658. msgstr "Preenchimento de Suporte"
  659. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:103
  660. msgctxt "@tooltip"
  661. msgid "Support Interface"
  662. msgstr "Interface de Suporte"
  663. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:104
  664. msgctxt "@tooltip"
  665. msgid "Support"
  666. msgstr "Suporte"
  667. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:105
  668. msgctxt "@tooltip"
  669. msgid "Skirt"
  670. msgstr "Skirt (Saia)"
  671. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:106
  672. msgctxt "@tooltip"
  673. msgid "Travel"
  674. msgstr "Percurso"
  675. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:107
  676. msgctxt "@tooltip"
  677. msgid "Retractions"
  678. msgstr "Retrações"
  679. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:108
  680. msgctxt "@tooltip"
  681. msgid "Other"
  682. msgstr "Outros"
  683. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:229
  684. msgctxt "@label unknown material"
  685. msgid "Unknown"
  686. msgstr "Desconhecido"
  687. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:314
  688. #, python-brace-format
  689. msgctxt "@label"
  690. msgid "Pre-sliced file {0}"
  691. msgstr "Arquivo pré-fatiado {0}"
  692. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:186
  693. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121
  694. msgctxt "@title:window"
  695. msgid "File Already Exists"
  696. msgstr "O Arquivo Já Existe"
  697. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:187
  698. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122
  699. #, python-brace-format
  700. msgctxt "@label Don't translate the XML tag <filename>!"
  701. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  702. msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  703. #: /home/ruben/Projects/Cura/cura/Settings/ExtrudersModel.py:212
  704. msgctxt "@menuitem"
  705. msgid "Not overridden"
  706. msgstr "Não sobreposto"
  707. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120
  708. msgctxt "@info:status"
  709. msgid "The selected material is incompatible with the selected machine or configuration."
  710. msgstr "O material selecionado é incompatível com a máquina ou configuração selecionada."
  711. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:121
  712. msgctxt "@info:title"
  713. msgid "Incompatible Material"
  714. msgstr "Material Incompatível"
  715. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:863
  716. #, python-format
  717. msgctxt "@info:generic"
  718. msgid "Settings have been changed to match the current availability of extruders: [%s]"
  719. msgstr "Os ajustes foram mudados para atender à atual disponibilidade de extrusores: [%s]"
  720. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:865
  721. msgctxt "@info:title"
  722. msgid "Settings updated"
  723. msgstr "Ajustes atualizados"
  724. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:131
  725. #, python-brace-format
  726. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  727. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  728. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: <message>{1}</message>"
  729. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:138
  730. #, python-brace-format
  731. msgctxt "@info:status Don't translate the XML tag <filename>!"
  732. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  733. msgstr "Falha ao exportar perfil para <filename>{0}</filename>: complemento escritor relatou erro."
  734. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:143
  735. #, python-brace-format
  736. msgctxt "@info:status Don't translate the XML tag <filename>!"
  737. msgid "Exported profile to <filename>{0}</filename>"
  738. msgstr "Perfil exportado para <filename>{0}</filename>"
  739. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  740. msgctxt "@info:title"
  741. msgid "Export succeeded"
  742. msgstr "Exportação concluída"
  743. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:170
  744. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:194
  745. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:313
  746. #, python-brace-format
  747. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  748. msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  749. msgstr "Falha ao importa perfil de <filename>{0}</filename>: <message>{1}</message>"
  750. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:190
  751. #, python-brace-format
  752. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  753. msgid "No custom profile to import in file <filename>{0}</filename>"
  754. msgstr "Não há perfil personalizado para importar no arquivo <filename>{0}</filename>"
  755. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:218
  756. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228
  757. #, python-brace-format
  758. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  759. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  760. msgstr "Este perfil <filename>{0}</filename> contém dados incorretos, não foi possível importá-lo."
  761. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:241
  762. #, python-brace-format
  763. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  764. msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  765. 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."
  766. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:316
  767. #, python-brace-format
  768. msgctxt "@info:status"
  769. msgid "Successfully imported profile {0}"
  770. msgstr "Perfil {0} importado com sucesso"
  771. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:319
  772. #, python-brace-format
  773. msgctxt "@info:status"
  774. msgid "File {0} does not contain any valid profile."
  775. msgstr "Arquivo {0} não contém nenhum perfil válido."
  776. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:322
  777. #, python-brace-format
  778. msgctxt "@info:status"
  779. msgid "Profile {0} has an unknown file type or is corrupted."
  780. msgstr "O Perfil {0} tem tipo de arquivo desconhecido ou está corrompido."
  781. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:340
  782. msgctxt "@label"
  783. msgid "Custom profile"
  784. msgstr "Perfil personalizado"
  785. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:356
  786. msgctxt "@info:status"
  787. msgid "Profile is missing a quality type."
  788. msgstr "Falta um tipo de qualidade ao Perfil."
  789. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:370
  790. #, python-brace-format
  791. msgctxt "@info:status"
  792. msgid "Could not find a quality type {0} for the current configuration."
  793. msgstr "Não foi possível encontrar tipo de qualidade {0} para a configuração atual."
  794. #: /home/ruben/Projects/Cura/cura/ObjectsModel.py:59
  795. #, python-brace-format
  796. msgctxt "@label"
  797. msgid "Group #{group_nr}"
  798. msgstr "Grupo #{group_nr}"
  799. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:65
  800. msgctxt "@info:title"
  801. msgid "Network enabled printers"
  802. msgstr "Impressoras habilitadas em rede"
  803. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:80
  804. msgctxt "@info:title"
  805. msgid "Local printers"
  806. msgstr "Impressoras locais"
  807. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:109
  808. #, python-brace-format
  809. msgctxt "@item:inlistbox"
  810. msgid "All Supported Types ({0})"
  811. msgstr "Todos Os Tipos Suportados ({0})"
  812. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:110
  813. msgctxt "@item:inlistbox"
  814. msgid "All Files (*)"
  815. msgstr "Todos Os Arquivos (*)"
  816. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:609
  817. msgctxt "@label"
  818. msgid "Custom Material"
  819. msgstr "Material Personalizado"
  820. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:610
  821. msgctxt "@label"
  822. msgid "Custom"
  823. msgstr "Personalizado"
  824. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:81
  825. msgctxt "@info:status"
  826. 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."
  827. 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."
  828. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:83
  829. msgctxt "@info:title"
  830. msgid "Build Volume"
  831. msgstr "Volume de Impressão"
  832. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:97
  833. msgctxt "@info:backup_failed"
  834. msgid "Could not create archive from user data directory: {}"
  835. msgstr "Não pude criar arquivo do diretório de dados de usuário: {}"
  836. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:102
  837. msgctxt "@info:title"
  838. msgid "Backup"
  839. msgstr "Backup"
  840. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:112
  841. msgctxt "@info:backup_failed"
  842. msgid "Tried to restore a Cura backup without having proper data or meta data."
  843. msgstr "Tentativa de restauração de backup do Cura sem dados ou metadados apropriados."
  844. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:122
  845. msgctxt "@info:backup_failed"
  846. msgid "Tried to restore a Cura backup that does not match your current version."
  847. msgstr "Tentativa de restauração de backup do Cura que não corresponde à versão atual."
  848. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:27
  849. msgctxt "@info:status"
  850. msgid "Multiplying and placing objects"
  851. msgstr "Multiplicando e colocando objetos"
  852. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28
  853. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100
  854. msgctxt "@info:title"
  855. msgid "Placing Object"
  856. msgstr "Colocando Objeto"
  857. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:100
  858. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96
  859. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  860. msgctxt "@info:status"
  861. msgid "Unable to find a location within the build volume for all objects"
  862. msgstr "Incapaz de achar um lugar dentro do volume de construção para todos os objetos"
  863. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  864. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  865. msgctxt "@info:status"
  866. msgid "Finding new location for objects"
  867. msgstr "Achando novos lugares para objetos"
  868. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  869. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  870. msgctxt "@info:title"
  871. msgid "Finding Location"
  872. msgstr "Buscando Localização"
  873. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97
  874. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  875. msgctxt "@info:title"
  876. msgid "Can't Find Location"
  877. msgstr "Não Foi Encontrada Localização"
  878. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:87
  879. msgctxt "@title:window"
  880. msgid "Cura can't start"
  881. msgstr "O Cura não consegue iniciar"
  882. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:93
  883. msgctxt "@label crash message"
  884. msgid ""
  885. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  886. " <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"
  887. " <p>Backups can be found in the configuration folder.</p>\n"
  888. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  889. " "
  890. msgstr ""
  891. "<p><b>Oops, o Ultimaker Cura encontrou algo que não parece estar correto.</p></b>\n"
  892. " <p>Encontramos um erro irrecuperável durante a inicialização. Ele foi possivelmente causa por arquivos de configuração incorretos. Sugerimos salvar e restabelecer sua configuração.</p>\n"
  893. " <p>Cópias salvas podem ser encontradas na pasta de configuração.</p>\n"
  894. " <p>Por favor nos envie este Relatório de Falha para consertar o problema.</p>\n"
  895. " "
  896. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102
  897. msgctxt "@action:button"
  898. msgid "Send crash report to Ultimaker"
  899. msgstr "Enviar relatório de falha à Ultimaker"
  900. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:105
  901. msgctxt "@action:button"
  902. msgid "Show detailed crash report"
  903. msgstr "Exibir relatório de falha detalhado"
  904. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:109
  905. msgctxt "@action:button"
  906. msgid "Show configuration folder"
  907. msgstr "Mostrar a pasta de configuração"
  908. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:120
  909. msgctxt "@action:button"
  910. msgid "Backup and Reset Configuration"
  911. msgstr "Salvar e Restabelecer Configuração"
  912. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:149
  913. msgctxt "@title:window"
  914. msgid "Crash Report"
  915. msgstr "Relatório de Problema"
  916. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:169
  917. msgctxt "@label crash message"
  918. msgid ""
  919. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  920. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  921. " "
  922. msgstr ""
  923. "<p><b>Um erro fatal ocorreu no Cura. Por favor nos envie este Relatório de Falha para consertar o problema</p></b>\n"
  924. " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente em nossos servidores</p>\n"
  925. " "
  926. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177
  927. msgctxt "@title:groupbox"
  928. msgid "System information"
  929. msgstr "Informação do Sistema"
  930. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:185
  931. msgctxt "@label unknown version of Cura"
  932. msgid "Unknown"
  933. msgstr "Desconhecida"
  934. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:187
  935. msgctxt "@label Cura version number"
  936. msgid "Cura version"
  937. msgstr "Versão do Cura"
  938. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:188
  939. msgctxt "@label Type of platform"
  940. msgid "Platform"
  941. msgstr "Plataforma"
  942. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:189
  943. msgctxt "@label"
  944. msgid "Qt version"
  945. msgstr "Versão do Qt"
  946. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:190
  947. msgctxt "@label"
  948. msgid "PyQt version"
  949. msgstr "Versão do PyQt"
  950. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:191
  951. msgctxt "@label OpenGL version"
  952. msgid "OpenGL"
  953. msgstr "OpenGL"
  954. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:208
  955. msgctxt "@label"
  956. msgid "Not yet initialized<br/>"
  957. msgstr "Ainda não inicializado<br/>"
  958. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:211
  959. #, python-brace-format
  960. msgctxt "@label OpenGL version"
  961. msgid "<li>OpenGL Version: {version}</li>"
  962. msgstr "<li>Versão da OpenGL: {version}</li>"
  963. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:212
  964. #, python-brace-format
  965. msgctxt "@label OpenGL vendor"
  966. msgid "<li>OpenGL Vendor: {vendor}</li>"
  967. msgstr "<li>Fornecedor da OpenGL: {vendor}</li>"
  968. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:213
  969. #, python-brace-format
  970. msgctxt "@label OpenGL renderer"
  971. msgid "<li>OpenGL Renderer: {renderer}</li>"
  972. msgstr "<li>Renderizador da OpenGL: {renderer}</li>"
  973. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:222
  974. msgctxt "@title:groupbox"
  975. msgid "Error traceback"
  976. msgstr "Traceback do erro"
  977. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:303
  978. msgctxt "@title:groupbox"
  979. msgid "Logs"
  980. msgstr "Registros"
  981. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:326
  982. msgctxt "@title:groupbox"
  983. msgid "User description"
  984. msgstr "Descrição do usuário"
  985. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:345
  986. msgctxt "@action:button"
  987. msgid "Send report"
  988. msgstr "Enviar relatório"
  989. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:454
  990. msgctxt "@info:progress"
  991. msgid "Loading machines..."
  992. msgstr "Carregando máquinas..."
  993. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:748
  994. msgctxt "@info:progress"
  995. msgid "Setting up scene..."
  996. msgstr "Configurando cena..."
  997. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:784
  998. msgctxt "@info:progress"
  999. msgid "Loading interface..."
  1000. msgstr "Carregando interface..."
  1001. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:997
  1002. #, python-format
  1003. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  1004. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  1005. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  1006. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1556
  1007. #, python-brace-format
  1008. msgctxt "@info:status"
  1009. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1010. msgstr "Somente um arquivo G-Code pode ser carregado por vez. Pulando importação de {0}"
  1011. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1566
  1012. #, python-brace-format
  1013. msgctxt "@info:status"
  1014. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  1015. msgstr "Não é possível abrir nenhum outro arquivo se G-Code estiver sendo carregado. Pulando importação de {0}"
  1016. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1650
  1017. msgctxt "@info:status"
  1018. msgid "The selected model was too small to load."
  1019. msgstr "O modelo selecionado é pequenos demais para carregar."
  1020. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:61
  1021. msgctxt "@title"
  1022. msgid "Machine Settings"
  1023. msgstr "Ajustes da Máquina"
  1024. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:80
  1025. msgctxt "@title:tab"
  1026. msgid "Printer"
  1027. msgstr "Impressora"
  1028. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:99
  1029. msgctxt "@label"
  1030. msgid "Printer Settings"
  1031. msgstr "Ajustes da Impressora"
  1032. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:110
  1033. msgctxt "@label"
  1034. msgid "X (Width)"
  1035. msgstr "X (largura)"
  1036. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:111
  1037. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:121
  1038. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:131
  1039. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:237
  1040. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:386
  1041. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:402
  1042. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:420
  1043. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:432
  1044. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:857
  1045. msgctxt "@label"
  1046. msgid "mm"
  1047. msgstr "mm"
  1048. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:120
  1049. msgctxt "@label"
  1050. msgid "Y (Depth)"
  1051. msgstr "Y (Profundidade)"
  1052. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:130
  1053. msgctxt "@label"
  1054. msgid "Z (Height)"
  1055. msgstr "Z (Altura)"
  1056. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:142
  1057. msgctxt "@label"
  1058. msgid "Build plate shape"
  1059. msgstr "Forma da plataforma de impressão"
  1060. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:151
  1061. msgctxt "@option:check"
  1062. msgid "Origin at center"
  1063. msgstr "Origem no centro"
  1064. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:159
  1065. msgctxt "@option:check"
  1066. msgid "Heated bed"
  1067. msgstr "Mesa aquecida"
  1068. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:170
  1069. msgctxt "@label"
  1070. msgid "G-code flavor"
  1071. msgstr "Sabor de G-Code"
  1072. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:183
  1073. msgctxt "@label"
  1074. msgid "Printhead Settings"
  1075. msgstr "Ajustes da Cabeça de Impressão"
  1076. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:193
  1077. msgctxt "@label"
  1078. msgid "X min"
  1079. msgstr "X mín."
  1080. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:194
  1081. msgctxt "@tooltip"
  1082. 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\"."
  1083. 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\"."
  1084. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:203
  1085. msgctxt "@label"
  1086. msgid "Y min"
  1087. msgstr "Y mín."
  1088. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:204
  1089. msgctxt "@tooltip"
  1090. 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\"."
  1091. 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\"."
  1092. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:213
  1093. msgctxt "@label"
  1094. msgid "X max"
  1095. msgstr "X máx."
  1096. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:214
  1097. msgctxt "@tooltip"
  1098. 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\"."
  1099. 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\"."
  1100. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:223
  1101. msgctxt "@label"
  1102. msgid "Y max"
  1103. msgstr "Y máx."
  1104. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:224
  1105. msgctxt "@tooltip"
  1106. 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\"."
  1107. 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\"."
  1108. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236
  1109. msgctxt "@label"
  1110. msgid "Gantry height"
  1111. msgstr "Altura do eixo"
  1112. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:238
  1113. msgctxt "@tooltip"
  1114. 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\"."
  1115. 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\"."
  1116. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:257
  1117. msgctxt "@label"
  1118. msgid "Number of Extruders"
  1119. msgstr "Número de Extrusores"
  1120. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:313
  1121. msgctxt "@label"
  1122. msgid "Start G-code"
  1123. msgstr "G-Code Inicial"
  1124. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:323
  1125. msgctxt "@tooltip"
  1126. msgid "G-code commands to be executed at the very start."
  1127. msgstr "Comandos de G-Code a serem executados no início da impressão."
  1128. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:332
  1129. msgctxt "@label"
  1130. msgid "End G-code"
  1131. msgstr "G-Code Final"
  1132. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:342
  1133. msgctxt "@tooltip"
  1134. msgid "G-code commands to be executed at the very end."
  1135. msgstr "Comandos de G-Code a serem executados no final da impressão."
  1136. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:373
  1137. msgctxt "@label"
  1138. msgid "Nozzle Settings"
  1139. msgstr "Ajustes do Bico"
  1140. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:385
  1141. msgctxt "@label"
  1142. msgid "Nozzle size"
  1143. msgstr "Tamanho do bico"
  1144. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401
  1145. msgctxt "@label"
  1146. msgid "Compatible material diameter"
  1147. msgstr "Diâmetro de material compatível"
  1148. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:403
  1149. msgctxt "@tooltip"
  1150. msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  1151. msgstr "O diâmetro nominal do filamento suportado pela impressora. O diâmetro exato será sobreposto pelo material e/ou perfil."
  1152. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:419
  1153. msgctxt "@label"
  1154. msgid "Nozzle offset X"
  1155. msgstr "Deslocamento X do Bico"
  1156. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:431
  1157. msgctxt "@label"
  1158. msgid "Nozzle offset Y"
  1159. msgstr "Deslocamento Y do Bico"
  1160. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:452
  1161. msgctxt "@label"
  1162. msgid "Extruder Start G-code"
  1163. msgstr "G-Code Inicial do Extrusor"
  1164. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:470
  1165. msgctxt "@label"
  1166. msgid "Extruder End G-code"
  1167. msgstr "G-Code Final do Extrusor"
  1168. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:17
  1169. msgctxt "@action:button"
  1170. msgid "Install"
  1171. msgstr "Instalar"
  1172. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:19
  1173. msgctxt "@action:button"
  1174. msgid "Installed"
  1175. msgstr "Instalado"
  1176. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxErrorPage.qml:16
  1177. msgctxt "@info"
  1178. msgid "Could not connect to the Cura Package database. Please check your connection."
  1179. msgstr "Não foi possível conectar-se à base de dados de Pacotes do Cura. Por favor verifique sua conexão."
  1180. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:38
  1181. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26
  1182. msgctxt "@title:tab"
  1183. msgid "Plugins"
  1184. msgstr "Complementos"
  1185. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:75
  1186. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:66
  1187. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:544
  1188. msgctxt "@title:tab"
  1189. msgid "Materials"
  1190. msgstr "Materiais"
  1191. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:80
  1192. msgctxt "@label"
  1193. msgid "Version"
  1194. msgstr "Versão"
  1195. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:86
  1196. msgctxt "@label"
  1197. msgid "Last updated"
  1198. msgstr "Última atualização"
  1199. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:92
  1200. msgctxt "@label"
  1201. msgid "Author"
  1202. msgstr "Autor"
  1203. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:98
  1204. msgctxt "@label"
  1205. msgid "Downloads"
  1206. msgstr "Downloads"
  1207. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:117
  1208. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:159
  1209. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:255
  1210. msgctxt "@label"
  1211. msgid "Unknown"
  1212. msgstr "Desconhecido"
  1213. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:44
  1214. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:30
  1215. msgctxt "@action:button"
  1216. msgid "Update"
  1217. msgstr "Atualizar"
  1218. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:45
  1219. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:31
  1220. msgctxt "@action:button"
  1221. msgid "Updating"
  1222. msgstr "Atualizando"
  1223. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:46
  1224. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:32
  1225. msgctxt "@action:button"
  1226. msgid "Updated"
  1227. msgstr "Atualizado"
  1228. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:13
  1229. msgctxt "@title"
  1230. msgid "Toolbox"
  1231. msgstr "Ferramentas"
  1232. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxBackColumn.qml:25
  1233. msgctxt "@action:button"
  1234. msgid "Back"
  1235. msgstr "Voltar"
  1236. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:20
  1237. msgctxt "@title:window"
  1238. msgid "Confirm uninstall "
  1239. msgstr "Confirme a deinstalação"
  1240. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:50
  1241. msgctxt "@text:window"
  1242. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1243. 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."
  1244. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:51
  1245. msgctxt "@text:window"
  1246. msgid "Materials"
  1247. msgstr "Materiais"
  1248. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:52
  1249. msgctxt "@text:window"
  1250. msgid "Profiles"
  1251. msgstr "Perfis"
  1252. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxConfirmUninstallResetDialog.qml:89
  1253. msgctxt "@action:button"
  1254. msgid "Confirm"
  1255. msgstr "Confirmar"
  1256. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17
  1257. msgctxt "@info"
  1258. msgid "You will need to restart Cura before changes in packages have effect."
  1259. msgstr "Você precisará reiniciar o Cura para que as alterações tenham efeito."
  1260. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:34
  1261. msgctxt "@info:button"
  1262. msgid "Quit Cura"
  1263. msgstr "Sair do Cura"
  1264. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34
  1265. msgctxt "@label"
  1266. msgid "Community Contributions"
  1267. msgstr "Contribuições da Comunidade"
  1268. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:34
  1269. msgctxt "@label"
  1270. msgid "Community Plugins"
  1271. msgstr "Complementos da Comunidade"
  1272. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsPage.qml:43
  1273. msgctxt "@label"
  1274. msgid "Generic Materials"
  1275. msgstr "Materiais Genéricos"
  1276. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54
  1277. msgctxt "@title:tab"
  1278. msgid "Installed"
  1279. msgstr "Instalado"
  1280. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:19
  1281. msgctxt "@label"
  1282. msgid "Will install upon restarting"
  1283. msgstr "Será instalado ao reiniciar"
  1284. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:51
  1285. msgctxt "@action:button"
  1286. msgid "Downgrade"
  1287. msgstr "Downgrade"
  1288. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:51
  1289. msgctxt "@action:button"
  1290. msgid "Uninstall"
  1291. msgstr "Desinstalar"
  1292. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:16
  1293. msgctxt "@title:window"
  1294. msgid "Plugin License Agreement"
  1295. msgstr "Acordo de Licença do Complemento"
  1296. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:33
  1297. msgctxt "@label"
  1298. msgid ""
  1299. "This plugin contains a license.\n"
  1300. "You need to accept this license to install this plugin.\n"
  1301. "Do you agree with the terms below?"
  1302. msgstr ""
  1303. "Este plugin contém uma licença.\n"
  1304. "Você precisa aceitar esta licença para instalar este complemento.\n"
  1305. "Você concorda com os termos abaixo?"
  1306. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54
  1307. msgctxt "@action:button"
  1308. msgid "Accept"
  1309. msgstr "Aceitar"
  1310. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:65
  1311. msgctxt "@action:button"
  1312. msgid "Decline"
  1313. msgstr "Recusar"
  1314. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:23
  1315. msgctxt "@label"
  1316. msgid "Featured"
  1317. msgstr "Em destaque"
  1318. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:31
  1319. msgctxt "@label"
  1320. msgid "Compatibility"
  1321. msgstr "Compatibilidade"
  1322. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLoadingPage.qml:16
  1323. msgctxt "@info"
  1324. msgid "Fetching packages..."
  1325. msgstr "Obtendo pacotes..."
  1326. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:88
  1327. msgctxt "@label"
  1328. msgid "Website"
  1329. msgstr "Sítio Web"
  1330. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:94
  1331. msgctxt "@label"
  1332. msgid "Email"
  1333. msgstr "Email"
  1334. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1335. msgctxt "@info:tooltip"
  1336. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1337. msgstr "Algumas coisas podem ser problemáticas nesta impressão. Clique para ver dicas de correção."
  1338. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:18
  1339. msgctxt "@label"
  1340. msgid "Changelog"
  1341. msgstr "Registro de alterações"
  1342. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37
  1343. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84
  1344. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:56
  1345. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1346. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:508
  1347. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121
  1348. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148
  1349. #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38
  1350. msgctxt "@action:button"
  1351. msgid "Close"
  1352. msgstr "Fechar"
  1353. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:22
  1354. msgctxt "@title:window"
  1355. msgid "Firmware Update"
  1356. msgstr "Atualização do Firmware"
  1357. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:42
  1358. msgctxt "@label"
  1359. msgid "Updating firmware."
  1360. msgstr "Atualizando firmware."
  1361. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:44
  1362. msgctxt "@label"
  1363. msgid "Firmware update completed."
  1364. msgstr "Atualização do Firmware completada."
  1365. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:46
  1366. msgctxt "@label"
  1367. msgid "Firmware update failed due to an unknown error."
  1368. msgstr "A atualização de Firmware falhou devido a um erro desconhecido."
  1369. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
  1370. msgctxt "@label"
  1371. msgid "Firmware update failed due to an communication error."
  1372. msgstr "A atualização de firmware falhou devido a um erro de comunicação."
  1373. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:50
  1374. msgctxt "@label"
  1375. msgid "Firmware update failed due to an input/output error."
  1376. msgstr "A atualização de firmware falhou devido a um erro de entrada e saída."
  1377. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:52
  1378. msgctxt "@label"
  1379. msgid "Firmware update failed due to missing firmware."
  1380. msgstr "A atualização de firmware falhou devido a firmware não encontrado."
  1381. #: /home/ruben/Projects/Cura/plugins/UserAgreement/UserAgreement.qml:16
  1382. msgctxt "@title:window"
  1383. msgid "User Agreement"
  1384. msgstr "Termos de Acordo do Usuário"
  1385. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:43
  1386. msgctxt "@window:title"
  1387. msgid "Existing Connection"
  1388. msgstr "Conexão Existente"
  1389. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1390. msgctxt "@message:text"
  1391. msgid "This printer/group is already added to Cura. Please select another printer/group."
  1392. msgstr "Esta impressora ou grupo já foi adicionada ao Cura. Por favor selecione outra impressora ou grupo."
  1393. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:62
  1394. msgctxt "@title:window"
  1395. msgid "Connect to Networked Printer"
  1396. msgstr "Conectar a Impressora de Rede"
  1397. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:72
  1398. msgctxt "@label"
  1399. msgid ""
  1400. "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"
  1401. "\n"
  1402. "Select your printer from the list below:"
  1403. msgstr ""
  1404. "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"
  1405. "\n"
  1406. "Selecione sua impressora da lista abaixo:"
  1407. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1408. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42
  1409. msgctxt "@action:button"
  1410. msgid "Add"
  1411. msgstr "Adicionar"
  1412. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:92
  1413. msgctxt "@action:button"
  1414. msgid "Edit"
  1415. msgstr "Editar"
  1416. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:103
  1417. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:128
  1418. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  1419. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117
  1420. msgctxt "@action:button"
  1421. msgid "Remove"
  1422. msgstr "Remover"
  1423. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:111
  1424. msgctxt "@action:button"
  1425. msgid "Refresh"
  1426. msgstr "Atualizar"
  1427. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:204
  1428. msgctxt "@label"
  1429. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1430. 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>"
  1431. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:231
  1432. msgctxt "@label"
  1433. msgid "Type"
  1434. msgstr "Tipo"
  1435. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:268
  1436. msgctxt "@label"
  1437. msgid "Firmware version"
  1438. msgstr "Versão do firmware"
  1439. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:280
  1440. msgctxt "@label"
  1441. msgid "Address"
  1442. msgstr "Endereço"
  1443. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:302
  1444. msgctxt "@label"
  1445. msgid "This printer is not set up to host a group of printers."
  1446. msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras."
  1447. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:306
  1448. msgctxt "@label"
  1449. msgid "This printer is the host for a group of %1 printers."
  1450. msgstr "Esta impressora é a hospedeira de um grupo de %1 impressoras."
  1451. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:316
  1452. msgctxt "@label"
  1453. msgid "The printer at this address has not yet responded."
  1454. msgstr "A impressora neste endereço ainda não respondeu."
  1455. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:321
  1456. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:39
  1457. msgctxt "@action:button"
  1458. msgid "Connect"
  1459. msgstr "Conectar"
  1460. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:335
  1461. msgctxt "@title:window"
  1462. msgid "Printer Address"
  1463. msgstr "Endereço da Impressora"
  1464. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:358
  1465. msgctxt "@alabel"
  1466. msgid "Enter the IP address or hostname of your printer on the network."
  1467. msgstr "Introduza o endereço IP ou hostname da sua impressora na rede."
  1468. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:387
  1469. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132
  1470. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181
  1471. msgctxt "@action:button"
  1472. msgid "OK"
  1473. msgstr "Ok"
  1474. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:34
  1475. msgctxt "@title:window"
  1476. msgid "Print over network"
  1477. msgstr "Imprimir pela rede"
  1478. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:65
  1479. msgctxt "@label"
  1480. msgid "Printer selection"
  1481. msgstr "Seleção de impressora"
  1482. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:105
  1483. msgctxt "@action:button"
  1484. msgid "Print"
  1485. msgstr "Imprimir"
  1486. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:142
  1487. msgctxt "@label"
  1488. msgid "Waiting for: Unavailable printer"
  1489. msgstr "Aguardando por: Impressora indisponível"
  1490. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:144
  1491. msgctxt "@label"
  1492. msgid "Waiting for: First available"
  1493. msgstr "Aguardando por: A primeira disponível"
  1494. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:148
  1495. msgctxt "@label"
  1496. msgid "Waiting for: "
  1497. msgstr "Aguardando por: "
  1498. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:213
  1499. msgctxt "@label"
  1500. msgid "Move to top"
  1501. msgstr "Mover para o topo"
  1502. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:234
  1503. msgctxt "@window:title"
  1504. msgid "Move print job to top"
  1505. msgstr "Move o trabalho de impressão para o topo da fila"
  1506. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:236
  1507. msgctxt "@label %1 is the name of a print job."
  1508. msgid "Are you sure you want to move %1 to the top of the queue?"
  1509. msgstr "Você tem certeza que quer mover %1 para o topo da fila?"
  1510. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:245
  1511. msgctxt "@label"
  1512. msgid "Delete"
  1513. msgstr "Remover"
  1514. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:264
  1515. msgctxt "@window:title"
  1516. msgid "Delete print job"
  1517. msgstr "Remover trabalho de impressão"
  1518. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintJobInfoBlock.qml:266
  1519. msgctxt "@label %1 is the name of a print job."
  1520. msgid "Are you sure you want to delete %1?"
  1521. msgstr "Você tem certeza que quer remover %1?"
  1522. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:32
  1523. msgctxt "@label link to connect manager"
  1524. msgid "Manage queue"
  1525. msgstr "Gerenciar fila"
  1526. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterMonitorItem.qml:54
  1527. msgctxt "@label"
  1528. msgid "Queued"
  1529. msgstr "Enfileirados"
  1530. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:44
  1531. msgctxt "@label"
  1532. msgid "Printing"
  1533. msgstr "Imprimindo"
  1534. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:54
  1535. msgctxt "@label link to connect manager"
  1536. msgid "Manage printers"
  1537. msgstr "Gerenciar impressoras"
  1538. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:212
  1539. msgctxt "@label"
  1540. msgid "Not available"
  1541. msgstr "Não disponível"
  1542. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:215
  1543. msgctxt "@label"
  1544. msgid "Unreachable"
  1545. msgstr "Inacessível"
  1546. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:221
  1547. msgctxt "@label"
  1548. msgid "Available"
  1549. msgstr "Disponível"
  1550. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416
  1551. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289
  1552. msgctxt "@label"
  1553. msgid "Resume"
  1554. msgstr "Continuar"
  1555. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:416
  1556. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284
  1557. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293
  1558. msgctxt "@label"
  1559. msgid "Pause"
  1560. msgstr "Pausar"
  1561. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:444
  1562. msgctxt "@label"
  1563. msgid "Abort"
  1564. msgstr "Abortar"
  1565. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:464
  1566. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335
  1567. msgctxt "@window:title"
  1568. msgid "Abort print"
  1569. msgstr "Abortar impressão"
  1570. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:466
  1571. msgctxt "@label %1 is the name of a print job."
  1572. msgid "Are you sure you want to abort %1?"
  1573. msgstr "Você tem certeza que quer abortar %1?"
  1574. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:665
  1575. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:673
  1576. msgctxt "@label:status"
  1577. msgid "Aborted"
  1578. msgstr "Abortado"
  1579. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:667
  1580. msgctxt "@label:status"
  1581. msgid "Finished"
  1582. msgstr "Finalizado"
  1583. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:670
  1584. msgctxt "@label:status"
  1585. msgid "Preparing"
  1586. msgstr "Preparando"
  1587. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:675
  1588. msgctxt "@label:status"
  1589. msgid "Pausing"
  1590. msgstr "Pausando"
  1591. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:677
  1592. msgctxt "@label:status"
  1593. msgid "Paused"
  1594. msgstr "Pausado"
  1595. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:679
  1596. msgctxt "@label:status"
  1597. msgid "Resuming"
  1598. msgstr "Continuando"
  1599. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/ClusterControlItem.qml:681
  1600. msgctxt "@label:status"
  1601. msgid "Action required"
  1602. msgstr "Necessária uma ação"
  1603. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:38
  1604. msgctxt "@info:tooltip"
  1605. msgid "Connect to a printer"
  1606. msgstr "Conecta a uma impressora."
  1607. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:117
  1608. msgctxt "@info:tooltip"
  1609. msgid "Load the configuration of the printer into Cura"
  1610. msgstr "Carrega a configuração da impressora no Cura"
  1611. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/UM3InfoComponents.qml:118
  1612. msgctxt "@action:button"
  1613. msgid "Activate Configuration"
  1614. msgstr "Ativar Configuração"
  1615. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:130
  1616. msgctxt "@label"
  1617. msgid "Color scheme"
  1618. msgstr "Esquema de Cores"
  1619. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:145
  1620. msgctxt "@label:listbox"
  1621. msgid "Material Color"
  1622. msgstr "Cor do Material"
  1623. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:149
  1624. msgctxt "@label:listbox"
  1625. msgid "Line Type"
  1626. msgstr "Tipo de Linha"
  1627. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:153
  1628. msgctxt "@label:listbox"
  1629. msgid "Feedrate"
  1630. msgstr "Taxa de alimentação"
  1631. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:157
  1632. msgctxt "@label:listbox"
  1633. msgid "Layer thickness"
  1634. msgstr "Largura de camada"
  1635. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:198
  1636. msgctxt "@label"
  1637. msgid "Compatibility Mode"
  1638. msgstr "Modo de Compatibilidade"
  1639. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:284
  1640. msgctxt "@label"
  1641. msgid "Show Travels"
  1642. msgstr "Exibir Percursos"
  1643. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:290
  1644. msgctxt "@label"
  1645. msgid "Show Helpers"
  1646. msgstr "Exibir Assistentes"
  1647. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:296
  1648. msgctxt "@label"
  1649. msgid "Show Shell"
  1650. msgstr "Exibir Perímetro"
  1651. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:302
  1652. msgctxt "@label"
  1653. msgid "Show Infill"
  1654. msgstr "Exibir Preenchimento"
  1655. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:355
  1656. msgctxt "@label"
  1657. msgid "Only Show Top Layers"
  1658. msgstr "Somente Exibir Camadas Superiores"
  1659. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:366
  1660. msgctxt "@label"
  1661. msgid "Show 5 Detailed Layers On Top"
  1662. msgstr "Exibir 5 Camadas Superiores Detalhadas"
  1663. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:379
  1664. msgctxt "@label"
  1665. msgid "Top / Bottom"
  1666. msgstr "Topo / Base"
  1667. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:383
  1668. msgctxt "@label"
  1669. msgid "Inner Wall"
  1670. msgstr "Parede Interna"
  1671. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:448
  1672. msgctxt "@label"
  1673. msgid "min"
  1674. msgstr "mín"
  1675. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:500
  1676. msgctxt "@label"
  1677. msgid "max"
  1678. msgstr "máx"
  1679. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1680. msgctxt "@title:window"
  1681. msgid "Post Processing Plugin"
  1682. msgstr "Complemento de Pós-Processamento"
  1683. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1684. msgctxt "@label"
  1685. msgid "Post Processing Scripts"
  1686. msgstr "Scripts de Pós-Processamento"
  1687. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:225
  1688. msgctxt "@action"
  1689. msgid "Add a script"
  1690. msgstr "Adicionar um script"
  1691. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:271
  1692. msgctxt "@label"
  1693. msgid "Settings"
  1694. msgstr "Ajustes"
  1695. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:474
  1696. msgctxt "@info:tooltip"
  1697. msgid "Change active post-processing scripts"
  1698. msgstr "Troca os scripts de pós-processamento ativos"
  1699. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  1700. msgctxt "@title:window"
  1701. msgid "More information on anonymous data collection"
  1702. msgstr "Mais informações em coleção anônima de dados"
  1703. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:66
  1704. msgctxt "@text:window"
  1705. 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."
  1706. 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."
  1707. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:101
  1708. msgctxt "@text:window"
  1709. msgid "I don't want to send these data"
  1710. msgstr "Eu não quero enviar estes dados"
  1711. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:111
  1712. msgctxt "@text:window"
  1713. msgid "Allow sending these data to Ultimaker and help us improve Cura"
  1714. msgstr "Permite o envio destes dados para a Ultimaker e nos auxilia a aprimorar o Cura"
  1715. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1716. msgctxt "@title:window"
  1717. msgid "Convert Image..."
  1718. msgstr "Converter imagem..."
  1719. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1720. msgctxt "@info:tooltip"
  1721. msgid "The maximum distance of each pixel from \"Base.\""
  1722. msgstr "A distância máxima de cada pixel da \"Base\"."
  1723. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1724. msgctxt "@action:label"
  1725. msgid "Height (mm)"
  1726. msgstr "Altura (mm)"
  1727. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1728. msgctxt "@info:tooltip"
  1729. msgid "The base height from the build plate in millimeters."
  1730. msgstr "A altura-base da mesa de impressão em milímetros."
  1731. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1732. msgctxt "@action:label"
  1733. msgid "Base (mm)"
  1734. msgstr "Base (mm)"
  1735. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1736. msgctxt "@info:tooltip"
  1737. msgid "The width in millimeters on the build plate."
  1738. msgstr "A largura da mesa de impressão em milímetros."
  1739. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1740. msgctxt "@action:label"
  1741. msgid "Width (mm)"
  1742. msgstr "Largura (mm)"
  1743. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1744. msgctxt "@info:tooltip"
  1745. msgid "The depth in millimeters on the build plate"
  1746. msgstr "A profundidade da mesa de impressão em milímetros"
  1747. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1748. msgctxt "@action:label"
  1749. msgid "Depth (mm)"
  1750. msgstr "Profundidade (mm)"
  1751. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1752. msgctxt "@info:tooltip"
  1753. 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."
  1754. 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."
  1755. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1756. msgctxt "@item:inlistbox"
  1757. msgid "Lighter is higher"
  1758. msgstr "Mais claro é mais alto"
  1759. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1760. msgctxt "@item:inlistbox"
  1761. msgid "Darker is higher"
  1762. msgstr "Mais escuro é mais alto"
  1763. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1764. msgctxt "@info:tooltip"
  1765. msgid "The amount of smoothing to apply to the image."
  1766. msgstr "A quantidade de suavização para aplicar na imagem."
  1767. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:154
  1768. msgctxt "@action:label"
  1769. msgid "Smoothing"
  1770. msgstr "Suavização"
  1771. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:37
  1772. msgctxt "@label"
  1773. msgid "Mesh Type"
  1774. msgstr "Tipo de Malha"
  1775. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:68
  1776. msgctxt "@label"
  1777. msgid "Normal model"
  1778. msgstr "Modelo normal"
  1779. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:75
  1780. msgctxt "@label"
  1781. msgid "Print as support"
  1782. msgstr "Imprimir como suporte"
  1783. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:83
  1784. msgctxt "@label"
  1785. msgid "Don't support overlap with other models"
  1786. msgstr "Não suportar sobreposição com outros modelos"
  1787. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:91
  1788. msgctxt "@label"
  1789. msgid "Modify settings for overlap with other models"
  1790. msgstr "Modificar ajustes para sobrepor com outros modelos"
  1791. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99
  1792. msgctxt "@label"
  1793. msgid "Modify settings for infill of other models"
  1794. msgstr "Modificar ajustes para preenchimento de outros modelos"
  1795. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:341
  1796. msgctxt "@action:button"
  1797. msgid "Select settings"
  1798. msgstr "Selecionar ajustes"
  1799. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:383
  1800. msgctxt "@title:window"
  1801. msgid "Select Settings to Customize for this model"
  1802. msgstr "Selecionar Ajustes a Personalizar para este modelo"
  1803. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:431
  1804. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98
  1805. msgctxt "@label:textbox"
  1806. msgid "Filter..."
  1807. msgstr "Filtrar..."
  1808. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:445
  1809. msgctxt "@label:checkbox"
  1810. msgid "Show all"
  1811. msgstr "Exibir tudo"
  1812. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1813. msgctxt "@title:window"
  1814. msgid "Open Project"
  1815. msgstr "Abrir Projeto"
  1816. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  1817. msgctxt "@action:ComboBox option"
  1818. msgid "Update existing"
  1819. msgstr "Atualizar existente"
  1820. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  1821. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  1822. msgctxt "@action:ComboBox option"
  1823. msgid "Create new"
  1824. msgstr "Criar novo"
  1825. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  1826. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:72
  1827. msgctxt "@action:title"
  1828. msgid "Summary - Cura Project"
  1829. msgstr "Resumo - Projeto do Cura"
  1830. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  1831. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:96
  1832. msgctxt "@action:label"
  1833. msgid "Printer settings"
  1834. msgstr "Ajustes da impressora"
  1835. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  1836. msgctxt "@info:tooltip"
  1837. msgid "How should the conflict in the machine be resolved?"
  1838. msgstr "Como o conflito na máquina deve ser resolvido?"
  1839. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  1840. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  1841. msgctxt "@action:ComboBox option"
  1842. msgid "Update"
  1843. msgstr "Atualizar"
  1844. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  1845. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:105
  1846. msgctxt "@action:label"
  1847. msgid "Type"
  1848. msgstr "Tipo"
  1849. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  1850. msgctxt "@action:label"
  1851. msgid "Printer Group"
  1852. msgstr "Grupo de Impressora"
  1853. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  1854. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:196
  1855. msgctxt "@action:label"
  1856. msgid "Profile settings"
  1857. msgstr "Ajustes de perfil"
  1858. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  1859. msgctxt "@info:tooltip"
  1860. msgid "How should the conflict in the profile be resolved?"
  1861. msgstr "Como o conflito no perfil deve ser resolvido?"
  1862. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  1863. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308
  1864. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:220
  1865. msgctxt "@action:label"
  1866. msgid "Name"
  1867. msgstr "Nome"
  1868. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  1869. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:204
  1870. msgctxt "@action:label"
  1871. msgid "Not in profile"
  1872. msgstr "Ausente no perfil"
  1873. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236
  1874. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:209
  1875. msgctxt "@action:label"
  1876. msgid "%1 override"
  1877. msgid_plural "%1 overrides"
  1878. msgstr[0] "%1 sobreposto"
  1879. msgstr[1] "%1 sobrepostos"
  1880. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:247
  1881. msgctxt "@action:label"
  1882. msgid "Derivative from"
  1883. msgstr "Derivado de"
  1884. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:252
  1885. msgctxt "@action:label"
  1886. msgid "%1, %2 override"
  1887. msgid_plural "%1, %2 overrides"
  1888. msgstr[0] "%1, %2 sobreposição"
  1889. msgstr[1] "%1, %2 sobreposições"
  1890. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268
  1891. msgctxt "@action:label"
  1892. msgid "Material settings"
  1893. msgstr "Ajustes de material"
  1894. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  1895. msgctxt "@info:tooltip"
  1896. msgid "How should the conflict in the material be resolved?"
  1897. msgstr "Como o conflito no material deve ser resolvido?"
  1898. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327
  1899. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:237
  1900. msgctxt "@action:label"
  1901. msgid "Setting visibility"
  1902. msgstr "Visibilidade dos ajustes"
  1903. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:336
  1904. msgctxt "@action:label"
  1905. msgid "Mode"
  1906. msgstr "Modo"
  1907. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  1908. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:246
  1909. msgctxt "@action:label"
  1910. msgid "Visible settings:"
  1911. msgstr "Ajustes visíveis:"
  1912. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357
  1913. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:251
  1914. msgctxt "@action:label"
  1915. msgid "%1 out of %2"
  1916. msgstr "%1 de %2"
  1917. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:383
  1918. msgctxt "@action:warning"
  1919. msgid "Loading a project will clear all models on the build plate."
  1920. msgstr "Carregar um projeto limpará todos os modelos da mesa de impressão."
  1921. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:401
  1922. msgctxt "@action:button"
  1923. msgid "Open"
  1924. msgstr "Abrir"
  1925. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:34
  1926. msgctxt "@action:button"
  1927. msgid "Previous"
  1928. msgstr "Anterior"
  1929. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:138
  1930. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:154
  1931. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  1932. msgctxt "@action:button"
  1933. msgid "Export"
  1934. msgstr "Exportar"
  1935. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorTabControls.qml:140
  1936. msgctxt "@action:button"
  1937. msgid "Next"
  1938. msgstr "Próximo"
  1939. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageCategoryView.qml:163
  1940. msgctxt "@label"
  1941. msgid "Tip"
  1942. msgstr "Dica"
  1943. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:80
  1944. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341
  1945. msgctxt "@label Hours and minutes"
  1946. msgid "00h 00min"
  1947. msgstr "00h 00min"
  1948. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:142
  1949. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441
  1950. msgctxt "@label"
  1951. msgid "Cost specification"
  1952. msgstr "Especificação de custo"
  1953. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:147
  1954. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:156
  1955. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446
  1956. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455
  1957. msgctxt "@label m for meter"
  1958. msgid "%1m"
  1959. msgstr "%1m"
  1960. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:148
  1961. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:157
  1962. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447
  1963. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456
  1964. msgctxt "@label g for grams"
  1965. msgid "%1g"
  1966. msgstr "%1g"
  1967. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:155
  1968. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454
  1969. msgctxt "@label"
  1970. msgid "Total:"
  1971. msgstr "Total:"
  1972. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:205
  1973. msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  1974. msgid "%1m / ~ %2g / ~ %4 %3"
  1975. msgstr "%1m / ~ %2g / ~ %4 %3"
  1976. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/CuraPrintProfileCreatorView.qml:210
  1977. msgctxt "@label Print estimates: m for meters, g for grams"
  1978. msgid "%1m / ~ %2g"
  1979. msgstr "%1m / ~ %2g"
  1980. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPage.qml:143
  1981. msgctxt "@label"
  1982. msgid "Print experiment"
  1983. msgstr "Imprimir experimento"
  1984. #: /home/ruben/Projects/Cura/plugins/CuraPrintProfileCreator/components/ProfileCreatorPageValidation.qml:26
  1985. msgctxt "@label"
  1986. msgid "Checklist"
  1987. msgstr "Lista de verificação"
  1988. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26
  1989. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25
  1990. msgctxt "@title"
  1991. msgid "Select Printer Upgrades"
  1992. msgstr "Seleccionar Atualizações da Impressora"
  1993. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:38
  1994. msgctxt "@label"
  1995. msgid "Please select any upgrades made to this Ultimaker 2."
  1996. msgstr "Por favor selecione quaisquer atualizações feitas nesta Ultimaker 2."
  1997. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:47
  1998. msgctxt "@label"
  1999. msgid "Olsson Block"
  2000. msgstr "Bloco Olsson"
  2001. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:27
  2002. msgctxt "@title"
  2003. msgid "Build Plate Leveling"
  2004. msgstr "Nivelamento da mesa de impressão"
  2005. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:38
  2006. msgctxt "@label"
  2007. 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."
  2008. 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."
  2009. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:47
  2010. msgctxt "@label"
  2011. 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."
  2012. 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."
  2013. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:62
  2014. msgctxt "@action:button"
  2015. msgid "Start Build Plate Leveling"
  2016. msgstr "Iniciar Nivelamento da Mesa de Impressão"
  2017. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:74
  2018. msgctxt "@action:button"
  2019. msgid "Move to Next Position"
  2020. msgstr "Mover pra a Posição Seguinte"
  2021. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:30
  2022. msgctxt "@title"
  2023. msgid "Upgrade Firmware"
  2024. msgstr "Atualizar Firmware"
  2025. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:41
  2026. msgctxt "@label"
  2027. 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."
  2028. 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."
  2029. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:51
  2030. msgctxt "@label"
  2031. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  2032. msgstr "O firmware que já vêm embutido nas novas impressoras funciona, mas novas versões costumam ter mais recursos, correções e melhorias."
  2033. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:65
  2034. msgctxt "@action:button"
  2035. msgid "Automatically upgrade Firmware"
  2036. msgstr "Automaticamente atualizar Firmware"
  2037. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:75
  2038. msgctxt "@action:button"
  2039. msgid "Upload custom Firmware"
  2040. msgstr "Carregar Firmware personalizado"
  2041. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:87
  2042. msgctxt "@title:window"
  2043. msgid "Select custom firmware"
  2044. msgstr "Selecionar firmware personalizado"
  2045. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:37
  2046. msgctxt "@label"
  2047. msgid "Please select any upgrades made to this Ultimaker Original"
  2048. msgstr "Por favor selecionar quaisquer atualizações feitas nesta Ultimaker Original"
  2049. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:45
  2050. msgctxt "@label"
  2051. msgid "Heated Build Plate (official kit or self-built)"
  2052. msgstr "Mesa de Impressão Aquecida (kit Oficial ou auto-construído)"
  2053. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:27
  2054. msgctxt "@title"
  2055. msgid "Check Printer"
  2056. msgstr "Verificar Impressora"
  2057. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:39
  2058. msgctxt "@label"
  2059. msgid "It's a good idea to do a few sanity checks on your Ultimaker. You can skip this step if you know your machine is functional"
  2060. msgstr "É uma boa idéia fazer algumas verificações de sanidade em sua Ultimaker. Você pode pular este passo se você sabe que sua máquina está funcional"
  2061. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:53
  2062. msgctxt "@action:button"
  2063. msgid "Start Printer Check"
  2064. msgstr "Iniciar Verificação da Impressora"
  2065. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:80
  2066. msgctxt "@label"
  2067. msgid "Connection: "
  2068. msgstr "Conexão: "
  2069. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:89
  2070. msgctxt "@info:status"
  2071. msgid "Connected"
  2072. msgstr "Conectado"
  2073. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:89
  2074. msgctxt "@info:status"
  2075. msgid "Not connected"
  2076. msgstr "Desconectado"
  2077. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:99
  2078. msgctxt "@label"
  2079. msgid "Min endstop X: "
  2080. msgstr "Fim de curso mín. em X: "
  2081. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:109
  2082. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:130
  2083. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:151
  2084. msgctxt "@info:status"
  2085. msgid "Works"
  2086. msgstr "Funciona"
  2087. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:109
  2088. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:130
  2089. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:151
  2090. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:173
  2091. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:234
  2092. msgctxt "@info:status"
  2093. msgid "Not checked"
  2094. msgstr "Não verificado"
  2095. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:120
  2096. msgctxt "@label"
  2097. msgid "Min endstop Y: "
  2098. msgstr "Fim de curso mín. em Y: "
  2099. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:141
  2100. msgctxt "@label"
  2101. msgid "Min endstop Z: "
  2102. msgstr "Fim de curso mín. em Z: "
  2103. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:163
  2104. msgctxt "@label"
  2105. msgid "Nozzle temperature check: "
  2106. msgstr "Verificação da temperatura do bico: "
  2107. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:187
  2108. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:248
  2109. msgctxt "@action:button"
  2110. msgid "Stop Heating"
  2111. msgstr "Parar Aquecimento"
  2112. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:187
  2113. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:248
  2114. msgctxt "@action:button"
  2115. msgid "Start Heating"
  2116. msgstr "Iniciar Aquecimento"
  2117. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:223
  2118. msgctxt "@label"
  2119. msgid "Build plate temperature check:"
  2120. msgstr "Verificação da temperatura da mesa de impressão:"
  2121. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:234
  2122. msgctxt "@info:status"
  2123. msgid "Checked"
  2124. msgstr "Verificado"
  2125. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:284
  2126. msgctxt "@label"
  2127. msgid "Everything is in order! You're done with your CheckUp."
  2128. msgstr "Tudo está em ordem! A verificação terminou."
  2129. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:119
  2130. msgctxt "@label:MonitorStatus"
  2131. msgid "Not connected to a printer"
  2132. msgstr "Não conectado a nenhuma impressora."
  2133. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:123
  2134. msgctxt "@label:MonitorStatus"
  2135. msgid "Printer does not accept commands"
  2136. msgstr "A impressora não aceita comandos"
  2137. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:133
  2138. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:197
  2139. msgctxt "@label:MonitorStatus"
  2140. msgid "In maintenance. Please check the printer"
  2141. msgstr "Em manutenção. Por favor verifique a impressora"
  2142. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:144
  2143. msgctxt "@label:MonitorStatus"
  2144. msgid "Lost connection with the printer"
  2145. msgstr "A conexão à impressora foi perdida"
  2146. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:146
  2147. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:187
  2148. msgctxt "@label:MonitorStatus"
  2149. msgid "Printing..."
  2150. msgstr "Imprimindo..."
  2151. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:149
  2152. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:189
  2153. msgctxt "@label:MonitorStatus"
  2154. msgid "Paused"
  2155. msgstr "Pausado"
  2156. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:152
  2157. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:191
  2158. msgctxt "@label:MonitorStatus"
  2159. msgid "Preparing..."
  2160. msgstr "Preparando..."
  2161. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:154
  2162. msgctxt "@label:MonitorStatus"
  2163. msgid "Please remove the print"
  2164. msgstr "Por favor remova a impressão"
  2165. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325
  2166. msgctxt "@label"
  2167. msgid "Abort Print"
  2168. msgstr "Abortar Impressão"
  2169. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337
  2170. msgctxt "@label"
  2171. msgid "Are you sure you want to abort the print?"
  2172. msgstr "Tem certeza que deseja abortar a impressão?"
  2173. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:15
  2174. msgctxt "@title:window"
  2175. msgid "Discard or Keep changes"
  2176. msgstr "Descartar ou Manter alterações"
  2177. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:57
  2178. msgctxt "@text:window"
  2179. msgid ""
  2180. "You have customized some profile settings.\n"
  2181. "Would you like to keep or discard those settings?"
  2182. msgstr ""
  2183. "Você personalizou alguns ajustes de perfil.\n"
  2184. "Gostaria de manter ou descartar estes ajustes?"
  2185. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110
  2186. msgctxt "@title:column"
  2187. msgid "Profile settings"
  2188. msgstr "Ajustes de perfil"
  2189. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:117
  2190. msgctxt "@title:column"
  2191. msgid "Default"
  2192. msgstr "Default"
  2193. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:124
  2194. msgctxt "@title:column"
  2195. msgid "Customized"
  2196. msgstr "Personalizado"
  2197. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157
  2198. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:639
  2199. msgctxt "@option:discardOrKeep"
  2200. msgid "Always ask me this"
  2201. msgstr "Sempre perguntar"
  2202. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158
  2203. msgctxt "@option:discardOrKeep"
  2204. msgid "Discard and never ask again"
  2205. msgstr "Descartar e não perguntar novamente"
  2206. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159
  2207. msgctxt "@option:discardOrKeep"
  2208. msgid "Keep and never ask again"
  2209. msgstr "Manter e não perguntar novamente"
  2210. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:196
  2211. msgctxt "@action:button"
  2212. msgid "Discard"
  2213. msgstr "Descartar"
  2214. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:209
  2215. msgctxt "@action:button"
  2216. msgid "Keep"
  2217. msgstr "Manter"
  2218. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:222
  2219. msgctxt "@action:button"
  2220. msgid "Create New Profile"
  2221. msgstr "Criar Novo Perfil"
  2222. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:71
  2223. msgctxt "@title"
  2224. msgid "Information"
  2225. msgstr "Informação"
  2226. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:100
  2227. msgctxt "@title:window"
  2228. msgid "Confirm Diameter Change"
  2229. msgstr "Confirmar Mudança de Diâmetro"
  2230. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  2231. msgctxt "@label (%1 is a number)"
  2232. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2233. msgstr "O novo diâmetro de filamento está ajustado em %1 mm, que não é compatível com o extrusor atual. Você deseja continuar?"
  2234. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:133
  2235. msgctxt "@label"
  2236. msgid "Display Name"
  2237. msgstr "Exibir Nome"
  2238. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:143
  2239. msgctxt "@label"
  2240. msgid "Brand"
  2241. msgstr "Marca"
  2242. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:153
  2243. msgctxt "@label"
  2244. msgid "Material Type"
  2245. msgstr "Tipo de Material"
  2246. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:162
  2247. msgctxt "@label"
  2248. msgid "Color"
  2249. msgstr "Cor"
  2250. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:212
  2251. msgctxt "@label"
  2252. msgid "Properties"
  2253. msgstr "Propriedades"
  2254. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:214
  2255. msgctxt "@label"
  2256. msgid "Density"
  2257. msgstr "Densidade"
  2258. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:229
  2259. msgctxt "@label"
  2260. msgid "Diameter"
  2261. msgstr "Diâmetro"
  2262. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:263
  2263. msgctxt "@label"
  2264. msgid "Filament Cost"
  2265. msgstr "Custo do Filamento"
  2266. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:280
  2267. msgctxt "@label"
  2268. msgid "Filament weight"
  2269. msgstr "Peso do Filamento"
  2270. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:298
  2271. msgctxt "@label"
  2272. msgid "Filament length"
  2273. msgstr "Comprimento do Filamento"
  2274. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:307
  2275. msgctxt "@label"
  2276. msgid "Cost per Meter"
  2277. msgstr "Custo por Metro"
  2278. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:321
  2279. msgctxt "@label"
  2280. msgid "This material is linked to %1 and shares some of its properties."
  2281. msgstr "Este material está vinculado a %1 e compartilha algumas de suas propriedades."
  2282. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:328
  2283. msgctxt "@label"
  2284. msgid "Unlink Material"
  2285. msgstr "Desvincular Material"
  2286. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:339
  2287. msgctxt "@label"
  2288. msgid "Description"
  2289. msgstr "Descrição"
  2290. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:352
  2291. msgctxt "@label"
  2292. msgid "Adhesion Information"
  2293. msgstr "Informação sobre Aderência"
  2294. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:378
  2295. msgctxt "@label"
  2296. msgid "Print settings"
  2297. msgstr "Ajustes de impressão"
  2298. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:84
  2299. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35
  2300. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72
  2301. msgctxt "@action:button"
  2302. msgid "Activate"
  2303. msgstr "Ativar"
  2304. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  2305. msgctxt "@action:button"
  2306. msgid "Create"
  2307. msgstr "Criar"
  2308. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:114
  2309. msgctxt "@action:button"
  2310. msgid "Duplicate"
  2311. msgstr "Duplicar"
  2312. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  2313. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  2314. msgctxt "@action:button"
  2315. msgid "Import"
  2316. msgstr "Importar"
  2317. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:203
  2318. msgctxt "@action:label"
  2319. msgid "Printer"
  2320. msgstr "Impressora"
  2321. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:262
  2322. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239
  2323. msgctxt "@title:window"
  2324. msgid "Confirm Remove"
  2325. msgstr "Confirmar Remoção"
  2326. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:263
  2327. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240
  2328. msgctxt "@label (%1 is object name)"
  2329. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  2330. msgstr "Tem certeza que deseja remover %1? Isto não poderá ser desfeito!"
  2331. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:277
  2332. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:285
  2333. msgctxt "@title:window"
  2334. msgid "Import Material"
  2335. msgstr "Importar Material"
  2336. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:286
  2337. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2338. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  2339. msgstr "Não foi possível importar material <filename>%1</filename>: <message>%2</message>"
  2340. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:290
  2341. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2342. msgid "Successfully imported material <filename>%1</filename>"
  2343. msgstr "Material <filename>%1</filename> importado com sucesso"
  2344. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:308
  2345. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:316
  2346. msgctxt "@title:window"
  2347. msgid "Export Material"
  2348. msgstr "Exportar Material"
  2349. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:320
  2350. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  2351. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  2352. msgstr "Falha em exportar material para <filename>%1</filename>: <message>%2</message>"
  2353. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:326
  2354. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2355. msgid "Successfully exported material to <filename>%1</filename>"
  2356. msgstr "Material exportado para <filename>%1</filename> com sucesso"
  2357. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  2358. msgctxt "@title:tab"
  2359. msgid "Setting Visibility"
  2360. msgstr "Visibilidade dos Ajustes"
  2361. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:50
  2362. msgctxt "@label:textbox"
  2363. msgid "Check all"
  2364. msgstr "Verificar tudo"
  2365. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:47
  2366. msgctxt "@info:status"
  2367. msgid "Calculated"
  2368. msgstr "Calculado"
  2369. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:60
  2370. msgctxt "@title:column"
  2371. msgid "Setting"
  2372. msgstr "Ajustes"
  2373. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:67
  2374. msgctxt "@title:column"
  2375. msgid "Profile"
  2376. msgstr "Perfil"
  2377. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:74
  2378. msgctxt "@title:column"
  2379. msgid "Current"
  2380. msgstr "Atual"
  2381. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  2382. msgctxt "@title:column"
  2383. msgid "Unit"
  2384. msgstr "Unidade"
  2385. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2386. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:537
  2387. msgctxt "@title:tab"
  2388. msgid "General"
  2389. msgstr "Geral"
  2390. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:141
  2391. msgctxt "@label"
  2392. msgid "Interface"
  2393. msgstr "Interface"
  2394. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:152
  2395. msgctxt "@label"
  2396. msgid "Language:"
  2397. msgstr "Idioma:"
  2398. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:220
  2399. msgctxt "@label"
  2400. msgid "Currency:"
  2401. msgstr "Moeda:"
  2402. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:234
  2403. msgctxt "@label"
  2404. msgid "Theme:"
  2405. msgstr "Tema:"
  2406. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:294
  2407. msgctxt "@label"
  2408. msgid "You will need to restart the application for these changes to have effect."
  2409. msgstr "Você precisará reiniciar a aplicação para que essas mudanças tenham efeito."
  2410. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:311
  2411. msgctxt "@info:tooltip"
  2412. msgid "Slice automatically when changing settings."
  2413. msgstr "Fatiar automaticamente quando mudar ajustes."
  2414. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:319
  2415. msgctxt "@option:check"
  2416. msgid "Slice automatically"
  2417. msgstr "Fatiar automaticamente"
  2418. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
  2419. msgctxt "@label"
  2420. msgid "Viewport behavior"
  2421. msgstr "Comportamento da área de visualização"
  2422. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  2423. msgctxt "@info:tooltip"
  2424. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  2425. msgstr "Ressaltar áreas sem suporte do modelo em vermelho. Sem suporte, estas áreas não serão impressas corretamente."
  2426. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
  2427. msgctxt "@option:check"
  2428. msgid "Display overhang"
  2429. msgstr "Exibir seções pendentes"
  2430. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:357
  2431. msgctxt "@info:tooltip"
  2432. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  2433. msgstr "Move a câmera de modo que o modelo fique no centro da visão quando for selecionado."
  2434. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:362
  2435. msgctxt "@action:button"
  2436. msgid "Center camera when item is selected"
  2437. msgstr "Centralizar câmera quanto o item é selecionado"
  2438. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:371
  2439. msgctxt "@info:tooltip"
  2440. msgid "Should the default zoom behavior of cura be inverted?"
  2441. msgstr "O comportamento default de ampliação deve ser invertido?"
  2442. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:376
  2443. msgctxt "@action:button"
  2444. msgid "Invert the direction of camera zoom."
  2445. msgstr "Inverter a direção da ampliação de câmera."
  2446. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
  2447. msgctxt "@info:tooltip"
  2448. msgid "Should zooming move in the direction of the mouse?"
  2449. msgstr "A ampliação (zoom) deve se mover na direção do mouse?"
  2450. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
  2451. msgctxt "@action:button"
  2452. msgid "Zoom toward mouse direction"
  2453. msgstr "Ampliar na direção do mouse"
  2454. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401
  2455. msgctxt "@info:tooltip"
  2456. msgid "Should models on the platform be moved so that they no longer intersect?"
  2457. msgstr "Os modelos devem ser movidos na plataforma de modo que não se sobreponham?"
  2458. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:406
  2459. msgctxt "@option:check"
  2460. msgid "Ensure models are kept apart"
  2461. msgstr "Assegurar que os modelos sejam mantidos separados"
  2462. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:415
  2463. msgctxt "@info:tooltip"
  2464. msgid "Should models on the platform be moved down to touch the build plate?"
  2465. msgstr "Os modelos devem ser movidos pra baixo pra se assentar na plataforma de impressão?"
  2466. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:420
  2467. msgctxt "@option:check"
  2468. msgid "Automatically drop models to the build plate"
  2469. msgstr "Automaticamente fazer os modelos caírem na mesa de impressão."
  2470. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432
  2471. msgctxt "@info:tooltip"
  2472. msgid "Show caution message in g-code reader."
  2473. msgstr "Exibir mensagem de alerta no leitor de G-Code."
  2474. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:441
  2475. msgctxt "@option:check"
  2476. msgid "Caution message in g-code reader"
  2477. msgstr "Mensagem de alera no leitor de G-Code"
  2478. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  2479. msgctxt "@info:tooltip"
  2480. msgid "Should layer be forced into compatibility mode?"
  2481. msgstr "A Visão de Camada deve ser forçada a ficar em modo de compatibilidade?"
  2482. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  2483. msgctxt "@option:check"
  2484. msgid "Force layer view compatibility mode (restart required)"
  2485. msgstr "Forçar modo de compatibilidade da visão de camadas (requer reinício)"
  2486. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
  2487. msgctxt "@label"
  2488. msgid "Opening and saving files"
  2489. msgstr "Abrindo e salvando arquivos"
  2490. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477
  2491. msgctxt "@info:tooltip"
  2492. msgid "Should models be scaled to the build volume if they are too large?"
  2493. msgstr "Os modelos devem ser redimensionados dentro do volume de impressão se forem muito grandes?"
  2494. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482
  2495. msgctxt "@option:check"
  2496. msgid "Scale large models"
  2497. msgstr "Redimensionar modelos grandes"
  2498. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:492
  2499. msgctxt "@info:tooltip"
  2500. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  2501. 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?"
  2502. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:497
  2503. msgctxt "@option:check"
  2504. msgid "Scale extremely small models"
  2505. msgstr "Redimensionar modelos minúsculos"
  2506. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:507
  2507. msgctxt "@info:tooltip"
  2508. msgid "Should models be selected after they are loaded?"
  2509. msgstr "Os modelos devem ser selecionados após serem carregados?"
  2510. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:512
  2511. msgctxt "@option:check"
  2512. msgid "Select models when loaded"
  2513. msgstr "Selecionar modelos ao carregar"
  2514. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:522
  2515. msgctxt "@info:tooltip"
  2516. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2517. msgstr "Um prefixo baseado no nome da impressora deve ser adicionado ao nome do trabalho de impressão automaticamente?"
  2518. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:527
  2519. msgctxt "@option:check"
  2520. msgid "Add machine prefix to job name"
  2521. msgstr "Adicionar prefixo de máquina ao nome do trabalho"
  2522. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:537
  2523. msgctxt "@info:tooltip"
  2524. msgid "Should a summary be shown when saving a project file?"
  2525. msgstr "Um resumo deve ser exibido ao salvar um arquivo de projeto?"
  2526. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541
  2527. msgctxt "@option:check"
  2528. msgid "Show summary dialog when saving project"
  2529. msgstr "Exibir diálogo de resumo ao salvar projeto"
  2530. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:551
  2531. msgctxt "@info:tooltip"
  2532. msgid "Default behavior when opening a project file"
  2533. msgstr "Comportamento default ao abrir um arquivo de projeto"
  2534. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:559
  2535. msgctxt "@window:text"
  2536. msgid "Default behavior when opening a project file: "
  2537. msgstr "Comportamento default ao abrir um arquivo de projeto"
  2538. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573
  2539. msgctxt "@option:openProject"
  2540. msgid "Always ask me this"
  2541. msgstr "Sempre me perguntar"
  2542. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574
  2543. msgctxt "@option:openProject"
  2544. msgid "Always open as a project"
  2545. msgstr "Sempre abrir como projeto"
  2546. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  2547. msgctxt "@option:openProject"
  2548. msgid "Always import models"
  2549. msgstr "Sempre importar modelos"
  2550. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:611
  2551. msgctxt "@info:tooltip"
  2552. 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."
  2553. 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."
  2554. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  2555. msgctxt "@label"
  2556. msgid "Profiles"
  2557. msgstr "Perfis"
  2558. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:625
  2559. msgctxt "@window:text"
  2560. msgid "Default behavior for changed setting values when switching to a different profile: "
  2561. msgstr "Comportamento default para valores de configuração alterados ao mudar para um perfil diferente: "
  2562. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:640
  2563. msgctxt "@option:discardOrKeep"
  2564. msgid "Always discard changed settings"
  2565. msgstr "Sempre descartar alterações da configuração"
  2566. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641
  2567. msgctxt "@option:discardOrKeep"
  2568. msgid "Always transfer changed settings to new profile"
  2569. msgstr "Sempre transferir as alterações para o novo perfil"
  2570. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:675
  2571. msgctxt "@label"
  2572. msgid "Privacy"
  2573. msgstr "Privacidade"
  2574. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683
  2575. msgctxt "@info:tooltip"
  2576. msgid "Should Cura check for updates when the program is started?"
  2577. msgstr "O Cura deve verificar novas atualizações quando o programa for iniciado?"
  2578. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688
  2579. msgctxt "@option:check"
  2580. msgid "Check for updates on start"
  2581. msgstr "Verificar atualizações na inicialização"
  2582. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699
  2583. msgctxt "@info:tooltip"
  2584. 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."
  2585. 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."
  2586. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:704
  2587. msgctxt "@option:check"
  2588. msgid "Send (anonymous) print information"
  2589. msgstr "Enviar informação (anônima) de impressão."
  2590. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:713
  2591. msgctxt "@action:button"
  2592. msgid "More information"
  2593. msgstr "Mais informações"
  2594. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:731
  2595. msgctxt "@label"
  2596. msgid "Experimental"
  2597. msgstr "Experimental"
  2598. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738
  2599. msgctxt "@info:tooltip"
  2600. msgid "Use multi build plate functionality"
  2601. msgstr "Usar funcionalidade de plataforma múltipla de impressão"
  2602. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743
  2603. msgctxt "@option:check"
  2604. msgid "Use multi build plate functionality (restart required)"
  2605. msgstr "Usar funcionalidade de plataforma múltipla de impressão (reinício requerido)"
  2606. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2607. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:542
  2608. msgctxt "@title:tab"
  2609. msgid "Printers"
  2610. msgstr "Impressoras"
  2611. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2612. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129
  2613. msgctxt "@action:button"
  2614. msgid "Rename"
  2615. msgstr "Renomear"
  2616. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:147
  2617. msgctxt "@label"
  2618. msgid "Printer type:"
  2619. msgstr "Tipo de impressora:"
  2620. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:156
  2621. msgctxt "@label"
  2622. msgid "Connection:"
  2623. msgstr "Conexão:"
  2624. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:162
  2625. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:47
  2626. msgctxt "@info:status"
  2627. msgid "The printer is not connected."
  2628. msgstr "A impressora não está conectada."
  2629. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:168
  2630. msgctxt "@label"
  2631. msgid "State:"
  2632. msgstr "Estado:"
  2633. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:181
  2634. msgctxt "@label:MonitorStatus"
  2635. msgid "Waiting for a printjob"
  2636. msgstr "Esperando um trabalho de impressão"
  2637. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:193
  2638. msgctxt "@label:MonitorStatus"
  2639. msgid "Waiting for someone to clear the build plate"
  2640. msgstr "Esperando que alguém esvazie a mesa de impressão"
  2641. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:199
  2642. msgctxt "@label:MonitorStatus"
  2643. msgid "Aborting print..."
  2644. msgstr "Abortando impressão..."
  2645. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36
  2646. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:546
  2647. msgctxt "@title:tab"
  2648. msgid "Profiles"
  2649. msgstr "Perfis"
  2650. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  2651. msgctxt "@label"
  2652. msgid "Create"
  2653. msgstr "Criar"
  2654. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:102
  2655. msgctxt "@label"
  2656. msgid "Duplicate"
  2657. msgstr "Duplicar"
  2658. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  2659. msgctxt "@title:window"
  2660. msgid "Create Profile"
  2661. msgstr "Criar Perfil"
  2662. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:225
  2663. msgctxt "@title:window"
  2664. msgid "Duplicate Profile"
  2665. msgstr "Duplicar Perfil"
  2666. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256
  2667. msgctxt "@title:window"
  2668. msgid "Rename Profile"
  2669. msgstr "Renomear Perfil"
  2670. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:269
  2671. msgctxt "@title:window"
  2672. msgid "Import Profile"
  2673. msgstr "Importar Perfil"
  2674. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:295
  2675. msgctxt "@title:window"
  2676. msgid "Export Profile"
  2677. msgstr "Exportar Perfil"
  2678. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:350
  2679. msgctxt "@label %1 is printer name"
  2680. msgid "Printer: %1"
  2681. msgstr "Impressora: %1"
  2682. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  2683. msgctxt "@label"
  2684. msgid "Protected profiles"
  2685. msgstr "Perfis Protegidos"
  2686. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  2687. msgctxt "@label"
  2688. msgid "Custom profiles"
  2689. msgstr "Perfis personalizados"
  2690. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:480
  2691. msgctxt "@action:button"
  2692. msgid "Update profile with current settings/overrides"
  2693. msgstr "Atualizar perfil com ajustes/sobreposições atuais"
  2694. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:487
  2695. msgctxt "@action:button"
  2696. msgid "Discard current changes"
  2697. msgstr "Descartar ajustes atuais"
  2698. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:504
  2699. msgctxt "@action:label"
  2700. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  2701. msgstr "Este perfil usa os defaults especificados pela impressora, portanto não tem ajustes/sobreposições na lista abaixo."
  2702. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:511
  2703. msgctxt "@action:label"
  2704. msgid "Your current settings match the selected profile."
  2705. msgstr "Seus ajustes atuais coincidem com o perfil selecionado."
  2706. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:530
  2707. msgctxt "@title:tab"
  2708. msgid "Global Settings"
  2709. msgstr "Ajustes globais"
  2710. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18
  2711. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:946
  2712. msgctxt "@title:window"
  2713. msgid "Add Printer"
  2714. msgstr "Adicionar Impressora"
  2715. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:194
  2716. msgctxt "@label"
  2717. msgid "Printer Name:"
  2718. msgstr "Nome da Impressora:"
  2719. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:217
  2720. msgctxt "@action:button"
  2721. msgid "Add Printer"
  2722. msgstr "Adicionar Impressora"
  2723. #: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:84
  2724. msgctxt "@text Print job name"
  2725. msgid "Untitled"
  2726. msgstr "Sem Título"
  2727. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15
  2728. msgctxt "@title:window"
  2729. msgid "About Cura"
  2730. msgstr "Sobre o Cura"
  2731. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:43
  2732. msgctxt "@label"
  2733. msgid "version: %1"
  2734. msgstr "versão: %1"
  2735. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:56
  2736. msgctxt "@label"
  2737. msgid "End-to-end solution for fused filament 3D printing."
  2738. msgstr "Solução completa para impressão 3D com filamento fundido."
  2739. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:69
  2740. msgctxt "@info:credit"
  2741. msgid ""
  2742. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2743. "Cura proudly uses the following open source projects:"
  2744. msgstr ""
  2745. "Cura é desenvolvido pela Ultimaker B.V. em cooperação com a comunidade.\n"
  2746. "Cura orgulhosamente usa os seguintes projetos open-source:"
  2747. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118
  2748. msgctxt "@label"
  2749. msgid "Graphical user interface"
  2750. msgstr "Interface Gráfica de usuário"
  2751. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:119
  2752. msgctxt "@label"
  2753. msgid "Application framework"
  2754. msgstr "Framework de Aplicações"
  2755. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:120
  2756. msgctxt "@label"
  2757. msgid "G-code generator"
  2758. msgstr "Gerador de G-Code"
  2759. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:121
  2760. msgctxt "@label"
  2761. msgid "Interprocess communication library"
  2762. msgstr "Biblioteca de comunicação interprocessos"
  2763. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:123
  2764. msgctxt "@label"
  2765. msgid "Programming language"
  2766. msgstr "Linguagem de Programação"
  2767. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:124
  2768. msgctxt "@label"
  2769. msgid "GUI framework"
  2770. msgstr "Framework Gráfica"
  2771. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:125
  2772. msgctxt "@label"
  2773. msgid "GUI framework bindings"
  2774. msgstr "Ligações da Framework Gráfica"
  2775. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:126
  2776. msgctxt "@label"
  2777. msgid "C/C++ Binding library"
  2778. msgstr "Biblioteca de Ligações C/C++"
  2779. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:127
  2780. msgctxt "@label"
  2781. msgid "Data interchange format"
  2782. msgstr "Formato de Intercâmbio de Dados"
  2783. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:128
  2784. msgctxt "@label"
  2785. msgid "Support library for scientific computing"
  2786. msgstr "Bibliteca de suporte para computação científica"
  2787. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:129
  2788. msgctxt "@label"
  2789. msgid "Support library for faster math"
  2790. msgstr "Biblioteca de suporte para matemática acelerada"
  2791. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:130
  2792. msgctxt "@label"
  2793. msgid "Support library for handling STL files"
  2794. msgstr "Biblioteca de suporte para manuseamento de arquivos STL"
  2795. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:131
  2796. msgctxt "@label"
  2797. msgid "Support library for handling 3MF files"
  2798. msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF"
  2799. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:132
  2800. msgctxt "@label"
  2801. msgid "Serial communication library"
  2802. msgstr "Biblioteca de comunicação serial"
  2803. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:133
  2804. msgctxt "@label"
  2805. msgid "ZeroConf discovery library"
  2806. msgstr "Biblioteca de descoberta 'ZeroConf'"
  2807. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:134
  2808. msgctxt "@label"
  2809. msgid "Polygon clipping library"
  2810. msgstr "Biblioteca de recorte de polígonos"
  2811. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:135
  2812. msgctxt "@Label"
  2813. msgid "Python HTTP library"
  2814. msgstr "Biblioteca de HTTP Python"
  2815. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:137
  2816. msgctxt "@label"
  2817. msgid "Font"
  2818. msgstr "Fonte"
  2819. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:138
  2820. msgctxt "@label"
  2821. msgid "SVG icons"
  2822. msgstr "Ícones SVG"
  2823. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:139
  2824. msgctxt "@label"
  2825. msgid "Linux cross-distribution application deployment"
  2826. msgstr "Implementação de aplicação multidistribuição em Linux"
  2827. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:42
  2828. msgctxt "@label"
  2829. msgid "Profile:"
  2830. msgstr "Perfil:"
  2831. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:103
  2832. msgctxt "@tooltip"
  2833. msgid ""
  2834. "Some setting/override values are different from the values stored in the profile.\n"
  2835. "\n"
  2836. "Click to open the profile manager."
  2837. msgstr ""
  2838. "Alguns ajustes/sobreposições têm valores diferentes dos que estão armazenados no perfil.\n"
  2839. "\n"
  2840. "Clique para abrir o gerenciador de perfis."
  2841. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199
  2842. msgctxt "@label:textbox"
  2843. msgid "Search..."
  2844. msgstr "Buscar..."
  2845. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:544
  2846. msgctxt "@action:menu"
  2847. msgid "Copy value to all extruders"
  2848. msgstr "Copiar valor para todos os extrusores"
  2849. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:553
  2850. msgctxt "@action:menu"
  2851. msgid "Copy all changed values to all extruders"
  2852. msgstr "Copiar todos os valores alterados para todos os extrusores"
  2853. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590
  2854. msgctxt "@action:menu"
  2855. msgid "Hide this setting"
  2856. msgstr "Ocultar este ajuste"
  2857. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:608
  2858. msgctxt "@action:menu"
  2859. msgid "Don't show this setting"
  2860. msgstr "Não exibir este ajuste"
  2861. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:612
  2862. msgctxt "@action:menu"
  2863. msgid "Keep this setting visible"
  2864. msgstr "Manter este ajuste visível"
  2865. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:636
  2866. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:416
  2867. msgctxt "@action:menu"
  2868. msgid "Configure setting visibility..."
  2869. msgstr "Configurar a visibilidade dos ajustes..."
  2870. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:643
  2871. msgctxt "@action:inmenu"
  2872. msgid "Collapse All"
  2873. msgstr "Encolher Todos"
  2874. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:648
  2875. msgctxt "@action:inmenu"
  2876. msgid "Expand All"
  2877. msgstr "Expandir Todos"
  2878. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingCategory.qml:249
  2879. msgctxt "@label"
  2880. msgid ""
  2881. "Some hidden settings use values different from their normal calculated value.\n"
  2882. "\n"
  2883. "Click to make these settings visible."
  2884. msgstr ""
  2885. "Alguns ajustes ocultados usam valores diferentes de seu valor calculado normal.\n"
  2886. "\n"
  2887. "Clique para tornar estes ajustes visíveis. "
  2888. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61
  2889. msgctxt "@label Header for list of settings."
  2890. msgid "Affects"
  2891. msgstr "Afeta"
  2892. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:66
  2893. msgctxt "@label Header for list of settings."
  2894. msgid "Affected By"
  2895. msgstr "Afetado Por"
  2896. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:154
  2897. msgctxt "@label"
  2898. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2899. msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Modificá-lo aqui mudará o valor para todos."
  2900. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:157
  2901. msgctxt "@label"
  2902. msgid "The value is resolved from per-extruder values "
  2903. msgstr "O valor é resolvido de valores específicos de cada extrusor"
  2904. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:188
  2905. msgctxt "@label"
  2906. msgid ""
  2907. "This setting has a value that is different from the profile.\n"
  2908. "\n"
  2909. "Click to restore the value of the profile."
  2910. msgstr ""
  2911. "Este ajuste tem um valor que é diferente do perfil.\n"
  2912. "\n"
  2913. "Clique para restaurar o valor do perfil."
  2914. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286
  2915. msgctxt "@label"
  2916. msgid ""
  2917. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2918. "\n"
  2919. "Click to restore the calculated value."
  2920. msgstr ""
  2921. "Este ajuste é normalmente calculado, mas atualmente tem um conjunto absoluto de valores.\n"
  2922. "\n"
  2923. "Clique para restaurar o valor calculado."
  2924. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129
  2925. msgctxt "@label"
  2926. msgid "Printer control"
  2927. msgstr "Controle da Impressora"
  2928. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:144
  2929. msgctxt "@label"
  2930. msgid "Jog Position"
  2931. msgstr "Posição de Trote"
  2932. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2933. msgctxt "@label"
  2934. msgid "X/Y"
  2935. msgstr "X/Y"
  2936. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:269
  2937. msgctxt "@label"
  2938. msgid "Z"
  2939. msgstr "Z"
  2940. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:334
  2941. msgctxt "@label"
  2942. msgid "Jog Distance"
  2943. msgstr "Distância de Trote"
  2944. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:443
  2945. msgctxt "@label"
  2946. msgid "Send G-code"
  2947. msgstr "Enviar G-Code"
  2948. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:506
  2949. msgctxt "@tooltip of G-code command input"
  2950. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2951. msgstr "Enviar comando G-Code personalizado para a impressora conectada. Pressione 'enter' para enviar o comando."
  2952. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36
  2953. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:272
  2954. msgctxt "@label"
  2955. msgid "Extruder"
  2956. msgstr "Extrusor"
  2957. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:66
  2958. msgctxt "@tooltip"
  2959. 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."
  2960. 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."
  2961. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:98
  2962. msgctxt "@tooltip"
  2963. msgid "The current temperature of this hotend."
  2964. msgstr "A temperatura atual deste hotend"
  2965. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:172
  2966. msgctxt "@tooltip of temperature input"
  2967. msgid "The temperature to pre-heat the hotend to."
  2968. msgstr "A temperatura com a qual pré-aquecer o hotend."
  2969. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:336
  2970. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:331
  2971. msgctxt "@button Cancel pre-heating"
  2972. msgid "Cancel"
  2973. msgstr "Cancelar"
  2974. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:339
  2975. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:334
  2976. msgctxt "@button"
  2977. msgid "Pre-heat"
  2978. msgstr "Pré-aquecer"
  2979. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:365
  2980. msgctxt "@tooltip of pre-heat"
  2981. 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."
  2982. 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."
  2983. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:401
  2984. msgctxt "@tooltip"
  2985. msgid "The colour of the material in this extruder."
  2986. msgstr "A cor do material neste extrusor."
  2987. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:433
  2988. msgctxt "@tooltip"
  2989. msgid "The material in this extruder."
  2990. msgstr "O material neste extrusor."
  2991. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:465
  2992. msgctxt "@tooltip"
  2993. msgid "The nozzle inserted in this extruder."
  2994. msgstr "O bico inserido neste extrusor."
  2995. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2996. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:493
  2997. msgctxt "@label"
  2998. msgid "Build plate"
  2999. msgstr "Mesa de Impressão"
  3000. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  3001. msgctxt "@tooltip"
  3002. 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."
  3003. msgstr "A temperatura-alvo da mesa aquecida. A mesa aquecerá ou resfriará para esta temperatura. Se for zero, o aquecimento é desligado."
  3004. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:87
  3005. msgctxt "@tooltip"
  3006. msgid "The current temperature of the heated bed."
  3007. msgstr "A temperatura atual da mesa aquecida."
  3008. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:160
  3009. msgctxt "@tooltip of temperature input"
  3010. msgid "The temperature to pre-heat the bed to."
  3011. msgstr "A temperatura em que pré-aquecer a mesa."
  3012. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:360
  3013. msgctxt "@tooltip of pre-heat"
  3014. 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."
  3015. 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."
  3016. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3017. msgctxt "@label:category menu label"
  3018. msgid "Material"
  3019. msgstr "Material"
  3020. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:37
  3021. msgctxt "@label:category menu label"
  3022. msgid "Favorites"
  3023. msgstr "Favoritos"
  3024. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:61
  3025. msgctxt "@label:category menu label"
  3026. msgid "Generic"
  3027. msgstr "Genérico"
  3028. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3029. msgctxt "@label:category menu label"
  3030. msgid "Network enabled printers"
  3031. msgstr "Impressoras habilitadas pela rede"
  3032. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3033. msgctxt "@label:category menu label"
  3034. msgid "Local printers"
  3035. msgstr "Impressoras locais"
  3036. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3037. msgctxt "@title:menu menubar:toplevel"
  3038. msgid "&View"
  3039. msgstr "&Ver"
  3040. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:39
  3041. msgctxt "@action:inmenu menubar:view"
  3042. msgid "&Camera position"
  3043. msgstr "Posição da &câmera"
  3044. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:54
  3045. msgctxt "@action:inmenu menubar:view"
  3046. msgid "&Build plate"
  3047. msgstr "Plataforma de Impressão (&B)"
  3048. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3049. msgctxt "@action:inmenu"
  3050. msgid "Visible Settings"
  3051. msgstr "Ajustes Visíveis"
  3052. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:43
  3053. msgctxt "@action:inmenu"
  3054. msgid "Show All Settings"
  3055. msgstr "Mostrar Todos Os Ajustes"
  3056. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3057. msgctxt "@action:inmenu"
  3058. msgid "Manage Setting Visibility..."
  3059. msgstr "Gerenciar Visibilidade dos Ajustes..."
  3060. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3061. msgctxt "@label"
  3062. msgid "Print Selected Model With:"
  3063. msgid_plural "Print Selected Models With:"
  3064. msgstr[0] "Imprimir Modelo Selecionado Com:"
  3065. msgstr[1] "Imprimir Modelos Selecionados Com:"
  3066. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3067. msgctxt "@title:window"
  3068. msgid "Multiply Selected Model"
  3069. msgid_plural "Multiply Selected Models"
  3070. msgstr[0] "Multiplicar Modelo Selecionado"
  3071. msgstr[1] "Multiplicar Modelos Selecionados"
  3072. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3073. msgctxt "@label"
  3074. msgid "Number of Copies"
  3075. msgstr "Número de Cópias"
  3076. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:33
  3077. msgctxt "@label:header configurations"
  3078. msgid "Available configurations"
  3079. msgstr "Configurações disponíveis"
  3080. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml:28
  3081. msgctxt "@label:extruder label"
  3082. msgid "Extruder"
  3083. msgstr "Extrusor"
  3084. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/SyncButton.qml:16
  3085. msgctxt "@label:extruder label"
  3086. msgid "Yes"
  3087. msgstr "Sim"
  3088. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/SyncButton.qml:16
  3089. msgctxt "@label:extruder label"
  3090. msgid "No"
  3091. msgstr "Não"
  3092. #: /home/ruben/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:13
  3093. msgctxt "@title:menu menubar:file"
  3094. msgid "Open &Recent"
  3095. msgstr "Abrir &Recente"
  3096. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:150
  3097. msgctxt "@label:listbox"
  3098. msgid "Print Setup"
  3099. msgstr "Configuração de Impressão"
  3100. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:150
  3101. msgctxt "@label:listbox"
  3102. msgid ""
  3103. "Print Setup disabled\n"
  3104. "G-code files cannot be modified"
  3105. msgstr ""
  3106. "Configuração de Impressão desabilitada\n"
  3107. "Arquivos G-Code não podem ser modificados"
  3108. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359
  3109. msgctxt "@tooltip"
  3110. msgid "Time specification"
  3111. msgstr "Especificação de tempo"
  3112. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577
  3113. msgctxt "@tooltip"
  3114. msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  3115. msgstr "<b>Configuração Recomendada de Impressão</b><br/><br/>Imprimir com os ajustes recomendados para a impressora, material e qualidade selecionados."
  3116. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:582
  3117. msgctxt "@tooltip"
  3118. msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  3119. msgstr "<b>Configuração de Impressão Personalizada</b><br/><br/>Imprimir com controle fino sobre cada parte do processo de fatiamento."
  3120. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:106
  3121. msgctxt "@label"
  3122. msgid "Active print"
  3123. msgstr "Impressão ativa"
  3124. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:114
  3125. msgctxt "@label"
  3126. msgid "Job Name"
  3127. msgstr "Nome do Trabalho"
  3128. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:122
  3129. msgctxt "@label"
  3130. msgid "Printing Time"
  3131. msgstr "Tempo de Impressão"
  3132. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:130
  3133. msgctxt "@label"
  3134. msgid "Estimated time left"
  3135. msgstr "Tempo restante estimado"
  3136. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78
  3137. msgctxt "@action:inmenu"
  3138. msgid "Toggle Full Screen"
  3139. msgstr "Alternar Tela Cheia"
  3140. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85
  3141. msgctxt "@action:inmenu menubar:edit"
  3142. msgid "&Undo"
  3143. msgstr "Desfazer (&U)"
  3144. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:95
  3145. msgctxt "@action:inmenu menubar:edit"
  3146. msgid "&Redo"
  3147. msgstr "&Refazer"
  3148. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:105
  3149. msgctxt "@action:inmenu menubar:file"
  3150. msgid "&Quit"
  3151. msgstr "Sair (&Q)"
  3152. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113
  3153. msgctxt "@action:inmenu menubar:view"
  3154. msgid "3D View"
  3155. msgstr "Visão &3D"
  3156. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120
  3157. msgctxt "@action:inmenu menubar:view"
  3158. msgid "Front View"
  3159. msgstr "Visão Frontal"
  3160. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127
  3161. msgctxt "@action:inmenu menubar:view"
  3162. msgid "Top View"
  3163. msgstr "Visão Superior"
  3164. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134
  3165. msgctxt "@action:inmenu menubar:view"
  3166. msgid "Left Side View"
  3167. msgstr "Visão do Lado Esquerdo"
  3168. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141
  3169. msgctxt "@action:inmenu menubar:view"
  3170. msgid "Right Side View"
  3171. msgstr "Visão do Lado Direito"
  3172. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148
  3173. msgctxt "@action:inmenu"
  3174. msgid "Configure Cura..."
  3175. msgstr "Configurar Cura..."
  3176. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:155
  3177. msgctxt "@action:inmenu menubar:printer"
  3178. msgid "&Add Printer..."
  3179. msgstr "&Adicionar Impressora..."
  3180. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:161
  3181. msgctxt "@action:inmenu menubar:printer"
  3182. msgid "Manage Pr&inters..."
  3183. msgstr "Adm&inistrar Impressoras..."
  3184. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:168
  3185. msgctxt "@action:inmenu"
  3186. msgid "Manage Materials..."
  3187. msgstr "Administrar Materiais..."
  3188. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:176
  3189. msgctxt "@action:inmenu menubar:profile"
  3190. msgid "&Update profile with current settings/overrides"
  3191. msgstr "At&ualizar perfil com valores e sobreposições atuais"
  3192. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:184
  3193. msgctxt "@action:inmenu menubar:profile"
  3194. msgid "&Discard current changes"
  3195. msgstr "&Descartar ajustes atuais"
  3196. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:196
  3197. msgctxt "@action:inmenu menubar:profile"
  3198. msgid "&Create profile from current settings/overrides..."
  3199. msgstr "&Criar perfil a partir de ajustes/sobreposições atuais..."
  3200. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:202
  3201. msgctxt "@action:inmenu menubar:profile"
  3202. msgid "Manage Profiles..."
  3203. msgstr "Administrar perfis..."
  3204. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:209
  3205. msgctxt "@action:inmenu menubar:help"
  3206. msgid "Show Online &Documentation"
  3207. msgstr "Exibir &Documentação Online"
  3208. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:217
  3209. msgctxt "@action:inmenu menubar:help"
  3210. msgid "Report a &Bug"
  3211. msgstr "Relatar um &Bug"
  3212. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225
  3213. msgctxt "@action:inmenu menubar:help"
  3214. msgid "About..."
  3215. msgstr "Sobre..."
  3216. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232
  3217. msgctxt "@action:inmenu menubar:edit"
  3218. msgid "Delete Selected Model"
  3219. msgid_plural "Delete Selected Models"
  3220. msgstr[0] "Remover Modelo Selecionado"
  3221. msgstr[1] "Remover Modelos Selecionados"
  3222. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242
  3223. msgctxt "@action:inmenu menubar:edit"
  3224. msgid "Center Selected Model"
  3225. msgid_plural "Center Selected Models"
  3226. msgstr[0] "Centralizar Modelo Selecionado"
  3227. msgstr[1] "Centralizar Modelos Selecionados"
  3228. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:251
  3229. msgctxt "@action:inmenu menubar:edit"
  3230. msgid "Multiply Selected Model"
  3231. msgid_plural "Multiply Selected Models"
  3232. msgstr[0] "Multiplicar Modelo Selecionado"
  3233. msgstr[1] "Multiplicar Modelos Selecionados"
  3234. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:260
  3235. msgctxt "@action:inmenu"
  3236. msgid "Delete Model"
  3237. msgstr "Remover Modelo"
  3238. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:268
  3239. msgctxt "@action:inmenu"
  3240. msgid "Ce&nter Model on Platform"
  3241. msgstr "Ce&ntralizar Modelo na Mesa"
  3242. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:274
  3243. msgctxt "@action:inmenu menubar:edit"
  3244. msgid "&Group Models"
  3245. msgstr "A&grupar Modelos"
  3246. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:294
  3247. msgctxt "@action:inmenu menubar:edit"
  3248. msgid "Ungroup Models"
  3249. msgstr "Desagrupar Modelos"
  3250. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304
  3251. msgctxt "@action:inmenu menubar:edit"
  3252. msgid "&Merge Models"
  3253. msgstr "Co&mbinar Modelos"
  3254. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314
  3255. msgctxt "@action:inmenu"
  3256. msgid "&Multiply Model..."
  3257. msgstr "&Multiplicar Modelo..."
  3258. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:321
  3259. msgctxt "@action:inmenu menubar:edit"
  3260. msgid "Select All Models"
  3261. msgstr "Selecionar Todos Os Modelos"
  3262. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331
  3263. msgctxt "@action:inmenu menubar:edit"
  3264. msgid "Clear Build Plate"
  3265. msgstr "Esvaziar a Mesa de Impressão"
  3266. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341
  3267. msgctxt "@action:inmenu menubar:file"
  3268. msgid "Reload All Models"
  3269. msgstr "Recarregar Todos Os Modelos"
  3270. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:350
  3271. msgctxt "@action:inmenu menubar:edit"
  3272. msgid "Arrange All Models To All Build Plates"
  3273. msgstr "Posicionar Todos os Modelos em Todas as Plataformas de Impressão"
  3274. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:357
  3275. msgctxt "@action:inmenu menubar:edit"
  3276. msgid "Arrange All Models"
  3277. msgstr "Posicionar Todos os Modelos"
  3278. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:365
  3279. msgctxt "@action:inmenu menubar:edit"
  3280. msgid "Arrange Selection"
  3281. msgstr "Posicionar Seleção"
  3282. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:372
  3283. msgctxt "@action:inmenu menubar:edit"
  3284. msgid "Reset All Model Positions"
  3285. msgstr "Reestabelecer as Posições de Todos Os Modelos"
  3286. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:379
  3287. msgctxt "@action:inmenu menubar:edit"
  3288. msgid "Reset All Model Transformations"
  3289. msgstr "Remover as Transformações de Todos Os Modelos"
  3290. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:386
  3291. msgctxt "@action:inmenu menubar:file"
  3292. msgid "&Open File(s)..."
  3293. msgstr "Abrir Arquiv&o(s)..."
  3294. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:394
  3295. msgctxt "@action:inmenu menubar:file"
  3296. msgid "&New Project..."
  3297. msgstr "&Novo Projeto..."
  3298. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:401
  3299. msgctxt "@action:inmenu menubar:help"
  3300. msgid "Show Engine &Log..."
  3301. msgstr "Exibir o Registro do Motor de Fatiamento (&L)..."
  3302. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:409
  3303. msgctxt "@action:inmenu menubar:help"
  3304. msgid "Show Configuration Folder"
  3305. msgstr "Exibir Pasta de Configuração"
  3306. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:423
  3307. msgctxt "@action:menu"
  3308. msgid "Browse packages..."
  3309. msgstr "Navegar pacotes..."
  3310. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:430
  3311. msgctxt "@action:inmenu menubar:view"
  3312. msgid "Expand/Collapse Sidebar"
  3313. msgstr "Expandir/Encolher Barra Lateral"
  3314. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:27
  3315. msgctxt "@label:PrintjobStatus"
  3316. msgid "Please load a 3D model"
  3317. msgstr "Por favor carregue um modelo 3D"
  3318. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:37
  3319. msgctxt "@label:PrintjobStatus"
  3320. msgid "Ready to slice"
  3321. msgstr "Pronto para fatiar"
  3322. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:39
  3323. msgctxt "@label:PrintjobStatus"
  3324. msgid "Slicing..."
  3325. msgstr "Fatiando..."
  3326. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:41
  3327. msgctxt "@label:PrintjobStatus %1 is target operation"
  3328. msgid "Ready to %1"
  3329. msgstr "Pronto para %1"
  3330. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:43
  3331. msgctxt "@label:PrintjobStatus"
  3332. msgid "Unable to Slice"
  3333. msgstr "Incapaz de Fatiar"
  3334. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:45
  3335. msgctxt "@label:PrintjobStatus"
  3336. msgid "Slicing unavailable"
  3337. msgstr "Fatiamento indisponível"
  3338. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172
  3339. msgctxt "@info:tooltip"
  3340. msgid "Slice current printjob"
  3341. msgstr "Fatiar trabalho de impressão atual"
  3342. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:172
  3343. msgctxt "@info:tooltip"
  3344. msgid "Cancel slicing process"
  3345. msgstr "Cancelar processo de fatiamento"
  3346. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184
  3347. msgctxt "@label:Printjob"
  3348. msgid "Prepare"
  3349. msgstr "Preparar"
  3350. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:184
  3351. msgctxt "@label:Printjob"
  3352. msgid "Cancel"
  3353. msgstr "Cancelar"
  3354. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:320
  3355. msgctxt "@info:tooltip"
  3356. msgid "Select the active output device"
  3357. msgstr "Selecione o dispositivo de saída ativo"
  3358. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19
  3359. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:760
  3360. msgctxt "@title:window"
  3361. msgid "Open file(s)"
  3362. msgstr "Abrir arquivo(s)"
  3363. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:64
  3364. msgctxt "@text:window"
  3365. 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?"
  3366. 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?"
  3367. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:99
  3368. msgctxt "@action:button"
  3369. msgid "Import all as models"
  3370. msgstr "Importar todos como modelos"
  3371. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:19
  3372. msgctxt "@title:window"
  3373. msgid "Ultimaker Cura"
  3374. msgstr "Ultimaker Cura"
  3375. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:104
  3376. msgctxt "@title:menu menubar:toplevel"
  3377. msgid "&File"
  3378. msgstr "Arquivo (&F)"
  3379. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:120
  3380. msgctxt "@title:menu menubar:file"
  3381. msgid "&Save..."
  3382. msgstr "&Salvar..."
  3383. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:141
  3384. msgctxt "@title:menu menubar:file"
  3385. msgid "&Export..."
  3386. msgstr "&Exportar..."
  3387. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:151
  3388. msgctxt "@action:inmenu menubar:file"
  3389. msgid "Export Selection..."
  3390. msgstr "Exportar Seleção..."
  3391. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:168
  3392. msgctxt "@title:menu menubar:toplevel"
  3393. msgid "&Edit"
  3394. msgstr "&Editar"
  3395. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:185
  3396. msgctxt "@title:menu"
  3397. msgid "&View"
  3398. msgstr "&Ver"
  3399. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:190
  3400. msgctxt "@title:menu"
  3401. msgid "&Settings"
  3402. msgstr "Aju&stes"
  3403. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:192
  3404. msgctxt "@title:menu menubar:settings"
  3405. msgid "&Printer"
  3406. msgstr "Im&pressora"
  3407. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:201
  3408. msgctxt "@title:menu"
  3409. msgid "&Material"
  3410. msgstr "&Material"
  3411. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210
  3412. msgctxt "@action:inmenu"
  3413. msgid "Set as Active Extruder"
  3414. msgstr "Definir Como Extrusor Ativo"
  3415. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:216
  3416. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:188
  3417. msgctxt "@action:inmenu"
  3418. msgid "Enable Extruder"
  3419. msgstr "Habilitar Extrusor"
  3420. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:223
  3421. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:194
  3422. msgctxt "@action:inmenu"
  3423. msgid "Disable Extruder"
  3424. msgstr "Desabilitar Extrusor"
  3425. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:235
  3426. msgctxt "@title:menu"
  3427. msgid "&Build plate"
  3428. msgstr "Plataforma de Impressão (&B)"
  3429. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:236
  3430. msgctxt "@title:settings"
  3431. msgid "&Profile"
  3432. msgstr "&Perfil"
  3433. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:246
  3434. msgctxt "@title:menu menubar:toplevel"
  3435. msgid "E&xtensions"
  3436. msgstr "E&xtensões"
  3437. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:280
  3438. msgctxt "@title:menu menubar:toplevel"
  3439. msgid "&Toolbox"
  3440. msgstr "Ferramen&tas"
  3441. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:287
  3442. msgctxt "@title:menu menubar:toplevel"
  3443. msgid "P&references"
  3444. msgstr "P&referências"
  3445. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:295
  3446. msgctxt "@title:menu menubar:toplevel"
  3447. msgid "&Help"
  3448. msgstr "Ajuda (&H)"
  3449. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:341
  3450. msgctxt "@label"
  3451. msgid "This package will be installed after restarting."
  3452. msgstr "Este pacote será instalado após o reinício."
  3453. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:370
  3454. msgctxt "@action:button"
  3455. msgid "Open File"
  3456. msgstr "Abrir arquivo"
  3457. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540
  3458. msgctxt "@title:tab"
  3459. msgid "Settings"
  3460. msgstr "Ajustes"
  3461. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:586
  3462. msgctxt "@title:window"
  3463. msgid "New project"
  3464. msgstr "Novo projeto"
  3465. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:587
  3466. msgctxt "@info:question"
  3467. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3468. msgstr "Tem certeza que quer iniciar novo projeto? Isto esvaziará a mesa de impressão e quaisquer ajustes não salvos."
  3469. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:715
  3470. msgctxt "@title:window"
  3471. msgid "Closing Cura"
  3472. msgstr "Fechando o Cura"
  3473. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:716
  3474. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728
  3475. msgctxt "@label"
  3476. msgid "Are you sure you want to exit Cura?"
  3477. msgstr "Você tem certeza que deseja sair do Cura?"
  3478. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:861
  3479. msgctxt "@window:title"
  3480. msgid "Install Package"
  3481. msgstr "Instalar Pacote"
  3482. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:868
  3483. msgctxt "@title:window"
  3484. msgid "Open File(s)"
  3485. msgstr "Abrir Arquivo(s)"
  3486. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:871
  3487. msgctxt "@text:window"
  3488. 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."
  3489. 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."
  3490. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:14
  3491. msgctxt "@title:window"
  3492. msgid "Save Project"
  3493. msgstr "Salvar Projeto"
  3494. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:120
  3495. msgctxt "@action:label"
  3496. msgid ""
  3497. msgstr ""
  3498. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:137
  3499. msgctxt "@action:label"
  3500. msgid "Build plate"
  3501. msgstr "Plataforma de Impressão"
  3502. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:169
  3503. msgctxt "@action:label"
  3504. msgid "Extruder %1"
  3505. msgstr "Extrusor %1"
  3506. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:179
  3507. msgctxt "@action:label"
  3508. msgid "%1 & material"
  3509. msgstr "%1 & material"
  3510. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:268
  3511. msgctxt "@action:label"
  3512. msgid "Don't show project summary on save again"
  3513. msgstr "Não exibir resumo do projeto ao salvar novamente"
  3514. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:287
  3515. msgctxt "@action:button"
  3516. msgid "Save"
  3517. msgstr "Salvar"
  3518. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:192
  3519. msgctxt "@label"
  3520. msgid "Layer Height"
  3521. msgstr "Altura de Camada"
  3522. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:277
  3523. msgctxt "@tooltip"
  3524. msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  3525. 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"
  3526. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:450
  3527. msgctxt "@tooltip"
  3528. msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  3529. msgstr "Um perfil personalizado está atualmente ativo. Para habilitar o controle deslizante de qualidade, escolha um perfil de qualidade default na aba Personalizado"
  3530. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:467
  3531. msgctxt "@label"
  3532. msgid "Print Speed"
  3533. msgstr "Velocidade de Impressão"
  3534. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:479
  3535. msgctxt "@label"
  3536. msgid "Slower"
  3537. msgstr "Mais Lento"
  3538. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:490
  3539. msgctxt "@label"
  3540. msgid "Faster"
  3541. msgstr "Mais Rápido"
  3542. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:518
  3543. msgctxt "@tooltip"
  3544. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3545. msgstr "Você modificou alguns ajustes de perfil. Se você quiser alterá-los, use o modo personalizado."
  3546. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:541
  3547. msgctxt "@label"
  3548. msgid "Infill"
  3549. msgstr "Preenchimento:"
  3550. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:777
  3551. msgctxt "@label"
  3552. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3553. msgstr "Preenchimento gradual aumentará gradualmente a quantidade de preenchimento em direção ao topo."
  3554. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:789
  3555. msgctxt "@label"
  3556. msgid "Enable gradual"
  3557. msgstr "Habilitar gradual"
  3558. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:856
  3559. msgctxt "@label"
  3560. msgid "Generate Support"
  3561. msgstr "Gerar Suportes"
  3562. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:890
  3563. msgctxt "@label"
  3564. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3565. 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."
  3566. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:962
  3567. msgctxt "@label"
  3568. 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."
  3569. 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."
  3570. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:985
  3571. msgctxt "@label"
  3572. msgid "Build Plate Adhesion"
  3573. msgstr "Aderência à Mesa de Impressão"
  3574. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1040
  3575. msgctxt "@label"
  3576. 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."
  3577. 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."
  3578. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1080
  3579. msgctxt "@label"
  3580. msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  3581. msgstr "Precisa de ajuda para melhorar sua impressões?<br>Leia os <a href='%1'>Guias de Resolução de Problema da Ultimaker</a>"
  3582. #: /home/ruben/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3583. msgctxt "@label %1 is filled in with the name of an extruder"
  3584. msgid "Print Selected Model with %1"
  3585. msgid_plural "Print Selected Models with %1"
  3586. msgstr[0] "Imprimir Modelo Selecionado com %1"
  3587. msgstr[1] "Imprimir Modelos Selecionados com %1"
  3588. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:20
  3589. msgctxt "@title:window"
  3590. msgid "Open project file"
  3591. msgstr "Abrir arquivo de projeto"
  3592. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:93
  3593. msgctxt "@text:window"
  3594. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3595. msgstr "Este é um arquivo de projeto do Cura. Gostaria de abri-lo como um projeto ou importar os modelos dele?"
  3596. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:103
  3597. msgctxt "@text:window"
  3598. msgid "Remember my choice"
  3599. msgstr "Lembrar minha escolha"
  3600. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:122
  3601. msgctxt "@action:button"
  3602. msgid "Open as project"
  3603. msgstr "Abrir como projeto"
  3604. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:131
  3605. msgctxt "@action:button"
  3606. msgid "Import models"
  3607. msgstr "Importar modelos"
  3608. #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:15
  3609. msgctxt "@title:window"
  3610. msgid "Engine Log"
  3611. msgstr "Registro do Motor de Fatiamento"
  3612. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:70
  3613. msgctxt "@label"
  3614. msgid "Printer type"
  3615. msgstr "Tipo de impressora"
  3616. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:376
  3617. msgctxt "@label"
  3618. msgid "Material"
  3619. msgstr "Material"
  3620. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:543
  3621. msgctxt "@label"
  3622. msgid "Use glue with this material combination"
  3623. msgstr "Use cola com esta combinação de materiais."
  3624. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:575
  3625. msgctxt "@label"
  3626. msgid "Check compatibility"
  3627. msgstr "Verificar compatibilidade"
  3628. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:593
  3629. msgctxt "@tooltip"
  3630. msgid "Click to check the material compatibility on Ultimaker.com."
  3631. msgstr "Clique para verificar a compatibilidade do material em Ultimaker.com."
  3632. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:211
  3633. msgctxt "@option:check"
  3634. msgid "See only current build plate"
  3635. msgstr "Ver somente a plataforma de impressão atual"
  3636. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:227
  3637. msgctxt "@action:button"
  3638. msgid "Arrange to all build plates"
  3639. msgstr "Posicionar em todas as plataformas de impressão"
  3640. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:247
  3641. msgctxt "@action:button"
  3642. msgid "Arrange current build plate"
  3643. msgstr "Reposicionar a plataforma de impressão atual"
  3644. #: MachineSettingsAction/plugin.json
  3645. msgctxt "description"
  3646. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3647. msgstr "Provê uma maneira de alterar ajustes de máquina (tais como volume de impressão, tamanho do bico, etc.)."
  3648. #: MachineSettingsAction/plugin.json
  3649. msgctxt "name"
  3650. msgid "Machine Settings action"
  3651. msgstr "Ação de Configurações de Máquina"
  3652. #: Toolbox/plugin.json
  3653. msgctxt "description"
  3654. msgid "Find, manage and install new Cura packages."
  3655. msgstr "Buscar, gerenciar e instalar novos pacotes do Cura."
  3656. #: Toolbox/plugin.json
  3657. msgctxt "name"
  3658. msgid "Toolbox"
  3659. msgstr "Ferramentas"
  3660. #: XRayView/plugin.json
  3661. msgctxt "description"
  3662. msgid "Provides the X-Ray view."
  3663. msgstr "Provê a visão de Raios-X."
  3664. #: XRayView/plugin.json
  3665. msgctxt "name"
  3666. msgid "X-Ray View"
  3667. msgstr "Visão de Raios-X"
  3668. #: X3DReader/plugin.json
  3669. msgctxt "description"
  3670. msgid "Provides support for reading X3D files."
  3671. msgstr "Provê suporte à leitura de arquivos X3D."
  3672. #: X3DReader/plugin.json
  3673. msgctxt "name"
  3674. msgid "X3D Reader"
  3675. msgstr "Leitor de X3D"
  3676. #: GCodeWriter/plugin.json
  3677. msgctxt "description"
  3678. msgid "Writes g-code to a file."
  3679. msgstr "Escreve em formato G-Code."
  3680. #: GCodeWriter/plugin.json
  3681. msgctxt "name"
  3682. msgid "G-code Writer"
  3683. msgstr "Gerador de G-Code"
  3684. #: ModelChecker/plugin.json
  3685. msgctxt "description"
  3686. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  3687. msgstr "Verifica modelos e configurações de impressão por possíveis problema e dá sugestões."
  3688. #: ModelChecker/plugin.json
  3689. msgctxt "name"
  3690. msgid "Model Checker"
  3691. msgstr "Verificador de Modelo"
  3692. #: cura-god-mode-plugin/src/GodMode/plugin.json
  3693. msgctxt "description"
  3694. msgid "Dump the contents of all settings to a HTML file."
  3695. msgstr "Descarrega o conteúdo de todas as configurações em um arquivo HTML."
  3696. #: cura-god-mode-plugin/src/GodMode/plugin.json
  3697. msgctxt "name"
  3698. msgid "God Mode"
  3699. msgstr "Modo Deus"
  3700. #: ChangeLogPlugin/plugin.json
  3701. msgctxt "description"
  3702. msgid "Shows changes since latest checked version."
  3703. msgstr "Mostra alterações desde a última versão verificada."
  3704. #: ChangeLogPlugin/plugin.json
  3705. msgctxt "name"
  3706. msgid "Changelog"
  3707. msgstr "Registro de Alterações"
  3708. #: ProfileFlattener/plugin.json
  3709. msgctxt "description"
  3710. msgid "Create a flattend quality changes profile."
  3711. msgstr "Cria um perfil de alterações achatado."
  3712. #: ProfileFlattener/plugin.json
  3713. msgctxt "name"
  3714. msgid "Profile flatener"
  3715. msgstr "Achatador de Perfil"
  3716. #: USBPrinting/plugin.json
  3717. msgctxt "description"
  3718. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3719. msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  3720. #: USBPrinting/plugin.json
  3721. msgctxt "name"
  3722. msgid "USB printing"
  3723. msgstr "Impressão USB"
  3724. #: UserAgreement/plugin.json
  3725. msgctxt "description"
  3726. msgid "Ask the user once if he/she agrees with our license."
  3727. msgstr "Perguntar ao usuário uma vez se concorda com nossa licença."
  3728. #: UserAgreement/plugin.json
  3729. msgctxt "name"
  3730. msgid "UserAgreement"
  3731. msgstr "Acordo de Usuário"
  3732. #: X3GWriter/plugin.json
  3733. msgctxt "description"
  3734. msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  3735. 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)."
  3736. #: X3GWriter/plugin.json
  3737. msgctxt "name"
  3738. msgid "X3GWriter"
  3739. msgstr "Gerador de X3G"
  3740. #: GCodeGzWriter/plugin.json
  3741. msgctxt "description"
  3742. msgid "Writes g-code to a compressed archive."
  3743. msgstr "Escreve em formato G-Code comprimido."
  3744. #: GCodeGzWriter/plugin.json
  3745. msgctxt "name"
  3746. msgid "Compressed G-code Writer"
  3747. msgstr "Gerador de G-Code Comprimido"
  3748. #: UFPWriter/plugin.json
  3749. msgctxt "description"
  3750. msgid "Provides support for writing Ultimaker Format Packages."
  3751. msgstr "Provê suporte para a escrita de Ultimaker Format Packages (Pacotes de Formato da Ultimaker)."
  3752. #: UFPWriter/plugin.json
  3753. msgctxt "name"
  3754. msgid "UFP Writer"
  3755. msgstr "Gerador de UFP"
  3756. #: PrepareStage/plugin.json
  3757. msgctxt "description"
  3758. msgid "Provides a prepare stage in Cura."
  3759. msgstr "Provê um estágio de preparação no Cura."
  3760. #: PrepareStage/plugin.json
  3761. msgctxt "name"
  3762. msgid "Prepare Stage"
  3763. msgstr "Estágio de Preparação"
  3764. #: RemovableDriveOutputDevice/plugin.json
  3765. msgctxt "description"
  3766. msgid "Provides removable drive hotplugging and writing support."
  3767. msgstr "Provê suporte a escrita e reconhecimento de drives a quente."
  3768. #: RemovableDriveOutputDevice/plugin.json
  3769. msgctxt "name"
  3770. msgid "Removable Drive Output Device Plugin"
  3771. msgstr "Complemento de Dispositivo de Escrita Removível"
  3772. #: UM3NetworkPrinting/plugin.json
  3773. msgctxt "description"
  3774. msgid "Manages network connections to Ultimaker 3 printers."
  3775. msgstr "Gerencia conexões de rede a impressoras Ultimaker 3."
  3776. #: UM3NetworkPrinting/plugin.json
  3777. msgctxt "name"
  3778. msgid "UM3 Network Connection"
  3779. msgstr "Conexão de Rede UM3"
  3780. #: MonitorStage/plugin.json
  3781. msgctxt "description"
  3782. msgid "Provides a monitor stage in Cura."
  3783. msgstr "Provê um estágio de monitor no Cura."
  3784. #: MonitorStage/plugin.json
  3785. msgctxt "name"
  3786. msgid "Monitor Stage"
  3787. msgstr "Estágio de Monitor"
  3788. #: FirmwareUpdateChecker/plugin.json
  3789. msgctxt "description"
  3790. msgid "Checks for firmware updates."
  3791. msgstr "Verifica por atualizações de firmware."
  3792. #: FirmwareUpdateChecker/plugin.json
  3793. msgctxt "name"
  3794. msgid "Firmware Update Checker"
  3795. msgstr "Verificador de Atualizações de Firmware"
  3796. #: SimulationView/plugin.json
  3797. msgctxt "description"
  3798. msgid "Provides the Simulation view."
  3799. msgstr "Provê a Visão Simulada."
  3800. #: SimulationView/plugin.json
  3801. msgctxt "name"
  3802. msgid "Simulation View"
  3803. msgstr "Visão Simulada"
  3804. #: GCodeGzReader/plugin.json
  3805. msgctxt "description"
  3806. msgid "Reads g-code from a compressed archive."
  3807. msgstr "Lê G-Code de um arquivo comprimido."
  3808. #: GCodeGzReader/plugin.json
  3809. msgctxt "name"
  3810. msgid "Compressed G-code Reader"
  3811. msgstr "Leitor de G-Code Comprimido"
  3812. #: PostProcessingPlugin/plugin.json
  3813. msgctxt "description"
  3814. msgid "Extension that allows for user created scripts for post processing"
  3815. msgstr "Extensão que permite scripts criados por usuários para pós-processamento"
  3816. #: PostProcessingPlugin/plugin.json
  3817. msgctxt "name"
  3818. msgid "Post Processing"
  3819. msgstr "Pós-processamento"
  3820. #: SupportEraser/plugin.json
  3821. msgctxt "description"
  3822. msgid "Creates an eraser mesh to block the printing of support in certain places"
  3823. msgstr "Cria uma malha apagadora para bloquear a impressão de suporte em certos lugares"
  3824. #: SupportEraser/plugin.json
  3825. msgctxt "name"
  3826. msgid "Support Eraser"
  3827. msgstr "Apagador de Suporte"
  3828. #: SliceInfoPlugin/plugin.json
  3829. msgctxt "description"
  3830. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3831. msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  3832. #: SliceInfoPlugin/plugin.json
  3833. msgctxt "name"
  3834. msgid "Slice info"
  3835. msgstr "Informação de fatiamento"
  3836. #: XmlMaterialProfile/plugin.json
  3837. msgctxt "description"
  3838. msgid "Provides capabilities to read and write XML-based material profiles."
  3839. msgstr "Provê capacidade de ler e escrever perfis de material baseado em XML."
  3840. #: XmlMaterialProfile/plugin.json
  3841. msgctxt "name"
  3842. msgid "Material Profiles"
  3843. msgstr "Perfis de Material"
  3844. #: LegacyProfileReader/plugin.json
  3845. msgctxt "description"
  3846. msgid "Provides support for importing profiles from legacy Cura versions."
  3847. msgstr "Provê suporte a importação de perfis de versões legadas do Cura."
  3848. #: LegacyProfileReader/plugin.json
  3849. msgctxt "name"
  3850. msgid "Legacy Cura Profile Reader"
  3851. msgstr "Leitor de Perfis de Cura Legado"
  3852. #: GCodeProfileReader/plugin.json
  3853. msgctxt "description"
  3854. msgid "Provides support for importing profiles from g-code files."
  3855. msgstr "Provê suporte a importar perfis de arquivos G-Code."
  3856. #: GCodeProfileReader/plugin.json
  3857. msgctxt "name"
  3858. msgid "G-code Profile Reader"
  3859. msgstr "Leitor de Perfil de G-Code"
  3860. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  3861. msgctxt "description"
  3862. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3863. msgstr "Atualiza configurações do Cura 3.2 para o Cura 3.3."
  3864. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  3865. msgctxt "name"
  3866. msgid "Version Upgrade 3.2 to 3.3"
  3867. msgstr "Atualização de Versão de 3.2 para 3.3"
  3868. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  3869. msgctxt "description"
  3870. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3871. msgstr "Atualiza configuração do Cura 3.3 para o Cura 3.4."
  3872. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  3873. msgctxt "name"
  3874. msgid "Version Upgrade 3.3 to 3.4"
  3875. msgstr "Atualização de Versão de 3.3 para 3.4"
  3876. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  3877. msgctxt "description"
  3878. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3879. msgstr "Atualiza configurações do Cura 2.5 para o Cura 2.6."
  3880. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  3881. msgctxt "name"
  3882. msgid "Version Upgrade 2.5 to 2.6"
  3883. msgstr "Atualização de Versão de 2.5 para 2.6"
  3884. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  3885. msgctxt "description"
  3886. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3887. msgstr "Atualiza configuração do Cura 2.7 para o Cura 3.0."
  3888. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  3889. msgctxt "name"
  3890. msgid "Version Upgrade 2.7 to 3.0"
  3891. msgstr "Atualização de Versão de 2.7 para 3.0"
  3892. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  3893. msgctxt "description"
  3894. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3895. msgstr "Atualiza configurações do Cura 3.4 para o Cura 3.5"
  3896. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  3897. msgctxt "name"
  3898. msgid "Version Upgrade 3.4 to 3.5"
  3899. msgstr "Atualização de Versão de 3.4 para 3.5"
  3900. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  3901. msgctxt "description"
  3902. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3903. msgstr "Atualiza configurações do Cura 3.0 para o Cura 3.1."
  3904. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  3905. msgctxt "name"
  3906. msgid "Version Upgrade 3.0 to 3.1"
  3907. msgstr "Atualização de Versão 3.0 para 3.1"
  3908. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  3909. msgctxt "description"
  3910. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3911. msgstr "Atualiza configurações do Cura 2.6 para o Cura 2.7."
  3912. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  3913. msgctxt "name"
  3914. msgid "Version Upgrade 2.6 to 2.7"
  3915. msgstr "Atualização de Versão de 2.6 para 2.7"
  3916. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  3917. msgctxt "description"
  3918. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3919. msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  3920. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  3921. msgctxt "name"
  3922. msgid "Version Upgrade 2.1 to 2.2"
  3923. msgstr "Atualização de Versão de 2.1 para 2.2"
  3924. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  3925. msgctxt "description"
  3926. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3927. msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  3928. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  3929. msgctxt "name"
  3930. msgid "Version Upgrade 2.2 to 2.4"
  3931. msgstr "Atualização de Versão de 2.2 para 2.4"
  3932. #: ImageReader/plugin.json
  3933. msgctxt "description"
  3934. msgid "Enables ability to generate printable geometry from 2D image files."
  3935. msgstr "Habilita a geração de geometria imprimível de arquivos de imagem 2D."
  3936. #: ImageReader/plugin.json
  3937. msgctxt "name"
  3938. msgid "Image Reader"
  3939. msgstr "Leitor de Imagens"
  3940. #: CuraEngineBackend/plugin.json
  3941. msgctxt "description"
  3942. msgid "Provides the link to the CuraEngine slicing backend."
  3943. msgstr "Provê a ligação ao backend de fatiamento CuraEngine."
  3944. #: CuraEngineBackend/plugin.json
  3945. msgctxt "name"
  3946. msgid "CuraEngine Backend"
  3947. msgstr "CuraEngine Backend"
  3948. #: PerObjectSettingsTool/plugin.json
  3949. msgctxt "description"
  3950. msgid "Provides the Per Model Settings."
  3951. msgstr "Provê Ajustes Por Modelo."
  3952. #: PerObjectSettingsTool/plugin.json
  3953. msgctxt "name"
  3954. msgid "Per Model Settings Tool"
  3955. msgstr "Ferramenta de Ajustes Por Modelo"
  3956. #: 3MFReader/plugin.json
  3957. msgctxt "description"
  3958. msgid "Provides support for reading 3MF files."
  3959. msgstr "Provê suporte à leitura de arquivos 3MF."
  3960. #: 3MFReader/plugin.json
  3961. msgctxt "name"
  3962. msgid "3MF Reader"
  3963. msgstr "Leitor de 3MF"
  3964. #: SolidView/plugin.json
  3965. msgctxt "description"
  3966. msgid "Provides a normal solid mesh view."
  3967. msgstr "Provê uma visualização de malha sólida normal."
  3968. #: SolidView/plugin.json
  3969. msgctxt "name"
  3970. msgid "Solid View"
  3971. msgstr "Visão Sólida"
  3972. #: GCodeReader/plugin.json
  3973. msgctxt "description"
  3974. msgid "Allows loading and displaying G-code files."
  3975. msgstr "Permite carregar e exibir arquivos G-Code."
  3976. #: GCodeReader/plugin.json
  3977. msgctxt "name"
  3978. msgid "G-code Reader"
  3979. msgstr "Leitor de G-Code"
  3980. #: CuraProfileWriter/plugin.json
  3981. msgctxt "description"
  3982. msgid "Provides support for exporting Cura profiles."
  3983. msgstr "Provê suporte à exportação de perfis do Cura."
  3984. #: CuraProfileWriter/plugin.json
  3985. msgctxt "name"
  3986. msgid "Cura Profile Writer"
  3987. msgstr "Gravador de Perfis do Cura"
  3988. #: CuraPrintProfileCreator/plugin.json
  3989. msgctxt "description"
  3990. msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  3991. msgstr "Permite que fabricantes de material criem novos perfis de material e qualidade usando uma interface drop-in."
  3992. #: CuraPrintProfileCreator/plugin.json
  3993. msgctxt "name"
  3994. msgid "Print Profile Assistant"
  3995. msgstr "Assistente de Perfil de Impressão"
  3996. #: 3MFWriter/plugin.json
  3997. msgctxt "description"
  3998. msgid "Provides support for writing 3MF files."
  3999. msgstr "Provê suporte à escrita de arquivos 3MF."
  4000. #: 3MFWriter/plugin.json
  4001. msgctxt "name"
  4002. msgid "3MF Writer"
  4003. msgstr "Gerador de 3MF"
  4004. #: UltimakerMachineActions/plugin.json
  4005. msgctxt "description"
  4006. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4007. msgstr "Provê ações de máquina para impressoras da Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)."
  4008. #: UltimakerMachineActions/plugin.json
  4009. msgctxt "name"
  4010. msgid "Ultimaker machine actions"
  4011. msgstr "Ações de máquina Ultimaker"
  4012. #: CuraProfileReader/plugin.json
  4013. msgctxt "description"
  4014. msgid "Provides support for importing Cura profiles."
  4015. msgstr "Provê suporte à importação de perfis do Cura."
  4016. #: CuraProfileReader/plugin.json
  4017. msgctxt "name"
  4018. msgid "Cura Profile Reader"
  4019. msgstr "Leitor de Perfis do Cura"
  4020. #~ msgctxt "@action:button"
  4021. #~ msgid "Print with Doodle3D WiFi-Box"
  4022. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  4023. #~ msgctxt "@properties:tooltip"
  4024. #~ msgid "Print with Doodle3D WiFi-Box"
  4025. #~ msgstr "Imprimir com a WiFi-Box do Doodle3D"
  4026. #~ msgctxt "@info:status"
  4027. #~ msgid "Connecting to Doodle3D Connect"
  4028. #~ msgstr "Conectando ao Doodle3D Connect"
  4029. #~ msgctxt "@info:status"
  4030. #~ msgid "Sending data to Doodle3D Connect"
  4031. #~ msgstr "Enviando dados ao Doodle3D Connect"
  4032. #~ msgctxt "@info:status"
  4033. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  4034. #~ msgstr "Incapaz de enviar dados ao Doodle3D Connect. Há outro trabalho ainda ativo?"
  4035. #~ msgctxt "@info:status"
  4036. #~ msgid "Storing data on Doodle3D Connect"
  4037. #~ msgstr "Armazenando dados no Doodle3D Connect"
  4038. #~ msgctxt "@info:status"
  4039. #~ msgid "File sent to Doodle3D Connect"
  4040. #~ msgstr "Arquivo enviado ao Doodle3D Connect"
  4041. #~ msgctxt "@action:button"
  4042. #~ msgid "Open Connect..."
  4043. #~ msgstr "Abrir Connect..."
  4044. #~ msgctxt "@info:tooltip"
  4045. #~ msgid "Open the Doodle3D Connect web interface"
  4046. #~ msgstr "Abrir a interface web do Doodle3D Connect"
  4047. #~ msgctxt "@item:inlistbox"
  4048. #~ msgid "Blender file"
  4049. #~ msgstr "Arquivo do Blender"
  4050. #~ msgctxt "@info:status"
  4051. #~ msgid ""
  4052. #~ "Could not export using \"{}\" quality!\n"
  4053. #~ "Felt back to \"{}\"."
  4054. #~ msgstr ""
  4055. #~ "Não foi possível exportar usando qualidade \"{}\"!\n"
  4056. #~ "Foi usada a \"{}\"."
  4057. #~ msgctxt "@label"
  4058. #~ msgid "Contact"
  4059. #~ msgstr "Contato"
  4060. #~ msgctxt "@label"
  4061. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  4062. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3."
  4063. #~ msgctxt "@label"
  4064. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  4065. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3."
  4066. #~ msgctxt "@label: arg 1 is group name"
  4067. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  4068. #~ msgstr "%1 não está configurada para hospedar um grupo de impressora Ultimaker 3 conectadas"
  4069. #~ msgctxt "@label link to connect manager"
  4070. #~ msgid "Add/Remove printers"
  4071. #~ msgstr "Adicionar/Remover impressoras"
  4072. #~ msgctxt "@info:tooltip"
  4073. #~ msgid "Opens the print jobs page with your default web browser."
  4074. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador default."
  4075. #~ msgctxt "@action:button"
  4076. #~ msgid "View print jobs"
  4077. #~ msgstr "Visualizar trabalhos de impressão"
  4078. #~ msgctxt "@label:status"
  4079. #~ msgid "Preparing to print"
  4080. #~ msgstr "Preparando para imprimir"
  4081. #~ msgctxt "@label:status"
  4082. #~ msgid "Printing"
  4083. #~ msgstr "Imprimindo"
  4084. #~ msgctxt "@label:status"
  4085. #~ msgid "Available"
  4086. #~ msgstr "Disponível"
  4087. #~ msgctxt "@label:status"
  4088. #~ msgid "Lost connection with the printer"
  4089. #~ msgstr "Conexão à impressora perdida"
  4090. #~ msgctxt "@label:status"
  4091. #~ msgid "Unavailable"
  4092. #~ msgstr "Indisponível"
  4093. #~ msgctxt "@label:status"
  4094. #~ msgid "Unknown"
  4095. #~ msgstr "Desconhecido"
  4096. #~ msgctxt "@label:status"
  4097. #~ msgid "Disabled"
  4098. #~ msgstr "Desabilitado"
  4099. #~ msgctxt "@label:status"
  4100. #~ msgid "Reserved"
  4101. #~ msgstr "Reservado"
  4102. #~ msgctxt "@label"
  4103. #~ msgid "Preparing to print"
  4104. #~ msgstr "Preparando para imprimir"
  4105. #~ msgctxt "@label:status"
  4106. #~ msgid "Print aborted"
  4107. #~ msgstr "A impressão foi interrompida"
  4108. #~ msgctxt "@label"
  4109. #~ msgid "Not accepting print jobs"
  4110. #~ msgstr "Não aceitando trabalhos de impressão"
  4111. #~ msgctxt "@label"
  4112. #~ msgid "Finishes at: "
  4113. #~ msgstr "Termina em: "
  4114. #~ msgctxt "@label"
  4115. #~ msgid "Clear build plate"
  4116. #~ msgstr "Esvaziar a mesa de impressão"
  4117. #~ msgctxt "@label"
  4118. #~ msgid "Waiting for configuration change"
  4119. #~ msgstr "Esperando alteração de configuração"
  4120. #~ msgctxt "@title"
  4121. #~ msgid "Print jobs"
  4122. #~ msgstr "Trabalhos de impressão"
  4123. #~ msgctxt "@label:title"
  4124. #~ msgid "Printers"
  4125. #~ msgstr "Impressoras"
  4126. #~ msgctxt "@action:button"
  4127. #~ msgid "View printers"
  4128. #~ msgstr "Visualizar impressoras"
  4129. #~ msgctxt "@label:"
  4130. #~ msgid "Pause"
  4131. #~ msgstr "Pausar"
  4132. #~ msgctxt "@label:"
  4133. #~ msgid "Resume"
  4134. #~ msgstr "Continuar"
  4135. #~ msgctxt "@label:"
  4136. #~ msgid "Abort Print"
  4137. #~ msgstr "Abortar Impressão"
  4138. #~ msgctxt "@option:openProject"
  4139. #~ msgid "Always ask"
  4140. #~ msgstr "Sempre perguntar"
  4141. #~ msgctxt "@label"
  4142. #~ msgid "Override Profile"
  4143. #~ msgstr "Sobrescrever Perfil"
  4144. #~ msgctxt "@info:tooltip"
  4145. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  4146. #~ msgstr "Novos modelos carregados devem ser posicionados na plataforma de impressão? Usado em conjunção com plataforma múltipla de impressão (EXPERIMENTAL)"
  4147. #~ msgctxt "@option:check"
  4148. #~ msgid "Do not arrange objects on load"
  4149. #~ msgstr "Não posicionar objetos ao carregar."
  4150. #~ msgctxt "@action:inmenu menubar:file"
  4151. #~ msgid "&Save Selection to File"
  4152. #~ msgstr "Salvar &Seleção em Arquivo"
  4153. #~ msgctxt "@title:menu menubar:file"
  4154. #~ msgid "Save &As..."
  4155. #~ msgstr "S&alvar Como..."
  4156. #~ msgctxt "@title:menu menubar:file"
  4157. #~ msgid "Save &Project..."
  4158. #~ msgstr "Salvar &Projeto..."
  4159. #~ msgctxt "@label"
  4160. #~ msgid "Use adhesion sheet or glue with this material combination"
  4161. #~ msgstr "Use camada de aderência ou cola com esta combinação de material"
  4162. #~ msgctxt "description"
  4163. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  4164. #~ msgstr "Aceita G-Code e o envia através da WiFi para uma WiFi-Box Doodle3D."
  4165. #~ msgctxt "name"
  4166. #~ msgid "Doodle3D WiFi-Box"
  4167. #~ msgstr "WiFi-Box Doodle3D"
  4168. #~ msgctxt "description"
  4169. #~ msgid "Provides an edit window for direct script editing."
  4170. #~ msgstr "Provê uma janela de edição para edição direta de script."
  4171. #~ msgctxt "name"
  4172. #~ msgid "Live scripting tool"
  4173. #~ msgstr "Ferramenta de scripting integrada"
  4174. #~ msgctxt "description"
  4175. #~ msgid "Helps to open Blender files directly in Cura."
  4176. #~ msgstr "Ajuda a abrir arquivos do Blender diretamente no Cura."
  4177. #~ msgctxt "name"
  4178. #~ msgid "Blender Integration (experimental)"
  4179. #~ msgstr "Integração ao Blender (experimental)"
  4180. #~ msgctxt "@info:title"
  4181. #~ msgid "Model Checker Warning"
  4182. #~ msgstr "Alerta de Verificador de Modelo"
  4183. #~ msgctxt "@info:status"
  4184. #~ msgid ""
  4185. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  4186. #~ "Tips that may be useful to improve the print quality:\n"
  4187. #~ "1) Use rounded corners.\n"
  4188. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  4189. #~ "3) Use a different material."
  4190. #~ msgstr ""
  4191. #~ "Alguns modelos podem não ser impressos otimamente devido ao tamanho do objeto e material escolhido para os modelos: {model_names}.\n"
  4192. #~ "Dicas que podem ser úteis para melhorar a qualidade de impressão:\n"
  4193. #~ "1) Use cantos arredondados.\n"
  4194. #~ "2) Desligue a ventoinha (somente no caso de não haver detalhes pequenos no modelo).\n"
  4195. #~ "3) Use material diferente."
  4196. #~ msgctxt "@info:status"
  4197. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  4198. #~ msgstr "O SolidWorks relatou erros ao abrir o arquivo. Recomenda-se resolver tais erros dentro do próprio SolidWorks."
  4199. #~ msgctxt "@info:status"
  4200. #~ msgid ""
  4201. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  4202. #~ "\n"
  4203. #~ "Thanks!"
  4204. #~ msgstr ""
  4205. #~ "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"
  4206. #~ "\n"
  4207. #~ "Obrigado!"
  4208. #~ msgctxt "@info:status"
  4209. #~ msgid ""
  4210. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  4211. #~ "\n"
  4212. #~ "Sorry!"
  4213. #~ msgstr ""
  4214. #~ "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"
  4215. #~ "\n"
  4216. #~ "Desculpe!"
  4217. #~ msgctxt "@item:inlistbox"
  4218. #~ msgid "SolidWorks part file"
  4219. #~ msgstr "Arquivo de parte de SolidWorks"
  4220. #~ msgctxt "@item:inlistbox"
  4221. #~ msgid "SolidWorks assembly file"
  4222. #~ msgstr "Arquivo de montagem de SolidWorks"
  4223. #~ msgctxt "@item:inlistbox"
  4224. #~ msgid "SolidWorks drawing file"
  4225. #~ msgstr "Arquivo de desenho do SolidWorks"
  4226. #~ msgctxt "@info:status"
  4227. #~ msgid ""
  4228. #~ "Dear customer,\n"
  4229. #~ "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"
  4230. #~ "\n"
  4231. #~ "With kind regards\n"
  4232. #~ " - Thomas Karl Pietrowski"
  4233. #~ msgstr ""
  4234. #~ "Caro cliente,\n"
  4235. #~ "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"
  4236. #~ "\n"
  4237. #~ "Atenciosamente\n"
  4238. #~ " - Thomas Karl Pietrowski"
  4239. #~ msgctxt "@info:status"
  4240. #~ msgid ""
  4241. #~ "Dear customer,\n"
  4242. #~ "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"
  4243. #~ "\n"
  4244. #~ "With kind regards\n"
  4245. #~ " - Thomas Karl Pietrowski"
  4246. #~ msgstr ""
  4247. #~ "Caro cliente,\n"
  4248. #~ "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"
  4249. #~ "\n"
  4250. #~ "Atenciosamente\n"
  4251. #~ " - Thomas Karl Pietrowski"
  4252. #~ msgid "Configure"
  4253. #~ msgstr "Configure"
  4254. #~ msgid "Installation guide for SolidWorks macro"
  4255. #~ msgstr "Guia de Instalação para macro do SolidWorks"
  4256. #~ msgctxt "@action:button"
  4257. #~ msgid "Disable"
  4258. #~ msgstr "Desabilitar"
  4259. #~ msgctxt "@action:tooltip"
  4260. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  4261. #~ msgstr "Não permitir que o Cura envie estatísticas anônimas de uso. Você pode habilitar novamente nas preferências."
  4262. #~ msgid "Install"
  4263. #~ msgstr "Instalar"
  4264. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  4265. #~ 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."
  4266. #~ msgid "Successfully installed Siemens NX Cura plugin."
  4267. #~ msgstr "Plugin Siemens NX do Cura instalado com sucesso."
  4268. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  4269. #~ msgstr "Erro ao copiar arquivos de complementos Siemens NX. Por favor, verifique seu UGII_USER_DIR."
  4270. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  4271. #~ 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."
  4272. #~ msgctxt "@info:status"
  4273. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  4274. #~ msgstr "Falha ao pegar identificador do complemento de <filename>{0}</filename>"
  4275. #~ msgctxt "@info:tile"
  4276. #~ msgid "Warning"
  4277. #~ msgstr "Aviso"
  4278. #~ msgctxt "@window:title"
  4279. #~ msgid "Plugin browser"
  4280. #~ msgstr "Navegador de complementos"
  4281. #~ msgctxt "@label"
  4282. #~ msgid "Ultimaker 3"
  4283. #~ msgstr "Ultimaker 3"
  4284. #~ msgctxt "@label"
  4285. #~ msgid "Ultimaker 3 Extended"
  4286. #~ msgstr "Ultimaker 3 Extended"
  4287. #~ msgctxt "@title:window"
  4288. #~ msgid "SolidWorks: Export wizard"
  4289. #~ msgstr "SolidWorks: Assistente de Exportação"
  4290. #~ msgctxt "@action:label"
  4291. #~ msgid "Quality:"
  4292. #~ msgstr "Qualidade"
  4293. #~ msgctxt "@option:curaSolidworksStlQuality"
  4294. #~ msgid "Fine (3D-printing)"
  4295. #~ msgstr "Fina (impressão-3D)"
  4296. #~ msgctxt "@option:curaSolidworksStlQuality"
  4297. #~ msgid "Coarse (3D-printing)"
  4298. #~ msgstr "Baixa"
  4299. #~ msgctxt "@option:curaSolidworksStlQuality"
  4300. #~ msgid "Fine (SolidWorks)"
  4301. #~ msgstr "Fina (SolidWorks)"
  4302. #~ msgctxt "@option:curaSolidworksStlQuality"
  4303. #~ msgid "Coarse (SolidWorks)"
  4304. #~ msgstr "Baixa (SolidWorks)"
  4305. #~ msgctxt "@text:window"
  4306. #~ msgid "Show this dialog again"
  4307. #~ msgstr "Mostrar este diálogo novamente"
  4308. #~ msgctxt "@action:button"
  4309. #~ msgid "Continue"
  4310. #~ msgstr "Continuar"
  4311. #~ msgctxt "@action:button"
  4312. #~ msgid "Abort"
  4313. #~ msgstr "Abortar"
  4314. #~ msgctxt "@title:window"
  4315. #~ msgid "How to install Cura SolidWorks macro"
  4316. #~ msgstr "Como instalar a macro de SolidWorks do Cura"
  4317. #~ msgctxt "@description:label"
  4318. #~ msgid "Steps:"
  4319. #~ msgstr "Passos:"
  4320. #~ msgctxt "@action:button"
  4321. #~ msgid ""
  4322. #~ "Open the directory\n"
  4323. #~ "with macro and icon"
  4324. #~ msgstr ""
  4325. #~ "Abrir o diretório\n"
  4326. #~ "com a macro e o ícone"
  4327. #~ msgctxt "@description:label"
  4328. #~ msgid "Instructions:"
  4329. #~ msgstr "Instruções:"
  4330. #~ msgctxt "@action:playpause"
  4331. #~ msgid "Play"
  4332. #~ msgstr "Tocar"
  4333. #~ msgctxt "@action:playpause"
  4334. #~ msgid "Pause"
  4335. #~ msgstr "Pausar"
  4336. #~ msgctxt "@action:button"
  4337. #~ msgid "Previous Step"
  4338. #~ msgstr "Passo Anterior"
  4339. #~ msgctxt "@action:button"
  4340. #~ msgid "Done"
  4341. #~ msgstr "Finalizado"
  4342. #~ msgctxt "@action:button"
  4343. #~ msgid "Next Step"
  4344. #~ msgstr "Passo Seguinte"
  4345. #~ msgctxt "@title:window"
  4346. #~ msgid "SolidWorks plugin: Configuration"
  4347. #~ msgstr "Complemento do SolidWorks: Configuração"
  4348. #~ msgctxt "@title:tab"
  4349. #~ msgid "Conversion settings"
  4350. #~ msgstr "Ajustes de conversão"
  4351. #~ msgctxt "@label"
  4352. #~ msgid "First choice:"
  4353. #~ msgstr "Primeira escolha:"
  4354. #~ msgctxt "@text:menu"
  4355. #~ msgid "Latest installed version (Recommended)"
  4356. #~ msgstr "Última versão instalada (Recomendado)"
  4357. #~ msgctxt "@text:menu"
  4358. #~ msgid "Default version"
  4359. #~ msgstr "Versão default"
  4360. #~ msgctxt "@label"
  4361. #~ msgid "Show wizard before opening SolidWorks files"
  4362. #~ msgstr "Mostrar o assistente antes de abrir arquivos do SolidWorks"
  4363. #~ msgctxt "@label"
  4364. #~ msgid "Automatically rotate opened file into normed orientation"
  4365. #~ msgstr "Rotacionar automaticamente o arquivo aberto em orientação normalizada"
  4366. #~ msgctxt "@title:tab"
  4367. #~ msgid "Installation(s)"
  4368. #~ msgstr "Instalações"
  4369. #~ msgctxt "@label"
  4370. #~ msgid "COM service found"
  4371. #~ msgstr "Serviço COM encontrado"
  4372. #~ msgctxt "@label"
  4373. #~ msgid "Executable found"
  4374. #~ msgstr "Executável encontrado"
  4375. #~ msgctxt "@label"
  4376. #~ msgid "COM starting"
  4377. #~ msgstr "COM iniciando"
  4378. #~ msgctxt "@label"
  4379. #~ msgid "Revision number"
  4380. #~ msgstr "Número de revisão"
  4381. #~ msgctxt "@label"
  4382. #~ msgid "Functions available"
  4383. #~ msgstr "Funções disponíveis"
  4384. #~ msgctxt "@label (%1 is object name)"
  4385. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  4386. #~ msgstr "O novo diâmetro do material é %1 mm, o que não é compatível com a máquina atual. Deseja continuar?"
  4387. #~ msgctxt "@action:menu"
  4388. #~ msgid "Browse plugins..."
  4389. #~ msgstr "Navegar complementos..."
  4390. #~ msgctxt "@title:menu menubar:toplevel"
  4391. #~ msgid "P&lugins"
  4392. #~ msgstr "Comp&lementos"
  4393. #~ msgctxt "@window:title"
  4394. #~ msgid "Install Plugin"
  4395. #~ msgstr "Instalar Complemento"
  4396. #~ msgctxt "description"
  4397. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  4398. #~ msgstr "Provê um modo de alterar as configurações da máquina (tais como volume de impressão, tamanho de bico, etc)"
  4399. #~ msgctxt "description"
  4400. #~ msgid "Manages network connections to Ultimaker 3 printers"
  4401. #~ msgstr "Gerencia conexões de rede a impressoras Ultimaker 3"
  4402. #~ msgctxt "description"
  4403. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  4404. #~ msgstr "Te dá a possibilidade de abrir certos arquivos usando o SolidWorks. A conversão é feita por este complemento junto a personalizações adicionais."
  4405. #~ msgctxt "name"
  4406. #~ msgid "SolidWorks Integration"
  4407. #~ msgstr "Integração ao SolidWorks"
  4408. #~ msgctxt "description"
  4409. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  4410. #~ msgstr "Automaticamente salva Preferências, Máquinas e Perfis após alterações."
  4411. #~ msgctxt "name"
  4412. #~ msgid "Auto Save"
  4413. #~ msgstr "Auto-Salvar"
  4414. #~ msgctxt "description"
  4415. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  4416. #~ msgstr "Auxilia na instalação de um botão 'exportar para o Cura' no Siemens NX."
  4417. #~ msgctxt "name"
  4418. #~ msgid "Siemens NX Integration"
  4419. #~ msgstr "Integração ao Siemens NX"
  4420. #~ msgctxt "description"
  4421. #~ msgid "Find, manage and install new plugins."
  4422. #~ msgstr "Busca, gerencia e instala novos complementos."
  4423. #~ msgctxt "name"
  4424. #~ msgid "Plugin Browser"
  4425. #~ msgstr "Navegador de Complementos"
  4426. #~ msgctxt "description"
  4427. #~ msgid "Ask the user once if he/she agrees with our license"
  4428. #~ msgstr "Pergunta ao usuário uma única vez sobre concordância com a licença"
  4429. #~ msgctxt "description"
  4430. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  4431. #~ msgstr "Provê ações de máquina para Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc)"
  4432. #~ msgctxt "@item:inlistbox"
  4433. #~ msgid "GCode File"
  4434. #~ msgstr "Arquivo G-Code"
  4435. #~ msgctxt "@info:status"
  4436. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  4437. #~ msgstr "Incapaz de iniciar novo trabalho porque a impressora está ocupada ou não conectada."
  4438. #~ msgctxt "@info:title"
  4439. #~ msgid "Printer Unavailable"
  4440. #~ msgstr "Impressora Não Disponível"
  4441. #~ msgctxt "@info:status"
  4442. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  4443. #~ msgstr "Esta impressora não suporta impressão USB porque usa G-Code UltiGCode."
  4444. #~ msgctxt "@info:title"
  4445. #~ msgid "USB Printing"
  4446. #~ msgstr "Impressão USB"
  4447. #~ msgctxt "@info:status"
  4448. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  4449. #~ msgstr "Incapaz de iniciar um novo trabalho porque a impressora não suporta impressão USB."
  4450. #~ msgctxt "@info"
  4451. #~ msgid "Unable to update firmware because there are no printers connected."
  4452. #~ msgstr "Incapaz de atualizar firmware porque não há impressoras conectadas."
  4453. #~ msgctxt "@info"
  4454. #~ msgid "Could not find firmware required for the printer at %s."
  4455. #~ msgstr "Não foi possível encontrar o firmware requerido para a impressora em %s."
  4456. #~ msgctxt "@info:title"
  4457. #~ msgid "Printer Firmware"
  4458. #~ msgstr "Firmware da Impressora"
  4459. #~ msgctxt "@info:title"
  4460. #~ msgid "Connection status"
  4461. #~ msgstr "Status da Conexão"
  4462. #~ msgctxt "@info:title"
  4463. #~ msgid "Connection Status"
  4464. #~ msgstr "Status da Conexão"
  4465. #~ msgctxt "@info:status"
  4466. #~ msgid "Access request was denied on the printer."
  4467. #~ msgstr "Pedido de acesso foi negado na impressora."
  4468. #~ msgctxt "@info:status"
  4469. #~ msgid "Access request failed due to a timeout."
  4470. #~ msgstr "Pedido de acesso falhou devido a tempo esgotado."
  4471. #~ msgctxt "@info:status"
  4472. #~ msgid "The connection with the network was lost."
  4473. #~ msgstr "A conexão à rede foi perdida."
  4474. #~ msgctxt "@info:status"
  4475. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  4476. #~ msgstr "A conexão com a impressora foi perdida. Verifique se sua impressora está conectada."
  4477. #~ msgctxt "@info:status"
  4478. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  4479. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão, a impressora está ocupada. O estado atual da impressora é %s."
  4480. #~ msgctxt "@info:title"
  4481. #~ msgid "Printer Status"
  4482. #~ msgstr "Status da Impressora"
  4483. #~ msgctxt "@info:status"
  4484. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  4485. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Nenhum Printcore carregado no slot {0}"
  4486. #~ msgctxt "@info:status"
  4487. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  4488. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há material carregado no slot {0}"
  4489. #~ msgctxt "@label"
  4490. #~ msgid "Not enough material for spool {0}."
  4491. #~ msgstr "Não há material suficiente para o carretel {0}."
  4492. #~ msgctxt "@label"
  4493. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4494. #~ msgstr "PrintCore Diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  4495. #~ msgctxt "@label"
  4496. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  4497. #~ msgstr "O PrintCore {0} não está calibrado adequadamente. A calibração XY precisa ser executada na impressora."
  4498. #~ msgctxt "@info:status"
  4499. #~ msgid "Unable to send data to printer. Is another job still active?"
  4500. #~ msgstr "Incapaz de enviar dados à impressora. Há outro trabalho de impressão ativo?"
  4501. #~ msgctxt "@label:MonitorStatus"
  4502. #~ msgid "Print aborted. Please check the printer"
  4503. #~ msgstr "Impressão abortada. Por favor verifique a impressora"
  4504. #~ msgctxt "@label:MonitorStatus"
  4505. #~ msgid "Pausing print..."
  4506. #~ msgstr "Pausando impressão..."
  4507. #~ msgctxt "@label:MonitorStatus"
  4508. #~ msgid "Resuming print..."
  4509. #~ msgstr "Continuando impressão..."
  4510. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  4511. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  4512. #~ msgctxt "Count is number of printers."
  4513. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  4514. #~ msgstr "Esta impressora hospeda um grupo de {count} impressoras Ultimaker 3 conectadas."
  4515. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  4516. #~ msgstr "{printer_name} acabou de imprimir '{job_name}'. Por favor colete a impressão e confirme esvaziamento da mesa."
  4517. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  4518. #~ 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."
  4519. #~ msgctxt "@info:status"
  4520. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  4521. #~ 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."
  4522. #~ msgctxt "@info:status"
  4523. #~ msgid "Unable to send print job to group {cluster_name}."
  4524. #~ msgstr "Incapaz de enviar trabalho de impressão ao grupo {cluster_name}."
  4525. #~ msgctxt "@info:status"
  4526. #~ msgid "Sent {file_name} to group {cluster_name}."
  4527. #~ msgstr "{file_name} enviado ao grupo {cluster_name}."
  4528. #~ msgctxt "@action:button"
  4529. #~ msgid "Show print jobs"
  4530. #~ msgstr "Exibir trabalhos de impressão"
  4531. #~ msgctxt "@info:tooltip"
  4532. #~ msgid "Opens the print jobs interface in your browser."
  4533. #~ msgstr "Abrir a interface de trabalhos de impressão em seu navegador."
  4534. #~ msgctxt "@label Printer name"
  4535. #~ msgid "Unknown"
  4536. #~ msgstr "Desconhecida"
  4537. #~ msgctxt "@info:progress"
  4538. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  4539. #~ msgstr "Enviando <filename>{file_name}</filename> ao grupo {cluster_name}"
  4540. #~ msgctxt "@info:status"
  4541. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  4542. #~ msgstr "O SolidWorks relatou problemas ao abrir seu arquivo. Recomendamos resolver tais problemas dentro do próprio SolidWorks."
  4543. #~ msgctxt "@info:status"
  4544. #~ msgid ""
  4545. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  4546. #~ "\n"
  4547. #~ " Thanks!."
  4548. #~ msgstr ""
  4549. #~ "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"
  4550. #~ "\n"
  4551. #~ " Obrigado!."
  4552. #~ msgctxt "@info:status"
  4553. #~ msgid ""
  4554. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  4555. #~ "\n"
  4556. #~ "Sorry!"
  4557. #~ msgstr ""
  4558. #~ "Foi encontrado mais de uma parte ou montagem dentro de seu desenho. Atualmente só suportamos desenhos com exatamente uma parte ou montagem dentro.\n"
  4559. #~ "\n"
  4560. #~ "Desculpe!"
  4561. #~ msgctxt "@item:material"
  4562. #~ msgid "No material loaded"
  4563. #~ msgstr "Não há material carregado"
  4564. #~ msgctxt "@item:material"
  4565. #~ msgid "Unknown material"
  4566. #~ msgstr "Material desconhecido"
  4567. #~ msgctxt "@info:status Has a cancel button next to it."
  4568. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  4569. #~ msgstr "O diâmetro de material selecionado faz com que o material se torne incompatível com a impressora atual."
  4570. #~ msgctxt "@action:button"
  4571. #~ msgid "Undo"
  4572. #~ msgstr "Desfazer"
  4573. #~ msgctxt "@action"
  4574. #~ msgid "Undo changing the material diameter."
  4575. #~ msgstr "Desfaz a mudança no diâmetro do material."
  4576. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4577. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  4578. #~ msgstr "A máquina definida no perfil <filename>{0}</filename> não corresponde à sua máquina atual, não foi possível importá-lo."
  4579. #~ msgctxt "@label crash message"
  4580. #~ msgid ""
  4581. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4582. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4583. #~ " "
  4584. #~ msgstr ""
  4585. #~ "<p><b>Um erro fatal ocorreu. Por favor nos envie este Relatório de Erro para consertar o problema</p></b>\n"
  4586. #~ " <p>Por favor use o botão \"Enviar relatório\" para publicar um relatório de erro automaticamente nos nossos servidores</p>\n"
  4587. #~ " "
  4588. #~ msgctxt "@label"
  4589. #~ msgid "not yet initialised<br/>"
  4590. #~ msgstr "ainda não inicializado<br/>"
  4591. #~ msgctxt "@label"
  4592. #~ msgid "Gcode flavor"
  4593. #~ msgstr "Sabor de G-Code"
  4594. #~ msgctxt "@label"
  4595. #~ msgid "Start Gcode"
  4596. #~ msgstr "G-Code Inicial"
  4597. #~ msgctxt "@tooltip"
  4598. #~ msgid "Gcode commands to be executed at the very start."
  4599. #~ msgstr "Comandos de G-Code a serem executados no início da impressão."
  4600. #~ msgctxt "@label"
  4601. #~ msgid "End Gcode"
  4602. #~ msgstr "G-Code Final"
  4603. #~ msgctxt "@tooltip"
  4604. #~ msgid "Gcode commands to be executed at the very end."
  4605. #~ msgstr "Comandos de G-Code a serem executados no final da impressão."
  4606. #~ msgctxt "@label"
  4607. #~ msgid "Extruder Start Gcode"
  4608. #~ msgstr "G-Code Inicial do Extrusor"
  4609. #~ msgctxt "@label"
  4610. #~ msgid "Extruder End Gcode"
  4611. #~ msgstr "G-Code Final do Extrusor"
  4612. #~ msgctxt "@label"
  4613. #~ msgid "Starting firmware update, this may take a while."
  4614. #~ msgstr "Iniciando atualização do firmware, isto pode demorar um pouco."
  4615. #~ msgctxt "@label"
  4616. #~ msgid "Unknown error code: %1"
  4617. #~ msgstr "Código de erro desconhecido: %1"
  4618. #~ msgctxt "@label Printer name"
  4619. #~ msgid "Ultimaker 3"
  4620. #~ msgstr "Ultimaker 3"
  4621. #~ msgctxt "@label Printer name"
  4622. #~ msgid "Ultimaker 3 Extended"
  4623. #~ msgstr "Ultimaker 3 Extended"
  4624. #~ msgctxt "@label Printer status"
  4625. #~ msgid "Unknown"
  4626. #~ msgstr "Desconhecido"
  4627. #~ msgctxt "@title:window"
  4628. #~ msgid "Find & Update plugins"
  4629. #~ msgstr "Buscar & Atualizar complementos"
  4630. #~ msgctxt "@label"
  4631. #~ msgid "Here you can find a list of Third Party plugins."
  4632. #~ msgstr "Aqui você pode encontrar uma lista de complementos de Terceiros."
  4633. #~ msgctxt "@action:button"
  4634. #~ msgid "Upgrade"
  4635. #~ msgstr "Atualizar"
  4636. #~ msgctxt "@action:button"
  4637. #~ msgid "Download"
  4638. #~ msgstr "Baixar"
  4639. #~ msgctxt "@info:tooltip"
  4640. #~ msgid "Show caution message in gcode reader."
  4641. #~ msgstr "Exibir mensagem de advertência no leitor de g-code."
  4642. #~ msgctxt "@option:check"
  4643. #~ msgid "Caution message in gcode reader"
  4644. #~ msgstr "Mensagem de advertência no leitor de g-code"
  4645. #~ msgctxt "@window:title"
  4646. #~ msgid "Import Profile"
  4647. #~ msgstr "Importar Perfil"
  4648. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  4649. #~ msgid "Printer: %1, %2: %3"
  4650. #~ msgstr "Impressora: %1, %2: %3"
  4651. #~ msgctxt "@action:label %1 is printer name"
  4652. #~ msgid "Printer: %1"
  4653. #~ msgstr "Impressora: %1"
  4654. #~ msgctxt "@label"
  4655. #~ msgid "GCode generator"
  4656. #~ msgstr "Gerador de G-Code"
  4657. #~ msgctxt "@action:menu"
  4658. #~ msgid "Configure setting visiblity..."
  4659. #~ msgstr "Configurar a visibilidade dos ajustes..."
  4660. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  4661. #~ msgid "Automatic: %1"
  4662. #~ msgstr "Automático: %1"
  4663. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  4664. #~ msgid "Automatic: %1"
  4665. #~ msgstr "Automático: %1"
  4666. #~ msgctxt "@info:status"
  4667. #~ msgid "No printer connected"
  4668. #~ msgstr "Nenhuma impressora conectada"
  4669. #~ msgctxt "@tooltip"
  4670. #~ msgid "The current temperature of this extruder."
  4671. #~ msgstr "A temperatura atual deste extrusor."
  4672. #~ msgctxt "@action:menu"
  4673. #~ msgid "Installed plugins..."
  4674. #~ msgstr "Complementos instalados..."
  4675. #~ msgctxt "@label"
  4676. #~ msgid "Support Extruder"
  4677. #~ msgstr "Extrusor do Suporte"
  4678. #~ msgctxt "description"
  4679. #~ msgid "Writes GCode to a file."
  4680. #~ msgstr "Escreve G-Code para aquivo."
  4681. #~ msgctxt "name"
  4682. #~ msgid "GCode Writer"
  4683. #~ msgstr "Gerador de G-Code"
  4684. #~ msgctxt "name"
  4685. #~ msgid "GCode Profile Reader"
  4686. #~ msgstr "Leitor de Perfis de G-Code"
  4687. #~ msgctxt "@info:status"
  4688. #~ 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!"
  4689. #~ 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!"
  4690. #~ msgctxt "@info:status"
  4691. #~ msgid "Error while starting %s!"
  4692. #~ msgstr "Erro ao iniciar %s!"
  4693. #~ msgctxt "@item:inlistbox"
  4694. #~ msgid "Simulation view"
  4695. #~ msgstr "Visão simulada"
  4696. #~ msgctxt "@info"
  4697. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  4698. #~ msgstr "O Cura coleta estatística de fatiamento anonimizadas. Você pode desabilitar isso nas preferências."
  4699. #~ msgctxt "@action:button"
  4700. #~ msgid "Dismiss"
  4701. #~ msgstr "Fechar"
  4702. #~ msgctxt "@menuitem"
  4703. #~ msgid "Global"
  4704. #~ msgstr "Global"
  4705. #~ msgctxt "@label crash message"
  4706. #~ msgid ""
  4707. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4708. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4709. #~ " "
  4710. #~ msgstr ""
  4711. #~ "<p><b>Uma exceção fatal aocorreu. Por favor nos envie este Relatório de Erros para consertarmos o problema</p></b>\n"
  4712. #~ " <p>Por favor use o botão \"Enviar relatório\" para postar um relato de bug automaticamente em nossos servidores</p>\n"
  4713. #~ " "
  4714. #~ msgctxt "@label Cura version"
  4715. #~ msgid "<b>Cura version:</b> {version}<br/>"
  4716. #~ msgstr "<b>Versão do Cura:</b> {version}<br/>"
  4717. #~ msgctxt "@label Platform"
  4718. #~ msgid "<b>Platform:</b> {platform}<br/>"
  4719. #~ msgstr "<b>Plataforma:</b> {platform}<br/>"
  4720. #~ msgctxt "@label Qt version"
  4721. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  4722. #~ msgstr "<b>Versão da Qt:</b> {qt}<br/>"
  4723. #~ msgctxt "@label PyQt version"
  4724. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  4725. #~ msgstr "<b>Versão da PyQt:</b> {pyqt}<br/>"
  4726. #~ msgctxt "@label OpenGL"
  4727. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  4728. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  4729. #~ msgctxt "@title:groupbox"
  4730. #~ msgid "Exception traceback"
  4731. #~ msgstr "Traceback de exceção"
  4732. #~ msgctxt "@label"
  4733. #~ msgid "Material diameter"
  4734. #~ msgstr "Diâmetro do material"
  4735. #~ msgctxt "@title:window"
  4736. #~ msgid "Cura SolidWorks Plugin Configuration"
  4737. #~ msgstr "Configuração do Complemento de Solidworks do Cura"
  4738. #~ msgctxt "@action:label"
  4739. #~ msgid "Default quality of the exported STL:"
  4740. #~ msgstr "Qualidade default do STL exportado:"
  4741. #~ msgctxt "@option:curaSolidworksStlQuality"
  4742. #~ msgid "Always ask"
  4743. #~ msgstr "Sempre perguntar"
  4744. #~ msgctxt "@option:curaSolidworksStlQuality"
  4745. #~ msgid "Always use Fine quality"
  4746. #~ msgstr "Sempre usar qualidade Alta"
  4747. #~ msgctxt "@option:curaSolidworksStlQuality"
  4748. #~ msgid "Always use Coarse quality"
  4749. #~ msgstr "Sempre usar qualidade Baixa"
  4750. #~ msgctxt "@title:window"
  4751. #~ msgid "Import SolidWorks File as STL..."
  4752. #~ msgstr "Importar Arquivo SolidWorks como STL..."
  4753. #~ msgctxt "@info:tooltip"
  4754. #~ msgid "Quality of the Exported STL"
  4755. #~ msgstr "Qualidade do STL Exportado"
  4756. #~ msgctxt "@action:label"
  4757. #~ msgid "Quality"
  4758. #~ msgstr "Qualidade"
  4759. #~ msgctxt "@option:curaSolidworksStlQuality"
  4760. #~ msgid "Coarse"
  4761. #~ msgstr "Baixa"
  4762. #~ msgctxt "@option:curaSolidworksStlQuality"
  4763. #~ msgid "Fine"
  4764. #~ msgstr "Alta"
  4765. #~ msgctxt "@"
  4766. #~ msgid "No Profile Available"
  4767. #~ msgstr "Nenhum Perfil Disponível"
  4768. #~ msgctxt "@label"
  4769. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  4770. #~ msgstr "Este ajuste é sempre compartilhado entre todos os extrusores. Alterá-lo aqui propagará o valor para todos os outros extrusores"
  4771. #~ msgctxt "@tooltip"
  4772. #~ msgid "<b>Time specification</b><br/><table>"
  4773. #~ msgstr "<b>Especificação de tempo</b><br/><table>"
  4774. #~ msgctxt "@action:inmenu menubar:view"
  4775. #~ msgid "&Reset camera position"
  4776. #~ msgstr "&Recompor posições de câmera"
  4777. #~ msgctxt "@title:menu menubar:file"
  4778. #~ msgid "Save project"
  4779. #~ msgstr "Salvar projeto"
  4780. #~ msgctxt "@title:tab"
  4781. #~ msgid "Prepare"
  4782. #~ msgstr "Preparar"
  4783. #~ msgctxt "@title:tab"
  4784. #~ msgid "Monitor"
  4785. #~ msgstr "Monitorar"
  4786. #~ msgctxt "@label"
  4787. #~ msgid "<a href='%1'>Check compatibility</a>"
  4788. #~ msgstr "<a href='%1'>Verificar compatibilidade</a>"
  4789. #~ msgctxt "description"
  4790. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  4791. #~ msgstr "Te dá a possibilidade de abrir certos arquivos via o próprio SolidWorks. Tais são convertidos e carregados no Cura"
  4792. #~ msgctxt "@label:status"
  4793. #~ msgid "Blocked"
  4794. #~ msgstr "Bloqueado"
  4795. #~ msgctxt "@label:status"
  4796. #~ msgid "Can't start print"
  4797. #~ msgstr "Não consigo começar a imprimir"
  4798. #~ msgctxt "@action:button"
  4799. #~ msgid "Open Connect.."
  4800. #~ msgstr "Abrir Connect.."
  4801. #~ msgctxt "@info:title"
  4802. #~ msgid "Print Details"
  4803. #~ msgstr "Detalhes de Impressão"
  4804. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4805. #~ 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."
  4806. #~ 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."
  4807. #~ msgctxt "@info:title"
  4808. #~ msgid "Layer View"
  4809. #~ msgstr "Visão de Camadas"
  4810. #~ msgctxt "@menuitem"
  4811. #~ msgid "Browse plugins"
  4812. #~ msgstr "Navegar complementos"
  4813. #~ msgctxt "@info:title"
  4814. #~ msgid "Export Details"
  4815. #~ msgstr "Detalhes da Exportação"
  4816. #~ msgctxt "@label"
  4817. #~ msgid ""
  4818. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  4819. #~ " <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"
  4820. #~ " "
  4821. #~ msgstr ""
  4822. #~ "<p>Uma exceção fatal ocorreu e não foi possível haver recuperação!</p>\n"
  4823. #~ " <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"
  4824. #~ " "
  4825. #~ msgctxt "@action:button"
  4826. #~ msgid "Open Web Page"
  4827. #~ msgstr "Abrir Página Web"
  4828. #~ msgctxt "@action:button"
  4829. #~ msgid "Ok"
  4830. #~ msgstr "Ok"
  4831. #~ msgctxt "@label"
  4832. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  4833. #~ msgstr "Esta impressora não está configurada para hospedar um grupo de impressoras Ultimaker 3 conectadas."
  4834. #~ msgctxt "@label"
  4835. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  4836. #~ msgstr "Esta impressora hospeda um grupo de %1 impressoras Ultimaker 3 conectadas"
  4837. #~ msgctxt "@label"
  4838. #~ msgid "Completed on: "
  4839. #~ msgstr "Completado em: "
  4840. #~ msgctxt "@info:tooltip"
  4841. #~ msgid "Opens the print jobs page with your default web browser."
  4842. #~ msgstr "Abre a página de trabalhos de impressão com seu navegador web default."
  4843. #~ msgctxt "@label"
  4844. #~ msgid "PRINTER GROUP"
  4845. #~ msgstr "GRUPO DE IMPRESSORAS"
  4846. #~ msgctxt "@action:warning"
  4847. #~ msgid "Loading a project will clear all models on the buildplate"
  4848. #~ msgstr "Carregar um projeto removerá todos os modelos da mesa de impressão"
  4849. #~ msgctxt "@label"
  4850. #~ msgid ""
  4851. #~ " plugin contains a license.\n"
  4852. #~ "You need to accept this license to install this plugin.\n"
  4853. #~ "Do you agree with the terms below?"
  4854. #~ msgstr ""
  4855. #~ " complemento tem uma licença.\n"
  4856. #~ "Você precisa aceitar esta licença para instalar este complemento.\n"
  4857. #~ "Você está de acordo com os termos abaixo?"
  4858. #~ msgctxt "@label"
  4859. #~ msgid "00h 00min"
  4860. #~ msgstr "00h 00min"
  4861. #~ msgctxt "@tooltip"
  4862. #~ msgid "<b>Time information</b>"
  4863. #~ msgstr "<b>Informação de tempo</b>"
  4864. #~ msgctxt "@description"
  4865. #~ msgid "Print time"
  4866. #~ msgstr "Tempo de impressão"
  4867. #~ msgctxt "@label"
  4868. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  4869. #~ msgstr "%1m / ~ %2g / ~ %4 %3"
  4870. #~ msgctxt "@label"
  4871. #~ msgid "%1m / ~ %2g"
  4872. #~ msgstr "%1m / ~ %2g"
  4873. #~ msgctxt "@title:window"
  4874. #~ msgid "Cura"
  4875. #~ msgstr "Cura"
  4876. #~ msgctxt "@label"
  4877. #~ msgid "<a href='%1'>Check material compatibility</a>"
  4878. #~ msgstr "<a href='%1'>Verificar compatibilidade de material</a>"
  4879. #~ msgctxt "name"
  4880. #~ msgid "UM3 Network Connection (Cluster)"
  4881. #~ msgstr "Conexão de Rede UM3 (Cluster)"
  4882. #~ msgctxt "description"
  4883. #~ msgid "Provides the Layer view."
  4884. #~ msgstr "Provê a visão de Camadas."
  4885. #~ msgctxt "name"
  4886. #~ msgid "Layer View"
  4887. #~ msgstr "Visão de Camadas"
  4888. #~ msgctxt "@item:inlistbox"
  4889. #~ msgid "X-Ray"
  4890. #~ msgstr "Raios X"
  4891. #~ msgctxt "@label"
  4892. #~ msgid "Doodle3D"
  4893. #~ msgstr "Doodle3D"
  4894. #~ msgctxt "@info:whatsthis"
  4895. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  4896. #~ msgstr "Aceita G-Code e o envia por wifi para o aplicativo de celular Doodle3D."
  4897. #~ msgctxt "@item:inmenu"
  4898. #~ msgid "Doodle3D printing"
  4899. #~ msgstr "Impressão Doodle3D"
  4900. #~ msgctxt "@action:button"
  4901. #~ msgid "Print with Doodle3D"
  4902. #~ msgstr "Imprimir com Doodle3D"
  4903. #~ msgctxt "@info:tooltip"
  4904. #~ msgid "Print with "
  4905. #~ msgstr "Imprimir com "
  4906. #~ msgctxt "@title:menu"
  4907. #~ msgid "Doodle3D"
  4908. #~ msgstr "Doodle3D"
  4909. #~ msgctxt "@item:inlistbox"
  4910. #~ msgid "Enable Scan devices..."
  4911. #~ msgstr "Habilitar dispositivos de escaneamento..."
  4912. #~ msgctxt "@info:progress"
  4913. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  4914. #~ msgstr "Salvando em Unidade Removível <filename>{0}</filename>"
  4915. #~ msgctxt "@info:status"
  4916. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  4917. #~ msgstr "Incapaz de salvar para <filename>{0}</filename>: <message>{1}</message>"
  4918. #~ msgctxt "@info:status"
  4919. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  4920. #~ msgstr "Por favor tenha em mente que você precisa reabrir seu arquivo Solidworks manualmente! Recarregar o modelo não irá funcionar!"
  4921. #~ msgctxt "@item:inlistbox"
  4922. #~ msgid "Layers"
  4923. #~ msgstr "Camadas"
  4924. #~ msgid "Browse plugins"
  4925. #~ msgstr "Navegar por complementos"
  4926. #~ msgctxt "@item:inmenu"
  4927. #~ msgid "Solid"
  4928. #~ msgstr "Sólido"
  4929. #~ msgctxt "@label"
  4930. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  4931. #~ msgstr "O arquivo <filename>{0}</filename> já existe. Tem certeza que quer sobrescrevê-lo?"
  4932. #~ msgctxt "@info:status"
  4933. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  4934. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: <message>{1}</message>"
  4935. #~ msgctxt "@info:status"
  4936. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  4937. #~ msgstr "Falha na exportação de perfil para <filename>{0}</filename>: Complemento de gravação acusou falha."
  4938. #~ msgctxt "@info:status"
  4939. #~ msgid "Exported profile to <filename>{0}</filename>"
  4940. #~ msgstr "Perfil exportado para <filename>{0}</filename>"
  4941. #~ msgctxt "@info:status"
  4942. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  4943. #~ msgstr "Falha na importação de perfil de <filename>{0}</filename>: <message>{1}</message>"
  4944. #~ msgctxt "@title:window"
  4945. #~ msgid "Doodle3D Settings"
  4946. #~ msgstr "Ajustes de Doodle3D"
  4947. #~ msgctxt "@title:window"
  4948. #~ msgid "Print to: %1"
  4949. #~ msgstr "Imprimir em: %1"
  4950. #~ msgctxt "@label"
  4951. #~ msgid "Extruder Temperature: %1/%2°C"
  4952. #~ msgstr "Temperatura do Extrusor: %1/%2°C"
  4953. #~ msgctxt "@label"
  4954. #~ msgid "Bed Temperature: %1/%2°C"
  4955. #~ msgstr "Temperatura da Mesa: %1/%2°C"
  4956. #~ msgctxt "@label"
  4957. #~ msgid "%1"
  4958. #~ msgstr "%1"
  4959. #~ msgctxt "@label"
  4960. #~ msgid "View Mode: Layers"
  4961. #~ msgstr "Modo de Visão: Camadas"
  4962. #~ msgctxt "@info:status"
  4963. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4964. #~ msgstr "Não foi possível importar material<filename>%1</filename>: <message>%2</message>"
  4965. #~ msgctxt "@info:status"
  4966. #~ msgid "Successfully imported material <filename>%1</filename>"
  4967. #~ msgstr "Material <filename>%1</filename> importado com sucesso"
  4968. #~ msgctxt "@info:status"
  4969. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4970. #~ msgstr "Falha ao exportar material para <filename>%1</filename>: <message>%2</message>"
  4971. #~ msgctxt "@info:status"
  4972. #~ msgid "Successfully exported material to <filename>%1</filename>"
  4973. #~ msgstr "Material <filename>%1</filename> exportado com sucesso"
  4974. #~ msgctxt "@label"
  4975. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  4976. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  4977. #~ msgctxt "@label"
  4978. #~ msgid "%1 m / ~ %2 g"
  4979. #~ msgstr "%1 m / ~ %2 g"
  4980. #~ msgctxt "@label"
  4981. #~ msgid "Hotend"
  4982. #~ msgstr "Hotend"
  4983. #~ msgctxt "@action:button"
  4984. #~ msgid "View Mode"
  4985. #~ msgstr "Modo de Visualização"
  4986. #~ msgctxt "@title:tab"
  4987. #~ msgid "Print"
  4988. #~ msgstr "Imprimir"
  4989. #~ msgctxt "@label"
  4990. #~ msgid "0%"
  4991. #~ msgstr "0%"
  4992. #~ msgctxt "@label"
  4993. #~ msgid "Empty infill will leave your model hollow with low strength."
  4994. #~ msgstr "Preenchimento vazio deixará seu modelo oco e com baixa resistência."
  4995. #~ msgctxt "@label"
  4996. #~ msgid "20%"
  4997. #~ msgstr "20%"
  4998. #~ msgctxt "@label"
  4999. #~ msgid "Light (20%) infill will give your model an average strength."
  5000. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo uma resistência média."
  5001. #~ msgctxt "@label"
  5002. #~ msgid "50%"
  5003. #~ msgstr "50%"
  5004. #~ msgctxt "@label"
  5005. #~ msgid "Dense (50%) infill will give your model an above average strength."
  5006. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo uma resistência acima da média."
  5007. #~ msgctxt "@label"
  5008. #~ msgid "100%"
  5009. #~ msgstr "100%"
  5010. #~ msgctxt "@label"
  5011. #~ msgid "Solid (100%) infill will make your model completely solid."
  5012. #~ msgstr "Preenchimento sólido (100%) fará seu modelo completamente sólido."
  5013. #~ msgctxt "@label"
  5014. #~ msgid "Gradual"
  5015. #~ msgstr "Gradual"
  5016. #~ msgctxt "description"
  5017. #~ msgid "Provides support for writing X3G files"
  5018. #~ msgstr "Provê suporte à escrita de arquivos X3G"
  5019. #~ msgctxt "name"
  5020. #~ msgid "X3G Writer"
  5021. #~ msgstr "Gerador de X3G"
  5022. #~ msgctxt "@label"
  5023. #~ msgid "Machine Settings action"
  5024. #~ msgstr "Ação de ajustes da máquina"
  5025. #~ msgctxt "@info:whatsthis"
  5026. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5027. #~ msgstr "Permite mudar ajustes da máquina (tais como volume de construção, tamanho do bico, etc)"
  5028. #~ msgctxt "@label"
  5029. #~ msgid "X-Ray View"
  5030. #~ msgstr "Visão de Raios X"
  5031. #~ msgctxt "@info:whatsthis"
  5032. #~ msgid "Provides the X-Ray view."
  5033. #~ msgstr "Provê a visão de Raios X."
  5034. #~ msgctxt "@label"
  5035. #~ msgid "X3D Reader"
  5036. #~ msgstr "Leitor de X3D"
  5037. #~ msgctxt "@info:whatsthis"
  5038. #~ msgid "Provides support for reading X3D files."
  5039. #~ msgstr "Provê suporte para ler arquivos X3D."
  5040. #~ msgctxt "@label"
  5041. #~ msgid "GCode Writer"
  5042. #~ msgstr "Gerador de G-Code"
  5043. #~ msgctxt "@info:whatsthis"
  5044. #~ msgid "Writes GCode to a file."
  5045. #~ msgstr "Salva o G-Code em um arquivo."
  5046. #~ msgctxt "@action:button Preceded by 'Ready to'."
  5047. #~ msgid "Print with Doodle3D"
  5048. #~ msgstr "Imprimir com Doodle3D"
  5049. #~ msgctxt "@info:whatsthis"
  5050. #~ msgid "Shows changes since latest checked version."
  5051. #~ msgstr "Mostra as alterações desde a última versão verificada."
  5052. #~ msgctxt "@label"
  5053. #~ msgid "Profile flatener"
  5054. #~ msgstr "Achatador de Perfil"
  5055. #~ msgctxt "@info:whatsthis"
  5056. #~ msgid "Create a flattend quality changes profile."
  5057. #~ msgstr "Faz um perfil plano com as mudanças de qualidade."
  5058. #~ msgctxt "@label"
  5059. #~ msgid "USB printing"
  5060. #~ msgstr "Impressão USB"
  5061. #~ msgctxt "@info:whatsthis"
  5062. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5063. #~ msgstr "Aceita G-Code e o envia a uma impressora. O complemento também pode atualizar o firmware."
  5064. #~ msgctxt "X3G Writer Plugin Description"
  5065. #~ msgid "Writes X3G to a file"
  5066. #~ msgstr "Salva em arquivo X3G."
  5067. #~ msgctxt "@label"
  5068. #~ msgid "Removable Drive Output Device Plugin"
  5069. #~ msgstr "Complemento de Gravação em Dispositivo de Unidade Removível"
  5070. #~ msgctxt "@info:whatsthis"
  5071. #~ msgid "Provides removable drive hotplugging and writing support."
  5072. #~ msgstr "Provê suporte a conexão a quente e gravação em unidade removível."
  5073. #~ msgctxt "@info:whatsthis"
  5074. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5075. #~ msgstr "Gerencia as conexões de rede em impressoras Ultimaker 3"
  5076. #~ msgctxt "@label"
  5077. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5078. #~ msgstr "PrintCore diferente (Cura: {0}, Impressora: {1}) selecionado para o extrusor {2}"
  5079. #~ msgctxt "@label"
  5080. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5081. #~ msgstr "PrintCore {0} não está calibrado corretamente. A calibração XY precisa ser executada na impressora."
  5082. #~ msgctxt "@label"
  5083. #~ 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."
  5084. #~ 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."
  5085. #~ msgctxt "@label"
  5086. #~ msgid "Post Processing"
  5087. #~ msgstr "Pós-processamento"
  5088. #~ msgctxt "Description of plugin"
  5089. #~ msgid "Extension that allows for user created scripts for post processing"
  5090. #~ msgstr "Extensão que permite scripts criados pelo usuário para pós-processamento"
  5091. #~ msgctxt "@label"
  5092. #~ msgid "Auto Save"
  5093. #~ msgstr "Salvar automaticamente"
  5094. #~ msgctxt "@info:whatsthis"
  5095. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5096. #~ msgstr "Salva preferências, máquinas e perfis automaticamente depois de alterações."
  5097. #~ msgctxt "@label"
  5098. #~ msgid "Slice info"
  5099. #~ msgstr "Informações de fatiamento"
  5100. #~ msgctxt "@info:whatsthis"
  5101. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  5102. #~ msgstr "Submete informações de fatiamento anônimas. Pode ser desabilitado nas preferências."
  5103. #~ msgctxt "@info"
  5104. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  5105. #~ msgstr "O Cura coleta estatísticas de fatiamento anonimizadas. Pode ser desabilitado nas preferências."
  5106. #~ msgctxt "@label"
  5107. #~ msgid "Material Profiles"
  5108. #~ msgstr "Perfis de Material"
  5109. #~ msgctxt "@info:whatsthis"
  5110. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  5111. #~ msgstr "Permite ler e escrever perfis de material baseado em XML."
  5112. #~ msgctxt "@label"
  5113. #~ msgid "Legacy Cura Profile Reader"
  5114. #~ msgstr "Leitor de perfis legados do Cura"
  5115. #~ msgctxt "@info:whatsthis"
  5116. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  5117. #~ msgstr "Provê suporte à importação de perfis de versões legadas do Cura."
  5118. #~ msgctxt "@label"
  5119. #~ msgid "GCode Profile Reader"
  5120. #~ msgstr "Leitor de perfis de G-Code"
  5121. #~ msgctxt "@info:whatsthis"
  5122. #~ msgid "Provides support for importing profiles from g-code files."
  5123. #~ msgstr "Provê suporte para importar perfis de arquivos G-Code."
  5124. #~ msgctxt "@label"
  5125. #~ msgid "Layer View"
  5126. #~ msgstr "Visão de Camadas"
  5127. #~ msgctxt "@info:whatsthis"
  5128. #~ msgid "Provides the Layer view."
  5129. #~ msgstr "Provê a Visão de Camadas"
  5130. #~ msgctxt "@label"
  5131. #~ msgid "Version Upgrade 2.5 to 2.6"
  5132. #~ msgstr "Atualização de Versão de 2.5 para 2.6"
  5133. #~ msgctxt "@info:whatsthis"
  5134. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5135. #~ msgstr "Atualiza configurações do Cura 2.5 para Cura 2.6."
  5136. #~ msgctxt "@label"
  5137. #~ msgid "Version Upgrade 2.1 to 2.2"
  5138. #~ msgstr "Atualização de Versão de 2.1 para 2.2"
  5139. #~ msgctxt "@info:whatsthis"
  5140. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5141. #~ msgstr "Atualiza configurações do Cura 2.1 para o Cura 2.2."
  5142. #~ msgctxt "@label"
  5143. #~ msgid "Version Upgrade 2.2 to 2.4"
  5144. #~ msgstr "Atualização de versão de 2.2 para 2.4"
  5145. #~ msgctxt "@info:whatsthis"
  5146. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5147. #~ msgstr "Atualiza configurações do Cura 2.2 para o Cura 2.4."
  5148. #~ msgctxt "@label"
  5149. #~ msgid "Image Reader"
  5150. #~ msgstr "Leitor de Imagens"
  5151. #~ msgctxt "@info:whatsthis"
  5152. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  5153. #~ msgstr "Habilita o recurso de gerar geometrias imprimíveis a partir de arquivos de imagem 2D."
  5154. #~ msgctxt "@label"
  5155. #~ msgid "CuraEngine Backend"
  5156. #~ msgstr "Backend do CuraEngine"
  5157. #~ msgctxt "@info:whatsthis"
  5158. #~ msgid "Provides the link to the CuraEngine slicing backend."
  5159. #~ msgstr "Proporciona a ligação da interface com o backend de fatiamento CuraEngine."
  5160. #~ msgctxt "@label"
  5161. #~ msgid "Per Model Settings Tool"
  5162. #~ msgstr "Ferramenta de Ajustes por Modelo"
  5163. #~ msgctxt "@info:whatsthis"
  5164. #~ msgid "Provides the Per Model Settings."
  5165. #~ msgstr "Provê ajustes específicos por Modelo."
  5166. #~ msgctxt "@label"
  5167. #~ msgid "3MF Reader"
  5168. #~ msgstr "Leitor de 3MF"
  5169. #~ msgctxt "@info:whatsthis"
  5170. #~ msgid "Provides support for reading 3MF files."
  5171. #~ msgstr "Provê suporte à leitura de arquivos 3MF."
  5172. #~ msgctxt "@label"
  5173. #~ msgid "Solid View"
  5174. #~ msgstr "Visão Sólida"
  5175. #~ msgctxt "@info:whatsthis"
  5176. #~ msgid "Provides a normal solid mesh view."
  5177. #~ msgstr "Provê uma visão de malha sólida normal."
  5178. #~ msgctxt "@label"
  5179. #~ msgid "G-code Reader"
  5180. #~ msgstr "Leitor de G-Code"
  5181. #~ msgctxt "@info:whatsthis"
  5182. #~ msgid "Allows loading and displaying G-code files."
  5183. #~ msgstr "Permite carregar e mostrar arquivos G-Code."
  5184. #~ msgctxt "@label"
  5185. #~ msgid "Cura Profile Writer"
  5186. #~ msgstr "Gravador de Perfis do Cura"
  5187. #~ msgctxt "@info:whatsthis"
  5188. #~ msgid "Provides support for exporting Cura profiles."
  5189. #~ msgstr "Provê suporte para a exportação de perfis do Cura."
  5190. #~ msgctxt "@label"
  5191. #~ msgid "3MF Writer"
  5192. #~ msgstr "Gerador 3MF"
  5193. #~ msgctxt "@info:whatsthis"
  5194. #~ msgid "Provides support for writing 3MF files."
  5195. #~ msgstr "Provê suporte para escrever arquivos 3MF."
  5196. #~ msgctxt "@label"
  5197. #~ msgid "Ultimaker machine actions"
  5198. #~ msgstr "Ações de máquina Ultimaker"
  5199. #~ msgctxt "@info:whatsthis"
  5200. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5201. #~ msgstr "Provê ações de máquina para impressoras Ultimaker (tais como assistente de nivelamento de mesa, seleção de atualizações, etc.)"
  5202. #~ msgctxt "@label"
  5203. #~ msgid "Cura Profile Reader"
  5204. #~ msgstr "Leitor de Perfis do Cura"
  5205. #~ msgctxt "@info:whatsthis"
  5206. #~ msgid "Provides support for importing Cura profiles."
  5207. #~ msgstr "Provê suporte para importar perfis do Cura."
  5208. #~ msgctxt "@info"
  5209. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  5210. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  5211. #~ msgctxt "@label"
  5212. #~ msgid "Build Plate Shape"
  5213. #~ msgstr "Forma da Mesa"
  5214. #~ msgctxt "@option:check"
  5215. #~ msgid "Machine Center is Zero"
  5216. #~ msgstr "Centro da Mesa é Zero"
  5217. #~ msgctxt "@option:check"
  5218. #~ msgid "Heated Bed"
  5219. #~ msgstr "Mesa Aquecida"
  5220. #~ msgctxt "@label"
  5221. #~ msgid "GCode Flavor"
  5222. #~ msgstr "Tipo de G-Code"
  5223. #~ msgctxt "@label"
  5224. #~ msgid "Material Diameter"
  5225. #~ msgstr "Diâmetro do Material"
  5226. #~ msgctxt "@label"
  5227. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  5228. #~ 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>"
  5229. #~ msgctxt "@item:inlistbox"
  5230. #~ msgid "Ultimaker"
  5231. #~ msgstr "Ultimaker"
  5232. #~ msgctxt "@label"
  5233. #~ msgid "Support library for scientific computing "
  5234. #~ msgstr "Biblioteca de suporte para computação científica"
  5235. #~ msgctxt "@tooltip"
  5236. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  5237. #~ msgstr "<b>Configuração de Impressão</b><br/></br/>Editar ou revisar os ajustes para o trabalho de impressão ativo."
  5238. #~ msgctxt "@tooltip"
  5239. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  5240. #~ msgstr "<b>Monitor de Impressão</b><br/><br/>Monitorar o estado da impressora conectada e o trabalho de impressão em progresso."
  5241. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  5242. #~ msgid "Automatic: %1"
  5243. #~ msgstr "Automático: %1"
  5244. #~ msgctxt "@label:PrintjobStatus"
  5245. #~ msgid "Please load a 3d model"
  5246. #~ msgstr "Por favor carregue um modelo 3D"
  5247. #~ msgctxt "@label"
  5248. #~ msgid "Print Selected Model with %1"
  5249. #~ msgid_plural "Print Selected Models With %1"
  5250. #~ msgstr[0] "Imprimir Modelo Selecionado com %1"
  5251. #~ msgstr[1] "Imprimir Modelos Selecionados Com %1"
  5252. #~ msgctxt "@info:status"
  5253. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  5254. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão. Não há PrinterCore carregado no slot {0}"
  5255. #~ msgctxt "@label"
  5256. #~ msgid "Version Upgrade 2.4 to 2.5"
  5257. #~ msgstr "Atualizar versão 2.4 para 2.5"
  5258. #~ msgctxt "@info:whatsthis"
  5259. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  5260. #~ msgstr "Atualiza as configurações do Cura 2.4 para o Cura 2.5"
  5261. #~ msgctxt "@info:status"
  5262. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  5263. #~ msgstr "Incapaz de encontrar um perfil de qualidade para esta combinação. Ajustes default serão usados no lugar."
  5264. #~ msgctxt "@title:window"
  5265. #~ msgid "Oops!"
  5266. #~ msgstr "Oops!"
  5267. #~ msgctxt "@label"
  5268. #~ msgid ""
  5269. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  5270. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  5271. #~ " <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"
  5272. #~ " "
  5273. #~ msgstr ""
  5274. #~ "<p>Uma exceção fatal ocorreu e não foi possível a recuperação deste estado!</p>\n"
  5275. #~ " <p>Esperamos que esta figura de um gatinho te ajude a se recuperar do choque.</p>\n"
  5276. #~ " <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"
  5277. #~ " "
  5278. #~ msgctxt "@label"
  5279. #~ msgid "Please enter the correct settings for your printer below:"
  5280. #~ msgstr "Por favor introduza os ajustes corretos para sua impressora abaixo:"
  5281. #~ msgctxt "@label"
  5282. #~ msgid "Extruder %1"
  5283. #~ msgstr "Extrusor %1"
  5284. #~ msgctxt "@label Followed by extruder selection drop-down."
  5285. #~ msgid "Print model with"
  5286. #~ msgstr "Imprimir modelo com"
  5287. #~ msgctxt "@label"
  5288. #~ msgid "You will need to restart the application for language changes to have effect."
  5289. #~ msgstr "A aplicação deverá ser reiniciada para que as alterações de idioma tenham efeito."
  5290. #~ msgctxt "@info:tooltip"
  5291. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  5292. #~ msgstr "Move a câmera de modo que o modelo esteja no centro da visão quando estiver selecionado"
  5293. #~ msgctxt "@action:inmenu menubar:edit"
  5294. #~ msgid "Delete &Selection"
  5295. #~ msgstr "Eliminar &Seleção"
  5296. #~ msgctxt "@action:inmenu menubar:file"
  5297. #~ msgid "&Open File..."
  5298. #~ msgstr "&Abrir Arquivo..."
  5299. #~ msgctxt "@action:inmenu menubar:file"
  5300. #~ msgid "&Open Project..."
  5301. #~ msgstr "&Abrir Projeto..."
  5302. #~ msgctxt "@title:window"
  5303. #~ msgid "Multiply Model"
  5304. #~ msgstr "Multiplicar Modelo"
  5305. #~ msgctxt "@title:menu menubar:file"
  5306. #~ msgid "Save &All"
  5307. #~ msgstr "Salvar &Tudo"
  5308. #~ msgctxt "@title:window"
  5309. #~ msgid "Open file"
  5310. #~ msgstr "Abrir arquivo"
  5311. #~ msgctxt "@title:window"
  5312. #~ msgid "Open workspace"
  5313. #~ msgstr "Abrir espaço de trabalho"
  5314. #~ msgctxt "@label"
  5315. #~ msgid "Hollow"
  5316. #~ msgstr "Oco"
  5317. #~ msgctxt "@label"
  5318. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  5319. #~ msgstr "Preenchimento zero (0%) deixará seu modelo oco ao custo de baixa resistência"
  5320. #~ msgctxt "@label"
  5321. #~ msgid "Light"
  5322. #~ msgstr "Leve"
  5323. #~ msgctxt "@label"
  5324. #~ msgid "Light (20%) infill will give your model an average strength"
  5325. #~ msgstr "Preenchimento leve (20%) dará ao seu modelo resistência média"
  5326. #~ msgctxt "@label"
  5327. #~ msgid "Dense"
  5328. #~ msgstr "Denso"
  5329. #~ msgctxt "@label"
  5330. #~ msgid "Dense (50%) infill will give your model an above average strength"
  5331. #~ msgstr "Preenchimento denso (50%) dará ao seu modelo resistência acima da média"
  5332. #~ msgctxt "@label"
  5333. #~ msgid "Solid"
  5334. #~ msgstr "Sólido"
  5335. #~ msgctxt "@label"
  5336. #~ msgid "Solid (100%) infill will make your model completely solid"
  5337. #~ msgstr "Preenchimento sólido (100%) fará seu modelo ficar totalmente maciço."
  5338. #~ msgctxt "@label"
  5339. #~ msgid "Enable Support"
  5340. #~ msgstr "Habilitar Suporte"
  5341. #~ msgctxt "@label"
  5342. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5343. #~ msgstr "Habilitar estruturas de suporte. Estas estruturas apóiam partes do modelo que tenham seções pendentes."
  5344. #~ msgctxt "@label"
  5345. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5346. #~ msgstr "Precisa de ajuda para melhorar suas impressões? Leia o <a href='%1'>Guia de Solução de Problemas da Ultimaker</a>."
  5347. #~ msgctxt "@info:status"
  5348. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  5349. #~ msgstr "Conectado pela rede a {0}. Por favor aprove o pedido de acesso na impressora."
  5350. #~ msgctxt "@info:status"
  5351. #~ msgid "Connected over the network to {0}."
  5352. #~ msgstr "Conectado pela rede a {0}."
  5353. #~ msgctxt "@info:status"
  5354. #~ msgid "Connected over the network to {0}. No access to control the printer."
  5355. #~ msgstr "Conectado pela rede a {0}. Não há acesso para controlar a impressora."
  5356. #~ msgctxt "@info:status"
  5357. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  5358. #~ msgstr "Incapaz de iniciar um novo trabalho de impressão porque a impressora está ocupada. Verifique a impressora."
  5359. #~ msgctxt "@label"
  5360. #~ msgid "You made changes to the following setting(s)/override(s):"
  5361. #~ msgstr "Foram feitas alterações nos seguintes ajustes:"
  5362. #~ msgctxt "@window:title"
  5363. #~ msgid "Switched profiles"
  5364. #~ msgstr "Perfis trocados"
  5365. #~ msgctxt "@label"
  5366. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  5367. #~ msgstr "Deseja transferir seus %d ajustes alterados para este perfil?"
  5368. #~ msgctxt "@label"
  5369. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  5370. #~ msgstr "Se você transferir seus ajustes eles sobrescreverão os ajustes no perfil. Se você não transferir esses ajustes, eles se perderão."
  5371. #~ msgctxt "@label"
  5372. #~ msgid "Cost per Meter (Approx.)"
  5373. #~ msgstr "Custo por Metro (Aprox.)"
  5374. #~ msgctxt "@label"
  5375. #~ msgid "%1/m"
  5376. #~ msgstr "%1/m"
  5377. #~ msgctxt "@info:tooltip"
  5378. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  5379. #~ 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."
  5380. #~ msgctxt "@action:button"
  5381. #~ msgid "Display five top layers in layer view"
  5382. #~ msgstr "Exibir as 5 camadas superiores na visão de camadas"
  5383. #~ msgctxt "@info:tooltip"
  5384. #~ msgid "Should only the top layers be displayed in layerview?"
  5385. #~ msgstr "Somente as camadas superiores devem ser exibidas na visào de camadas?"
  5386. #~ msgctxt "@option:check"
  5387. #~ msgid "Only display top layer(s) in layer view"
  5388. #~ msgstr "Somente exibir as camadas superiores na visão de camadas"
  5389. #~ msgctxt "@label"
  5390. #~ msgid "Opening files"
  5391. #~ msgstr "Abrindo arquivos..."
  5392. #~ msgctxt "@label"
  5393. #~ msgid "Printer Monitor"
  5394. #~ msgstr "Monitor da Impressora"
  5395. #~ msgctxt "@label"
  5396. #~ msgid "Temperatures"
  5397. #~ msgstr "Temperaturas"
  5398. #~ msgctxt "@label:PrintjobStatus"
  5399. #~ msgid "Preparing to slice..."
  5400. #~ msgstr "Preparando para fatiar..."
  5401. #~ msgctxt "@window:title"
  5402. #~ msgid "Changes on the Printer"
  5403. #~ msgstr "Alterações na Impressora"
  5404. #~ msgctxt "@action:inmenu"
  5405. #~ msgid "&Duplicate Model"
  5406. #~ msgstr "&Duplicar Modelo"
  5407. #~ msgctxt "@label"
  5408. #~ msgid "Helper Parts:"
  5409. #~ msgstr "Partes dos Assistentes:"
  5410. #~ msgctxt "@label"
  5411. #~ 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."
  5412. #~ 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."
  5413. #~ msgctxt "@label"
  5414. #~ msgid "Don't print support"
  5415. #~ msgstr "Não imprimir suporte"
  5416. #~ msgctxt "@label"
  5417. #~ msgid "Print support using %1"
  5418. #~ msgstr "Imprimir suporte usando %1"
  5419. #~ msgctxt "@label:listbox"
  5420. #~ msgid "Printer:"
  5421. #~ msgstr "Impressora:"
  5422. #~ msgctxt "@info:status"
  5423. #~ msgid "Successfully imported profiles {0}"
  5424. #~ msgstr "Perfis {0} importados com sucesso"
  5425. #~ msgctxt "@label"
  5426. #~ msgid "Scripts"
  5427. #~ msgstr "Scripts"
  5428. #~ msgctxt "@label"
  5429. #~ msgid "Active Scripts"
  5430. #~ msgstr "Scripts Ativos"
  5431. #~ msgctxt "@label"
  5432. #~ msgid "Done"
  5433. #~ msgstr "Feito"
  5434. #~ msgctxt "@item:inlistbox"
  5435. #~ msgid "English"
  5436. #~ msgstr "Inglês"
  5437. #~ msgctxt "@item:inlistbox"
  5438. #~ msgid "Finnish"
  5439. #~ msgstr "Finlandês"
  5440. #~ msgctxt "@item:inlistbox"
  5441. #~ msgid "French"
  5442. #~ msgstr "Francês"
  5443. #~ msgctxt "@item:inlistbox"
  5444. #~ msgid "German"
  5445. #~ msgstr "Alemão"
  5446. #~ msgctxt "@item:inlistbox"
  5447. #~ msgid "Italian"
  5448. #~ msgstr "Italiano"
  5449. #~ msgctxt "@item:inlistbox"
  5450. #~ msgid "Dutch"
  5451. #~ msgstr "Holandês"
  5452. #~ msgctxt "@item:inlistbox"
  5453. #~ msgid "Spanish"
  5454. #~ msgstr "Espanhol"
  5455. #~ msgctxt "@label"
  5456. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  5457. #~ msgstr "Deseja alterar os PrintCores e materiais do Cura para coincidir com sua impressora?"
  5458. #~ msgctxt "@label:"
  5459. #~ msgid "Print Again"
  5460. #~ msgstr "Imprimir Novamente"