cura.po 233 KB

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