fdmprinter.def.json.po 271 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-03-29 08:36+0200\n"
  11. "PO-Revision-Date: 2018-04-23 05:20-0300\n"
  12. "Last-Translator: Cláudio Sampaio <patola@makerlinux.com.br>\n"
  13. "Language-Team: Cláudio Sampaio <patola@makerlinux.com.br>\n"
  14. "Language: pt_BR\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n > 1);\n"
  19. #: fdmprinter.def.json
  20. msgctxt "machine_settings label"
  21. msgid "Machine"
  22. msgstr "Máquina"
  23. #: fdmprinter.def.json
  24. msgctxt "machine_settings description"
  25. msgid "Machine specific settings"
  26. msgstr "Ajustes específicos da máquina"
  27. #: fdmprinter.def.json
  28. msgctxt "machine_name label"
  29. msgid "Machine Type"
  30. msgstr "Tipo de Máquina"
  31. #: fdmprinter.def.json
  32. msgctxt "machine_name description"
  33. msgid "The name of your 3D printer model."
  34. msgstr "Nome do seu modelo de impressora 3D."
  35. #: fdmprinter.def.json
  36. msgctxt "machine_show_variants label"
  37. msgid "Show Machine Variants"
  38. msgstr "Exibir Variantes de Máquina"
  39. #: fdmprinter.def.json
  40. msgctxt "machine_show_variants description"
  41. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  42. msgstr "Indique se deseja exibir as variantes desta máquina, que são descrita em arquivos .json separados."
  43. #: fdmprinter.def.json
  44. msgctxt "machine_start_gcode label"
  45. msgid "Start G-code"
  46. msgstr "G-Code Inicial"
  47. #: fdmprinter.def.json
  48. msgctxt "machine_start_gcode description"
  49. msgid ""
  50. "G-code commands to be executed at the very start - separated by \n"
  51. "."
  52. msgstr ""
  53. "Comandos G-Code a serem executados no início da impressão - separados por \n"
  54. "."
  55. #: fdmprinter.def.json
  56. msgctxt "machine_end_gcode label"
  57. msgid "End G-code"
  58. msgstr "G-Code Final"
  59. #: fdmprinter.def.json
  60. msgctxt "machine_end_gcode description"
  61. msgid ""
  62. "G-code commands to be executed at the very end - separated by \n"
  63. "."
  64. msgstr ""
  65. "Comandos G-Code a serem executados no final da impressão - separados por \n"
  66. "."
  67. #: fdmprinter.def.json
  68. msgctxt "material_guid label"
  69. msgid "Material GUID"
  70. msgstr "GUID do Material"
  71. #: fdmprinter.def.json
  72. msgctxt "material_guid description"
  73. msgid "GUID of the material. This is set automatically. "
  74. msgstr "GUID do material. Este valor é ajustado automaticamente. "
  75. #: fdmprinter.def.json
  76. msgctxt "material_bed_temp_wait label"
  77. msgid "Wait for Build Plate Heatup"
  78. msgstr "Aguardar o Aquecimento da Mesa"
  79. #: fdmprinter.def.json
  80. msgctxt "material_bed_temp_wait description"
  81. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  82. msgstr "Indique se desejar inserir o comando para aguardar que a temperatura-alvo da mesa de impressão estabilize no início."
  83. #: fdmprinter.def.json
  84. msgctxt "material_print_temp_wait label"
  85. msgid "Wait for Nozzle Heatup"
  86. msgstr "Aguardar Aquecimento do Bico"
  87. #: fdmprinter.def.json
  88. msgctxt "material_print_temp_wait description"
  89. msgid "Whether to wait until the nozzle temperature is reached at the start."
  90. msgstr "Indique se desejar inserir o comando para aguardar que a temperatura-alvo do bico estabilize no início."
  91. #: fdmprinter.def.json
  92. msgctxt "material_print_temp_prepend label"
  93. msgid "Include Material Temperatures"
  94. msgstr "Incluir Temperaturas de Material"
  95. #: fdmprinter.def.json
  96. msgctxt "material_print_temp_prepend description"
  97. 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."
  98. msgstr "Indique se deseja incluir 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."
  99. #: fdmprinter.def.json
  100. msgctxt "material_bed_temp_prepend label"
  101. msgid "Include Build Plate Temperature"
  102. msgstr "Incluir Temperatura da Mesa"
  103. #: fdmprinter.def.json
  104. msgctxt "material_bed_temp_prepend description"
  105. 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."
  106. msgstr "Indique se deseja incluir 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."
  107. #: fdmprinter.def.json
  108. msgctxt "machine_width label"
  109. msgid "Machine Width"
  110. msgstr "Largura da Mesa"
  111. #: fdmprinter.def.json
  112. msgctxt "machine_width description"
  113. msgid "The width (X-direction) of the printable area."
  114. msgstr "A largura (direção X) da área imprimível."
  115. #: fdmprinter.def.json
  116. msgctxt "machine_depth label"
  117. msgid "Machine Depth"
  118. msgstr "Profundidade da Mesa"
  119. #: fdmprinter.def.json
  120. msgctxt "machine_depth description"
  121. msgid "The depth (Y-direction) of the printable area."
  122. msgstr "A profundidade (direção Y) da área imprimível."
  123. #: fdmprinter.def.json
  124. msgctxt "machine_shape label"
  125. msgid "Build Plate Shape"
  126. msgstr "Forma da Mesa"
  127. #: fdmprinter.def.json
  128. msgctxt "machine_shape description"
  129. msgid "The shape of the build plate without taking unprintable areas into account."
  130. msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração."
  131. #: fdmprinter.def.json
  132. msgctxt "machine_shape option rectangular"
  133. msgid "Rectangular"
  134. msgstr "Retangular"
  135. #: fdmprinter.def.json
  136. msgctxt "machine_shape option elliptic"
  137. msgid "Elliptic"
  138. msgstr "Elíptica"
  139. #: fdmprinter.def.json
  140. msgctxt "machine_buildplate_type label"
  141. msgid "Build Plate Material"
  142. msgstr "Material da Plataforma de Impressão"
  143. #: fdmprinter.def.json
  144. msgctxt "machine_buildplate_type description"
  145. msgid "The material of the build plate installed on the printer."
  146. msgstr "O material da plataforma de impressão presente na impressora."
  147. #: fdmprinter.def.json
  148. msgctxt "machine_buildplate_type option glass"
  149. msgid "Glass"
  150. msgstr "Vidro"
  151. #: fdmprinter.def.json
  152. msgctxt "machine_buildplate_type option aluminum"
  153. msgid "Aluminum"
  154. msgstr "Alumínio"
  155. #: fdmprinter.def.json
  156. msgctxt "machine_height label"
  157. msgid "Machine Height"
  158. msgstr "Altura do Volume"
  159. #: fdmprinter.def.json
  160. msgctxt "machine_height description"
  161. msgid "The height (Z-direction) of the printable area."
  162. msgstr "A altura (direção Z) do volume imprimível."
  163. #: fdmprinter.def.json
  164. msgctxt "machine_heated_bed label"
  165. msgid "Has Heated Build Plate"
  166. msgstr "Tem Mesa Aquecida"
  167. #: fdmprinter.def.json
  168. msgctxt "machine_heated_bed description"
  169. msgid "Whether the machine has a heated build plate present."
  170. msgstr "Indica se a plataforma de impressão pode ser aquecida."
  171. #: fdmprinter.def.json
  172. msgctxt "machine_center_is_zero label"
  173. msgid "Is Center Origin"
  174. msgstr "Origem é no Centro"
  175. #: fdmprinter.def.json
  176. msgctxt "machine_center_is_zero description"
  177. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  178. msgstr "Indica 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)."
  179. #: fdmprinter.def.json
  180. msgctxt "machine_extruder_count label"
  181. msgid "Number of Extruders"
  182. msgstr "Número de extrusores"
  183. #: fdmprinter.def.json
  184. msgctxt "machine_extruder_count description"
  185. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  186. msgstr "Número de extrusores. Um extrusor é a combinação de um alimentador/tracionador, opcional tubo de filamento guiado e o hotend."
  187. #: fdmprinter.def.json
  188. msgctxt "extruders_enabled_count label"
  189. msgid "Number of Extruders that are enabled"
  190. msgstr "Número de Extrusores habilitados"
  191. #: fdmprinter.def.json
  192. msgctxt "extruders_enabled_count description"
  193. msgid "Number of extruder trains that are enabled; automatically set in software"
  194. msgstr "O número de carros extrusores que estão habilitados; automaticamente ajustado em software"
  195. #: fdmprinter.def.json
  196. msgctxt "machine_nozzle_tip_outer_diameter label"
  197. msgid "Outer nozzle diameter"
  198. msgstr "Diametro externo do bico"
  199. #: fdmprinter.def.json
  200. msgctxt "machine_nozzle_tip_outer_diameter description"
  201. msgid "The outer diameter of the tip of the nozzle."
  202. msgstr "Diâmetro exterior do bico (a ponta do hotend)."
  203. #: fdmprinter.def.json
  204. msgctxt "machine_nozzle_head_distance label"
  205. msgid "Nozzle length"
  206. msgstr "Comprimento do bico"
  207. #: fdmprinter.def.json
  208. msgctxt "machine_nozzle_head_distance description"
  209. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  210. msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão."
  211. #: fdmprinter.def.json
  212. msgctxt "machine_nozzle_expansion_angle label"
  213. msgid "Nozzle angle"
  214. msgstr "Ângulo do bico"
  215. #: fdmprinter.def.json
  216. msgctxt "machine_nozzle_expansion_angle description"
  217. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  218. msgstr "Ângulo entre o plano horizontal e a parte cônica logo acima da ponta do bico."
  219. #: fdmprinter.def.json
  220. msgctxt "machine_heat_zone_length label"
  221. msgid "Heat zone length"
  222. msgstr "Comprimento da zona de aquecimento"
  223. #: fdmprinter.def.json
  224. msgctxt "machine_heat_zone_length description"
  225. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  226. msgstr "Distância da ponta do bico, em que calor do bico é transferido para o filamento."
  227. #: fdmprinter.def.json
  228. msgctxt "machine_filament_park_distance label"
  229. msgid "Filament Park Distance"
  230. msgstr "Distância de Descanso do Filamento"
  231. #: fdmprinter.def.json
  232. msgctxt "machine_filament_park_distance description"
  233. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  234. msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado."
  235. #: fdmprinter.def.json
  236. msgctxt "machine_nozzle_temp_enabled label"
  237. msgid "Enable Nozzle Temperature Control"
  238. msgstr "Habilitar Controle de Temperatura do Bico"
  239. #: fdmprinter.def.json
  240. msgctxt "machine_nozzle_temp_enabled description"
  241. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  242. msgstr "Se a temperatura deve ser controlada pelo Cura. Desligue para controlar a temperatura do bico fora do Cura."
  243. #: fdmprinter.def.json
  244. msgctxt "machine_nozzle_heat_up_speed label"
  245. msgid "Heat up speed"
  246. msgstr "Velocidade de aquecimento"
  247. #: fdmprinter.def.json
  248. msgctxt "machine_nozzle_heat_up_speed description"
  249. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  250. 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."
  251. #: fdmprinter.def.json
  252. msgctxt "machine_nozzle_cool_down_speed label"
  253. msgid "Cool down speed"
  254. msgstr "Velocidade de resfriamento"
  255. #: fdmprinter.def.json
  256. msgctxt "machine_nozzle_cool_down_speed description"
  257. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  258. 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."
  259. #: fdmprinter.def.json
  260. msgctxt "machine_min_cool_heat_time_window label"
  261. msgid "Minimal Time Standby Temperature"
  262. msgstr "Tempo Mínima em Temperatura de Espera"
  263. #: fdmprinter.def.json
  264. msgctxt "machine_min_cool_heat_time_window description"
  265. 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."
  266. 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."
  267. #: fdmprinter.def.json
  268. msgctxt "machine_gcode_flavor label"
  269. msgid "G-code flavour"
  270. msgstr "Sabor de G-Code"
  271. #: fdmprinter.def.json
  272. msgctxt "machine_gcode_flavor description"
  273. msgid "The type of g-code to be generated."
  274. msgstr "O tipo de G-Code a ser gerado."
  275. #: fdmprinter.def.json
  276. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  277. msgid "Marlin"
  278. msgstr "Marlin"
  279. #: fdmprinter.def.json
  280. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  281. msgid "Marlin (Volumetric)"
  282. msgstr "Marlin (Volumétrico)"
  283. #: fdmprinter.def.json
  284. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  285. msgid "RepRap"
  286. msgstr "RepRap"
  287. #: fdmprinter.def.json
  288. msgctxt "machine_gcode_flavor option UltiGCode"
  289. msgid "Ultimaker 2"
  290. msgstr "Ultimaker 2"
  291. #: fdmprinter.def.json
  292. msgctxt "machine_gcode_flavor option Griffin"
  293. msgid "Griffin"
  294. msgstr "Griffin"
  295. #: fdmprinter.def.json
  296. msgctxt "machine_gcode_flavor option Makerbot"
  297. msgid "Makerbot"
  298. msgstr "Makerbot"
  299. #: fdmprinter.def.json
  300. msgctxt "machine_gcode_flavor option BFB"
  301. msgid "Bits from Bytes"
  302. msgstr "Bits from Bytes"
  303. #: fdmprinter.def.json
  304. msgctxt "machine_gcode_flavor option MACH3"
  305. msgid "Mach3"
  306. msgstr "Mach3"
  307. #: fdmprinter.def.json
  308. msgctxt "machine_gcode_flavor option Repetier"
  309. msgid "Repetier"
  310. msgstr "Repetier"
  311. #: fdmprinter.def.json
  312. msgctxt "machine_firmware_retract label"
  313. msgid "Firmware Retraction"
  314. msgstr "Retração de Firmware"
  315. #: fdmprinter.def.json
  316. msgctxt "machine_firmware_retract description"
  317. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  318. msgstr "Usar ou não comandos de retração de firmware (G10/G11) ao invés de usar a propriedade E dos comandos G1 para retrair o material."
  319. #: fdmprinter.def.json
  320. msgctxt "machine_disallowed_areas label"
  321. msgid "Disallowed areas"
  322. msgstr "Áreas proibidas"
  323. #: fdmprinter.def.json
  324. msgctxt "machine_disallowed_areas description"
  325. msgid "A list of polygons with areas the print head is not allowed to enter."
  326. msgstr "Uma lista de polígonos com áreas em que a cabeça de impressão é proibida de entrar."
  327. #: fdmprinter.def.json
  328. msgctxt "nozzle_disallowed_areas label"
  329. msgid "Nozzle Disallowed Areas"
  330. msgstr "Áreas Proibidas para o Bico"
  331. #: fdmprinter.def.json
  332. msgctxt "nozzle_disallowed_areas description"
  333. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  334. msgstr "Uma lista de polígonos com áreas em que o bico é proibido de entrar."
  335. #: fdmprinter.def.json
  336. msgctxt "machine_head_polygon label"
  337. msgid "Machine head polygon"
  338. msgstr "Polígono da cabeça da máquina"
  339. #: fdmprinter.def.json
  340. msgctxt "machine_head_polygon description"
  341. msgid "A 2D silhouette of the print head (fan caps excluded)."
  342. msgstr "Uma silhueta 2D da cabeça de impressão (sem os suportes de ventoinhas)."
  343. #: fdmprinter.def.json
  344. msgctxt "machine_head_with_fans_polygon label"
  345. msgid "Machine head & Fan polygon"
  346. msgstr "Polígono da cabeça da máquina e da ventoinha"
  347. #: fdmprinter.def.json
  348. msgctxt "machine_head_with_fans_polygon description"
  349. msgid "A 2D silhouette of the print head (fan caps included)."
  350. msgstr "Silhueta da cabeça de impressão com os suportes de ventoinhas inclusos."
  351. #: fdmprinter.def.json
  352. msgctxt "gantry_height label"
  353. msgid "Gantry height"
  354. msgstr "Altura do eixo"
  355. #: fdmprinter.def.json
  356. msgctxt "gantry_height description"
  357. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  358. msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)."
  359. #: fdmprinter.def.json
  360. msgctxt "machine_nozzle_id label"
  361. msgid "Nozzle ID"
  362. msgstr "ID do Bico"
  363. #: fdmprinter.def.json
  364. msgctxt "machine_nozzle_id description"
  365. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  366. msgstr "O identificador do bico para o carro extrusor, tais como \"AA 0.4\" ou \"BB 0.8\""
  367. #: fdmprinter.def.json
  368. msgctxt "machine_nozzle_size label"
  369. msgid "Nozzle Diameter"
  370. msgstr "Diâmetro do bico"
  371. #: fdmprinter.def.json
  372. msgctxt "machine_nozzle_size description"
  373. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  374. msgstr "O diâmetro interior do bico (o orifício). Altere este ajuste quanto estiver usando um tamanho de bico fora do padrão."
  375. #: fdmprinter.def.json
  376. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  377. msgid "Offset With Extruder"
  378. msgstr "Deslocamento do Extrusor"
  379. #: fdmprinter.def.json
  380. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  381. msgid "Apply the extruder offset to the coordinate system."
  382. msgstr "Aplicar o deslocamento do extrusor ao sistema de coordenadas."
  383. #: fdmprinter.def.json
  384. msgctxt "extruder_prime_pos_z label"
  385. msgid "Extruder Prime Z Position"
  386. msgstr "Posição Z de Purga do Extrusor"
  387. #: fdmprinter.def.json
  388. msgctxt "extruder_prime_pos_z description"
  389. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  390. msgstr "Coordenada Z da posição onde o bico faz a purga no início da impressão."
  391. #: fdmprinter.def.json
  392. msgctxt "extruder_prime_pos_abs label"
  393. msgid "Absolute Extruder Prime Position"
  394. msgstr "Posição Absoluta de Purga do Extrusor"
  395. #: fdmprinter.def.json
  396. msgctxt "extruder_prime_pos_abs description"
  397. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  398. msgstr "Faz a posição de purga do extrusor absoluta ao invés de relativa à última posição conhecida da cabeça."
  399. #: fdmprinter.def.json
  400. msgctxt "machine_max_feedrate_x label"
  401. msgid "Maximum Speed X"
  402. msgstr "Velocidade Máxima em X"
  403. #: fdmprinter.def.json
  404. msgctxt "machine_max_feedrate_x description"
  405. msgid "The maximum speed for the motor of the X-direction."
  406. msgstr "A velocidade máxima para o motor da impressora na direção X."
  407. #: fdmprinter.def.json
  408. msgctxt "machine_max_feedrate_y label"
  409. msgid "Maximum Speed Y"
  410. msgstr "Velocidade Máxima em Y"
  411. #: fdmprinter.def.json
  412. msgctxt "machine_max_feedrate_y description"
  413. msgid "The maximum speed for the motor of the Y-direction."
  414. msgstr "A velocidade máxima para o motor da impressora na direção Y."
  415. #: fdmprinter.def.json
  416. msgctxt "machine_max_feedrate_z label"
  417. msgid "Maximum Speed Z"
  418. msgstr "Velocidade Máxima em Z"
  419. #: fdmprinter.def.json
  420. msgctxt "machine_max_feedrate_z description"
  421. msgid "The maximum speed for the motor of the Z-direction."
  422. msgstr "A velocidade máxima para o motor da impressora na direção Z."
  423. #: fdmprinter.def.json
  424. msgctxt "machine_max_feedrate_e label"
  425. msgid "Maximum Feedrate"
  426. msgstr "Velocidade Máxima de Alimentação"
  427. #: fdmprinter.def.json
  428. msgctxt "machine_max_feedrate_e description"
  429. msgid "The maximum speed of the filament."
  430. msgstr "A velocidade máxima de entrada de filamento no hotend."
  431. #: fdmprinter.def.json
  432. msgctxt "machine_max_acceleration_x label"
  433. msgid "Maximum Acceleration X"
  434. msgstr "Aceleração Máxima em X"
  435. #: fdmprinter.def.json
  436. msgctxt "machine_max_acceleration_x description"
  437. msgid "Maximum acceleration for the motor of the X-direction"
  438. msgstr "A aceleração máxima para o motor da impressora na direção X."
  439. #: fdmprinter.def.json
  440. msgctxt "machine_max_acceleration_y label"
  441. msgid "Maximum Acceleration Y"
  442. msgstr "Aceleração Máxima em Y"
  443. #: fdmprinter.def.json
  444. msgctxt "machine_max_acceleration_y description"
  445. msgid "Maximum acceleration for the motor of the Y-direction."
  446. msgstr "A aceleração máxima para o motor da impressora na direção Y."
  447. #: fdmprinter.def.json
  448. msgctxt "machine_max_acceleration_z label"
  449. msgid "Maximum Acceleration Z"
  450. msgstr "Aceleração Máxima em Z"
  451. #: fdmprinter.def.json
  452. msgctxt "machine_max_acceleration_z description"
  453. msgid "Maximum acceleration for the motor of the Z-direction."
  454. msgstr "A aceleração máxima para o motor da impressora na direção Z."
  455. #: fdmprinter.def.json
  456. msgctxt "machine_max_acceleration_e label"
  457. msgid "Maximum Filament Acceleration"
  458. msgstr "Aceleração Máxima do Filamento"
  459. #: fdmprinter.def.json
  460. msgctxt "machine_max_acceleration_e description"
  461. msgid "Maximum acceleration for the motor of the filament."
  462. msgstr "Aceleração máxima para a entrada de filamento no hotend."
  463. #: fdmprinter.def.json
  464. msgctxt "machine_acceleration label"
  465. msgid "Default Acceleration"
  466. msgstr "Aceleração Default"
  467. #: fdmprinter.def.json
  468. msgctxt "machine_acceleration description"
  469. msgid "The default acceleration of print head movement."
  470. msgstr "A aceleração default a ser usada nos eixos para o movimento da cabeça de impressão."
  471. #: fdmprinter.def.json
  472. msgctxt "machine_max_jerk_xy label"
  473. msgid "Default X-Y Jerk"
  474. msgstr "Jerk Default nos eixos X-Y"
  475. #: fdmprinter.def.json
  476. msgctxt "machine_max_jerk_xy description"
  477. msgid "Default jerk for movement in the horizontal plane."
  478. msgstr "O valor default de jerk para movimentos no plano horizontal"
  479. #: fdmprinter.def.json
  480. msgctxt "machine_max_jerk_z label"
  481. msgid "Default Z Jerk"
  482. msgstr "O Jerk Default em Z"
  483. #: fdmprinter.def.json
  484. msgctxt "machine_max_jerk_z description"
  485. msgid "Default jerk for the motor of the Z-direction."
  486. msgstr "O valor default de jerk para movimento na direção Z."
  487. #: fdmprinter.def.json
  488. msgctxt "machine_max_jerk_e label"
  489. msgid "Default Filament Jerk"
  490. msgstr "Jerk Default do Filamento"
  491. #: fdmprinter.def.json
  492. msgctxt "machine_max_jerk_e description"
  493. msgid "Default jerk for the motor of the filament."
  494. msgstr "O valor default de jerk para movimentação do filamento."
  495. #: fdmprinter.def.json
  496. msgctxt "machine_steps_per_mm_x label"
  497. msgid "Steps per Millimeter (X)"
  498. msgstr "Passos por Milímetro (X)"
  499. #: fdmprinter.def.json
  500. msgctxt "machine_steps_per_mm_x description"
  501. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  502. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção X."
  503. #: fdmprinter.def.json
  504. msgctxt "machine_steps_per_mm_y label"
  505. msgid "Steps per Millimeter (Y)"
  506. msgstr "Passos por Milímetro (Y)"
  507. #: fdmprinter.def.json
  508. msgctxt "machine_steps_per_mm_y description"
  509. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  510. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Y."
  511. #: fdmprinter.def.json
  512. msgctxt "machine_steps_per_mm_z label"
  513. msgid "Steps per Millimeter (Z)"
  514. msgstr "Passos por Milímetro (Z)"
  515. #: fdmprinter.def.json
  516. msgctxt "machine_steps_per_mm_z description"
  517. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  518. msgstr "Quantos passos do motor de passo resultarão em um milímetro de movimento na direção Z."
  519. #: fdmprinter.def.json
  520. msgctxt "machine_steps_per_mm_e label"
  521. msgid "Steps per Millimeter (E)"
  522. msgstr "Passos por Milímetro (E)"
  523. #: fdmprinter.def.json
  524. msgctxt "machine_steps_per_mm_e description"
  525. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  526. msgstr "Quantos passos do motor de passo resultarão em um milímetro de extrusão."
  527. #: fdmprinter.def.json
  528. msgctxt "machine_endstop_positive_direction_x label"
  529. msgid "X Endstop in Positive Direction"
  530. msgstr "Endstop X na Direção Positiva"
  531. #: fdmprinter.def.json
  532. msgctxt "machine_endstop_positive_direction_x description"
  533. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  534. msgstr "Se o endstop do eixo X está na direção positiva (coordenada X alta) ou negativa (coordenada X baixa)."
  535. #: fdmprinter.def.json
  536. msgctxt "machine_endstop_positive_direction_y label"
  537. msgid "Y Endstop in Positive Direction"
  538. msgstr "Endstop Y na Direção Positiva"
  539. #: fdmprinter.def.json
  540. msgctxt "machine_endstop_positive_direction_y description"
  541. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  542. msgstr "Se o endstop do eixo Y está na direção positiva (coordenada Y alta) ou negativa (coordenada Y baixa)."
  543. #: fdmprinter.def.json
  544. msgctxt "machine_endstop_positive_direction_z label"
  545. msgid "Z Endstop in Positive Direction"
  546. msgstr "Endstop Z na Direção Positiva"
  547. #: fdmprinter.def.json
  548. msgctxt "machine_endstop_positive_direction_z description"
  549. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  550. msgstr "Se o endstop do eixo Z está na direção positiva (coordenada Z alta) ou negativa (coordenada Z baixa)."
  551. #: fdmprinter.def.json
  552. msgctxt "machine_minimum_feedrate label"
  553. msgid "Minimum Feedrate"
  554. msgstr "Velocidade Mínima de Alimentação"
  555. #: fdmprinter.def.json
  556. msgctxt "machine_minimum_feedrate description"
  557. msgid "The minimal movement speed of the print head."
  558. msgstr "Velocidade mínima de entrada de filamento no hotend."
  559. #: fdmprinter.def.json
  560. msgctxt "machine_feeder_wheel_diameter label"
  561. msgid "Feeder Wheel Diameter"
  562. msgstr "Diâmetro da Engrenagem de Alimentação"
  563. #: fdmprinter.def.json
  564. msgctxt "machine_feeder_wheel_diameter description"
  565. msgid "The diameter of the wheel that drives the material in the feeder."
  566. msgstr "O diâmetro da engrenagem que traciona o material no alimentador."
  567. #: fdmprinter.def.json
  568. msgctxt "resolution label"
  569. msgid "Quality"
  570. msgstr "Qualidade"
  571. #: fdmprinter.def.json
  572. msgctxt "resolution description"
  573. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  574. 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)"
  575. #: fdmprinter.def.json
  576. msgctxt "layer_height label"
  577. msgid "Layer Height"
  578. msgstr "Altura de Camada"
  579. #: fdmprinter.def.json
  580. msgctxt "layer_height description"
  581. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  582. 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."
  583. #: fdmprinter.def.json
  584. msgctxt "layer_height_0 label"
  585. msgid "Initial Layer Height"
  586. msgstr "Altura da Primeira Camada"
  587. #: fdmprinter.def.json
  588. msgctxt "layer_height_0 description"
  589. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  590. msgstr "A altura da camada inicial em mm. Uma camada inicial mais espessa faz a aderência à mesa de impressão ser maior."
  591. #: fdmprinter.def.json
  592. msgctxt "line_width label"
  593. msgid "Line Width"
  594. msgstr "Largura de Extrusão"
  595. #: fdmprinter.def.json
  596. msgctxt "line_width description"
  597. 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."
  598. 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."
  599. #: fdmprinter.def.json
  600. msgctxt "wall_line_width label"
  601. msgid "Wall Line Width"
  602. msgstr "Largura de Extrusão da Parede"
  603. #: fdmprinter.def.json
  604. msgctxt "wall_line_width description"
  605. msgid "Width of a single wall line."
  606. msgstr "Largura de um filete que faz parte de uma parede."
  607. #: fdmprinter.def.json
  608. msgctxt "wall_line_width_0 label"
  609. msgid "Outer Wall Line Width"
  610. msgstr "Largura de Extrusão da Parede Externa"
  611. #: fdmprinter.def.json
  612. msgctxt "wall_line_width_0 description"
  613. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  614. msgstr "Largura de Extrusão somente da parede mais externa do modelo. Diminuindo este valor, níveis de detalhes mais altos podem ser impressos."
  615. #: fdmprinter.def.json
  616. msgctxt "wall_line_width_x label"
  617. msgid "Inner Wall(s) Line Width"
  618. msgstr "Largura de Extrusão das Paredes Internas"
  619. #: fdmprinter.def.json
  620. msgctxt "wall_line_width_x description"
  621. msgid "Width of a single wall line for all wall lines except the outermost one."
  622. msgstr "Largura de extrusão das paredes internas (todas menos a mais externa)."
  623. #: fdmprinter.def.json
  624. msgctxt "skin_line_width label"
  625. msgid "Top/Bottom Line Width"
  626. msgstr "Largura de Extrusão Superior/Inferior"
  627. #: fdmprinter.def.json
  628. msgctxt "skin_line_width description"
  629. msgid "Width of a single top/bottom line."
  630. msgstr "Largura de extrusão dos filetes das paredes do topo e base dos modelos."
  631. #: fdmprinter.def.json
  632. msgctxt "infill_line_width label"
  633. msgid "Infill Line Width"
  634. msgstr "Largura de Extrusão do Preenchimento"
  635. #: fdmprinter.def.json
  636. msgctxt "infill_line_width description"
  637. msgid "Width of a single infill line."
  638. msgstr "Largura de um filete de preenchimento."
  639. #: fdmprinter.def.json
  640. msgctxt "skirt_brim_line_width label"
  641. msgid "Skirt/Brim Line Width"
  642. msgstr "Largura de Extrusão do Brim e Skirt"
  643. #: fdmprinter.def.json
  644. msgctxt "skirt_brim_line_width description"
  645. msgid "Width of a single skirt or brim line."
  646. msgstr "Largura de um filete do brim (bainha) ou skirt (saia)."
  647. #: fdmprinter.def.json
  648. msgctxt "support_line_width label"
  649. msgid "Support Line Width"
  650. msgstr "Largura de Extrusão do Suporte"
  651. #: fdmprinter.def.json
  652. msgctxt "support_line_width description"
  653. msgid "Width of a single support structure line."
  654. msgstr "Largura de um filete usado nas estruturas de suporte."
  655. #: fdmprinter.def.json
  656. msgctxt "support_interface_line_width label"
  657. msgid "Support Interface Line Width"
  658. msgstr "Largura de Extrusão da Interface do Suporte"
  659. #: fdmprinter.def.json
  660. msgctxt "support_interface_line_width description"
  661. msgid "Width of a single line of support roof or floor."
  662. msgstr "Largura de um filete usado no teto ou base do suporte."
  663. #: fdmprinter.def.json
  664. msgctxt "support_roof_line_width label"
  665. msgid "Support Roof Line Width"
  666. msgstr "Largura de Extrusão do Teto do Suporte"
  667. #: fdmprinter.def.json
  668. msgctxt "support_roof_line_width description"
  669. msgid "Width of a single support roof line."
  670. msgstr "Largura de um filete usado no teto do suporte."
  671. #: fdmprinter.def.json
  672. msgctxt "support_bottom_line_width label"
  673. msgid "Support Floor Line Width"
  674. msgstr "Largura de Extrusão da Base do Suporte"
  675. #: fdmprinter.def.json
  676. msgctxt "support_bottom_line_width description"
  677. msgid "Width of a single support floor line."
  678. msgstr "Largura de um filete usado na base do suporte."
  679. #: fdmprinter.def.json
  680. msgctxt "prime_tower_line_width label"
  681. msgid "Prime Tower Line Width"
  682. msgstr "Largura de Extrusão da Torre de Purga"
  683. #: fdmprinter.def.json
  684. msgctxt "prime_tower_line_width description"
  685. msgid "Width of a single prime tower line."
  686. msgstr "Largura de um filete usado na torre de purga."
  687. #: fdmprinter.def.json
  688. msgctxt "initial_layer_line_width_factor label"
  689. msgid "Initial Layer Line Width"
  690. msgstr "Largura de Extrusão da Camada Inicial"
  691. #: fdmprinter.def.json
  692. msgctxt "initial_layer_line_width_factor description"
  693. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  694. msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa."
  695. #: fdmprinter.def.json
  696. msgctxt "shell label"
  697. msgid "Shell"
  698. msgstr "Perímetro"
  699. #: fdmprinter.def.json
  700. msgctxt "shell description"
  701. msgid "Shell"
  702. msgstr "Perímetro"
  703. #: fdmprinter.def.json
  704. msgctxt "wall_extruder_nr label"
  705. msgid "Wall Extruder"
  706. msgstr "Extrusor das Paredes"
  707. #: fdmprinter.def.json
  708. msgctxt "wall_extruder_nr description"
  709. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  710. msgstr "O carro extrusor usado para imprimir paredes. Este ajuste é usado em multi-extrusão."
  711. #: fdmprinter.def.json
  712. msgctxt "wall_0_extruder_nr label"
  713. msgid "Outer Wall Extruder"
  714. msgstr "Extrusor da Parede Externa"
  715. #: fdmprinter.def.json
  716. msgctxt "wall_0_extruder_nr description"
  717. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  718. msgstr "O carro extrusor usado para imprimir a parede externa. Este ajuste é usado em multi-extrusão."
  719. #: fdmprinter.def.json
  720. msgctxt "wall_x_extruder_nr label"
  721. msgid "Inner Wall Extruder"
  722. msgstr "Extrusor da Parede Interior"
  723. #: fdmprinter.def.json
  724. msgctxt "wall_x_extruder_nr description"
  725. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  726. msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão."
  727. #: fdmprinter.def.json
  728. msgctxt "wall_thickness label"
  729. msgid "Wall Thickness"
  730. msgstr "Espessura de Parede"
  731. #: fdmprinter.def.json
  732. msgctxt "wall_thickness description"
  733. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  734. 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."
  735. #: fdmprinter.def.json
  736. msgctxt "wall_line_count label"
  737. msgid "Wall Line Count"
  738. msgstr "Número de Filetes da Parede"
  739. #: fdmprinter.def.json
  740. msgctxt "wall_line_count description"
  741. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  742. msgstr "Número de filetes da parede. Quando calculado pela espessura de parede, este valor é arredondado para um inteiro."
  743. #: fdmprinter.def.json
  744. msgctxt "wall_0_wipe_dist label"
  745. msgid "Outer Wall Wipe Distance"
  746. msgstr "Distância de Varredura da Parede Externa"
  747. #: fdmprinter.def.json
  748. msgctxt "wall_0_wipe_dist description"
  749. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  750. msgstr "Distância do percurso inserido após a parede externa para esconder melhor a costura em Z."
  751. #: fdmprinter.def.json
  752. msgctxt "roofing_extruder_nr label"
  753. msgid "Top Surface Skin Extruder"
  754. msgstr "Extrusor da Superfície Superior"
  755. #: fdmprinter.def.json
  756. msgctxt "roofing_extruder_nr description"
  757. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  758. msgstr "O carro extrusor usado para imprimir a parte superior da peça. Este ajuste é usado em multi-extrusão."
  759. #: fdmprinter.def.json
  760. msgctxt "roofing_layer_count label"
  761. msgid "Top Surface Skin Layers"
  762. msgstr "Camadas da Superfície Superior"
  763. #: fdmprinter.def.json
  764. msgctxt "roofing_layer_count description"
  765. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  766. msgstr "O número de camadas da superfície superior. Geralmente somente uma camada é suficiente para gerar superfícies de alta qualidade."
  767. #: fdmprinter.def.json
  768. msgctxt "top_bottom_extruder_nr label"
  769. msgid "Top/Bottom Extruder"
  770. msgstr "Extrusor Superior/Inferior"
  771. #: fdmprinter.def.json
  772. msgctxt "top_bottom_extruder_nr description"
  773. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  774. msgstr "O carro extrusor usado para imprimir as paredes superiores e inferiores. Este ajuste é usado na multi-extrusão."
  775. #: fdmprinter.def.json
  776. msgctxt "top_bottom_thickness label"
  777. msgid "Top/Bottom Thickness"
  778. msgstr "Espessura Superior/Inferior"
  779. #: fdmprinter.def.json
  780. msgctxt "top_bottom_thickness description"
  781. 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."
  782. 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."
  783. #: fdmprinter.def.json
  784. msgctxt "top_thickness label"
  785. msgid "Top Thickness"
  786. msgstr "Espessura Superior"
  787. #: fdmprinter.def.json
  788. msgctxt "top_thickness description"
  789. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  790. msgstr "A espessura das camadas superiores da impressão. Este valor dividido pela altura de camada define o número de camadas superiores."
  791. #: fdmprinter.def.json
  792. msgctxt "top_layers label"
  793. msgid "Top Layers"
  794. msgstr "Camadas Superiores"
  795. #: fdmprinter.def.json
  796. msgctxt "top_layers description"
  797. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  798. msgstr "O número de camadas superiores. Quando calculado da espessura superior, este valor é arredondado para um inteiro."
  799. #: fdmprinter.def.json
  800. msgctxt "bottom_thickness label"
  801. msgid "Bottom Thickness"
  802. msgstr "Espessura Inferior"
  803. #: fdmprinter.def.json
  804. msgctxt "bottom_thickness description"
  805. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  806. msgstr "A espessura das camadas inferiores da impressão. Este valor dividido pela altura de camada define o número de camadas inferiores."
  807. #: fdmprinter.def.json
  808. msgctxt "bottom_layers label"
  809. msgid "Bottom Layers"
  810. msgstr "Camadas Inferiores"
  811. #: fdmprinter.def.json
  812. msgctxt "bottom_layers description"
  813. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  814. msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro."
  815. #: fdmprinter.def.json
  816. msgctxt "top_bottom_pattern label"
  817. msgid "Top/Bottom Pattern"
  818. msgstr "Padrão Superior/Inferior"
  819. #: fdmprinter.def.json
  820. msgctxt "top_bottom_pattern description"
  821. msgid "The pattern of the top/bottom layers."
  822. msgstr "Padrão ou Estampa das camadas superiores e inferiores."
  823. #: fdmprinter.def.json
  824. msgctxt "top_bottom_pattern option lines"
  825. msgid "Lines"
  826. msgstr "Linhas"
  827. #: fdmprinter.def.json
  828. msgctxt "top_bottom_pattern option concentric"
  829. msgid "Concentric"
  830. msgstr "Concêntrico"
  831. #: fdmprinter.def.json
  832. msgctxt "top_bottom_pattern option zigzag"
  833. msgid "Zig Zag"
  834. msgstr "Ziguezague"
  835. #: fdmprinter.def.json
  836. msgctxt "top_bottom_pattern_0 label"
  837. msgid "Bottom Pattern Initial Layer"
  838. msgstr "Camada Inicial do Padrão da Base"
  839. #: fdmprinter.def.json
  840. msgctxt "top_bottom_pattern_0 description"
  841. msgid "The pattern on the bottom of the print on the first layer."
  842. msgstr "O padrão na base da impressão na primeira camada."
  843. #: fdmprinter.def.json
  844. msgctxt "top_bottom_pattern_0 option lines"
  845. msgid "Lines"
  846. msgstr "Linhas"
  847. #: fdmprinter.def.json
  848. msgctxt "top_bottom_pattern_0 option concentric"
  849. msgid "Concentric"
  850. msgstr "Concêntrico"
  851. #: fdmprinter.def.json
  852. msgctxt "top_bottom_pattern_0 option zigzag"
  853. msgid "Zig Zag"
  854. msgstr "Ziguezague"
  855. #: fdmprinter.def.json
  856. msgctxt "skin_angles label"
  857. msgid "Top/Bottom Line Directions"
  858. msgstr "Direções de Linha Superior/Inferior"
  859. #: fdmprinter.def.json
  860. msgctxt "skin_angles description"
  861. 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)."
  862. 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)."
  863. #: fdmprinter.def.json
  864. msgctxt "wall_0_inset label"
  865. msgid "Outer Wall Inset"
  866. msgstr "Penetração da Parede Externa"
  867. #: fdmprinter.def.json
  868. msgctxt "wall_0_inset description"
  869. 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."
  870. 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."
  871. #: fdmprinter.def.json
  872. msgctxt "optimize_wall_printing_order label"
  873. msgid "Optimize Wall Printing Order"
  874. msgstr "Otimizar Ordem de Impressão de Paredes"
  875. #: fdmprinter.def.json
  876. msgctxt "optimize_wall_printing_order description"
  877. 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."
  878. 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."
  879. #: fdmprinter.def.json
  880. msgctxt "outer_inset_first label"
  881. msgid "Outer Before Inner Walls"
  882. msgstr "Paredes exteriores antes das interiores"
  883. #: fdmprinter.def.json
  884. msgctxt "outer_inset_first description"
  885. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  886. msgstr "Imprime as paredes em ordem de fora para dentro quando habilitado. Isto pode ajudar a melhorar a acurácia dimensional e X e Y quando se usa um plástico de alta viscosidade como ABS; no entanto pode também diminuir a qualidade de impressão da superfície externa, especialmente em seções pendentes."
  887. #: fdmprinter.def.json
  888. msgctxt "alternate_extra_perimeter label"
  889. msgid "Alternate Extra Wall"
  890. msgstr "Alternar Parede Adicional"
  891. #: fdmprinter.def.json
  892. msgctxt "alternate_extra_perimeter description"
  893. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  894. 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."
  895. #: fdmprinter.def.json
  896. msgctxt "travel_compensate_overlapping_walls_enabled label"
  897. msgid "Compensate Wall Overlaps"
  898. msgstr "Compensar Sobreposições de Parede"
  899. #: fdmprinter.def.json
  900. msgctxt "travel_compensate_overlapping_walls_enabled description"
  901. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  902. msgstr "Compensa o fluxo para partes de uma parede sendo impressa onde já há outra parede."
  903. #: fdmprinter.def.json
  904. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  905. msgid "Compensate Outer Wall Overlaps"
  906. msgstr "Compensar Sobreposições de Parede Externa"
  907. #: fdmprinter.def.json
  908. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  909. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  910. msgstr "Compensa o fluxo para partes de uma parede externa sendo impressa onde já há outra parede."
  911. #: fdmprinter.def.json
  912. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  913. msgid "Compensate Inner Wall Overlaps"
  914. msgstr "Compensar Sobreposições da Parede Interna"
  915. #: fdmprinter.def.json
  916. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  917. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  918. msgstr "Compensa o fluxo para partes de uma parede interna sendo impressa onde já há outra parede."
  919. #: fdmprinter.def.json
  920. msgctxt "fill_perimeter_gaps label"
  921. msgid "Fill Gaps Between Walls"
  922. msgstr "Preenche Lacunas Entre Paredes"
  923. #: fdmprinter.def.json
  924. msgctxt "fill_perimeter_gaps description"
  925. msgid "Fills the gaps between walls where no walls fit."
  926. msgstr "Preenche as lacunas que ficam entre paredes quando paredes intermediárias não caberiam."
  927. #: fdmprinter.def.json
  928. msgctxt "fill_perimeter_gaps option nowhere"
  929. msgid "Nowhere"
  930. msgstr "Em lugar nenhum"
  931. #: fdmprinter.def.json
  932. msgctxt "fill_perimeter_gaps option everywhere"
  933. msgid "Everywhere"
  934. msgstr "Em todos os lugares"
  935. #: fdmprinter.def.json
  936. msgctxt "filter_out_tiny_gaps label"
  937. msgid "Filter Out Tiny Gaps"
  938. msgstr "Filtrar Pequenas Lacunas"
  939. #: fdmprinter.def.json
  940. msgctxt "filter_out_tiny_gaps description"
  941. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  942. msgstr "Filtrar (rempver) pequenas lacunas para reduzir bolhas no exterior do modelo."
  943. #: fdmprinter.def.json
  944. msgctxt "fill_outline_gaps label"
  945. msgid "Print Thin Walls"
  946. msgstr "Imprimir Paredes Finas"
  947. #: fdmprinter.def.json
  948. msgctxt "fill_outline_gaps description"
  949. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  950. msgstr "Imprime partes do modelo que são horizontalmente mais finas que o tamanho do bico."
  951. #: fdmprinter.def.json
  952. msgctxt "xy_offset label"
  953. msgid "Horizontal Expansion"
  954. msgstr "Expansão Horizontal"
  955. #: fdmprinter.def.json
  956. msgctxt "xy_offset description"
  957. 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."
  958. 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."
  959. #: fdmprinter.def.json
  960. msgctxt "xy_offset_layer_0 label"
  961. msgid "Initial Layer Horizontal Expansion"
  962. msgstr "Expansão Horizontal da Camada Inicial"
  963. #: fdmprinter.def.json
  964. msgctxt "xy_offset_layer_0 description"
  965. 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\"."
  966. 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\"."
  967. #: fdmprinter.def.json
  968. msgctxt "z_seam_type label"
  969. msgid "Z Seam Alignment"
  970. msgstr "Alinhamento da Costura em Z"
  971. #: fdmprinter.def.json
  972. msgctxt "z_seam_type description"
  973. 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."
  974. 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."
  975. #: fdmprinter.def.json
  976. msgctxt "z_seam_type option back"
  977. msgid "User Specified"
  978. msgstr "Especificado pelo Usuário"
  979. #: fdmprinter.def.json
  980. msgctxt "z_seam_type option shortest"
  981. msgid "Shortest"
  982. msgstr "Mais Curto"
  983. #: fdmprinter.def.json
  984. msgctxt "z_seam_type option random"
  985. msgid "Random"
  986. msgstr "Aleatório"
  987. #: fdmprinter.def.json
  988. msgctxt "z_seam_type option sharpest_corner"
  989. msgid "Sharpest Corner"
  990. msgstr "Canto Mais Agudo"
  991. #: fdmprinter.def.json
  992. msgctxt "z_seam_x label"
  993. msgid "Z Seam X"
  994. msgstr "Coordenada X da Costura Z"
  995. #: fdmprinter.def.json
  996. msgctxt "z_seam_x description"
  997. msgid "The X coordinate of the position near where to start printing each part in a layer."
  998. msgstr "A coordenada X da posição onde iniciar a impressão de cada parte em uma camada."
  999. #: fdmprinter.def.json
  1000. msgctxt "z_seam_y label"
  1001. msgid "Z Seam Y"
  1002. msgstr "Coordenada Y da Costura Z"
  1003. #: fdmprinter.def.json
  1004. msgctxt "z_seam_y description"
  1005. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1006. msgstr "A coordenada Y da posição onde iniciar a impressão de cada parte em uma camada."
  1007. #: fdmprinter.def.json
  1008. msgctxt "z_seam_corner label"
  1009. msgid "Seam Corner Preference"
  1010. msgstr "Preferência do Canto da Costura"
  1011. #: fdmprinter.def.json
  1012. msgctxt "z_seam_corner description"
  1013. 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."
  1014. msgstr "Controla se cantos no contorno do modelo influenciam a posição da costura. Nenhum significa que cantos não têm influência na posição da costura. Esconder Costura torna mais provável que ela ocorra em um canto interior. Expor Costura torna mais provável que ela ocorra em um canto exterior. Esconder ou Expor Costura torna mais provável que ocorra em um canto, externo ou externo."
  1015. #: fdmprinter.def.json
  1016. msgctxt "z_seam_corner option z_seam_corner_none"
  1017. msgid "None"
  1018. msgstr "Nenhum"
  1019. #: fdmprinter.def.json
  1020. msgctxt "z_seam_corner option z_seam_corner_inner"
  1021. msgid "Hide Seam"
  1022. msgstr "Esconder Costura"
  1023. #: fdmprinter.def.json
  1024. msgctxt "z_seam_corner option z_seam_corner_outer"
  1025. msgid "Expose Seam"
  1026. msgstr "Expor Costura"
  1027. #: fdmprinter.def.json
  1028. msgctxt "z_seam_corner option z_seam_corner_any"
  1029. msgid "Hide or Expose Seam"
  1030. msgstr "Esconder ou Expor Costura"
  1031. #: fdmprinter.def.json
  1032. msgctxt "z_seam_relative label"
  1033. msgid "Z Seam Relative"
  1034. msgstr "Costura Z Relativa"
  1035. #: fdmprinter.def.json
  1036. msgctxt "z_seam_relative description"
  1037. 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."
  1038. 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."
  1039. #: fdmprinter.def.json
  1040. msgctxt "skin_no_small_gaps_heuristic label"
  1041. msgid "Ignore Small Z Gaps"
  1042. msgstr "Ignorar Pequenas Lacunas em Z"
  1043. #: fdmprinter.def.json
  1044. msgctxt "skin_no_small_gaps_heuristic description"
  1045. msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  1046. msgstr "Quando o modelo tem pequenas lacunas verticais, aproximadamente 5% de tempo de computação adicional pode ser gasto ao gerar camada externa superior e inferior nestes espaços estreitos. Em tal caso, desabilite este ajuste."
  1047. #: fdmprinter.def.json
  1048. msgctxt "skin_outline_count label"
  1049. msgid "Extra Skin Wall Count"
  1050. msgstr "Contagem de Paredes Extras de Contorno"
  1051. #: fdmprinter.def.json
  1052. msgctxt "skin_outline_count description"
  1053. 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."
  1054. 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."
  1055. #: fdmprinter.def.json
  1056. msgctxt "ironing_enabled label"
  1057. msgid "Enable Ironing"
  1058. msgstr "Habilitar Passar a Ferro"
  1059. #: fdmprinter.def.json
  1060. msgctxt "ironing_enabled description"
  1061. msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  1062. msgstr "Passar sobre a superfície superior depois de impressa, mas sem extrudar material. A idéia é derreter o plástico do topo ainda mais, criando uma superfície mais lisa."
  1063. #: fdmprinter.def.json
  1064. msgctxt "ironing_only_highest_layer label"
  1065. msgid "Iron Only Highest Layer"
  1066. msgstr "Passar a Ferro Somente Camada Mais Alta"
  1067. #: fdmprinter.def.json
  1068. msgctxt "ironing_only_highest_layer description"
  1069. 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."
  1070. 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."
  1071. #: fdmprinter.def.json
  1072. msgctxt "ironing_pattern label"
  1073. msgid "Ironing Pattern"
  1074. msgstr "Padrão de Passagem a Ferro"
  1075. #: fdmprinter.def.json
  1076. msgctxt "ironing_pattern description"
  1077. msgid "The pattern to use for ironing top surfaces."
  1078. msgstr "O padrão a usar quando se passa a ferro as superfícies superiores."
  1079. #: fdmprinter.def.json
  1080. msgctxt "ironing_pattern option concentric"
  1081. msgid "Concentric"
  1082. msgstr "Concêntrico"
  1083. #: fdmprinter.def.json
  1084. msgctxt "ironing_pattern option zigzag"
  1085. msgid "Zig Zag"
  1086. msgstr "Ziguezague"
  1087. #: fdmprinter.def.json
  1088. msgctxt "ironing_line_spacing label"
  1089. msgid "Ironing Line Spacing"
  1090. msgstr "Espaçamento de Passagem a Ferro"
  1091. #: fdmprinter.def.json
  1092. msgctxt "ironing_line_spacing description"
  1093. msgid "The distance between the lines of ironing."
  1094. msgstr "A distância entre as trajetórias de passagem a ferro."
  1095. #: fdmprinter.def.json
  1096. msgctxt "ironing_flow label"
  1097. msgid "Ironing Flow"
  1098. msgstr "Fluxo de Passagem a Ferro"
  1099. #: fdmprinter.def.json
  1100. msgctxt "ironing_flow description"
  1101. 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."
  1102. 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."
  1103. #: fdmprinter.def.json
  1104. msgctxt "ironing_inset label"
  1105. msgid "Ironing Inset"
  1106. msgstr "Penetração da Passagem a Ferro"
  1107. #: fdmprinter.def.json
  1108. msgctxt "ironing_inset description"
  1109. 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."
  1110. 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."
  1111. #: fdmprinter.def.json
  1112. msgctxt "speed_ironing label"
  1113. msgid "Ironing Speed"
  1114. msgstr "Velocidade de Passar o Ferro"
  1115. #: fdmprinter.def.json
  1116. msgctxt "speed_ironing description"
  1117. msgid "The speed at which to pass over the top surface."
  1118. msgstr "A velocidade com a qual o ajuste de passar ferro é aplicado sobre a superfície superior."
  1119. #: fdmprinter.def.json
  1120. msgctxt "acceleration_ironing label"
  1121. msgid "Ironing Acceleration"
  1122. msgstr "Aceleração de Passar a Ferro"
  1123. #: fdmprinter.def.json
  1124. msgctxt "acceleration_ironing description"
  1125. msgid "The acceleration with which ironing is performed."
  1126. msgstr "A aceleração com que o recurso de passar a ferro é feito."
  1127. #: fdmprinter.def.json
  1128. msgctxt "jerk_ironing label"
  1129. msgid "Ironing Jerk"
  1130. msgstr "Jerk de Passar a Ferro"
  1131. #: fdmprinter.def.json
  1132. msgctxt "jerk_ironing description"
  1133. msgid "The maximum instantaneous velocity change while performing ironing."
  1134. msgstr "A máxima mudança de velocidade instantânea em uma direção com que o recurso de passar a ferro é feito."
  1135. #: fdmprinter.def.json
  1136. msgctxt "infill label"
  1137. msgid "Infill"
  1138. msgstr "Preenchimento"
  1139. #: fdmprinter.def.json
  1140. msgctxt "infill description"
  1141. msgid "Infill"
  1142. msgstr "Preenchimento"
  1143. #: fdmprinter.def.json
  1144. msgctxt "infill_extruder_nr label"
  1145. msgid "Infill Extruder"
  1146. msgstr "Extrusor do Preenchimento"
  1147. #: fdmprinter.def.json
  1148. msgctxt "infill_extruder_nr description"
  1149. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1150. msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão."
  1151. #: fdmprinter.def.json
  1152. msgctxt "infill_sparse_density label"
  1153. msgid "Infill Density"
  1154. msgstr "Densidade do Preenchimento"
  1155. #: fdmprinter.def.json
  1156. msgctxt "infill_sparse_density description"
  1157. msgid "Adjusts the density of infill of the print."
  1158. msgstr "Ajusta a densidade de preenchimento da impressão."
  1159. #: fdmprinter.def.json
  1160. msgctxt "infill_line_distance label"
  1161. msgid "Infill Line Distance"
  1162. msgstr "Distância da Linha de Preenchimento"
  1163. #: fdmprinter.def.json
  1164. msgctxt "infill_line_distance description"
  1165. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1166. msgstr "Distância entre as linhas de preenchimento impressas. Este ajuste é calculado pela densidade de preenchimento e a largura de extrusão do preenchimento."
  1167. #: fdmprinter.def.json
  1168. msgctxt "infill_pattern label"
  1169. msgid "Infill Pattern"
  1170. msgstr "Padrão de Preenchimento"
  1171. #: fdmprinter.def.json
  1172. msgctxt "infill_pattern description"
  1173. 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. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  1174. msgstr "O padrão do material de preenchimento da impressão. Preenchimento de Linhas e Ziguezague trocam direções em camadas alternadas, reduzindo custo do material. Os padrões de Grade, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruzado e Concêntrico são totalmente impressos em cada camada. Os preenchimentos Cúbico, Quarto Cúbico e Octeto mudam em cada camada para prover uma distribuição mais uniforme de forças em cada direção."
  1175. #: fdmprinter.def.json
  1176. msgctxt "infill_pattern option grid"
  1177. msgid "Grid"
  1178. msgstr "Grade"
  1179. #: fdmprinter.def.json
  1180. msgctxt "infill_pattern option lines"
  1181. msgid "Lines"
  1182. msgstr "Linhas"
  1183. #: fdmprinter.def.json
  1184. msgctxt "infill_pattern option triangles"
  1185. msgid "Triangles"
  1186. msgstr "Triângulos"
  1187. #: fdmprinter.def.json
  1188. msgctxt "infill_pattern option trihexagon"
  1189. msgid "Tri-Hexagon"
  1190. msgstr "Tri-Hexágono"
  1191. #: fdmprinter.def.json
  1192. msgctxt "infill_pattern option cubic"
  1193. msgid "Cubic"
  1194. msgstr "Cúbico"
  1195. #: fdmprinter.def.json
  1196. msgctxt "infill_pattern option cubicsubdiv"
  1197. msgid "Cubic Subdivision"
  1198. msgstr "Subdivisão Cúbica"
  1199. #: fdmprinter.def.json
  1200. msgctxt "infill_pattern option tetrahedral"
  1201. msgid "Octet"
  1202. msgstr "Octeto"
  1203. #: fdmprinter.def.json
  1204. msgctxt "infill_pattern option quarter_cubic"
  1205. msgid "Quarter Cubic"
  1206. msgstr "Quarto Cúbico"
  1207. #: fdmprinter.def.json
  1208. msgctxt "infill_pattern option concentric"
  1209. msgid "Concentric"
  1210. msgstr "Concêntrico"
  1211. #: fdmprinter.def.json
  1212. msgctxt "infill_pattern option concentric_3d"
  1213. msgid "Concentric 3D"
  1214. msgstr "Concêntrico 3D"
  1215. #: fdmprinter.def.json
  1216. msgctxt "infill_pattern option zigzag"
  1217. msgid "Zig Zag"
  1218. msgstr "Ziguezague"
  1219. #: fdmprinter.def.json
  1220. msgctxt "infill_pattern option cross"
  1221. msgid "Cross"
  1222. msgstr "Cruzado"
  1223. #: fdmprinter.def.json
  1224. msgctxt "infill_pattern option cross_3d"
  1225. msgid "Cross 3D"
  1226. msgstr "Cruzado 3D"
  1227. #: fdmprinter.def.json
  1228. msgctxt "zig_zaggify_infill label"
  1229. msgid "Connect Infill Lines"
  1230. msgstr "Conectar Linhas de Preenchimento"
  1231. #: fdmprinter.def.json
  1232. msgctxt "zig_zaggify_infill description"
  1233. 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."
  1234. 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."
  1235. #: fdmprinter.def.json
  1236. msgctxt "infill_angles label"
  1237. msgid "Infill Line Directions"
  1238. msgstr "Direções de Filetes de Preenchimento"
  1239. #: fdmprinter.def.json
  1240. msgctxt "infill_angles description"
  1241. 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)."
  1242. 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)."
  1243. #: fdmprinter.def.json
  1244. msgctxt "infill_offset_x label"
  1245. msgid "Infill X Offset"
  1246. msgstr "Deslocamento X do Preenchimento"
  1247. #: fdmprinter.def.json
  1248. msgctxt "infill_offset_x description"
  1249. msgid "The infill pattern is moved this distance along the X axis."
  1250. msgstr "O padrão de preenchimento é movido por esta distância no eixo X."
  1251. #: fdmprinter.def.json
  1252. msgctxt "infill_offset_y label"
  1253. msgid "Infill Y Offset"
  1254. msgstr "Deslocamento do Preenchimento Y"
  1255. #: fdmprinter.def.json
  1256. msgctxt "infill_offset_y description"
  1257. msgid "The infill pattern is moved this distance along the Y axis."
  1258. msgstr "O padrão de preenchimento é movido por esta distância no eixo Y."
  1259. #: fdmprinter.def.json
  1260. msgctxt "sub_div_rad_add label"
  1261. msgid "Cubic Subdivision Shell"
  1262. msgstr "Cobertura de Subdivisão Cúbica"
  1263. #: fdmprinter.def.json
  1264. msgctxt "sub_div_rad_add description"
  1265. 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."
  1266. 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."
  1267. #: fdmprinter.def.json
  1268. msgctxt "infill_overlap label"
  1269. msgid "Infill Overlap Percentage"
  1270. msgstr "Porcentagem de Sobreposição do Preenchimento"
  1271. #: fdmprinter.def.json
  1272. msgctxt "infill_overlap description"
  1273. 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."
  1274. 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."
  1275. #: fdmprinter.def.json
  1276. msgctxt "infill_overlap_mm label"
  1277. msgid "Infill Overlap"
  1278. msgstr "Sobreposição de Preenchimento"
  1279. #: fdmprinter.def.json
  1280. msgctxt "infill_overlap_mm description"
  1281. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1282. 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."
  1283. #: fdmprinter.def.json
  1284. msgctxt "skin_overlap label"
  1285. msgid "Skin Overlap Percentage"
  1286. msgstr "Porcentagem de Sobreposição do Contorno"
  1287. #: fdmprinter.def.json
  1288. msgctxt "skin_overlap description"
  1289. msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  1290. msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão do contorno. Uma leve sobreposição permite que as paredes se conectem firmemente ao contorno. É uma porcentagem das larguras de extrusão médias das linhas de contorno e a parede mais interna."
  1291. #: fdmprinter.def.json
  1292. msgctxt "skin_overlap_mm label"
  1293. msgid "Skin Overlap"
  1294. msgstr "Sobreposição do Contorno"
  1295. #: fdmprinter.def.json
  1296. msgctxt "skin_overlap_mm description"
  1297. msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  1298. msgstr "A quantidade de sobreposição entre o contorno e as paredes. Uma leve sobreposição permite às paredes ficarem firmemente aderidas ao contorno."
  1299. #: fdmprinter.def.json
  1300. msgctxt "infill_wipe_dist label"
  1301. msgid "Infill Wipe Distance"
  1302. msgstr "Distância de Varredura do Preenchimento"
  1303. #: fdmprinter.def.json
  1304. msgctxt "infill_wipe_dist description"
  1305. 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."
  1306. 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."
  1307. #: fdmprinter.def.json
  1308. msgctxt "infill_sparse_thickness label"
  1309. msgid "Infill Layer Thickness"
  1310. msgstr "Espessura da Camada de Preenchimento"
  1311. #: fdmprinter.def.json
  1312. msgctxt "infill_sparse_thickness description"
  1313. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1314. 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."
  1315. #: fdmprinter.def.json
  1316. msgctxt "gradual_infill_steps label"
  1317. msgid "Gradual Infill Steps"
  1318. msgstr "Passos Graduais de Preenchimento"
  1319. #: fdmprinter.def.json
  1320. msgctxt "gradual_infill_steps description"
  1321. 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."
  1322. 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."
  1323. #: fdmprinter.def.json
  1324. msgctxt "gradual_infill_step_height label"
  1325. msgid "Gradual Infill Step Height"
  1326. msgstr "Altura de Passo do Preenchimento Gradual"
  1327. #: fdmprinter.def.json
  1328. msgctxt "gradual_infill_step_height description"
  1329. msgid "The height of infill of a given density before switching to half the density."
  1330. msgstr "A altura do preenchimento de uma dada densidade antes de trocar para a metade desta densidade."
  1331. #: fdmprinter.def.json
  1332. msgctxt "infill_before_walls label"
  1333. msgid "Infill Before Walls"
  1334. msgstr "Preenchimento Antes das Paredes"
  1335. #: fdmprinter.def.json
  1336. msgctxt "infill_before_walls description"
  1337. 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."
  1338. 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."
  1339. #: fdmprinter.def.json
  1340. msgctxt "min_infill_area label"
  1341. msgid "Minimum Infill Area"
  1342. msgstr "Área Mínima para Preenchimento"
  1343. #: fdmprinter.def.json
  1344. msgctxt "min_infill_area description"
  1345. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1346. msgstr "Não gerar preenchimento para áreas menores que esta (usar contorno)."
  1347. #: fdmprinter.def.json
  1348. msgctxt "infill_support_enabled label"
  1349. msgid "Infill Support"
  1350. msgstr "Suporte do Preenchimento"
  1351. #: fdmprinter.def.json
  1352. msgctxt "infill_support_enabled description"
  1353. 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."
  1354. 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."
  1355. #: fdmprinter.def.json
  1356. msgctxt "infill_support_angle label"
  1357. msgid "Infill Overhang Angle"
  1358. msgstr "Ângulo de Seções Pendentes do Preenchimento"
  1359. #: fdmprinter.def.json
  1360. msgctxt "infill_support_angle description"
  1361. 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."
  1362. 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."
  1363. #: fdmprinter.def.json
  1364. msgctxt "skin_preshrink label"
  1365. msgid "Skin Removal Width"
  1366. msgstr "Largura de Remoção de Contorno"
  1367. #: fdmprinter.def.json
  1368. msgctxt "skin_preshrink description"
  1369. 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."
  1370. 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."
  1371. #: fdmprinter.def.json
  1372. msgctxt "top_skin_preshrink label"
  1373. msgid "Top Skin Removal Width"
  1374. msgstr "Largura de Remoção do Contorno Superior"
  1375. #: fdmprinter.def.json
  1376. msgctxt "top_skin_preshrink description"
  1377. 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."
  1378. 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."
  1379. #: fdmprinter.def.json
  1380. msgctxt "bottom_skin_preshrink label"
  1381. msgid "Bottom Skin Removal Width"
  1382. msgstr "Largura de Remoção do Contorno Inferior"
  1383. #: fdmprinter.def.json
  1384. msgctxt "bottom_skin_preshrink description"
  1385. 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."
  1386. 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."
  1387. #: fdmprinter.def.json
  1388. msgctxt "expand_skins_expand_distance label"
  1389. msgid "Skin Expand Distance"
  1390. msgstr "Distância de Expansão do Contorno"
  1391. #: fdmprinter.def.json
  1392. msgctxt "expand_skins_expand_distance description"
  1393. 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."
  1394. 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."
  1395. #: fdmprinter.def.json
  1396. msgctxt "top_skin_expand_distance label"
  1397. msgid "Top Skin Expand Distance"
  1398. msgstr "Distância de Expansão do Contorno Superior"
  1399. #: fdmprinter.def.json
  1400. msgctxt "top_skin_expand_distance description"
  1401. 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."
  1402. 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."
  1403. #: fdmprinter.def.json
  1404. msgctxt "bottom_skin_expand_distance label"
  1405. msgid "Bottom Skin Expand Distance"
  1406. msgstr "Distância de Expansão do Contorno Inferior"
  1407. #: fdmprinter.def.json
  1408. msgctxt "bottom_skin_expand_distance description"
  1409. 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."
  1410. 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."
  1411. #: fdmprinter.def.json
  1412. msgctxt "max_skin_angle_for_expansion label"
  1413. msgid "Maximum Skin Angle for Expansion"
  1414. msgstr "Ângulo Máximo do Contorno para Expansão"
  1415. #: fdmprinter.def.json
  1416. msgctxt "max_skin_angle_for_expansion description"
  1417. 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, while an angle of 90° is vertical."
  1418. msgstr "Superfícies Superiores e/ou Inferiores de seu objeto com um ângulo maior que este ajuste não terão seus contornos superior/inferior expandidos. Isto evita que expandam as áreas estreitas de contorno que são criadas quando a superfície do modelo tem uma inclinação praticamente vertical. Um ângulo de 0° é horizontal, um ângulo de 90° é vertical."
  1419. #: fdmprinter.def.json
  1420. msgctxt "min_skin_width_for_expansion label"
  1421. msgid "Minimum Skin Width for Expansion"
  1422. msgstr "Largura Mínima de Contorno para Expansão"
  1423. #: fdmprinter.def.json
  1424. msgctxt "min_skin_width_for_expansion description"
  1425. 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."
  1426. 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."
  1427. #: fdmprinter.def.json
  1428. msgctxt "material label"
  1429. msgid "Material"
  1430. msgstr "Material"
  1431. #: fdmprinter.def.json
  1432. msgctxt "material description"
  1433. msgid "Material"
  1434. msgstr "Material"
  1435. #: fdmprinter.def.json
  1436. msgctxt "default_material_print_temperature label"
  1437. msgid "Default Printing Temperature"
  1438. msgstr "Temperatura Default de Impressão"
  1439. #: fdmprinter.def.json
  1440. msgctxt "default_material_print_temperature description"
  1441. 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"
  1442. 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."
  1443. #: fdmprinter.def.json
  1444. msgctxt "material_print_temperature label"
  1445. msgid "Printing Temperature"
  1446. msgstr "Temperatura de Impressão"
  1447. #: fdmprinter.def.json
  1448. msgctxt "material_print_temperature description"
  1449. msgid "The temperature used for printing."
  1450. msgstr "A temperatura usada para impressão."
  1451. #: fdmprinter.def.json
  1452. msgctxt "material_print_temperature_layer_0 label"
  1453. msgid "Printing Temperature Initial Layer"
  1454. msgstr "Temperatura de Impressão da Camada Inicial"
  1455. #: fdmprinter.def.json
  1456. msgctxt "material_print_temperature_layer_0 description"
  1457. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1458. msgstr "A temperatura usada para imprimir a primeira camada. Coloque 0 para desabilitar processamento especial da camada inicial."
  1459. #: fdmprinter.def.json
  1460. msgctxt "material_initial_print_temperature label"
  1461. msgid "Initial Printing Temperature"
  1462. msgstr "Temperatura Inicial de Impressão"
  1463. #: fdmprinter.def.json
  1464. msgctxt "material_initial_print_temperature description"
  1465. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1466. msgstr "A temperatura mínima enquanto se esquenta até a Temperatura de Impressão na qual a impressão pode já ser iniciada."
  1467. #: fdmprinter.def.json
  1468. msgctxt "material_final_print_temperature label"
  1469. msgid "Final Printing Temperature"
  1470. msgstr "Temperatura de Impressão Final"
  1471. #: fdmprinter.def.json
  1472. msgctxt "material_final_print_temperature description"
  1473. msgid "The temperature to which to already start cooling down just before the end of printing."
  1474. msgstr "A temperatura para a qual se deve começar a esfriar pouco antes do fim da impressão."
  1475. #: fdmprinter.def.json
  1476. msgctxt "material_extrusion_cool_down_speed label"
  1477. msgid "Extrusion Cool Down Speed Modifier"
  1478. msgstr "Modificador de Velocidade de Resfriamento de Extrusão"
  1479. #: fdmprinter.def.json
  1480. msgctxt "material_extrusion_cool_down_speed description"
  1481. 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."
  1482. 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."
  1483. #: fdmprinter.def.json
  1484. msgctxt "default_material_bed_temperature label"
  1485. msgid "Default Build Plate Temperature"
  1486. msgstr "Temperatura Default da Plataforma de Impressão"
  1487. #: fdmprinter.def.json
  1488. msgctxt "default_material_bed_temperature description"
  1489. 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"
  1490. 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"
  1491. #: fdmprinter.def.json
  1492. msgctxt "material_bed_temperature label"
  1493. msgid "Build Plate Temperature"
  1494. msgstr "Temperatura da Mesa de Impressão"
  1495. #: fdmprinter.def.json
  1496. msgctxt "material_bed_temperature description"
  1497. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1498. msgstr "A temperatura usada para a plataforma de impressão aquecida. Se for 0, a temperatura da mesa não será ajustada."
  1499. #: fdmprinter.def.json
  1500. msgctxt "material_bed_temperature_layer_0 label"
  1501. msgid "Build Plate Temperature Initial Layer"
  1502. msgstr "Temperatura da Mesa de Impressão da Camada Inicial"
  1503. #: fdmprinter.def.json
  1504. msgctxt "material_bed_temperature_layer_0 description"
  1505. msgid "The temperature used for the heated build plate at the first layer."
  1506. msgstr "A temperatura usada para a mesa aquecida na primeira camada."
  1507. #: fdmprinter.def.json
  1508. msgctxt "material_diameter label"
  1509. msgid "Diameter"
  1510. msgstr "Diâmetro"
  1511. #: fdmprinter.def.json
  1512. msgctxt "material_diameter description"
  1513. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  1514. msgstr "Ajusta o diâmetro do filamento utilizado. Acerte este valor com o diâmetro real do filamento."
  1515. #: fdmprinter.def.json
  1516. msgctxt "material_adhesion_tendency label"
  1517. msgid "Adhesion Tendency"
  1518. msgstr "Tendência à Aderência"
  1519. #: fdmprinter.def.json
  1520. msgctxt "material_adhesion_tendency description"
  1521. msgid "Surface adhesion tendency."
  1522. msgstr "Tendência de aderência da superfície"
  1523. #: fdmprinter.def.json
  1524. msgctxt "material_surface_energy label"
  1525. msgid "Surface Energy"
  1526. msgstr "Energia de Superfície"
  1527. #: fdmprinter.def.json
  1528. msgctxt "material_surface_energy description"
  1529. msgid "Surface energy."
  1530. msgstr "Energia de superfície."
  1531. #: fdmprinter.def.json
  1532. msgctxt "material_shrinkage_percentage label"
  1533. msgid "Shrinkage Ratio"
  1534. msgstr "Raio de Contração"
  1535. #: fdmprinter.def.json
  1536. msgctxt "material_shrinkage_percentage description"
  1537. msgid "Shrinkage ratio in percentage."
  1538. msgstr "Raio de contração do material em porcentagem."
  1539. #: fdmprinter.def.json
  1540. msgctxt "material_flow label"
  1541. msgid "Flow"
  1542. msgstr "Fluxo"
  1543. #: fdmprinter.def.json
  1544. msgctxt "material_flow description"
  1545. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1546. msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor."
  1547. #: fdmprinter.def.json
  1548. msgctxt "material_flow_layer_0 label"
  1549. msgid "Initial Layer Flow"
  1550. msgstr "Fluxo Inicial de Camada"
  1551. #: fdmprinter.def.json
  1552. msgctxt "material_flow_layer_0 description"
  1553. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1554. msgstr "Compensação de fluxo para a primeira camada; a quantidade de material extrudado na camada inicial é multiplicada por este valor."
  1555. #: fdmprinter.def.json
  1556. msgctxt "retraction_enable label"
  1557. msgid "Enable Retraction"
  1558. msgstr "Habilitar Retração"
  1559. #: fdmprinter.def.json
  1560. msgctxt "retraction_enable description"
  1561. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  1562. msgstr "Retrai o filamento quando o bico está se movendo sobre uma área não impressa."
  1563. #: fdmprinter.def.json
  1564. msgctxt "retract_at_layer_change label"
  1565. msgid "Retract at Layer Change"
  1566. msgstr "Retrai em Mudança de Camada"
  1567. #: fdmprinter.def.json
  1568. msgctxt "retract_at_layer_change description"
  1569. msgid "Retract the filament when the nozzle is moving to the next layer."
  1570. msgstr "Retrai o filamento quando o bico está se movendo para a próxima camada."
  1571. #: fdmprinter.def.json
  1572. msgctxt "retraction_amount label"
  1573. msgid "Retraction Distance"
  1574. msgstr "Distância da Retração"
  1575. #: fdmprinter.def.json
  1576. msgctxt "retraction_amount description"
  1577. msgid "The length of material retracted during a retraction move."
  1578. msgstr "O comprimento de filamento retornado durante uma retração."
  1579. #: fdmprinter.def.json
  1580. msgctxt "retraction_speed label"
  1581. msgid "Retraction Speed"
  1582. msgstr "Velocidade de Retração"
  1583. #: fdmprinter.def.json
  1584. msgctxt "retraction_speed description"
  1585. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1586. msgstr "A velocidade com a qual o filamento é recolhido e avançado durante o movimento de retração."
  1587. #: fdmprinter.def.json
  1588. msgctxt "retraction_retract_speed label"
  1589. msgid "Retraction Retract Speed"
  1590. msgstr "Velocidade de Recolhimento de Retração"
  1591. #: fdmprinter.def.json
  1592. msgctxt "retraction_retract_speed description"
  1593. msgid "The speed at which the filament is retracted during a retraction move."
  1594. msgstr "A velocidade com a qual o filamento é recolhido durante o movimento de retração."
  1595. #: fdmprinter.def.json
  1596. msgctxt "retraction_prime_speed label"
  1597. msgid "Retraction Prime Speed"
  1598. msgstr "Velocidade de Avanço da Retração"
  1599. #: fdmprinter.def.json
  1600. msgctxt "retraction_prime_speed description"
  1601. msgid "The speed at which the filament is primed during a retraction move."
  1602. msgstr "A velocidade com a qual o filamento é avançado durante o movimento de retração."
  1603. #: fdmprinter.def.json
  1604. msgctxt "retraction_extra_prime_amount label"
  1605. msgid "Retraction Extra Prime Amount"
  1606. msgstr "Quantidade Adicional de Avanço da Retração"
  1607. #: fdmprinter.def.json
  1608. msgctxt "retraction_extra_prime_amount description"
  1609. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1610. msgstr "Alguns materiais podem escorrer um pouco durante o percurso, o que pode ser compensando neste ajuste."
  1611. #: fdmprinter.def.json
  1612. msgctxt "retraction_min_travel label"
  1613. msgid "Retraction Minimum Travel"
  1614. msgstr "Percurso Mínimo para Retração"
  1615. #: fdmprinter.def.json
  1616. msgctxt "retraction_min_travel description"
  1617. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1618. 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."
  1619. #: fdmprinter.def.json
  1620. msgctxt "retraction_count_max label"
  1621. msgid "Maximum Retraction Count"
  1622. msgstr "Contagem de Retrações Máxima"
  1623. #: fdmprinter.def.json
  1624. msgctxt "retraction_count_max description"
  1625. 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."
  1626. 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."
  1627. #: fdmprinter.def.json
  1628. msgctxt "retraction_extrusion_window label"
  1629. msgid "Minimum Extrusion Distance Window"
  1630. msgstr "Janela de Distância de Extrusão Mínima"
  1631. #: fdmprinter.def.json
  1632. msgctxt "retraction_extrusion_window description"
  1633. 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."
  1634. 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."
  1635. #: fdmprinter.def.json
  1636. msgctxt "limit_support_retractions label"
  1637. msgid "Limit Support Retractions"
  1638. msgstr "Limitar Retrações de Suporte"
  1639. #: fdmprinter.def.json
  1640. msgctxt "limit_support_retractions description"
  1641. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  1642. msgstr "Omitir retrações quando mudar de suporte a suporte em linha reta. Habilitar este ajuste economiza tempo de impressão, mas pode levar a fiapos entremeados à estrutura de suporte."
  1643. #: fdmprinter.def.json
  1644. msgctxt "material_standby_temperature label"
  1645. msgid "Standby Temperature"
  1646. msgstr "Temperatura de Espera"
  1647. #: fdmprinter.def.json
  1648. msgctxt "material_standby_temperature description"
  1649. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1650. msgstr "A temperatura do bico quando outro bico está sendo usado para a impressão."
  1651. #: fdmprinter.def.json
  1652. msgctxt "switch_extruder_retraction_amount label"
  1653. msgid "Nozzle Switch Retraction Distance"
  1654. msgstr "Distância de Retração da Troca de Bico"
  1655. #: fdmprinter.def.json
  1656. msgctxt "switch_extruder_retraction_amount description"
  1657. msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  1658. msgstr "A quantidade de retração: coloque em '0' para nenhuma retração. Isto deve geralmente ser o mesmo que o comprimento da zona de aquecimento dentro do hotend."
  1659. #: fdmprinter.def.json
  1660. msgctxt "switch_extruder_retraction_speeds label"
  1661. msgid "Nozzle Switch Retraction Speed"
  1662. msgstr "Velocidade de Retração da Troca do Bico"
  1663. #: fdmprinter.def.json
  1664. msgctxt "switch_extruder_retraction_speeds description"
  1665. 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."
  1666. 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."
  1667. #: fdmprinter.def.json
  1668. msgctxt "switch_extruder_retraction_speed label"
  1669. msgid "Nozzle Switch Retract Speed"
  1670. msgstr "Velocidade de Retração da Troca de Bico"
  1671. #: fdmprinter.def.json
  1672. msgctxt "switch_extruder_retraction_speed description"
  1673. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  1674. msgstr "A velocidade em que o filamento é retraído durante uma retração de troca de bico."
  1675. #: fdmprinter.def.json
  1676. msgctxt "switch_extruder_prime_speed label"
  1677. msgid "Nozzle Switch Prime Speed"
  1678. msgstr "Velocidade de Avanço da Troca de Bico"
  1679. #: fdmprinter.def.json
  1680. msgctxt "switch_extruder_prime_speed description"
  1681. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  1682. msgstr "A velocidade em que o filamento é empurrado para a frente depois de uma retração de troca de bico."
  1683. #: fdmprinter.def.json
  1684. msgctxt "speed label"
  1685. msgid "Speed"
  1686. msgstr "Velocidade"
  1687. #: fdmprinter.def.json
  1688. msgctxt "speed description"
  1689. msgid "Speed"
  1690. msgstr "Velocidade"
  1691. #: fdmprinter.def.json
  1692. msgctxt "speed_print label"
  1693. msgid "Print Speed"
  1694. msgstr "Velocidade de Impressão"
  1695. #: fdmprinter.def.json
  1696. msgctxt "speed_print description"
  1697. msgid "The speed at which printing happens."
  1698. msgstr "Velocidade em que se realiza a impressão."
  1699. #: fdmprinter.def.json
  1700. msgctxt "speed_infill label"
  1701. msgid "Infill Speed"
  1702. msgstr "Velocidade de Preenchimento"
  1703. #: fdmprinter.def.json
  1704. msgctxt "speed_infill description"
  1705. msgid "The speed at which infill is printed."
  1706. msgstr "Velocidade em que se imprime o preenchimento."
  1707. #: fdmprinter.def.json
  1708. msgctxt "speed_wall label"
  1709. msgid "Wall Speed"
  1710. msgstr "Velocidade da Parede"
  1711. #: fdmprinter.def.json
  1712. msgctxt "speed_wall description"
  1713. msgid "The speed at which the walls are printed."
  1714. msgstr "Velocidade em que se imprimem as paredes."
  1715. #: fdmprinter.def.json
  1716. msgctxt "speed_wall_0 label"
  1717. msgid "Outer Wall Speed"
  1718. msgstr "Velocidade da Parede Exterior"
  1719. #: fdmprinter.def.json
  1720. msgctxt "speed_wall_0 description"
  1721. 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."
  1722. 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."
  1723. #: fdmprinter.def.json
  1724. msgctxt "speed_wall_x label"
  1725. msgid "Inner Wall Speed"
  1726. msgstr "Velocidade da Parede Interior"
  1727. #: fdmprinter.def.json
  1728. msgctxt "speed_wall_x description"
  1729. 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."
  1730. 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."
  1731. #: fdmprinter.def.json
  1732. msgctxt "speed_roofing label"
  1733. msgid "Top Surface Skin Speed"
  1734. msgstr "Velocidade da Superfície Superior"
  1735. #: fdmprinter.def.json
  1736. msgctxt "speed_roofing description"
  1737. msgid "The speed at which top surface skin layers are printed."
  1738. msgstr "A velocidade com que as camadas superiores são impressas."
  1739. #: fdmprinter.def.json
  1740. msgctxt "speed_topbottom label"
  1741. msgid "Top/Bottom Speed"
  1742. msgstr "Velocidade Superior/Inferior"
  1743. #: fdmprinter.def.json
  1744. msgctxt "speed_topbottom description"
  1745. msgid "The speed at which top/bottom layers are printed."
  1746. msgstr "Velocidade em que as camadas superiores e inferiores são impressas."
  1747. #: fdmprinter.def.json
  1748. msgctxt "speed_support label"
  1749. msgid "Support Speed"
  1750. msgstr "Velocidade do Suporte"
  1751. #: fdmprinter.def.json
  1752. msgctxt "speed_support description"
  1753. 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."
  1754. 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."
  1755. #: fdmprinter.def.json
  1756. msgctxt "speed_support_infill label"
  1757. msgid "Support Infill Speed"
  1758. msgstr "Velocidade do Preenchimento do Suporte"
  1759. #: fdmprinter.def.json
  1760. msgctxt "speed_support_infill description"
  1761. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1762. msgstr "A velocidade em que o preenchimento do suporte é impresso. Imprimir o preenchimento em velocidades menores melhora a estabilidade."
  1763. #: fdmprinter.def.json
  1764. msgctxt "speed_support_interface label"
  1765. msgid "Support Interface Speed"
  1766. msgstr "Velocidade da Interface de Suporte"
  1767. #: fdmprinter.def.json
  1768. msgctxt "speed_support_interface description"
  1769. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1770. 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."
  1771. #: fdmprinter.def.json
  1772. msgctxt "speed_support_roof label"
  1773. msgid "Support Roof Speed"
  1774. msgstr "Velocidade do Teto de Suporte"
  1775. #: fdmprinter.def.json
  1776. msgctxt "speed_support_roof description"
  1777. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1778. 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."
  1779. #: fdmprinter.def.json
  1780. msgctxt "speed_support_bottom label"
  1781. msgid "Support Floor Speed"
  1782. msgstr "Velocidade de Base do Suporte"
  1783. #: fdmprinter.def.json
  1784. msgctxt "speed_support_bottom description"
  1785. 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."
  1786. 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."
  1787. #: fdmprinter.def.json
  1788. msgctxt "speed_prime_tower label"
  1789. msgid "Prime Tower Speed"
  1790. msgstr "Velocidade da Torre de Purga"
  1791. #: fdmprinter.def.json
  1792. msgctxt "speed_prime_tower description"
  1793. 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."
  1794. 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."
  1795. #: fdmprinter.def.json
  1796. msgctxt "speed_travel label"
  1797. msgid "Travel Speed"
  1798. msgstr "Velocidade de Percurso"
  1799. #: fdmprinter.def.json
  1800. msgctxt "speed_travel description"
  1801. msgid "The speed at which travel moves are made."
  1802. msgstr "Velocidade em que ocorrem os movimentos de percurso."
  1803. #: fdmprinter.def.json
  1804. msgctxt "speed_layer_0 label"
  1805. msgid "Initial Layer Speed"
  1806. msgstr "Velocidade da Camada Inicial"
  1807. #: fdmprinter.def.json
  1808. msgctxt "speed_layer_0 description"
  1809. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1810. msgstr "A velocidade para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão."
  1811. #: fdmprinter.def.json
  1812. msgctxt "speed_print_layer_0 label"
  1813. msgid "Initial Layer Print Speed"
  1814. msgstr "Velocidade de Impressão da Camada Inicial"
  1815. #: fdmprinter.def.json
  1816. msgctxt "speed_print_layer_0 description"
  1817. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1818. msgstr "A velocidade de impressão para a camada inicial. Um valor menor é aconselhado para aprimorar a aderência à mesa de impressão."
  1819. #: fdmprinter.def.json
  1820. msgctxt "speed_travel_layer_0 label"
  1821. msgid "Initial Layer Travel Speed"
  1822. msgstr "Velocidade de Percurso da Camada Inicial"
  1823. #: fdmprinter.def.json
  1824. msgctxt "speed_travel_layer_0 description"
  1825. 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."
  1826. 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."
  1827. #: fdmprinter.def.json
  1828. msgctxt "skirt_brim_speed label"
  1829. msgid "Skirt/Brim Speed"
  1830. msgstr "Velocidade do Skirt e Brim"
  1831. #: fdmprinter.def.json
  1832. msgctxt "skirt_brim_speed description"
  1833. 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."
  1834. 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."
  1835. #: fdmprinter.def.json
  1836. msgctxt "max_feedrate_z_override label"
  1837. msgid "Maximum Z Speed"
  1838. msgstr "Velocidade Máxima em Z"
  1839. #: fdmprinter.def.json
  1840. msgctxt "max_feedrate_z_override description"
  1841. msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  1842. msgstr "A velocidade máxima com que o eixo Z é movido. Colocar isto em zero faz com que a impressão use os defaults de firmware para a velocidade máxima de Z."
  1843. #: fdmprinter.def.json
  1844. msgctxt "speed_slowdown_layers label"
  1845. msgid "Number of Slower Layers"
  1846. msgstr "Número de Camadas Mais Lentas"
  1847. #: fdmprinter.def.json
  1848. msgctxt "speed_slowdown_layers description"
  1849. 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."
  1850. 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."
  1851. #: fdmprinter.def.json
  1852. msgctxt "speed_equalize_flow_enabled label"
  1853. msgid "Equalize Filament Flow"
  1854. msgstr "Equalizar Fluxo de Filamento"
  1855. #: fdmprinter.def.json
  1856. msgctxt "speed_equalize_flow_enabled description"
  1857. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  1858. msgstr "Imprime filetes mais finos que o normal mais rapidamente de modo que a quantidade de material extrudado por segundo se mantenha o mesmo. Partes pequenas em seu modelo podem exigir filetes impressos com largura menor que as providas nos ajustes. Este ajuste controla as mudanças de velocidade para tais filetes."
  1859. #: fdmprinter.def.json
  1860. msgctxt "speed_equalize_flow_max label"
  1861. msgid "Maximum Speed for Flow Equalization"
  1862. msgstr "Velocidade Máxima para Equalização de Fluxo"
  1863. #: fdmprinter.def.json
  1864. msgctxt "speed_equalize_flow_max description"
  1865. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  1866. msgstr "Velocidade máxima de impressão no ajuste de velocidades para equalizar o fluxo."
  1867. #: fdmprinter.def.json
  1868. msgctxt "acceleration_enabled label"
  1869. msgid "Enable Acceleration Control"
  1870. msgstr "Habilitar Controle de Aceleração"
  1871. #: fdmprinter.def.json
  1872. msgctxt "acceleration_enabled description"
  1873. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1874. 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."
  1875. #: fdmprinter.def.json
  1876. msgctxt "acceleration_print label"
  1877. msgid "Print Acceleration"
  1878. msgstr "Aceleração da Impressão"
  1879. #: fdmprinter.def.json
  1880. msgctxt "acceleration_print description"
  1881. msgid "The acceleration with which printing happens."
  1882. msgstr "Aceleração com que se realiza a impressão."
  1883. #: fdmprinter.def.json
  1884. msgctxt "acceleration_infill label"
  1885. msgid "Infill Acceleration"
  1886. msgstr "Aceleração do Preenchimento"
  1887. #: fdmprinter.def.json
  1888. msgctxt "acceleration_infill description"
  1889. msgid "The acceleration with which infill is printed."
  1890. msgstr "A aceleração com que o preenchimento é impresso."
  1891. #: fdmprinter.def.json
  1892. msgctxt "acceleration_wall label"
  1893. msgid "Wall Acceleration"
  1894. msgstr "Aceleração da Parede"
  1895. #: fdmprinter.def.json
  1896. msgctxt "acceleration_wall description"
  1897. msgid "The acceleration with which the walls are printed."
  1898. msgstr "Aceleração com que se imprimem as paredes."
  1899. #: fdmprinter.def.json
  1900. msgctxt "acceleration_wall_0 label"
  1901. msgid "Outer Wall Acceleration"
  1902. msgstr "Aceleração da Parede Exterior"
  1903. #: fdmprinter.def.json
  1904. msgctxt "acceleration_wall_0 description"
  1905. msgid "The acceleration with which the outermost walls are printed."
  1906. msgstr "Aceleração com que se imprime a parede exterior."
  1907. #: fdmprinter.def.json
  1908. msgctxt "acceleration_wall_x label"
  1909. msgid "Inner Wall Acceleration"
  1910. msgstr "Aceleração das Paredes Interiores"
  1911. #: fdmprinter.def.json
  1912. msgctxt "acceleration_wall_x description"
  1913. msgid "The acceleration with which all inner walls are printed."
  1914. msgstr "Aceleração com que se imprimem as paredes interiores."
  1915. #: fdmprinter.def.json
  1916. msgctxt "acceleration_roofing label"
  1917. msgid "Top Surface Skin Acceleration"
  1918. msgstr "Aceleração da Superfície Superior"
  1919. #: fdmprinter.def.json
  1920. msgctxt "acceleration_roofing description"
  1921. msgid "The acceleration with which top surface skin layers are printed."
  1922. msgstr "A aceleração com a qual as camadas da superfície superior são impressas."
  1923. #: fdmprinter.def.json
  1924. msgctxt "acceleration_topbottom label"
  1925. msgid "Top/Bottom Acceleration"
  1926. msgstr "Aceleração Superior/Inferior"
  1927. #: fdmprinter.def.json
  1928. msgctxt "acceleration_topbottom description"
  1929. msgid "The acceleration with which top/bottom layers are printed."
  1930. msgstr "Aceleração com que as camadas superiores e inferiores são impressas."
  1931. #: fdmprinter.def.json
  1932. msgctxt "acceleration_support label"
  1933. msgid "Support Acceleration"
  1934. msgstr "Aceleração do Suporte"
  1935. #: fdmprinter.def.json
  1936. msgctxt "acceleration_support description"
  1937. msgid "The acceleration with which the support structure is printed."
  1938. msgstr "Aceleração com que as estruturas de suporte são impressas."
  1939. #: fdmprinter.def.json
  1940. msgctxt "acceleration_support_infill label"
  1941. msgid "Support Infill Acceleration"
  1942. msgstr "Aceleração do Preenchimento do Suporte"
  1943. #: fdmprinter.def.json
  1944. msgctxt "acceleration_support_infill description"
  1945. msgid "The acceleration with which the infill of support is printed."
  1946. msgstr "Aceleração com que se imprime o preenchimento dos suportes."
  1947. #: fdmprinter.def.json
  1948. msgctxt "acceleration_support_interface label"
  1949. msgid "Support Interface Acceleration"
  1950. msgstr "Aceleração da Interface de Suporte"
  1951. #: fdmprinter.def.json
  1952. msgctxt "acceleration_support_interface description"
  1953. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1954. 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."
  1955. #: fdmprinter.def.json
  1956. msgctxt "acceleration_support_roof label"
  1957. msgid "Support Roof Acceleration"
  1958. msgstr "Aceleração do Teto de Suporte"
  1959. #: fdmprinter.def.json
  1960. msgctxt "acceleration_support_roof description"
  1961. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1962. 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."
  1963. #: fdmprinter.def.json
  1964. msgctxt "acceleration_support_bottom label"
  1965. msgid "Support Floor Acceleration"
  1966. msgstr "Aceleração da Base do Suporte"
  1967. #: fdmprinter.def.json
  1968. msgctxt "acceleration_support_bottom description"
  1969. 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."
  1970. 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."
  1971. #: fdmprinter.def.json
  1972. msgctxt "acceleration_prime_tower label"
  1973. msgid "Prime Tower Acceleration"
  1974. msgstr "Aceleração da Torre de Purga"
  1975. #: fdmprinter.def.json
  1976. msgctxt "acceleration_prime_tower description"
  1977. msgid "The acceleration with which the prime tower is printed."
  1978. msgstr "Aceleração com que a torre de purga é impressa."
  1979. #: fdmprinter.def.json
  1980. msgctxt "acceleration_travel label"
  1981. msgid "Travel Acceleration"
  1982. msgstr "Aceleração de Percurso"
  1983. #: fdmprinter.def.json
  1984. msgctxt "acceleration_travel description"
  1985. msgid "The acceleration with which travel moves are made."
  1986. msgstr "Aceleração com que se realizam os percursos."
  1987. #: fdmprinter.def.json
  1988. msgctxt "acceleration_layer_0 label"
  1989. msgid "Initial Layer Acceleration"
  1990. msgstr "Aceleração da Camada Inicial"
  1991. #: fdmprinter.def.json
  1992. msgctxt "acceleration_layer_0 description"
  1993. msgid "The acceleration for the initial layer."
  1994. msgstr "Aceleração para a camada inicial."
  1995. #: fdmprinter.def.json
  1996. msgctxt "acceleration_print_layer_0 label"
  1997. msgid "Initial Layer Print Acceleration"
  1998. msgstr "Aceleração de Impressão da Camada Inicial"
  1999. #: fdmprinter.def.json
  2000. msgctxt "acceleration_print_layer_0 description"
  2001. msgid "The acceleration during the printing of the initial layer."
  2002. msgstr "Aceleração durante a impressão da camada inicial."
  2003. #: fdmprinter.def.json
  2004. msgctxt "acceleration_travel_layer_0 label"
  2005. msgid "Initial Layer Travel Acceleration"
  2006. msgstr "Aceleração de Percurso da Camada Inicial"
  2007. #: fdmprinter.def.json
  2008. msgctxt "acceleration_travel_layer_0 description"
  2009. msgid "The acceleration for travel moves in the initial layer."
  2010. msgstr "Aceleração para percursos na camada inicial."
  2011. #: fdmprinter.def.json
  2012. msgctxt "acceleration_skirt_brim label"
  2013. msgid "Skirt/Brim Acceleration"
  2014. msgstr "Aceleração para Skirt e Brim"
  2015. #: fdmprinter.def.json
  2016. msgctxt "acceleration_skirt_brim description"
  2017. 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."
  2018. 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."
  2019. #: fdmprinter.def.json
  2020. msgctxt "jerk_enabled label"
  2021. msgid "Enable Jerk Control"
  2022. msgstr "Habilitar Controle de Jerk"
  2023. #: fdmprinter.def.json
  2024. msgctxt "jerk_enabled description"
  2025. 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."
  2026. 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."
  2027. #: fdmprinter.def.json
  2028. msgctxt "jerk_print label"
  2029. msgid "Print Jerk"
  2030. msgstr "Jerk da Impressão"
  2031. #: fdmprinter.def.json
  2032. msgctxt "jerk_print description"
  2033. msgid "The maximum instantaneous velocity change of the print head."
  2034. msgstr "A mudança instantânea máxima de velocidade em uma direção da cabeça de impressão."
  2035. #: fdmprinter.def.json
  2036. msgctxt "jerk_infill label"
  2037. msgid "Infill Jerk"
  2038. msgstr "Jerk do Preenchimento"
  2039. #: fdmprinter.def.json
  2040. msgctxt "jerk_infill description"
  2041. msgid "The maximum instantaneous velocity change with which infill is printed."
  2042. msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso."
  2043. #: fdmprinter.def.json
  2044. msgctxt "jerk_wall label"
  2045. msgid "Wall Jerk"
  2046. msgstr "Jerk da Parede"
  2047. #: fdmprinter.def.json
  2048. msgctxt "jerk_wall description"
  2049. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2050. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes são impressas."
  2051. #: fdmprinter.def.json
  2052. msgctxt "jerk_wall_0 label"
  2053. msgid "Outer Wall Jerk"
  2054. msgstr "Jerk da Parede Exterior"
  2055. #: fdmprinter.def.json
  2056. msgctxt "jerk_wall_0 description"
  2057. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2058. msgstr "A máxima mudança de velocidade instantânea em uma direção com que a parede externa é impressa."
  2059. #: fdmprinter.def.json
  2060. msgctxt "jerk_wall_x label"
  2061. msgid "Inner Wall Jerk"
  2062. msgstr "Jerk das Paredes Internas"
  2063. #: fdmprinter.def.json
  2064. msgctxt "jerk_wall_x description"
  2065. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2066. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas."
  2067. #: fdmprinter.def.json
  2068. msgctxt "jerk_roofing label"
  2069. msgid "Top Surface Skin Jerk"
  2070. msgstr "Jerk da Superfície Superior"
  2071. #: fdmprinter.def.json
  2072. msgctxt "jerk_roofing description"
  2073. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2074. 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."
  2075. #: fdmprinter.def.json
  2076. msgctxt "jerk_topbottom label"
  2077. msgid "Top/Bottom Jerk"
  2078. msgstr "Jerk Superior/Inferior"
  2079. #: fdmprinter.def.json
  2080. msgctxt "jerk_topbottom description"
  2081. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2082. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as camadas superiores e inferiores são impressas."
  2083. #: fdmprinter.def.json
  2084. msgctxt "jerk_support label"
  2085. msgid "Support Jerk"
  2086. msgstr "Jerk do Suporte"
  2087. #: fdmprinter.def.json
  2088. msgctxt "jerk_support description"
  2089. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2090. msgstr "A máxima mudança de velocidade instantânea em uma direção com que as estruturas de suporte são impressas."
  2091. #: fdmprinter.def.json
  2092. msgctxt "jerk_support_infill label"
  2093. msgid "Support Infill Jerk"
  2094. msgstr "Jerk de Preenchimento de Suporte"
  2095. #: fdmprinter.def.json
  2096. msgctxt "jerk_support_infill description"
  2097. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2098. msgstr "A máxima mudança de velocidade instantânea em uma direção com que o preenchimento do suporte é impresso."
  2099. #: fdmprinter.def.json
  2100. msgctxt "jerk_support_interface label"
  2101. msgid "Support Interface Jerk"
  2102. msgstr "Jerk da Interface de Suporte"
  2103. #: fdmprinter.def.json
  2104. msgctxt "jerk_support_interface description"
  2105. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2106. msgstr "A máxima mudança de velocidade instantânea com a qual os tetos e bases dos suportes são impressos."
  2107. #: fdmprinter.def.json
  2108. msgctxt "jerk_support_roof label"
  2109. msgid "Support Roof Jerk"
  2110. msgstr "Jerk do Teto de Suporte"
  2111. #: fdmprinter.def.json
  2112. msgctxt "jerk_support_roof description"
  2113. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2114. msgstr "A máxima mudança de velocidade instantânea com que os tetos dos suportes são impressos."
  2115. #: fdmprinter.def.json
  2116. msgctxt "jerk_support_bottom label"
  2117. msgid "Support Floor Jerk"
  2118. msgstr "Jerk da Base do Suporte"
  2119. #: fdmprinter.def.json
  2120. msgctxt "jerk_support_bottom description"
  2121. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2122. msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas."
  2123. #: fdmprinter.def.json
  2124. msgctxt "jerk_prime_tower label"
  2125. msgid "Prime Tower Jerk"
  2126. msgstr "Jerk da Torre de Purga"
  2127. #: fdmprinter.def.json
  2128. msgctxt "jerk_prime_tower description"
  2129. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2130. msgstr "A mudança instantânea máxima de velocidade em uma direção com que a torre de purga é impressa."
  2131. #: fdmprinter.def.json
  2132. msgctxt "jerk_travel label"
  2133. msgid "Travel Jerk"
  2134. msgstr "Jerk de Percurso"
  2135. #: fdmprinter.def.json
  2136. msgctxt "jerk_travel description"
  2137. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2138. msgstr "A mudança instantânea máxima de velocidade em uma direção com que os percursos são feitos."
  2139. #: fdmprinter.def.json
  2140. msgctxt "jerk_layer_0 label"
  2141. msgid "Initial Layer Jerk"
  2142. msgstr "Jerk da Camada Inicial"
  2143. #: fdmprinter.def.json
  2144. msgctxt "jerk_layer_0 description"
  2145. msgid "The print maximum instantaneous velocity change for the initial layer."
  2146. msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial."
  2147. #: fdmprinter.def.json
  2148. msgctxt "jerk_print_layer_0 label"
  2149. msgid "Initial Layer Print Jerk"
  2150. msgstr "Jerk de Impressão da Camada Inicial"
  2151. #: fdmprinter.def.json
  2152. msgctxt "jerk_print_layer_0 description"
  2153. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2154. msgstr "A mudança instantânea máxima de velocidade em uma direção durante a impressão da camada inicial."
  2155. #: fdmprinter.def.json
  2156. msgctxt "jerk_travel_layer_0 label"
  2157. msgid "Initial Layer Travel Jerk"
  2158. msgstr "Jerk de Percurso da Camada Inicial"
  2159. #: fdmprinter.def.json
  2160. msgctxt "jerk_travel_layer_0 description"
  2161. msgid "The acceleration for travel moves in the initial layer."
  2162. msgstr "A mudança instantânea máxima de velocidade em uma direção nos percursos da camada inicial."
  2163. #: fdmprinter.def.json
  2164. msgctxt "jerk_skirt_brim label"
  2165. msgid "Skirt/Brim Jerk"
  2166. msgstr "Jerk de Skirt e Brim"
  2167. #: fdmprinter.def.json
  2168. msgctxt "jerk_skirt_brim description"
  2169. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2170. 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."
  2171. #: fdmprinter.def.json
  2172. msgctxt "travel label"
  2173. msgid "Travel"
  2174. msgstr "Percurso"
  2175. #: fdmprinter.def.json
  2176. msgctxt "travel description"
  2177. msgid "travel"
  2178. msgstr "percurso"
  2179. #: fdmprinter.def.json
  2180. msgctxt "retraction_combing label"
  2181. msgid "Combing Mode"
  2182. msgstr "Modo de Combing"
  2183. #: fdmprinter.def.json
  2184. msgctxt "retraction_combing description"
  2185. 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 by combing within the infill only."
  2186. msgstr "O Combing, ou penteamento, mantém o bico dentro de áreas já impressas se movimenta. Isso resulta em percursos ligeiramente mais longos mas reduz a necessidade de retrações. Se o penteamento estiver desligado, o material sofrerá retração e o bico se moverá em linha reta para o próximo ponto. É também possível evitar o penteamento em área de contornos superiores e inferiores habilitando o penteamento no preenchimento somente."
  2187. #: fdmprinter.def.json
  2188. msgctxt "retraction_combing option off"
  2189. msgid "Off"
  2190. msgstr "Desligado"
  2191. #: fdmprinter.def.json
  2192. msgctxt "retraction_combing option all"
  2193. msgid "All"
  2194. msgstr "Tudo"
  2195. #: fdmprinter.def.json
  2196. msgctxt "retraction_combing option noskin"
  2197. msgid "Not in Skin"
  2198. msgstr "Não no Contorno"
  2199. #: fdmprinter.def.json
  2200. msgctxt "retraction_combing_max_distance label"
  2201. msgid "Max Comb Distance With No Retract"
  2202. msgstr "Máxima Distância de Combing Sem Retração"
  2203. #: fdmprinter.def.json
  2204. msgctxt "retraction_combing_max_distance description"
  2205. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2206. msgstr "Quando não-zero, os movimentos de percurso de combing que são maiores que esta distância usarão retração."
  2207. #: fdmprinter.def.json
  2208. msgctxt "travel_retract_before_outer_wall label"
  2209. msgid "Retract Before Outer Wall"
  2210. msgstr "Retrair Antes da Parede Externa"
  2211. #: fdmprinter.def.json
  2212. msgctxt "travel_retract_before_outer_wall description"
  2213. msgid "Always retract when moving to start an outer wall."
  2214. msgstr "Sempre retrair quando se mover para iniciar uma parede externa."
  2215. #: fdmprinter.def.json
  2216. msgctxt "travel_avoid_other_parts label"
  2217. msgid "Avoid Printed Parts When Traveling"
  2218. msgstr "Evitar Partes Impressas nas Viagens"
  2219. #: fdmprinter.def.json
  2220. msgctxt "travel_avoid_other_parts description"
  2221. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2222. msgstr "O bico evita partes já impressas quando está em uma percurso. Esta opção está disponível somente quando combing (penteamento) está habilitado."
  2223. #: fdmprinter.def.json
  2224. msgctxt "travel_avoid_supports label"
  2225. msgid "Avoid Supports When Traveling"
  2226. msgstr "Evitar Suportes No Percurso"
  2227. #: fdmprinter.def.json
  2228. msgctxt "travel_avoid_supports description"
  2229. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2230. msgstr "O bico evita suportes já impressos durante o percurso. Esta opção só está disponível quando combing estiver habilitado."
  2231. #: fdmprinter.def.json
  2232. msgctxt "travel_avoid_distance label"
  2233. msgid "Travel Avoid Distance"
  2234. msgstr "Distância de Desvio de Percurso"
  2235. #: fdmprinter.def.json
  2236. msgctxt "travel_avoid_distance description"
  2237. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2238. msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso."
  2239. #: fdmprinter.def.json
  2240. msgctxt "start_layers_at_same_position label"
  2241. msgid "Start Layers with the Same Part"
  2242. msgstr "Iniciar Camadas com a Mesma Parte"
  2243. #: fdmprinter.def.json
  2244. msgctxt "start_layers_at_same_position description"
  2245. msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  2246. msgstr "Em cada camada iniciar imprimindo o objeto próximo ao mesmo ponto, de modo que não comecemos uma nova camada quando imprimir a peça com que a camada anterior terminou. Isso permite seções pendentes e partes pequenas melhores, mas aumenta o tempo de impressão."
  2247. #: fdmprinter.def.json
  2248. msgctxt "layer_start_x label"
  2249. msgid "Layer Start X"
  2250. msgstr "X Inicial da Camada"
  2251. #: fdmprinter.def.json
  2252. msgctxt "layer_start_x description"
  2253. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2254. msgstr "A coordenada X da posição próxima de onde achar a parte com que começar a imprimir cada camada."
  2255. #: fdmprinter.def.json
  2256. msgctxt "layer_start_y label"
  2257. msgid "Layer Start Y"
  2258. msgstr "Y Inicial da Camada"
  2259. #: fdmprinter.def.json
  2260. msgctxt "layer_start_y description"
  2261. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2262. msgstr "A coordenada Y da posição próxima de onde achar a parte com que começar a imprimir cada camada."
  2263. #: fdmprinter.def.json
  2264. msgctxt "retraction_hop_enabled label"
  2265. msgid "Z Hop When Retracted"
  2266. msgstr "Salto Z Ao Retrair"
  2267. #: fdmprinter.def.json
  2268. msgctxt "retraction_hop_enabled description"
  2269. 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."
  2270. 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."
  2271. #: fdmprinter.def.json
  2272. msgctxt "retraction_hop_only_when_collides label"
  2273. msgid "Z Hop Only Over Printed Parts"
  2274. msgstr "Salto Z Somente Sobre Partes Impressas"
  2275. #: fdmprinter.def.json
  2276. msgctxt "retraction_hop_only_when_collides description"
  2277. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2278. 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."
  2279. #: fdmprinter.def.json
  2280. msgctxt "retraction_hop label"
  2281. msgid "Z Hop Height"
  2282. msgstr "Altura do Salto Z"
  2283. #: fdmprinter.def.json
  2284. msgctxt "retraction_hop description"
  2285. msgid "The height difference when performing a Z Hop."
  2286. msgstr "Diferença de altura ao realizar um Salto Z."
  2287. #: fdmprinter.def.json
  2288. msgctxt "retraction_hop_after_extruder_switch label"
  2289. msgid "Z Hop After Extruder Switch"
  2290. msgstr "Salto Z Após Troca de Extrusor"
  2291. #: fdmprinter.def.json
  2292. msgctxt "retraction_hop_after_extruder_switch description"
  2293. 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."
  2294. 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."
  2295. #: fdmprinter.def.json
  2296. msgctxt "cooling label"
  2297. msgid "Cooling"
  2298. msgstr "Refrigeração"
  2299. #: fdmprinter.def.json
  2300. msgctxt "cooling description"
  2301. msgid "Cooling"
  2302. msgstr "Refrigeração"
  2303. #: fdmprinter.def.json
  2304. msgctxt "cool_fan_enabled label"
  2305. msgid "Enable Print Cooling"
  2306. msgstr "Habilitar Refrigeração de Impressão"
  2307. #: fdmprinter.def.json
  2308. msgctxt "cool_fan_enabled description"
  2309. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2310. 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."
  2311. #: fdmprinter.def.json
  2312. msgctxt "cool_fan_speed label"
  2313. msgid "Fan Speed"
  2314. msgstr "Velocidade da Ventoinha"
  2315. #: fdmprinter.def.json
  2316. msgctxt "cool_fan_speed description"
  2317. msgid "The speed at which the print cooling fans spin."
  2318. msgstr "A velocidade em que as ventoinhas giram."
  2319. #: fdmprinter.def.json
  2320. msgctxt "cool_fan_speed_min label"
  2321. msgid "Regular Fan Speed"
  2322. msgstr "Velocidade Regular da Ventoinha"
  2323. #: fdmprinter.def.json
  2324. msgctxt "cool_fan_speed_min description"
  2325. 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."
  2326. 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."
  2327. #: fdmprinter.def.json
  2328. msgctxt "cool_fan_speed_max label"
  2329. msgid "Maximum Fan Speed"
  2330. msgstr "Velocidade Máxima da Ventoinha"
  2331. #: fdmprinter.def.json
  2332. msgctxt "cool_fan_speed_max description"
  2333. 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."
  2334. 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."
  2335. #: fdmprinter.def.json
  2336. msgctxt "cool_min_layer_time_fan_speed_max label"
  2337. msgid "Regular/Maximum Fan Speed Threshold"
  2338. msgstr "Limite de Tempo para Mudança de Velocidade da Ventoinha"
  2339. #: fdmprinter.def.json
  2340. msgctxt "cool_min_layer_time_fan_speed_max description"
  2341. 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."
  2342. 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."
  2343. #: fdmprinter.def.json
  2344. msgctxt "cool_fan_speed_0 label"
  2345. msgid "Initial Fan Speed"
  2346. msgstr "Velocidade Inicial da Ventoinha"
  2347. #: fdmprinter.def.json
  2348. msgctxt "cool_fan_speed_0 description"
  2349. 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."
  2350. 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'."
  2351. #: fdmprinter.def.json
  2352. msgctxt "cool_fan_full_at_height label"
  2353. msgid "Regular Fan Speed at Height"
  2354. msgstr "Velocidade Regular da Ventoinha na Altura"
  2355. #: fdmprinter.def.json
  2356. msgctxt "cool_fan_full_at_height description"
  2357. 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."
  2358. 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."
  2359. #: fdmprinter.def.json
  2360. msgctxt "cool_fan_full_layer label"
  2361. msgid "Regular Fan Speed at Layer"
  2362. msgstr "Velocidade Regular da Ventoinha na Camada"
  2363. #: fdmprinter.def.json
  2364. msgctxt "cool_fan_full_layer description"
  2365. 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."
  2366. 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."
  2367. #: fdmprinter.def.json
  2368. msgctxt "cool_min_layer_time label"
  2369. msgid "Minimum Layer Time"
  2370. msgstr "Tempo Mínimo de Camada"
  2371. #: fdmprinter.def.json
  2372. msgctxt "cool_min_layer_time description"
  2373. 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."
  2374. 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."
  2375. #: fdmprinter.def.json
  2376. msgctxt "cool_min_speed label"
  2377. msgid "Minimum Speed"
  2378. msgstr "Velocidade Mínima"
  2379. #: fdmprinter.def.json
  2380. msgctxt "cool_min_speed description"
  2381. 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."
  2382. 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."
  2383. #: fdmprinter.def.json
  2384. msgctxt "cool_lift_head label"
  2385. msgid "Lift Head"
  2386. msgstr "Levantar Cabeça"
  2387. #: fdmprinter.def.json
  2388. msgctxt "cool_lift_head description"
  2389. 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."
  2390. 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."
  2391. #: fdmprinter.def.json
  2392. msgctxt "support label"
  2393. msgid "Support"
  2394. msgstr "Suporte"
  2395. #: fdmprinter.def.json
  2396. msgctxt "support description"
  2397. msgid "Support"
  2398. msgstr "Suporte"
  2399. #: fdmprinter.def.json
  2400. msgctxt "support_enable label"
  2401. msgid "Generate Support"
  2402. msgstr "Gerar Suporte"
  2403. #: fdmprinter.def.json
  2404. msgctxt "support_enable description"
  2405. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2406. msgstr "Gerar estrutura que suportem partes do modelo que tenham seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão."
  2407. #: fdmprinter.def.json
  2408. msgctxt "support_extruder_nr label"
  2409. msgid "Support Extruder"
  2410. msgstr "Extrusor do Suporte"
  2411. #: fdmprinter.def.json
  2412. msgctxt "support_extruder_nr description"
  2413. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2414. msgstr "O extrusor a usar para imprimir os suportes. Isto é utilizado em multi-extrusão."
  2415. #: fdmprinter.def.json
  2416. msgctxt "support_infill_extruder_nr label"
  2417. msgid "Support Infill Extruder"
  2418. msgstr "Extrusor do Preenchimento do Suporte"
  2419. #: fdmprinter.def.json
  2420. msgctxt "support_infill_extruder_nr description"
  2421. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2422. msgstr "O extrusor a usar para imprimir o preenchimento do suporte. Isto é utilizado em multi-extrusão."
  2423. #: fdmprinter.def.json
  2424. msgctxt "support_extruder_nr_layer_0 label"
  2425. msgid "First Layer Support Extruder"
  2426. msgstr "Extrusor de Suporte da Primeira Camada"
  2427. #: fdmprinter.def.json
  2428. msgctxt "support_extruder_nr_layer_0 description"
  2429. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2430. msgstr "O extrusor a usar para imprimir a primeira camada de preenchimento de suporte. Isto é utilizado em multi-extrusão."
  2431. #: fdmprinter.def.json
  2432. msgctxt "support_interface_extruder_nr label"
  2433. msgid "Support Interface Extruder"
  2434. msgstr "Extrusor da Interface de Suporte"
  2435. #: fdmprinter.def.json
  2436. msgctxt "support_interface_extruder_nr description"
  2437. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2438. msgstr "O extrusor a usar para imprimir os tetos e bases dos suportes. Isto é utilizado em multi-extrusão."
  2439. #: fdmprinter.def.json
  2440. msgctxt "support_roof_extruder_nr label"
  2441. msgid "Support Roof Extruder"
  2442. msgstr "Extrusor do Teto do Suporte"
  2443. #: fdmprinter.def.json
  2444. msgctxt "support_roof_extruder_nr description"
  2445. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2446. msgstr "O extrusor a usar para imprimir o teto do suporte. Isto é utilizado em multi-extrusão."
  2447. #: fdmprinter.def.json
  2448. msgctxt "support_bottom_extruder_nr label"
  2449. msgid "Support Floor Extruder"
  2450. msgstr "Extrusor da Base do Suporte"
  2451. #: fdmprinter.def.json
  2452. msgctxt "support_bottom_extruder_nr description"
  2453. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2454. msgstr "O extrusor a usar para imprimir as bases dos suportes. Isto é utilizado em multi-extrusão."
  2455. #: fdmprinter.def.json
  2456. msgctxt "support_type label"
  2457. msgid "Support Placement"
  2458. msgstr "Colocação dos Suportes"
  2459. #: fdmprinter.def.json
  2460. msgctxt "support_type description"
  2461. 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."
  2462. 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)."
  2463. #: fdmprinter.def.json
  2464. msgctxt "support_type option buildplate"
  2465. msgid "Touching Buildplate"
  2466. msgstr "Tocando a Mesa"
  2467. #: fdmprinter.def.json
  2468. msgctxt "support_type option everywhere"
  2469. msgid "Everywhere"
  2470. msgstr "Em Todo Lugar"
  2471. #: fdmprinter.def.json
  2472. msgctxt "support_angle label"
  2473. msgid "Support Overhang Angle"
  2474. msgstr "Ângulo para Caracterizar Seções Pendentes"
  2475. #: fdmprinter.def.json
  2476. msgctxt "support_angle description"
  2477. 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."
  2478. 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."
  2479. #: fdmprinter.def.json
  2480. msgctxt "support_pattern label"
  2481. msgid "Support Pattern"
  2482. msgstr "Padrão do Suporte"
  2483. #: fdmprinter.def.json
  2484. msgctxt "support_pattern description"
  2485. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2486. 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."
  2487. #: fdmprinter.def.json
  2488. msgctxt "support_pattern option lines"
  2489. msgid "Lines"
  2490. msgstr "Linhas"
  2491. #: fdmprinter.def.json
  2492. msgctxt "support_pattern option grid"
  2493. msgid "Grid"
  2494. msgstr "Grade"
  2495. #: fdmprinter.def.json
  2496. msgctxt "support_pattern option triangles"
  2497. msgid "Triangles"
  2498. msgstr "Triângulos"
  2499. #: fdmprinter.def.json
  2500. msgctxt "support_pattern option concentric"
  2501. msgid "Concentric"
  2502. msgstr "Concêntrico"
  2503. #: fdmprinter.def.json
  2504. msgctxt "support_pattern option concentric_3d"
  2505. msgid "Concentric 3D"
  2506. msgstr "Concêntrico 3D"
  2507. #: fdmprinter.def.json
  2508. msgctxt "support_pattern option zigzag"
  2509. msgid "Zig Zag"
  2510. msgstr "Ziguezague"
  2511. #: fdmprinter.def.json
  2512. msgctxt "support_pattern option cross"
  2513. msgid "Cross"
  2514. msgstr "Cruzado"
  2515. #: fdmprinter.def.json
  2516. msgctxt "support_wall_count label"
  2517. msgid "Support Wall Line Count"
  2518. msgstr "Contagem de Linhas de Parede de Suporte"
  2519. #: fdmprinter.def.json
  2520. msgctxt "support_wall_count description"
  2521. 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."
  2522. 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."
  2523. #: fdmprinter.def.json
  2524. msgctxt "zig_zaggify_support label"
  2525. msgid "Connect Support Lines"
  2526. msgstr "Conectar Linhas de Suporte"
  2527. #: fdmprinter.def.json
  2528. msgctxt "zig_zaggify_support description"
  2529. 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."
  2530. 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."
  2531. #: fdmprinter.def.json
  2532. msgctxt "support_connect_zigzags label"
  2533. msgid "Connect Support ZigZags"
  2534. msgstr "Conectar os Ziguezagues do Suporte"
  2535. #: fdmprinter.def.json
  2536. msgctxt "support_connect_zigzags description"
  2537. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2538. msgstr "Conecta os ziguezagues. Isto aumentará a força da estrutura de suporte em ziguezague."
  2539. #: fdmprinter.def.json
  2540. msgctxt "support_infill_rate label"
  2541. msgid "Support Density"
  2542. msgstr "Densidade do Suporte"
  2543. #: fdmprinter.def.json
  2544. msgctxt "support_infill_rate description"
  2545. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2546. 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."
  2547. #: fdmprinter.def.json
  2548. msgctxt "support_line_distance label"
  2549. msgid "Support Line Distance"
  2550. msgstr "Distância das Linhas do Suporte"
  2551. #: fdmprinter.def.json
  2552. msgctxt "support_line_distance description"
  2553. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2554. msgstr "Distância entre as linhas impressas da estrutura de suporte. Este ajuste é calculado a partir da densidade de suporte."
  2555. #: fdmprinter.def.json
  2556. msgctxt "support_z_distance label"
  2557. msgid "Support Z Distance"
  2558. msgstr "Distância em Z do Suporte"
  2559. #: fdmprinter.def.json
  2560. msgctxt "support_z_distance description"
  2561. 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. This value is rounded up to a multiple of the layer height."
  2562. msgstr "Distância do topo e base da estrutura de suporte para a impressão. Este vão provê um espaço para remover os suportes depois de o modelo ser impresso. O valor é arredondado para um múltiplo da altura de camada."
  2563. #: fdmprinter.def.json
  2564. msgctxt "support_top_distance label"
  2565. msgid "Support Top Distance"
  2566. msgstr "Distância Superior do Suporte"
  2567. #: fdmprinter.def.json
  2568. msgctxt "support_top_distance description"
  2569. msgid "Distance from the top of the support to the print."
  2570. msgstr "Distância do topo do suporte à impressão."
  2571. #: fdmprinter.def.json
  2572. msgctxt "support_bottom_distance label"
  2573. msgid "Support Bottom Distance"
  2574. msgstr "Distância Inferior do Suporte"
  2575. #: fdmprinter.def.json
  2576. msgctxt "support_bottom_distance description"
  2577. msgid "Distance from the print to the bottom of the support."
  2578. msgstr "Distância da parte inferior do suporte até a impressão."
  2579. #: fdmprinter.def.json
  2580. msgctxt "support_xy_distance label"
  2581. msgid "Support X/Y Distance"
  2582. msgstr "Distância X/Y do Suporte"
  2583. #: fdmprinter.def.json
  2584. msgctxt "support_xy_distance description"
  2585. msgid "Distance of the support structure from the print in the X/Y directions."
  2586. msgstr "Distância da estrutura de suporte até a impressão nas direções X e Y."
  2587. #: fdmprinter.def.json
  2588. msgctxt "support_xy_overrides_z label"
  2589. msgid "Support Distance Priority"
  2590. msgstr "Prioridade das Distâncias de Suporte"
  2591. #: fdmprinter.def.json
  2592. msgctxt "support_xy_overrides_z description"
  2593. 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."
  2594. msgstr "Se a distância XY sobrepuja a distância Z de suporte ou vice-versa. Quando XY sobrepuja 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."
  2595. #: fdmprinter.def.json
  2596. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2597. msgid "X/Y overrides Z"
  2598. msgstr "X/Y sobrepuja Z"
  2599. #: fdmprinter.def.json
  2600. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2601. msgid "Z overrides X/Y"
  2602. msgstr "Z sobrepuja X/Y"
  2603. #: fdmprinter.def.json
  2604. msgctxt "support_xy_distance_overhang label"
  2605. msgid "Minimum Support X/Y Distance"
  2606. msgstr "Distância Mínima de Suporte X/Y"
  2607. #: fdmprinter.def.json
  2608. msgctxt "support_xy_distance_overhang description"
  2609. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2610. msgstr "Distância da estrutura de suporte até a seção pendente nas direções X/Y. "
  2611. #: fdmprinter.def.json
  2612. msgctxt "support_bottom_stair_step_height label"
  2613. msgid "Support Stair Step Height"
  2614. msgstr "Altura do Passo de Escada de Suporte"
  2615. #: fdmprinter.def.json
  2616. msgctxt "support_bottom_stair_step_height description"
  2617. 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."
  2618. 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."
  2619. #: fdmprinter.def.json
  2620. msgctxt "support_bottom_stair_step_width label"
  2621. msgid "Support Stair Step Maximum Width"
  2622. msgstr "Largura Máxima do Passo de Escada de Suporte"
  2623. #: fdmprinter.def.json
  2624. msgctxt "support_bottom_stair_step_width description"
  2625. 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."
  2626. 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."
  2627. #: fdmprinter.def.json
  2628. msgctxt "support_join_distance label"
  2629. msgid "Support Join Distance"
  2630. msgstr "Distância de União do Suporte"
  2631. #: fdmprinter.def.json
  2632. msgctxt "support_join_distance description"
  2633. msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  2634. msgstr "Distância máxima entre as estruturas de suporte nas direções X/Y. Quando estrutura separadas estão mais perto que este valor, as estruturas são combinadas em uma única."
  2635. #: fdmprinter.def.json
  2636. msgctxt "support_offset label"
  2637. msgid "Support Horizontal Expansion"
  2638. msgstr "Expansão Horizontal do Suporte"
  2639. #: fdmprinter.def.json
  2640. msgctxt "support_offset description"
  2641. 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."
  2642. 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."
  2643. #: fdmprinter.def.json
  2644. msgctxt "support_infill_sparse_thickness label"
  2645. msgid "Support Infill Layer Thickness"
  2646. msgstr "Espessura de Camada do Preenchimento de Suporte"
  2647. #: fdmprinter.def.json
  2648. msgctxt "support_infill_sparse_thickness description"
  2649. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2650. 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."
  2651. #: fdmprinter.def.json
  2652. msgctxt "gradual_support_infill_steps label"
  2653. msgid "Gradual Support Infill Steps"
  2654. msgstr "Passos de Preenchimento Gradual de Suporte"
  2655. #: fdmprinter.def.json
  2656. msgctxt "gradual_support_infill_steps description"
  2657. 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."
  2658. 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."
  2659. #: fdmprinter.def.json
  2660. msgctxt "gradual_support_infill_step_height label"
  2661. msgid "Gradual Support Infill Step Height"
  2662. msgstr "Altura de Passo do Preenchimento Gradual de Suporte"
  2663. #: fdmprinter.def.json
  2664. msgctxt "gradual_support_infill_step_height description"
  2665. msgid "The height of support infill of a given density before switching to half the density."
  2666. msgstr "A altura do preenchimento de suporte de dada densidade antes de trocar para metade desta densidade."
  2667. #: fdmprinter.def.json
  2668. msgctxt "support_interface_enable label"
  2669. msgid "Enable Support Interface"
  2670. msgstr "Habilitar Interface de Suporte"
  2671. #: fdmprinter.def.json
  2672. msgctxt "support_interface_enable description"
  2673. 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."
  2674. 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."
  2675. #: fdmprinter.def.json
  2676. msgctxt "support_roof_enable label"
  2677. msgid "Enable Support Roof"
  2678. msgstr "Habilitar Teto de Suporte"
  2679. #: fdmprinter.def.json
  2680. msgctxt "support_roof_enable description"
  2681. 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."
  2682. 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."
  2683. #: fdmprinter.def.json
  2684. msgctxt "support_bottom_enable label"
  2685. msgid "Enable Support Floor"
  2686. msgstr "Habilitar Base de Suporte"
  2687. #: fdmprinter.def.json
  2688. msgctxt "support_bottom_enable description"
  2689. 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."
  2690. 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."
  2691. #: fdmprinter.def.json
  2692. msgctxt "support_interface_height label"
  2693. msgid "Support Interface Thickness"
  2694. msgstr "Espessura da Interface de Suporte"
  2695. #: fdmprinter.def.json
  2696. msgctxt "support_interface_height description"
  2697. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2698. msgstr "A espessura da interface do suporte onde ele toca o modelo na base ou no topo."
  2699. #: fdmprinter.def.json
  2700. msgctxt "support_roof_height label"
  2701. msgid "Support Roof Thickness"
  2702. msgstr "Espessura do Topo do Suporte"
  2703. #: fdmprinter.def.json
  2704. msgctxt "support_roof_height description"
  2705. 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."
  2706. msgstr "A espessura do topo do suporte. Isto controla a quantidade de camadas densas no topo do suporte em que o modelo se assenta."
  2707. #: fdmprinter.def.json
  2708. msgctxt "support_bottom_height label"
  2709. msgid "Support Floor Thickness"
  2710. msgstr "Espessura da Base de Suporte"
  2711. #: fdmprinter.def.json
  2712. msgctxt "support_bottom_height description"
  2713. 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."
  2714. 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."
  2715. #: fdmprinter.def.json
  2716. msgctxt "support_interface_skip_height label"
  2717. msgid "Support Interface Resolution"
  2718. msgstr "Resolução da Interface de Suporte"
  2719. #: fdmprinter.def.json
  2720. msgctxt "support_interface_skip_height description"
  2721. 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."
  2722. 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."
  2723. #: fdmprinter.def.json
  2724. msgctxt "support_interface_density label"
  2725. msgid "Support Interface Density"
  2726. msgstr "Densidade da Interface de Suporte"
  2727. #: fdmprinter.def.json
  2728. msgctxt "support_interface_density description"
  2729. 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."
  2730. 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."
  2731. #: fdmprinter.def.json
  2732. msgctxt "support_roof_density label"
  2733. msgid "Support Roof Density"
  2734. msgstr "Densidade do Teto de Suporte"
  2735. #: fdmprinter.def.json
  2736. msgctxt "support_roof_density description"
  2737. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2738. 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."
  2739. #: fdmprinter.def.json
  2740. msgctxt "support_roof_line_distance label"
  2741. msgid "Support Roof Line Distance"
  2742. msgstr "Distância de Filetes do Teto de Suporte"
  2743. #: fdmprinter.def.json
  2744. msgctxt "support_roof_line_distance description"
  2745. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2746. 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."
  2747. #: fdmprinter.def.json
  2748. msgctxt "support_bottom_density label"
  2749. msgid "Support Floor Density"
  2750. msgstr "Densidade da Base do Suporte"
  2751. #: fdmprinter.def.json
  2752. msgctxt "support_bottom_density description"
  2753. 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."
  2754. msgstr "A densidade das bases da estrutura de suporte. Um valor maior resulta em melhor aderência do suporte no topo da superfície"
  2755. #: fdmprinter.def.json
  2756. msgctxt "support_bottom_line_distance label"
  2757. msgid "Support Floor Line Distance"
  2758. msgstr "Distância de Filetes da Base de Suporte"
  2759. #: fdmprinter.def.json
  2760. msgctxt "support_bottom_line_distance description"
  2761. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2762. 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."
  2763. #: fdmprinter.def.json
  2764. msgctxt "support_interface_pattern label"
  2765. msgid "Support Interface Pattern"
  2766. msgstr "Padrão da Interface de Suporte"
  2767. #: fdmprinter.def.json
  2768. msgctxt "support_interface_pattern description"
  2769. msgid "The pattern with which the interface of the support with the model is printed."
  2770. msgstr "Padrão (estampa) com a qual a interface do suporte para o modelo é impressa."
  2771. #: fdmprinter.def.json
  2772. msgctxt "support_interface_pattern option lines"
  2773. msgid "Lines"
  2774. msgstr "Linhas"
  2775. #: fdmprinter.def.json
  2776. msgctxt "support_interface_pattern option grid"
  2777. msgid "Grid"
  2778. msgstr "Grade"
  2779. #: fdmprinter.def.json
  2780. msgctxt "support_interface_pattern option triangles"
  2781. msgid "Triangles"
  2782. msgstr "Triângulos"
  2783. #: fdmprinter.def.json
  2784. msgctxt "support_interface_pattern option concentric"
  2785. msgid "Concentric"
  2786. msgstr "Concêntrico"
  2787. #: fdmprinter.def.json
  2788. msgctxt "support_interface_pattern option concentric_3d"
  2789. msgid "Concentric 3D"
  2790. msgstr "Concêntrico 3D"
  2791. #: fdmprinter.def.json
  2792. msgctxt "support_interface_pattern option zigzag"
  2793. msgid "Zig Zag"
  2794. msgstr "Ziguezague"
  2795. #: fdmprinter.def.json
  2796. msgctxt "support_roof_pattern label"
  2797. msgid "Support Roof Pattern"
  2798. msgstr "Padrão de Teto de Suporte"
  2799. #: fdmprinter.def.json
  2800. msgctxt "support_roof_pattern description"
  2801. msgid "The pattern with which the roofs of the support are printed."
  2802. msgstr "O padrão com o qual o teto do suporte é impresso."
  2803. #: fdmprinter.def.json
  2804. msgctxt "support_roof_pattern option lines"
  2805. msgid "Lines"
  2806. msgstr "Linhas"
  2807. #: fdmprinter.def.json
  2808. msgctxt "support_roof_pattern option grid"
  2809. msgid "Grid"
  2810. msgstr "Grade"
  2811. #: fdmprinter.def.json
  2812. msgctxt "support_roof_pattern option triangles"
  2813. msgid "Triangles"
  2814. msgstr "Triângulos"
  2815. #: fdmprinter.def.json
  2816. msgctxt "support_roof_pattern option concentric"
  2817. msgid "Concentric"
  2818. msgstr "Concêntrico"
  2819. #: fdmprinter.def.json
  2820. msgctxt "support_roof_pattern option concentric_3d"
  2821. msgid "Concentric 3D"
  2822. msgstr "Concêntrico 3D"
  2823. #: fdmprinter.def.json
  2824. msgctxt "support_roof_pattern option zigzag"
  2825. msgid "Zig Zag"
  2826. msgstr "Ziguezague"
  2827. #: fdmprinter.def.json
  2828. msgctxt "support_bottom_pattern label"
  2829. msgid "Support Floor Pattern"
  2830. msgstr "Padrão de Base de Suporte"
  2831. #: fdmprinter.def.json
  2832. msgctxt "support_bottom_pattern description"
  2833. msgid "The pattern with which the floors of the support are printed."
  2834. msgstr "O padrão com o qual as bases do suporte são impressas."
  2835. #: fdmprinter.def.json
  2836. msgctxt "support_bottom_pattern option lines"
  2837. msgid "Lines"
  2838. msgstr "Linhas"
  2839. #: fdmprinter.def.json
  2840. msgctxt "support_bottom_pattern option grid"
  2841. msgid "Grid"
  2842. msgstr "Grade"
  2843. #: fdmprinter.def.json
  2844. msgctxt "support_bottom_pattern option triangles"
  2845. msgid "Triangles"
  2846. msgstr "Triângulo"
  2847. #: fdmprinter.def.json
  2848. msgctxt "support_bottom_pattern option concentric"
  2849. msgid "Concentric"
  2850. msgstr "Concêntrico"
  2851. #: fdmprinter.def.json
  2852. msgctxt "support_bottom_pattern option concentric_3d"
  2853. msgid "Concentric 3D"
  2854. msgstr "Concêntrico 3D"
  2855. #: fdmprinter.def.json
  2856. msgctxt "support_bottom_pattern option zigzag"
  2857. msgid "Zig Zag"
  2858. msgstr "Ziguezague"
  2859. #: fdmprinter.def.json
  2860. msgctxt "support_use_towers label"
  2861. msgid "Use Towers"
  2862. msgstr "Usar Torres"
  2863. #: fdmprinter.def.json
  2864. msgctxt "support_use_towers description"
  2865. 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."
  2866. 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'."
  2867. #: fdmprinter.def.json
  2868. msgctxt "support_tower_diameter label"
  2869. msgid "Tower Diameter"
  2870. msgstr "Diâmetro da Torre"
  2871. #: fdmprinter.def.json
  2872. msgctxt "support_tower_diameter description"
  2873. msgid "The diameter of a special tower."
  2874. msgstr "O diâmetro da torre especial."
  2875. #: fdmprinter.def.json
  2876. msgctxt "support_minimal_diameter label"
  2877. msgid "Minimum Diameter"
  2878. msgstr "Diâmetro mínimo"
  2879. #: fdmprinter.def.json
  2880. msgctxt "support_minimal_diameter description"
  2881. msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2882. msgstr "Diâmeto mínimo nas direções X/Y de uma área pequena que deverá ser suportada por uma torre de suporte especial."
  2883. #: fdmprinter.def.json
  2884. msgctxt "support_tower_roof_angle label"
  2885. msgid "Tower Roof Angle"
  2886. msgstr "Ângulo do Teto da Torre"
  2887. #: fdmprinter.def.json
  2888. msgctxt "support_tower_roof_angle description"
  2889. 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."
  2890. msgstr "Ângulo do Teto (parte superior) de uma torre. Um valor maior resulta em tetos pontiagudos, um valor menor resulta em tetos achatados."
  2891. #: fdmprinter.def.json
  2892. msgctxt "support_mesh_drop_down label"
  2893. msgid "Drop Down Support Mesh"
  2894. msgstr "Malha de Suporte Abaixo"
  2895. #: fdmprinter.def.json
  2896. msgctxt "support_mesh_drop_down description"
  2897. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2898. msgstr "Cria suport em todo lugar abaixo da malha de suporte de modo que não haja seções pendentes nela."
  2899. #: fdmprinter.def.json
  2900. msgctxt "platform_adhesion label"
  2901. msgid "Build Plate Adhesion"
  2902. msgstr "Aderência à Mesa"
  2903. #: fdmprinter.def.json
  2904. msgctxt "platform_adhesion description"
  2905. msgid "Adhesion"
  2906. msgstr "Aderência"
  2907. #: fdmprinter.def.json
  2908. msgctxt "prime_blob_enable label"
  2909. msgid "Enable Prime Blob"
  2910. msgstr "Habilitar Massa de Purga"
  2911. #: fdmprinter.def.json
  2912. msgctxt "prime_blob_enable description"
  2913. 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."
  2914. msgstr "Indica 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."
  2915. #: fdmprinter.def.json
  2916. msgctxt "extruder_prime_pos_x label"
  2917. msgid "Extruder Prime X Position"
  2918. msgstr "Posição X da Purga do Extrusor"
  2919. #: fdmprinter.def.json
  2920. msgctxt "extruder_prime_pos_x description"
  2921. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2922. msgstr "A coordenada X da posição onde o bico faz a purga no início da impressão."
  2923. #: fdmprinter.def.json
  2924. msgctxt "extruder_prime_pos_y label"
  2925. msgid "Extruder Prime Y Position"
  2926. msgstr "Posição Y da Purga do Extrusor"
  2927. #: fdmprinter.def.json
  2928. msgctxt "extruder_prime_pos_y description"
  2929. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2930. msgstr "A coordenada Y da posição onde o bico faz a purga no início da impressão."
  2931. #: fdmprinter.def.json
  2932. msgctxt "adhesion_type label"
  2933. msgid "Build Plate Adhesion Type"
  2934. msgstr "Tipo de Aderência da Mesa de Impressão"
  2935. #: fdmprinter.def.json
  2936. msgctxt "adhesion_type description"
  2937. 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."
  2938. msgstr "Diferentes opções que ajudam a melhorar a extrusão e a aderência à plataforma de construçã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."
  2939. #: fdmprinter.def.json
  2940. msgctxt "adhesion_type option skirt"
  2941. msgid "Skirt"
  2942. msgstr "Skirt"
  2943. #: fdmprinter.def.json
  2944. msgctxt "adhesion_type option brim"
  2945. msgid "Brim"
  2946. msgstr "Brim"
  2947. #: fdmprinter.def.json
  2948. msgctxt "adhesion_type option raft"
  2949. msgid "Raft"
  2950. msgstr "Raft"
  2951. #: fdmprinter.def.json
  2952. msgctxt "adhesion_type option none"
  2953. msgid "None"
  2954. msgstr "Nenhuma"
  2955. #: fdmprinter.def.json
  2956. msgctxt "adhesion_extruder_nr label"
  2957. msgid "Build Plate Adhesion Extruder"
  2958. msgstr "Extrusor de Aderência à Mesa"
  2959. #: fdmprinter.def.json
  2960. msgctxt "adhesion_extruder_nr description"
  2961. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2962. msgstr "O extrusor usado ara imprimir skirt, brim ou raft. Usado em multi-extrusão."
  2963. #: fdmprinter.def.json
  2964. msgctxt "skirt_line_count label"
  2965. msgid "Skirt Line Count"
  2966. msgstr "Contagem de linhas de Skirt"
  2967. #: fdmprinter.def.json
  2968. msgctxt "skirt_line_count description"
  2969. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2970. 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."
  2971. #: fdmprinter.def.json
  2972. msgctxt "skirt_gap label"
  2973. msgid "Skirt Distance"
  2974. msgstr "Distância do Skirt"
  2975. #: fdmprinter.def.json
  2976. msgctxt "skirt_gap description"
  2977. msgid ""
  2978. "The horizontal distance between the skirt and the first layer of the print.\n"
  2979. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2980. msgstr ""
  2981. "A distância horizontal entre o skirt a primeira camada da impressão.\n"
  2982. "Esta é a distância mínima. Linhas múltiplas de skirt estenderão além desta distância."
  2983. #: fdmprinter.def.json
  2984. msgctxt "skirt_brim_minimal_length label"
  2985. msgid "Skirt/Brim Minimum Length"
  2986. msgstr "Mínimo Comprimento do Skirt e Brim"
  2987. #: fdmprinter.def.json
  2988. msgctxt "skirt_brim_minimal_length description"
  2989. 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."
  2990. 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."
  2991. #: fdmprinter.def.json
  2992. msgctxt "brim_width label"
  2993. msgid "Brim Width"
  2994. msgstr "Largura do Brim"
  2995. #: fdmprinter.def.json
  2996. msgctxt "brim_width description"
  2997. 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."
  2998. 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."
  2999. #: fdmprinter.def.json
  3000. msgctxt "brim_line_count label"
  3001. msgid "Brim Line Count"
  3002. msgstr "Contagem de Linhas do Brim"
  3003. #: fdmprinter.def.json
  3004. msgctxt "brim_line_count description"
  3005. 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."
  3006. 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."
  3007. #: fdmprinter.def.json
  3008. msgctxt "brim_outside_only label"
  3009. msgid "Brim Only on Outside"
  3010. msgstr "Brim Somente Para Fora"
  3011. #: fdmprinter.def.json
  3012. msgctxt "brim_outside_only description"
  3013. 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."
  3014. 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."
  3015. #: fdmprinter.def.json
  3016. msgctxt "raft_margin label"
  3017. msgid "Raft Extra Margin"
  3018. msgstr "Margem Adicional do Raft"
  3019. #: fdmprinter.def.json
  3020. msgctxt "raft_margin description"
  3021. 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."
  3022. 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."
  3023. #: fdmprinter.def.json
  3024. msgctxt "raft_smoothing label"
  3025. msgid "Raft Smoothing"
  3026. msgstr "Amaciamento do Raft"
  3027. #: fdmprinter.def.json
  3028. msgctxt "raft_smoothing description"
  3029. 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."
  3030. 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."
  3031. #: fdmprinter.def.json
  3032. msgctxt "raft_airgap label"
  3033. msgid "Raft Air Gap"
  3034. msgstr "Vão Aéreo do Raft"
  3035. #: fdmprinter.def.json
  3036. msgctxt "raft_airgap description"
  3037. 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."
  3038. 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."
  3039. #: fdmprinter.def.json
  3040. msgctxt "layer_0_z_overlap label"
  3041. msgid "Initial Layer Z Overlap"
  3042. msgstr "Sobreposição em Z das Camadas Iniciais"
  3043. #: fdmprinter.def.json
  3044. msgctxt "layer_0_z_overlap description"
  3045. 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."
  3046. 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."
  3047. #: fdmprinter.def.json
  3048. msgctxt "raft_surface_layers label"
  3049. msgid "Raft Top Layers"
  3050. msgstr "Camadas Superiores do Raft"
  3051. #: fdmprinter.def.json
  3052. msgctxt "raft_surface_layers description"
  3053. 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."
  3054. 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."
  3055. #: fdmprinter.def.json
  3056. msgctxt "raft_surface_thickness label"
  3057. msgid "Raft Top Layer Thickness"
  3058. msgstr "Espessura da Camada Superior do Raft"
  3059. #: fdmprinter.def.json
  3060. msgctxt "raft_surface_thickness description"
  3061. msgid "Layer thickness of the top raft layers."
  3062. msgstr "Espessura de camada das camadas superiores do raft"
  3063. #: fdmprinter.def.json
  3064. msgctxt "raft_surface_line_width label"
  3065. msgid "Raft Top Line Width"
  3066. msgstr "Largura do Filete Superior do Raft"
  3067. #: fdmprinter.def.json
  3068. msgctxt "raft_surface_line_width description"
  3069. 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."
  3070. msgstr "Largura das linhas na superfície superior do raft. Estas podem ser linhas finas de modo que o topo do raft fique liso."
  3071. #: fdmprinter.def.json
  3072. msgctxt "raft_surface_line_spacing label"
  3073. msgid "Raft Top Spacing"
  3074. msgstr "Espaçamento Superior do Raft"
  3075. #: fdmprinter.def.json
  3076. msgctxt "raft_surface_line_spacing description"
  3077. 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."
  3078. 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."
  3079. #: fdmprinter.def.json
  3080. msgctxt "raft_interface_thickness label"
  3081. msgid "Raft Middle Thickness"
  3082. msgstr "Espessura do Meio do Raft"
  3083. #: fdmprinter.def.json
  3084. msgctxt "raft_interface_thickness description"
  3085. msgid "Layer thickness of the middle raft layer."
  3086. msgstr "Espessura da camada intermediária do raft."
  3087. #: fdmprinter.def.json
  3088. msgctxt "raft_interface_line_width label"
  3089. msgid "Raft Middle Line Width"
  3090. msgstr "Largura da Linha do Meio do Raft"
  3091. #: fdmprinter.def.json
  3092. msgctxt "raft_interface_line_width description"
  3093. 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."
  3094. msgstr "Largura das linhas na camada intermediária do raft. Fazer a segunda camada extrudar mais faz as linhas grudarem melhor na mesa."
  3095. #: fdmprinter.def.json
  3096. msgctxt "raft_interface_line_spacing label"
  3097. msgid "Raft Middle Spacing"
  3098. msgstr "Espaçamento do Meio do Raft"
  3099. #: fdmprinter.def.json
  3100. msgctxt "raft_interface_line_spacing description"
  3101. 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."
  3102. 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."
  3103. #: fdmprinter.def.json
  3104. msgctxt "raft_base_thickness label"
  3105. msgid "Raft Base Thickness"
  3106. msgstr "Espessura da Base do Raft"
  3107. #: fdmprinter.def.json
  3108. msgctxt "raft_base_thickness description"
  3109. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3110. msgstr "Espessura de camada da camada de base do raft. Esta camada deve ser grossa para poder aderir firmemente à mesa."
  3111. #: fdmprinter.def.json
  3112. msgctxt "raft_base_line_width label"
  3113. msgid "Raft Base Line Width"
  3114. msgstr "Largura de Linha da Base do Raft"
  3115. #: fdmprinter.def.json
  3116. msgctxt "raft_base_line_width description"
  3117. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3118. msgstr "Largura das linhas na camada de base do raft. Devem ser grossas para auxiliar na aderência à mesa."
  3119. #: fdmprinter.def.json
  3120. msgctxt "raft_base_line_spacing label"
  3121. msgid "Raft Line Spacing"
  3122. msgstr "Espaçamento de Linhas do Raft"
  3123. #: fdmprinter.def.json
  3124. msgctxt "raft_base_line_spacing description"
  3125. 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."
  3126. 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."
  3127. #: fdmprinter.def.json
  3128. msgctxt "raft_speed label"
  3129. msgid "Raft Print Speed"
  3130. msgstr "Velocidade de Impressão do Raft"
  3131. #: fdmprinter.def.json
  3132. msgctxt "raft_speed description"
  3133. msgid "The speed at which the raft is printed."
  3134. msgstr "A velocidade em que o raft é impresso."
  3135. #: fdmprinter.def.json
  3136. msgctxt "raft_surface_speed label"
  3137. msgid "Raft Top Print Speed"
  3138. msgstr "Velocidade de Impressão do Topo do Raft"
  3139. #: fdmprinter.def.json
  3140. msgctxt "raft_surface_speed description"
  3141. 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."
  3142. 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."
  3143. #: fdmprinter.def.json
  3144. msgctxt "raft_interface_speed label"
  3145. msgid "Raft Middle Print Speed"
  3146. msgstr "Velocidade de Impressão do Meio do Raft"
  3147. #: fdmprinter.def.json
  3148. msgctxt "raft_interface_speed description"
  3149. 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."
  3150. 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."
  3151. #: fdmprinter.def.json
  3152. msgctxt "raft_base_speed label"
  3153. msgid "Raft Base Print Speed"
  3154. msgstr "Velocidade de Impressão da Base do Raft"
  3155. #: fdmprinter.def.json
  3156. msgctxt "raft_base_speed description"
  3157. 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."
  3158. 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."
  3159. #: fdmprinter.def.json
  3160. msgctxt "raft_acceleration label"
  3161. msgid "Raft Print Acceleration"
  3162. msgstr "Aceleração de Impressão do Raft"
  3163. #: fdmprinter.def.json
  3164. msgctxt "raft_acceleration description"
  3165. msgid "The acceleration with which the raft is printed."
  3166. msgstr "A aceleração com que o raft é impresso."
  3167. #: fdmprinter.def.json
  3168. msgctxt "raft_surface_acceleration label"
  3169. msgid "Raft Top Print Acceleration"
  3170. msgstr "Aceleração de Impressão do Topo do Raft"
  3171. #: fdmprinter.def.json
  3172. msgctxt "raft_surface_acceleration description"
  3173. msgid "The acceleration with which the top raft layers are printed."
  3174. msgstr "A aceleração com que as camadas superiores do raft são impressas."
  3175. #: fdmprinter.def.json
  3176. msgctxt "raft_interface_acceleration label"
  3177. msgid "Raft Middle Print Acceleration"
  3178. msgstr "Aceleração de Impressão do Meio do Raft"
  3179. #: fdmprinter.def.json
  3180. msgctxt "raft_interface_acceleration description"
  3181. msgid "The acceleration with which the middle raft layer is printed."
  3182. msgstr "A aceleração com que a camada intermediária do raft é impressa."
  3183. #: fdmprinter.def.json
  3184. msgctxt "raft_base_acceleration label"
  3185. msgid "Raft Base Print Acceleration"
  3186. msgstr "Aceleração de Impressão da Base do Raft"
  3187. #: fdmprinter.def.json
  3188. msgctxt "raft_base_acceleration description"
  3189. msgid "The acceleration with which the base raft layer is printed."
  3190. msgstr "A aceleração com que as camadas de base do raft são impressas."
  3191. #: fdmprinter.def.json
  3192. msgctxt "raft_jerk label"
  3193. msgid "Raft Print Jerk"
  3194. msgstr "Jerk de Impressão do Raft"
  3195. #: fdmprinter.def.json
  3196. msgctxt "raft_jerk description"
  3197. msgid "The jerk with which the raft is printed."
  3198. msgstr "O jerk com o qual o raft é impresso."
  3199. #: fdmprinter.def.json
  3200. msgctxt "raft_surface_jerk label"
  3201. msgid "Raft Top Print Jerk"
  3202. msgstr "Jerk de Impressão do Topo do Raft"
  3203. #: fdmprinter.def.json
  3204. msgctxt "raft_surface_jerk description"
  3205. msgid "The jerk with which the top raft layers are printed."
  3206. msgstr "O jerk com o qual as camadas superiores do raft são impressas."
  3207. #: fdmprinter.def.json
  3208. msgctxt "raft_interface_jerk label"
  3209. msgid "Raft Middle Print Jerk"
  3210. msgstr "Jerk de Impressão do Meio do Raft"
  3211. #: fdmprinter.def.json
  3212. msgctxt "raft_interface_jerk description"
  3213. msgid "The jerk with which the middle raft layer is printed."
  3214. msgstr "O jerk com o qual a camada intermediária do raft é impressa."
  3215. #: fdmprinter.def.json
  3216. msgctxt "raft_base_jerk label"
  3217. msgid "Raft Base Print Jerk"
  3218. msgstr "Jerk de Impressão da Base do Raft"
  3219. #: fdmprinter.def.json
  3220. msgctxt "raft_base_jerk description"
  3221. msgid "The jerk with which the base raft layer is printed."
  3222. msgstr "O jerk com o qual a camada de base do raft é impressa."
  3223. #: fdmprinter.def.json
  3224. msgctxt "raft_fan_speed label"
  3225. msgid "Raft Fan Speed"
  3226. msgstr "Velocidade de Ventoinha no Raft"
  3227. #: fdmprinter.def.json
  3228. msgctxt "raft_fan_speed description"
  3229. msgid "The fan speed for the raft."
  3230. msgstr "A velocidade da ventoinha para a impressão do raft."
  3231. #: fdmprinter.def.json
  3232. msgctxt "raft_surface_fan_speed label"
  3233. msgid "Raft Top Fan Speed"
  3234. msgstr "Velocidade da Ventoinha para o Topo do Raft"
  3235. #: fdmprinter.def.json
  3236. msgctxt "raft_surface_fan_speed description"
  3237. msgid "The fan speed for the top raft layers."
  3238. msgstr "A velocidade da ventoinha para as camadas superiores do raft."
  3239. #: fdmprinter.def.json
  3240. msgctxt "raft_interface_fan_speed label"
  3241. msgid "Raft Middle Fan Speed"
  3242. msgstr "Velocidade de Ventoinha do Meio do Raft"
  3243. #: fdmprinter.def.json
  3244. msgctxt "raft_interface_fan_speed description"
  3245. msgid "The fan speed for the middle raft layer."
  3246. msgstr "A velocidade de ventoina para a camada intermediária do raft."
  3247. #: fdmprinter.def.json
  3248. msgctxt "raft_base_fan_speed label"
  3249. msgid "Raft Base Fan Speed"
  3250. msgstr "Velocidade de Ventoinha da Base do Raft"
  3251. #: fdmprinter.def.json
  3252. msgctxt "raft_base_fan_speed description"
  3253. msgid "The fan speed for the base raft layer."
  3254. msgstr "A velocidade de ventoinha para a camada base do raft."
  3255. #: fdmprinter.def.json
  3256. msgctxt "dual label"
  3257. msgid "Dual Extrusion"
  3258. msgstr "Extrusão Dual"
  3259. #: fdmprinter.def.json
  3260. msgctxt "dual description"
  3261. msgid "Settings used for printing with multiple extruders."
  3262. msgstr "Ajustes usados para imprimir com vários extrusores."
  3263. #: fdmprinter.def.json
  3264. msgctxt "prime_tower_enable label"
  3265. msgid "Enable Prime Tower"
  3266. msgstr "Habilitar Torre de Purga"
  3267. #: fdmprinter.def.json
  3268. msgctxt "prime_tower_enable description"
  3269. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3270. msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico."
  3271. #: fdmprinter.def.json
  3272. msgctxt "prime_tower_circular label"
  3273. msgid "Circular Prime Tower"
  3274. msgstr "Torre de Prime Circular"
  3275. #: fdmprinter.def.json
  3276. msgctxt "prime_tower_circular description"
  3277. msgid "Make the prime tower as a circular shape."
  3278. msgstr "Faz a torre de prime na forma circular."
  3279. #: fdmprinter.def.json
  3280. msgctxt "prime_tower_size label"
  3281. msgid "Prime Tower Size"
  3282. msgstr "Tamanho da Torre de Purga"
  3283. #: fdmprinter.def.json
  3284. msgctxt "prime_tower_size description"
  3285. msgid "The width of the prime tower."
  3286. msgstr "A largura da torre de purga."
  3287. #: fdmprinter.def.json
  3288. msgctxt "prime_tower_min_volume label"
  3289. msgid "Prime Tower Minimum Volume"
  3290. msgstr "Volume Mínimo da Torre de Purga"
  3291. #: fdmprinter.def.json
  3292. msgctxt "prime_tower_min_volume description"
  3293. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3294. msgstr "O volume mínimo para cada camada da torre de purga de forma a purgar material suficiente."
  3295. #: fdmprinter.def.json
  3296. msgctxt "prime_tower_wall_thickness label"
  3297. msgid "Prime Tower Thickness"
  3298. msgstr "Espessura da Torre de Purga"
  3299. #: fdmprinter.def.json
  3300. msgctxt "prime_tower_wall_thickness description"
  3301. msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  3302. msgstr "A espessura da torre de purga (que é oca). Uma espessura maior que a metade do volume mínimo da torre de purga resultará em uma torre de purga densa."
  3303. #: fdmprinter.def.json
  3304. msgctxt "prime_tower_position_x label"
  3305. msgid "Prime Tower X Position"
  3306. msgstr "Posição X da Torre de Purga"
  3307. #: fdmprinter.def.json
  3308. msgctxt "prime_tower_position_x description"
  3309. msgid "The x coordinate of the position of the prime tower."
  3310. msgstr "A coordenada X da posição da torre de purga."
  3311. #: fdmprinter.def.json
  3312. msgctxt "prime_tower_position_y label"
  3313. msgid "Prime Tower Y Position"
  3314. msgstr "Posição Y da Torre de Purga"
  3315. #: fdmprinter.def.json
  3316. msgctxt "prime_tower_position_y description"
  3317. msgid "The y coordinate of the position of the prime tower."
  3318. msgstr "A coordenada Y da posição da torre de purga."
  3319. #: fdmprinter.def.json
  3320. msgctxt "prime_tower_flow label"
  3321. msgid "Prime Tower Flow"
  3322. msgstr "Fluxo da Torre de Purga"
  3323. #: fdmprinter.def.json
  3324. msgctxt "prime_tower_flow description"
  3325. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  3326. msgstr "Compensação de Fluxo: a quantidade de material extrudado é multiplicado por este valor."
  3327. #: fdmprinter.def.json
  3328. msgctxt "prime_tower_wipe_enabled label"
  3329. msgid "Wipe Inactive Nozzle on Prime Tower"
  3330. msgstr "Limpar Bico Inativo na Torre de Purga"
  3331. #: fdmprinter.def.json
  3332. msgctxt "prime_tower_wipe_enabled description"
  3333. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3334. msgstr "Depois de imprimir a torre de purga com um bico, limpar o material escorrendo do outro bico na torre de purga."
  3335. #: fdmprinter.def.json
  3336. msgctxt "dual_pre_wipe label"
  3337. msgid "Wipe Nozzle After Switch"
  3338. msgstr "Limpar Bico Depois da Troca"
  3339. #: fdmprinter.def.json
  3340. msgctxt "dual_pre_wipe description"
  3341. msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  3342. msgstr "Depois de trocar extrusores, limpar o material escorrendo do bico na primeira peça impressa. Isso causa um movimento lento de limpeza do bico em um lugar onde o material escorrido causa o menor dano à qualidade de superfície da sua impressão."
  3343. #: fdmprinter.def.json
  3344. msgctxt "prime_tower_purge_volume label"
  3345. msgid "Prime Tower Purge Volume"
  3346. msgstr "Volume de Purga da Torre de Purga"
  3347. #: fdmprinter.def.json
  3348. msgctxt "prime_tower_purge_volume description"
  3349. msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  3350. msgstr "Quantidade de filamento a ser purgado na torre de purga. A purga é útil para compensar filamento perdido por escorrimento durante inatividade do bico."
  3351. #: fdmprinter.def.json
  3352. msgctxt "ooze_shield_enabled label"
  3353. msgid "Enable Ooze Shield"
  3354. msgstr "Habilitar Cobertura de Escorrimento"
  3355. #: fdmprinter.def.json
  3356. msgctxt "ooze_shield_enabled description"
  3357. 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."
  3358. 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."
  3359. #: fdmprinter.def.json
  3360. msgctxt "ooze_shield_angle label"
  3361. msgid "Ooze Shield Angle"
  3362. msgstr "Ângulo da Cobertura de Escorrimento"
  3363. #: fdmprinter.def.json
  3364. msgctxt "ooze_shield_angle description"
  3365. 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."
  3366. 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."
  3367. #: fdmprinter.def.json
  3368. msgctxt "ooze_shield_dist label"
  3369. msgid "Ooze Shield Distance"
  3370. msgstr "Distância da Cobertura de Escorrimento"
  3371. #: fdmprinter.def.json
  3372. msgctxt "ooze_shield_dist description"
  3373. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3374. msgstr "Distância da cobertura de escorrimento da impressão nas direções X e Y."
  3375. #: fdmprinter.def.json
  3376. msgctxt "meshfix label"
  3377. msgid "Mesh Fixes"
  3378. msgstr "Correções de Malha"
  3379. #: fdmprinter.def.json
  3380. msgctxt "meshfix description"
  3381. msgid "category_fixes"
  3382. msgstr "reparos_de_categoria"
  3383. #: fdmprinter.def.json
  3384. msgctxt "meshfix_union_all label"
  3385. msgid "Union Overlapping Volumes"
  3386. msgstr "Volumes de Sobreposição de Uniões"
  3387. #: fdmprinter.def.json
  3388. msgctxt "meshfix_union_all description"
  3389. 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."
  3390. 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."
  3391. #: fdmprinter.def.json
  3392. msgctxt "meshfix_union_all_remove_holes label"
  3393. msgid "Remove All Holes"
  3394. msgstr "Remover Todos os Furos"
  3395. #: fdmprinter.def.json
  3396. msgctxt "meshfix_union_all_remove_holes description"
  3397. 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."
  3398. 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."
  3399. #: fdmprinter.def.json
  3400. msgctxt "meshfix_extensive_stitching label"
  3401. msgid "Extensive Stitching"
  3402. msgstr "Costura Extensa"
  3403. #: fdmprinter.def.json
  3404. msgctxt "meshfix_extensive_stitching description"
  3405. 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."
  3406. msgstr "Costura Extensa tenta costurar buracos abertos na malha fechando o buraco com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças."
  3407. #: fdmprinter.def.json
  3408. msgctxt "meshfix_keep_open_polygons label"
  3409. msgid "Keep Disconnected Faces"
  3410. msgstr "Manter Faces Desconectadas"
  3411. #: fdmprinter.def.json
  3412. msgctxt "meshfix_keep_open_polygons description"
  3413. 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."
  3414. msgstr "Normalmente o Cura tenta costurar pequenos furos na malha e remover partes de uma camada com grandes buracos. 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."
  3415. #: fdmprinter.def.json
  3416. msgctxt "multiple_mesh_overlap label"
  3417. msgid "Merged Meshes Overlap"
  3418. msgstr "Sobreposição de Malhas Combinadas"
  3419. #: fdmprinter.def.json
  3420. msgctxt "multiple_mesh_overlap description"
  3421. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3422. msgstr "Faz malhas que tocam uma à outra se sobreporem um pouco. Isto faz com que elas se combinem com mais força."
  3423. #: fdmprinter.def.json
  3424. msgctxt "carve_multiple_volumes label"
  3425. msgid "Remove Mesh Intersection"
  3426. msgstr "Remover Interseções de Malha"
  3427. #: fdmprinter.def.json
  3428. msgctxt "carve_multiple_volumes description"
  3429. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3430. 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."
  3431. #: fdmprinter.def.json
  3432. msgctxt "alternate_carve_order label"
  3433. msgid "Alternate Mesh Removal"
  3434. msgstr "Alternar a Remoção de Malhas"
  3435. #: fdmprinter.def.json
  3436. msgctxt "alternate_carve_order description"
  3437. 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."
  3438. 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."
  3439. #: fdmprinter.def.json
  3440. msgctxt "remove_empty_first_layers label"
  3441. msgid "Remove Empty First Layers"
  3442. msgstr "Remover Camadas Iniciais Vazias"
  3443. #: fdmprinter.def.json
  3444. msgctxt "remove_empty_first_layers description"
  3445. 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."
  3446. 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."
  3447. #: fdmprinter.def.json
  3448. msgctxt "blackmagic label"
  3449. msgid "Special Modes"
  3450. msgstr "Modos Especiais"
  3451. #: fdmprinter.def.json
  3452. msgctxt "blackmagic description"
  3453. msgid "category_blackmagic"
  3454. msgstr "categoria_blackmagic"
  3455. #: fdmprinter.def.json
  3456. msgctxt "print_sequence label"
  3457. msgid "Print Sequence"
  3458. msgstr "Sequência de Impressão"
  3459. #: fdmprinter.def.json
  3460. msgctxt "print_sequence description"
  3461. 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 only possible if 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."
  3462. msgstr "Esta opção decide se vocÊ deseja imprimir todos os modelos de uma só vez ou um modelo de cada vez. O modo de um modelo de cada vez só é possível se os modelos estiverem separados de tal forma que a cabeça de impressão possa se mover no meio e todos os modelos sejam mais baixos que a distância entre o bico e os carros X ou Y."
  3463. #: fdmprinter.def.json
  3464. msgctxt "print_sequence option all_at_once"
  3465. msgid "All at Once"
  3466. msgstr "Todos de Uma Vez"
  3467. #: fdmprinter.def.json
  3468. msgctxt "print_sequence option one_at_a_time"
  3469. msgid "One at a Time"
  3470. msgstr "Um de Cada Vez"
  3471. #: fdmprinter.def.json
  3472. msgctxt "infill_mesh label"
  3473. msgid "Infill Mesh"
  3474. msgstr "Malha de Preenchimento"
  3475. #: fdmprinter.def.json
  3476. msgctxt "infill_mesh description"
  3477. 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."
  3478. 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."
  3479. #: fdmprinter.def.json
  3480. msgctxt "infill_mesh_order label"
  3481. msgid "Infill Mesh Order"
  3482. msgstr "Order das Malhas de Preenchimento"
  3483. #: fdmprinter.def.json
  3484. msgctxt "infill_mesh_order description"
  3485. msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  3486. msgstr "Determina que malha de preenchimento está dentro do preenchimento de outra malha de preenchimento. Uma malha de preenchimento com ordem mais alta modificará o preenchimento de malhas de preenchimento com ordem mais baixa e malhas normais."
  3487. #: fdmprinter.def.json
  3488. msgctxt "cutting_mesh label"
  3489. msgid "Cutting Mesh"
  3490. msgstr "Malha de Corte"
  3491. #: fdmprinter.def.json
  3492. msgctxt "cutting_mesh description"
  3493. 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."
  3494. 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."
  3495. #: fdmprinter.def.json
  3496. msgctxt "mold_enabled label"
  3497. msgid "Mold"
  3498. msgstr "Molde"
  3499. #: fdmprinter.def.json
  3500. msgctxt "mold_enabled description"
  3501. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3502. msgstr "Imprimir modelos como moldes com o negativo das peças de modo que se possa encher de resina para as gerar."
  3503. #: fdmprinter.def.json
  3504. msgctxt "mold_width label"
  3505. msgid "Minimal Mold Width"
  3506. msgstr "Largura Mínima do Molde"
  3507. #: fdmprinter.def.json
  3508. msgctxt "mold_width description"
  3509. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  3510. msgstr "A distância mínima entre o exterior do molde e do modelo."
  3511. #: fdmprinter.def.json
  3512. msgctxt "mold_roof_height label"
  3513. msgid "Mold Roof Height"
  3514. msgstr "Altura de Teto do Molde"
  3515. #: fdmprinter.def.json
  3516. msgctxt "mold_roof_height description"
  3517. msgid "The height above horizontal parts in your model which to print mold."
  3518. msgstr "A altura acima das partes horizontais do modelo onde criar o molde."
  3519. #: fdmprinter.def.json
  3520. msgctxt "mold_angle label"
  3521. msgid "Mold Angle"
  3522. msgstr "Ângulo do Molde"
  3523. #: fdmprinter.def.json
  3524. msgctxt "mold_angle description"
  3525. 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."
  3526. 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."
  3527. #: fdmprinter.def.json
  3528. msgctxt "support_mesh label"
  3529. msgid "Support Mesh"
  3530. msgstr "Malha de Suporte"
  3531. #: fdmprinter.def.json
  3532. msgctxt "support_mesh description"
  3533. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3534. msgstr "Use esta malha para especificar áreas obrigatoriamente suportadas. Isto será usado para gerar estruturas de suporte."
  3535. #: fdmprinter.def.json
  3536. msgctxt "anti_overhang_mesh label"
  3537. msgid "Anti Overhang Mesh"
  3538. msgstr "Malha Anti-Pendente"
  3539. #: fdmprinter.def.json
  3540. msgctxt "anti_overhang_mesh description"
  3541. 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."
  3542. 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."
  3543. #: fdmprinter.def.json
  3544. msgctxt "magic_mesh_surface_mode label"
  3545. msgid "Surface Mode"
  3546. msgstr "Modo de Superficie"
  3547. #: fdmprinter.def.json
  3548. msgctxt "magic_mesh_surface_mode description"
  3549. 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."
  3550. 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."
  3551. #: fdmprinter.def.json
  3552. msgctxt "magic_mesh_surface_mode option normal"
  3553. msgid "Normal"
  3554. msgstr "Normal"
  3555. #: fdmprinter.def.json
  3556. msgctxt "magic_mesh_surface_mode option surface"
  3557. msgid "Surface"
  3558. msgstr "Superfície"
  3559. #: fdmprinter.def.json
  3560. msgctxt "magic_mesh_surface_mode option both"
  3561. msgid "Both"
  3562. msgstr "Ambos"
  3563. #: fdmprinter.def.json
  3564. msgctxt "magic_spiralize label"
  3565. msgid "Spiralize Outer Contour"
  3566. msgstr "Espiralizar o Contorno Externo"
  3567. #: fdmprinter.def.json
  3568. msgctxt "magic_spiralize description"
  3569. 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."
  3570. 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."
  3571. #: fdmprinter.def.json
  3572. msgctxt "smooth_spiralized_contours label"
  3573. msgid "Smooth Spiralized Contours"
  3574. msgstr "Suavizar Contornos Espiralizados"
  3575. #: fdmprinter.def.json
  3576. msgctxt "smooth_spiralized_contours description"
  3577. 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."
  3578. msgstr "Suaviza os contornos espiralizados para reduzir a visibilidade da costura em Z (esta costura será quase invisível na impressão mas ainda pode ser vista na visão de camadas). Note que suavizar tenderá a remover detalhes finos de superfície."
  3579. #: fdmprinter.def.json
  3580. msgctxt "relative_extrusion label"
  3581. msgid "Relative Extrusion"
  3582. msgstr "Extrusão Relativa"
  3583. #: fdmprinter.def.json
  3584. msgctxt "relative_extrusion description"
  3585. 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."
  3586. 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."
  3587. #: fdmprinter.def.json
  3588. msgctxt "experimental label"
  3589. msgid "Experimental"
  3590. msgstr "Experimental"
  3591. #: fdmprinter.def.json
  3592. msgctxt "experimental description"
  3593. msgid "experimental!"
  3594. msgstr "experimental!"
  3595. #: fdmprinter.def.json
  3596. msgctxt "support_tree_enable label"
  3597. msgid "Tree Support"
  3598. msgstr "Suporte de Árvore"
  3599. #: fdmprinter.def.json
  3600. msgctxt "support_tree_enable description"
  3601. msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  3602. msgstr "Gera um suporte em árvore com galhos que apóiam sua impressão. Isto pode reduzir uso de material e tempo de impressão, mas aumenta bastante o tempo de fatiamento."
  3603. #: fdmprinter.def.json
  3604. msgctxt "support_tree_angle label"
  3605. msgid "Tree Support Branch Angle"
  3606. msgstr "Ângulo do Galho do Suporte em Árvore"
  3607. #: fdmprinter.def.json
  3608. msgctxt "support_tree_angle description"
  3609. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  3610. msgstr "Ô angulo dos galhos. Use um ângulo menor para torná-los mais verticais e mais estáveis. Use um ângulo maior para aumentar o alcance."
  3611. #: fdmprinter.def.json
  3612. msgctxt "support_tree_branch_distance label"
  3613. msgid "Tree Support Branch Distance"
  3614. msgstr "Distância dos Galhos do Suporte em Árvore"
  3615. #: fdmprinter.def.json
  3616. msgctxt "support_tree_branch_distance description"
  3617. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  3618. msgstr "Quão distantes os galhos precisam estar quando tocam o modelo. Tornar esta distância pequena fará com que o suporte em árvore toque o modelo em mais pontos, permitindo maior sustentação mas tornando o suporte mais difícil de remover."
  3619. #: fdmprinter.def.json
  3620. msgctxt "support_tree_branch_diameter label"
  3621. msgid "Tree Support Branch Diameter"
  3622. msgstr "Diâmetro de Galho do Suporte em Árvore"
  3623. #: fdmprinter.def.json
  3624. msgctxt "support_tree_branch_diameter description"
  3625. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3626. 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."
  3627. #: fdmprinter.def.json
  3628. msgctxt "support_tree_branch_diameter_angle label"
  3629. msgid "Tree Support Branch Diameter Angle"
  3630. msgstr "Ângulo do Diâmetro do Galho do Suporte em Árvore"
  3631. #: fdmprinter.def.json
  3632. msgctxt "support_tree_branch_diameter_angle description"
  3633. 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."
  3634. 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."
  3635. #: fdmprinter.def.json
  3636. msgctxt "support_tree_collision_resolution label"
  3637. msgid "Tree Support Collision Resolution"
  3638. msgstr "Resolução de Colisão do Suporte em Árvore"
  3639. #: fdmprinter.def.json
  3640. msgctxt "support_tree_collision_resolution description"
  3641. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  3642. msgstr "Resolução para computar colisões com a qual evitar tocar o modelo. Ajustar valor mais baixos produzirá árvore mais precisas que falharão menos, mas aumentará o tempo de fatiamento dramaticamente."
  3643. #: fdmprinter.def.json
  3644. msgctxt "support_tree_wall_thickness label"
  3645. msgid "Tree Support Wall Thickness"
  3646. msgstr "Espessura de Parede do Suporte em Árvore"
  3647. #: fdmprinter.def.json
  3648. msgctxt "support_tree_wall_thickness description"
  3649. msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3650. msgstr "A espessura das paredes dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
  3651. #: fdmprinter.def.json
  3652. msgctxt "support_tree_wall_count label"
  3653. msgid "Tree Support Wall Line Count"
  3654. msgstr "Número de Filetes da Parede do Suporte em Árvore"
  3655. #: fdmprinter.def.json
  3656. msgctxt "support_tree_wall_count description"
  3657. msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3658. msgstr "O número de filetes da parede dos galhos do suporte em árvore. Paredes mais espessas tomarão mais tempo pra imprimir mas não tombarão facilmente."
  3659. #: fdmprinter.def.json
  3660. msgctxt "slicing_tolerance label"
  3661. msgid "Slicing Tolerance"
  3662. msgstr "Tolerância de Fatiamento"
  3663. #: fdmprinter.def.json
  3664. msgctxt "slicing_tolerance description"
  3665. msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  3666. msgstr "Como fatiar camadas com superfícies diagonais. As áreas de uma camada podem ser geradas baseadas em onde o meio da camada interseciona a superfície (Meio). Alternativamente, cada camada pode ter as áreas que se encontram dentro do volume por toda a altura da camada (Exclusivo) ou a camada pode abranger todas as áreas que tenham qualquer penetração dentro do volume (Inclusivo). Exclusivo retém mais detalhes, Inclusivo é melhor para encaixes e Meio toma menos tempo para processar."
  3667. #: fdmprinter.def.json
  3668. msgctxt "slicing_tolerance option middle"
  3669. msgid "Middle"
  3670. msgstr "Meio"
  3671. #: fdmprinter.def.json
  3672. msgctxt "slicing_tolerance option exclusive"
  3673. msgid "Exclusive"
  3674. msgstr "Exclusivo"
  3675. #: fdmprinter.def.json
  3676. msgctxt "slicing_tolerance option inclusive"
  3677. msgid "Inclusive"
  3678. msgstr "Inclusivo"
  3679. #: fdmprinter.def.json
  3680. msgctxt "roofing_line_width label"
  3681. msgid "Top Surface Skin Line Width"
  3682. msgstr "Largura de extrusão da Superfície Superior"
  3683. #: fdmprinter.def.json
  3684. msgctxt "roofing_line_width description"
  3685. msgid "Width of a single line of the areas at the top of the print."
  3686. msgstr "Largura de extrusão de um filete das áreas no topo da peça."
  3687. #: fdmprinter.def.json
  3688. msgctxt "roofing_pattern label"
  3689. msgid "Top Surface Skin Pattern"
  3690. msgstr "Padrão da Superfície Superior"
  3691. #: fdmprinter.def.json
  3692. msgctxt "roofing_pattern description"
  3693. msgid "The pattern of the top most layers."
  3694. msgstr "O padrão das camadas superiores."
  3695. #: fdmprinter.def.json
  3696. msgctxt "roofing_pattern option lines"
  3697. msgid "Lines"
  3698. msgstr "Linhas"
  3699. #: fdmprinter.def.json
  3700. msgctxt "roofing_pattern option concentric"
  3701. msgid "Concentric"
  3702. msgstr "Concêntrico"
  3703. #: fdmprinter.def.json
  3704. msgctxt "roofing_pattern option zigzag"
  3705. msgid "Zig Zag"
  3706. msgstr "Ziguezague"
  3707. #: fdmprinter.def.json
  3708. msgctxt "roofing_angles label"
  3709. msgid "Top Surface Skin Line Directions"
  3710. msgstr "Direções dos Filetes da Superfície Superior"
  3711. #: fdmprinter.def.json
  3712. msgctxt "roofing_angles description"
  3713. 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)."
  3714. 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)."
  3715. #: fdmprinter.def.json
  3716. msgctxt "infill_enable_travel_optimization label"
  3717. msgid "Infill Travel Optimization"
  3718. msgstr "Otimização de Percurso de Preenchimento"
  3719. #: fdmprinter.def.json
  3720. msgctxt "infill_enable_travel_optimization description"
  3721. 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."
  3722. 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."
  3723. #: fdmprinter.def.json
  3724. msgctxt "material_flow_dependent_temperature label"
  3725. msgid "Auto Temperature"
  3726. msgstr "Temperatura Automática"
  3727. #: fdmprinter.def.json
  3728. msgctxt "material_flow_dependent_temperature description"
  3729. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  3730. msgstr "Troca a temperatura para cada camada automaticamente de acordo com a velocidade média de fluxo desta camada."
  3731. #: fdmprinter.def.json
  3732. msgctxt "material_flow_temp_graph label"
  3733. msgid "Flow Temperature Graph"
  3734. msgstr "Gráfico de Fluxo de Temperatura"
  3735. #: fdmprinter.def.json
  3736. msgctxt "material_flow_temp_graph description"
  3737. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3738. msgstr "Dados relacionando fluxo de material (em mm³ por segundo) a temperatura (graus Celsius)."
  3739. #: fdmprinter.def.json
  3740. msgctxt "meshfix_maximum_resolution label"
  3741. msgid "Maximum Resolution"
  3742. msgstr "Resolução Máxima"
  3743. #: fdmprinter.def.json
  3744. msgctxt "meshfix_maximum_resolution description"
  3745. 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."
  3746. 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."
  3747. #: fdmprinter.def.json
  3748. msgctxt "meshfix_maximum_travel_resolution label"
  3749. msgid "Maximum Travel Resolution"
  3750. msgstr "Máxima Resolução de Percurso"
  3751. #: fdmprinter.def.json
  3752. msgctxt "meshfix_maximum_travel_resolution description"
  3753. 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."
  3754. 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."
  3755. #: fdmprinter.def.json
  3756. msgctxt "support_skip_some_zags label"
  3757. msgid "Break Up Support In Chunks"
  3758. msgstr "Quebrar Suportes em Pedaços"
  3759. #: fdmprinter.def.json
  3760. msgctxt "support_skip_some_zags description"
  3761. 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."
  3762. 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."
  3763. #: fdmprinter.def.json
  3764. msgctxt "support_skip_zag_per_mm label"
  3765. msgid "Support Chunk Size"
  3766. msgstr "Tamanho do Pedaço de Suporte"
  3767. #: fdmprinter.def.json
  3768. msgctxt "support_skip_zag_per_mm description"
  3769. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3770. 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."
  3771. #: fdmprinter.def.json
  3772. msgctxt "support_zag_skip_count label"
  3773. msgid "Support Chunk Line Count"
  3774. msgstr "Contagem de Linhas de Pedaço de Suporte"
  3775. #: fdmprinter.def.json
  3776. msgctxt "support_zag_skip_count description"
  3777. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3778. msgstr "Evitar uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida."
  3779. #: fdmprinter.def.json
  3780. msgctxt "draft_shield_enabled label"
  3781. msgid "Enable Draft Shield"
  3782. msgstr "Habilitar Cobertura de Trabalho"
  3783. #: fdmprinter.def.json
  3784. msgctxt "draft_shield_enabled description"
  3785. 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."
  3786. 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."
  3787. #: fdmprinter.def.json
  3788. msgctxt "draft_shield_dist label"
  3789. msgid "Draft Shield X/Y Distance"
  3790. msgstr "Distância X/Y da Cobertura de Trabalho"
  3791. #: fdmprinter.def.json
  3792. msgctxt "draft_shield_dist description"
  3793. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3794. msgstr "Distância da Cobertura de Trabalho da impressão nas direções X e Y."
  3795. #: fdmprinter.def.json
  3796. msgctxt "draft_shield_height_limitation label"
  3797. msgid "Draft Shield Limitation"
  3798. msgstr "Limitação da Cobertura de Trabalho"
  3799. #: fdmprinter.def.json
  3800. msgctxt "draft_shield_height_limitation description"
  3801. 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."
  3802. msgstr "Estabelece a altura da cobertura de trabalho. Escolha imprimir a cobertura na altura total dos modelos ou até uma altura limitada."
  3803. #: fdmprinter.def.json
  3804. msgctxt "draft_shield_height_limitation option full"
  3805. msgid "Full"
  3806. msgstr "Completo"
  3807. #: fdmprinter.def.json
  3808. msgctxt "draft_shield_height_limitation option limited"
  3809. msgid "Limited"
  3810. msgstr "Limitado"
  3811. #: fdmprinter.def.json
  3812. msgctxt "draft_shield_height label"
  3813. msgid "Draft Shield Height"
  3814. msgstr "Altura da Cobertura de Trabalho"
  3815. #: fdmprinter.def.json
  3816. msgctxt "draft_shield_height description"
  3817. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3818. msgstr "Limitação de altura da cobertura de trabalho. Acima desta altura a cobertura não será impressa."
  3819. #: fdmprinter.def.json
  3820. msgctxt "conical_overhang_enabled label"
  3821. msgid "Make Overhang Printable"
  3822. msgstr "Torna Seções Pendentes Imprimíveis"
  3823. #: fdmprinter.def.json
  3824. msgctxt "conical_overhang_enabled description"
  3825. 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."
  3826. 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."
  3827. #: fdmprinter.def.json
  3828. msgctxt "conical_overhang_angle label"
  3829. msgid "Maximum Model Angle"
  3830. msgstr "Ângulo Máximo do Modelo"
  3831. #: fdmprinter.def.json
  3832. msgctxt "conical_overhang_angle description"
  3833. 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."
  3834. 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."
  3835. #: fdmprinter.def.json
  3836. msgctxt "coasting_enable label"
  3837. msgid "Enable Coasting"
  3838. msgstr "Habilitar Desengrenagem"
  3839. #: fdmprinter.def.json
  3840. msgctxt "coasting_enable description"
  3841. 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."
  3842. 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."
  3843. #: fdmprinter.def.json
  3844. msgctxt "coasting_volume label"
  3845. msgid "Coasting Volume"
  3846. msgstr "Volume de Desengrenagem"
  3847. #: fdmprinter.def.json
  3848. msgctxt "coasting_volume description"
  3849. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3850. msgstr "Volume que seria escorrido. Este valor deve em geral estar perto do diâmetro do bico ao cubo."
  3851. #: fdmprinter.def.json
  3852. msgctxt "coasting_min_volume label"
  3853. msgid "Minimum Volume Before Coasting"
  3854. msgstr "Volume Mínimo Antes da Desengrenagem"
  3855. #: fdmprinter.def.json
  3856. msgctxt "coasting_min_volume description"
  3857. 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."
  3858. 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."
  3859. #: fdmprinter.def.json
  3860. msgctxt "coasting_speed label"
  3861. msgid "Coasting Speed"
  3862. msgstr "Velocidade de Desengrenagem"
  3863. #: fdmprinter.def.json
  3864. msgctxt "coasting_speed description"
  3865. 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."
  3866. 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."
  3867. #: fdmprinter.def.json
  3868. msgctxt "skin_alternate_rotation label"
  3869. msgid "Alternate Skin Rotation"
  3870. msgstr "Alterna a Rotação do Contorno"
  3871. #: fdmprinter.def.json
  3872. msgctxt "skin_alternate_rotation description"
  3873. msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  3874. msgstr "Alterna a direção em que as camadas superiores e inferiores são impressas. Normalmente elas são impressas somente na diagonal. Este ajuste permite direções somente no X e somente no Y."
  3875. #: fdmprinter.def.json
  3876. msgctxt "cross_infill_pocket_size label"
  3877. msgid "Cross 3D Pocket Size"
  3878. msgstr "Tamanho de Bolso do Cruzado 3D"
  3879. #: fdmprinter.def.json
  3880. msgctxt "cross_infill_pocket_size description"
  3881. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3882. msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando."
  3883. #: fdmprinter.def.json
  3884. msgctxt "cross_infill_density_image label"
  3885. msgid "Cross Infill Density Image"
  3886. msgstr "Imagem de Densidade do Preenchimento Cruzado"
  3887. #: fdmprinter.def.json
  3888. msgctxt "cross_infill_density_image description"
  3889. 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."
  3890. 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."
  3891. #: fdmprinter.def.json
  3892. msgctxt "cross_support_density_image label"
  3893. msgid "Cross Fill Density Image for Support"
  3894. msgstr "Imagem de Densidade de Preenchimento Cruzado para Suporte"
  3895. #: fdmprinter.def.json
  3896. msgctxt "cross_support_density_image description"
  3897. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3898. msgstr "A localização do arquivo de imagem onde os valores de brilho determinam a densidade mínima no local correspondente do suporte."
  3899. #: fdmprinter.def.json
  3900. msgctxt "spaghetti_infill_enabled label"
  3901. msgid "Spaghetti Infill"
  3902. msgstr "Preenchimento em Espaguete"
  3903. #: fdmprinter.def.json
  3904. msgctxt "spaghetti_infill_enabled description"
  3905. msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  3906. msgstr "Imprime o preenchimento intermitentemente de modo que o filamento se enrole caoticamente dentro do objeto. Isto reduz o tempo de impressão, mas tem comportamento bem imprevisível."
  3907. #: fdmprinter.def.json
  3908. msgctxt "spaghetti_infill_stepped label"
  3909. msgid "Spaghetti Infill Stepping"
  3910. msgstr "Passos do Preenchimento de Espaguete"
  3911. #: fdmprinter.def.json
  3912. msgctxt "spaghetti_infill_stepped description"
  3913. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  3914. msgstr "Ajuste para se imprimir o preenchimento espaguete em passos discretos ou extrudar todo o filamento de preenchimento no final da impressão."
  3915. #: fdmprinter.def.json
  3916. msgctxt "spaghetti_max_infill_angle label"
  3917. msgid "Spaghetti Maximum Infill Angle"
  3918. msgstr "Ângulo de Preenchimento Máximo do Espaguete"
  3919. #: fdmprinter.def.json
  3920. msgctxt "spaghetti_max_infill_angle description"
  3921. msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  3922. msgstr "O ângulo máximo em relação ao Z do interior da impressão para áreas que serão preenchidas com espaguete no final. Abaixar este valor faz com que mais partes anguladas do seu modelo sejam preenchidas a cada camada."
  3923. #: fdmprinter.def.json
  3924. msgctxt "spaghetti_max_height label"
  3925. msgid "Spaghetti Infill Maximum Height"
  3926. msgstr "Altura Máxima do Preenchimento Espaguete"
  3927. #: fdmprinter.def.json
  3928. msgctxt "spaghetti_max_height description"
  3929. msgid "The maximum height of inside space which can be combined and filled from the top."
  3930. msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir do topo."
  3931. #: fdmprinter.def.json
  3932. msgctxt "spaghetti_inset label"
  3933. msgid "Spaghetti Inset"
  3934. msgstr "Penetração do Espaguete"
  3935. #: fdmprinter.def.json
  3936. msgctxt "spaghetti_inset description"
  3937. msgid "The offset from the walls from where the spaghetti infill will be printed."
  3938. msgstr "O deslocamento a partir das paredes de onde o preenchimento espaguete será impresso."
  3939. #: fdmprinter.def.json
  3940. msgctxt "spaghetti_flow label"
  3941. msgid "Spaghetti Flow"
  3942. msgstr "Fluxo de Espaguete"
  3943. #: fdmprinter.def.json
  3944. msgctxt "spaghetti_flow description"
  3945. msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  3946. msgstr "Ajusta a densidade do preenchimento espaguete. Note que a Densidade de Preenchimento controla somente o espaçamento entre linhas do padrão de preenchimento, não a quantidade de extrusão para o preenchimento espaguete."
  3947. #: fdmprinter.def.json
  3948. msgctxt "spaghetti_infill_extra_volume label"
  3949. msgid "Spaghetti Infill Extra Volume"
  3950. msgstr "Volume Extra do Preenchimento Espaguete"
  3951. #: fdmprinter.def.json
  3952. msgctxt "spaghetti_infill_extra_volume description"
  3953. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  3954. msgstr "Um termo de correção para ajustar o volume total sendo extrudado a cada vez que se preencher com estilo espaguete."
  3955. #: fdmprinter.def.json
  3956. msgctxt "support_conical_enabled label"
  3957. msgid "Enable Conical Support"
  3958. msgstr "Habilitar Suporte Cônico"
  3959. #: fdmprinter.def.json
  3960. msgctxt "support_conical_enabled description"
  3961. msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  3962. msgstr "Recurso experimental: Faz as áreas de suporte menores na base que na seção pendente."
  3963. #: fdmprinter.def.json
  3964. msgctxt "support_conical_angle label"
  3965. msgid "Conical Support Angle"
  3966. msgstr "Ângulo de Suporte Cônico"
  3967. #: fdmprinter.def.json
  3968. msgctxt "support_conical_angle description"
  3969. 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."
  3970. 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."
  3971. #: fdmprinter.def.json
  3972. msgctxt "support_conical_min_width label"
  3973. msgid "Conical Support Minimum Width"
  3974. msgstr "Largura Mínima do Suporte Cônico"
  3975. #: fdmprinter.def.json
  3976. msgctxt "support_conical_min_width description"
  3977. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3978. msgstr "Largura mínima para a qual a base do suporte cônico é reduzida. Pequenas larguras podem levar a estruturas de suporte instáveis."
  3979. #: fdmprinter.def.json
  3980. msgctxt "magic_fuzzy_skin_enabled label"
  3981. msgid "Fuzzy Skin"
  3982. msgstr "Contorno Felpudo"
  3983. #: fdmprinter.def.json
  3984. msgctxt "magic_fuzzy_skin_enabled description"
  3985. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3986. 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."
  3987. #: fdmprinter.def.json
  3988. msgctxt "magic_fuzzy_skin_thickness label"
  3989. msgid "Fuzzy Skin Thickness"
  3990. msgstr "Espessura do Contorno Felpudo"
  3991. #: fdmprinter.def.json
  3992. msgctxt "magic_fuzzy_skin_thickness description"
  3993. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3994. 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."
  3995. #: fdmprinter.def.json
  3996. msgctxt "magic_fuzzy_skin_point_density label"
  3997. msgid "Fuzzy Skin Density"
  3998. msgstr "Densidade do Contorno Felpudo"
  3999. #: fdmprinter.def.json
  4000. msgctxt "magic_fuzzy_skin_point_density description"
  4001. 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."
  4002. 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."
  4003. #: fdmprinter.def.json
  4004. msgctxt "magic_fuzzy_skin_point_dist label"
  4005. msgid "Fuzzy Skin Point Distance"
  4006. msgstr "Distância de Pontos do Contorno Felpudo"
  4007. #: fdmprinter.def.json
  4008. msgctxt "magic_fuzzy_skin_point_dist description"
  4009. 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."
  4010. 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."
  4011. #: fdmprinter.def.json
  4012. msgctxt "flow_rate_max_extrusion_offset label"
  4013. msgid "Flow rate compensation max extrusion offset"
  4014. msgstr "Deslocamento de extrusão máxima da compensação de taxa de fluxo."
  4015. #: fdmprinter.def.json
  4016. msgctxt "flow_rate_max_extrusion_offset description"
  4017. msgid "The maximum distance in mm to compensate."
  4018. msgstr "A distância máxima em mm a compensar."
  4019. #: fdmprinter.def.json
  4020. msgctxt "flow_rate_extrusion_offset_factor label"
  4021. msgid "Flow rate compensation factor"
  4022. msgstr "Fator de compensaçõ de taxa de fluxo"
  4023. #: fdmprinter.def.json
  4024. msgctxt "flow_rate_extrusion_offset_factor description"
  4025. msgid "The multiplication factor for the flow rate -> distance translation."
  4026. msgstr "O fator de multiplicação para a tradução entre taxa de fluxo -> distância."
  4027. #: fdmprinter.def.json
  4028. msgctxt "wireframe_enabled label"
  4029. msgid "Wire Printing"
  4030. msgstr "Impressão em Arame"
  4031. #: fdmprinter.def.json
  4032. msgctxt "wireframe_enabled description"
  4033. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  4034. msgstr "Imprime somente a superfície exterior usando uma estrutura esparsa em forma de teia sem usar as camadas horizontais de impressão, e imprimindo no ar. Isto é feito imprimindo horizontalmente os contornos do modelo em dados intervalos Z que são conectados por filetes diagonais para cima e para baixo."
  4035. #: fdmprinter.def.json
  4036. msgctxt "wireframe_height label"
  4037. msgid "WP Connection Height"
  4038. msgstr "Altura da Conexão IA"
  4039. #: fdmprinter.def.json
  4040. msgctxt "wireframe_height description"
  4041. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  4042. msgstr "A altura dos filetes diagonais para cima e para baixo entre duas partes horizontais. Isto determina a densidade geral da estrutura em rede. Somente se aplica a Impressão em Arame."
  4043. #: fdmprinter.def.json
  4044. msgctxt "wireframe_roof_inset label"
  4045. msgid "WP Roof Inset Distance"
  4046. msgstr "Distância de Penetração do Teto da IA"
  4047. #: fdmprinter.def.json
  4048. msgctxt "wireframe_roof_inset description"
  4049. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4050. msgstr "A distância coberta quando é feita uma conexão do contorno do teto para dentro. Somente se aplica a Impressão em Arame."
  4051. #: fdmprinter.def.json
  4052. msgctxt "wireframe_printspeed label"
  4053. msgid "WP Speed"
  4054. msgstr "Velocidade da IA"
  4055. #: fdmprinter.def.json
  4056. msgctxt "wireframe_printspeed description"
  4057. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4058. msgstr "Velocidade com que a cabeça de impressão se move ao extrudar material. Somente se aplica a Impressão em Arame."
  4059. #: fdmprinter.def.json
  4060. msgctxt "wireframe_printspeed_bottom label"
  4061. msgid "WP Bottom Printing Speed"
  4062. msgstr "Velocidade de Impressão da Base da IA"
  4063. #: fdmprinter.def.json
  4064. msgctxt "wireframe_printspeed_bottom description"
  4065. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4066. msgstr "Velocidade de Impressão da primeira camada, que é a única camada que toca a mesa. Somente se aplica à Impressão em Arame."
  4067. #: fdmprinter.def.json
  4068. msgctxt "wireframe_printspeed_up label"
  4069. msgid "WP Upward Printing Speed"
  4070. msgstr "Velocidade de Impressão Ascendente da IA"
  4071. #: fdmprinter.def.json
  4072. msgctxt "wireframe_printspeed_up description"
  4073. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4074. msgstr "Velocidade de impressão dos filetes ascendentes feitas 'no ar'. Somente se aplica à Impressão em Arame."
  4075. #: fdmprinter.def.json
  4076. msgctxt "wireframe_printspeed_down label"
  4077. msgid "WP Downward Printing Speed"
  4078. msgstr "Velocidade de Impressão Descendente de IA"
  4079. #: fdmprinter.def.json
  4080. msgctxt "wireframe_printspeed_down description"
  4081. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4082. msgstr "Velocidade de impressão dos filetes descendentes feitas 'no ar'. Somente se aplica à Impressão em Arame."
  4083. #: fdmprinter.def.json
  4084. msgctxt "wireframe_printspeed_flat label"
  4085. msgid "WP Horizontal Printing Speed"
  4086. msgstr "Velocidade de Impressão Horizontal de IA"
  4087. #: fdmprinter.def.json
  4088. msgctxt "wireframe_printspeed_flat description"
  4089. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4090. msgstr "Velocidade de impressão dos contornos horizontais do modelo. Somente se aplica à Impressão em Arame."
  4091. #: fdmprinter.def.json
  4092. msgctxt "wireframe_flow label"
  4093. msgid "WP Flow"
  4094. msgstr "Fluxo da IA"
  4095. #: fdmprinter.def.json
  4096. msgctxt "wireframe_flow description"
  4097. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4098. msgstr "Compensação de fluxo: a quantidade de material extrudado é multiplicado por este valor. Somente se aplica à Impressão em Arame."
  4099. #: fdmprinter.def.json
  4100. msgctxt "wireframe_flow_connection label"
  4101. msgid "WP Connection Flow"
  4102. msgstr "Fluxo de Conexão da IA"
  4103. #: fdmprinter.def.json
  4104. msgctxt "wireframe_flow_connection description"
  4105. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4106. msgstr "Compensação de Fluxo quanto subindo ou descendo. Somente se aplica à Impressão em Arame."
  4107. #: fdmprinter.def.json
  4108. msgctxt "wireframe_flow_flat label"
  4109. msgid "WP Flat Flow"
  4110. msgstr "Fluxo Plano de IA"
  4111. #: fdmprinter.def.json
  4112. msgctxt "wireframe_flow_flat description"
  4113. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4114. msgstr "Compensação de fluxo ao imprimir filetes planos. Somente se aplica à Impressão em Arame."
  4115. #: fdmprinter.def.json
  4116. msgctxt "wireframe_top_delay label"
  4117. msgid "WP Top Delay"
  4118. msgstr "Espera do Topo de IA"
  4119. #: fdmprinter.def.json
  4120. msgctxt "wireframe_top_delay description"
  4121. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4122. msgstr "Tempo de espera depois de um movimento ascendente tal que o filete ascendente possa se solidifcar. Somente se aplica à Impressão em Arame."
  4123. #: fdmprinter.def.json
  4124. msgctxt "wireframe_bottom_delay label"
  4125. msgid "WP Bottom Delay"
  4126. msgstr "Espera da Base de IA"
  4127. #: fdmprinter.def.json
  4128. msgctxt "wireframe_bottom_delay description"
  4129. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4130. msgstr "Tempo de espera depois de um movimento descendente tal que o filete possa se solidificar. Somente se aplica à Impressão em Arame."
  4131. #: fdmprinter.def.json
  4132. msgctxt "wireframe_flat_delay label"
  4133. msgid "WP Flat Delay"
  4134. msgstr "Espera Plana de IA"
  4135. #: fdmprinter.def.json
  4136. msgctxt "wireframe_flat_delay description"
  4137. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  4138. msgstr "Tempo de espera entre dois segmentos horizontais. Inserir tal espera pode ocasionar melhor aderência a camadas prévias nos pontos de conexão, mas atrasos muito longos podem causar estruturas murchas. Somente se aplica à Impressão em Arame."
  4139. #: fdmprinter.def.json
  4140. msgctxt "wireframe_up_half_speed label"
  4141. msgid "WP Ease Upward"
  4142. msgstr "Facilitador Ascendente da IA"
  4143. #: fdmprinter.def.json
  4144. msgctxt "wireframe_up_half_speed description"
  4145. msgid ""
  4146. "Distance of an upward move which is extruded with half speed.\n"
  4147. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4148. msgstr ""
  4149. "Distância de um movimento ascendente que é extrudado com metade da velocidade.\n"
  4150. "Isto pode resultar em melhor aderência às camadas prévias, ao mesmo tempo em que não aquece demais essas camadas. Somente se aplica à Impressão em Arame."
  4151. #: fdmprinter.def.json
  4152. msgctxt "wireframe_top_jump label"
  4153. msgid "WP Knot Size"
  4154. msgstr "Tamanho do Nó de IA"
  4155. #: fdmprinter.def.json
  4156. msgctxt "wireframe_top_jump description"
  4157. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  4158. msgstr "Cria um pequeno 'nódulo' ou 'nó' no topo do filete ascendente de tal modo que a camada horizontal consecutiva tem melhor chance de se conectar ao filete. Somente se aplica à Impressão em Arame."
  4159. #: fdmprinter.def.json
  4160. msgctxt "wireframe_fall_down label"
  4161. msgid "WP Fall Down"
  4162. msgstr "Queda de IA"
  4163. #: fdmprinter.def.json
  4164. msgctxt "wireframe_fall_down description"
  4165. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4166. msgstr "Distância na qual o material desaba após uma extrusão ascendente. Esta distância é compensada. Somente se aplica à Impressão em Arame."
  4167. #: fdmprinter.def.json
  4168. msgctxt "wireframe_drag_along label"
  4169. msgid "WP Drag Along"
  4170. msgstr "Arrasto de IA"
  4171. #: fdmprinter.def.json
  4172. msgctxt "wireframe_drag_along description"
  4173. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4174. msgstr "Distância na qual o material de uma extrusão ascendente é arrastado com a extrusão descendente diagonal. Esta distância é compensada. Somente se aplica à Impressão em Arame."
  4175. #: fdmprinter.def.json
  4176. msgctxt "wireframe_strategy label"
  4177. msgid "WP Strategy"
  4178. msgstr "Estratégia de IA"
  4179. #: fdmprinter.def.json
  4180. msgctxt "wireframe_strategy description"
  4181. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  4182. msgstr "Estratégia para se assegurar que duas camadas consecutivas se conectam a cada ponto de conexão. Retração faz com que os filetes ascendentes se solidifiquem na posição correta, mas pode causar desgaste de filamento. Um nó pode ser feito no fim de um filete ascendentes para aumentar a chance de se conectar a ele e deixar o filete esfriar; no entanto, pode exigir velocidades de impressão lentas. Outra estratégia é compensar pelo enfraquecimento do topo de uma linha ascendente; no entanto, as linhas nem sempre cairão como preditas."
  4183. #: fdmprinter.def.json
  4184. msgctxt "wireframe_strategy option compensate"
  4185. msgid "Compensate"
  4186. msgstr "Compensar"
  4187. #: fdmprinter.def.json
  4188. msgctxt "wireframe_strategy option knot"
  4189. msgid "Knot"
  4190. msgstr "Nó"
  4191. #: fdmprinter.def.json
  4192. msgctxt "wireframe_strategy option retract"
  4193. msgid "Retract"
  4194. msgstr "Retrair"
  4195. #: fdmprinter.def.json
  4196. msgctxt "wireframe_straight_before_down label"
  4197. msgid "WP Straighten Downward Lines"
  4198. msgstr "Endireitar Filetes Descendentes de IA"
  4199. #: fdmprinter.def.json
  4200. msgctxt "wireframe_straight_before_down description"
  4201. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  4202. msgstr "Porcentagem de um filete descendente diagonal que é coberto por uma peça de filete horizontal. Isto pode prevenir enfraquecimento do ponto superior das linhas ascendentes. Somente se aplica à Impressão em Arame."
  4203. #: fdmprinter.def.json
  4204. msgctxt "wireframe_roof_fall_down label"
  4205. msgid "WP Roof Fall Down"
  4206. msgstr "Queda do Topo de IA"
  4207. #: fdmprinter.def.json
  4208. msgctxt "wireframe_roof_fall_down description"
  4209. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  4210. msgstr "A distância em que filetes horizontais do topo impressos no ar caem quando sendo impressos. Esta distância é compensada. Somente se aplica à Impressão em Arame."
  4211. #: fdmprinter.def.json
  4212. msgctxt "wireframe_roof_drag_along label"
  4213. msgid "WP Roof Drag Along"
  4214. msgstr "Arrasto do Topo de IA"
  4215. #: fdmprinter.def.json
  4216. msgctxt "wireframe_roof_drag_along description"
  4217. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  4218. msgstr "A distância da parte final de um filete para dentro que é arrastada quando o extrusor começa a voltar para o contorno externo do topo. Esta distância é compensada. Somente se aplica à Impressão em Arame."
  4219. #: fdmprinter.def.json
  4220. msgctxt "wireframe_roof_outer_delay label"
  4221. msgid "WP Roof Outer Delay"
  4222. msgstr "Retardo exterior del techo en IA"
  4223. #: fdmprinter.def.json
  4224. msgctxt "wireframe_roof_outer_delay description"
  4225. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4226. msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre."
  4227. #: fdmprinter.def.json
  4228. msgctxt "wireframe_nozzle_clearance label"
  4229. msgid "WP Nozzle Clearance"
  4230. msgstr "Espaço Livre para o Bico em IA"
  4231. #: fdmprinter.def.json
  4232. msgctxt "wireframe_nozzle_clearance description"
  4233. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  4234. msgstr "Distância entre o bico e os filetes descendentes horizontais. Espaços livres maiores resultarão em filetes descendentes diagonais com ângulo menos acentuado, o que por sua vez resulta em menos conexões ascendentes à próxima camada. Somente se aplica à Impressão em Arame."
  4235. #: fdmprinter.def.json
  4236. msgctxt "adaptive_layer_height_enabled label"
  4237. msgid "Use adaptive layers"
  4238. msgstr "Usar camadas adaptativas"
  4239. #: fdmprinter.def.json
  4240. msgctxt "adaptive_layer_height_enabled description"
  4241. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4242. msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo."
  4243. #: fdmprinter.def.json
  4244. msgctxt "adaptive_layer_height_variation label"
  4245. msgid "Adaptive layers maximum variation"
  4246. msgstr "Variação máxima das camadas adaptativas"
  4247. #: fdmprinter.def.json
  4248. msgctxt "adaptive_layer_height_variation description"
  4249. msgid "The maximum allowed height different from the base layer height."
  4250. msgstr "A variação de altura máxima permitida para a camada de base."
  4251. #: fdmprinter.def.json
  4252. msgctxt "adaptive_layer_height_variation_step label"
  4253. msgid "Adaptive layers variation step size"
  4254. msgstr "Tamanho de passo da variação das camadas adaptativas"
  4255. #: fdmprinter.def.json
  4256. msgctxt "adaptive_layer_height_variation_step description"
  4257. msgid "The difference in height of the next layer height compared to the previous one."
  4258. msgstr "A diferença em tamanho da próxima camada comparada à anterior."
  4259. #: fdmprinter.def.json
  4260. msgctxt "adaptive_layer_height_threshold label"
  4261. msgid "Adaptive layers threshold"
  4262. msgstr "Limite das camadas adaptativas"
  4263. #: fdmprinter.def.json
  4264. msgctxt "adaptive_layer_height_threshold description"
  4265. msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  4266. msgstr "Limite até onde se usa uma camada menor ou não. Este número é comparado à tangente da ladeira mais vertical da camada."
  4267. #: fdmprinter.def.json
  4268. msgctxt "bridge_settings_enabled label"
  4269. msgid "Enable Bridge Settings"
  4270. msgstr "Habilitar Ajustes de Ponte"
  4271. #: fdmprinter.def.json
  4272. msgctxt "bridge_settings_enabled description"
  4273. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4274. msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas."
  4275. #: fdmprinter.def.json
  4276. msgctxt "bridge_wall_min_length label"
  4277. msgid "Minimum Bridge Wall Length"
  4278. msgstr "Comprimento de Parede de Ponte Mínimo"
  4279. #: fdmprinter.def.json
  4280. msgctxt "bridge_wall_min_length description"
  4281. 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."
  4282. 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."
  4283. #: fdmprinter.def.json
  4284. msgctxt "bridge_skin_support_threshold label"
  4285. msgid "Bridge Skin Support Threshold"
  4286. msgstr "Limiar de Suporte de Contorno de Ponte"
  4287. #: fdmprinter.def.json
  4288. msgctxt "bridge_skin_support_threshold description"
  4289. 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."
  4290. 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."
  4291. #: fdmprinter.def.json
  4292. msgctxt "bridge_wall_max_overhang label"
  4293. msgid "Bridge Wall Max Overhang"
  4294. msgstr "Seção Pendente Máxima da Parede de Ponte"
  4295. #: fdmprinter.def.json
  4296. msgctxt "bridge_wall_max_overhang description"
  4297. msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  4298. msgstr "O comprimento máximo permitido da região de ar abaixo da linha da parede antes que a parede seja impressa usando ajustes de ponte. Expressado como uma porcentagem da espessura de filete de parede. Quando o vão for mais largo que esta quantia, a parede é impressa usando os ajustes de ponte. Senão, a parede é impressa com os ajustes normais. Quanto menor o valor, mais provável que os filetes da parede sejam impressos com os ajustes de ponte."
  4299. #: fdmprinter.def.json
  4300. msgctxt "bridge_wall_coast label"
  4301. msgid "Bridge Wall Coasting"
  4302. msgstr "Desengrenagem de Parede de Ponte"
  4303. #: fdmprinter.def.json
  4304. msgctxt "bridge_wall_coast description"
  4305. 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."
  4306. 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."
  4307. #: fdmprinter.def.json
  4308. msgctxt "bridge_wall_speed label"
  4309. msgid "Bridge Wall Speed"
  4310. msgstr "Velocidade da Parede de Ponte"
  4311. #: fdmprinter.def.json
  4312. msgctxt "bridge_wall_speed description"
  4313. msgid "The speed at which the bridge walls are printed."
  4314. msgstr "A velocidade com a qual as paredes de ponte são impressas."
  4315. #: fdmprinter.def.json
  4316. msgctxt "bridge_wall_material_flow label"
  4317. msgid "Bridge Wall Flow"
  4318. msgstr "Fluxo da Parede de Ponte"
  4319. #: fdmprinter.def.json
  4320. msgctxt "bridge_wall_material_flow description"
  4321. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4322. msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor."
  4323. #: fdmprinter.def.json
  4324. msgctxt "bridge_skin_speed label"
  4325. msgid "Bridge Skin Speed"
  4326. msgstr "Velocidade do Contorno de Ponte"
  4327. #: fdmprinter.def.json
  4328. msgctxt "bridge_skin_speed description"
  4329. msgid "The speed at which bridge skin regions are printed."
  4330. msgstr "A velocidade com a qual regiões de contorno de ponte são impressas."
  4331. #: fdmprinter.def.json
  4332. msgctxt "bridge_skin_material_flow label"
  4333. msgid "Bridge Skin Flow"
  4334. msgstr "Fluxo do Contorno de Ponte"
  4335. #: fdmprinter.def.json
  4336. msgctxt "bridge_skin_material_flow description"
  4337. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4338. msgstr "Ao imprimir regiões de contorno de ponte, a quantidade de material extrudado é multiplicada por este valor."
  4339. #: fdmprinter.def.json
  4340. msgctxt "bridge_skin_density label"
  4341. msgid "Bridge Skin Density"
  4342. msgstr "Densidade do Contorno de Ponte"
  4343. #: fdmprinter.def.json
  4344. msgctxt "bridge_skin_density description"
  4345. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4346. msgstr "A densidade da camada de contorno de ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  4347. #: fdmprinter.def.json
  4348. msgctxt "bridge_fan_speed label"
  4349. msgid "Bridge Fan Speed"
  4350. msgstr "Velocidade de Ventoinha da Ponte"
  4351. #: fdmprinter.def.json
  4352. msgctxt "bridge_fan_speed description"
  4353. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4354. msgstr "Porcentagem da velocidade de ventoinha a usar quando imprimir paredes e contornos em pontes."
  4355. #: fdmprinter.def.json
  4356. msgctxt "bridge_enable_more_layers label"
  4357. msgid "Bridge Has Multiple Layers"
  4358. msgstr "Ponte Tem Camadas Múltiplas"
  4359. #: fdmprinter.def.json
  4360. msgctxt "bridge_enable_more_layers description"
  4361. 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."
  4362. 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."
  4363. #: fdmprinter.def.json
  4364. msgctxt "bridge_skin_speed_2 label"
  4365. msgid "Bridge Second Skin Speed"
  4366. msgstr "Velocidade de Segundo Contorno da Ponte"
  4367. #: fdmprinter.def.json
  4368. msgctxt "bridge_skin_speed_2 description"
  4369. msgid "Print speed to use when printing the second bridge skin layer."
  4370. msgstr "Velocidade de impressão a usar quando imprimir a segunda camada de ponte."
  4371. #: fdmprinter.def.json
  4372. msgctxt "bridge_skin_material_flow_2 label"
  4373. msgid "Bridge Second Skin Flow"
  4374. msgstr "Fluxo de Segundo Contorno da Ponte"
  4375. #: fdmprinter.def.json
  4376. msgctxt "bridge_skin_material_flow_2 description"
  4377. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4378. msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor."
  4379. #: fdmprinter.def.json
  4380. msgctxt "bridge_skin_density_2 label"
  4381. msgid "Bridge Second Skin Density"
  4382. msgstr "Densidade de Segundo Contorno da Ponte"
  4383. #: fdmprinter.def.json
  4384. msgctxt "bridge_skin_density_2 description"
  4385. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4386. msgstr "A densidade da segunda camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  4387. #: fdmprinter.def.json
  4388. msgctxt "bridge_fan_speed_2 label"
  4389. msgid "Bridge Second Skin Fan Speed"
  4390. msgstr "Velocidade da Ventoinha no Segundo Contorno da Ponte"
  4391. #: fdmprinter.def.json
  4392. msgctxt "bridge_fan_speed_2 description"
  4393. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4394. msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a segunda camada de contorno da ponte."
  4395. #: fdmprinter.def.json
  4396. msgctxt "bridge_skin_speed_3 label"
  4397. msgid "Bridge Third Skin Speed"
  4398. msgstr "Velocidade de Terceiro Contorno da Ponte"
  4399. #: fdmprinter.def.json
  4400. msgctxt "bridge_skin_speed_3 description"
  4401. msgid "Print speed to use when printing the third bridge skin layer."
  4402. msgstr "Velocidade de impressão a usar quando imprimir a terceira camada de ponte."
  4403. #: fdmprinter.def.json
  4404. msgctxt "bridge_skin_material_flow_3 label"
  4405. msgid "Bridge Third Skin Flow"
  4406. msgstr "Fluxo de Terceiro Contorno da Ponte"
  4407. #: fdmprinter.def.json
  4408. msgctxt "bridge_skin_material_flow_3 description"
  4409. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4410. msgstr "Ao imprimir a terceira de contorno da ponte, a quantidade de material é multiplicada por este valor."
  4411. #: fdmprinter.def.json
  4412. msgctxt "bridge_skin_density_3 label"
  4413. msgid "Bridge Third Skin Density"
  4414. msgstr "Densidade de Terceiro Contorno da Ponte"
  4415. #: fdmprinter.def.json
  4416. msgctxt "bridge_skin_density_3 description"
  4417. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4418. msgstr "A densidade da terceira camada de contorno da ponte. Valores menores que 100 aumentarão a lacuna entre as linhas de contorno."
  4419. #: fdmprinter.def.json
  4420. msgctxt "bridge_fan_speed_3 label"
  4421. msgid "Bridge Third Skin Fan Speed"
  4422. msgstr "Velocidade da Ventoinha no Terceiro Contorno da Ponte"
  4423. #: fdmprinter.def.json
  4424. msgctxt "bridge_fan_speed_3 description"
  4425. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4426. msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte."
  4427. #: fdmprinter.def.json
  4428. msgctxt "command_line_settings label"
  4429. msgid "Command Line Settings"
  4430. msgstr "Ajustes de Linha de Comando"
  4431. #: fdmprinter.def.json
  4432. msgctxt "command_line_settings description"
  4433. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4434. msgstr "Ajustes que sào usados somentes se o CuraEngine não for chamado da interface do Cura."
  4435. #: fdmprinter.def.json
  4436. msgctxt "center_object label"
  4437. msgid "Center Object"
  4438. msgstr "Centralizar Objeto"
  4439. #: fdmprinter.def.json
  4440. msgctxt "center_object description"
  4441. 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."
  4442. msgstr "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."
  4443. #: fdmprinter.def.json
  4444. msgctxt "mesh_position_x label"
  4445. msgid "Mesh Position X"
  4446. msgstr "Posição X da Malha"
  4447. #: fdmprinter.def.json
  4448. msgctxt "mesh_position_x description"
  4449. msgid "Offset applied to the object in the x direction."
  4450. msgstr "Deslocamento aplicado ao objeto na direção X."
  4451. #: fdmprinter.def.json
  4452. msgctxt "mesh_position_y label"
  4453. msgid "Mesh Position Y"
  4454. msgstr "Posição Y da Malha"
  4455. #: fdmprinter.def.json
  4456. msgctxt "mesh_position_y description"
  4457. msgid "Offset applied to the object in the y direction."
  4458. msgstr "Deslocamento aplicado ao objeto na direção Y."
  4459. #: fdmprinter.def.json
  4460. msgctxt "mesh_position_z label"
  4461. msgid "Mesh Position Z"
  4462. msgstr "Posição Z da Malha"
  4463. #: fdmprinter.def.json
  4464. msgctxt "mesh_position_z description"
  4465. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4466. msgstr "Deslocamento aplicado ao objeto na direção Z. Com isto você pode fazer afundamento do objeto na plataforma."
  4467. #: fdmprinter.def.json
  4468. msgctxt "mesh_rotation_matrix label"
  4469. msgid "Mesh Rotation Matrix"
  4470. msgstr "Matriz de Rotação da Malha"
  4471. #: fdmprinter.def.json
  4472. msgctxt "mesh_rotation_matrix description"
  4473. msgid "Transformation matrix to be applied to the model when loading it from file."
  4474. msgstr "Matriz de transformação a ser aplicada ao modelo após o carregamento do arquivo."
  4475. #~ msgctxt "optimize_wall_printing_order description"
  4476. #~ 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."
  4477. #~ msgstr "Otimiza a ordem em que paredes são impressas de modo a reduzir o número de retrações e a distância percorrida. A maioria das peças se beneficiarão deste ajuste habilitado mas algumas podem acabar levando mais tempo, portanto por favor compare as estimativas de tempo de impressão com e sem otimização."
  4478. #~ msgctxt "retraction_combing option noskin"
  4479. #~ msgid "No Skin"
  4480. #~ msgstr "Evita Contornos"
  4481. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  4482. #~ msgid "Alternate Cross 3D Pockets"
  4483. #~ msgstr "Bolso Alternados de Cruzado 3D"
  4484. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  4485. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  4486. #~ msgstr "Somente aplicar bolso em metades dos cruzamentos quádruplos no padrão cruzado 3D e alternar a localização dos bolso entre alturas onde o padrão esteja se tocando."
  4487. #~ msgctxt "infill_hollow label"
  4488. #~ msgid "Hollow Out Objects"
  4489. #~ msgstr "Tornar Objetos Ocos"
  4490. #~ msgctxt "infill_hollow description"
  4491. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  4492. #~ msgstr "Remove todo o preenchimento e torna o interior oco do objeto elegível a suporte."
  4493. #~ msgctxt "adaptive_layer_height_variation description"
  4494. #~ msgid "The maximum allowed height different from the base layer height in mm."
  4495. #~ msgstr "A dferença de altura máxima permitida da altura de camada base permitida, em mm."
  4496. #~ msgctxt "center_object label"
  4497. #~ msgid "Center object"
  4498. #~ msgstr "Centralizar Objeto"
  4499. #~ msgctxt "mesh_position_x label"
  4500. #~ msgid "Mesh position x"
  4501. #~ msgstr "Posição X da malha"
  4502. #~ msgctxt "mesh_position_y label"
  4503. #~ msgid "Mesh position y"
  4504. #~ msgstr "Posição Y da malha"
  4505. #~ msgctxt "mesh_position_z label"
  4506. #~ msgid "Mesh position z"
  4507. #~ msgstr "Posição Z da malha"
  4508. #~ msgctxt "machine_start_gcode label"
  4509. #~ msgid "Start GCode"
  4510. #~ msgstr "G-Code Inicial"
  4511. #~ msgctxt "machine_start_gcode description"
  4512. #~ msgid ""
  4513. #~ "Gcode commands to be executed at the very start - separated by \n"
  4514. #~ "."
  4515. #~ msgstr ""
  4516. #~ "Comandos de G-Code a serem executados durante o início da impressão - separados por \n"
  4517. #~ "."
  4518. #~ msgctxt "machine_end_gcode label"
  4519. #~ msgid "End GCode"
  4520. #~ msgstr "G-Code Final"
  4521. #~ msgctxt "machine_end_gcode description"
  4522. #~ msgid ""
  4523. #~ "Gcode commands to be executed at the very end - separated by \n"
  4524. #~ "."
  4525. #~ msgstr ""
  4526. #~ "Comandos de G-Code a serem executados no fim da impressão - separados por \n"
  4527. #~ "."
  4528. #~ msgctxt "machine_gcode_flavor label"
  4529. #~ msgid "Gcode flavour"
  4530. #~ msgstr "Tipo de G-Code"
  4531. #~ msgctxt "machine_gcode_flavor description"
  4532. #~ msgid "The type of gcode to be generated."
  4533. #~ msgstr "Tipo de G-Code a ser gerado para a impressora."
  4534. #~ msgctxt "meshfix_keep_open_polygons description"
  4535. #~ 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 GCode."
  4536. #~ 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 aquelas partes que não podem ser costuradas. Este opção deve ser usada somente como uma última alternativa quando tudo o mais falha em produzir G-Code apropriado."
  4537. #~ msgctxt "relative_extrusion description"
  4538. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. 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 Gcode script is output."
  4539. #~ msgstr "Usar extrusão relativa ao invés de absoluta. Usar passos de extrusor relativos permite pós-processamento do G-Code mais fácil. No entanto, não é suportado por todas as impressoras e pode produzir desvios bem pequenos na quantidade de material depositado comparado aos passos de extrusor absolutos. Independente deste ajuste, o modo de extrusão sempre será configurado para absoluto antes que qualquer script de G-Code seja escrito."
  4540. #~ msgctxt "infill_offset_x description"
  4541. #~ msgid "The infill pattern is offset this distance along the X axis."
  4542. #~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo X."
  4543. #~ msgctxt "infill_offset_y description"
  4544. #~ msgid "The infill pattern is offset this distance along the Y axis."
  4545. #~ msgstr "O padrão de preenchimento é corrigido/deslocado nesta distância no eixo Y."
  4546. #~ msgctxt "infill_overlap description"
  4547. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  4548. #~ msgstr "Porcentagem de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes fiquem firmemente aderidas ao preenchimento."
  4549. #~ msgctxt "skin_overlap description"
  4550. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  4551. #~ msgstr "A quantidade de sobreposição entre o contorno e as paredes como uma porcentagem da largura de extrusão. Uma sobreposição leve permite que as paredes se conectem firmemente ao contorno. Este ajuste é uma porcentagem das larguras de extrusão média do contorno e da parede mais interna."
  4552. #~ msgctxt "material_bed_temperature description"
  4553. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  4554. #~ msgstr "A temperatura usada pela mesa aquecida de impressão. Se for 0, a mesa não aquecerá para esta impressão."
  4555. #~ msgctxt "wall_x_extruder_nr label"
  4556. #~ msgid "Inner Walls Extruder"
  4557. #~ msgstr "Extrusor das Paredes Internas"
  4558. #~ msgctxt "zig_zaggify_infill description"
  4559. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  4560. #~ msgstr "Conecta as extremidades onde o padrão de preenchimento se encontra com a parede interna usando linhas que seguem a forma dessa parede. Habilitar este ajuste pode fazer o preenchimento aderir melhor às paredes e reduz os efeitos do preenchimento na qualidade das superfícies verticais. Desabilitar este ajuste reduz a quantidade de material usado."
  4561. #~ msgctxt "skirt_gap description"
  4562. #~ msgid ""
  4563. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  4564. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  4565. #~ msgstr ""
  4566. #~ "A distância horizontal entre o skirt e a primeira camada da impressão.\n"
  4567. #~ "Esta é a distância mínima; múltiplas linhas de skirt se estenderão pra fora a partir desta distância."
  4568. #~ msgctxt "z_offset_layer_0 label"
  4569. #~ msgid "Initial Layer Z Offset"
  4570. #~ msgstr "Deslocamento em Z da Camada Inicial"
  4571. #~ msgctxt "z_offset_layer_0 description"
  4572. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  4573. #~ msgstr "O extrusor é deslocado da altura normal da primeira camada por esta distância. Pode ser positiva (elevada) ou negativa (abaixada). Alguns tipos de filamento aderem à camada de impressão melhor se o extrusor for elevado ligeiramente."
  4574. #~ msgctxt "z_offset_taper_layers label"
  4575. #~ msgid "Z Offset Taper Layers"
  4576. #~ msgstr "Camadas de Amenização do Deslocamento Z"
  4577. #~ msgctxt "z_offset_taper_layers description"
  4578. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  4579. #~ msgstr "Quando não for zero, o deslocamento em Z é reduzido a zero depois deste número de camadas. O valor zero significa que o deslocamento em Z permanece constante para todas as camadas da impressão."
  4580. #~ msgctxt "raft_smoothing description"
  4581. #~ msgid "This setting control 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."
  4582. #~ msgstr "Este ajuste controla quantos cantos interiores no contorno do raft são arredondados. Cantos no sentido interior são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove buracos que sejam menores que tal círculo no contorno do raft."
  4583. #~ msgctxt "infill_pattern description"
  4584. #~ 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, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  4585. #~ msgstr "Padrão ou estampa 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, cúbico, tetraédrico e concêntrico são totalmente impressos a cada camada. Os padrões cúbico e tetraédrico mudam a cada camada para prover uma distribuição mais igualitária de força para cada direção."
  4586. #~ msgctxt "infill_pattern option tetrahedral"
  4587. #~ msgid "Tetrahedral"
  4588. #~ msgstr "Tetraédrico"
  4589. #~ msgctxt "expand_skins_into_infill label"
  4590. #~ msgid "Expand Skins Into Infill"
  4591. #~ msgstr "Expandir Contorno Para Preenchimento"
  4592. #~ msgctxt "expand_skins_into_infill description"
  4593. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  4594. #~ msgstr "Expandir áreas de perímetro das partes superiores e inferiores de superfícies chatas. Por default, o perímetro para sob as paredes que rodeiam o preenchimento mas isso pode fazer com que buracos apareçam caso a densidade de preenchimento seja baixa. Este ajuste estenda os perímetros além das linhas de parede de modo que o preenchimento da próxima camada fique em cima de perímetros."
  4595. #~ msgctxt "expand_upper_skins label"
  4596. #~ msgid "Expand Top Skins Into Infill"
  4597. #~ msgstr "Expandir Contorno do Topo Para Preenchimento"
  4598. #~ msgctxt "expand_upper_skins description"
  4599. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  4600. #~ msgstr "Expande as áreas de perímetro do topo (áreas com ar acima delas) de modo que suportem o preenchimento de cima."
  4601. #~ msgctxt "expand_lower_skins label"
  4602. #~ msgid "Expand Bottom Skins Into Infill"
  4603. #~ msgstr "Expande Contorno da Base Para Preenchimento"
  4604. #~ msgctxt "expand_lower_skins description"
  4605. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4606. #~ msgstr "Expande as áreas de perímetro da base (áreas com ar abaixo delas) de modo que se ancorem nas camadas de preenchimento embaixo e acima."
  4607. #~ msgctxt "expand_skins_expand_distance description"
  4608. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  4609. #~ msgstr "A distância que os contornos são expandidos para dentro do preenchimento. A distância default é suficiente para ligar o vão entre as linhas de preenchimento e impedirá que buracos apareçam no contorno onde ele encontrar a parede em que a densidade de preenchimento é baixa. Uma distância menor pode ser suficiente."
  4610. #~ msgctxt "support_skip_some_zags label"
  4611. #~ msgid "Skip Some ZigZags Connections"
  4612. #~ msgstr "Pular Algumas Conexões de Ziguezague"
  4613. #~ msgctxt "support_skip_some_zags description"
  4614. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  4615. #~ msgstr "Pula algumas conexões de Ziguezague para fazer a estrutura de suporte mais fácil de ser removida."
  4616. #~ msgctxt "support_zag_skip_count label"
  4617. #~ msgid "ZigZag Connection Skip Count"
  4618. #~ msgstr "Contagem de Pulos das Conexões de Ziguezague"
  4619. #~ msgctxt "support_zag_skip_count description"
  4620. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  4621. #~ msgstr "Pular uma em cada N linhas de conexão para fazer a estrutura de suporte mais fácil de ser removida."
  4622. #~ msgctxt "machine_show_variants label"
  4623. #~ msgid "Show machine variants"
  4624. #~ msgstr "Mostrar variantes da máquina"
  4625. #, fuzzy
  4626. #~ msgctxt "material_bed_temp_wait label"
  4627. #~ msgid "Wait for build plate heatup"
  4628. #~ msgstr "Aguardar o aquecimento do bico"
  4629. #~ msgctxt "material_print_temp_wait label"
  4630. #~ msgid "Wait for nozzle heatup"
  4631. #~ msgstr "Aguardar o aquecimento do bico"
  4632. #~ msgctxt "material_print_temp_prepend label"
  4633. #~ msgid "Include material temperatures"
  4634. #~ msgstr "Incluir temperaturas dos materiais"
  4635. #~ msgctxt "material_bed_temp_prepend label"
  4636. #~ msgid "Include build plate temperature"
  4637. #~ msgstr "Incluir temperatura da mesa de impressão"
  4638. #~ msgctxt "machine_width label"
  4639. #~ msgid "Machine width"
  4640. #~ msgstr "Largura da mesa"
  4641. #~ msgctxt "machine_depth label"
  4642. #~ msgid "Machine depth"
  4643. #~ msgstr "Profundidada da mesa"
  4644. #~ msgctxt "machine_shape label"
  4645. #~ msgid "Build plate shape"
  4646. #~ msgstr "Forma da mesa de impressão"
  4647. #~ msgctxt "machine_height label"
  4648. #~ msgid "Machine height"
  4649. #~ msgstr "Altura do volume de impressão"
  4650. #~ msgctxt "machine_heated_bed label"
  4651. #~ msgid "Has heated build plate"
  4652. #~ msgstr "Tem mesa de impressão aquecida"
  4653. #~ msgctxt "machine_center_is_zero label"
  4654. #~ msgid "Is center origin"
  4655. #~ msgstr "A origem está no centro"
  4656. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  4657. #~ msgid "RepRap (Marlin/Sprinter)"
  4658. #~ msgstr "RepRap (Marlin/Sprinter)"
  4659. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  4660. #~ msgid "RepRap (Volumetric)"
  4661. #~ msgstr "RepRap (Volumétrico)"
  4662. #~ msgctxt "wall_thickness description"
  4663. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4664. #~ msgstr "A espessura das paredes na direção horizontal. Este valor dividido pela largura de extrusão da parede define o número de paredes."
  4665. #~ msgctxt "skin_overlap description"
  4666. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  4667. #~ msgstr "Porcentagem de sobreposição entre o contorno e as paredes. Uma ligeira sobreposição permite às paredes ficarem firmemente aderidas ao contorno."
  4668. #~ msgctxt "support_interface_line_width description"
  4669. #~ msgid "Width of a single support interface line."
  4670. #~ msgstr "Largura de extrusão de um filete usado na interface da estrutura de suporte com o modelo."
  4671. #~ msgctxt "sub_div_rad_mult label"
  4672. #~ msgid "Cubic Subdivision Radius"
  4673. #~ msgstr "Raio de Subdivisão Cúbica"
  4674. #~ msgctxt "sub_div_rad_mult description"
  4675. #~ msgid "A multiplier on 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 more subdivisions, i.e. more small cubes."
  4676. #~ msgstr "Um multiplicador do 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 maiores subdivisões, isto é, mais cubos pequenos."
  4677. #~ msgctxt "expand_upper_skins label"
  4678. #~ msgid "Expand Upper Skins"
  4679. #~ msgstr "Expandir Contornos Superiores"
  4680. #~ msgctxt "expand_upper_skins description"
  4681. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  4682. #~ msgstr "Expandir as áreas de contorno superiores (áreas com ar acima) de modo que suportem o preenchimento acima."
  4683. #~ msgctxt "expand_lower_skins label"
  4684. #~ msgid "Expand Lower Skins"
  4685. #~ msgstr "Expandir Contornos Inferiores"
  4686. #~ msgctxt "expand_lower_skins description"
  4687. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4688. #~ msgstr "Expandir as áreas de contorno inferiores (áreas com ar abaixo) de modo que fiquem ancoradas pelas camadas de preenchimento acima e abaixo."
  4689. #~ msgctxt "speed_support_interface description"
  4690. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  4691. #~ msgstr "A velocidade em que o topo e base dos suportes são impressos. Imprimi-lo a menores velocidade pode melhor a qualidade das seções pendentes."
  4692. #~ msgctxt "acceleration_support_interface description"
  4693. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  4694. #~ msgstr "Aceleração com que o topo e base dos suportes são impressos. Imprimi-lo a menores acelerações pode aprimorar a qualidade das seções pendentes."
  4695. #~ msgctxt "jerk_support_interface description"
  4696. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  4697. #~ msgstr "A mudança instantânea máxima de velocidade em uma direção com que a base e o topo dos suporte é impresso."
  4698. #~ msgctxt "support_enable label"
  4699. #~ msgid "Enable Support"
  4700. #~ msgstr "Habilitar Suportes"
  4701. #~ msgctxt "support_enable description"
  4702. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  4703. #~ msgstr "Habilita as estruturas de suporte. Essas estruturas apóiam partes do modelo que tenham seções pendentes."
  4704. #~ msgctxt "support_interface_extruder_nr description"
  4705. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  4706. #~ msgstr "O extrusor a usar para imprimir o topo e base dos suportes. Isto é utilizado em multi-extrusão."
  4707. #~ msgctxt "support_bottom_stair_step_height description"
  4708. #~ 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."
  4709. #~ msgstr "A altura dos passos da base tipo escada do suporte em cima do modelo. Um valor baixo faz o suporte ser mais difícil de remover, mas valores muito altos podem criar estruturas de suporte instáveis."
  4710. #~ msgctxt "support_bottom_height label"
  4711. #~ msgid "Support Bottom Thickness"
  4712. #~ msgstr "Espessura da Base do Suporte"
  4713. #~ msgctxt "support_bottom_height description"
  4714. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  4715. #~ msgstr "A espessura da base do suporte. Isto controla o número de camadas densas que são impressas no topo de lugares do modelo em que o suporte se assenta."
  4716. #~ msgctxt "support_interface_skip_height description"
  4717. #~ msgid "When checking where there's model above 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."
  4718. #~ msgstr "Quando se verificar onde há modelo sobre suporte, use passos da altura dada. Valores baixos vão fatiar mais lentamente, enquanto valores altos podem fazer o suporte normal ser impresso em lugares onde deveria haver interface de suporte."
  4719. #~ msgctxt "support_interface_density description"
  4720. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  4721. #~ msgstr "Ajusta a densidade dos topos e bases das estruturas de suporte. Um valor mais alto resulta em seções pendentes melhores, mas os suportes são mais difíceis de remover."
  4722. #~ msgctxt "support_interface_line_distance label"
  4723. #~ msgid "Support Interface Line Distance"
  4724. #~ msgstr "Distância entre Linhas da Interface de Suporte"
  4725. #~ msgctxt "support_interface_line_distance description"
  4726. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  4727. #~ msgstr "Distância entre as linhas impressas da interface de suporte. Este ajuste é calculado pela Densidade de Interface de Suporte, mas pode ser ajustado separadamente."
  4728. #~ msgctxt "magic_spiralize description"
  4729. #~ 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 used to be called Joris in older versions."
  4730. #~ msgstr "Este modo, também chamado de Modo Vaso ou Joris, transforma a trajetória do filete de plástico de impressão em uma espiral ascendente, com o Z lentamente subindo. Para isso, torna um modelo sólido em uma casca de parede única com a base sólida. Nem toda forma funciona corretamente com o modo vaso."
  4731. #~ msgctxt "material_print_temperature description"
  4732. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  4733. #~ msgstr "Temperatura usada para a impressão. COloque em '0' para pré-aquecer a impressora manualmente."
  4734. #~ msgctxt "material_bed_temperature description"
  4735. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  4736. #~ msgstr "A temperatura usada para a mesa aquecida. Coloque em '0' para pré-aquecer a impressora manualmente."
  4737. #~ msgctxt "support_z_distance description"
  4738. #~ 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. This value is rounded down to a multiple of the layer height."
  4739. #~ msgstr "Distância do topo/base da estrutura de suporte à impressão. Este vão provê o espaço para remover os suportes depois do modelo ser impresso. Este valor é arredondando para um múltiplo da altura de camada."
  4740. #~ msgctxt "material_bed_temp_wait label"
  4741. #~ msgid "Aguardar o aquecimento da mesa de impressão"
  4742. #~ msgstr "Esperar a que la placa de impresión se caliente"
  4743. #~ msgctxt "z_seam_type option back"
  4744. #~ msgid "Back"
  4745. #~ msgstr "Costas"
  4746. #~ msgctxt "multiple_mesh_overlap label"
  4747. #~ msgid "Dual Extrusion Overlap"
  4748. #~ msgstr "Sobreposição de Extrusão Dual"