fdmprinter.def.json.po 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.7\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2024-03-12 15:10+0000\n"
  10. "PO-Revision-Date: 2024-04-02 02:04+0200\n"
  11. "Last-Translator: Cláudio Sampaio <patola@gmail.com>\n"
  12. "Language-Team: Cláudio Sampaio <patola@gmail.com>\n"
  13. "Language: pt_BR\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  18. "X-Generator: Poedit 3.4.2\n"
  19. msgctxt "prime_tower_mode description"
  20. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  21. msgstr "<html>Como gerar a torre de purga:<ul><li><b>Normal:</b> cria-se um balde em que materiais secundários são purgados</li><li><b>Intercalados:</b> cria-se uma torre de purga tão esparsa quanto possível. Isto salvará material e filamento, mas só é praticável se os materiais aderirem entre si</li></ul></html>"
  22. msgctxt "brim_inside_margin description"
  23. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  24. msgstr "O brim em volta de um modelo pode tocar outro modelo onde você não deseja. Isto remove todo o brim dentro desta distância de modelos sem brim."
  25. msgctxt "ironing_inset description"
  26. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  27. msgstr "A distância a manter das arestas do modelo. Passar a ferro as arestas da malha podem resultar em um aspecto entalhado da sua peça."
  28. msgctxt "material_no_load_move_factor description"
  29. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  30. msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento."
  31. msgctxt "roofing_angles description"
  32. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  33. msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)."
  34. msgctxt "skin_angles description"
  35. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  36. msgstr "Uma lista de direções de linha inteiras para usar quando as camadas superiores e inferiores usarem os padrões de linha ou ziguezague. Elementos desta lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela inicia novamente. Os itens da lista são separados por vírgulas e a lita inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (45 e 135 graus)."
  37. msgctxt "support_infill_angles description"
  38. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  39. msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar o ângulo default de 0 graus."
  40. msgctxt "support_bottom_angles description"
  41. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  42. msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)."
  43. msgctxt "support_interface_angles description"
  44. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  45. msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)."
  46. msgctxt "support_roof_angles description"
  47. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  48. msgstr "Uma lista de direções inteiras de filete. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela recomeça do início. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia, o que significa usar os ângulos default (alternando entre 45 e 135 graus se as interfaces forem grossas, ou 90 se não)."
  49. msgctxt "infill_angles description"
  50. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  51. msgstr "Uma lista de direções de filetes em números inteiros a usar. Elementos da lista são usados sequencialmente de acordo com o progresso das camadas e quando o fim da lista é alcançado, ela volta ao começo. Os itens da lista são separados por vírgula e a lista inteira é contida em colchetes. O default é uma lista vazia que implica em usar os ângulos default tradicionais (45 e 135 graus para os padrões linha e ziguezague e 45 graus para todos os outros padrões)."
  52. msgctxt "nozzle_disallowed_areas description"
  53. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  54. msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar."
  55. msgctxt "machine_disallowed_areas description"
  56. msgid "A list of polygons with areas the print head is not allowed to enter."
  57. msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar."
  58. msgctxt "support_tree_branch_reach_limit description"
  59. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  60. msgstr "Uma recomendação de quão distante galhos podem se mover dos pontos que eles suportam. Os galhos podem violar este valor para alcançar seu destino (plataforma de impressão ou parte chata do modelo). Abaixar este valor pode fazer o suporte ficar mais estável, mas aumentará o número de galhos (e por causa disso, ambos o uso de material e o tempo de impressão) "
  61. msgctxt "extruder_prime_pos_abs label"
  62. msgid "Absolute Extruder Prime Position"
  63. msgstr "Posição Absoluta de Purga do Extrusor"
  64. msgctxt "adaptive_layer_height_variation label"
  65. msgid "Adaptive Layers Maximum Variation"
  66. msgstr "Máximo Variação das Camadas Adaptativas"
  67. msgctxt "adaptive_layer_height_threshold label"
  68. msgid "Adaptive Layers Topography Size"
  69. msgstr "Tamanho da Topografia de Camadas Adaptativas"
  70. msgctxt "adaptive_layer_height_variation_step label"
  71. msgid "Adaptive Layers Variation Step Size"
  72. msgstr "Tamanho de Passo da Variação das Camadas Adaptativas"
  73. msgctxt "adaptive_layer_height_enabled description"
  74. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  75. msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo."
  76. msgctxt "infill_wall_line_count description"
  77. msgid ""
  78. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  79. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  80. msgstr ""
  81. "Adiciona paredes extras em torno da área de preenchimento. Tais paredes podem fazer filetes de contorno de topo e base afundarem menos, o que significa que você precisará de menos camadas de contorno de topo e base para a mesma qualidade, à custa de algum material extra.\n"
  82. "Este recurso pode combinar com o Conectar Polígonos de Preenchimento para conectar todo o preenchimento em um único caminho de extrusão sem a necessidade de percursos ou retrações se os ajustes forem consistentes."
  83. msgctxt "platform_adhesion description"
  84. msgid "Adhesion"
  85. msgstr "Aderência"
  86. msgctxt "material_adhesion_tendency label"
  87. msgid "Adhesion Tendency"
  88. msgstr "Tendência à Aderência"
  89. msgctxt "skin_overlap description"
  90. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  91. msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extremos de) linhas centrais do contorno, como uma porcentagem das larguras de filete de contorno e a parede mais interna. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Note que, dadas uma largura de contorno e filete de parede iguais, qualquer porcentagem acima de 50% pode fazer com que algum contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede."
  92. msgctxt "skin_overlap_mm description"
  93. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  94. msgstr "Ajusta a quantidade de sobreposição entre as paredes e (os extermos de) linhas centrais do contorno. Uma sobreposição pequena permite que as paredes se conectem firmemente ao contorno. Note que, dados uma largura de contorno e filete de parede iguais, qualquer valor maior que metade da largura da parede pode fazer com que o contorno ultrapasse a parede, pois a este ponto a posição do bico do extrusor de contorno pode já ter passado do meio da parede."
  95. msgctxt "infill_sparse_density description"
  96. msgid "Adjusts the density of infill of the print."
  97. msgstr "Ajusta a densidade de preenchimento da impressão."
  98. msgctxt "support_interface_density description"
  99. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  100. msgstr "Ajusta a densidade dos topos e bases da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover."
  101. msgctxt "support_tree_top_rate description"
  102. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  103. msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos galhos. Um valor mais alto resulta em melhores seções pendentes, mas os suportes ficam mais difíceis de remover. Use Teto de Suporte para valores muito altos ou assegure-se que a densidade de suporte é similarmente alta no topo."
  104. msgctxt "support_infill_rate description"
  105. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  106. msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover."
  107. msgctxt "material_diameter description"
  108. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  109. msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento."
  110. msgctxt "support_type description"
  111. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  112. msgstr "Ajusta a colocação das estruturas de suporte. Pode ser ajustada para suportes que somente tocam a mesa de impressão ou suportes em todos os lugares com seções pendentes (incluindo as que não estão pendentes em relação à mesa)."
  113. msgctxt "prime_tower_wipe_enabled description"
  114. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  115. msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga."
  116. msgctxt "retraction_hop_after_extruder_switch description"
  117. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  118. msgstr "Quando a máquina troca de um extrusor para o outro, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso impede que o bico escorra material em cima da impressão."
  119. msgctxt "retraction_combing option all"
  120. msgid "All"
  121. msgstr "Tudo"
  122. msgctxt "print_sequence option all_at_once"
  123. msgid "All at Once"
  124. msgstr "Todos de Uma Vez"
  125. msgctxt "resolution description"
  126. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  127. msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)"
  128. msgctxt "user_defined_print_order_enabled description"
  129. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  130. msgstr "Permite que você ordene a lista de objetos de forma a manualmente definir a sequência de impressão. O primeiro objeto da lista será impresso primeiro."
  131. msgctxt "alternate_extra_perimeter label"
  132. msgid "Alternate Extra Wall"
  133. msgstr "Alternar Parede Adicional"
  134. msgctxt "alternate_carve_order label"
  135. msgid "Alternate Mesh Removal"
  136. msgstr "Alternar a Remoção de Malhas"
  137. msgctxt "material_alternate_walls label"
  138. msgid "Alternate Wall Directions"
  139. msgstr "Alternar Direções de Parede"
  140. msgctxt "material_alternate_walls description"
  141. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  142. msgstr "Alterna direções de parede a cada camada e reentrância. Útil para materiais que podem acumular stress, como em impressão com metal."
  143. msgctxt "machine_buildplate_type option aluminum"
  144. msgid "Aluminum"
  145. msgstr "Alumínio"
  146. msgctxt "machine_always_write_active_tool label"
  147. msgid "Always Write Active Tool"
  148. msgstr "Sempre Escrever a Ferramenta Ativa"
  149. msgctxt "travel_retract_before_outer_wall description"
  150. msgid "Always retract when moving to start an outer wall."
  151. msgstr "Sempre retrair quando se mover para iniciar uma parede externa."
  152. msgctxt "xy_offset description"
  153. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  154. msgstr "Deslocamento adicional aplicado para todos os polígonos em cada camada. Valores positivos 'engordam' a camada e podem compensar por furos exagerados; valores negativos a 'emagrecem' e podem compensar por furos pequenos."
  155. msgctxt "xy_offset_layer_0 description"
  156. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  157. msgstr "Deslocamento adicional aplicado a todos os polígonos da primeira camada. Um valor negativo pode compensar pelo esmagamento da primeira camada conhecido como \"pata de elefante\"."
  158. msgctxt "support_offset description"
  159. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  160. msgstr "Quantidade de deslocamento aplicado a todos os polígonos do suporte em cada camada. Valores positivos podem amaciar as áreas de suporte e resultar em suporte mais estável."
  161. msgctxt "support_bottom_offset description"
  162. msgid "Amount of offset applied to the floors of the support."
  163. msgstr "Quantidade de deslocamento aplicado às bases do suporte."
  164. msgctxt "support_roof_offset description"
  165. msgid "Amount of offset applied to the roofs of the support."
  166. msgstr "Quantidade de deslocamento aplicado aos tetos do suporte."
  167. msgctxt "support_interface_offset description"
  168. msgid "Amount of offset applied to the support interface polygons."
  169. msgstr "Quantidade de deslocamento aplicado aos polígonos da interface de suporte."
  170. msgctxt "wipe_retraction_amount description"
  171. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  172. msgstr "Quantidade a retrair do filamento tal que ele não escorra durante a sequência de limpeza."
  173. msgctxt "sub_div_rad_add description"
  174. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  175. msgstr "Um adicional ao raio do centro de cada cubo para verificar a borda do modelo, de modo a decidir se este cubo deve ser subdividido. Valores maiores levam a uma cobertura mais espessa de pequenos cubos perto da borda do modelo."
  176. msgctxt "anti_overhang_mesh label"
  177. msgid "Anti Overhang Mesh"
  178. msgstr "Malha Anti-Pendente"
  179. msgctxt "material_anti_ooze_retracted_position label"
  180. msgid "Anti-ooze Retracted Position"
  181. msgstr "Posição Retraída Anti-escorrimento"
  182. msgctxt "material_anti_ooze_retraction_speed label"
  183. msgid "Anti-ooze Retraction Speed"
  184. msgstr "Velocidade de Retração Anti-escorrimento"
  185. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  186. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  187. msgstr "Aplicar o deslocamento de extrusor ao sistema de coordenadas. Afeta todos os extrusores."
  188. msgctxt "interlocking_enable description"
  189. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  190. msgstr "Nos lugares em que os modelos tocam, gerar uma estrutura de vigas interligada. Isto melhora a aderência entre modelos, especialmente modelos impressos com materiais diferentes."
  191. msgctxt "travel_avoid_other_parts label"
  192. msgid "Avoid Printed Parts When Traveling"
  193. msgstr "Evitar Partes Impressas nas Viagens"
  194. msgctxt "travel_avoid_supports label"
  195. msgid "Avoid Supports When Traveling"
  196. msgstr "Evitar Suportes No Percurso"
  197. msgctxt "z_seam_position option back"
  198. msgid "Back"
  199. msgstr "Atrás"
  200. msgctxt "z_seam_position option backleft"
  201. msgid "Back Left"
  202. msgstr "Atrás à Esquerda"
  203. msgctxt "z_seam_position option backright"
  204. msgid "Back Right"
  205. msgstr "Atrás à Direita"
  206. msgctxt "machine_gcode_flavor option BFB"
  207. msgid "Bits from Bytes"
  208. msgstr "Bits from Bytes"
  209. msgctxt "magic_mesh_surface_mode option both"
  210. msgid "Both"
  211. msgstr "Ambos"
  212. msgctxt "support_interface_priority option nothing"
  213. msgid "Both overlap"
  214. msgstr "Ambos se sobrepõem"
  215. msgctxt "bottom_layers label"
  216. msgid "Bottom Layers"
  217. msgstr "Camadas Inferiores"
  218. msgctxt "top_bottom_pattern_0 label"
  219. msgid "Bottom Pattern Initial Layer"
  220. msgstr "Camada Inicial do Padrão da Base"
  221. msgctxt "bottom_skin_expand_distance label"
  222. msgid "Bottom Skin Expand Distance"
  223. msgstr "Distância de Expansão do Contorno Inferior"
  224. msgctxt "bottom_skin_preshrink label"
  225. msgid "Bottom Skin Removal Width"
  226. msgstr "Largura de Remoção do Contorno Inferior"
  227. msgctxt "bottom_thickness label"
  228. msgid "Bottom Thickness"
  229. msgstr "Espessura Inferior"
  230. msgctxt "support_tree_top_rate label"
  231. msgid "Branch Density"
  232. msgstr "Densidade de Galho"
  233. msgctxt "support_tree_branch_diameter label"
  234. msgid "Branch Diameter"
  235. msgstr "Diâmetro de Galho"
  236. msgctxt "support_tree_branch_diameter_angle label"
  237. msgid "Branch Diameter Angle"
  238. msgstr "Ângulo de Diâmetro de Galho"
  239. msgctxt "material_break_preparation_retracted_position label"
  240. msgid "Break Preparation Retracted Position"
  241. msgstr "Posição Retraída de Preparação de Quebra"
  242. msgctxt "material_break_preparation_speed label"
  243. msgid "Break Preparation Retraction Speed"
  244. msgstr "Velocidade de Retração de Preparação de Quebra"
  245. msgctxt "material_break_preparation_temperature label"
  246. msgid "Break Preparation Temperature"
  247. msgstr "Temperatura de Quebra de Preparação"
  248. msgctxt "material_break_retracted_position label"
  249. msgid "Break Retracted Position"
  250. msgstr "Posição Retraída de Quebra"
  251. msgctxt "material_break_speed label"
  252. msgid "Break Retraction Speed"
  253. msgstr "Velocidade de Retração de Quebra"
  254. msgctxt "material_break_temperature label"
  255. msgid "Break Temperature"
  256. msgstr "Temperatura de Quebra"
  257. msgctxt "support_skip_some_zags label"
  258. msgid "Break Up Support In Chunks"
  259. msgstr "Quebrar Suportes em Pedaços"
  260. msgctxt "bridge_fan_speed label"
  261. msgid "Bridge Fan Speed"
  262. msgstr "Velocidade de Ventoinha da Ponte"
  263. msgctxt "bridge_enable_more_layers label"
  264. msgid "Bridge Has Multiple Layers"
  265. msgstr "Ponte Tem Camadas Múltiplas"
  266. msgctxt "bridge_skin_density_2 label"
  267. msgid "Bridge Second Skin Density"
  268. msgstr "Densidade de Segundo Contorno da Ponte"
  269. msgctxt "bridge_fan_speed_2 label"
  270. msgid "Bridge Second Skin Fan Speed"
  271. msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte"
  272. msgctxt "bridge_skin_material_flow_2 label"
  273. msgid "Bridge Second Skin Flow"
  274. msgstr "Fluxo de Segundo Contorno da Ponte"
  275. msgctxt "bridge_skin_speed_2 label"
  276. msgid "Bridge Second Skin Speed"
  277. msgstr "Velocidade de Segundo Contorno da Ponte"
  278. msgctxt "bridge_skin_density label"
  279. msgid "Bridge Skin Density"
  280. msgstr "Densidade do Contorno de Ponte"
  281. msgctxt "bridge_skin_material_flow label"
  282. msgid "Bridge Skin Flow"
  283. msgstr "Fluxo do Contorno de Ponte"
  284. msgctxt "bridge_skin_speed label"
  285. msgid "Bridge Skin Speed"
  286. msgstr "Velocidade do Contorno de Ponte"
  287. msgctxt "bridge_skin_support_threshold label"
  288. msgid "Bridge Skin Support Threshold"
  289. msgstr "Limiar de Suporte de Contorno de Ponte"
  290. msgctxt "bridge_sparse_infill_max_density label"
  291. msgid "Bridge Sparse Infill Max Density"
  292. msgstr "Densidade Máxima do Preenchimento Esparso de Ponte"
  293. msgctxt "bridge_skin_density_3 label"
  294. msgid "Bridge Third Skin Density"
  295. msgstr "Densidade de Terceiro Contorno da Ponte"
  296. msgctxt "bridge_fan_speed_3 label"
  297. msgid "Bridge Third Skin Fan Speed"
  298. msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte"
  299. msgctxt "bridge_skin_material_flow_3 label"
  300. msgid "Bridge Third Skin Flow"
  301. msgstr "Fluxo de Terceiro Contorno da Ponte"
  302. msgctxt "bridge_skin_speed_3 label"
  303. msgid "Bridge Third Skin Speed"
  304. msgstr "Velocidade de Terceiro Contorno da Ponte"
  305. msgctxt "bridge_wall_coast label"
  306. msgid "Bridge Wall Coasting"
  307. msgstr "Desengrenagem de Parede de Ponte"
  308. msgctxt "bridge_wall_material_flow label"
  309. msgid "Bridge Wall Flow"
  310. msgstr "Fluxo da Parede de Ponte"
  311. msgctxt "bridge_wall_speed label"
  312. msgid "Bridge Wall Speed"
  313. msgstr "Velocidade da Parede de Ponte"
  314. msgctxt "adhesion_type option brim"
  315. msgid "Brim"
  316. msgstr "Brim"
  317. msgctxt "brim_inside_margin label"
  318. msgid "Brim Avoid Margin"
  319. msgstr "Margem de Prevenção de Brim"
  320. msgctxt "brim_gap label"
  321. msgid "Brim Distance"
  322. msgstr "Distância do Brim"
  323. msgctxt "brim_line_count label"
  324. msgid "Brim Line Count"
  325. msgstr "Contagem de Linhas do Brim"
  326. msgctxt "brim_location label"
  327. msgid "Brim Location"
  328. msgstr "Localização do Brim"
  329. msgctxt "brim_replaces_support label"
  330. msgid "Brim Replaces Support"
  331. msgstr "Brim Substitui Suporte"
  332. msgctxt "brim_width label"
  333. msgid "Brim Width"
  334. msgstr "Largura do Brim"
  335. msgctxt "platform_adhesion label"
  336. msgid "Build Plate Adhesion"
  337. msgstr "Aderência à Mesa"
  338. msgctxt "adhesion_extruder_nr label"
  339. msgid "Build Plate Adhesion Extruder"
  340. msgstr "Extrusor de Aderência à Mesa"
  341. msgctxt "adhesion_type label"
  342. msgid "Build Plate Adhesion Type"
  343. msgstr "Tipo de Aderência da Mesa de Impressão"
  344. msgctxt "machine_buildplate_type label"
  345. msgid "Build Plate Material"
  346. msgstr "Material da Plataforma de Impressão"
  347. msgctxt "machine_shape label"
  348. msgid "Build Plate Shape"
  349. msgstr "Forma da Mesa"
  350. msgctxt "material_bed_temperature label"
  351. msgid "Build Plate Temperature"
  352. msgstr "Temperatura da Mesa de Impressão"
  353. msgctxt "material_bed_temperature_layer_0 label"
  354. msgid "Build Plate Temperature Initial Layer"
  355. msgstr "Temperatura da Mesa de Impressão da Camada Inicial"
  356. msgctxt "build_volume_temperature label"
  357. msgid "Build Volume Temperature"
  358. msgstr "Temperatura do Volume de Impressão"
  359. msgctxt "bv_temp_anomaly_limit label"
  360. msgid "Build Volume temperature Limit"
  361. msgstr "Limite de temperature do Volume de Construção"
  362. msgctxt "bv_temp_warn_limit label"
  363. msgid "Build Volume temperature Warning"
  364. msgstr "Aviso de temperatura do Volume de Construção"
  365. msgctxt "prime_tower_brim_enable description"
  366. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  367. msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura."
  368. msgctxt "center_object label"
  369. msgid "Center Object"
  370. msgstr "Centralizar Objeto"
  371. msgctxt "conical_overhang_enabled description"
  372. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  373. msgstr "Altera a geometria do modelo a ser impresso de tal modo que o mínimo de suporte seja exigido. Seções pendentes agudas serão torcidas pra ficar mais verticais. Áreas de seções pendentes profundas se tornarão mais rasas."
  374. msgctxt "support_structure description"
  375. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  376. msgstr "Permite escolher entre as técnicas para geração de suporte. Suporte \"normal\" cria a estrutura de suporte diretamente abaixo das seções pendentes e vai em linha reta pra baixo. Suporte \"em árvore\" cria galhos na direção das seções pendentes, suportando o modelo nas pontas destes, e permitndo que se distribuam em torno do modelo para apoiá-lo na plataforma de impressão tanto quanto possível."
  377. msgctxt "coasting_speed label"
  378. msgid "Coasting Speed"
  379. msgstr "Velocidade de Desengrenagem"
  380. msgctxt "coasting_volume label"
  381. msgid "Coasting Volume"
  382. msgstr "Volume de Desengrenagem"
  383. msgctxt "coasting_enable description"
  384. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  385. msgstr "A desengrenagem ou 'coasting' troca a última parte do caminho de uma extrusão pelo caminho sem extrudar. O material escorrendo é usado para imprimir a última parte do caminho de extrusão de modo a reduzir fiapos."
  386. msgctxt "retraction_combing label"
  387. msgid "Combing Mode"
  388. msgstr "Modo de Combing"
  389. msgctxt "retraction_combing description"
  390. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  391. msgstr "O Combing mantém o bico dentro de áreas já impressas ao fazer o percurso. Isto causa movimentações de percurso um pouco mais demoradas mas reduz a necessidade de retrações. Se o combing estiver desligado, o material sofrerá retração eo bico se moverá em linha reta até o próximo ponto. É possível também evitar combing sobre contornos inferiores e superiores ou somente fazer combing dentro do preenchimento."
  392. msgctxt "command_line_settings label"
  393. msgid "Command Line Settings"
  394. msgstr "Ajustes de Linha de Comando"
  395. msgctxt "infill_pattern option concentric"
  396. msgid "Concentric"
  397. msgstr "Concêntrico"
  398. msgctxt "ironing_pattern option concentric"
  399. msgid "Concentric"
  400. msgstr "Concêntrico"
  401. msgctxt "roofing_pattern option concentric"
  402. msgid "Concentric"
  403. msgstr "Concêntrico"
  404. msgctxt "support_bottom_pattern option concentric"
  405. msgid "Concentric"
  406. msgstr "Concêntrico"
  407. msgctxt "support_interface_pattern option concentric"
  408. msgid "Concentric"
  409. msgstr "Concêntrico"
  410. msgctxt "support_pattern option concentric"
  411. msgid "Concentric"
  412. msgstr "Concêntrico"
  413. msgctxt "support_roof_pattern option concentric"
  414. msgid "Concentric"
  415. msgstr "Concêntrico"
  416. msgctxt "top_bottom_pattern option concentric"
  417. msgid "Concentric"
  418. msgstr "Concêntrico"
  419. msgctxt "top_bottom_pattern_0 option concentric"
  420. msgid "Concentric"
  421. msgstr "Concêntrico"
  422. msgctxt "support_conical_angle label"
  423. msgid "Conical Support Angle"
  424. msgstr "Ângulo de Suporte Cônico"
  425. msgctxt "support_conical_min_width label"
  426. msgid "Conical Support Minimum Width"
  427. msgstr "Largura Mínima do Suporte Cônico"
  428. msgctxt "zig_zaggify_infill label"
  429. msgid "Connect Infill Lines"
  430. msgstr "Conectar Linhas de Preenchimento"
  431. msgctxt "connect_infill_polygons label"
  432. msgid "Connect Infill Polygons"
  433. msgstr "Conectar Polígonos do Preenchimento"
  434. msgctxt "zig_zaggify_support label"
  435. msgid "Connect Support Lines"
  436. msgstr "Conectar Linhas de Suporte"
  437. msgctxt "support_connect_zigzags label"
  438. msgid "Connect Support ZigZags"
  439. msgstr "Conectar os Ziguezagues do Suporte"
  440. msgctxt "connect_skin_polygons label"
  441. msgid "Connect Top/Bottom Polygons"
  442. msgstr "Conectar Polígonos do Topo e Base"
  443. msgctxt "connect_infill_polygons description"
  444. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  445. msgstr "Conecta os caminhos de preenchimentos onde estiverem próximos um ao outro. Para padrões de preenchimento que consistam de vários polígonos fechados, a habilitação deste ajuste reduz bastante o tempo de percurso."
  446. msgctxt "support_connect_zigzags description"
  447. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  448. msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague."
  449. msgctxt "zig_zaggify_support description"
  450. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  451. msgstr "Conecta os extremos das linhas de suporte juntos. Habilitar este ajuste pode tornar seu suporte mais robusto e reduzir subextrusão, mas gastará mais material."
  452. msgctxt "zig_zaggify_infill description"
  453. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  454. msgstr "Conecta as extremidades onde o padrão de preenchimento toca a parede interna usando uma linha que segue a forma da parede interna. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduzir o efeito do preenchimento na qualidade de superfícies verticais. Desabilitar este ajuda diminui a quantidade de material usado."
  455. msgctxt "connect_skin_polygons description"
  456. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  457. msgstr "Conectar caminhos de contorno da base e topo quando estiverem próximos entre si. Para o padrão concêntrico, habilitar este ajuste reduzirá bastante o tempo de percurso, mas por as conexões poderem acontecer no meio do preenchimento, este recurso pode reduzir a qualidade da superfície superior."
  458. msgctxt "z_seam_corner description"
  459. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  460. msgstr "Controla se os cantos do contorno do modelo influenciam a posição da costura. Nenhum significa que os cantos não terão influência na posição da costura. Ocultar Costura torna mais provável que a costura ocorra em um canto interior. Expôr Costura torna mais provável que a costura ocorra em um canto exterior. Ocultar ou Expôr Costura torna mais provável que a costura ocorra em um canto interior ou exterior. Ocultação Inteligente permite tanto cantos interiores quanto exteriores, mas escolhe os interiores mais frequentemente se apropriado."
  461. msgctxt "infill_multiplier description"
  462. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  463. msgstr "Converte cada file de preenchimento para este número de filetes. Os filetes extras não se cruzam, se evitam. Isto torna o preenchimento mais rígido, mas aumenta o tempo de impressão e uso do material."
  464. msgctxt "machine_nozzle_cool_down_speed label"
  465. msgid "Cool Down Speed"
  466. msgstr "Velocidade de Resfriamento"
  467. msgctxt "cooling description"
  468. msgid "Cooling"
  469. msgstr "Refrigeração"
  470. msgctxt "cooling label"
  471. msgid "Cooling"
  472. msgstr "Refrigeração"
  473. msgctxt "infill_pattern option cross"
  474. msgid "Cross"
  475. msgstr "Cruzado"
  476. msgctxt "support_pattern option cross"
  477. msgid "Cross"
  478. msgstr "Cruzado"
  479. msgctxt "infill_pattern option cross_3d"
  480. msgid "Cross 3D"
  481. msgstr "Cruzado 3D"
  482. msgctxt "cross_infill_pocket_size label"
  483. msgid "Cross 3D Pocket Size"
  484. msgstr "Tamanho de Bolso do Cruzado 3D"
  485. msgctxt "cross_support_density_image label"
  486. msgid "Cross Fill Density Image for Support"
  487. msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte"
  488. msgctxt "cross_infill_density_image label"
  489. msgid "Cross Infill Density Image"
  490. msgstr "Imagem de Densidade do Preenchimento Cruzado"
  491. msgctxt "material_crystallinity label"
  492. msgid "Crystalline Material"
  493. msgstr "Material Cristalino"
  494. msgctxt "infill_pattern option cubic"
  495. msgid "Cubic"
  496. msgstr "Cúbico"
  497. msgctxt "infill_pattern option cubicsubdiv"
  498. msgid "Cubic Subdivision"
  499. msgstr "Subdivisão Cúbica"
  500. msgctxt "sub_div_rad_add label"
  501. msgid "Cubic Subdivision Shell"
  502. msgstr "Cobertura de Subdivisão Cúbica"
  503. msgctxt "cutting_mesh label"
  504. msgid "Cutting Mesh"
  505. msgstr "Malha de Corte"
  506. msgctxt "material_flow_temp_graph description"
  507. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  508. msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)."
  509. msgctxt "machine_acceleration label"
  510. msgid "Default Acceleration"
  511. msgstr "Aceleração Default"
  512. msgctxt "default_material_bed_temperature label"
  513. msgid "Default Build Plate Temperature"
  514. msgstr "Temperatura Default da Plataforma de Impressão"
  515. msgctxt "machine_max_jerk_e label"
  516. msgid "Default Filament Jerk"
  517. msgstr "Jerk Default do Filamento"
  518. msgctxt "default_material_print_temperature label"
  519. msgid "Default Printing Temperature"
  520. msgstr "Temperatura Default de Impressão"
  521. msgctxt "machine_max_jerk_xy label"
  522. msgid "Default X-Y Jerk"
  523. msgstr "Jerk Default nos eixos X-Y"
  524. msgctxt "machine_max_jerk_z label"
  525. msgid "Default Z Jerk"
  526. msgstr "O Jerk Default em Z"
  527. msgctxt "machine_max_jerk_xy description"
  528. msgid "Default jerk for movement in the horizontal plane."
  529. msgstr "O valor default de jerk para movimentos no plano horizontal."
  530. msgctxt "machine_max_jerk_z description"
  531. msgid "Default jerk for the motor of the Z-direction."
  532. msgstr "O valor default de jerk para movimento na direção Z."
  533. msgctxt "machine_max_jerk_e description"
  534. msgid "Default jerk for the motor of the filament."
  535. msgstr "O valor default de jerk para movimentação do filamento."
  536. msgctxt "bridge_settings_enabled description"
  537. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  538. msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas."
  539. msgctxt "inset_direction description"
  540. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  541. msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último."
  542. msgctxt "infill_mesh_order description"
  543. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  544. msgstr "Determina a prioridade desta malha ao considerar múltiplas malhas de preenchimento sobrepostas. Áreas onde múltiplas malhas de preenchimento se sobrepõem terão os ajustes da malha com a maior prioridade. Uma malha de preenchimento com prioridade maior modificará o preenchimento tanto das malhas de preenchimento com prioridade menor quanto das malhas normais."
  545. msgctxt "lightning_infill_support_angle description"
  546. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  547. msgstr "Determina quando uma camada do preenchimento relâmpago deve suportar algo sobre si. Medido no ângulo de acordo com a espessura da camada."
  548. msgctxt "lightning_infill_overhang_angle description"
  549. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  550. msgstr "Determina quando a camada de preenchimento relâmpago deve suportar o modelo sobre si. Medido no ângulo de acordo com a espessura."
  551. msgctxt "material_diameter label"
  552. msgid "Diameter"
  553. msgstr "Diâmetro"
  554. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  555. msgid "Diameter Increase To Model"
  556. msgstr "Aumento de Diâmetro para o Modelo"
  557. msgctxt "support_tree_bp_diameter description"
  558. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  559. msgstr "O diâmetro que cada galho tenta alcançar quando se aproxima da plataforma de impressão. Melhora aderência à plataforma."
  560. msgctxt "adhesion_type description"
  561. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  562. msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de impressão. Brim (bainha) adiciona uma camada única e chata em volta da base de seu modelo para impedir warping. Raft (balsa) adiciona uma grade densa com 'teto' abaixo do modelo. Skirt (saia) é uma linha impressa em volta do modelo, mas não conectada ao modelo, para apenas iniciar o processo de extrusão."
  563. msgctxt "machine_disallowed_areas label"
  564. msgid "Disallowed Areas"
  565. msgstr "Áreas Proibidas"
  566. msgctxt "infill_line_distance description"
  567. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  568. msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento."
  569. msgctxt "support_initial_layer_line_distance description"
  570. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  571. msgstr "Distância entre os filetes da camada inicial da camada de suporte. Este ajuste é calculado pela densidade de suporte."
  572. msgctxt "support_bottom_line_distance description"
  573. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  574. msgstr "Distância entre os filetes de impressão da base de suporte. Este ajuste é calculado pela densidade da Base de Suporte, mas pode ser ajustado separadamente."
  575. msgctxt "support_roof_line_distance description"
  576. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  577. msgstr "Distância entre os filetes de impressão do teto de suporte. Este ajuste é calculado pela Densidade do Teto de Suporte mas pode ser ajustado separadamente."
  578. msgctxt "support_line_distance description"
  579. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  580. msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte."
  581. msgctxt "support_bottom_distance description"
  582. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  583. msgstr "Distância da impressão até a base do suporte. Note que o valor é arredondado pra cima para a próxima altura de camada."
  584. msgctxt "support_top_distance description"
  585. msgid "Distance from the top of the support to the print."
  586. msgstr "Distância do topo do suporte à impressão."
  587. msgctxt "support_z_distance description"
  588. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers."
  589. msgstr "Distância da base ou topo do suporte à impressão. Esta lacuna provê uma folga pra remover os suporte depois da impressão do modelo. A camada de suporte superior abaixo do modelo pode ser uma fração de camadas regulares."
  590. msgctxt "infill_wipe_dist description"
  591. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  592. msgstr "Distância do percurso inserido após cada linha de preenchimento, para fazer o preenchimento aderir melhor às paredes. Esta opção é similar à sobreposição de preenchimento mas sem extrusão e somente em uma extremidade do filete de preenchimento."
  593. msgctxt "wall_0_wipe_dist description"
  594. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  595. msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z."
  596. msgctxt "draft_shield_dist description"
  597. msgid "Distance of the draft shield from the print, in the X/Y directions."
  598. msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y."
  599. msgctxt "ooze_shield_dist description"
  600. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  601. msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y."
  602. msgctxt "support_xy_distance_overhang description"
  603. msgid "Distance of the support structure from the overhang in the X/Y directions."
  604. msgstr "Distância da estrutura de suporte da seção pendente nas direções X/Y."
  605. msgctxt "support_xy_distance description"
  606. msgid "Distance of the support structure from the print in the X/Y directions."
  607. msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y."
  608. msgctxt "meshfix_fluid_motion_shift_distance description"
  609. msgid "Distance points are shifted to smooth the path"
  610. msgstr "Pontos de distância são deslocados para suavizar o caminho"
  611. msgctxt "meshfix_fluid_motion_small_distance description"
  612. msgid "Distance points are shifted to smooth the path"
  613. msgstr "Pontos de distância são deslocados para suavizar o caminho"
  614. msgctxt "min_infill_area description"
  615. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  616. msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)."
  617. msgctxt "draft_shield_height label"
  618. msgid "Draft Shield Height"
  619. msgstr "Altura da Cobertura de Trabalho"
  620. msgctxt "draft_shield_height_limitation label"
  621. msgid "Draft Shield Limitation"
  622. msgstr "Limitação da Cobertura de Trabalho"
  623. msgctxt "draft_shield_dist label"
  624. msgid "Draft Shield X/Y Distance"
  625. msgstr "Distância X/Y da Cobertura de Trabalho"
  626. msgctxt "support_mesh_drop_down label"
  627. msgid "Drop Down Support Mesh"
  628. msgstr "Malha de Suporte Abaixo"
  629. msgctxt "dual label"
  630. msgid "Dual Extrusion"
  631. msgstr "Extrusão Dual"
  632. msgctxt "machine_shape option elliptic"
  633. msgid "Elliptic"
  634. msgstr "Elíptica"
  635. msgctxt "acceleration_enabled label"
  636. msgid "Enable Acceleration Control"
  637. msgstr "Habilitar Controle de Aceleração"
  638. msgctxt "bridge_settings_enabled label"
  639. msgid "Enable Bridge Settings"
  640. msgstr "Habilitar Ajustes de Ponte"
  641. msgctxt "coasting_enable label"
  642. msgid "Enable Coasting"
  643. msgstr "Habilitar Desengrenagem"
  644. msgctxt "support_conical_enabled label"
  645. msgid "Enable Conical Support"
  646. msgstr "Habilitar Suporte Cônico"
  647. msgctxt "draft_shield_enabled label"
  648. msgid "Enable Draft Shield"
  649. msgstr "Habilitar Cobertura de Trabalho"
  650. msgctxt "meshfix_fluid_motion_enabled label"
  651. msgid "Enable Fluid Motion"
  652. msgstr "Habilitar Movimento Fluido"
  653. msgctxt "ironing_enabled label"
  654. msgid "Enable Ironing"
  655. msgstr "Habilitar Passar a Ferro"
  656. msgctxt "jerk_enabled label"
  657. msgid "Enable Jerk Control"
  658. msgstr "Habilitar Controle de Jerk"
  659. msgctxt "machine_nozzle_temp_enabled label"
  660. msgid "Enable Nozzle Temperature Control"
  661. msgstr "Habilitar Controle de Temperatura do Bico"
  662. msgctxt "ooze_shield_enabled label"
  663. msgid "Enable Ooze Shield"
  664. msgstr "Habilitar Cobertura de Escorrimento"
  665. msgctxt "prime_blob_enable label"
  666. msgid "Enable Prime Blob"
  667. msgstr "Habilitar Massa de Purga"
  668. msgctxt "prime_tower_enable label"
  669. msgid "Enable Prime Tower"
  670. msgstr "Habilitar Torre de Purga"
  671. msgctxt "cool_fan_enabled label"
  672. msgid "Enable Print Cooling"
  673. msgstr "Habilitar Refrigeração de Impressão"
  674. msgctxt "ppr_enable label"
  675. msgid "Enable Print Process Reporting"
  676. msgstr "Habilitar Relatório de Processo de Impressão"
  677. msgctxt "retraction_enable label"
  678. msgid "Enable Retraction"
  679. msgstr "Habilitar Retração"
  680. msgctxt "support_brim_enable label"
  681. msgid "Enable Support Brim"
  682. msgstr "Habilitar Brim de Suporte"
  683. msgctxt "support_bottom_enable label"
  684. msgid "Enable Support Floor"
  685. msgstr "Habilitar Base de Suporte"
  686. msgctxt "support_interface_enable label"
  687. msgid "Enable Support Interface"
  688. msgstr "Habilitar Interface de Suporte"
  689. msgctxt "support_roof_enable label"
  690. msgid "Enable Support Roof"
  691. msgstr "Habilitar Teto de Suporte"
  692. msgctxt "acceleration_travel_enabled label"
  693. msgid "Enable Travel Acceleration"
  694. msgstr "Habilitar Aceleração de Percurso"
  695. msgctxt "jerk_travel_enabled label"
  696. msgid "Enable Travel Jerk"
  697. msgstr "Habilitar Jerk de Percurso"
  698. msgctxt "ooze_shield_enabled description"
  699. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  700. msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico."
  701. msgctxt "ppr_enable description"
  702. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  703. msgstr "Habilita relatório de processo de impressão para definir valores-limite para possível detecção de falhas."
  704. msgctxt "small_skin_on_surface description"
  705. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  706. msgstr "Habilita pequenas regiões (até a 'Largura de Teto/Base Pequenos') na camada superior com contorno (exposta ao ar) pra serem preenchidas com paredes ao invés do padrão default."
  707. msgctxt "jerk_enabled description"
  708. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  709. msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão ao custo de qualidade de impressão."
  710. msgctxt "acceleration_enabled description"
  711. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  712. msgstr "Permite ajustar a aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir tempo de impressão ao custo de qualidade de impressão."
  713. msgctxt "cool_fan_enabled description"
  714. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  715. msgstr "Habilita as ventoinhas de refrigeração ao imprimir. As ventoinhas aprimoram a qualidade de impressão em camadas de tempo curto de impressão e em pontes e seções pendentes."
  716. msgctxt "machine_end_gcode label"
  717. msgid "End G-code"
  718. msgstr "G-Code Final"
  719. msgctxt "material_end_of_filament_purge_length label"
  720. msgid "End of Filament Purge Length"
  721. msgstr "Comprimento de Purga do Fim do Filamento"
  722. msgctxt "material_end_of_filament_purge_speed label"
  723. msgid "End of Filament Purge Speed"
  724. msgstr "Velocidade de Purga do Fim do Filamento"
  725. msgctxt "brim_replaces_support description"
  726. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  727. msgstr "Força que o brim seja impresso em volta do modelo mesmo se este espaço fosse ser ocupado por suporte. Isto substitui algumas regiões da primeira camada de suporte por regiões de brim."
  728. msgctxt "brim_location option everywhere"
  729. msgid "Everywhere"
  730. msgstr "Em Todo Lugar"
  731. msgctxt "support_type option everywhere"
  732. msgid "Everywhere"
  733. msgstr "Em Todo Lugar"
  734. msgctxt "slicing_tolerance option exclusive"
  735. msgid "Exclusive"
  736. msgstr "Exclusivo"
  737. msgctxt "experimental label"
  738. msgid "Experimental"
  739. msgstr "Experimental"
  740. msgctxt "z_seam_corner option z_seam_corner_outer"
  741. msgid "Expose Seam"
  742. msgstr "Expôr Costura"
  743. msgctxt "meshfix_extensive_stitching label"
  744. msgid "Extensive Stitching"
  745. msgstr "Costura Extensa"
  746. msgctxt "meshfix_extensive_stitching description"
  747. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  748. msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças."
  749. msgctxt "infill_wall_line_count label"
  750. msgid "Extra Infill Wall Count"
  751. msgstr "Contagem de Paredes de Preenchimento Extras"
  752. msgctxt "skin_outline_count label"
  753. msgid "Extra Skin Wall Count"
  754. msgstr "Contagem de Paredes Extras de Contorno"
  755. msgctxt "switch_extruder_extra_prime_amount description"
  756. msgid "Extra material to prime after nozzle switching."
  757. msgstr "Material extra a avançar depois da troca de bico."
  758. msgctxt "extruder_prime_pos_x label"
  759. msgid "Extruder Prime X Position"
  760. msgstr "Posição X da Purga do Extrusor"
  761. msgctxt "extruder_prime_pos_y label"
  762. msgid "Extruder Prime Y Position"
  763. msgstr "Posição Y da Purga do Extrusor"
  764. msgctxt "extruder_prime_pos_z label"
  765. msgid "Extruder Prime Z Position"
  766. msgstr "Posição Z de Purga do Extrusor"
  767. msgctxt "machine_extruders_share_heater label"
  768. msgid "Extruders Share Heater"
  769. msgstr "Extrusores Compartilham Aquecedor"
  770. msgctxt "machine_extruders_share_nozzle label"
  771. msgid "Extruders Share Nozzle"
  772. msgstr "Extrusores Compartilham o Bico"
  773. msgctxt "material_extrusion_cool_down_speed label"
  774. msgid "Extrusion Cool Down Speed Modifier"
  775. msgstr "Modificador de Velocidade de Resfriamento de Extrusão"
  776. msgctxt "speed_equalize_flow_width_factor description"
  777. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  778. msgstr "Fator de correção de largura de extrusão baseada na velocidade. Em 0%, a velocidade de movimento é mantida constante na Velocidade de Impressão. Em 100%, a velocidade de movimento é ajustada de forma que o fluxo (em mm³/s) seja mantido constante, isto é, filetes de metade da Largura de Filete normal são impressos duas vezes mais rápido e filetes duas vezes mais espessos são impressos na metade da velocidade. Um valor mais alto que 100% pode ajudar a compensar pela maior pressão necessária para extrudar filetes espessos."
  779. msgctxt "cool_fan_speed label"
  780. msgid "Fan Speed"
  781. msgstr "Velocidade da Ventoinha"
  782. msgctxt "support_fan_enable label"
  783. msgid "Fan Speed Override"
  784. msgstr "Sobrepor Velocidade de Ventoinha"
  785. msgctxt "small_feature_max_length description"
  786. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  787. msgstr "Contornos de aspectos menores que este comprimento serão impressos usando a Velocidade de Aspecto Pequeno."
  788. msgctxt "experimental description"
  789. msgid "Features that haven't completely been fleshed out yet."
  790. msgstr "Recursos que não foram completamente desenvolvidos ainda."
  791. msgctxt "machine_feeder_wheel_diameter label"
  792. msgid "Feeder Wheel Diameter"
  793. msgstr "Diâmetro da Engrenagem de Alimentação"
  794. msgctxt "material_final_print_temperature label"
  795. msgid "Final Printing Temperature"
  796. msgstr "Temperatura de Impressão Final"
  797. msgctxt "machine_firmware_retract label"
  798. msgid "Firmware Retraction"
  799. msgstr "Retração de Firmware"
  800. msgctxt "support_extruder_nr_layer_0 label"
  801. msgid "First Layer Support Extruder"
  802. msgstr "Extrusor de Suporte da Primeira Camada"
  803. msgctxt "material_flow label"
  804. msgid "Flow"
  805. msgstr "Fluxo"
  806. msgctxt "speed_equalize_flow_width_factor label"
  807. msgid "Flow Equalization Ratio"
  808. msgstr "Raio de Equalização de Fluxo"
  809. msgctxt "flow_anomaly_limit label"
  810. msgid "Flow Limit"
  811. msgstr "Limite de Fluxo"
  812. msgctxt "flow_rate_extrusion_offset_factor label"
  813. msgid "Flow Rate Compensation Factor"
  814. msgstr "Fator de Compensação da Taxa de Fluxo"
  815. msgctxt "flow_rate_max_extrusion_offset label"
  816. msgid "Flow Rate Compensation Max Extrusion Offset"
  817. msgstr "Máximo Deslocamento de Extrusão de Compensação de Taxa de Fluxo"
  818. msgctxt "material_flow_temp_graph label"
  819. msgid "Flow Temperature Graph"
  820. msgstr "Gráfico de Fluxo de Temperatura"
  821. msgctxt "flow_warn_limit label"
  822. msgid "Flow Warning"
  823. msgstr "Aviso de Fluxo"
  824. msgctxt "material_flow_layer_0 description"
  825. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  826. msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor."
  827. msgctxt "skin_material_flow_layer_0 description"
  828. msgid "Flow compensation on bottom lines of the first layer"
  829. msgstr "Compensação de fluxo nos filetes da base da primeira camada"
  830. msgctxt "infill_material_flow description"
  831. msgid "Flow compensation on infill lines."
  832. msgstr "Compensação de fluxo em filetes de preenchimento."
  833. msgctxt "support_interface_material_flow description"
  834. msgid "Flow compensation on lines of support roof or floor."
  835. msgstr "Compensação de fluxo em filetes do teto ou base do suporte."
  836. msgctxt "roofing_material_flow description"
  837. msgid "Flow compensation on lines of the areas at the top of the print."
  838. msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão."
  839. msgctxt "prime_tower_flow description"
  840. msgid "Flow compensation on prime tower lines."
  841. msgstr "Compensação de fluxo em filetes de torre de purga."
  842. msgctxt "skirt_brim_material_flow description"
  843. msgid "Flow compensation on skirt or brim lines."
  844. msgstr "Compensação de Fluxo em filetes de Skirt e Brim."
  845. msgctxt "support_bottom_material_flow description"
  846. msgid "Flow compensation on support floor lines."
  847. msgstr "Compensação de fluxo nos filetes da base do suporte."
  848. msgctxt "support_roof_material_flow description"
  849. msgid "Flow compensation on support roof lines."
  850. msgstr "Compensação de fluxo em filetes do teto de suporte."
  851. msgctxt "support_material_flow description"
  852. msgid "Flow compensation on support structure lines."
  853. msgstr "Compensação de fluxo em filetes de estruturas de suporte."
  854. msgctxt "wall_0_material_flow_layer_0 description"
  855. msgid "Flow compensation on the outermost wall line of the first layer."
  856. msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada."
  857. msgctxt "wall_0_material_flow description"
  858. msgid "Flow compensation on the outermost wall line."
  859. msgstr "Compensação de fluxo no filete de parede mais externo."
  860. msgctxt "wall_0_material_flow_roofing description"
  861. msgid "Flow compensation on the top surface outermost wall line."
  862. msgstr "Compensação de fluxo no filete de parede externo de superfície do topo."
  863. msgctxt "wall_x_material_flow_roofing description"
  864. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  865. msgstr "Compensação de fluxo nos files de parede de superfície do topo excetuando o mais externo."
  866. msgctxt "skin_material_flow description"
  867. msgid "Flow compensation on top/bottom lines."
  868. msgstr "Compensação de fluxo em filetes do topo e base."
  869. msgctxt "wall_x_material_flow_layer_0 description"
  870. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  871. msgstr "Compensação de fluxo nos filetes de parede para todos os filetes exceto o mais externo, mas só para a primeira camada"
  872. msgctxt "wall_x_material_flow description"
  873. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  874. msgstr "Compensação de fluxo em todos os filetes de parede excetuando o mais externo."
  875. msgctxt "wall_material_flow description"
  876. msgid "Flow compensation on wall lines."
  877. msgstr "Compensação de fluxo em filetes das paredes."
  878. msgctxt "material_flow description"
  879. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  880. msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor."
  881. msgctxt "meshfix_fluid_motion_angle label"
  882. msgid "Fluid Motion Angle"
  883. msgstr "Ângulo de Movimento Fluido"
  884. msgctxt "meshfix_fluid_motion_shift_distance label"
  885. msgid "Fluid Motion Shift Distance"
  886. msgstr "Distância de Deslocamento do Movimento Fluido"
  887. msgctxt "meshfix_fluid_motion_small_distance label"
  888. msgid "Fluid Motion Small Distance"
  889. msgstr "Distância Pequena do Movimento Fluido"
  890. msgctxt "material_flush_purge_length label"
  891. msgid "Flush Purge Length"
  892. msgstr "Comprimento da Descarga de Purga"
  893. msgctxt "material_flush_purge_speed label"
  894. msgid "Flush Purge Speed"
  895. msgstr "Velocidade de Descarga de Purga"
  896. msgctxt "min_wall_line_width description"
  897. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  898. msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede."
  899. msgctxt "z_seam_position option front"
  900. msgid "Front"
  901. msgstr "Frente"
  902. msgctxt "z_seam_position option frontleft"
  903. msgid "Front Left"
  904. msgstr "Frente à Esquerda"
  905. msgctxt "z_seam_position option frontright"
  906. msgid "Front Right"
  907. msgstr "Frente à Direita"
  908. msgctxt "draft_shield_height_limitation option full"
  909. msgid "Full"
  910. msgstr "Completo"
  911. msgctxt "magic_fuzzy_skin_enabled label"
  912. msgid "Fuzzy Skin"
  913. msgstr "Contorno Felpudo"
  914. msgctxt "magic_fuzzy_skin_point_density label"
  915. msgid "Fuzzy Skin Density"
  916. msgstr "Densidade do Contorno Felpudo"
  917. msgctxt "magic_fuzzy_skin_outside_only label"
  918. msgid "Fuzzy Skin Outside Only"
  919. msgstr "Contorno Felpudo Externo Apenas"
  920. msgctxt "magic_fuzzy_skin_point_dist label"
  921. msgid "Fuzzy Skin Point Distance"
  922. msgstr "Distância de Pontos do Contorno Felpudo"
  923. msgctxt "magic_fuzzy_skin_thickness label"
  924. msgid "Fuzzy Skin Thickness"
  925. msgstr "Espessura do Contorno Felpudo"
  926. msgctxt "machine_gcode_flavor label"
  927. msgid "G-code Flavor"
  928. msgstr "Sabor de G-Code"
  929. msgctxt "machine_end_gcode description"
  930. msgid ""
  931. "G-code commands to be executed at the very end - separated by \n"
  932. "."
  933. msgstr ""
  934. "Comandos G-Code a serem executados no final da impressão - separados por \n"
  935. "."
  936. msgctxt "machine_start_gcode description"
  937. msgid ""
  938. "G-code commands to be executed at the very start - separated by \n"
  939. "."
  940. msgstr ""
  941. "Comandos G-Code a serem executados no início da impressão - separados por \n"
  942. "."
  943. msgctxt "material_guid description"
  944. msgid "GUID of the material. This is set automatically."
  945. msgstr "GUID do material. É ajustado automaticamente."
  946. msgctxt "gantry_height label"
  947. msgid "Gantry Height"
  948. msgstr "Altura do Eixo"
  949. msgctxt "interlocking_enable label"
  950. msgid "Generate Interlocking Structure"
  951. msgstr "Gerar Estrutura Interligada"
  952. msgctxt "support_enable label"
  953. msgid "Generate Support"
  954. msgstr "Gerar Suporte"
  955. msgctxt "support_brim_enable description"
  956. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  957. msgstr "Gera o brim dentro das regiões de preenchimento de suporte da primeira camada. Este brim é impresso sob o suporte, não em volta dele. Habilitar este ajuste aumenta a aderência de suporte à mesa de impressão."
  958. msgctxt "support_interface_enable description"
  959. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  960. msgstr "Gera uma interface densa entre o modelo e o suporte. Isto criará um contorno no topo do suporte em que o modelo é impresso e na base do suporte, onde ele fica sobre o modelo."
  961. msgctxt "support_bottom_enable description"
  962. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  963. msgstr "Gera um bloco denso de material entre a base do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte."
  964. msgctxt "support_roof_enable description"
  965. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  966. msgstr "Gera um bloco denso de material entre o topo do suporte e o modelo. Isto criará uma divisória entre o modelo e o suporte."
  967. msgctxt "support_enable description"
  968. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  969. msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão."
  970. msgctxt "machine_buildplate_type option glass"
  971. msgid "Glass"
  972. msgstr "Vidro"
  973. msgctxt "ironing_enabled description"
  974. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  975. msgstr "Passa sobre a superfície superior uma vez a mais, mas extrudando muito pouco material. Isto serve para derreter mais o plástico em cima, criando uma superfície lisa. A pressão na câmara do bico é mantida alta tal que as rugas na superfície são preenchidas com material."
  976. msgctxt "gradual_infill_step_height label"
  977. msgid "Gradual Infill Step Height"
  978. msgstr "Altura de Passo do Preenchimento Gradual"
  979. msgctxt "gradual_infill_steps label"
  980. msgid "Gradual Infill Steps"
  981. msgstr "Passos Graduais de Preenchimento"
  982. msgctxt "gradual_support_infill_step_height label"
  983. msgid "Gradual Support Infill Step Height"
  984. msgstr "Altura de Passo do Preenchimento Gradual de Suporte"
  985. msgctxt "gradual_support_infill_steps label"
  986. msgid "Gradual Support Infill Steps"
  987. msgstr "Passos de Preenchimento Gradual de Suporte"
  988. msgctxt "cool_min_temperature description"
  989. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  990. msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada."
  991. msgctxt "infill_pattern option grid"
  992. msgid "Grid"
  993. msgstr "Grade"
  994. msgctxt "support_bottom_pattern option grid"
  995. msgid "Grid"
  996. msgstr "Grade"
  997. msgctxt "support_interface_pattern option grid"
  998. msgid "Grid"
  999. msgstr "Grade"
  1000. msgctxt "support_pattern option grid"
  1001. msgid "Grid"
  1002. msgstr "Grade"
  1003. msgctxt "support_roof_pattern option grid"
  1004. msgid "Grid"
  1005. msgstr "Grade"
  1006. msgctxt "machine_gcode_flavor option Griffin"
  1007. msgid "Griffin"
  1008. msgstr "Griffin"
  1009. msgctxt "group_outer_walls label"
  1010. msgid "Group Outer Walls"
  1011. msgstr "Agrupar Paredes Externas"
  1012. msgctxt "infill_pattern option gyroid"
  1013. msgid "Gyroid"
  1014. msgstr "Giróide"
  1015. msgctxt "support_pattern option gyroid"
  1016. msgid "Gyroid"
  1017. msgstr "Giróide"
  1018. msgctxt "machine_heated_build_volume label"
  1019. msgid "Has Build Volume Temperature Stabilization"
  1020. msgstr "Tem Estabilização de Temperatura do Volume de Impressão"
  1021. msgctxt "machine_heated_bed label"
  1022. msgid "Has Heated Build Plate"
  1023. msgstr "Tem Mesa Aquecida"
  1024. msgctxt "machine_nozzle_heat_up_speed label"
  1025. msgid "Heat Up Speed"
  1026. msgstr "Velocidade de Aquecimento"
  1027. msgctxt "machine_heat_zone_length label"
  1028. msgid "Heat Zone Length"
  1029. msgstr "Comprimento da Zona de Aquecimento"
  1030. msgctxt "draft_shield_height description"
  1031. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  1032. msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa."
  1033. msgctxt "z_seam_corner option z_seam_corner_inner"
  1034. msgid "Hide Seam"
  1035. msgstr "Ocultar Costura"
  1036. msgctxt "z_seam_corner option z_seam_corner_any"
  1037. msgid "Hide or Expose Seam"
  1038. msgstr "Ocultar ou Expor Costura"
  1039. msgctxt "hole_xy_offset label"
  1040. msgid "Hole Horizontal Expansion"
  1041. msgstr "Expansão Horizontal do Furo"
  1042. msgctxt "hole_xy_offset_max_diameter label"
  1043. msgid "Hole Horizontal Expansion Max Diameter"
  1044. msgstr "Diâmetro Máximo da Expansão Horizontal de Furo"
  1045. msgctxt "small_hole_max_size description"
  1046. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1047. msgstr "Furos e contornos de partes com diâmetro menor que este serão impressos usando a Velocidade de Aspecto Pequeno."
  1048. msgctxt "xy_offset label"
  1049. msgid "Horizontal Expansion"
  1050. msgstr "Expansão Horizontal"
  1051. msgctxt "material_shrinkage_percentage_xy label"
  1052. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1053. msgstr "Compensação de Fator de Encolhimento Horizontal"
  1054. msgctxt "material_break_preparation_retracted_position description"
  1055. msgid "How far the filament can be stretched before it breaks, while heated."
  1056. msgstr "Quanto o filamento pode ser esticado antes que quebre, quando aquecido."
  1057. msgctxt "material_anti_ooze_retracted_position description"
  1058. msgid "How far the material needs to be retracted before it stops oozing."
  1059. msgstr "De quanto o material precisa ser retraído antes que pare de escorrer."
  1060. msgctxt "flow_rate_extrusion_offset_factor description"
  1061. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  1062. msgstr "Em quanto mover o filamento para compensar mudanças na taxa de fluxo, como uma porcentagem da distância que o filamento seria movido em um segundo de extrusão."
  1063. msgctxt "material_break_retracted_position description"
  1064. msgid "How far to retract the filament in order to break it cleanly."
  1065. msgstr "De quanto o filamento deve ser retraído para se destacar completamente."
  1066. msgctxt "material_break_preparation_speed description"
  1067. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1068. msgstr "Qual a velocidade do material para que seja retraído antes de quebrar em uma retração."
  1069. msgctxt "material_anti_ooze_retraction_speed description"
  1070. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1071. msgstr "Qual a velocidade do material para que seja retraído durante a troca de filamento sem escorrimento."
  1072. msgctxt "material_end_of_filament_purge_speed description"
  1073. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1074. msgstr "Quão rápido purgar o material depois de trocar um carretel vazio por um novo carretel do mesmo material."
  1075. msgctxt "material_flush_purge_speed description"
  1076. msgid "How fast to prime the material after switching to a different material."
  1077. msgstr "Quão rápido purgar o material depois de alternar para um material diferente."
  1078. msgctxt "material_maximum_park_duration description"
  1079. msgid "How long the material can be kept out of dry storage safely."
  1080. msgstr "Quanto tempo o material pode ser mantido fora de armazenamento seco com segurança."
  1081. msgctxt "machine_steps_per_mm_x description"
  1082. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1083. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X."
  1084. msgctxt "machine_steps_per_mm_y description"
  1085. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1086. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y."
  1087. msgctxt "machine_steps_per_mm_z description"
  1088. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1089. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z."
  1090. msgctxt "machine_steps_per_mm_e description"
  1091. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1092. msgstr "Quantos passos dos motores resultarão no movimento da engrenagem de alimentação em um milímetro da circunferência."
  1093. msgctxt "material_end_of_filament_purge_length description"
  1094. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1095. msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando um carretel vazio for trocado por um carretel novo do mesmo material."
  1096. msgctxt "material_flush_purge_length description"
  1097. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1098. msgstr "Quanto material usar para purgar o material anterior do bico (em comprimento de filamento) quando alternar para um material diferente."
  1099. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1100. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  1101. msgstr "Quanto é assumido que o filamento de cada extrusor tenha retraído da ponta do bico ao completar o script g-code de início da impressora; o valor deve ser igual ou superior ao comprimento da parte comum dos dutos do bico."
  1102. msgctxt "support_interface_priority description"
  1103. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1104. msgstr "Como a interface de suporte a o suporte interagirão quando eles se sobrepuserem. No momento implementado apenas para teto de suporte."
  1105. msgctxt "support_tree_min_height_to_model description"
  1106. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  1107. msgstr "Quão alto um galho tem que ser para ser agregado ao modelo. Previne pequenos nódulos de suporte. Este ajuste é ignorado quando um galho está suportando teto de suporte."
  1108. msgctxt "bridge_skin_support_threshold description"
  1109. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  1110. msgstr "Se uma região do contorno for suportada por menos do que esta porcentagem de sua área, imprimi-la com os ajustes de ponte. Senão, imprimir usando os ajustes normais de contorno."
  1111. msgctxt "meshfix_fluid_motion_angle description"
  1112. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1113. msgstr "Se um segmento do percurso do extrusor se desviar do movimento geral por um ângulo maior que esse, será suavizado."
  1114. msgctxt "bridge_enable_more_layers description"
  1115. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  1116. msgstr "Se habilitado, a segunda e terceira camadas sobre o ar serão impressas usando os ajustes seguintes. Senão, estas camadas serão impressas com ajustes normais."
  1117. msgctxt "wall_transition_filter_distance description"
  1118. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  1119. msgstr "Se for detectado que a cabeça de impressão estaria alternando em rápida sucessão entre números diferentes de parede, não fazer tal alternação. Remove transições se elas estiverem próximas até essa distância."
  1120. msgctxt "raft_base_margin description"
  1121. msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1122. msgstr "Se a base do raft estiver habilitada, esta é a área de raft extra em torno do modelo que também a terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para sua impressão."
  1123. msgctxt "raft_margin description"
  1124. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1125. msgstr "Se o Raft estiver habilitado, esta é a área extra do raft em volta do modelo que também faz parte dele. Aumentar esta margem criará um raft mais forte mas também gastará mais material e deixará menos área para sua impressão."
  1126. msgctxt "raft_interface_margin description"
  1127. msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1128. msgstr "Se o meio do raft estiver habilitado, esta será a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas também usará mais material e deixará uma área menor para a sua impressão."
  1129. msgctxt "raft_surface_margin description"
  1130. msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  1131. msgstr "Se o topo do raft estiver habilitado, esta é a área extra de raft em torno do modelo que também o terá. Aumentar esta margem criará um raft mais forte mas usará mais material e deixará menos área para sua impressão."
  1132. msgctxt "meshfix_union_all description"
  1133. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  1134. msgstr "Ignora a geometria interna de volumes sobrepostos dentro de uma malha e imprime os volumes como um único volume. Isto pode ter o efeito não-intencional de fazer cavidades desaparecerem."
  1135. msgctxt "material_bed_temp_prepend label"
  1136. msgid "Include Build Plate Temperature"
  1137. msgstr "Incluir Temperatura da Mesa"
  1138. msgctxt "material_print_temp_prepend label"
  1139. msgid "Include Material Temperatures"
  1140. msgstr "Incluir Temperaturas de Material"
  1141. msgctxt "slicing_tolerance option inclusive"
  1142. msgid "Inclusive"
  1143. msgstr "Inclusivo"
  1144. msgctxt "infill description"
  1145. msgid "Infill"
  1146. msgstr "Preenchimento"
  1147. msgctxt "infill label"
  1148. msgid "Infill"
  1149. msgstr "Preenchimento"
  1150. msgctxt "acceleration_infill label"
  1151. msgid "Infill Acceleration"
  1152. msgstr "Aceleração do Preenchimento"
  1153. msgctxt "infill_before_walls label"
  1154. msgid "Infill Before Walls"
  1155. msgstr "Preenchimento Antes das Paredes"
  1156. msgctxt "infill_sparse_density label"
  1157. msgid "Infill Density"
  1158. msgstr "Densidade do Preenchimento"
  1159. msgctxt "infill_extruder_nr label"
  1160. msgid "Infill Extruder"
  1161. msgstr "Extrusor do Preenchimento"
  1162. msgctxt "infill_material_flow label"
  1163. msgid "Infill Flow"
  1164. msgstr "Fluxo de Preenchimento"
  1165. msgctxt "jerk_infill label"
  1166. msgid "Infill Jerk"
  1167. msgstr "Jerk do Preenchimento"
  1168. msgctxt "infill_sparse_thickness label"
  1169. msgid "Infill Layer Thickness"
  1170. msgstr "Espessura da Camada de Preenchimento"
  1171. msgctxt "infill_angles label"
  1172. msgid "Infill Line Directions"
  1173. msgstr "Direções de Filetes de Preenchimento"
  1174. msgctxt "infill_line_distance label"
  1175. msgid "Infill Line Distance"
  1176. msgstr "Distância da Linha de Preenchimento"
  1177. msgctxt "infill_multiplier label"
  1178. msgid "Infill Line Multiplier"
  1179. msgstr "Multiplicador de Filete de Preenchimento"
  1180. msgctxt "infill_line_width label"
  1181. msgid "Infill Line Width"
  1182. msgstr "Largura de Extrusão do Preenchimento"
  1183. msgctxt "infill_mesh label"
  1184. msgid "Infill Mesh"
  1185. msgstr "Malha de Preenchimento"
  1186. msgctxt "infill_support_angle label"
  1187. msgid "Infill Overhang Angle"
  1188. msgstr "Ângulo de Seções Pendentes do Preenchimento"
  1189. msgctxt "infill_overlap_mm label"
  1190. msgid "Infill Overlap"
  1191. msgstr "Sobreposição de Preenchimento"
  1192. msgctxt "infill_overlap label"
  1193. msgid "Infill Overlap Percentage"
  1194. msgstr "Porcentagem de Sobreposição do Preenchimento"
  1195. msgctxt "infill_pattern label"
  1196. msgid "Infill Pattern"
  1197. msgstr "Padrão de Preenchimento"
  1198. msgctxt "speed_infill label"
  1199. msgid "Infill Speed"
  1200. msgstr "Velocidade de Preenchimento"
  1201. msgctxt "infill_support_enabled label"
  1202. msgid "Infill Support"
  1203. msgstr "Suporte do Preenchimento"
  1204. msgctxt "infill_enable_travel_optimization label"
  1205. msgid "Infill Travel Optimization"
  1206. msgstr "Otimização de Percurso de Preenchimento"
  1207. msgctxt "infill_wipe_dist label"
  1208. msgid "Infill Wipe Distance"
  1209. msgstr "Distância de Varredura do Preenchimento"
  1210. msgctxt "infill_offset_x label"
  1211. msgid "Infill X Offset"
  1212. msgstr "Deslocamento X do Preenchimento"
  1213. msgctxt "infill_offset_y label"
  1214. msgid "Infill Y Offset"
  1215. msgstr "Deslocamento do Preenchimento Y"
  1216. msgctxt "initial_bottom_layers label"
  1217. msgid "Initial Bottom Layers"
  1218. msgstr "Camadas Inferiores Iniciais"
  1219. msgctxt "cool_fan_speed_0 label"
  1220. msgid "Initial Fan Speed"
  1221. msgstr "Velocidade Inicial da Ventoinha"
  1222. msgctxt "acceleration_layer_0 label"
  1223. msgid "Initial Layer Acceleration"
  1224. msgstr "Aceleração da Camada Inicial"
  1225. msgctxt "skin_material_flow_layer_0 label"
  1226. msgid "Initial Layer Bottom Flow"
  1227. msgstr "Fluxo da Base da Camada Inicial"
  1228. msgctxt "support_tree_bp_diameter label"
  1229. msgid "Initial Layer Diameter"
  1230. msgstr "Diâmetro da Camada Inicial"
  1231. msgctxt "material_flow_layer_0 label"
  1232. msgid "Initial Layer Flow"
  1233. msgstr "Fluxo Inicial de Camada"
  1234. msgctxt "layer_height_0 label"
  1235. msgid "Initial Layer Height"
  1236. msgstr "Altura da Primeira Camada"
  1237. msgctxt "xy_offset_layer_0 label"
  1238. msgid "Initial Layer Horizontal Expansion"
  1239. msgstr "Expansão Horizontal da Camada Inicial"
  1240. msgctxt "wall_x_material_flow_layer_0 label"
  1241. msgid "Initial Layer Inner Wall Flow"
  1242. msgstr "Fluxo de Parede Interna da Camada Inicial"
  1243. msgctxt "jerk_layer_0 label"
  1244. msgid "Initial Layer Jerk"
  1245. msgstr "Jerk da Camada Inicial"
  1246. msgctxt "initial_layer_line_width_factor label"
  1247. msgid "Initial Layer Line Width"
  1248. msgstr "Largura de Extrusão da Camada Inicial"
  1249. msgctxt "wall_0_material_flow_layer_0 label"
  1250. msgid "Initial Layer Outer Wall Flow"
  1251. msgstr "Fluxo de Parede Externa da Camada Inicial"
  1252. msgctxt "acceleration_print_layer_0 label"
  1253. msgid "Initial Layer Print Acceleration"
  1254. msgstr "Aceleração de Impressão da Camada Inicial"
  1255. msgctxt "jerk_print_layer_0 label"
  1256. msgid "Initial Layer Print Jerk"
  1257. msgstr "Jerk de Impressão da Camada Inicial"
  1258. msgctxt "speed_print_layer_0 label"
  1259. msgid "Initial Layer Print Speed"
  1260. msgstr "Velocidade de Impressão da Camada Inicial"
  1261. msgctxt "speed_layer_0 label"
  1262. msgid "Initial Layer Speed"
  1263. msgstr "Velocidade da Camada Inicial"
  1264. msgctxt "support_initial_layer_line_distance label"
  1265. msgid "Initial Layer Support Line Distance"
  1266. msgstr "Distância de Filetes da Camada Inicial de Suporte"
  1267. msgctxt "acceleration_travel_layer_0 label"
  1268. msgid "Initial Layer Travel Acceleration"
  1269. msgstr "Aceleração de Percurso da Camada Inicial"
  1270. msgctxt "jerk_travel_layer_0 label"
  1271. msgid "Initial Layer Travel Jerk"
  1272. msgstr "Jerk de Percurso da Camada Inicial"
  1273. msgctxt "speed_travel_layer_0 label"
  1274. msgid "Initial Layer Travel Speed"
  1275. msgstr "Velocidade de Percurso da Camada Inicial"
  1276. msgctxt "layer_0_z_overlap label"
  1277. msgid "Initial Layer Z Overlap"
  1278. msgstr "Sobreposição em Z das Camadas Iniciais"
  1279. msgctxt "material_initial_print_temperature label"
  1280. msgid "Initial Printing Temperature"
  1281. msgstr "Temperatura Inicial de Impressão"
  1282. msgctxt "acceleration_wall_x label"
  1283. msgid "Inner Wall Acceleration"
  1284. msgstr "Aceleração das Paredes Interiores"
  1285. msgctxt "wall_x_extruder_nr label"
  1286. msgid "Inner Wall Extruder"
  1287. msgstr "Extrusor da Parede Interior"
  1288. msgctxt "jerk_wall_x label"
  1289. msgid "Inner Wall Jerk"
  1290. msgstr "Jerk das Paredes Internas"
  1291. msgctxt "speed_wall_x label"
  1292. msgid "Inner Wall Speed"
  1293. msgstr "Velocidade da Parede Interior"
  1294. msgctxt "wall_x_material_flow label"
  1295. msgid "Inner Wall(s) Flow"
  1296. msgstr "Fluxo da(s) Parede(s) Interna(s)"
  1297. msgctxt "wall_line_width_x label"
  1298. msgid "Inner Wall(s) Line Width"
  1299. msgstr "Largura de Extrusão das Paredes Internas"
  1300. msgctxt "wall_0_inset description"
  1301. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  1302. msgstr "Penetração adicional aplicada ao caminho da parede externa. Se a parede externa for menor que o bico, e impressa depois das paredes internas, use este deslocamento para fazer o orifício do bico se sobrepor às paredes internas ao invés de ao lado de fora do modelo."
  1303. msgctxt "brim_location option inside"
  1304. msgid "Inside Only"
  1305. msgstr "Dentro Somente"
  1306. msgctxt "inset_direction option inside_out"
  1307. msgid "Inside To Outside"
  1308. msgstr "De Dentro Pra Fora"
  1309. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1310. msgid "Interface lines preferred"
  1311. msgstr "Linhas de interface preferidas"
  1312. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1313. msgid "Interface preferred"
  1314. msgstr "Interface preferida"
  1315. msgctxt "prime_tower_mode option interleaved"
  1316. msgid "Interleaved"
  1317. msgstr "Intercalado"
  1318. msgctxt "interlocking_beam_layer_count label"
  1319. msgid "Interlocking Beam Layer Count"
  1320. msgstr "Contagem de Camadas das Vigas Interligadas"
  1321. msgctxt "interlocking_beam_width label"
  1322. msgid "Interlocking Beam Width"
  1323. msgstr "Largura da Viga Interligada"
  1324. msgctxt "interlocking_boundary_avoidance label"
  1325. msgid "Interlocking Boundary Avoidance"
  1326. msgstr "Prevenção de Fronteira de Interligação"
  1327. msgctxt "interlocking_depth label"
  1328. msgid "Interlocking Depth"
  1329. msgstr "Profundidade de Interligação"
  1330. msgctxt "interlocking_orientation label"
  1331. msgid "Interlocking Structure Orientation"
  1332. msgstr "Orientação da Estrutura de Interligação"
  1333. msgctxt "ironing_only_highest_layer label"
  1334. msgid "Iron Only Highest Layer"
  1335. msgstr "Passar a Ferro Somente Camada Mais Alta"
  1336. msgctxt "acceleration_ironing label"
  1337. msgid "Ironing Acceleration"
  1338. msgstr "Aceleração de Passar a Ferro"
  1339. msgctxt "ironing_flow label"
  1340. msgid "Ironing Flow"
  1341. msgstr "Fluxo de Passagem a Ferro"
  1342. msgctxt "ironing_inset label"
  1343. msgid "Ironing Inset"
  1344. msgstr "Penetração da Passagem a Ferro"
  1345. msgctxt "jerk_ironing label"
  1346. msgid "Ironing Jerk"
  1347. msgstr "Jerk de Passar a Ferro"
  1348. msgctxt "ironing_line_spacing label"
  1349. msgid "Ironing Line Spacing"
  1350. msgstr "Espaçamento de Passagem a Ferro"
  1351. msgctxt "ironing_pattern label"
  1352. msgid "Ironing Pattern"
  1353. msgstr "Padrão de Passagem a Ferro"
  1354. msgctxt "speed_ironing label"
  1355. msgid "Ironing Speed"
  1356. msgstr "Velocidade de Passar o Ferro"
  1357. msgctxt "machine_center_is_zero label"
  1358. msgid "Is Center Origin"
  1359. msgstr "Origem é no Centro"
  1360. msgctxt "material_is_support_material label"
  1361. msgid "Is support material"
  1362. msgstr "É material de suporte"
  1363. msgctxt "material_crystallinity description"
  1364. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1365. msgstr "Este material é do tipo que se destaca completamente quando aquecido (cristalino), ou é o tipo que produz cadeias de polímero entrelaçadas (não-cristalino)?"
  1366. msgctxt "material_is_support_material description"
  1367. msgid "Is this material typically used as a support material during printing."
  1368. msgstr "Se esse material é ou não tipicamente usado como material de suporte durante a impressão."
  1369. msgctxt "magic_fuzzy_skin_outside_only description"
  1370. msgid "Jitter only the parts' outlines and not the parts' holes."
  1371. msgstr "Flutuar movimento apenas nos contornos e não nos furos das peças."
  1372. msgctxt "meshfix_keep_open_polygons label"
  1373. msgid "Keep Disconnected Faces"
  1374. msgstr "Manter Faces Desconectadas"
  1375. msgctxt "layer_height label"
  1376. msgid "Layer Height"
  1377. msgstr "Altura de Camada"
  1378. msgctxt "layer_start_x label"
  1379. msgid "Layer Start X"
  1380. msgstr "X Inicial da Camada"
  1381. msgctxt "layer_start_y label"
  1382. msgid "Layer Start Y"
  1383. msgstr "Y Inicial da Camada"
  1384. msgctxt "raft_base_thickness description"
  1385. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1386. msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa."
  1387. msgctxt "raft_interface_thickness description"
  1388. msgid "Layer thickness of the middle raft layer."
  1389. msgstr "Espessura da camada intermediária do raft."
  1390. msgctxt "raft_surface_thickness description"
  1391. msgid "Layer thickness of the top raft layers."
  1392. msgstr "Espessura de camada das camadas superiores do raft."
  1393. msgctxt "support_skip_zag_per_mm description"
  1394. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1395. msgstr "Evita uma conexão entre linhas de suporte uma vez a cada N milímetros para fazer a estrutura de suporte mais fácil de ser removida."
  1396. msgctxt "z_seam_position option left"
  1397. msgid "Left"
  1398. msgstr "Esquerda"
  1399. msgctxt "cool_lift_head label"
  1400. msgid "Lift Head"
  1401. msgstr "Levantar Cabeça"
  1402. msgctxt "infill_pattern option lightning"
  1403. msgid "Lightning"
  1404. msgstr "Relâmpago"
  1405. msgctxt "lightning_infill_overhang_angle label"
  1406. msgid "Lightning Infill Overhang Angle"
  1407. msgstr "Ângulo de Seção Pendente do Preenchimento Relâmpago"
  1408. msgctxt "lightning_infill_prune_angle label"
  1409. msgid "Lightning Infill Prune Angle"
  1410. msgstr "Ângulo de Poda do Preenchimento Relâmpago"
  1411. msgctxt "lightning_infill_straightening_angle label"
  1412. msgid "Lightning Infill Straightening Angle"
  1413. msgstr "Ângulo de Retificação do Preenchimento Relâmpago"
  1414. msgctxt "lightning_infill_support_angle label"
  1415. msgid "Lightning Infill Support Angle"
  1416. msgstr "Ângulo de Suporte do Preenchimento Relâmpago"
  1417. msgctxt "support_tree_limit_branch_reach label"
  1418. msgid "Limit Branch Reach"
  1419. msgstr "Limitar Alcance de Galho"
  1420. msgctxt "support_tree_limit_branch_reach description"
  1421. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  1422. msgstr "Limita quão longe cada galho deve percorrer do ponto que ele suporta. Isto pode fazer o suporte mais estável, mas aumentará a quantidade de galhos (e por causa disso, uso de material e tempo de impressão)"
  1423. msgctxt "bv_temp_warn_limit description"
  1424. msgid "Limit on Build Volume Temperature warning for detection."
  1425. msgstr "Limite do aviso de Temperatura de Volume de Construção para detecção."
  1426. msgctxt "bv_temp_anomaly_limit description"
  1427. msgid "Limit on Build Volume temperature Anomaly for detection."
  1428. msgstr "Limite da Anomalia da temperatura de Volume de Construção para detecção."
  1429. msgctxt "print_temp_anomaly_limit description"
  1430. msgid "Limit on Print Temperature anomaly for detection."
  1431. msgstr "Limite da anomalia da Temperatura de Construção para detecção."
  1432. msgctxt "print_temp_warn_limit description"
  1433. msgid "Limit on Print temperature warning for detection."
  1434. msgstr "Limite do aviso de temperatura de Impressão para detecção."
  1435. msgctxt "flow_anomaly_limit description"
  1436. msgid "Limit on flow anomaly for detection."
  1437. msgstr "Limite da anomalia de fluxo para detecção."
  1438. msgctxt "flow_warn_limit description"
  1439. msgid "Limit on the flow warning for detection."
  1440. msgstr "Limite do aviso de fluxo para detecção."
  1441. msgctxt "cutting_mesh description"
  1442. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  1443. msgstr "Limitar o volume desta malha para dentro de outras malhas. Você pode usar isto para fazer certas áreas de uma malha imprimirem com ajustes diferentes, incluindo extrusor diferente."
  1444. msgctxt "draft_shield_height_limitation option limited"
  1445. msgid "Limited"
  1446. msgstr "Limitado"
  1447. msgctxt "line_width label"
  1448. msgid "Line Width"
  1449. msgstr "Largura de Extrusão"
  1450. msgctxt "infill_pattern option lines"
  1451. msgid "Lines"
  1452. msgstr "Linhas"
  1453. msgctxt "roofing_pattern option lines"
  1454. msgid "Lines"
  1455. msgstr "Linhas"
  1456. msgctxt "support_bottom_pattern option lines"
  1457. msgid "Lines"
  1458. msgstr "Linhas"
  1459. msgctxt "support_interface_pattern option lines"
  1460. msgid "Lines"
  1461. msgstr "Linhas"
  1462. msgctxt "support_pattern option lines"
  1463. msgid "Lines"
  1464. msgstr "Linhas"
  1465. msgctxt "support_roof_pattern option lines"
  1466. msgid "Lines"
  1467. msgstr "Linhas"
  1468. msgctxt "top_bottom_pattern option lines"
  1469. msgid "Lines"
  1470. msgstr "Linhas"
  1471. msgctxt "top_bottom_pattern_0 option lines"
  1472. msgid "Lines"
  1473. msgstr "Linhas"
  1474. msgctxt "machine_gcode_flavor option MACH3"
  1475. msgid "Mach3"
  1476. msgstr "Mach3"
  1477. msgctxt "machine_settings label"
  1478. msgid "Machine"
  1479. msgstr "Máquina"
  1480. msgctxt "machine_depth label"
  1481. msgid "Machine Depth"
  1482. msgstr "Profundidade da Mesa"
  1483. msgctxt "machine_head_with_fans_polygon label"
  1484. msgid "Machine Head & Fan Polygon"
  1485. msgstr "Polígono da Cabeça com Ventoinha"
  1486. msgctxt "machine_height label"
  1487. msgid "Machine Height"
  1488. msgstr "Altura do Volume"
  1489. msgctxt "machine_name label"
  1490. msgid "Machine Type"
  1491. msgstr "Tipo de Máquina"
  1492. msgctxt "machine_width label"
  1493. msgid "Machine Width"
  1494. msgstr "Largura da Mesa"
  1495. msgctxt "machine_settings description"
  1496. msgid "Machine specific settings"
  1497. msgstr "Ajustes específicos da máquina"
  1498. msgctxt "conical_overhang_enabled label"
  1499. msgid "Make Overhang Printable"
  1500. msgstr "Torna Seções Pendentes Imprimíveis"
  1501. msgctxt "multiple_mesh_overlap description"
  1502. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1503. msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força."
  1504. msgctxt "support_conical_enabled description"
  1505. msgid "Make support areas smaller at the bottom than at the overhang."
  1506. msgstr "Faz as áreas de suporte menores na base que na seção pendente."
  1507. msgctxt "support_mesh_drop_down description"
  1508. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1509. msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela."
  1510. msgctxt "extruder_prime_pos_abs description"
  1511. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1512. msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça."
  1513. msgctxt "layer_0_z_overlap description"
  1514. msgid ""
  1515. "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n"
  1516. "It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  1517. msgstr ""
  1518. "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão de ar. Todos os modelos sobre a primeira camada de modelo serão deslocados pra baixo por essa quantidade.\n"
  1519. "Deve ser notado que algumas vezes a segunda camada é impressa abaixo da camada inicial por causa deste ajuste. Este é o comportamento pretendido"
  1520. msgctxt "meshfix description"
  1521. msgid "Make the meshes more suited for 3D printing."
  1522. msgstr "Faz as malhas mais adequadas para impressão 3D."
  1523. msgctxt "machine_gcode_flavor option Makerbot"
  1524. msgid "Makerbot"
  1525. msgstr "Makerbot"
  1526. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1527. msgid "Marlin"
  1528. msgstr "Marlin"
  1529. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1530. msgid "Marlin (Volumetric)"
  1531. msgstr "Marlin (Volumétrico)"
  1532. msgctxt "material description"
  1533. msgid "Material"
  1534. msgstr "Material"
  1535. msgctxt "material label"
  1536. msgid "Material"
  1537. msgstr "Material"
  1538. msgctxt "material_brand label"
  1539. msgid "Material Brand"
  1540. msgstr "Marca do Material"
  1541. msgctxt "material_guid label"
  1542. msgid "Material GUID"
  1543. msgstr "GUID do Material"
  1544. msgctxt "material_type label"
  1545. msgid "Material Type"
  1546. msgstr "Tipo do Material"
  1547. msgctxt "max_extrusion_before_wipe label"
  1548. msgid "Material Volume Between Wipes"
  1549. msgstr "Volume de Material Entre Limpezas"
  1550. msgctxt "retraction_combing_max_distance label"
  1551. msgid "Max Comb Distance With No Retract"
  1552. msgstr "Máxima Distância de Combing Sem Retração"
  1553. msgctxt "machine_max_acceleration_x label"
  1554. msgid "Maximum Acceleration X"
  1555. msgstr "Aceleração Máxima em X"
  1556. msgctxt "machine_max_acceleration_y label"
  1557. msgid "Maximum Acceleration Y"
  1558. msgstr "Aceleração Máxima em Y"
  1559. msgctxt "machine_max_acceleration_z label"
  1560. msgid "Maximum Acceleration Z"
  1561. msgstr "Aceleração Máxima em Z"
  1562. msgctxt "support_tree_angle label"
  1563. msgid "Maximum Branch Angle"
  1564. msgstr "Ângulo Máximo de Galho"
  1565. msgctxt "meshfix_maximum_deviation label"
  1566. msgid "Maximum Deviation"
  1567. msgstr "Desvio Máximo"
  1568. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1569. msgid "Maximum Extrusion Area Deviation"
  1570. msgstr "Desvio Máximo de Área de Extrusão"
  1571. msgctxt "cool_fan_speed_max label"
  1572. msgid "Maximum Fan Speed"
  1573. msgstr "Velocidade Máxima da Ventoinha"
  1574. msgctxt "machine_max_acceleration_e label"
  1575. msgid "Maximum Filament Acceleration"
  1576. msgstr "Aceleração Máxima do Filamento"
  1577. msgctxt "conical_overhang_angle label"
  1578. msgid "Maximum Model Angle"
  1579. msgstr "Ângulo Máximo do Modelo"
  1580. msgctxt "conical_overhang_hole_size label"
  1581. msgid "Maximum Overhang Hole Area"
  1582. msgstr "Área Máxima de Furo de Seções Pendentes"
  1583. msgctxt "material_maximum_park_duration label"
  1584. msgid "Maximum Park Duration"
  1585. msgstr "Duração Máxima de Descanso"
  1586. msgctxt "meshfix_maximum_resolution label"
  1587. msgid "Maximum Resolution"
  1588. msgstr "Resolução Máxima"
  1589. msgctxt "retraction_count_max label"
  1590. msgid "Maximum Retraction Count"
  1591. msgstr "Contagem de Retrações Máxima"
  1592. msgctxt "max_skin_angle_for_expansion label"
  1593. msgid "Maximum Skin Angle for Expansion"
  1594. msgstr "Ângulo Máximo do Contorno para Expansão"
  1595. msgctxt "machine_max_feedrate_e label"
  1596. msgid "Maximum Speed E"
  1597. msgstr "Velocidade Máxima de Extrusão"
  1598. msgctxt "machine_max_feedrate_x label"
  1599. msgid "Maximum Speed X"
  1600. msgstr "Velocidade Máxima em X"
  1601. msgctxt "machine_max_feedrate_y label"
  1602. msgid "Maximum Speed Y"
  1603. msgstr "Velocidade Máxima em Y"
  1604. msgctxt "machine_max_feedrate_z label"
  1605. msgid "Maximum Speed Z"
  1606. msgstr "Velocidade Máxima em Z"
  1607. msgctxt "support_tower_maximum_supported_diameter label"
  1608. msgid "Maximum Tower-Supported Diameter"
  1609. msgstr "Diâmetro Máximo Suportado por Torres"
  1610. msgctxt "meshfix_maximum_travel_resolution label"
  1611. msgid "Maximum Travel Resolution"
  1612. msgstr "Máxima Resolução de Percurso"
  1613. msgctxt "machine_max_acceleration_x description"
  1614. msgid "Maximum acceleration for the motor of the X-direction"
  1615. msgstr "A aceleração máxima para o motor da impressora na direção X"
  1616. msgctxt "machine_max_acceleration_y description"
  1617. msgid "Maximum acceleration for the motor of the Y-direction."
  1618. msgstr "A aceleração máxima para o motor da impressora na direção Y."
  1619. msgctxt "machine_max_acceleration_z description"
  1620. msgid "Maximum acceleration for the motor of the Z-direction."
  1621. msgstr "A aceleração máxima para o motor da impressora na direção Z."
  1622. msgctxt "machine_max_acceleration_e description"
  1623. msgid "Maximum acceleration for the motor of the filament."
  1624. msgstr "Aceleração máxima para a entrada de filamento no hotend."
  1625. msgctxt "bridge_sparse_infill_max_density description"
  1626. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  1627. msgstr "Densidade máxima do preenchimento considerado esparso. Contorno sobre o preenchimento esparso é considerado não-suportado e portanto será tratado como contorno de ponte."
  1628. msgctxt "support_tower_maximum_supported_diameter description"
  1629. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1630. msgstr "Diâmetro máximo nas direções X e Y da pequena área que será suportada por uma torre especializada de suporte."
  1631. msgctxt "max_extrusion_before_wipe description"
  1632. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  1633. msgstr "Material máximo que pode ser extrudado antes que outra limpeza de bico seja iniciada. Se este valor for menor que o volume de material requerido em uma camada, ele não terá efeito nenhum nesta camada, isto é, está limitado a uma limpeza por camada."
  1634. msgctxt "multiple_mesh_overlap label"
  1635. msgid "Merged Meshes Overlap"
  1636. msgstr "Sobreposição de Malhas Combinadas"
  1637. msgctxt "meshfix label"
  1638. msgid "Mesh Fixes"
  1639. msgstr "Correções de Malha"
  1640. msgctxt "mesh_position_x label"
  1641. msgid "Mesh Position X"
  1642. msgstr "Posição X da Malha"
  1643. msgctxt "mesh_position_y label"
  1644. msgid "Mesh Position Y"
  1645. msgstr "Posição Y da Malha"
  1646. msgctxt "mesh_position_z label"
  1647. msgid "Mesh Position Z"
  1648. msgstr "Posição Z da Malha"
  1649. msgctxt "infill_mesh_order label"
  1650. msgid "Mesh Processing Rank"
  1651. msgstr "Hierarquia do Processamento de Malha"
  1652. msgctxt "mesh_rotation_matrix label"
  1653. msgid "Mesh Rotation Matrix"
  1654. msgstr "Matriz de Rotação da Malha"
  1655. msgctxt "slicing_tolerance option middle"
  1656. msgid "Middle"
  1657. msgstr "Meio"
  1658. msgctxt "mold_width label"
  1659. msgid "Minimal Mold Width"
  1660. msgstr "Largura Mínima do Molde"
  1661. msgctxt "machine_min_cool_heat_time_window label"
  1662. msgid "Minimal Time Standby Temperature"
  1663. msgstr "Tempo Mínima em Temperatura de Espera"
  1664. msgctxt "bridge_wall_min_length label"
  1665. msgid "Minimum Bridge Wall Length"
  1666. msgstr "Comprimento de Parede de Ponte Mínimo"
  1667. msgctxt "min_even_wall_line_width label"
  1668. msgid "Minimum Even Wall Line Width"
  1669. msgstr "Largura Mínima de Filete de Parede Par"
  1670. msgctxt "retraction_extrusion_window label"
  1671. msgid "Minimum Extrusion Distance Window"
  1672. msgstr "Janela de Distância de Extrusão Mínima"
  1673. msgctxt "min_feature_size label"
  1674. msgid "Minimum Feature Size"
  1675. msgstr "Mínimo Tamanho de Detalhe"
  1676. msgctxt "machine_minimum_feedrate label"
  1677. msgid "Minimum Feedrate"
  1678. msgstr "Velocidade Mínima de Alimentação"
  1679. msgctxt "support_tree_min_height_to_model label"
  1680. msgid "Minimum Height To Model"
  1681. msgstr "Altura Mínima Para O Modelo"
  1682. msgctxt "min_infill_area label"
  1683. msgid "Minimum Infill Area"
  1684. msgstr "Área Mínima para Preenchimento"
  1685. msgctxt "cool_min_layer_time label"
  1686. msgid "Minimum Layer Time"
  1687. msgstr "Tempo Mínimo de Camada"
  1688. msgctxt "min_odd_wall_line_width label"
  1689. msgid "Minimum Odd Wall Line Width"
  1690. msgstr "Largura Mínima de Filete de Parede Ímpar"
  1691. msgctxt "minimum_polygon_circumference label"
  1692. msgid "Minimum Polygon Circumference"
  1693. msgstr "Mínima Circunferência do Polígono"
  1694. msgctxt "min_skin_width_for_expansion label"
  1695. msgid "Minimum Skin Width for Expansion"
  1696. msgstr "Largura Mínima de Contorno para Expansão"
  1697. msgctxt "cool_min_speed label"
  1698. msgid "Minimum Speed"
  1699. msgstr "Velocidade Mínima"
  1700. msgctxt "minimum_support_area label"
  1701. msgid "Minimum Support Area"
  1702. msgstr "Área Mínima de Suporte"
  1703. msgctxt "minimum_bottom_area label"
  1704. msgid "Minimum Support Floor Area"
  1705. msgstr "Área Mínima de Base de Suporte"
  1706. msgctxt "minimum_interface_area label"
  1707. msgid "Minimum Support Interface Area"
  1708. msgstr "Área Mínima de Interface de Suporte"
  1709. msgctxt "minimum_roof_area label"
  1710. msgid "Minimum Support Roof Area"
  1711. msgstr "Área Mínima de Teto de Suporte"
  1712. msgctxt "support_xy_distance_overhang label"
  1713. msgid "Minimum Support X/Y Distance"
  1714. msgstr "Distância Mínima de Suporte X/Y"
  1715. msgctxt "min_bead_width label"
  1716. msgid "Minimum Thin Wall Line Width"
  1717. msgstr "Largura Mínima de Filete de Parede Fina"
  1718. msgctxt "coasting_min_volume label"
  1719. msgid "Minimum Volume Before Coasting"
  1720. msgstr "Volume Mínimo Antes da Desengrenagem"
  1721. msgctxt "min_wall_line_width label"
  1722. msgid "Minimum Wall Line Width"
  1723. msgstr "Largura Mínina de Filete de Parede"
  1724. msgctxt "minimum_interface_area description"
  1725. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1726. msgstr "Área mínima para os polígonos da interface de suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal."
  1727. msgctxt "minimum_support_area description"
  1728. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1729. msgstr "Área mínima para polígonos de suporte. Polígonos que tiverem uma área menor que essa não serão gerados."
  1730. msgctxt "minimum_bottom_area description"
  1731. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  1732. msgstr "Área mínima para as bases do suport. Polígonos que têm área menor que este valor serão impressos como suporte normal."
  1733. msgctxt "minimum_roof_area description"
  1734. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  1735. msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal."
  1736. msgctxt "min_feature_size description"
  1737. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  1738. msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede."
  1739. msgctxt "support_conical_min_width description"
  1740. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1741. msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis."
  1742. msgctxt "mold_enabled label"
  1743. msgid "Mold"
  1744. msgstr "Molde"
  1745. msgctxt "mold_angle label"
  1746. msgid "Mold Angle"
  1747. msgstr "Ângulo do Molde"
  1748. msgctxt "mold_roof_height label"
  1749. msgid "Mold Roof Height"
  1750. msgstr "Altura de Teto do Molde"
  1751. msgctxt "ironing_monotonic label"
  1752. msgid "Monotonic Ironing Order"
  1753. msgstr "Ordem de Passagem a Ferro Monotônica"
  1754. msgctxt "raft_surface_monotonic label"
  1755. msgid "Monotonic Raft Top Surface Order"
  1756. msgstr "Ordem do Raft Monotônico da Superfície Superior"
  1757. msgctxt "roofing_monotonic label"
  1758. msgid "Monotonic Top Surface Order"
  1759. msgstr "Ordem da Superfície Monotônica Superior"
  1760. msgctxt "skin_monotonic label"
  1761. msgid "Monotonic Top/Bottom Order"
  1762. msgstr "Ordem Monotônica Superior/Inferior"
  1763. msgctxt "skirt_line_count description"
  1764. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1765. msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado."
  1766. msgctxt "initial_layer_line_width_factor description"
  1767. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1768. msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa."
  1769. msgctxt "material_no_load_move_factor label"
  1770. msgid "No Load Move Factor"
  1771. msgstr "Fator de Movimento Sem Carga"
  1772. msgctxt "skin_no_small_gaps_heuristic label"
  1773. msgid "No Skin in Z Gaps"
  1774. msgstr "Sem Contorno nas Lacunas Z"
  1775. msgctxt "blackmagic description"
  1776. msgid "Non-traditional ways to print your models."
  1777. msgstr "Jeitos não-tradicionais de imprimir seus modelos."
  1778. msgctxt "adhesion_type option none"
  1779. msgid "None"
  1780. msgstr "Nenhuma"
  1781. msgctxt "z_seam_corner option z_seam_corner_none"
  1782. msgid "None"
  1783. msgstr "Nenhum"
  1784. msgctxt "magic_mesh_surface_mode option normal"
  1785. msgid "Normal"
  1786. msgstr "Normal"
  1787. msgctxt "prime_tower_mode option normal"
  1788. msgid "Normal"
  1789. msgstr "Normal"
  1790. msgctxt "support_structure option normal"
  1791. msgid "Normal"
  1792. msgstr "Normal"
  1793. msgctxt "meshfix_keep_open_polygons description"
  1794. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  1795. msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes furos. Habilitar esta opção mantém as partes que ele não consegue costurar. Esta opção deve ser usada como última alternativa quando tudo o mais falhar para produzir G-Code apropriado."
  1796. msgctxt "retraction_combing option noskin"
  1797. msgid "Not in Skin"
  1798. msgstr "Não no Contorno"
  1799. msgctxt "retraction_combing option no_outer_surfaces"
  1800. msgid "Not on Outer Surface"
  1801. msgstr "Não na Superfície Externa"
  1802. msgctxt "machine_nozzle_expansion_angle label"
  1803. msgid "Nozzle Angle"
  1804. msgstr "Ângulo do Bico"
  1805. msgctxt "machine_nozzle_size label"
  1806. msgid "Nozzle Diameter"
  1807. msgstr "Diâmetro do bico"
  1808. msgctxt "nozzle_disallowed_areas label"
  1809. msgid "Nozzle Disallowed Areas"
  1810. msgstr "Áreas Proibidas para o Bico"
  1811. msgctxt "machine_nozzle_id label"
  1812. msgid "Nozzle ID"
  1813. msgstr "ID do Bico"
  1814. msgctxt "machine_nozzle_head_distance label"
  1815. msgid "Nozzle Length"
  1816. msgstr "Comprimento do Bico"
  1817. msgctxt "switch_extruder_extra_prime_amount label"
  1818. msgid "Nozzle Switch Extra Prime Amount"
  1819. msgstr "Quantidade de Avanço Extra da Troca de Bico"
  1820. msgctxt "switch_extruder_prime_speed label"
  1821. msgid "Nozzle Switch Prime Speed"
  1822. msgstr "Velocidade de Avanço da Troca de Bico"
  1823. msgctxt "switch_extruder_retraction_speed label"
  1824. msgid "Nozzle Switch Retract Speed"
  1825. msgstr "Velocidade de Retração da Troca de Bico"
  1826. msgctxt "switch_extruder_retraction_amount label"
  1827. msgid "Nozzle Switch Retraction Distance"
  1828. msgstr "Distância de Retração da Troca de Bico"
  1829. msgctxt "switch_extruder_retraction_speeds label"
  1830. msgid "Nozzle Switch Retraction Speed"
  1831. msgstr "Velocidade de Retração da Troca do Bico"
  1832. msgctxt "machine_extruder_count label"
  1833. msgid "Number of Extruders"
  1834. msgstr "Número de extrusores"
  1835. msgctxt "extruders_enabled_count label"
  1836. msgid "Number of Extruders That Are Enabled"
  1837. msgstr "Número de Extrusores Habilitados"
  1838. msgctxt "speed_slowdown_layers label"
  1839. msgid "Number of Slower Layers"
  1840. msgstr "Número de Camadas Mais Lentas"
  1841. msgctxt "extruders_enabled_count description"
  1842. msgid "Number of extruder trains that are enabled; automatically set in software"
  1843. msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software"
  1844. msgctxt "machine_extruder_count description"
  1845. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1846. msgstr "Número de carros extrusores. Um carro extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend."
  1847. msgctxt "wipe_repeat_count description"
  1848. msgid "Number of times to move the nozzle across the brush."
  1849. msgstr "Número de vezes com que mover o bico através da varredura."
  1850. msgctxt "gradual_infill_steps description"
  1851. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  1852. msgstr "Número de vezes para reduzir a densidade de preenchimento pela metade quando estiver chegando mais além embaixo das superfícies superiores. Áreas que estão mais perto das superfícies superiores ganham uma densidade maior, numa gradação até a densidade configurada de preenchimento."
  1853. msgctxt "gradual_support_infill_steps description"
  1854. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  1855. msgstr "Número de vezes para reduzir a densidade de preenchimento de suporte pela metade quando avançando abaixo das superfícies inferiores. Áreas mais próximas ao topo terão maior densidade, até a Densidade de Preenchimento de Suporte."
  1856. msgctxt "infill_pattern option tetrahedral"
  1857. msgid "Octet"
  1858. msgstr "Octeto"
  1859. msgctxt "retraction_combing option off"
  1860. msgid "Off"
  1861. msgstr "Desligado"
  1862. msgctxt "mesh_position_x description"
  1863. msgid "Offset applied to the object in the x direction."
  1864. msgstr "Deslocamento aplicado ao objeto na direção X."
  1865. msgctxt "mesh_position_y description"
  1866. msgid "Offset applied to the object in the y direction."
  1867. msgstr "Deslocamento aplicado ao objeto na direção Y."
  1868. msgctxt "mesh_position_z description"
  1869. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1870. msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma."
  1871. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1872. msgid "Offset with Extruder"
  1873. msgstr "Deslocamento com o Extrusor"
  1874. msgctxt "support_tree_rest_preference option buildplate"
  1875. msgid "On buildplate when possible"
  1876. msgstr "Na plataforma de impressão quando possível"
  1877. msgctxt "support_tree_rest_preference option graceful"
  1878. msgid "On model if required"
  1879. msgstr "No modelo se requerido"
  1880. msgctxt "print_sequence option one_at_a_time"
  1881. msgid "One at a Time"
  1882. msgstr "Um de Cada Vez"
  1883. msgctxt "retraction_hop_only_when_collides description"
  1884. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1885. msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada."
  1886. msgctxt "ironing_only_highest_layer description"
  1887. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1888. msgstr "Somente executar a passagem a ferro na última camada da malha. Isto economiza tempo se as camadas abaixo não precisarem de um acabamento de superfície amaciado."
  1889. msgctxt "ooze_shield_angle label"
  1890. msgid "Ooze Shield Angle"
  1891. msgstr "Ângulo da Cobertura de Escorrimento"
  1892. msgctxt "ooze_shield_dist label"
  1893. msgid "Ooze Shield Distance"
  1894. msgstr "Distância da Cobertura de Escorrimento"
  1895. msgctxt "support_tree_branch_reach_limit label"
  1896. msgid "Optimal Branch Range"
  1897. msgstr "Alcance Ótimo de Galho"
  1898. msgctxt "optimize_wall_printing_order label"
  1899. msgid "Optimize Wall Printing Order"
  1900. msgstr "Otimizar Ordem de Impressão de Paredes"
  1901. msgctxt "optimize_wall_printing_order description"
  1902. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  1903. msgstr "Otimiza a ordem em que as paredes são impressas, tais que o número de retrações e a distância percorrida sejam reduzidos. A maioria das peças se beneficiará deste ajuste habilitado mas outras poderão demorar mais, portanto compare as estimativas de tempo de impressão com e sem otimização. A primeira camada não é otimizada quando o brim é selecionado como tipo de aderência da mesa de impressão."
  1904. msgctxt "machine_nozzle_tip_outer_diameter label"
  1905. msgid "Outer Nozzle Diameter"
  1906. msgstr "Diâmetro Externo do Bico"
  1907. msgctxt "acceleration_wall_0 label"
  1908. msgid "Outer Wall Acceleration"
  1909. msgstr "Aceleração da Parede Exterior"
  1910. msgctxt "wall_0_extruder_nr label"
  1911. msgid "Outer Wall Extruder"
  1912. msgstr "Extrusor da Parede Externa"
  1913. msgctxt "wall_0_material_flow label"
  1914. msgid "Outer Wall Flow"
  1915. msgstr "Fluxo da Parede Externa"
  1916. msgctxt "wall_0_inset label"
  1917. msgid "Outer Wall Inset"
  1918. msgstr "Penetração da Parede Externa"
  1919. msgctxt "jerk_wall_0 label"
  1920. msgid "Outer Wall Jerk"
  1921. msgstr "Jerk da Parede Exterior"
  1922. msgctxt "wall_line_width_0 label"
  1923. msgid "Outer Wall Line Width"
  1924. msgstr "Largura de Extrusão da Parede Externa"
  1925. msgctxt "speed_wall_0 label"
  1926. msgid "Outer Wall Speed"
  1927. msgstr "Velocidade da Parede Exterior"
  1928. msgctxt "wall_0_wipe_dist label"
  1929. msgid "Outer Wall Wipe Distance"
  1930. msgstr "Distância de Varredura da Parede Externa"
  1931. msgctxt "group_outer_walls description"
  1932. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  1933. msgstr "Paredes externas de ilhas diferentes na mesma camada são impressas em sequência. Quando habilitado, as mudanças de fluxo são limitadas porque as paredes são impressas um tipo a cada vez; quando desabilitado, o número de percursos entre as ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas."
  1934. msgctxt "brim_location option outside"
  1935. msgid "Outside Only"
  1936. msgstr "Fora Somente"
  1937. msgctxt "inset_direction option outside_in"
  1938. msgid "Outside To Inside"
  1939. msgstr "De Fora Pra Dentro"
  1940. msgctxt "wall_overhang_angle label"
  1941. msgid "Overhanging Wall Angle"
  1942. msgstr "Ângulo de Parede Pendente"
  1943. msgctxt "wall_overhang_speed_factor label"
  1944. msgid "Overhanging Wall Speed"
  1945. msgstr "Velocidade de Parede Pendente"
  1946. msgctxt "wall_overhang_speed_factor description"
  1947. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1948. msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal."
  1949. msgctxt "wipe_pause description"
  1950. msgid "Pause after the unretract."
  1951. msgstr "Pausa após desfazimento da retração."
  1952. msgctxt "bridge_fan_speed description"
  1953. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1954. msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes."
  1955. msgctxt "bridge_fan_speed_2 description"
  1956. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1957. msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte."
  1958. msgctxt "support_supported_skin_fan_speed description"
  1959. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  1960. msgstr "Porcentagem de velocidade da ventoinha a usar ao imprimir as regiões de contorno imediatamente sobre o suporte. Usar uma velocidade de ventoinha alta pode fazer o suporte mais fácil de remover."
  1961. msgctxt "bridge_fan_speed_3 description"
  1962. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1963. msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte."
  1964. msgctxt "minimum_polygon_circumference description"
  1965. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  1966. msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes."
  1967. msgctxt "support_tree_angle_slow label"
  1968. msgid "Preferred Branch Angle"
  1969. msgstr "Ângulo Preferido de Galho"
  1970. msgctxt "wall_transition_filter_deviation description"
  1971. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  1972. msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão."
  1973. msgctxt "acceleration_prime_tower label"
  1974. msgid "Prime Tower Acceleration"
  1975. msgstr "Aceleração da Torre de Purga"
  1976. msgctxt "prime_tower_brim_enable label"
  1977. msgid "Prime Tower Base"
  1978. msgstr "Base da Torre de Purga"
  1979. msgctxt "prime_tower_base_height label"
  1980. msgid "Prime Tower Base Height"
  1981. msgstr "Altura da Base da Torre de Purga"
  1982. msgctxt "prime_tower_base_size label"
  1983. msgid "Prime Tower Base Size"
  1984. msgstr "Tamanho da Base da Torre de Purga"
  1985. msgctxt "prime_tower_base_curve_magnitude label"
  1986. msgid "Prime Tower Base Slope"
  1987. msgstr "Inclinação da Base da Torre de Purga"
  1988. msgctxt "prime_tower_flow label"
  1989. msgid "Prime Tower Flow"
  1990. msgstr "Fluxo da Torre de Purga"
  1991. msgctxt "jerk_prime_tower label"
  1992. msgid "Prime Tower Jerk"
  1993. msgstr "Jerk da Torre de Purga"
  1994. msgctxt "prime_tower_line_width label"
  1995. msgid "Prime Tower Line Width"
  1996. msgstr "Largura de Extrusão da Torre de Purga"
  1997. msgctxt "prime_tower_max_bridging_distance label"
  1998. msgid "Prime Tower Maximum Bridging Distance"
  1999. msgstr "Distância Máxima de Ponte das Torres de Purga"
  2000. msgctxt "prime_tower_min_volume label"
  2001. msgid "Prime Tower Minimum Volume"
  2002. msgstr "Volume Mínimo da Torre de Purga"
  2003. msgctxt "prime_tower_raft_base_line_spacing label"
  2004. msgid "Prime Tower Raft Line Spacing"
  2005. msgstr "Espaçamento do Filete de Raft da Torre de Purga"
  2006. msgctxt "prime_tower_size label"
  2007. msgid "Prime Tower Size"
  2008. msgstr "Tamanho da Torre de Purga"
  2009. msgctxt "speed_prime_tower label"
  2010. msgid "Prime Tower Speed"
  2011. msgstr "Velocidade da Torre de Purga"
  2012. msgctxt "prime_tower_mode label"
  2013. msgid "Prime Tower Type"
  2014. msgstr "Tipo da Torre de Purga"
  2015. msgctxt "prime_tower_position_x label"
  2016. msgid "Prime Tower X Position"
  2017. msgstr "Posição X da Torre de Purga"
  2018. msgctxt "prime_tower_position_y label"
  2019. msgid "Prime Tower Y Position"
  2020. msgstr "Posição Y da Torre de Purga"
  2021. msgctxt "acceleration_print label"
  2022. msgid "Print Acceleration"
  2023. msgstr "Aceleração da Impressão"
  2024. msgctxt "jerk_print label"
  2025. msgid "Print Jerk"
  2026. msgstr "Jerk da Impressão"
  2027. msgctxt "ppr label"
  2028. msgid "Print Process Reporting"
  2029. msgstr "Relatório do Processo de Impressão"
  2030. msgctxt "print_sequence label"
  2031. msgid "Print Sequence"
  2032. msgstr "Sequência de Impressão"
  2033. msgctxt "speed_print label"
  2034. msgid "Print Speed"
  2035. msgstr "Velocidade de Impressão"
  2036. msgctxt "fill_outline_gaps label"
  2037. msgid "Print Thin Walls"
  2038. msgstr "Imprimir Paredes Finas"
  2039. msgctxt "brim_location description"
  2040. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  2041. msgstr "Imprime um brim na parte de fora do modelo, de dentro, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de brim que você precisa remover depois, ao mesmo tempo em que assegura aderência apropriada na plataforma."
  2042. msgctxt "prime_tower_enable description"
  2043. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  2044. msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico."
  2045. msgctxt "infill_support_enabled description"
  2046. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  2047. msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto."
  2048. msgctxt "ironing_monotonic description"
  2049. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2050. msgstr "Imprime filetes de passagem a ferro em uma ordem que os faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Isso faz levar um pouco mais de tempo na impressão, mas torna as superfícies mais consistentes."
  2051. msgctxt "mold_enabled description"
  2052. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  2053. msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar."
  2054. msgctxt "fill_outline_gaps description"
  2055. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  2056. msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico."
  2057. msgctxt "raft_surface_monotonic description"
  2058. msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface."
  2059. msgstr "Imprime os filetes da superfície superior to raft em uma ordem que faz com que se sobreponham a filetes adjacentes na mesma direção. Isso leva um pouco mais de tempo para imprimir, mas faz a superfície parecer mais consistente, algo que também é visível na superfície inferior do modelo."
  2060. msgctxt "bridge_skin_speed_2 description"
  2061. msgid "Print speed to use when printing the second bridge skin layer."
  2062. msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte."
  2063. msgctxt "bridge_skin_speed_3 description"
  2064. msgid "Print speed to use when printing the third bridge skin layer."
  2065. msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte."
  2066. msgctxt "print_temp_anomaly_limit label"
  2067. msgid "Print temperature Limit"
  2068. msgstr "Limite de temperatura de impressão"
  2069. msgctxt "print_temp_warn_limit label"
  2070. msgid "Print temperature Warning"
  2071. msgstr "Aviso de temperatura de impressão"
  2072. msgctxt "infill_before_walls description"
  2073. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  2074. msgstr "Imprime o preenchimento antes de imprimir as paredes. Imprimir as paredes primeiro pode levar a paredes mais precisas, mas seções pendentes são impressas com pior qualidade. Imprimir o preenchimento primeiro leva a paredes mais fortes, mas o padrão de preenchimento pode às vezes aparecer através da superfície."
  2075. msgctxt "roofing_monotonic description"
  2076. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2077. msgstr "Imprime os filetes da superfície superior em uma ordem que faz com que sempre se sobreponham a linhas adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna as superfícies planas mais consistentes."
  2078. msgctxt "skin_monotonic description"
  2079. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  2080. msgstr "Imprime filetes superiores e inferiores em uma ordem que os faz sempre se sobreporem a filetes adjacentes em uma única direção. Faz levar um pouco mais de tempo na impressão, mas torna superfícies planas mais consistentes."
  2081. msgctxt "material_print_temperature label"
  2082. msgid "Printing Temperature"
  2083. msgstr "Temperatura de Impressão"
  2084. msgctxt "material_print_temperature_layer_0 label"
  2085. msgid "Printing Temperature Initial Layer"
  2086. msgstr "Temperatura de Impressão da Camada Inicial"
  2087. msgctxt "skirt_height description"
  2088. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2089. msgstr "Imprimir o filete mais interno de skirt com múltiplas camadas torna mais fácil removê-lo."
  2090. msgctxt "alternate_extra_perimeter description"
  2091. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  2092. msgstr "Imprime uma parede adicional a cada duas camadas. Deste jeito o preenchimento fica aprisionado entre estas paredes extras, resultando em impressões mais fortes."
  2093. msgctxt "resolution label"
  2094. msgid "Quality"
  2095. msgstr "Qualidade"
  2096. msgctxt "infill_pattern option quarter_cubic"
  2097. msgid "Quarter Cubic"
  2098. msgstr "Quarto Cúbico"
  2099. msgctxt "adhesion_type option raft"
  2100. msgid "Raft"
  2101. msgstr "Raft"
  2102. msgctxt "raft_airgap label"
  2103. msgid "Raft Air Gap"
  2104. msgstr "Vão Aéreo do Raft"
  2105. msgctxt "raft_base_margin label"
  2106. msgid "Raft Base Extra Margin"
  2107. msgstr "Margem Extra da Base de Raft"
  2108. msgctxt "raft_base_extruder_nr label"
  2109. msgid "Raft Base Extruder"
  2110. msgstr "Extrusor da Base do Raft"
  2111. msgctxt "raft_base_fan_speed label"
  2112. msgid "Raft Base Fan Speed"
  2113. msgstr "Velocidade de Ventoinha da Base do Raft"
  2114. msgctxt "raft_base_line_spacing label"
  2115. msgid "Raft Base Line Spacing"
  2116. msgstr "Espaçamento de Filete de Base do Raft"
  2117. msgctxt "raft_base_line_width label"
  2118. msgid "Raft Base Line Width"
  2119. msgstr "Largura de Linha da Base do Raft"
  2120. msgctxt "raft_base_acceleration label"
  2121. msgid "Raft Base Print Acceleration"
  2122. msgstr "Aceleração de Impressão da Base do Raft"
  2123. msgctxt "raft_base_jerk label"
  2124. msgid "Raft Base Print Jerk"
  2125. msgstr "Jerk de Impressão da Base do Raft"
  2126. msgctxt "raft_base_speed label"
  2127. msgid "Raft Base Print Speed"
  2128. msgstr "Velocidade de Impressão da Base do Raft"
  2129. msgctxt "raft_base_smoothing label"
  2130. msgid "Raft Base Smoothing"
  2131. msgstr "Suavização da Base de Raft"
  2132. msgctxt "raft_base_thickness label"
  2133. msgid "Raft Base Thickness"
  2134. msgstr "Espessura da Base do Raft"
  2135. msgctxt "raft_base_wall_count label"
  2136. msgid "Raft Base Wall Count"
  2137. msgstr "Contagem de Paredes da Base do Raft"
  2138. msgctxt "raft_margin label"
  2139. msgid "Raft Extra Margin"
  2140. msgstr "Margem Adicional do Raft"
  2141. msgctxt "raft_fan_speed label"
  2142. msgid "Raft Fan Speed"
  2143. msgstr "Velocidade de Ventoinha no Raft"
  2144. msgctxt "raft_interface_margin label"
  2145. msgid "Raft Middle Extra Margin"
  2146. msgstr "Margem Extra do Meio do Raft"
  2147. msgctxt "raft_interface_extruder_nr label"
  2148. msgid "Raft Middle Extruder"
  2149. msgstr "Extrusor do Meio do Raft"
  2150. msgctxt "raft_interface_fan_speed label"
  2151. msgid "Raft Middle Fan Speed"
  2152. msgstr "Velocidade de Ventoinha do Meio do Raft"
  2153. msgctxt "raft_interface_layers label"
  2154. msgid "Raft Middle Layers"
  2155. msgstr "Camadas Centrais do Raft"
  2156. msgctxt "raft_interface_line_width label"
  2157. msgid "Raft Middle Line Width"
  2158. msgstr "Largura da Linha do Meio do Raft"
  2159. msgctxt "raft_interface_acceleration label"
  2160. msgid "Raft Middle Print Acceleration"
  2161. msgstr "Aceleração de Impressão do Meio do Raft"
  2162. msgctxt "raft_interface_jerk label"
  2163. msgid "Raft Middle Print Jerk"
  2164. msgstr "Jerk de Impressão do Meio do Raft"
  2165. msgctxt "raft_interface_speed label"
  2166. msgid "Raft Middle Print Speed"
  2167. msgstr "Velocidade de Impressão do Meio do Raft"
  2168. msgctxt "raft_interface_smoothing label"
  2169. msgid "Raft Middle Smoothing"
  2170. msgstr "Suavização do Meio do Raft"
  2171. msgctxt "raft_interface_line_spacing label"
  2172. msgid "Raft Middle Spacing"
  2173. msgstr "Espaçamento do Meio do Raft"
  2174. msgctxt "raft_interface_thickness label"
  2175. msgid "Raft Middle Thickness"
  2176. msgstr "Espessura do Meio do Raft"
  2177. msgctxt "raft_interface_wall_count label"
  2178. msgid "Raft Middle Wall Count"
  2179. msgstr "Contagem de Paredes do Meio do Raft"
  2180. msgctxt "raft_acceleration label"
  2181. msgid "Raft Print Acceleration"
  2182. msgstr "Aceleração de Impressão do Raft"
  2183. msgctxt "raft_jerk label"
  2184. msgid "Raft Print Jerk"
  2185. msgstr "Jerk de Impressão do Raft"
  2186. msgctxt "raft_speed label"
  2187. msgid "Raft Print Speed"
  2188. msgstr "Velocidade de Impressão do Raft"
  2189. msgctxt "raft_smoothing label"
  2190. msgid "Raft Smoothing"
  2191. msgstr "Amaciamento do Raft"
  2192. msgctxt "raft_surface_margin label"
  2193. msgid "Raft Top Extra Margin"
  2194. msgstr "Margem Extra do Topo do Raft"
  2195. msgctxt "raft_surface_extruder_nr label"
  2196. msgid "Raft Top Extruder"
  2197. msgstr "Extrusor do Topo do Raft"
  2198. msgctxt "raft_surface_fan_speed label"
  2199. msgid "Raft Top Fan Speed"
  2200. msgstr "Velocidade da Ventoinha para o Topo do Raft"
  2201. msgctxt "raft_surface_thickness label"
  2202. msgid "Raft Top Layer Thickness"
  2203. msgstr "Espessura da Camada Superior do Raft"
  2204. msgctxt "raft_surface_layers label"
  2205. msgid "Raft Top Layers"
  2206. msgstr "Camadas Superiores do Raft"
  2207. msgctxt "raft_surface_line_width label"
  2208. msgid "Raft Top Line Width"
  2209. msgstr "Largura do Filete Superior do Raft"
  2210. msgctxt "raft_surface_acceleration label"
  2211. msgid "Raft Top Print Acceleration"
  2212. msgstr "Aceleração de Impressão do Topo do Raft"
  2213. msgctxt "raft_surface_jerk label"
  2214. msgid "Raft Top Print Jerk"
  2215. msgstr "Jerk de Impressão do Topo do Raft"
  2216. msgctxt "raft_surface_speed label"
  2217. msgid "Raft Top Print Speed"
  2218. msgstr "Velocidade de Impressão do Topo do Raft"
  2219. msgctxt "raft_surface_smoothing label"
  2220. msgid "Raft Top Smoothing"
  2221. msgstr "Suavização do Topo do Raft"
  2222. msgctxt "raft_surface_line_spacing label"
  2223. msgid "Raft Top Spacing"
  2224. msgstr "Espaçamento Superior do Raft"
  2225. msgctxt "raft_surface_wall_count label"
  2226. msgid "Raft Top Wall Count"
  2227. msgstr "Contagem de Paredes do Topo do Raft"
  2228. msgctxt "raft_wall_count label"
  2229. msgid "Raft Wall Count"
  2230. msgstr "Contagem de Paredes do Raft"
  2231. msgctxt "z_seam_type option random"
  2232. msgid "Random"
  2233. msgstr "Aleatório"
  2234. msgctxt "infill_randomize_start_location label"
  2235. msgid "Randomize Infill Start"
  2236. msgstr "Aleatorizar o Começo do Preenchimento"
  2237. msgctxt "infill_randomize_start_location description"
  2238. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  2239. msgstr "Aleatoriza qual linha do preenchimento é impressa primeiro. Isto evita que um segmento seja mais forte que os outros, mas ao custo de um percurso adicional."
  2240. msgctxt "magic_fuzzy_skin_enabled description"
  2241. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2242. msgstr "Faz flutuações de movimento aleatório enquanto imprime a parede mais externa, de modo que a superfície do objeto ganhe uma aparência felpuda ou acidentada."
  2243. msgctxt "machine_shape option rectangular"
  2244. msgid "Rectangular"
  2245. msgstr "Retangular"
  2246. msgctxt "cool_fan_speed_min label"
  2247. msgid "Regular Fan Speed"
  2248. msgstr "Velocidade Regular da Ventoinha"
  2249. msgctxt "cool_fan_full_at_height label"
  2250. msgid "Regular Fan Speed at Height"
  2251. msgstr "Velocidade Regular da Ventoinha na Altura"
  2252. msgctxt "cool_fan_full_layer label"
  2253. msgid "Regular Fan Speed at Layer"
  2254. msgstr "Velocidade Regular da Ventoinha na Camada"
  2255. msgctxt "cool_min_layer_time_fan_speed_max label"
  2256. msgid "Regular/Maximum Fan Speed Threshold"
  2257. msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha"
  2258. msgctxt "relative_extrusion label"
  2259. msgid "Relative Extrusion"
  2260. msgstr "Extrusão Relativa"
  2261. msgctxt "meshfix_union_all_remove_holes label"
  2262. msgid "Remove All Holes"
  2263. msgstr "Remover Todos os Furos"
  2264. msgctxt "remove_empty_first_layers label"
  2265. msgid "Remove Empty First Layers"
  2266. msgstr "Remover Camadas Iniciais Vazias"
  2267. msgctxt "carve_multiple_volumes label"
  2268. msgid "Remove Mesh Intersection"
  2269. msgstr "Remover Interseções de Malha"
  2270. msgctxt "raft_base_remove_inside_corners label"
  2271. msgid "Remove Raft Base Inside Corners"
  2272. msgstr "Remover Cantos Internos da Base do Raft"
  2273. msgctxt "raft_remove_inside_corners label"
  2274. msgid "Remove Raft Inside Corners"
  2275. msgstr "Remover Cantos Internos de Raft"
  2276. msgctxt "raft_interface_remove_inside_corners label"
  2277. msgid "Remove Raft Middle Inside Corners"
  2278. msgstr "Remover Cantos Internos do Meio do Raft"
  2279. msgctxt "raft_surface_remove_inside_corners label"
  2280. msgid "Remove Raft Top Inside Corners"
  2281. msgstr "Remover Cantos Internos do Topo do Raft"
  2282. msgctxt "carve_multiple_volumes description"
  2283. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2284. msgstr "Remove áreas onde várias malhas estão sobrepondo uma à outra. Isto pode ser usado se objetos de material duplo se sobrepõem um ao outro."
  2285. msgctxt "remove_empty_first_layers description"
  2286. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  2287. msgstr "Remove camadas vazias entre a primeira camada impressa se estiverem presentes. Desabilitar este ajuste pode criar camadas iniciais vazias se a Tolerância de Fatiamento estiver configurada para Exclusivo ou Meio."
  2288. msgctxt "raft_base_remove_inside_corners description"
  2289. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  2290. msgstr "Remove cantos interior da base do raft, fazendo com que o raft se torne convexo."
  2291. msgctxt "raft_interface_remove_inside_corners description"
  2292. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  2293. msgstr "Remove cantos internos da parte média do raft, fazendo com que o raft se torne convexo."
  2294. msgctxt "raft_surface_remove_inside_corners description"
  2295. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  2296. msgstr "Remove cantos internos da parte superior do raft, fazendo com que o raft se torne convexo."
  2297. msgctxt "raft_remove_inside_corners description"
  2298. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2299. msgstr "Remove os cantos internos do raft, fazendo com que ele se torne convexo."
  2300. msgctxt "meshfix_union_all_remove_holes description"
  2301. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  2302. msgstr "Remove os furos de cada camada e mantém somente aqueles da forma externa. Isto ignorará qualquer geometria interna invisível. No entanto, também ignorará furos de camada que poderiam ser vistos de cima ou de baixo."
  2303. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2304. msgid "RepRap"
  2305. msgstr "RepRap"
  2306. msgctxt "machine_gcode_flavor option Repetier"
  2307. msgid "Repetier"
  2308. msgstr "Repetier"
  2309. msgctxt "skin_outline_count description"
  2310. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  2311. msgstr "Substitui a parte externa do padrão superior/inferir com um número de linhas concêntricas. Usar uma ou duas linhas melhora tetos e topos que começam a ser construídos em cima de padrões de preenchimento."
  2312. msgctxt "ppr description"
  2313. msgid "Reporting events that go out of set thresholds"
  2314. msgstr "Relatar eventos que saem dos limites estabelecidos"
  2315. msgctxt "support_tree_rest_preference label"
  2316. msgid "Rest Preference"
  2317. msgstr "Preferência de Descanso"
  2318. msgctxt "travel_retract_before_outer_wall label"
  2319. msgid "Retract Before Outer Wall"
  2320. msgstr "Retrair Antes da Parede Externa"
  2321. msgctxt "retract_at_layer_change label"
  2322. msgid "Retract at Layer Change"
  2323. msgstr "Retrai em Mudança de Camada"
  2324. msgctxt "retraction_enable description"
  2325. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2326. msgstr "Retrair o filamento quando o bico estiver se movendo sobre uma área não-impressa."
  2327. msgctxt "wipe_retraction_enable description"
  2328. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2329. msgstr "Retrair o filamento quando o bico se mover sobre uma área não impressa."
  2330. msgctxt "retract_at_layer_change description"
  2331. msgid "Retract the filament when the nozzle is moving to the next layer."
  2332. msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada."
  2333. msgctxt "retraction_amount label"
  2334. msgid "Retraction Distance"
  2335. msgstr "Distância da Retração"
  2336. msgctxt "retraction_extra_prime_amount label"
  2337. msgid "Retraction Extra Prime Amount"
  2338. msgstr "Quantidade Adicional de Avanço da Retração"
  2339. msgctxt "retraction_min_travel label"
  2340. msgid "Retraction Minimum Travel"
  2341. msgstr "Percurso Mínimo para Retração"
  2342. msgctxt "retraction_prime_speed label"
  2343. msgid "Retraction Prime Speed"
  2344. msgstr "Velocidade de Avanço da Retração"
  2345. msgctxt "retraction_retract_speed label"
  2346. msgid "Retraction Retract Speed"
  2347. msgstr "Velocidade de Recolhimento de Retração"
  2348. msgctxt "retraction_speed label"
  2349. msgid "Retraction Speed"
  2350. msgstr "Velocidade de Retração"
  2351. msgctxt "z_seam_position option right"
  2352. msgid "Right"
  2353. msgstr "Direita"
  2354. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2355. msgid "Scale Fan Speed To 0-1"
  2356. msgstr "Velocidade de Escala da Ventoinha A 0-1"
  2357. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2358. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2359. msgstr "Usa a escala da velocidade da ventoinha como um número entre 0 e 1 ao invés de 0 a 256."
  2360. msgctxt "material_shrinkage_percentage label"
  2361. msgid "Scaling Factor Shrinkage Compensation"
  2362. msgstr "Compensação de Fator de Encolhimento"
  2363. msgctxt "support_meshes_present label"
  2364. msgid "Scene Has Support Meshes"
  2365. msgstr "A Cena Tem Malhas de Suporte"
  2366. msgctxt "z_seam_corner label"
  2367. msgid "Seam Corner Preference"
  2368. msgstr "Preferência do Canto da Costura"
  2369. msgctxt "user_defined_print_order_enabled label"
  2370. msgid "Set Print Sequence Manually"
  2371. msgstr "Definir sequência de impressão manualmente"
  2372. msgctxt "draft_shield_height_limitation description"
  2373. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  2374. msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada."
  2375. msgctxt "dual description"
  2376. msgid "Settings used for printing with multiple extruders."
  2377. msgstr "Ajustes usados para imprimir com vários extrusores."
  2378. msgctxt "command_line_settings description"
  2379. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2380. msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura."
  2381. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2382. msgid "Shared Nozzle Initial Retraction"
  2383. msgstr "Retração Inicial do Bico Compartilhado"
  2384. msgctxt "z_seam_type option sharpest_corner"
  2385. msgid "Sharpest Corner"
  2386. msgstr "Canto Mais Agudo"
  2387. msgctxt "shell description"
  2388. msgid "Shell"
  2389. msgstr "Perímetro"
  2390. msgctxt "z_seam_type option shortest"
  2391. msgid "Shortest"
  2392. msgstr "Mais Curto"
  2393. msgctxt "machine_show_variants label"
  2394. msgid "Show Machine Variants"
  2395. msgstr "Exibir Variantes de Máquina"
  2396. msgctxt "skin_edge_support_layers label"
  2397. msgid "Skin Edge Support Layers"
  2398. msgstr "Camadas do Suporte da Aresta de Contorno"
  2399. msgctxt "skin_edge_support_thickness label"
  2400. msgid "Skin Edge Support Thickness"
  2401. msgstr "Espessura do Suporte da Aresta de Contorno"
  2402. msgctxt "expand_skins_expand_distance label"
  2403. msgid "Skin Expand Distance"
  2404. msgstr "Distância de Expansão do Contorno"
  2405. msgctxt "skin_overlap_mm label"
  2406. msgid "Skin Overlap"
  2407. msgstr "Sobreposição do Contorno"
  2408. msgctxt "skin_overlap label"
  2409. msgid "Skin Overlap Percentage"
  2410. msgstr "Porcentagem de Sobreposição do Contorno"
  2411. msgctxt "skin_preshrink label"
  2412. msgid "Skin Removal Width"
  2413. msgstr "Largura de Remoção de Contorno"
  2414. msgctxt "min_skin_width_for_expansion description"
  2415. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  2416. msgstr "Áreas de contorno mais estreitas que esta não são expandidas. Isto evita expandir as áreas estreitas que são criadas quando a superfície do modelo tem inclinações quase verticais."
  2417. msgctxt "support_zag_skip_count description"
  2418. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2419. msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida."
  2420. msgctxt "support_skip_some_zags description"
  2421. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  2422. msgstr "Evitar algumas conexões de linha de suporte para fazer a estrutura de suporte mais fácil de ser removida. Este ajuste é aplicável ao padrão de preenchimento de suporte de ziguezague."
  2423. msgctxt "adhesion_type option skirt"
  2424. msgid "Skirt"
  2425. msgstr "Skirt"
  2426. msgctxt "skirt_gap label"
  2427. msgid "Skirt Distance"
  2428. msgstr "Distância do Skirt"
  2429. msgctxt "skirt_height label"
  2430. msgid "Skirt Height"
  2431. msgstr "Altura do Skirt"
  2432. msgctxt "skirt_line_count label"
  2433. msgid "Skirt Line Count"
  2434. msgstr "Contagem de linhas de Skirt"
  2435. msgctxt "acceleration_skirt_brim label"
  2436. msgid "Skirt/Brim Acceleration"
  2437. msgstr "Aceleração para Skirt e Brim"
  2438. msgctxt "skirt_brim_extruder_nr label"
  2439. msgid "Skirt/Brim Extruder"
  2440. msgstr "Extrusor do Skirt/Brim"
  2441. msgctxt "skirt_brim_material_flow label"
  2442. msgid "Skirt/Brim Flow"
  2443. msgstr "Fluxo de Skirt/Brim"
  2444. msgctxt "jerk_skirt_brim label"
  2445. msgid "Skirt/Brim Jerk"
  2446. msgstr "Jerk de Skirt e Brim"
  2447. msgctxt "skirt_brim_line_width label"
  2448. msgid "Skirt/Brim Line Width"
  2449. msgstr "Largura de Extrusão do Brim e Skirt"
  2450. msgctxt "skirt_brim_minimal_length label"
  2451. msgid "Skirt/Brim Minimum Length"
  2452. msgstr "Mínimo Comprimento do Skirt e Brim"
  2453. msgctxt "skirt_brim_speed label"
  2454. msgid "Skirt/Brim Speed"
  2455. msgstr "Velocidade do Skirt e Brim"
  2456. msgctxt "slicing_tolerance label"
  2457. msgid "Slicing Tolerance"
  2458. msgstr "Tolerância de Fatiamento"
  2459. msgctxt "small_feature_speed_factor_0 label"
  2460. msgid "Small Feature Initial Layer Speed"
  2461. msgstr "Velocidade de Camada Inicial de Aspecto Pequeno"
  2462. msgctxt "small_feature_max_length label"
  2463. msgid "Small Feature Max Length"
  2464. msgstr "Comprimento Máximo do Aspecto Pequeno"
  2465. msgctxt "small_feature_speed_factor label"
  2466. msgid "Small Feature Speed"
  2467. msgstr "Velocidade de Aspecto Pequeno"
  2468. msgctxt "small_hole_max_size label"
  2469. msgid "Small Hole Max Size"
  2470. msgstr "Tamanho Máximo de Furos Pequenos"
  2471. #, fuzzy
  2472. msgctxt "cool_min_temperature label"
  2473. msgid "Small Layer Printing Temperature"
  2474. msgstr "Temperatura de Impressão Final"
  2475. msgctxt "small_skin_on_surface label"
  2476. msgid "Small Top/Bottom On Surface"
  2477. msgstr "Pequena Base/Teto Na Superfície"
  2478. msgctxt "small_skin_width label"
  2479. msgid "Small Top/Bottom Width"
  2480. msgstr "Largura do Teto/Base Pequenos"
  2481. msgctxt "small_feature_speed_factor_0 description"
  2482. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2483. msgstr "Aspectos pequenos na primeira camada serão impressos nesta porcentagem de sua velocidade de impressão normal. Impressão mais lenta pode ajudar com aderência e precisão."
  2484. msgctxt "small_feature_speed_factor description"
  2485. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2486. msgstr "Aspectos pequenos serão impressos nessa porcentagem da velocidade normal. Impressão mais lenta pode ajudar com aderência e precisão."
  2487. msgctxt "small_skin_width description"
  2488. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  2489. msgstr "Regiões pequenas de base/teto são preenchidas com paredes ao invés do padrão default de teto/base. Isto ajuda a prevenir movimentos bruscos. Desligado por default para a camada superior (exposta ao ar) (Veja 'Pequena Base/Teto Na Superfície')"
  2490. msgctxt "brim_smart_ordering label"
  2491. msgid "Smart Brim"
  2492. msgstr "Brim Inteligente"
  2493. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2494. msgid "Smart Hiding"
  2495. msgstr "Ocultação Inteligente"
  2496. msgctxt "smooth_spiralized_contours label"
  2497. msgid "Smooth Spiralized Contours"
  2498. msgstr "Suavizar Contornos Espiralizados"
  2499. msgctxt "smooth_spiralized_contours description"
  2500. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  2501. msgstr "Suavizar os contornos espiralizados para reduzir a visibilidade da costura Z (a costura Z deve ser quase invisível na impressão mas ainda será visível na visão de camadas). Note que a suavização tenderá a embaçar detalhes finos de superfície."
  2502. msgctxt "retraction_extra_prime_amount description"
  2503. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2504. msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste."
  2505. msgctxt "wipe_retraction_extra_prime_amount description"
  2506. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2507. msgstr "Um pouco de material pode escorrer durante os movimentos do percurso de limpeza e isso pode ser compensado neste ajuste."
  2508. msgctxt "blackmagic label"
  2509. msgid "Special Modes"
  2510. msgstr "Modos Especiais"
  2511. msgctxt "speed description"
  2512. msgid "Speed"
  2513. msgstr "Velocidade"
  2514. msgctxt "speed label"
  2515. msgid "Speed"
  2516. msgstr "Velocidade"
  2517. msgctxt "wipe_hop_speed description"
  2518. msgid "Speed to move the z-axis during the hop."
  2519. msgstr "Velocidade com que mover o eixo Z durante o salto."
  2520. msgctxt "magic_spiralize label"
  2521. msgid "Spiralize Outer Contour"
  2522. msgstr "Espiralizar o Contorno Externo"
  2523. msgctxt "magic_spiralize description"
  2524. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  2525. msgstr "'Espiralizar' faz com que o movimento vertical (em Z) seja contínuo e gradual seguindo o contorno da peça. Este recurso transforma um modelo sólido em uma simples linha contínua em espiral partindo de uma base sólida. O recurso só deve ser habilitado quando cada camada horizontal contiver somente um contorno."
  2526. msgctxt "material_standby_temperature label"
  2527. msgid "Standby Temperature"
  2528. msgstr "Temperatura de Espera"
  2529. msgctxt "machine_start_gcode label"
  2530. msgid "Start G-code"
  2531. msgstr "G-Code Inicial"
  2532. msgctxt "z_seam_type description"
  2533. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  2534. msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida."
  2535. msgctxt "machine_steps_per_mm_e label"
  2536. msgid "Steps per Millimeter (E)"
  2537. msgstr "Passos por Milímetro (E)"
  2538. msgctxt "machine_steps_per_mm_x label"
  2539. msgid "Steps per Millimeter (X)"
  2540. msgstr "Passos por Milímetro (X)"
  2541. msgctxt "machine_steps_per_mm_y label"
  2542. msgid "Steps per Millimeter (Y)"
  2543. msgstr "Passos por Milímetro (Y)"
  2544. msgctxt "machine_steps_per_mm_z label"
  2545. msgid "Steps per Millimeter (Z)"
  2546. msgstr "Passos por Milímetro (Z)"
  2547. msgctxt "support description"
  2548. msgid "Support"
  2549. msgstr "Suporte"
  2550. msgctxt "support label"
  2551. msgid "Support"
  2552. msgstr "Suporte"
  2553. msgctxt "acceleration_support label"
  2554. msgid "Support Acceleration"
  2555. msgstr "Aceleração do Suporte"
  2556. msgctxt "support_bottom_distance label"
  2557. msgid "Support Bottom Distance"
  2558. msgstr "Distância Inferior do Suporte"
  2559. #, fuzzy
  2560. msgctxt "support_bottom_wall_count label"
  2561. msgid "Support Bottom Wall Line Count"
  2562. msgstr "Contagem de Linhas de Parede de Suporte"
  2563. msgctxt "support_brim_line_count label"
  2564. msgid "Support Brim Line Count"
  2565. msgstr "Número de Filetes do Brim de Suporte"
  2566. msgctxt "support_brim_width label"
  2567. msgid "Support Brim Width"
  2568. msgstr "Largura do Brim de Suporte"
  2569. msgctxt "support_zag_skip_count label"
  2570. msgid "Support Chunk Line Count"
  2571. msgstr "Contagem de Linhas de Pedaço de Suporte"
  2572. msgctxt "support_skip_zag_per_mm label"
  2573. msgid "Support Chunk Size"
  2574. msgstr "Tamanho do Pedaço de Suporte"
  2575. msgctxt "support_infill_rate label"
  2576. msgid "Support Density"
  2577. msgstr "Densidade do Suporte"
  2578. msgctxt "support_xy_overrides_z label"
  2579. msgid "Support Distance Priority"
  2580. msgstr "Prioridade das Distâncias de Suporte"
  2581. msgctxt "support_extruder_nr label"
  2582. msgid "Support Extruder"
  2583. msgstr "Extrusor do Suporte"
  2584. msgctxt "acceleration_support_bottom label"
  2585. msgid "Support Floor Acceleration"
  2586. msgstr "Aceleração da Base do Suporte"
  2587. msgctxt "support_bottom_density label"
  2588. msgid "Support Floor Density"
  2589. msgstr "Densidade da Base do Suporte"
  2590. msgctxt "support_bottom_extruder_nr label"
  2591. msgid "Support Floor Extruder"
  2592. msgstr "Extrusor da Base do Suporte"
  2593. msgctxt "support_bottom_material_flow label"
  2594. msgid "Support Floor Flow"
  2595. msgstr "Fluxo da Base de Suporte"
  2596. msgctxt "support_bottom_offset label"
  2597. msgid "Support Floor Horizontal Expansion"
  2598. msgstr "Expansão Horizontal da Base do Suporte"
  2599. msgctxt "jerk_support_bottom label"
  2600. msgid "Support Floor Jerk"
  2601. msgstr "Jerk da Base do Suporte"
  2602. msgctxt "support_bottom_angles label"
  2603. msgid "Support Floor Line Directions"
  2604. msgstr "Direções de Filete da Base do Suporte"
  2605. msgctxt "support_bottom_line_distance label"
  2606. msgid "Support Floor Line Distance"
  2607. msgstr "Distância de Filetes da Base de Suporte"
  2608. msgctxt "support_bottom_line_width label"
  2609. msgid "Support Floor Line Width"
  2610. msgstr "Largura de Extrusão da Base do Suporte"
  2611. msgctxt "support_bottom_pattern label"
  2612. msgid "Support Floor Pattern"
  2613. msgstr "Padrão de Base de Suporte"
  2614. msgctxt "speed_support_bottom label"
  2615. msgid "Support Floor Speed"
  2616. msgstr "Velocidade de Base do Suporte"
  2617. msgctxt "support_bottom_height label"
  2618. msgid "Support Floor Thickness"
  2619. msgstr "Espessura da Base de Suporte"
  2620. msgctxt "support_material_flow label"
  2621. msgid "Support Flow"
  2622. msgstr "Fluxo de Suporte"
  2623. msgctxt "support_offset label"
  2624. msgid "Support Horizontal Expansion"
  2625. msgstr "Expansão Horizontal do Suporte"
  2626. msgctxt "acceleration_support_infill label"
  2627. msgid "Support Infill Acceleration"
  2628. msgstr "Aceleração do Preenchimento do Suporte"
  2629. msgctxt "support_infill_extruder_nr label"
  2630. msgid "Support Infill Extruder"
  2631. msgstr "Extrusor do Preenchimento do Suporte"
  2632. msgctxt "jerk_support_infill label"
  2633. msgid "Support Infill Jerk"
  2634. msgstr "Jerk de Preenchimento de Suporte"
  2635. msgctxt "support_infill_sparse_thickness label"
  2636. msgid "Support Infill Layer Thickness"
  2637. msgstr "Espessura de Camada do Preenchimento de Suporte"
  2638. msgctxt "support_infill_angles label"
  2639. msgid "Support Infill Line Directions"
  2640. msgstr "Direção de Filete do Preenchimento de Suporte"
  2641. msgctxt "speed_support_infill label"
  2642. msgid "Support Infill Speed"
  2643. msgstr "Velocidade do Preenchimento do Suporte"
  2644. msgctxt "acceleration_support_interface label"
  2645. msgid "Support Interface Acceleration"
  2646. msgstr "Aceleração da Interface de Suporte"
  2647. msgctxt "support_interface_density label"
  2648. msgid "Support Interface Density"
  2649. msgstr "Densidade da Interface de Suporte"
  2650. msgctxt "support_interface_extruder_nr label"
  2651. msgid "Support Interface Extruder"
  2652. msgstr "Extrusor da Interface de Suporte"
  2653. msgctxt "support_interface_material_flow label"
  2654. msgid "Support Interface Flow"
  2655. msgstr "Fluxo de Interface de Suporte"
  2656. msgctxt "support_interface_offset label"
  2657. msgid "Support Interface Horizontal Expansion"
  2658. msgstr "Expansão Horizontal da Interface de Suporte"
  2659. msgctxt "jerk_support_interface label"
  2660. msgid "Support Interface Jerk"
  2661. msgstr "Jerk da Interface de Suporte"
  2662. msgctxt "support_interface_angles label"
  2663. msgid "Support Interface Line Directions"
  2664. msgstr "Direções do Filete de Interface de Suporte"
  2665. msgctxt "support_interface_line_width label"
  2666. msgid "Support Interface Line Width"
  2667. msgstr "Largura de Extrusão da Interface do Suporte"
  2668. msgctxt "support_interface_pattern label"
  2669. msgid "Support Interface Pattern"
  2670. msgstr "Padrão da Interface de Suporte"
  2671. msgctxt "support_interface_priority label"
  2672. msgid "Support Interface Priority"
  2673. msgstr "Prioridade de Interface de Suporte"
  2674. msgctxt "speed_support_interface label"
  2675. msgid "Support Interface Speed"
  2676. msgstr "Velocidade da Interface de Suporte"
  2677. msgctxt "support_interface_height label"
  2678. msgid "Support Interface Thickness"
  2679. msgstr "Espessura da Interface de Suporte"
  2680. #, fuzzy
  2681. msgctxt "support_interface_wall_count label"
  2682. msgid "Support Interface Wall Line Count"
  2683. msgstr "Contagem de Linhas de Parede de Suporte"
  2684. msgctxt "jerk_support label"
  2685. msgid "Support Jerk"
  2686. msgstr "Jerk do Suporte"
  2687. msgctxt "support_join_distance label"
  2688. msgid "Support Join Distance"
  2689. msgstr "Distância de União do Suporte"
  2690. msgctxt "support_line_distance label"
  2691. msgid "Support Line Distance"
  2692. msgstr "Distância das Linhas do Suporte"
  2693. msgctxt "support_line_width label"
  2694. msgid "Support Line Width"
  2695. msgstr "Largura de Extrusão do Suporte"
  2696. msgctxt "support_mesh label"
  2697. msgid "Support Mesh"
  2698. msgstr "Malha de Suporte"
  2699. msgctxt "support_angle label"
  2700. msgid "Support Overhang Angle"
  2701. msgstr "Ângulo para Caracterizar Seções Pendentes"
  2702. msgctxt "support_pattern label"
  2703. msgid "Support Pattern"
  2704. msgstr "Padrão do Suporte"
  2705. msgctxt "support_type label"
  2706. msgid "Support Placement"
  2707. msgstr "Colocação dos Suportes"
  2708. msgctxt "acceleration_support_roof label"
  2709. msgid "Support Roof Acceleration"
  2710. msgstr "Aceleração do Teto de Suporte"
  2711. msgctxt "support_roof_density label"
  2712. msgid "Support Roof Density"
  2713. msgstr "Densidade do Teto de Suporte"
  2714. msgctxt "support_roof_extruder_nr label"
  2715. msgid "Support Roof Extruder"
  2716. msgstr "Extrusor do Teto do Suporte"
  2717. msgctxt "support_roof_material_flow label"
  2718. msgid "Support Roof Flow"
  2719. msgstr "Fluxo do Teto de Suporte"
  2720. msgctxt "support_roof_offset label"
  2721. msgid "Support Roof Horizontal Expansion"
  2722. msgstr "Expansão Horizontal do Teto de Suporte"
  2723. msgctxt "jerk_support_roof label"
  2724. msgid "Support Roof Jerk"
  2725. msgstr "Jerk do Teto de Suporte"
  2726. msgctxt "support_roof_angles label"
  2727. msgid "Support Roof Line Directions"
  2728. msgstr "Direções de Filete do Teto do Suporte"
  2729. msgctxt "support_roof_line_distance label"
  2730. msgid "Support Roof Line Distance"
  2731. msgstr "Distância de Filetes do Teto de Suporte"
  2732. msgctxt "support_roof_line_width label"
  2733. msgid "Support Roof Line Width"
  2734. msgstr "Largura de Extrusão do Teto do Suporte"
  2735. msgctxt "support_roof_pattern label"
  2736. msgid "Support Roof Pattern"
  2737. msgstr "Padrão de Teto de Suporte"
  2738. msgctxt "speed_support_roof label"
  2739. msgid "Support Roof Speed"
  2740. msgstr "Velocidade do Teto de Suporte"
  2741. msgctxt "support_roof_height label"
  2742. msgid "Support Roof Thickness"
  2743. msgstr "Espessura do Topo do Suporte"
  2744. #, fuzzy
  2745. msgctxt "support_roof_wall_count label"
  2746. msgid "Support Roof Wall Line Count"
  2747. msgstr "Contagem de Linhas de Parede de Suporte"
  2748. msgctxt "speed_support label"
  2749. msgid "Support Speed"
  2750. msgstr "Velocidade do Suporte"
  2751. msgctxt "support_bottom_stair_step_height label"
  2752. msgid "Support Stair Step Height"
  2753. msgstr "Altura do Passo de Suporte em Escada"
  2754. msgctxt "support_bottom_stair_step_width label"
  2755. msgid "Support Stair Step Maximum Width"
  2756. msgstr "Largura Máxima do Passo de Suporte em Escada"
  2757. msgctxt "support_bottom_stair_step_min_slope label"
  2758. msgid "Support Stair Step Minimum Slope Angle"
  2759. msgstr "Ângulo Mínimo de Inclinação do Passo de Suporte em Escada"
  2760. msgctxt "support_structure label"
  2761. msgid "Support Structure"
  2762. msgstr "Estrutura de Suporte"
  2763. msgctxt "support_top_distance label"
  2764. msgid "Support Top Distance"
  2765. msgstr "Distância Superior do Suporte"
  2766. msgctxt "support_wall_count label"
  2767. msgid "Support Wall Line Count"
  2768. msgstr "Contagem de Linhas de Parede de Suporte"
  2769. msgctxt "support_xy_distance label"
  2770. msgid "Support X/Y Distance"
  2771. msgstr "Distância X/Y do Suporte"
  2772. msgctxt "support_z_distance label"
  2773. msgid "Support Z Distance"
  2774. msgstr "Distância em Z do Suporte"
  2775. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2776. msgid "Support lines preferred"
  2777. msgstr "Filetes de suporte preferidos"
  2778. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2779. msgid "Support preferred"
  2780. msgstr "Suporte preferido"
  2781. msgctxt "support_supported_skin_fan_speed label"
  2782. msgid "Supported Skin Fan Speed"
  2783. msgstr "Velocidade de Ventoinha do Contorno Suportado"
  2784. msgctxt "magic_mesh_surface_mode option surface"
  2785. msgid "Surface"
  2786. msgstr "Superfície"
  2787. msgctxt "material_surface_energy label"
  2788. msgid "Surface Energy"
  2789. msgstr "Energia de Superfície"
  2790. msgctxt "magic_mesh_surface_mode label"
  2791. msgid "Surface Mode"
  2792. msgstr "Modo de Superficie"
  2793. msgctxt "material_adhesion_tendency description"
  2794. msgid "Surface adhesion tendency."
  2795. msgstr "Tendência de aderência da superfície."
  2796. msgctxt "material_surface_energy description"
  2797. msgid "Surface energy."
  2798. msgstr "Energia de superfície."
  2799. msgctxt "brim_smart_ordering description"
  2800. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2801. msgstr "Troca a ordem de impressão do filete de brim mais interno e o segundo mais interno. Isto melhora a remoção do brim."
  2802. msgctxt "alternate_carve_order description"
  2803. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  2804. msgstr "Troca quais volumes sobrepondo malhas vão pertencer a cada camada, de modo que as malhas sobrepostas se tornem entrelaçadas. Desligar esta opção vai fazer com que uma das malhas obtenha todo o volume da sobreposiçào, removendo este volume das outras malhas."
  2805. msgctxt "adaptive_layer_height_threshold description"
  2806. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  2807. msgstr "Trata da distância horizontal entre duas camadas adjacentes. Reduzir este ajuste faz com que camadas mais finas sejam usadas para reunir as bordas das camadas mais perto uma da outra."
  2808. msgctxt "layer_start_x description"
  2809. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2810. msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada."
  2811. msgctxt "z_seam_x description"
  2812. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2813. msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada."
  2814. msgctxt "extruder_prime_pos_x description"
  2815. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2816. msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão."
  2817. msgctxt "layer_start_y description"
  2818. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2819. msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada."
  2820. msgctxt "z_seam_y description"
  2821. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2822. msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada."
  2823. msgctxt "extruder_prime_pos_y description"
  2824. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2825. msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão."
  2826. msgctxt "extruder_prime_pos_z description"
  2827. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2828. msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão."
  2829. msgctxt "acceleration_print_layer_0 description"
  2830. msgid "The acceleration during the printing of the initial layer."
  2831. msgstr "Aceleração durante a impressão da camada inicial."
  2832. msgctxt "acceleration_layer_0 description"
  2833. msgid "The acceleration for the initial layer."
  2834. msgstr "Aceleração para a camada inicial."
  2835. msgctxt "acceleration_travel_layer_0 description"
  2836. msgid "The acceleration for travel moves in the initial layer."
  2837. msgstr "Aceleração para percursos na camada inicial."
  2838. msgctxt "jerk_travel_layer_0 description"
  2839. msgid "The acceleration for travel moves in the initial layer."
  2840. msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial."
  2841. msgctxt "acceleration_wall_x description"
  2842. msgid "The acceleration with which all inner walls are printed."
  2843. msgstr "Aceleração com que se imprimem as paredes interiores."
  2844. msgctxt "acceleration_infill description"
  2845. msgid "The acceleration with which infill is printed."
  2846. msgstr "A aceleração com que o preenchimento é impresso."
  2847. msgctxt "acceleration_ironing description"
  2848. msgid "The acceleration with which ironing is performed."
  2849. msgstr "A aceleração com que o recurso de passar a ferro é feito."
  2850. msgctxt "acceleration_print description"
  2851. msgid "The acceleration with which printing happens."
  2852. msgstr "Aceleração com que se realiza a impressão."
  2853. msgctxt "raft_base_acceleration description"
  2854. msgid "The acceleration with which the base raft layer is printed."
  2855. msgstr "A aceleração com que as camadas de base do raft são impressas."
  2856. msgctxt "acceleration_support_bottom description"
  2857. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  2858. msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície."
  2859. msgctxt "acceleration_support_infill description"
  2860. msgid "The acceleration with which the infill of support is printed."
  2861. msgstr "Aceleração com que se imprime o preenchimento dos suportes."
  2862. msgctxt "raft_interface_acceleration description"
  2863. msgid "The acceleration with which the middle raft layer is printed."
  2864. msgstr "A aceleração com que a camada intermediária do raft é impressa."
  2865. msgctxt "acceleration_wall_0 description"
  2866. msgid "The acceleration with which the outermost walls are printed."
  2867. msgstr "Aceleração com que se imprime a parede exterior."
  2868. msgctxt "acceleration_prime_tower description"
  2869. msgid "The acceleration with which the prime tower is printed."
  2870. msgstr "Aceleração com que a torre de purga é impressa."
  2871. msgctxt "raft_acceleration description"
  2872. msgid "The acceleration with which the raft is printed."
  2873. msgstr "A aceleração com que o raft é impresso."
  2874. msgctxt "acceleration_support_interface description"
  2875. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2876. msgstr "A aceleração com que os tetos e bases de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes."
  2877. msgctxt "acceleration_support_roof description"
  2878. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2879. msgstr "A aceleração com que os tetos de suporte são impressos. Imprimi-los em aceleração menor pode melhorar a qualidade das seções pendentes."
  2880. msgctxt "acceleration_skirt_brim description"
  2881. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  2882. msgstr "Aceleração com a qual o skirt e o brim são impressos. Normalmente isto é feito com a aceleração de camada inicial, mas às vezes você pode querer imprimir o skirt ou brim em uma aceleração diferente."
  2883. msgctxt "acceleration_support description"
  2884. msgid "The acceleration with which the support structure is printed."
  2885. msgstr "Aceleração com que as estruturas de suporte são impressas."
  2886. msgctxt "raft_surface_acceleration description"
  2887. msgid "The acceleration with which the top raft layers are printed."
  2888. msgstr "A aceleração com que as camadas superiores do raft são impressas."
  2889. msgctxt "acceleration_wall_x_roofing description"
  2890. msgid "The acceleration with which the top surface inner walls are printed."
  2891. msgstr "A aceleração com que as paredes internas da superfície superior são impressas."
  2892. msgctxt "acceleration_wall_0_roofing description"
  2893. msgid "The acceleration with which the top surface outermost walls are printed."
  2894. msgstr "A aceleração com que as paredes externas da superfície superior são impressas."
  2895. msgctxt "acceleration_wall description"
  2896. msgid "The acceleration with which the walls are printed."
  2897. msgstr "Aceleração com que se imprimem as paredes."
  2898. msgctxt "acceleration_roofing description"
  2899. msgid "The acceleration with which top surface skin layers are printed."
  2900. msgstr "A aceleração com a qual as camadas da superfície superior são impressas."
  2901. msgctxt "acceleration_topbottom description"
  2902. msgid "The acceleration with which top/bottom layers are printed."
  2903. msgstr "Aceleração com que as camadas superiores e inferiores são impressas."
  2904. msgctxt "acceleration_travel description"
  2905. msgid "The acceleration with which travel moves are made."
  2906. msgstr "Aceleração com que se realizam os percursos."
  2907. msgctxt "ironing_flow description"
  2908. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  2909. msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície."
  2910. msgctxt "infill_overlap description"
  2911. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  2912. msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento."
  2913. msgctxt "infill_overlap_mm description"
  2914. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2915. msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento."
  2916. msgctxt "switch_extruder_retraction_amount description"
  2917. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  2918. msgstr "A quantidade de retração ao mudar extrusores. Coloque em 0 para não haver retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento do hotend."
  2919. msgctxt "machine_nozzle_expansion_angle description"
  2920. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2921. msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico."
  2922. msgctxt "support_tower_roof_angle description"
  2923. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  2924. msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados."
  2925. msgctxt "mold_angle description"
  2926. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  2927. msgstr "O ângulo de seção pendente das paredes externas criadas para o molde. 0° fará a superfície externa do molde vertical, enquanto 90° fará a superfície externa do molde seguir o contorno do modelo."
  2928. msgctxt "support_tree_branch_diameter_angle description"
  2929. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  2930. msgstr "O ângulo do diâmetro dos galhos enquanto se tornam gradualmente mais grossos na direção da base. Um ângulo de 0 fará com que os galhos tenham grossura uniforme no seu comrpimento. Um ângulo levemente maior que zero pode aumentar a estabilidade do suporte em árvore."
  2931. msgctxt "support_conical_angle description"
  2932. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  2933. msgstr "O ângulo da inclinação do suporte cônico. Como 0 graus sendo vertical e 90 graus sendo horizontal. Ângulos menores farão o suporte ser mais firme, mas gastarão mais material. Ângulos negativos farão a base do suporte mais larga que o topo."
  2934. msgctxt "magic_fuzzy_skin_point_density description"
  2935. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  2936. msgstr "A densidade média dos pontos introduzidos em cada polígono de uma camada. Note que os pontos originais do polígono são descartados, portanto uma densidade baixa resulta da redução de resolução."
  2937. msgctxt "magic_fuzzy_skin_point_dist description"
  2938. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  2939. msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Note que os pontos originais do polígono são descartados, portanto umo alto alisamento resulta em redução da resolução. Este valor deve ser maior que a metade da Espessura do Contorno Felpudo."
  2940. msgctxt "material_brand description"
  2941. msgid "The brand of material used."
  2942. msgstr "A marca de material usado."
  2943. msgctxt "machine_acceleration description"
  2944. msgid "The default acceleration of print head movement."
  2945. msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão."
  2946. msgctxt "default_material_print_temperature description"
  2947. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  2948. msgstr "A temperatura default usada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor"
  2949. msgctxt "default_material_bed_temperature description"
  2950. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  2951. msgstr "A temperatura default usada para a plataforma aquecida de impressão. Este valor deve ser a temperatura \"base\" da plataforma. Todas as outras temperaturas de impressão devem usar diferenças baseadas neste valor"
  2952. msgctxt "bridge_skin_density description"
  2953. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2954. msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  2955. msgctxt "support_bottom_density description"
  2956. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  2957. msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície."
  2958. msgctxt "support_roof_density description"
  2959. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2960. msgstr "A densidade dos tetos da estrutura de suporte. Um valor maior resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover."
  2961. msgctxt "bridge_skin_density_2 description"
  2962. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2963. msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  2964. msgctxt "bridge_skin_density_3 description"
  2965. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2966. msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  2967. msgctxt "machine_depth description"
  2968. msgid "The depth (Y-direction) of the printable area."
  2969. msgstr "A profundidade (direção Y) da área imprimível."
  2970. msgctxt "support_tower_diameter description"
  2971. msgid "The diameter of a special tower."
  2972. msgstr "O diâmetro da torre especial."
  2973. msgctxt "support_tree_branch_diameter description"
  2974. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2975. msgstr "O diâmetro dos galhos mais finos do suporte em árvore. Galhos mais grossos são mais resistentes. Galhos na direção da base serão mais grossos que essa medida."
  2976. msgctxt "support_tree_tip_diameter description"
  2977. msgid "The diameter of the top of the tip of the branches of tree support."
  2978. msgstr "O diâmetro do topo da ponta dos galhos de suporte em árvore."
  2979. msgctxt "machine_feeder_wheel_diameter description"
  2980. msgid "The diameter of the wheel that drives the material in the feeder."
  2981. msgstr "O diâmetro da engrenagem que traciona o material no alimentador."
  2982. msgctxt "support_tree_max_diameter description"
  2983. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  2984. msgstr "O diâmetro dos galhos mais espessos do suporte em árvore. Um tronco mais espesso é mais robusto; um tronco mais fino ocupa menos espaço na plataforma de impressão."
  2985. msgctxt "adaptive_layer_height_variation_step description"
  2986. msgid "The difference in height of the next layer height compared to the previous one."
  2987. msgstr "A diferença em tamanho da próxima camada comparada à anterior."
  2988. msgctxt "ironing_line_spacing description"
  2989. msgid "The distance between the lines of ironing."
  2990. msgstr "A distância entre as trajetórias de passagem a ferro."
  2991. msgctxt "travel_avoid_distance description"
  2992. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2993. msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso."
  2994. msgctxt "raft_base_line_spacing description"
  2995. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  2996. msgstr "A distância entre as linhas do raft para a camada de base do raft. Um espaçamento esparso permite a remoção fácil do raft da mesa."
  2997. msgctxt "raft_interface_line_spacing description"
  2998. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  2999. msgstr "A distância entre as linhas do raft para a camada intermediária. O espaçamento do meio deve ser grande, ao mesmo tempo que deve ser denso o suficiente para suportar as camadas superiores."
  3000. msgctxt "raft_surface_line_spacing description"
  3001. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3002. msgstr "Distância entre as linhas do raft para as camadas superiores. O espaçamento deve ser igual à largura de linha, de modo que a superfície seja sólida."
  3003. msgctxt "prime_tower_raft_base_line_spacing description"
  3004. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3005. msgstr "A distância entre os filetes do raft para a camada única de raft de torre de purga. Espaçamento alto permite remoção fácil do raft da plataforma de impressão."
  3006. msgctxt "interlocking_depth description"
  3007. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3008. msgstr "A distância da fronteira entre os modelos para gerar a estrutura de interligação, medida em células. Poucas células resultam em baixa aderência."
  3009. msgctxt "brim_width description"
  3010. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3011. msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão."
  3012. #, fuzzy
  3013. msgctxt "interlocking_boundary_avoidance description"
  3014. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3015. msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado."
  3016. msgctxt "machine_heat_zone_length description"
  3017. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  3018. msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento."
  3019. msgctxt "bottom_skin_expand_distance description"
  3020. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  3021. msgstr "A distância com que os contornos inferiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada abaixo aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado."
  3022. msgctxt "expand_skins_expand_distance description"
  3023. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  3024. msgstr "A distância em que os contornos são expandidos pra dentro do preenchimento. Valores mais altos fazem o contorno aderir melhor ao padrão de preenchimento e faz as paredes de camadas vizinhas aderirem melhor ao contorno. Valores menores diminuem a quantidade de material usado."
  3025. msgctxt "top_skin_expand_distance description"
  3026. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  3027. msgstr "A distância com que os contornos superiores são expandidos para dentro do preenchimento. Valores mais altos fazem o contorno se anexar melhor ao padrão de preenchimento e fazem as paredes da camada acima aderirem melhor ao contorno. Valores mais baixos economizam a quantidade de material usado."
  3028. msgctxt "wipe_move_distance description"
  3029. msgid "The distance to move the head back and forth across the brush."
  3030. msgstr "A distância com que mover a cabeça pra frente e pra trás durante a varredura."
  3031. msgctxt "lightning_infill_prune_angle description"
  3032. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  3033. msgstr "As pontas dos filetes de preenchimento são encurtadas para poupar material. Este ajuste é o ângulo da seção pendente das pontas desses filetes."
  3034. msgctxt "material_extrusion_cool_down_speed description"
  3035. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  3036. msgstr "Velocidade adicional pela qual o bico resfria enquanto extruda. O mesmo valor é uso para denotar a velocidade de aquecimento quando se esquenta ao extrudar."
  3037. msgctxt "support_extruder_nr_layer_0 description"
  3038. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  3039. msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão."
  3040. msgctxt "raft_base_extruder_nr description"
  3041. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3042. msgstr "O carro extrusor a ser usado para imprimir a primeira camada do Raft. Isto é usado em multi-extrusão."
  3043. msgctxt "support_bottom_extruder_nr description"
  3044. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  3045. msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão."
  3046. msgctxt "support_infill_extruder_nr description"
  3047. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  3048. msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão."
  3049. msgctxt "raft_interface_extruder_nr description"
  3050. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3051. msgstr "O carro extrusor a ser usado para imprimir a camada central do raft. Isto é usado em multi-extrusão."
  3052. msgctxt "support_interface_extruder_nr description"
  3053. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  3054. msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão."
  3055. msgctxt "support_roof_extruder_nr description"
  3056. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  3057. msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão."
  3058. msgctxt "skirt_brim_extruder_nr description"
  3059. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3060. msgstr "O carro extrusor a ser usado para imprimir o skirt ou brim. Isto é usado em multi-extrusão."
  3061. msgctxt "adhesion_extruder_nr description"
  3062. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3063. msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão."
  3064. msgctxt "support_extruder_nr description"
  3065. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3066. msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão."
  3067. msgctxt "raft_surface_extruder_nr description"
  3068. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3069. msgstr "O carro extrusor a ser usado para imprimir a(s) camada(s) central(is) do raft. Isto é usado em multi-extrusão."
  3070. msgctxt "infill_extruder_nr description"
  3071. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  3072. msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão."
  3073. msgctxt "wall_x_extruder_nr description"
  3074. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  3075. msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão."
  3076. msgctxt "wall_0_extruder_nr description"
  3077. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  3078. msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão."
  3079. msgctxt "top_bottom_extruder_nr description"
  3080. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  3081. msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão."
  3082. msgctxt "roofing_extruder_nr description"
  3083. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  3084. msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão."
  3085. msgctxt "wall_extruder_nr description"
  3086. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  3087. msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão."
  3088. msgctxt "raft_base_fan_speed description"
  3089. msgid "The fan speed for the base raft layer."
  3090. msgstr "A velocidade de ventoinha para a camada base do raft."
  3091. msgctxt "raft_interface_fan_speed description"
  3092. msgid "The fan speed for the middle raft layer."
  3093. msgstr "A velocidade de ventoina para a camada intermediária do raft."
  3094. msgctxt "raft_fan_speed description"
  3095. msgid "The fan speed for the raft."
  3096. msgstr "A velocidade da ventoinha para a impressão do raft."
  3097. msgctxt "raft_surface_fan_speed description"
  3098. msgid "The fan speed for the top raft layers."
  3099. msgstr "A velocidade da ventoinha para as camadas superiores do raft."
  3100. msgctxt "cross_infill_density_image description"
  3101. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  3102. msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do preenchimento da impressão."
  3103. msgctxt "cross_support_density_image description"
  3104. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3105. msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte."
  3106. msgctxt "speed_slowdown_layers description"
  3107. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  3108. msgstr "As poucas primeiras camadas são impressas mais devagar que o resto do modelo, para conseguir melhor aderência à mesa e melhorar a taxa de sucesso geral das impressão. A velocidade é gradualmente aumentada entre estas camadas."
  3109. msgctxt "raft_airgap description"
  3110. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3111. msgstr "O vão entre a camada final do raft e a primeira camada do modelo. Somente a primeira camada é elevada por esta distância para enfraquecer a conexão entre o raft e o modelo, tornando mais fácil a remoção do raft."
  3112. msgctxt "machine_height description"
  3113. msgid "The height (Z-direction) of the printable area."
  3114. msgstr "A altura (direção Z) do volume imprimível."
  3115. msgctxt "mold_roof_height description"
  3116. msgid "The height above horizontal parts in your model which to print mold."
  3117. msgstr "A altura acima das partes horizontais do modelo onde criar o molde."
  3118. msgctxt "cool_fan_full_at_height description"
  3119. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  3120. msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular."
  3121. msgctxt "gantry_height description"
  3122. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  3123. msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)."
  3124. msgctxt "machine_nozzle_head_distance description"
  3125. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  3126. msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão."
  3127. msgctxt "retraction_hop_after_extruder_switch_height description"
  3128. msgid "The height difference when performing a Z Hop after extruder switch."
  3129. msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores."
  3130. msgctxt "retraction_hop description"
  3131. msgid "The height difference when performing a Z Hop."
  3132. msgstr "Diferença de altura ao realizar um Salto Z."
  3133. msgctxt "wipe_hop_amount description"
  3134. msgid "The height difference when performing a Z Hop."
  3135. msgstr "A diferença de altura ao executar um Salto Z."
  3136. msgctxt "layer_height description"
  3137. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  3138. msgstr "A altura das camadas em mm. Valores mais altos produzem impressões mais rápidas em resoluções baixas, valores mais baixos produzem impressão mais lentas em resolução mais alta. Recomenda-se não deixar a altura de camada maior que 80% do diâmetro do bico."
  3139. msgctxt "gradual_infill_step_height description"
  3140. msgid "The height of infill of a given density before switching to half the density."
  3141. msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade."
  3142. msgctxt "gradual_support_infill_step_height description"
  3143. msgid "The height of support infill of a given density before switching to half the density."
  3144. msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade."
  3145. msgctxt "interlocking_beam_layer_count description"
  3146. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3147. msgstr "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos."
  3148. msgctxt "interlocking_orientation description"
  3149. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3150. msgstr "A altura das vigas da estrutura de interligação, medidas em número de camadas. Menos camadas são mais fortes, mas mais susceptíveis a defeitos."
  3151. msgctxt "layer_height_0 description"
  3152. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  3153. msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior."
  3154. msgctxt "prime_tower_base_height description"
  3155. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3156. msgstr "A altura da base da torre de purga. Aumentar este valor resultará em uma torre de purga mais firme porque a base se tornará mais larga. Se o ajuste for muito baixo, a torre de purga não terá uma base firme."
  3157. msgctxt "support_bottom_stair_step_height description"
  3158. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3159. msgstr "A altura dos degraus da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis. Deixe em zero para desligar o comportamento de escada."
  3160. msgctxt "brim_gap description"
  3161. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3162. msgstr "A distância horizontal entre o primeiro filete de brim e o contorno da primeira camada da impressão. Um pequeno vão pode fazer o brim mais fácil de remover sem deixar de prover os benefícios térmicos."
  3163. msgctxt "skirt_gap description"
  3164. msgid ""
  3165. "The horizontal distance between the skirt and the first layer of the print.\n"
  3166. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3167. msgstr ""
  3168. "A distância horizontal entre o skirt a primeira camada da impressão.\n"
  3169. "Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância."
  3170. msgctxt "lightning_infill_straightening_angle description"
  3171. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  3172. msgstr "Os filetes de preenchimentos são retificados para poupar tempo de impressão. Este é o ângulo máximo de seção pendente permito através do comprimento do filete de preenchimento."
  3173. msgctxt "infill_offset_x description"
  3174. msgid "The infill pattern is moved this distance along the X axis."
  3175. msgstr "O padrão de preenchimento é movido por esta distância no eixo X."
  3176. msgctxt "infill_offset_y description"
  3177. msgid "The infill pattern is moved this distance along the Y axis."
  3178. msgstr "O padrão de preenchimento é movido por esta distância no eixo Y."
  3179. msgctxt "machine_nozzle_size description"
  3180. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  3181. msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão."
  3182. msgctxt "raft_base_jerk description"
  3183. msgid "The jerk with which the base raft layer is printed."
  3184. msgstr "O jerk com o qual a camada de base do raft é impressa."
  3185. msgctxt "raft_interface_jerk description"
  3186. msgid "The jerk with which the middle raft layer is printed."
  3187. msgstr "O jerk com o qual a camada intermediária do raft é impressa."
  3188. msgctxt "raft_jerk description"
  3189. msgid "The jerk with which the raft is printed."
  3190. msgstr "O jerk com o qual o raft é impresso."
  3191. msgctxt "raft_surface_jerk description"
  3192. msgid "The jerk with which the top raft layers are printed."
  3193. msgstr "O jerk com o qual as camadas superiores do raft são impressas."
  3194. msgctxt "bottom_skin_preshrink description"
  3195. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  3196. msgstr "A maior largura das áreas de contorno inferiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores em superfícies inclinadas do modelo."
  3197. msgctxt "skin_preshrink description"
  3198. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  3199. msgstr "A maior largura das áreas de contorno que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos inferiores e superiores em superfícies inclinadas do modelo."
  3200. msgctxt "top_skin_preshrink description"
  3201. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  3202. msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo."
  3203. msgctxt "cool_fan_full_layer description"
  3204. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  3205. msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro."
  3206. msgctxt "cool_min_layer_time_fan_speed_max description"
  3207. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  3208. msgstr "O tempo de camada que define o limite entre a velocidade regular da ventoinha e a máxima. Camadas cuja impressão é mais lenta que este tempo usarão a velocidade regular. Camadas mais rápidas gradualmente aumentarão até a velocidade máxima de ventoinha."
  3209. msgctxt "retraction_amount description"
  3210. msgid "The length of material retracted during a retraction move."
  3211. msgstr "O comprimento de filamento retornado durante uma retração."
  3212. msgctxt "prime_tower_base_curve_magnitude description"
  3213. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3214. msgstr "O fator de magnitude usado para a inclinação da base da torre de purga. Se você aumentar este valor, a base se tornará mais fina. Se você diminuí-lo, ela se tornará mais grossa."
  3215. msgctxt "machine_buildplate_type description"
  3216. msgid "The material of the build plate installed on the printer."
  3217. msgstr "O material da plataforma de impressão presente na impressora."
  3218. msgctxt "adaptive_layer_height_variation description"
  3219. msgid "The maximum allowed height different from the base layer height."
  3220. msgstr "A variação de altura máxima permitida para a camada de base."
  3221. msgctxt "ooze_shield_angle description"
  3222. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3223. msgstr "O ângulo de separação máximo que partes da cobertura de escorrimento terão. Com 0 graus sendo na vertical e 90 graus sendo horizontal. Um ângulo menor leva a coberturas de escorrimento falhando menos, mas mais gasto de material."
  3224. msgctxt "conical_overhang_angle description"
  3225. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  3226. msgstr "O ângulo máximo de seçọes pendentes depois de se tornarem imprimíveis. Com o valor de 0° todas as seções pendentes serão trocadas por uma parte do modelo conectada à mesa e 90° não mudará o modelo."
  3227. msgctxt "support_tree_angle description"
  3228. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3229. msgstr "O ângulo máximo dos galhos quando eles crescem em volta do modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para poder ter maior alcance."
  3230. msgctxt "conical_overhang_hole_size description"
  3231. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  3232. msgstr "A área máxima de um furo na base do modelo antes que seja removido por \"Torna Seções Pendentes Imprimíveis\". Furos com área menor que esta serão retidos. O valor de 0 mm² preenche todos os furos na base do modelo."
  3233. msgctxt "meshfix_maximum_deviation description"
  3234. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  3235. msgstr "O desvio máximo permitido ao reduzir a resolução para o ajuste de Máxima Resolução. Se você aumentar isto, a impressão será menos precisa, mas o G-Code será menor. O Desvio Máximo é um limite para Resolução Máxima, portanto se os dois conflitarem o Desvio Máximo sempre será o valor dominante."
  3236. msgctxt "support_join_distance description"
  3237. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3238. msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando estruturas separadas estão mais próximas que este valor, elas são fundidas em uma só."
  3239. msgctxt "flow_rate_max_extrusion_offset description"
  3240. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3241. msgstr "A distância máxima em mm para mover o filamento para compensar mudanças na taxa de fluxo."
  3242. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3243. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  3244. msgstr "O desvio máximo da área de extrusão permitido ao remover pontos intermediários de uma linha reta. Um ponto intermediário pode servir como ponto de mudança de largura em uma longa linha reta. Portanto, se ele for removido, fará com que a linha tenha uma largura uniforme e, como resultado, perderá (ou ganhará) um pouco de área de extrusão. Se você aumentar o valor, você poderá perceber uma sutil sobre-extrusão ou sub-extrusão no meio de paredes retas paralelas, já que mais pontos intermediários com espessura variante poderão ser removidos. Sua impressão será menos acurada, mas o G-Code será menor."
  3245. msgctxt "jerk_print_layer_0 description"
  3246. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3247. msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial."
  3248. msgctxt "jerk_print description"
  3249. msgid "The maximum instantaneous velocity change of the print head."
  3250. msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão."
  3251. msgctxt "jerk_ironing description"
  3252. msgid "The maximum instantaneous velocity change while performing ironing."
  3253. msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito."
  3254. msgctxt "jerk_wall_x description"
  3255. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3256. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas."
  3257. msgctxt "jerk_infill description"
  3258. msgid "The maximum instantaneous velocity change with which infill is printed."
  3259. msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso."
  3260. msgctxt "jerk_support_bottom description"
  3261. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3262. msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas."
  3263. msgctxt "jerk_support_infill description"
  3264. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3265. msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso."
  3266. msgctxt "jerk_wall_0 description"
  3267. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3268. msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa."
  3269. msgctxt "jerk_prime_tower description"
  3270. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3271. msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa."
  3272. msgctxt "jerk_support_interface description"
  3273. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3274. msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos."
  3275. msgctxt "jerk_support_roof description"
  3276. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3277. msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos."
  3278. msgctxt "jerk_skirt_brim description"
  3279. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3280. msgstr "A mudança instantânea máxima de velocidade em uma direção com que o skirt (saia) e brim (bainha) são impressos."
  3281. msgctxt "jerk_support description"
  3282. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3283. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas."
  3284. msgctxt "jerk_wall_x_roofing description"
  3285. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  3286. msgstr "A mudança máxima de velocidade instantânea com que as paredes internas da superfície superior são impressas."
  3287. msgctxt "jerk_wall_0_roofing description"
  3288. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  3289. msgstr "A mudança máxima de velocidade instantânea com que as paredes mais externas da superfície superior são impressas."
  3290. msgctxt "jerk_wall description"
  3291. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3292. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas."
  3293. msgctxt "jerk_roofing description"
  3294. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3295. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas da superfície superior são impressas."
  3296. msgctxt "jerk_topbottom description"
  3297. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3298. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas."
  3299. msgctxt "jerk_travel description"
  3300. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3301. msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos."
  3302. msgctxt "prime_tower_max_bridging_distance description"
  3303. msgid "The maximum length of the branches which may be printed over the air."
  3304. msgstr "O comprimento máximo dos galhos que serão impressos no ar."
  3305. msgctxt "machine_max_feedrate_x description"
  3306. msgid "The maximum speed for the motor of the X-direction."
  3307. msgstr "A velocidade máxima para o motor da impressora na direção X."
  3308. msgctxt "machine_max_feedrate_y description"
  3309. msgid "The maximum speed for the motor of the Y-direction."
  3310. msgstr "A velocidade máxima para o motor da impressora na direção Y."
  3311. msgctxt "machine_max_feedrate_z description"
  3312. msgid "The maximum speed for the motor of the Z-direction."
  3313. msgstr "A velocidade máxima para o motor da impressora na direção Z."
  3314. msgctxt "machine_max_feedrate_e description"
  3315. msgid "The maximum speed of the filament."
  3316. msgstr "A velocidade máxima de entrada de filamento no hotend."
  3317. msgctxt "support_bottom_stair_step_width description"
  3318. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  3319. msgstr "A largura máxima dos passos da base estilo escada do suporte em cima do modelo. Um valor baixo faz o suporte mais difícil de remover, mas valores muito altos podem levar a estruturas de suporte instáveis."
  3320. msgctxt "mold_width description"
  3321. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3322. msgstr "A distância mínima entre o exterior do molde e o exterior do modelo."
  3323. msgctxt "machine_minimum_feedrate description"
  3324. msgid "The minimal movement speed of the print head."
  3325. msgstr "Velocidade mínima de entrada de filamento no hotend."
  3326. msgctxt "material_initial_print_temperature description"
  3327. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3328. msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada."
  3329. msgctxt "machine_min_cool_heat_time_window description"
  3330. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  3331. msgstr "Tempo mínimo em que um extrusor precisará estar inativo antes que o bico seja resfriado. Somente quando o extrusor não for usado por um tempo maior que esse, lhe será permitido resfriar até a temperatura de espera."
  3332. msgctxt "infill_support_angle description"
  3333. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  3334. msgstr "O ângulo mínimo de seções pendentes internas para as quais o preenchimento é adicionado. Em um valor de 0°, objetos são completamente preenchidos no padrão escolhido, e 90° torna o volume oco, sem preenchimento."
  3335. msgctxt "support_angle description"
  3336. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  3337. msgstr "O ângulo mínimo de seções pendentes para os quais o suporte é criado. Com o valor de 0° todas as seções pendentes serão suportadas, e 90° não criará nenhum suporte."
  3338. msgctxt "retraction_min_travel description"
  3339. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3340. msgstr "A distância mínima de percurso necessária para que uma retração aconteça. Isto ajuda a ter menos retrações em uma área pequena."
  3341. msgctxt "skirt_brim_minimal_length description"
  3342. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  3343. msgstr "O comprimento mínimo do skirt ou brim. Se este comprimento não for cumprido por todas as linhas do skirt ou brim juntas, mais linhas serão adicionadas até que o mínimo comprimento seja alcançado. Se a contagem de linhas estiver em 0, isto é ignorado."
  3344. msgctxt "min_odd_wall_line_width description"
  3345. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  3346. msgstr "A mínima largura de extrusão para paredes multifiletes de preenchimento de vão de filete central. Este ajuste determina em que espessura de modelo nós alternamos de imprimir dois filetes de parede para imprimir duas paredes externas e uma parede central no meio. Uma Largura de Extrusão de Parede Ímpar Mínima mais alta leva a uma largura máxima de extrusão de parede par mais alta. A largura máxima de extrusão de parede ímpar é calculada como 2 * Largura Mínima de Extrusão de Parede Par."
  3347. msgctxt "min_even_wall_line_width description"
  3348. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  3349. msgstr "A mínima largura de filete para paredes poligonais normais. Este ajuste determina em que espessura do modelo nós alternamos da impressão de um file de parede fina único para a impressão de dois filetes de parede. Uma Largura Mínima de Filete de Parede Par mais alta leva a uma largura máxima de filete de parede ímpar também mais alta. A largura máxima de filete de parede par é calculada como a Largura de Filete da Parede Externa + 0.5 * Largura Mínima de Filete de Parede Ímpar."
  3350. msgctxt "cool_min_speed description"
  3351. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  3352. msgstr "A velocidade mínima de impressão, mesmo que se tente desacelerar para obedecer ao tempo mínimo de camada. Quando a impressora desacelera demais, a pressão no bico pode ficar muito baixa, o que resulta em baixa qualidade de impressão."
  3353. msgctxt "meshfix_maximum_resolution description"
  3354. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  3355. msgstr "O tamanho mínimo de um segmento de linha após o fatiamento. Se você aumentar este valor, a malha terá uma resolução menor. Isto pode permitir que a impressora mantenha a velocidade que precisa para processar o G-Code e aumentará a velocidade de fatiamento ao remover detalhes da malha que não poderia processar de qualquer jeito."
  3356. msgctxt "meshfix_maximum_travel_resolution description"
  3357. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  3358. msgstr "O tamanho mínimo de um segmento de linha de percurso após o fatiamento. Se o valor aumenta, os movimentos de percurso terão cantos menos suaves. Isto pode permitir que a impressora mantenha a velocidade necessária para processar o G-Code, mas pode fazer com que evitar topar no modelo fique menos preciso."
  3359. msgctxt "support_bottom_stair_step_min_slope description"
  3360. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  3361. msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo."
  3362. msgctxt "cool_min_layer_time description"
  3363. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  3364. msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão."
  3365. msgctxt "prime_tower_min_volume description"
  3366. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3367. msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente."
  3368. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3369. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  3370. msgstr "O máximo que o diâmetro de um galho que tem que se conectar ao modelo pode aumentar ao mesclar-se com galhos que podem alcançar a plataforma de impressão. Aumentar este valor reduz tempo de impressão, mas aumenta a área de suporte que se apoia no modelo"
  3371. msgctxt "machine_name description"
  3372. msgid "The name of your 3D printer model."
  3373. msgstr "Nome do seu modelo de impressora 3D."
  3374. msgctxt "machine_nozzle_id description"
  3375. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3376. msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\"."
  3377. msgctxt "travel_avoid_other_parts description"
  3378. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3379. msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado."
  3380. msgctxt "travel_avoid_supports description"
  3381. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3382. msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado."
  3383. msgctxt "bottom_layers description"
  3384. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3385. msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro."
  3386. msgctxt "raft_base_wall_count description"
  3387. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3388. msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft."
  3389. msgctxt "raft_interface_wall_count description"
  3390. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3391. msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas intermediárias do raft."
  3392. msgctxt "raft_surface_wall_count description"
  3393. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3394. msgstr "O número de contornos a imprimir em torno do padrão linear nas camadas superiores do raft."
  3395. msgctxt "raft_wall_count description"
  3396. msgid "The number of contours to print around the linear pattern of the raft."
  3397. msgstr "O número de contornos a imprimir em torno do padrão linear do raft."
  3398. msgctxt "skin_edge_support_layers description"
  3399. msgid "The number of infill layers that supports skin edges."
  3400. msgstr "O número de camadas de preenchimento que suportam arestas de contorno."
  3401. msgctxt "initial_bottom_layers description"
  3402. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  3403. msgstr "O número de camadas inferiores iniciais da plataforma de impressão pra cima. Quanto calculado a partir da espessura inferior, esse valor é arrendado para um número inteiro."
  3404. msgctxt "raft_interface_layers description"
  3405. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3406. msgstr "O número de camadas entre a base e a superfície do raft. Isso corresponde à espessura principal do raft. Aumentar este valor cria um raft mais espesso e resistente."
  3407. msgctxt "brim_line_count description"
  3408. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  3409. msgstr "O número de linhas usada para o brim. Mais linhas de brim melhoram a aderência à mesa, mas também reduzem a área efetiva de impressão."
  3410. msgctxt "support_brim_line_count description"
  3411. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  3412. msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra."
  3413. msgctxt "raft_surface_layers description"
  3414. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  3415. msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma."
  3416. msgctxt "top_layers description"
  3417. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3418. msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro."
  3419. msgctxt "roofing_layer_count description"
  3420. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3421. msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade."
  3422. msgctxt "support_wall_count description"
  3423. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3424. msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado."
  3425. #, fuzzy
  3426. msgctxt "support_bottom_wall_count description"
  3427. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3428. msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado."
  3429. #, fuzzy
  3430. msgctxt "support_roof_wall_count description"
  3431. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3432. msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado."
  3433. #, fuzzy
  3434. msgctxt "support_interface_wall_count description"
  3435. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  3436. msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado."
  3437. msgctxt "wall_distribution_count description"
  3438. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  3439. msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação será distribuída. Valores menores significam que as paredes mais externas não mudam de comprimento."
  3440. msgctxt "wall_line_count description"
  3441. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3442. msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro."
  3443. msgctxt "machine_nozzle_tip_outer_diameter description"
  3444. msgid "The outer diameter of the tip of the nozzle."
  3445. msgstr "Diâmetro exterior do bico (a ponta do hotend)."
  3446. msgctxt "infill_pattern description"
  3447. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  3448. msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto."
  3449. msgctxt "support_pattern description"
  3450. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3451. msgstr "O padrão (estampa) das estruturas de suporte da impressão. As diferentes opções disponíveis resultam em suportes mais resistentes ou mais fáceis de remover."
  3452. msgctxt "roofing_pattern description"
  3453. msgid "The pattern of the top most layers."
  3454. msgstr "O padrão das camadas superiores."
  3455. msgctxt "top_bottom_pattern description"
  3456. msgid "The pattern of the top/bottom layers."
  3457. msgstr "Padrão ou Estampa das camadas superiores e inferiores."
  3458. msgctxt "top_bottom_pattern_0 description"
  3459. msgid "The pattern on the bottom of the print on the first layer."
  3460. msgstr "O padrão na base da impressão na primeira camada."
  3461. msgctxt "ironing_pattern description"
  3462. msgid "The pattern to use for ironing top surfaces."
  3463. msgstr "O padrão a usar quando se passa a ferro as superfícies superiores."
  3464. msgctxt "support_bottom_pattern description"
  3465. msgid "The pattern with which the floors of the support are printed."
  3466. msgstr "O padrão com o qual as bases do suporte são impressas."
  3467. msgctxt "support_interface_pattern description"
  3468. msgid "The pattern with which the interface of the support with the model is printed."
  3469. msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa."
  3470. msgctxt "support_roof_pattern description"
  3471. msgid "The pattern with which the roofs of the support are printed."
  3472. msgstr "O padrão com o qual o teto do suporte é impresso."
  3473. msgctxt "z_seam_position description"
  3474. msgid "The position near where to start printing each part in a layer."
  3475. msgstr "A posição perto da qual se inicia a impressão de cada parte em uma camada."
  3476. msgctxt "support_tree_angle_slow description"
  3477. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  3478. msgstr "O ângulo preferido para os galhos, quando eles não têm que evitar o modelo. Use um ângulo menor para torná-los mais verticais e estáveis. Use um ângulo maior para que os galhos se mesclem mais rapidamente."
  3479. msgctxt "support_tree_rest_preference description"
  3480. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  3481. msgstr "O posicionamento preferido das estruturas de suporte.Se as estruturas não puderem ser colocadas na localização escolhida, serão colocadas em outro lugar, mesmo que seja no modelo."
  3482. msgctxt "jerk_layer_0 description"
  3483. msgid "The print maximum instantaneous velocity change for the initial layer."
  3484. msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial."
  3485. msgctxt "machine_shape description"
  3486. msgid "The shape of the build plate without taking unprintable areas into account."
  3487. msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração."
  3488. msgctxt "machine_head_with_fans_polygon description"
  3489. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  3490. msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas."
  3491. msgctxt "cross_infill_pocket_size description"
  3492. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3493. msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando."
  3494. msgctxt "coasting_min_volume description"
  3495. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  3496. msgstr "O menor volume que um caminho de extrusão deve apresentar antes que lhe seja permitido desengrenar. Para caminhos de extrusão menores, menos pressão é criada dentro do hotend e o volume de desengrenagem é redimensionado linearmente. Este valor deve sempre ser maior que o Volume de Desengrenagem."
  3497. msgctxt "machine_nozzle_cool_down_speed description"
  3498. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3499. msgstr "Velocidade (°C/s) pela qual o bico resfria tirada pela média na janela de temperaturas normais de impressão e temperatura de espera."
  3500. msgctxt "machine_nozzle_heat_up_speed description"
  3501. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3502. msgstr "Velocidade (°C/s) pela qual o bico aquece tirada pela média na janela de temperaturas normais de impressão e temperatura de espera."
  3503. msgctxt "speed_wall_x description"
  3504. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  3505. msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento."
  3506. msgctxt "bridge_skin_speed description"
  3507. msgid "The speed at which bridge skin regions are printed."
  3508. msgstr "A velocidade com a qual regiões de contorno de ponte são impressas."
  3509. msgctxt "speed_infill description"
  3510. msgid "The speed at which infill is printed."
  3511. msgstr "Velocidade em que se imprime o preenchimento."
  3512. msgctxt "speed_print description"
  3513. msgid "The speed at which printing happens."
  3514. msgstr "Velocidade em que se realiza a impressão."
  3515. msgctxt "raft_base_speed description"
  3516. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3517. msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto."
  3518. msgctxt "bridge_wall_speed description"
  3519. msgid "The speed at which the bridge walls are printed."
  3520. msgstr "A velocidade com a qual as paredes de ponte são impressas."
  3521. msgctxt "cool_fan_speed_0 description"
  3522. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  3523. msgstr "A velocidade em que as ventoinhas giram no início da impressão. Em camadas subsequentes a velocidade da ventoinha é gradualmente aumentada até a camada correspondente ao ajuste 'Velocidade Regular da Ventoinha na Altura'."
  3524. msgctxt "cool_fan_speed_min description"
  3525. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  3526. msgstr "Velocidade em que as ventoinhas giram antes de dispararem o limite. Quando uma camada imprime mais rapidamente que o limite de tempo, a velocidade de ventoinha aumenta gradualmente até a velocidade máxima."
  3527. msgctxt "cool_fan_speed_max description"
  3528. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  3529. msgstr "Velocidade em que as ventoinhas giram no tempo mínimo de camada. A velocidade da ventoinha gradualmente aumenta da regular até a máxima quando o limite é atingido."
  3530. msgctxt "retraction_prime_speed description"
  3531. msgid "The speed at which the filament is primed during a retraction move."
  3532. msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração."
  3533. msgctxt "wipe_retraction_prime_speed description"
  3534. msgid "The speed at which the filament is primed during a wipe retraction move."
  3535. msgstr "A velocidade com que o filamento é purgado durante um movimento de retração de limpeza."
  3536. msgctxt "switch_extruder_prime_speed description"
  3537. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3538. msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico."
  3539. msgctxt "retraction_speed description"
  3540. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3541. msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração."
  3542. msgctxt "wipe_retraction_speed description"
  3543. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3544. msgstr "A velocidade com que o filamento é retraído e purgado durante um movimento de retração de limpeza."
  3545. msgctxt "switch_extruder_retraction_speed description"
  3546. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3547. msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico."
  3548. msgctxt "retraction_retract_speed description"
  3549. msgid "The speed at which the filament is retracted during a retraction move."
  3550. msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração."
  3551. msgctxt "wipe_retraction_retract_speed description"
  3552. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3553. msgstr "A velocidade com que o filamento é retraído durante um movimento de retração de limpeza."
  3554. msgctxt "switch_extruder_retraction_speeds description"
  3555. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  3556. msgstr "A velocidade em que o filamento é retraído. Uma velocidade de retração mais alta funciona melhor, mas uma velocidade muito alta pode levar a desgaste do filamento."
  3557. msgctxt "speed_support_bottom description"
  3558. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  3559. msgstr "A velocidade em que a base do suporte é impressa. Imprimi-la em velocidade mais baixa pode melhorar a aderência do suporte no topo da superfície."
  3560. msgctxt "speed_support_infill description"
  3561. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3562. msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade."
  3563. msgctxt "raft_interface_speed description"
  3564. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3565. msgstr "A velocidade em que a camada intermediária do raft é impressa. Esta deve ser impressa devagar, já que o volume de material saindo do bico é bem alto."
  3566. msgctxt "speed_wall_0 description"
  3567. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  3568. msgstr "A velocidade em que as paredes mais externas são impressas. Imprimir a parede mais externa a uma velocidade menor melhora a qualidade final do contorno. No entanto, ter uma diferença muito grande entre a velocidade da parede interna e a velocidade da parede externa afetará a qualidade de forma negativa."
  3569. msgctxt "speed_prime_tower description"
  3570. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  3571. msgstr "A velocidade em que a torre de purga é impressa. Imprimir a torre de purga mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é subótima."
  3572. msgctxt "cool_fan_speed description"
  3573. msgid "The speed at which the print cooling fans spin."
  3574. msgstr "A velocidade em que as ventoinhas giram."
  3575. msgctxt "raft_speed description"
  3576. msgid "The speed at which the raft is printed."
  3577. msgstr "A velocidade em que o raft é impresso."
  3578. msgctxt "speed_support_interface description"
  3579. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3580. msgstr "A velocidade com que os tetos e bases do suporte são impressos. Imprimi-los em velocidades mais baixas pode melhorar a qualidade de seções pendentes."
  3581. msgctxt "speed_support_roof description"
  3582. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3583. msgstr "A velocidade em que os tetos dos suportes são impressos. Imprimi-los em velocidade mais baixas pode melhorar a qualidade de seções pendentes."
  3584. msgctxt "skirt_brim_speed description"
  3585. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  3586. msgstr "Velocidade em que o Brim (Bainha) e Skirt (Saia) são impressos. Normalmente isto é feito na velocidade de camada inicial, mas você pode querer imprimi-los em velocidade diferente."
  3587. msgctxt "speed_support description"
  3588. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  3589. msgstr "A velocidade em que a estrutura de suporte é impressa. Imprimir o suporte a velocidades mais altas pode reduzir bastante o tempo de impressão. A qualidade de superfície das estruturas de suporte não é importante já que são removidas após a impressão."
  3590. msgctxt "raft_surface_speed description"
  3591. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  3592. msgstr "A velocidade em que as camadas superiores do raft são impressas. Elas devem ser impressas um pouco mais devagar, de modo que o bico possa lentamente alisar as linhas de superfície adjacentes."
  3593. msgctxt "speed_wall_x_roofing description"
  3594. msgid "The speed at which the top surface inner walls are printed."
  3595. msgstr "A velocidade com que as paredes internas da superfície superior são impressas."
  3596. msgctxt "speed_wall_0_roofing description"
  3597. msgid "The speed at which the top surface outermost wall is printed."
  3598. msgstr "A velocidade com que a parede mais externa da superfície superior é impressa."
  3599. msgctxt "speed_z_hop description"
  3600. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  3601. msgstr "A velocidade em que o movimento Z vertical é feito para os saltos Z. Tipicamente mais baixa que a velocidade de impressão já que mover a mesa de impressão ou eixos da máquina é mais difícil."
  3602. msgctxt "speed_wall description"
  3603. msgid "The speed at which the walls are printed."
  3604. msgstr "Velocidade em que se imprimem as paredes."
  3605. msgctxt "speed_ironing description"
  3606. msgid "The speed at which to pass over the top surface."
  3607. msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior."
  3608. msgctxt "material_break_speed description"
  3609. msgid "The speed at which to retract the filament in order to break it cleanly."
  3610. msgstr "A velocidade com a qual retrair o filamento para que se destaque completamente."
  3611. msgctxt "speed_roofing description"
  3612. msgid "The speed at which top surface skin layers are printed."
  3613. msgstr "A velocidade com que as camadas superiores são impressas."
  3614. msgctxt "speed_topbottom description"
  3615. msgid "The speed at which top/bottom layers are printed."
  3616. msgstr "Velocidade em que as camadas superiores e inferiores são impressas."
  3617. msgctxt "speed_travel description"
  3618. msgid "The speed at which travel moves are made."
  3619. msgstr "Velocidade em que ocorrem os movimentos de percurso."
  3620. msgctxt "coasting_speed description"
  3621. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  3622. msgstr "A velocidade pela qual se mover durante a desengrenagem, relativa à velocidade do caminho de extrusão. Um valor ligeiramente menor que 100% é sugerido, já que durante a desengrenagem a pressão dentro do hotend cai."
  3623. msgctxt "speed_layer_0 description"
  3624. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  3625. msgstr "A velocidade para a camada inicial. Um valor menor é sugerido para melhorar aderência à mesa de impressão. Não afeta as estruturas de aderência à mesa de impressão como o brim e o raft."
  3626. msgctxt "speed_print_layer_0 description"
  3627. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3628. msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão."
  3629. msgctxt "speed_travel_layer_0 description"
  3630. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  3631. msgstr "A velocidade dos percursos da camada inicial. Um valor mais baixo que o normal é aconselhado para prevenir o puxão de partes impressas da mesa de impressão. O valor deste ajuste pode ser automaticamente calculado do raio entre a Velocidade de Percurso e a Velocidade de Impressão."
  3632. msgctxt "material_break_temperature description"
  3633. msgid "The temperature at which the filament is broken for a clean break."
  3634. msgstr "A temperatura em que o filamento é destacado completamente."
  3635. msgctxt "build_volume_temperature description"
  3636. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3637. msgstr "A temperatura do ambiente em que imprimir. Se este valor for 0, a temperatura de volume de impressão não será ajustada."
  3638. msgctxt "material_standby_temperature description"
  3639. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3640. msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão."
  3641. msgctxt "material_final_print_temperature description"
  3642. msgid "The temperature to which to already start cooling down just before the end of printing."
  3643. msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão."
  3644. msgctxt "material_print_temperature_layer_0 description"
  3645. msgid "The temperature used for printing the first layer."
  3646. msgstr "A temperatura usada para imprimir a primeira camada."
  3647. msgctxt "material_print_temperature description"
  3648. msgid "The temperature used for printing."
  3649. msgstr "A temperatura usada para impressão."
  3650. msgctxt "material_bed_temperature_layer_0 description"
  3651. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  3652. msgstr "A temperatura usada para a plataforma aquecida de impressão na primeira camada. Se for 0, a plataforma de impressão não será aquecida durante a primeira camada."
  3653. msgctxt "material_bed_temperature description"
  3654. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3655. msgstr "A temperatura usada para a plataforma aquecida de impressão. Se for 0, a plataforma de impressão não será aquecida."
  3656. msgctxt "material_break_preparation_temperature description"
  3657. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3658. msgstr "A temperatura usada para purgar material, deve ser grosso modo a temperatura de impressão mais alta possível."
  3659. msgctxt "bottom_thickness description"
  3660. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3661. msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores."
  3662. msgctxt "skin_edge_support_thickness description"
  3663. msgid "The thickness of the extra infill that supports skin edges."
  3664. msgstr "A espessura do preenchimento extra que suporta arestas de contorno."
  3665. msgctxt "support_interface_height description"
  3666. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3667. msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo."
  3668. msgctxt "support_bottom_height description"
  3669. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  3670. msgstr "A espessura das bases de suporte. Isto controla o número de camadas densas que são impressas no topo dos pontos do modelo em que o suporte se assenta."
  3671. msgctxt "support_roof_height description"
  3672. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  3673. msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta."
  3674. msgctxt "top_thickness description"
  3675. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3676. msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores."
  3677. msgctxt "top_bottom_thickness description"
  3678. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  3679. msgstr "A espessura das camadas superiores e inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores e inferiores."
  3680. msgctxt "wall_thickness description"
  3681. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3682. msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de filetes da parede."
  3683. msgctxt "infill_sparse_thickness description"
  3684. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3685. msgstr "A espessura por camada de material de preenchimento. Este valor deve sempre ser um múltiplo da altura de camada e se não for, é arredondado."
  3686. msgctxt "support_infill_sparse_thickness description"
  3687. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3688. msgstr "A espessura por camada do material de preenchimento de suporte. Este valor deve sempre ser um múltiplo da altura de camada e é arredondado."
  3689. msgctxt "machine_gcode_flavor description"
  3690. msgid "The type of g-code to be generated."
  3691. msgstr "O tipo de G-Code a ser gerado."
  3692. msgctxt "material_type description"
  3693. msgid "The type of material used."
  3694. msgstr "O tipo de material usado."
  3695. msgctxt "coasting_volume description"
  3696. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3697. msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo."
  3698. msgctxt "machine_width description"
  3699. msgid "The width (X-direction) of the printable area."
  3700. msgstr "A largura (direção X) da área imprimível."
  3701. msgctxt "support_brim_width description"
  3702. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  3703. msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra."
  3704. #, fuzzy
  3705. msgctxt "interlocking_beam_width description"
  3706. msgid "The width of the interlocking structure beams."
  3707. msgstr "A largura da torre de purga."
  3708. msgctxt "prime_tower_base_size description"
  3709. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3710. msgstr "A largura da base ou brim da torre de purga. Uma base maior melhora a aderência à mesa mas também reduz a área efetiva de impressão."
  3711. msgctxt "prime_tower_size description"
  3712. msgid "The width of the prime tower."
  3713. msgstr "A largura da torre de purga."
  3714. msgctxt "magic_fuzzy_skin_thickness description"
  3715. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3716. msgstr "A largura dentro da qual flutuar. É sugerido deixar este valor abaixo da largura da parede externa, já que as paredes internas não são alteradas pelo algoritmo."
  3717. msgctxt "retraction_extrusion_window description"
  3718. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  3719. msgstr "A janela em que a contagem de retrações máxima é válida. Este valor deve ser aproximadamente o mesmo que a distância de retração, de modo que efetivamente o número de vez que a retração passa pelo mesmo segmento de material é limitada."
  3720. msgctxt "prime_tower_position_x description"
  3721. msgid "The x coordinate of the position of the prime tower."
  3722. msgstr "A coordenada X da posição da torre de purga."
  3723. msgctxt "prime_tower_position_y description"
  3724. msgid "The y coordinate of the position of the prime tower."
  3725. msgstr "A coordenada Y da posição da torre de purga."
  3726. msgctxt "support_meshes_present description"
  3727. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3728. msgstr "Há malhas de suporte presentes na cena. Este ajuste é controlado pelo Cura."
  3729. msgctxt "bridge_wall_coast description"
  3730. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  3731. msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal."
  3732. msgctxt "raft_base_smoothing description"
  3733. msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3734. msgstr "Este ajuste controla quantos cantos internos no contorno da base do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo."
  3735. msgctxt "raft_interface_smoothing description"
  3736. msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3737. msgstr "Este ajuste controle quantos cantos internos no contorno do meio do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo."
  3738. msgctxt "raft_smoothing description"
  3739. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3740. msgstr "Este ajuste controla quanto os cantos internos do contorno do raft são arredondados. Esses cantos internos são convertidos em semicírculos com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que forem menores que o círculo equivalente."
  3741. msgctxt "raft_surface_smoothing description"
  3742. msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3743. msgstr "Este ajuste controle quantos cantos internos no contorno do topo do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo."
  3744. msgctxt "retraction_count_max description"
  3745. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  3746. msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento."
  3747. msgctxt "draft_shield_enabled description"
  3748. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  3749. msgstr "Isto criará uma parede em volta do modelo que aprisiona ar quente da mesa e protege contra fluxo de ar do exterior. Especialmente útil para materiais que sofrem bastante warp e impressoras 3D que não são cobertas."
  3750. msgctxt "support_tree_tip_diameter label"
  3751. msgid "Tip Diameter"
  3752. msgstr "Diâmetro da Ponta"
  3753. msgctxt "material_shrinkage_percentage_xy description"
  3754. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  3755. msgstr "Para compensar pelo encolhimento do material enquanto ele esfria, o modelo será ampliado por este fator na direção XY (horizontalmente)."
  3756. msgctxt "material_shrinkage_percentage_z description"
  3757. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  3758. msgstr "Para compensar pelo encolhimento do material enquanto esfria, o modelo será ampliado por este fator na direção Z (verticalmente)."
  3759. msgctxt "material_shrinkage_percentage description"
  3760. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3761. msgstr "Para compensar o encolhimento do material enquanto esfria, o modelo será redimensionado por este fator."
  3762. msgctxt "top_layers label"
  3763. msgid "Top Layers"
  3764. msgstr "Camadas Superiores"
  3765. msgctxt "top_skin_expand_distance label"
  3766. msgid "Top Skin Expand Distance"
  3767. msgstr "Distância de Expansão do Contorno Superior"
  3768. msgctxt "top_skin_preshrink label"
  3769. msgid "Top Skin Removal Width"
  3770. msgstr "Largura de Remoção do Contorno Superior"
  3771. msgctxt "acceleration_wall_x_roofing label"
  3772. msgid "Top Surface Inner Wall Acceleration"
  3773. msgstr "Aceleração da Parede Interna da Superfície Superior"
  3774. msgctxt "jerk_wall_x_roofing label"
  3775. msgid "Top Surface Inner Wall Jerk"
  3776. msgstr "Jerk da Parede Interna da Superfície Superior"
  3777. msgctxt "speed_wall_x_roofing label"
  3778. msgid "Top Surface Inner Wall Speed"
  3779. msgstr "Velocidade da Parede Interna da Superfície Superior"
  3780. msgctxt "wall_x_material_flow_roofing label"
  3781. msgid "Top Surface Inner Wall(s) Flow"
  3782. msgstr "Fluxo das Paredes Internas da Superfície Superior"
  3783. msgctxt "acceleration_wall_0_roofing label"
  3784. msgid "Top Surface Outer Wall Acceleration"
  3785. msgstr "Aceleração da Parede Externa da Superfície Superior"
  3786. msgctxt "wall_0_material_flow_roofing label"
  3787. msgid "Top Surface Outer Wall Flow"
  3788. msgstr "Fluxo da Parede Externa da Superfície Superior"
  3789. msgctxt "jerk_wall_0_roofing label"
  3790. msgid "Top Surface Outer Wall Jerk"
  3791. msgstr "Jerk da Parede Externa da Superfície Superior"
  3792. msgctxt "speed_wall_0_roofing label"
  3793. msgid "Top Surface Outer Wall Speed"
  3794. msgstr "Velocidade da Parede Externa da Superfície Superior"
  3795. msgctxt "acceleration_roofing label"
  3796. msgid "Top Surface Skin Acceleration"
  3797. msgstr "Aceleração da Superfície Superior"
  3798. msgctxt "roofing_extruder_nr label"
  3799. msgid "Top Surface Skin Extruder"
  3800. msgstr "Extrusor da Superfície Superior"
  3801. msgctxt "roofing_material_flow label"
  3802. msgid "Top Surface Skin Flow"
  3803. msgstr "Fluxo do Contorno da Superfície Superior"
  3804. msgctxt "jerk_roofing label"
  3805. msgid "Top Surface Skin Jerk"
  3806. msgstr "Jerk da Superfície Superior"
  3807. msgctxt "roofing_layer_count label"
  3808. msgid "Top Surface Skin Layers"
  3809. msgstr "Camadas da Superfície Superior"
  3810. msgctxt "roofing_angles label"
  3811. msgid "Top Surface Skin Line Directions"
  3812. msgstr "Direções dos Filetes da Superfície Superior"
  3813. msgctxt "roofing_line_width label"
  3814. msgid "Top Surface Skin Line Width"
  3815. msgstr "Largura de extrusão da Superfície Superior"
  3816. msgctxt "roofing_pattern label"
  3817. msgid "Top Surface Skin Pattern"
  3818. msgstr "Padrão da Superfície Superior"
  3819. msgctxt "speed_roofing label"
  3820. msgid "Top Surface Skin Speed"
  3821. msgstr "Velocidade da Superfície Superior"
  3822. msgctxt "top_thickness label"
  3823. msgid "Top Thickness"
  3824. msgstr "Espessura Superior"
  3825. msgctxt "max_skin_angle_for_expansion description"
  3826. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  3827. msgstr "Superfícies superiores e/ou inferiores de seu objeto com um ângulo maior que este ajuste não terão seu contorno expandido. Isto permite evitar a expansão de áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e não causará expansão no contorno, enquanto que um ângulo de 90° é vertical e causará expansão em todo o contorno."
  3828. msgctxt "top_bottom description"
  3829. msgid "Top/Bottom"
  3830. msgstr "Superior/Inferior"
  3831. msgctxt "top_bottom label"
  3832. msgid "Top/Bottom"
  3833. msgstr "Superior/Inferior"
  3834. msgctxt "acceleration_topbottom label"
  3835. msgid "Top/Bottom Acceleration"
  3836. msgstr "Aceleração Superior/Inferior"
  3837. msgctxt "top_bottom_extruder_nr label"
  3838. msgid "Top/Bottom Extruder"
  3839. msgstr "Extrusor Superior/Inferior"
  3840. msgctxt "skin_material_flow label"
  3841. msgid "Top/Bottom Flow"
  3842. msgstr "Fluxo de Topo/Base"
  3843. msgctxt "jerk_topbottom label"
  3844. msgid "Top/Bottom Jerk"
  3845. msgstr "Jerk Superior/Inferior"
  3846. msgctxt "skin_angles label"
  3847. msgid "Top/Bottom Line Directions"
  3848. msgstr "Direções de Linha Superior/Inferior"
  3849. msgctxt "skin_line_width label"
  3850. msgid "Top/Bottom Line Width"
  3851. msgstr "Largura de Extrusão Superior/Inferior"
  3852. msgctxt "top_bottom_pattern label"
  3853. msgid "Top/Bottom Pattern"
  3854. msgstr "Padrão Superior/Inferior"
  3855. msgctxt "speed_topbottom label"
  3856. msgid "Top/Bottom Speed"
  3857. msgstr "Velocidade Superior/Inferior"
  3858. msgctxt "top_bottom_thickness label"
  3859. msgid "Top/Bottom Thickness"
  3860. msgstr "Espessura Superior/Inferior"
  3861. msgctxt "support_type option buildplate"
  3862. msgid "Touching Buildplate"
  3863. msgstr "Tocando a Mesa"
  3864. msgctxt "support_tower_diameter label"
  3865. msgid "Tower Diameter"
  3866. msgstr "Diâmetro da Torre"
  3867. msgctxt "support_tower_roof_angle label"
  3868. msgid "Tower Roof Angle"
  3869. msgstr "Ângulo do Teto da Torre"
  3870. msgctxt "mesh_rotation_matrix description"
  3871. msgid "Transformation matrix to be applied to the model when loading it from file."
  3872. msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo."
  3873. msgctxt "travel label"
  3874. msgid "Travel"
  3875. msgstr "Percurso"
  3876. msgctxt "acceleration_travel label"
  3877. msgid "Travel Acceleration"
  3878. msgstr "Aceleração de Percurso"
  3879. msgctxt "travel_avoid_distance label"
  3880. msgid "Travel Avoid Distance"
  3881. msgstr "Distância de Desvio de Percurso"
  3882. msgctxt "jerk_travel label"
  3883. msgid "Travel Jerk"
  3884. msgstr "Jerk de Percurso"
  3885. msgctxt "speed_travel label"
  3886. msgid "Travel Speed"
  3887. msgstr "Velocidade de Percurso"
  3888. msgctxt "magic_mesh_surface_mode description"
  3889. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  3890. msgstr "Tratar o modelo como apenas superfície, um volume ou volumes com superfícies soltas. O modo de impressão normal somente imprime volumes fechados. O modo \"superfície\" imprime uma parede única traçando a superfície da malha sem nenhun preenchimento e sem paredes superiores ou inferiores. O modo \"ambos\" imprime volumes fechados como o modo normal e volumes abertos como superfícies."
  3891. msgctxt "support_structure option tree"
  3892. msgid "Tree"
  3893. msgstr "Árvore"
  3894. msgctxt "infill_pattern option trihexagon"
  3895. msgid "Tri-Hexagon"
  3896. msgstr "Tri-Hexágono"
  3897. msgctxt "infill_pattern option triangles"
  3898. msgid "Triangles"
  3899. msgstr "Triângulos"
  3900. msgctxt "support_bottom_pattern option triangles"
  3901. msgid "Triangles"
  3902. msgstr "Triângulo"
  3903. msgctxt "support_interface_pattern option triangles"
  3904. msgid "Triangles"
  3905. msgstr "Triângulos"
  3906. msgctxt "support_pattern option triangles"
  3907. msgid "Triangles"
  3908. msgstr "Triângulos"
  3909. msgctxt "support_roof_pattern option triangles"
  3910. msgid "Triangles"
  3911. msgstr "Triângulos"
  3912. msgctxt "support_tree_max_diameter label"
  3913. msgid "Trunk Diameter"
  3914. msgstr "Diâmetro do Tronco"
  3915. msgctxt "machine_gcode_flavor option UltiGCode"
  3916. msgid "Ultimaker 2"
  3917. msgstr "Ultimaker 2"
  3918. msgctxt "meshfix_union_all label"
  3919. msgid "Union Overlapping Volumes"
  3920. msgstr "Volumes de Sobreposição de Uniões"
  3921. msgctxt "bridge_wall_min_length description"
  3922. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  3923. msgstr "Paredes não-suportadas mais curtas que esta quantia serão impressas usando ajustes normais de paredes. Paredes mais longas serão impressas com os ajustes de parede de ponte."
  3924. msgctxt "adaptive_layer_height_enabled label"
  3925. msgid "Use Adaptive Layers"
  3926. msgstr "Usar Camadas Adaptativas"
  3927. msgctxt "support_use_towers label"
  3928. msgid "Use Towers"
  3929. msgstr "Usar Torres"
  3930. msgctxt "acceleration_travel_enabled description"
  3931. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  3932. msgstr "Usar taxa de aceleração separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de aceleração da linha impressa em seu destino."
  3933. msgctxt "jerk_travel_enabled description"
  3934. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  3935. msgstr "Usar taxa de jerk separada para movimentos de percurso. Se desabilitado, os movimentos de percurso usarão o valor de jerk da linha impressa em seu destino."
  3936. msgctxt "relative_extrusion description"
  3937. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  3938. msgstr "Usar extrusão relativa ao invés de extrusão absoluta. Passos de extrusão relativos no G-Code tornam o pós-processamento mais fácil. No entanto, isso não é suportado por todas as impressoras e pode produzir pequenos desvios na quantidade de material depositado comparado a passos de extrusão absolutos. Independente deste ajuste, o modo de extrusão sempre será ajustado para absoluto antes que qualquer script G-Code seja processado."
  3939. msgctxt "support_use_towers description"
  3940. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  3941. msgstr "Usa torres especializadas como suporte de pequenas seções pendentes. Essas torres têm um diâmetro mais largo que a região que elas suportam. Perto da seção pendente, o diâmetro das torres aumenta, formando um 'teto'."
  3942. msgctxt "infill_mesh description"
  3943. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  3944. msgstr "Utilize esta malha para modificar o preenchimento de outras malhas com as quais ela se sobrepõe. Substitui regiões de preenchimento de outras malhas com regiões desta malha. É sugerido que se imprima com somente uma parede e sem paredes superiores e inferiores para esta malha."
  3945. msgctxt "support_mesh description"
  3946. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3947. msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte."
  3948. msgctxt "anti_overhang_mesh description"
  3949. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  3950. msgstr "Use esta malha para especificar onde nenhuma parte do modelo deverá ser detectada como seção Pendente e por conseguinte não elegível a receber suporte. Com esta malha sobreposta a um modelo, você poderá marcar onde ele não deverá receber suporte."
  3951. msgctxt "z_seam_type option back"
  3952. msgid "User Specified"
  3953. msgstr "Especificado pelo Usuário"
  3954. msgctxt "material_shrinkage_percentage_z label"
  3955. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3956. msgstr "Compensação de Fator de Encolhimento Vertical"
  3957. msgctxt "slicing_tolerance description"
  3958. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  3959. msgstr "Tolerância vertical das camadas fatiadas. Os contornos de uma camada são normalmente gerados se tomando seções cruzadas pelo meio de cada espessura de camada (Meio). Alternativamente, cada camada pode ter as áreas que caem fora do volume por toda a espessura da camada (Exclusivo) ou a camada pode ter as áreas que caem dentro de qualquer lugar dentro da camada (Inclusivo). Inclusivo retém mais detalhes, Exclusivo proporciona o melhor encaixe e Meio permanece mais próximo da superfície original."
  3960. msgctxt "material_bed_temp_wait label"
  3961. msgid "Wait for Build Plate Heatup"
  3962. msgstr "Aguardar o Aquecimento da Mesa"
  3963. msgctxt "material_print_temp_wait label"
  3964. msgid "Wait for Nozzle Heatup"
  3965. msgstr "Aguardar Aquecimento do Bico"
  3966. msgctxt "acceleration_wall label"
  3967. msgid "Wall Acceleration"
  3968. msgstr "Aceleração da Parede"
  3969. msgctxt "wall_distribution_count label"
  3970. msgid "Wall Distribution Count"
  3971. msgstr "Contagem de Distribuição de Parede"
  3972. msgctxt "wall_extruder_nr label"
  3973. msgid "Wall Extruder"
  3974. msgstr "Extrusor das Paredes"
  3975. msgctxt "wall_material_flow label"
  3976. msgid "Wall Flow"
  3977. msgstr "Fluxo de Parede"
  3978. msgctxt "jerk_wall label"
  3979. msgid "Wall Jerk"
  3980. msgstr "Jerk da Parede"
  3981. msgctxt "wall_line_count label"
  3982. msgid "Wall Line Count"
  3983. msgstr "Número de Filetes da Parede"
  3984. msgctxt "wall_line_width label"
  3985. msgid "Wall Line Width"
  3986. msgstr "Largura de Extrusão da Parede"
  3987. msgctxt "inset_direction label"
  3988. msgid "Wall Ordering"
  3989. msgstr "Ordem de Parede"
  3990. msgctxt "speed_wall label"
  3991. msgid "Wall Speed"
  3992. msgstr "Velocidade da Parede"
  3993. msgctxt "wall_thickness label"
  3994. msgid "Wall Thickness"
  3995. msgstr "Espessura de Parede"
  3996. msgctxt "wall_transition_length label"
  3997. msgid "Wall Transition Length"
  3998. msgstr "Comprimento de Transição de Parede"
  3999. msgctxt "wall_transition_filter_distance label"
  4000. msgid "Wall Transitioning Filter Distance"
  4001. msgstr "Distância de Filtro da Transição de Parede"
  4002. msgctxt "wall_transition_filter_deviation label"
  4003. msgid "Wall Transitioning Filter Margin"
  4004. msgstr "Margem de Filtro de Transição de Parede"
  4005. msgctxt "wall_transition_angle label"
  4006. msgid "Wall Transitioning Threshold Angle"
  4007. msgstr "Ângulo-Limite de Transição de Parede"
  4008. msgctxt "shell label"
  4009. msgid "Walls"
  4010. msgstr "Paredes"
  4011. msgctxt "wall_overhang_angle description"
  4012. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4013. msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes."
  4014. msgctxt "meshfix_fluid_motion_enabled description"
  4015. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  4016. msgstr "Quando habilitado os percursos do extrusor são corrigidos para impressora com planejadores de movimento suavizado. Pequenos movimentos que se desviariam da direção geral do percurso do extrusor são suavizados para melhorar os movimentos fluidos."
  4017. msgctxt "infill_enable_travel_optimization description"
  4018. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4019. msgstr "Quando habilitado, a ordem em que os filetes de preenchimento são impressos é otimizada para reduzir a distância percorrida. A redução em tempo de percurso conseguida depende bastante do modelo sendo fatiado, do padrão de preenchimento, da densidade, etc. Note que, para alguns modelos que têm áreas bem pequenas de preenchimento, o tempo de fatiamento pode ser aumentado bastante."
  4020. msgctxt "support_fan_enable description"
  4021. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  4022. msgstr "Quando habilitado, a velocidade da ventoinha de resfriamento é alterada para as regiões de contorno imediatamente acima do suporte."
  4023. msgctxt "z_seam_relative description"
  4024. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  4025. msgstr "Quando habilitado, as coordenadas da costura Z são relativas ao centro de cada parte. Quando desabilitado, as coordenadas definem uma posição absoluta na plataforma de impressão."
  4026. msgctxt "retraction_combing_max_distance description"
  4027. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  4028. msgstr "Quando maior que zero, os movimentos de percurso de combing que forem maiores que essa distância usarão retração. Se deixado em zero, não haverá máximo e os movimentos de combing não usarão retração."
  4029. msgctxt "hole_xy_offset_max_diameter description"
  4030. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  4031. msgstr "Quando maior que zero, a Expansão Horizontal de Furo é gradualmente aplicada em pequenos furos (eles são mais expandidos). Quanto é deixada em zero, a Expansão Horizontal de Furo será aplicada a todos os furos. Furos maiores que o Diâmetro Máximo de Expansão Horizontal de Furo não serão expandidos."
  4032. msgctxt "hole_xy_offset description"
  4033. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  4034. msgstr "Quando maior que zero, a Expansão Original do Furo designa a distância de compensação aplicada a todos os furos em cada camada. Valores positivos aumentam os tamanhos dos furos, valores negativos reduzem os tamanhos dos furos. Quando este ajuste é habilitado, ele pode ser ainda aprimorado com o ajuste 'Diâmetro Máximo da Expansão Horizontal de Furo'."
  4035. msgctxt "bridge_skin_material_flow description"
  4036. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4037. msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor."
  4038. msgctxt "bridge_wall_material_flow description"
  4039. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4040. msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor."
  4041. msgctxt "bridge_skin_material_flow_2 description"
  4042. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4043. msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor."
  4044. msgctxt "bridge_skin_material_flow_3 description"
  4045. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4046. msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor."
  4047. msgctxt "cool_lift_head description"
  4048. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  4049. msgstr "Quando a velocidade mínima acaba sendo usada por causa do tempo mínimo de camada, levanta a cabeça para longe da impressão e espera tempo extra até que o tempo mínimo de camada seja alcançado."
  4050. msgctxt "skin_no_small_gaps_heuristic description"
  4051. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  4052. msgstr "Quando o modelo tem pequenas lacunas verticais de apenas umas poucas camadas, normalmente há contorno em volta dessas camadas no espaço estreito. Habilite este ajuste para não gerar o contorno se a lacuna vertical for bem pequena. Isso melhora o tempo de impressão e fatiamento, mas tecnicamente deixa preenchimento exposto ao ar."
  4053. msgctxt "wall_transition_angle description"
  4054. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  4055. msgstr "Quanto criar transições entre números de paredes pares e ímpares. A forma de cunha em ângulo maior que este ajuste não terá transições e nenhuma parede será impressa no centro para preencher o espaço remanescente. Reduzir este ajuste faz reduzir o número e comprimento das paredes centrais, mas pode deixar vãos ou sobre-extrudar."
  4056. msgctxt "wall_transition_length description"
  4057. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  4058. msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede."
  4059. msgctxt "wipe_hop_enable description"
  4060. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  4061. msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma."
  4062. msgctxt "retraction_hop_enabled description"
  4063. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  4064. msgstr "Sempre que uma retração é feita, sobe-se um pouco em Z para criar um espaço entre o bico e a impressão. Isso evita que o bico fique batendo nas impressões durante o percurso, reduzindo a chance de chutar a peça para fora da mesa."
  4065. msgctxt "support_xy_overrides_z description"
  4066. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  4067. msgstr "Decide se a distância XY substitui a distância Z de suporte ou vice-versa. Quando XY substitui Z a distância XY pode afastar o suporte do modelo, influenciando a distância Z real até a seção pendente. Podemos desabilitar isso não aplicando a distância XY em volta das seções pendentes."
  4068. msgctxt "machine_center_is_zero description"
  4069. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  4070. msgstr "Decide se as coordenadas X/Y da posição zero da impressão estão no centro da área imprimível (senão, estarão no canto inferior esquerdo)."
  4071. msgctxt "machine_endstop_positive_direction_x description"
  4072. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  4073. msgstr "Decide se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)."
  4074. msgctxt "machine_endstop_positive_direction_y description"
  4075. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  4076. msgstr "Decide se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)."
  4077. msgctxt "machine_endstop_positive_direction_z description"
  4078. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  4079. msgstr "Decide se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)."
  4080. msgctxt "machine_extruders_share_heater description"
  4081. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  4082. msgstr "Decide se os extrusores usam um único aquecedor combinado ou cada um tem o seu respectivo aquecedor."
  4083. msgctxt "machine_extruders_share_nozzle description"
  4084. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  4085. msgstr "Decide se os extrusores compartilham um único bico ao invés de cada extrusor ter seu próprio. Quando colocado em verdadeiro, é esperado que o script g-code de início da impressora configure todos os extrusores em um estado inicial de retração que seja conhecido e mutuamente compatível (ou zero ou filamento não retraído); neste caso, o status de retração inicial é descrito, por extrusor, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'."
  4086. msgctxt "machine_heated_bed description"
  4087. msgid "Whether the machine has a heated build plate present."
  4088. msgstr "Decide se a plataforma de impressão pode ser aquecida."
  4089. msgctxt "machine_heated_build_volume description"
  4090. msgid "Whether the machine is able to stabilize the build volume temperature."
  4091. msgstr "Decide se a máquina consegue estabilizar a temperatura do volume de construção."
  4092. msgctxt "center_object description"
  4093. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  4094. msgstr "Decide se o objeto deve ser centralizado no meio da plataforma de impressão, ao invés de usar o sistema de coordenadas em que o objeto foi salvo."
  4095. msgctxt "machine_nozzle_temp_enabled description"
  4096. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  4097. msgstr "Decide se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura."
  4098. msgctxt "material_bed_temp_prepend description"
  4099. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  4100. msgstr "Decide se haverá a inclusão de comandos de temperatura da mesa de impressão no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura da mesa, a interface do Cura automaticamente desabilitará este ajuste."
  4101. msgctxt "material_print_temp_prepend description"
  4102. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  4103. msgstr "Decide se haverá a inclusão de comandos de temperatura do bico no início do G-Code. Quando o G-Code Inicial já contiver comandos de temperatura do bico, a interface do Cura automaticamente desabilitará este ajuste."
  4104. msgctxt "clean_between_layers description"
  4105. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  4106. msgstr "Decide se haverá inclusão de G-Code de limpeza de bico entre camadas (no máximo 1 por camada). Habilitar este ajuste pode influenciar o comportamento de retração na mudança de camada. Por favor use ajustes de Retração de Limpeza para controlar retração nas camadas onde o script de limpeza estará atuando."
  4107. msgctxt "material_bed_temp_wait description"
  4108. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  4109. msgstr "Decide se haverá inserção do comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início."
  4110. msgctxt "prime_blob_enable description"
  4111. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  4112. msgstr "Decide se é preciso descarregar o filamento com uma massa de purga antes de imprimir. Ligar este ajuste assegurará que o extrusor tenha material pronto no bico antes de imprimir. Imprimir um Brim ou Skirt pode funcionar como purga também, em cujo caso desligar esse ajuste faz ganhar algum tempo."
  4113. msgctxt "print_sequence description"
  4114. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  4115. msgstr "Decide se os modelos devem ser impressos todos de uma vez só, uma camada por vez, ou se se deve esperar a cada modelo terminar antes de prosseguir para o próximo. O modo um de cada vez só é possível se a) somente um extrusor estiver habilitado e b) todos os modelos estiverem separados de modo que a cabeça de impressão pode se mover entre todos e todos os modelos estiverem em altura mais baixa que a distância entre o bico e os eixos X e Y."
  4116. msgctxt "machine_show_variants description"
  4117. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  4118. msgstr "Decide se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados."
  4119. msgctxt "machine_firmware_retract description"
  4120. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  4121. msgstr "Decide se serão usados comandos de retração de firmware (G10/G11) ao invés da propriedade E dos comandos G1 para retrair o material."
  4122. msgctxt "material_print_temp_wait description"
  4123. msgid "Whether to wait until the nozzle temperature is reached at the start."
  4124. msgstr "Decide se haverá a inserção do comando para aguardar que a temperatura-alvo do bico estabilize no início."
  4125. msgctxt "infill_line_width description"
  4126. msgid "Width of a single infill line."
  4127. msgstr "Largura de um filete de preenchimento."
  4128. msgctxt "support_interface_line_width description"
  4129. msgid "Width of a single line of support roof or floor."
  4130. msgstr "Largura de um filete usado no teto ou base do suporte."
  4131. msgctxt "roofing_line_width description"
  4132. msgid "Width of a single line of the areas at the top of the print."
  4133. msgstr "Largura de extrusão de um filete das áreas no topo da peça."
  4134. msgctxt "line_width description"
  4135. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  4136. msgstr "Largura de uma única linha de filete extrudado. Geralmente, a largura da linha corresponde ao diâmetro do bico. No entanto, reduzir ligeiramente este valor pode produzir impressões melhores."
  4137. msgctxt "prime_tower_line_width description"
  4138. msgid "Width of a single prime tower line."
  4139. msgstr "Largura de um filete usado na torre de purga."
  4140. msgctxt "skirt_brim_line_width description"
  4141. msgid "Width of a single skirt or brim line."
  4142. msgstr "Largura de um filete do brim (bainha) ou skirt (saia)."
  4143. msgctxt "support_bottom_line_width description"
  4144. msgid "Width of a single support floor line."
  4145. msgstr "Largura de um filete usado na base do suporte."
  4146. msgctxt "support_roof_line_width description"
  4147. msgid "Width of a single support roof line."
  4148. msgstr "Largura de um filete usado no teto do suporte."
  4149. msgctxt "support_line_width description"
  4150. msgid "Width of a single support structure line."
  4151. msgstr "Largura de um filete usado nas estruturas de suporte."
  4152. msgctxt "skin_line_width description"
  4153. msgid "Width of a single top/bottom line."
  4154. msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos."
  4155. msgctxt "wall_line_width_x description"
  4156. msgid "Width of a single wall line for all wall lines except the outermost one."
  4157. msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)."
  4158. msgctxt "wall_line_width description"
  4159. msgid "Width of a single wall line."
  4160. msgstr "Largura de um filete que faz parte de uma parede."
  4161. msgctxt "raft_base_line_width description"
  4162. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  4163. msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa."
  4164. msgctxt "raft_interface_line_width description"
  4165. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  4166. msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa."
  4167. msgctxt "raft_surface_line_width description"
  4168. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  4169. msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso."
  4170. msgctxt "wall_line_width_0 description"
  4171. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  4172. msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos."
  4173. msgctxt "min_bead_width description"
  4174. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  4175. msgstr "Largura da parede que substituirá detalhes finos (de acordo com o Tamanho Mínimo de Detalhe) do modelo. Se a Largura Mínima de Filete de Parede for mais fina que a espessura do detalhe, a parede se tornará tão espessa quanto o próprio detalhe."
  4176. msgctxt "wipe_brush_pos_x label"
  4177. msgid "Wipe Brush X Position"
  4178. msgstr "Posição X da Varredura de Limpeza"
  4179. msgctxt "wipe_hop_speed label"
  4180. msgid "Wipe Hop Speed"
  4181. msgstr "Velocidade do Salto de Limpeza"
  4182. msgctxt "prime_tower_wipe_enabled label"
  4183. msgid "Wipe Inactive Nozzle on Prime Tower"
  4184. msgstr "Limpar Bico Inativo na Torre de Purga"
  4185. msgctxt "wipe_move_distance label"
  4186. msgid "Wipe Move Distance"
  4187. msgstr "Distância de Movimentação da Limpeza"
  4188. msgctxt "clean_between_layers label"
  4189. msgid "Wipe Nozzle Between Layers"
  4190. msgstr "Limpar o Bico Entre Camadas"
  4191. msgctxt "wipe_pause label"
  4192. msgid "Wipe Pause"
  4193. msgstr "Pausa de Limpeza"
  4194. msgctxt "wipe_repeat_count label"
  4195. msgid "Wipe Repeat Count"
  4196. msgstr "Contagem de Repetições de Limpeza"
  4197. msgctxt "wipe_retraction_amount label"
  4198. msgid "Wipe Retraction Distance"
  4199. msgstr "Distância de Retração da Limpeza"
  4200. msgctxt "wipe_retraction_enable label"
  4201. msgid "Wipe Retraction Enable"
  4202. msgstr "Habilitar Retração de Limpeza"
  4203. msgctxt "wipe_retraction_extra_prime_amount label"
  4204. msgid "Wipe Retraction Extra Prime Amount"
  4205. msgstr "Quantidade Extra de Purga da Retração de Limpeza"
  4206. msgctxt "wipe_retraction_prime_speed label"
  4207. msgid "Wipe Retraction Prime Speed"
  4208. msgstr "Velocidade de Purga da Retração de Limpeza"
  4209. msgctxt "wipe_retraction_retract_speed label"
  4210. msgid "Wipe Retraction Retract Speed"
  4211. msgstr "Velocidade da Retração da Retração de Limpeza"
  4212. msgctxt "wipe_retraction_speed label"
  4213. msgid "Wipe Retraction Speed"
  4214. msgstr "Velocidade da Retração de Limpeza"
  4215. msgctxt "wipe_hop_enable label"
  4216. msgid "Wipe Z Hop"
  4217. msgstr "Salto Z da Limpeza"
  4218. msgctxt "wipe_hop_amount label"
  4219. msgid "Wipe Z Hop Height"
  4220. msgstr "Altura do Salto Z da Limpeza"
  4221. msgctxt "retraction_combing option infill"
  4222. msgid "Within Infill"
  4223. msgstr "Dentro do Preenchimento"
  4224. msgctxt "machine_always_write_active_tool description"
  4225. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  4226. msgstr "Escreve a ferramenta ativa depois de enviar comandos de temperatura para a ferramenta inativa. Requerido para impressão de Extrusor Duplo com Smoothie ou outros firmwares com comandos modais de ferramenta."
  4227. msgctxt "machine_endstop_positive_direction_x label"
  4228. msgid "X Endstop in Positive Direction"
  4229. msgstr "Endstop X na Direção Positiva"
  4230. msgctxt "wipe_brush_pos_x description"
  4231. msgid "X location where wipe script will start."
  4232. msgstr "Localização X onde o script de limpeza iniciará."
  4233. msgctxt "support_xy_overrides_z option xy_overrides_z"
  4234. msgid "X/Y overrides Z"
  4235. msgstr "X/Y substitui Z"
  4236. msgctxt "machine_endstop_positive_direction_y label"
  4237. msgid "Y Endstop in Positive Direction"
  4238. msgstr "Endstop Y na Direção Positiva"
  4239. msgctxt "machine_endstop_positive_direction_z label"
  4240. msgid "Z Endstop in Positive Direction"
  4241. msgstr "Endstop Z na Direção Positiva"
  4242. msgctxt "retraction_hop_after_extruder_switch label"
  4243. msgid "Z Hop After Extruder Switch"
  4244. msgstr "Salto Z Após Troca de Extrusor"
  4245. msgctxt "retraction_hop_after_extruder_switch_height label"
  4246. msgid "Z Hop After Extruder Switch Height"
  4247. msgstr "Salto Z Após Troca de Altura do Extrusor"
  4248. msgctxt "retraction_hop label"
  4249. msgid "Z Hop Height"
  4250. msgstr "Altura do Salto Z"
  4251. msgctxt "retraction_hop_only_when_collides label"
  4252. msgid "Z Hop Only Over Printed Parts"
  4253. msgstr "Salto Z Somente Sobre Partes Impressas"
  4254. msgctxt "speed_z_hop label"
  4255. msgid "Z Hop Speed"
  4256. msgstr "Velocidade do Salto Z"
  4257. msgctxt "retraction_hop_enabled label"
  4258. msgid "Z Hop When Retracted"
  4259. msgstr "Salto Z Ao Retrair"
  4260. msgctxt "z_seam_type label"
  4261. msgid "Z Seam Alignment"
  4262. msgstr "Alinhamento da Costura em Z"
  4263. msgctxt "z_seam_position label"
  4264. msgid "Z Seam Position"
  4265. msgstr "Posição da Costura Z"
  4266. msgctxt "z_seam_relative label"
  4267. msgid "Z Seam Relative"
  4268. msgstr "Costura Z Relativa"
  4269. msgctxt "z_seam_x label"
  4270. msgid "Z Seam X"
  4271. msgstr "Coordenada X da Costura Z"
  4272. msgctxt "z_seam_y label"
  4273. msgid "Z Seam Y"
  4274. msgstr "Coordenada Y da Costura Z"
  4275. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4276. msgid "Z overrides X/Y"
  4277. msgstr "Z substitui X/Y"
  4278. msgctxt "infill_pattern option zigzag"
  4279. msgid "Zig Zag"
  4280. msgstr "Ziguezague"
  4281. msgctxt "ironing_pattern option zigzag"
  4282. msgid "Zig Zag"
  4283. msgstr "Ziguezague"
  4284. msgctxt "roofing_pattern option zigzag"
  4285. msgid "Zig Zag"
  4286. msgstr "Ziguezague"
  4287. msgctxt "support_bottom_pattern option zigzag"
  4288. msgid "Zig Zag"
  4289. msgstr "Ziguezague"
  4290. msgctxt "support_interface_pattern option zigzag"
  4291. msgid "Zig Zag"
  4292. msgstr "Ziguezague"
  4293. msgctxt "support_pattern option zigzag"
  4294. msgid "Zig Zag"
  4295. msgstr "Ziguezague"
  4296. msgctxt "support_roof_pattern option zigzag"
  4297. msgid "Zig Zag"
  4298. msgstr "Ziguezague"
  4299. msgctxt "top_bottom_pattern option zigzag"
  4300. msgid "Zig Zag"
  4301. msgstr "Ziguezague"
  4302. msgctxt "top_bottom_pattern_0 option zigzag"
  4303. msgid "Zig Zag"
  4304. msgstr "Ziguezague"
  4305. msgctxt "travel description"
  4306. msgid "travel"
  4307. msgstr "percurso"
  4308. #~ msgctxt "brim_inside_margin description"
  4309. #~ msgid "A part fully enclosed inside another part can generate an outer brim that touches the inside of the other part. This removes all brim within this distance from internal holes."
  4310. #~ msgstr "Uma peça completamente contida em outra peça pode gerar um brim externo que toca o interior da outra parte. Este ajuste remove todo o brim dentro desta distância dos buracos internos."
  4311. #~ msgctxt "user_defined_print_order_enabled description"
  4312. #~ msgid "Allows to order the object list to set the print sequence manually. First object from the list will be printed first."
  4313. #~ msgstr "Permite ordenar a lista de objetos para definir a sequência de impressão manualmente. O primeiro objeto da lista será impresso primeiro."
  4314. #~ msgctxt "brim_inside_margin label"
  4315. #~ msgid "Brim Inside Avoid Margin"
  4316. #~ msgstr "Brim Dentro da Margem a Evitar"
  4317. #~ msgctxt "brim_outside_only label"
  4318. #~ msgid "Brim Only on Outside"
  4319. #~ msgstr "Brim Somente Para Fora"
  4320. #~ msgctxt "gradual_flow_discretisation_step_size description"
  4321. #~ msgid "Duration of each step in the gradual flow change"
  4322. #~ msgstr "Duração de cada passo na alteração de fluxo gradual"
  4323. #~ msgctxt "gradual_flow_enabled description"
  4324. #~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
  4325. #~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para."
  4326. #~ msgctxt "reset_flow_duration description"
  4327. #~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
  4328. #~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso."
  4329. #~ msgctxt "gradual_flow_discretisation_step_size label"
  4330. #~ msgid "Gradual flow discretisation step size"
  4331. #~ msgstr "Tamanho de passo da discretização de fluxo gradual"
  4332. #~ msgctxt "gradual_flow_enabled label"
  4333. #~ msgid "Gradual flow enabled"
  4334. #~ msgstr "Fluxo gradual habilitado"
  4335. #~ msgctxt "max_flow_acceleration label"
  4336. #~ msgid "Gradual flow max acceleration"
  4337. #~ msgstr "Aceleração máxima do fluxo gradual"
  4338. #~ msgctxt "layer_0_max_flow_acceleration label"
  4339. #~ msgid "Initial layer max flow acceleration"
  4340. #~ msgstr "Aceleração máxima de fluxo da camada inicial"
  4341. #~ msgctxt "layer_0_z_overlap description"
  4342. #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  4343. #~ msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância."
  4344. #~ msgctxt "max_flow_acceleration description"
  4345. #~ msgid "Maximum acceleration for gradual flow changes"
  4346. #~ msgstr "Aceleração máxima para alterações de fluxo gradual"
  4347. #~ msgctxt "layer_0_max_flow_acceleration description"
  4348. #~ msgid "Minimum speed for gradual flow changes for the first layer"
  4349. #~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada"
  4350. #~ msgctxt "brim_outside_only description"
  4351. #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  4352. #~ msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa."
  4353. #~ msgctxt "reset_flow_duration label"
  4354. #~ msgid "Reset flow duration"
  4355. #~ msgstr "Duração de reset do fluxo"
  4356. #~ msgctxt "support_interface_skip_height label"
  4357. #~ msgid "Support Interface Resolution"
  4358. #~ msgstr "Resolução da Interface de Suporte"
  4359. #~ msgctxt "support_interface_skip_height description"
  4360. #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  4361. #~ msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte."