fdmprinter.def.json.po 366 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 5.1\n"
  8. "Report-Msgid-Bugs-To: plugins@ultimaker.com\n"
  9. "POT-Creation-Date: 2022-06-21 12:50+0000\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE\n"
  13. "Language: \n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. #: fdmprinter.def.json
  18. msgctxt "machine_settings label"
  19. msgid "Machine"
  20. msgstr "Máquina"
  21. #: fdmprinter.def.json
  22. msgctxt "machine_settings description"
  23. msgid "Machine specific settings"
  24. msgstr "Definições específicas da máquina"
  25. #: fdmprinter.def.json
  26. msgctxt "machine_name label"
  27. msgid "Machine Type"
  28. msgstr "Tipo de Máquina"
  29. #: fdmprinter.def.json
  30. msgctxt "machine_name description"
  31. msgid "The name of your 3D printer model."
  32. msgstr "O nome do seu modelo de impressora 3D."
  33. #: fdmprinter.def.json
  34. msgctxt "machine_show_variants label"
  35. msgid "Show Machine Variants"
  36. msgstr "Mostrar Variantes da Máquina"
  37. #: fdmprinter.def.json
  38. msgctxt "machine_show_variants description"
  39. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  40. msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados."
  41. #: fdmprinter.def.json
  42. msgctxt "machine_start_gcode label"
  43. msgid "Start G-code"
  44. msgstr "G-code Inicial"
  45. #: fdmprinter.def.json
  46. msgctxt "machine_start_gcode description"
  47. msgid ""
  48. "G-code commands to be executed at the very start - separated by \n"
  49. "."
  50. msgstr ""
  51. "Comandos G-code a serem executados no início – separados por \n"
  52. "."
  53. #: fdmprinter.def.json
  54. msgctxt "machine_end_gcode label"
  55. msgid "End G-code"
  56. msgstr "G-code Final"
  57. #: fdmprinter.def.json
  58. msgctxt "machine_end_gcode description"
  59. msgid ""
  60. "G-code commands to be executed at the very end - separated by \n"
  61. "."
  62. msgstr ""
  63. "Comandos G-code a serem executados no fim – separados por \n"
  64. "."
  65. #: fdmprinter.def.json
  66. msgctxt "material_guid label"
  67. msgid "Material GUID"
  68. msgstr "GUID do material"
  69. #: fdmprinter.def.json
  70. msgctxt "material_guid description"
  71. msgid "GUID of the material. This is set automatically."
  72. msgstr "GUID do material. Este é definido automaticamente."
  73. #: fdmprinter.def.json
  74. msgctxt "material_diameter label"
  75. msgid "Diameter"
  76. msgstr "Diâmetro"
  77. #: fdmprinter.def.json
  78. msgctxt "material_diameter description"
  79. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  80. msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado."
  81. #: fdmprinter.def.json
  82. msgctxt "material_bed_temp_wait label"
  83. msgid "Wait for Build Plate Heatup"
  84. msgstr "Esperar pelo Aquecimento da Base de Construção"
  85. #: fdmprinter.def.json
  86. msgctxt "material_bed_temp_wait description"
  87. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  88. msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque."
  89. #: fdmprinter.def.json
  90. msgctxt "material_print_temp_wait label"
  91. msgid "Wait for Nozzle Heatup"
  92. msgstr "Esperar pelo aquecimento do nozzle"
  93. #: fdmprinter.def.json
  94. msgctxt "material_print_temp_wait description"
  95. msgid "Whether to wait until the nozzle temperature is reached at the start."
  96. msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque."
  97. #: fdmprinter.def.json
  98. msgctxt "material_print_temp_prepend label"
  99. msgid "Include Material Temperatures"
  100. msgstr "Incluir Temperaturas do Material"
  101. #: fdmprinter.def.json
  102. msgctxt "material_print_temp_prepend description"
  103. 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."
  104. msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição."
  105. #: fdmprinter.def.json
  106. msgctxt "material_bed_temp_prepend label"
  107. msgid "Include Build Plate Temperature"
  108. msgstr "Incluir Temperatura da Base de Construção"
  109. #: fdmprinter.def.json
  110. msgctxt "material_bed_temp_prepend description"
  111. 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."
  112. msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição."
  113. #: fdmprinter.def.json
  114. msgctxt "machine_width label"
  115. msgid "Machine Width"
  116. msgstr "Largura da Máquina"
  117. #: fdmprinter.def.json
  118. msgctxt "machine_width description"
  119. msgid "The width (X-direction) of the printable area."
  120. msgstr "A largura (direção X) da área de impressão."
  121. #: fdmprinter.def.json
  122. msgctxt "machine_depth label"
  123. msgid "Machine Depth"
  124. msgstr "Profundidade da Máquina"
  125. #: fdmprinter.def.json
  126. msgctxt "machine_depth description"
  127. msgid "The depth (Y-direction) of the printable area."
  128. msgstr "A profundidade (direção Y) da área de impressão."
  129. #: fdmprinter.def.json
  130. msgctxt "machine_height label"
  131. msgid "Machine Height"
  132. msgstr "Altura da Máquina"
  133. #: fdmprinter.def.json
  134. msgctxt "machine_height description"
  135. msgid "The height (Z-direction) of the printable area."
  136. msgstr "A altura (direção Z) da área de impressão."
  137. #: fdmprinter.def.json
  138. msgctxt "machine_shape label"
  139. msgid "Build Plate Shape"
  140. msgstr "Forma da Base de Construção"
  141. #: fdmprinter.def.json
  142. msgctxt "machine_shape description"
  143. msgid "The shape of the build plate without taking unprintable areas into account."
  144. msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir."
  145. #: fdmprinter.def.json
  146. msgctxt "machine_shape option rectangular"
  147. msgid "Rectangular"
  148. msgstr "Rectangular"
  149. #: fdmprinter.def.json
  150. msgctxt "machine_shape option elliptic"
  151. msgid "Elliptic"
  152. msgstr "Elíptica"
  153. #: fdmprinter.def.json
  154. msgctxt "machine_buildplate_type label"
  155. msgid "Build Plate Material"
  156. msgstr "Material da Base de Construção"
  157. #: fdmprinter.def.json
  158. msgctxt "machine_buildplate_type description"
  159. msgid "The material of the build plate installed on the printer."
  160. msgstr "O material da base de construção instalada na impressora."
  161. #: fdmprinter.def.json
  162. msgctxt "machine_buildplate_type option glass"
  163. msgid "Glass"
  164. msgstr "Vidro"
  165. #: fdmprinter.def.json
  166. msgctxt "machine_buildplate_type option aluminum"
  167. msgid "Aluminum"
  168. msgstr "Alumínio"
  169. #: fdmprinter.def.json
  170. msgctxt "machine_heated_bed label"
  171. msgid "Has Heated Build Plate"
  172. msgstr "Tem Base de Construção Aquecida"
  173. #: fdmprinter.def.json
  174. msgctxt "machine_heated_bed description"
  175. msgid "Whether the machine has a heated build plate present."
  176. msgstr "Se a máquina tem ou não uma base de construção aquecida."
  177. #: fdmprinter.def.json
  178. msgctxt "machine_heated_build_volume label"
  179. msgid "Has Build Volume Temperature Stabilization"
  180. msgstr "Tem estabilização da temperatura do volume de construção"
  181. #: fdmprinter.def.json
  182. msgctxt "machine_heated_build_volume description"
  183. msgid "Whether the machine is able to stabilize the build volume temperature."
  184. msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção."
  185. #: fdmprinter.def.json
  186. msgctxt "machine_always_write_active_tool label"
  187. msgid "Always Write Active Tool"
  188. msgstr "Ferramenta ativa escrever sempre"
  189. #: fdmprinter.def.json
  190. msgctxt "machine_always_write_active_tool description"
  191. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  192. msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais."
  193. #: fdmprinter.def.json
  194. msgctxt "machine_center_is_zero label"
  195. msgid "Is Center Origin"
  196. msgstr "O Centro é a Origem"
  197. #: fdmprinter.def.json
  198. msgctxt "machine_center_is_zero description"
  199. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  200. msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão."
  201. #: fdmprinter.def.json
  202. msgctxt "machine_extruder_count label"
  203. msgid "Number of Extruders"
  204. msgstr "Número de Extrusores"
  205. #: fdmprinter.def.json
  206. msgctxt "machine_extruder_count description"
  207. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  208. msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle."
  209. #: fdmprinter.def.json
  210. msgctxt "extruders_enabled_count label"
  211. msgid "Number of Extruders That Are Enabled"
  212. msgstr "Número de extrusores ativos"
  213. #: fdmprinter.def.json
  214. msgctxt "extruders_enabled_count description"
  215. msgid "Number of extruder trains that are enabled; automatically set in software"
  216. msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software"
  217. #: fdmprinter.def.json
  218. msgctxt "machine_nozzle_tip_outer_diameter label"
  219. msgid "Outer Nozzle Diameter"
  220. msgstr "Diâmetro externo do nozzle"
  221. #: fdmprinter.def.json
  222. msgctxt "machine_nozzle_tip_outer_diameter description"
  223. msgid "The outer diameter of the tip of the nozzle."
  224. msgstr "O diâmetro externo da ponta do nozzle."
  225. #: fdmprinter.def.json
  226. msgctxt "machine_nozzle_head_distance label"
  227. msgid "Nozzle Length"
  228. msgstr "Comprimento do nozzle"
  229. #: fdmprinter.def.json
  230. msgctxt "machine_nozzle_head_distance description"
  231. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  232. msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão."
  233. #: fdmprinter.def.json
  234. msgctxt "machine_nozzle_expansion_angle label"
  235. msgid "Nozzle Angle"
  236. msgstr "Ângulo do nozzle"
  237. #: fdmprinter.def.json
  238. msgctxt "machine_nozzle_expansion_angle description"
  239. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  240. msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle."
  241. #: fdmprinter.def.json
  242. msgctxt "machine_heat_zone_length label"
  243. msgid "Heat Zone Length"
  244. msgstr "Comprimento da zona de aquecimento"
  245. #: fdmprinter.def.json
  246. msgctxt "machine_heat_zone_length description"
  247. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  248. msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento."
  249. #: fdmprinter.def.json
  250. msgctxt "machine_nozzle_temp_enabled label"
  251. msgid "Enable Nozzle Temperature Control"
  252. msgstr "Ativar controlo de temperatura do nozzle"
  253. #: fdmprinter.def.json
  254. msgctxt "machine_nozzle_temp_enabled description"
  255. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  256. msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura."
  257. #: fdmprinter.def.json
  258. msgctxt "machine_nozzle_heat_up_speed label"
  259. msgid "Heat Up Speed"
  260. msgstr "Velocidade de aquecimento"
  261. #: fdmprinter.def.json
  262. msgctxt "machine_nozzle_heat_up_speed description"
  263. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  264. msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera."
  265. #: fdmprinter.def.json
  266. msgctxt "machine_nozzle_cool_down_speed label"
  267. msgid "Cool Down Speed"
  268. msgstr "Velocidade de arrefecimento"
  269. #: fdmprinter.def.json
  270. msgctxt "machine_nozzle_cool_down_speed description"
  271. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  272. msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera."
  273. #: fdmprinter.def.json
  274. msgctxt "machine_min_cool_heat_time_window label"
  275. msgid "Minimal Time Standby Temperature"
  276. msgstr "Tempo Mínimo da Temperatura em Modo de Espera"
  277. #: fdmprinter.def.json
  278. msgctxt "machine_min_cool_heat_time_window description"
  279. 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."
  280. msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este."
  281. #: fdmprinter.def.json
  282. msgctxt "machine_gcode_flavor label"
  283. msgid "G-code Flavor"
  284. msgstr "Variante do G-code"
  285. #: fdmprinter.def.json
  286. msgctxt "machine_gcode_flavor description"
  287. msgid "The type of g-code to be generated."
  288. msgstr "O tipo de G-code a ser gerado."
  289. #: fdmprinter.def.json
  290. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  291. msgid "Marlin"
  292. msgstr "Marlin"
  293. #: fdmprinter.def.json
  294. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  295. msgid "Marlin (Volumetric)"
  296. msgstr "Marlin (Volumétrico)"
  297. #: fdmprinter.def.json
  298. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  299. msgid "RepRap"
  300. msgstr "RepRap"
  301. #: fdmprinter.def.json
  302. msgctxt "machine_gcode_flavor option UltiGCode"
  303. msgid "Ultimaker 2"
  304. msgstr "Ultimaker 2"
  305. #: fdmprinter.def.json
  306. msgctxt "machine_gcode_flavor option Griffin"
  307. msgid "Griffin"
  308. msgstr "Griffin"
  309. #: fdmprinter.def.json
  310. msgctxt "machine_gcode_flavor option Makerbot"
  311. msgid "Makerbot"
  312. msgstr "Makerbot"
  313. #: fdmprinter.def.json
  314. msgctxt "machine_gcode_flavor option BFB"
  315. msgid "Bits from Bytes"
  316. msgstr "Bits from Bytes"
  317. #: fdmprinter.def.json
  318. msgctxt "machine_gcode_flavor option MACH3"
  319. msgid "Mach3"
  320. msgstr "Mach3"
  321. #: fdmprinter.def.json
  322. msgctxt "machine_gcode_flavor option Repetier"
  323. msgid "Repetier"
  324. msgstr "Repetier"
  325. #: fdmprinter.def.json
  326. msgctxt "machine_firmware_retract label"
  327. msgid "Firmware Retraction"
  328. msgstr "Retração em Firmware"
  329. #: fdmprinter.def.json
  330. msgctxt "machine_firmware_retract description"
  331. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  332. msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material."
  333. #: fdmprinter.def.json
  334. msgctxt "machine_extruders_share_heater label"
  335. msgid "Extruders Share Heater"
  336. msgstr "Extrusoras Partilham Aquecedor"
  337. #: fdmprinter.def.json
  338. msgctxt "machine_extruders_share_heater description"
  339. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  340. msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor."
  341. #: fdmprinter.def.json
  342. msgctxt "machine_extruders_share_nozzle label"
  343. msgid "Extruders Share Nozzle"
  344. msgstr "Extrusoras partilham bocal"
  345. #: fdmprinter.def.json
  346. msgctxt "machine_extruders_share_nozzle description"
  347. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  348. msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'."
  349. #: fdmprinter.def.json
  350. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  351. msgid "Shared Nozzle Initial Retraction"
  352. msgstr "Retração inicial do bocal partilhado"
  353. #: fdmprinter.def.json
  354. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  355. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  356. msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal."
  357. #: fdmprinter.def.json
  358. msgctxt "machine_disallowed_areas label"
  359. msgid "Disallowed Areas"
  360. msgstr "Áreas não permitidas"
  361. #: fdmprinter.def.json
  362. msgctxt "machine_disallowed_areas description"
  363. msgid "A list of polygons with areas the print head is not allowed to enter."
  364. msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar."
  365. #: fdmprinter.def.json
  366. msgctxt "nozzle_disallowed_areas label"
  367. msgid "Nozzle Disallowed Areas"
  368. msgstr "Áreas não permitidas ao nozzle"
  369. #: fdmprinter.def.json
  370. msgctxt "nozzle_disallowed_areas description"
  371. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  372. msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar."
  373. #: fdmprinter.def.json
  374. msgctxt "machine_head_with_fans_polygon label"
  375. msgid "Machine Head & Fan Polygon"
  376. msgstr "Polígono da cabeça e do ventilador da máquina"
  377. #: fdmprinter.def.json
  378. msgctxt "machine_head_with_fans_polygon description"
  379. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  380. msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos."
  381. #: fdmprinter.def.json
  382. msgctxt "gantry_height label"
  383. msgid "Gantry Height"
  384. msgstr "Altura do pórtico"
  385. #: fdmprinter.def.json
  386. msgctxt "gantry_height description"
  387. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  388. msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)."
  389. #: fdmprinter.def.json
  390. msgctxt "machine_nozzle_id label"
  391. msgid "Nozzle ID"
  392. msgstr "ID do Nozzle"
  393. #: fdmprinter.def.json
  394. msgctxt "machine_nozzle_id description"
  395. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  396. msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"."
  397. #: fdmprinter.def.json
  398. msgctxt "machine_nozzle_size label"
  399. msgid "Nozzle Diameter"
  400. msgstr "Diâmetro do Nozzle"
  401. #: fdmprinter.def.json
  402. msgctxt "machine_nozzle_size description"
  403. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  404. msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional."
  405. #: fdmprinter.def.json
  406. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  407. msgid "Offset with Extruder"
  408. msgstr "Desviar com extrusor"
  409. #: fdmprinter.def.json
  410. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  411. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  412. msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras."
  413. #: fdmprinter.def.json
  414. msgctxt "extruder_prime_pos_z label"
  415. msgid "Extruder Prime Z Position"
  416. msgstr "Posição Z para Preparação Extrusor"
  417. #: fdmprinter.def.json
  418. msgctxt "extruder_prime_pos_z description"
  419. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  420. msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão."
  421. #: fdmprinter.def.json
  422. msgctxt "extruder_prime_pos_abs label"
  423. msgid "Absolute Extruder Prime Position"
  424. msgstr "Posição Absoluta Preparação Extrusor"
  425. #: fdmprinter.def.json
  426. msgctxt "extruder_prime_pos_abs description"
  427. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  428. msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça."
  429. #: fdmprinter.def.json
  430. msgctxt "machine_max_feedrate_x label"
  431. msgid "Maximum Speed X"
  432. msgstr "Velocidade X Máxima"
  433. #: fdmprinter.def.json
  434. msgctxt "machine_max_feedrate_x description"
  435. msgid "The maximum speed for the motor of the X-direction."
  436. msgstr "A velocidade máxima do motor da direção X."
  437. #: fdmprinter.def.json
  438. msgctxt "machine_max_feedrate_y label"
  439. msgid "Maximum Speed Y"
  440. msgstr "Velocidade Y Máxima"
  441. #: fdmprinter.def.json
  442. msgctxt "machine_max_feedrate_y description"
  443. msgid "The maximum speed for the motor of the Y-direction."
  444. msgstr "A velocidade máxima do motor da direção Y."
  445. #: fdmprinter.def.json
  446. msgctxt "machine_max_feedrate_z label"
  447. msgid "Maximum Speed Z"
  448. msgstr "Velocidade Z Máxima"
  449. #: fdmprinter.def.json
  450. msgctxt "machine_max_feedrate_z description"
  451. msgid "The maximum speed for the motor of the Z-direction."
  452. msgstr "A velocidade máxima do motor da direção Z."
  453. #: fdmprinter.def.json
  454. msgctxt "machine_max_feedrate_e label"
  455. msgid "Maximum Speed E"
  456. msgstr "Velocidade Máxima de E"
  457. #: fdmprinter.def.json
  458. msgctxt "machine_max_feedrate_e description"
  459. msgid "The maximum speed of the filament."
  460. msgstr "A velocidade máxima do filamento."
  461. #: fdmprinter.def.json
  462. msgctxt "machine_max_acceleration_x label"
  463. msgid "Maximum Acceleration X"
  464. msgstr "Aceleração X Máxima"
  465. #: fdmprinter.def.json
  466. msgctxt "machine_max_acceleration_x description"
  467. msgid "Maximum acceleration for the motor of the X-direction"
  468. msgstr "A aceleração máxima do motor da direção X"
  469. #: fdmprinter.def.json
  470. msgctxt "machine_max_acceleration_y label"
  471. msgid "Maximum Acceleration Y"
  472. msgstr "Aceleração Y Máxima"
  473. #: fdmprinter.def.json
  474. msgctxt "machine_max_acceleration_y description"
  475. msgid "Maximum acceleration for the motor of the Y-direction."
  476. msgstr "A aceleração máxima do motor da direção Y."
  477. #: fdmprinter.def.json
  478. msgctxt "machine_max_acceleration_z label"
  479. msgid "Maximum Acceleration Z"
  480. msgstr "Aceleração Z Máxima"
  481. #: fdmprinter.def.json
  482. msgctxt "machine_max_acceleration_z description"
  483. msgid "Maximum acceleration for the motor of the Z-direction."
  484. msgstr "A aceleração máxima do motor da direção Z."
  485. #: fdmprinter.def.json
  486. msgctxt "machine_max_acceleration_e label"
  487. msgid "Maximum Filament Acceleration"
  488. msgstr "Aceleração Máxima do Filamento"
  489. #: fdmprinter.def.json
  490. msgctxt "machine_max_acceleration_e description"
  491. msgid "Maximum acceleration for the motor of the filament."
  492. msgstr "A aceleração máxima do motor do filamento."
  493. #: fdmprinter.def.json
  494. msgctxt "machine_acceleration label"
  495. msgid "Default Acceleration"
  496. msgstr "Aceleração Predefinida"
  497. #: fdmprinter.def.json
  498. msgctxt "machine_acceleration description"
  499. msgid "The default acceleration of print head movement."
  500. msgstr "A aceleração predefinida do movimento da cabeça de impressão."
  501. #: fdmprinter.def.json
  502. msgctxt "machine_max_jerk_xy label"
  503. msgid "Default X-Y Jerk"
  504. msgstr "Jerk X-Y Predefinido"
  505. #: fdmprinter.def.json
  506. msgctxt "machine_max_jerk_xy description"
  507. msgid "Default jerk for movement in the horizontal plane."
  508. msgstr "O jerk predefinido do movimento no plano horizontal."
  509. #: fdmprinter.def.json
  510. msgctxt "machine_max_jerk_z label"
  511. msgid "Default Z Jerk"
  512. msgstr "Jerk Z Predefinido"
  513. #: fdmprinter.def.json
  514. msgctxt "machine_max_jerk_z description"
  515. msgid "Default jerk for the motor of the Z-direction."
  516. msgstr "O jerk predefinido do motor da direção Z."
  517. #: fdmprinter.def.json
  518. msgctxt "machine_max_jerk_e label"
  519. msgid "Default Filament Jerk"
  520. msgstr "Jerk Predefinido do Filamento"
  521. #: fdmprinter.def.json
  522. msgctxt "machine_max_jerk_e description"
  523. msgid "Default jerk for the motor of the filament."
  524. msgstr "O jerk predefinido do motor do filamento."
  525. #: fdmprinter.def.json
  526. msgctxt "machine_steps_per_mm_x label"
  527. msgid "Steps per Millimeter (X)"
  528. msgstr "Passos por Milímetro (X)"
  529. #: fdmprinter.def.json
  530. msgctxt "machine_steps_per_mm_x description"
  531. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  532. msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X."
  533. #: fdmprinter.def.json
  534. msgctxt "machine_steps_per_mm_y label"
  535. msgid "Steps per Millimeter (Y)"
  536. msgstr "Passos por Milímetro (Y)"
  537. #: fdmprinter.def.json
  538. msgctxt "machine_steps_per_mm_y description"
  539. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  540. msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y."
  541. #: fdmprinter.def.json
  542. msgctxt "machine_steps_per_mm_z label"
  543. msgid "Steps per Millimeter (Z)"
  544. msgstr "Passos por Milímetro (Z)"
  545. #: fdmprinter.def.json
  546. msgctxt "machine_steps_per_mm_z description"
  547. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  548. msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z."
  549. #: fdmprinter.def.json
  550. msgctxt "machine_steps_per_mm_e label"
  551. msgid "Steps per Millimeter (E)"
  552. msgstr "Passos por Milímetro (E)"
  553. #: fdmprinter.def.json
  554. msgctxt "machine_steps_per_mm_e description"
  555. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  556. msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência."
  557. #: fdmprinter.def.json
  558. msgctxt "machine_endstop_positive_direction_x label"
  559. msgid "X Endstop in Positive Direction"
  560. msgstr "Endstop X no Sentido Positivo"
  561. #: fdmprinter.def.json
  562. msgctxt "machine_endstop_positive_direction_x description"
  563. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  564. msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)."
  565. #: fdmprinter.def.json
  566. msgctxt "machine_endstop_positive_direction_y label"
  567. msgid "Y Endstop in Positive Direction"
  568. msgstr "Endstop Y no Sentido Positivo"
  569. #: fdmprinter.def.json
  570. msgctxt "machine_endstop_positive_direction_y description"
  571. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  572. msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)."
  573. #: fdmprinter.def.json
  574. msgctxt "machine_endstop_positive_direction_z label"
  575. msgid "Z Endstop in Positive Direction"
  576. msgstr "Endstop Z no Sentido Positivo"
  577. #: fdmprinter.def.json
  578. msgctxt "machine_endstop_positive_direction_z description"
  579. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  580. msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)."
  581. #: fdmprinter.def.json
  582. msgctxt "machine_minimum_feedrate label"
  583. msgid "Minimum Feedrate"
  584. msgstr "Velocidade Mínima de Alimentação"
  585. #: fdmprinter.def.json
  586. msgctxt "machine_minimum_feedrate description"
  587. msgid "The minimal movement speed of the print head."
  588. msgstr "A velocidade mínima de movimento da cabeça de impressão."
  589. #: fdmprinter.def.json
  590. msgctxt "machine_feeder_wheel_diameter label"
  591. msgid "Feeder Wheel Diameter"
  592. msgstr "Diâmetro Roda do Alimentador"
  593. #: fdmprinter.def.json
  594. msgctxt "machine_feeder_wheel_diameter description"
  595. msgid "The diameter of the wheel that drives the material in the feeder."
  596. msgstr "O diâmetro da roda que conduz o material pelo alimentador."
  597. #: fdmprinter.def.json
  598. msgctxt "machine_scale_fan_speed_zero_to_one label"
  599. msgid "Scale Fan Speed To 0-1"
  600. msgstr "Ajustar a velocidade do ventilador entre 0-1"
  601. #: fdmprinter.def.json
  602. msgctxt "machine_scale_fan_speed_zero_to_one description"
  603. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  604. msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256."
  605. #: fdmprinter.def.json
  606. msgctxt "resolution label"
  607. msgid "Quality"
  608. msgstr "Qualidade"
  609. #: fdmprinter.def.json
  610. msgctxt "resolution description"
  611. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  612. msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)."
  613. #: fdmprinter.def.json
  614. msgctxt "layer_height label"
  615. msgid "Layer Height"
  616. msgstr "Espessura das Camadas"
  617. #: fdmprinter.def.json
  618. msgctxt "layer_height description"
  619. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  620. msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade."
  621. #: fdmprinter.def.json
  622. msgctxt "layer_height_0 label"
  623. msgid "Initial Layer Height"
  624. msgstr "Espessura da Camada Inicial"
  625. #: fdmprinter.def.json
  626. msgctxt "layer_height_0 description"
  627. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  628. msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção."
  629. #: fdmprinter.def.json
  630. msgctxt "line_width label"
  631. msgid "Line Width"
  632. msgstr "Diâmetro da Linha"
  633. #: fdmprinter.def.json
  634. msgctxt "line_width description"
  635. 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."
  636. msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões."
  637. #: fdmprinter.def.json
  638. msgctxt "wall_line_width label"
  639. msgid "Wall Line Width"
  640. msgstr "Diâmetro Linha Parede"
  641. #: fdmprinter.def.json
  642. msgctxt "wall_line_width description"
  643. msgid "Width of a single wall line."
  644. msgstr "O diâmetro de uma única linha de parede."
  645. #: fdmprinter.def.json
  646. msgctxt "wall_line_width_0 label"
  647. msgid "Outer Wall Line Width"
  648. msgstr "Diâmetro Linha Parede Exterior"
  649. #: fdmprinter.def.json
  650. msgctxt "wall_line_width_0 description"
  651. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  652. msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe."
  653. #: fdmprinter.def.json
  654. msgctxt "wall_line_width_x label"
  655. msgid "Inner Wall(s) Line Width"
  656. msgstr "Diâmetro Linha Parede(s) Interior"
  657. #: fdmprinter.def.json
  658. msgctxt "wall_line_width_x description"
  659. msgid "Width of a single wall line for all wall lines except the outermost one."
  660. msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior."
  661. #: fdmprinter.def.json
  662. msgctxt "skin_line_width label"
  663. msgid "Top/Bottom Line Width"
  664. msgstr "Diâmetro Linha Superior / Inferior"
  665. #: fdmprinter.def.json
  666. msgctxt "skin_line_width description"
  667. msgid "Width of a single top/bottom line."
  668. msgstr "O diâmetro de uma única linha das superfícies superior/inferior."
  669. #: fdmprinter.def.json
  670. msgctxt "infill_line_width label"
  671. msgid "Infill Line Width"
  672. msgstr "Diâmetro Linha Enchimento"
  673. #: fdmprinter.def.json
  674. msgctxt "infill_line_width description"
  675. msgid "Width of a single infill line."
  676. msgstr "O diâmetro de uma única linha de enchimento."
  677. #: fdmprinter.def.json
  678. msgctxt "skirt_brim_line_width label"
  679. msgid "Skirt/Brim Line Width"
  680. msgstr "Diâmetro Linha Contorno/Aba"
  681. #: fdmprinter.def.json
  682. msgctxt "skirt_brim_line_width description"
  683. msgid "Width of a single skirt or brim line."
  684. msgstr "O diâmetro de uma única linha do contorno ou da aba."
  685. #: fdmprinter.def.json
  686. msgctxt "support_line_width label"
  687. msgid "Support Line Width"
  688. msgstr "Diâmetro Linha Suportes"
  689. #: fdmprinter.def.json
  690. msgctxt "support_line_width description"
  691. msgid "Width of a single support structure line."
  692. msgstr "O diâmetro de uma única linha da estrutura de suporte."
  693. #: fdmprinter.def.json
  694. msgctxt "support_interface_line_width label"
  695. msgid "Support Interface Line Width"
  696. msgstr "Diâmetro Linha Interface Suporte"
  697. #: fdmprinter.def.json
  698. msgctxt "support_interface_line_width description"
  699. msgid "Width of a single line of support roof or floor."
  700. msgstr "O diâmetro de uma única linha do chão ou tecto de suporte."
  701. #: fdmprinter.def.json
  702. msgctxt "support_roof_line_width label"
  703. msgid "Support Roof Line Width"
  704. msgstr "Diâmetro Linha Tecto Suporte"
  705. #: fdmprinter.def.json
  706. msgctxt "support_roof_line_width description"
  707. msgid "Width of a single support roof line."
  708. msgstr "O diâmetro de uma única linha do tecto de suporte."
  709. #: fdmprinter.def.json
  710. msgctxt "support_bottom_line_width label"
  711. msgid "Support Floor Line Width"
  712. msgstr "Diâmetro Linha Piso Suporte"
  713. #: fdmprinter.def.json
  714. msgctxt "support_bottom_line_width description"
  715. msgid "Width of a single support floor line."
  716. msgstr "O diâmetro de uma única linha do piso de suporte."
  717. #: fdmprinter.def.json
  718. msgctxt "prime_tower_line_width label"
  719. msgid "Prime Tower Line Width"
  720. msgstr "Diâmetro Linha Torre Preparação"
  721. #: fdmprinter.def.json
  722. msgctxt "prime_tower_line_width description"
  723. msgid "Width of a single prime tower line."
  724. msgstr "O diâmetro de uma única linha da torre de preparação."
  725. #: fdmprinter.def.json
  726. msgctxt "initial_layer_line_width_factor label"
  727. msgid "Initial Layer Line Width"
  728. msgstr "Diâmetro Linha Camada Inicial"
  729. #: fdmprinter.def.json
  730. msgctxt "initial_layer_line_width_factor description"
  731. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  732. msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção."
  733. #: fdmprinter.def.json
  734. msgctxt "shell label"
  735. msgid "Walls"
  736. msgstr "Paredes"
  737. #: fdmprinter.def.json
  738. msgctxt "shell description"
  739. msgid "Shell"
  740. msgstr "Invólucro"
  741. #: fdmprinter.def.json
  742. msgctxt "wall_extruder_nr label"
  743. msgid "Wall Extruder"
  744. msgstr "Extrusor Paredes"
  745. #: fdmprinter.def.json
  746. msgctxt "wall_extruder_nr description"
  747. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  748. msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores."
  749. #: fdmprinter.def.json
  750. msgctxt "wall_0_extruder_nr label"
  751. msgid "Outer Wall Extruder"
  752. msgstr "Extrusor Parede Exterior"
  753. #: fdmprinter.def.json
  754. msgctxt "wall_0_extruder_nr description"
  755. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  756. msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores."
  757. #: fdmprinter.def.json
  758. msgctxt "wall_x_extruder_nr label"
  759. msgid "Inner Wall Extruder"
  760. msgstr "Extrusor Paredes Interiores"
  761. #: fdmprinter.def.json
  762. msgctxt "wall_x_extruder_nr description"
  763. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  764. msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores."
  765. #: fdmprinter.def.json
  766. msgctxt "wall_thickness label"
  767. msgid "Wall Thickness"
  768. msgstr "Espessura das Paredes"
  769. #: fdmprinter.def.json
  770. msgctxt "wall_thickness description"
  771. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  772. msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes."
  773. #: fdmprinter.def.json
  774. msgctxt "wall_line_count label"
  775. msgid "Wall Line Count"
  776. msgstr "Número Linhas Paredes"
  777. #: fdmprinter.def.json
  778. msgctxt "wall_line_count description"
  779. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  780. msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro."
  781. #: fdmprinter.def.json
  782. msgctxt "wall_transition_length label"
  783. msgid "Wall Transition Length"
  784. msgstr "Comprimento de transição de paredes"
  785. #: fdmprinter.def.json
  786. msgctxt "wall_transition_length description"
  787. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  788. msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes."
  789. #: fdmprinter.def.json
  790. msgctxt "wall_distribution_count label"
  791. msgid "Wall Distribution Count"
  792. msgstr "Número de paredes distribuídas"
  793. #: fdmprinter.def.json
  794. msgctxt "wall_distribution_count description"
  795. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  796. msgstr "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro."
  797. #: fdmprinter.def.json
  798. msgctxt "wall_transition_angle label"
  799. msgid "Wall Transitioning Threshold Angle"
  800. msgstr "Ângulo do limiar de transição de paredes"
  801. #: fdmprinter.def.json
  802. msgctxt "wall_transition_angle description"
  803. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  804. msgstr "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão."
  805. #: fdmprinter.def.json
  806. msgctxt "wall_transition_filter_distance label"
  807. msgid "Wall Transitioning Filter Distance"
  808. msgstr "Distância do filtro de transição de paredes"
  809. #: fdmprinter.def.json
  810. msgctxt "wall_transition_filter_distance description"
  811. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  812. msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância."
  813. #: fdmprinter.def.json
  814. msgctxt "wall_transition_filter_deviation label"
  815. msgid "Wall Transitioning Filter Margin"
  816. msgstr "Margem do filtro de transição de paredes"
  817. #: fdmprinter.def.json
  818. msgctxt "wall_transition_filter_deviation description"
  819. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  820. msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão."
  821. #: fdmprinter.def.json
  822. msgctxt "wall_0_wipe_dist label"
  823. msgid "Outer Wall Wipe Distance"
  824. msgstr "Distância Limpeza Parede Exterior"
  825. #: fdmprinter.def.json
  826. msgctxt "wall_0_wipe_dist description"
  827. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  828. msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z."
  829. #: fdmprinter.def.json
  830. msgctxt "wall_0_inset label"
  831. msgid "Outer Wall Inset"
  832. msgstr "Desvio Parede Exterior"
  833. #: fdmprinter.def.json
  834. msgctxt "wall_0_inset description"
  835. 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."
  836. msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo."
  837. #: fdmprinter.def.json
  838. msgctxt "optimize_wall_printing_order label"
  839. msgid "Optimize Wall Printing Order"
  840. msgstr "Otimizar Ordem Paredes"
  841. #: fdmprinter.def.json
  842. msgctxt "optimize_wall_printing_order description"
  843. 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."
  844. msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização."
  845. #: fdmprinter.def.json
  846. msgctxt "inset_direction label"
  847. msgid "Wall Ordering"
  848. msgstr "Ordenação de paredes"
  849. #: fdmprinter.def.json
  850. msgctxt "inset_direction description"
  851. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed."
  852. msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências."
  853. #: fdmprinter.def.json
  854. msgctxt "inset_direction option inside_out"
  855. msgid "Inside To Outside"
  856. msgstr "De dentro para fora"
  857. #: fdmprinter.def.json
  858. msgctxt "inset_direction option outside_in"
  859. msgid "Outside To Inside"
  860. msgstr "De fora para dentro"
  861. #: fdmprinter.def.json
  862. msgctxt "alternate_extra_perimeter label"
  863. msgid "Alternate Extra Wall"
  864. msgstr "Alternar Parede Adicional"
  865. #: fdmprinter.def.json
  866. msgctxt "alternate_extra_perimeter description"
  867. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  868. msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas."
  869. #: fdmprinter.def.json
  870. msgctxt "min_wall_line_width label"
  871. msgid "Minimum Wall Line Width"
  872. msgstr "Diâmetro mínimo de linha da parede"
  873. #: fdmprinter.def.json
  874. msgctxt "min_wall_line_width description"
  875. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  876. msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede."
  877. #: fdmprinter.def.json
  878. msgctxt "min_even_wall_line_width label"
  879. msgid "Minimum Even Wall Line Width"
  880. msgstr "Diâmetro mínimo de linha da parede Par"
  881. #: fdmprinter.def.json
  882. msgctxt "min_even_wall_line_width description"
  883. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  884. msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar."
  885. #: fdmprinter.def.json
  886. msgctxt "wall_split_middle_threshold label"
  887. msgid "Split Middle Line Threshold"
  888. msgstr "Dividir limiar da linha do meio"
  889. #: fdmprinter.def.json
  890. msgctxt "wall_split_middle_threshold description"
  891. msgid "The smallest line width, as a factor of the normal line width, above which the middle line (if there is one) will be split into two. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  892. msgstr "O diâmetro da linha mais pequena, como fator do diâmetro da linha normal, acima da qual a linha do meio (se existir uma) será dividida em duas. Reduza esta definição para utilizar mais linhas e mais finas. Aumente para utilizar menos linhas e mais largas. Tenha em atenção que esta regra se aplica como se toda a forma tivesse de ser preenchida com parede, pelo que o meio aqui se refere ao meio do objeto entre duas arestas exteriores da forma, mesmo que exista realmente enchimento ou (outro) revestimento na impressão em vez de parede."
  893. #: fdmprinter.def.json
  894. msgctxt "min_odd_wall_line_width label"
  895. msgid "Minimum Odd Wall Line Width"
  896. msgstr "Diâmetro mínimo de linha da parede Ímpar"
  897. #: fdmprinter.def.json
  898. msgctxt "min_odd_wall_line_width description"
  899. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width,"
  900. msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede Ímpar maior provoca um maior diâmetro máximo de linha da parede Par. O diâmetro máximo de linha da parede Ímpar é calculado como 2 * diâmetro mínimo de linha da parede Par,"
  901. #: fdmprinter.def.json
  902. msgctxt "wall_add_middle_threshold label"
  903. msgid "Add Middle Line Threshold"
  904. msgstr "Adicionar limiar da linha do meio"
  905. #: fdmprinter.def.json
  906. msgctxt "wall_add_middle_threshold description"
  907. msgid "The smallest line width, as a factor of the normal line width, above which a middle line (if there wasn't one already) will be added. Reduce this setting to use more, thinner lines. Increase to use fewer, wider lines. Note that this applies -as if- the entire shape should be filled with wall, so the middle here refers to the middle of the object between two outer edges of the shape, even if there actually is fill or (other) skin in the print instead of wall."
  908. msgstr "O diâmetro da linha mais pequena, como fator do diâmetro da linha normal, acima da qual será adicionada uma linha do meio (se não existir já uma). Reduza esta definição para utilizar mais linhas e mais finas. Aumente para utilizar menos linhas e mais largas. Tenha em atenção que esta regra se aplica como se toda a forma tivesse de ser preenchida com parede, pelo que o meio aqui se refere ao meio do objeto entre duas arestas exteriores da forma, mesmo que exista realmente enchimento ou (outro) revestimento na impressão em vez de parede."
  909. #: fdmprinter.def.json
  910. msgctxt "fill_outline_gaps label"
  911. msgid "Print Thin Walls"
  912. msgstr "Imprimir Paredes Finas"
  913. #: fdmprinter.def.json
  914. msgctxt "fill_outline_gaps description"
  915. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  916. msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle."
  917. #: fdmprinter.def.json
  918. msgctxt "min_feature_size label"
  919. msgid "Minimum Feature Size"
  920. msgstr "Tamanho mínimo da característica"
  921. #: fdmprinter.def.json
  922. msgctxt "min_feature_size description"
  923. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  924. msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede."
  925. #: fdmprinter.def.json
  926. msgctxt "min_bead_width label"
  927. msgid "Minimum Thin Wall Line Width"
  928. msgstr "Diâmetro mínimo de linha da parede fina"
  929. #: fdmprinter.def.json
  930. msgctxt "min_bead_width description"
  931. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  932. msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento."
  933. #: fdmprinter.def.json
  934. msgctxt "xy_offset label"
  935. msgid "Horizontal Expansion"
  936. msgstr "Expansão Horizontal"
  937. #: fdmprinter.def.json
  938. msgctxt "xy_offset description"
  939. 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."
  940. msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos."
  941. #: fdmprinter.def.json
  942. msgctxt "xy_offset_layer_0 label"
  943. msgid "Initial Layer Horizontal Expansion"
  944. msgstr "Expansão Horizontal Camada Inicial"
  945. #: fdmprinter.def.json
  946. msgctxt "xy_offset_layer_0 description"
  947. 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\"."
  948. msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"."
  949. #: fdmprinter.def.json
  950. msgctxt "hole_xy_offset label"
  951. msgid "Hole Horizontal Expansion"
  952. msgstr "Expansão horizontal de buraco"
  953. #: fdmprinter.def.json
  954. msgctxt "hole_xy_offset description"
  955. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  956. msgstr "Quantidade de desvio aplicado a todos os buracos em cada camada. Valores positivos aumentam o tamanho dos buracos; valores negativos reduzem o tamanho dos buracos."
  957. #: fdmprinter.def.json
  958. msgctxt "z_seam_type label"
  959. msgid "Z Seam Alignment"
  960. msgstr "Alinhamento da Junta-Z"
  961. #: fdmprinter.def.json
  962. msgctxt "z_seam_type description"
  963. 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."
  964. msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida."
  965. #: fdmprinter.def.json
  966. msgctxt "z_seam_type option back"
  967. msgid "User Specified"
  968. msgstr "Definido pelo utilizador"
  969. #: fdmprinter.def.json
  970. msgctxt "z_seam_type option shortest"
  971. msgid "Shortest"
  972. msgstr "Mais curto"
  973. #: fdmprinter.def.json
  974. msgctxt "z_seam_type option random"
  975. msgid "Random"
  976. msgstr "Aleatório"
  977. #: fdmprinter.def.json
  978. msgctxt "z_seam_type option sharpest_corner"
  979. msgid "Sharpest Corner"
  980. msgstr "Canto mais Acentuado"
  981. #: fdmprinter.def.json
  982. msgctxt "z_seam_position label"
  983. msgid "Z Seam Position"
  984. msgstr "Posição da Junta-Z"
  985. #: fdmprinter.def.json
  986. msgctxt "z_seam_position description"
  987. msgid "The position near where to start printing each part in a layer."
  988. msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  989. #: fdmprinter.def.json
  990. msgctxt "z_seam_position option backleft"
  991. msgid "Back Left"
  992. msgstr "Posterior esquerda"
  993. #: fdmprinter.def.json
  994. msgctxt "z_seam_position option back"
  995. msgid "Back"
  996. msgstr "Anterior"
  997. #: fdmprinter.def.json
  998. msgctxt "z_seam_position option backright"
  999. msgid "Back Right"
  1000. msgstr "Posterior direita"
  1001. #: fdmprinter.def.json
  1002. msgctxt "z_seam_position option right"
  1003. msgid "Right"
  1004. msgstr "Direita"
  1005. #: fdmprinter.def.json
  1006. msgctxt "z_seam_position option frontright"
  1007. msgid "Front Right"
  1008. msgstr "Frontal direita"
  1009. #: fdmprinter.def.json
  1010. msgctxt "z_seam_position option front"
  1011. msgid "Front"
  1012. msgstr "Frontal"
  1013. #: fdmprinter.def.json
  1014. msgctxt "z_seam_position option frontleft"
  1015. msgid "Front Left"
  1016. msgstr "Frontal esquerda"
  1017. #: fdmprinter.def.json
  1018. msgctxt "z_seam_position option left"
  1019. msgid "Left"
  1020. msgstr "Esquerda"
  1021. #: fdmprinter.def.json
  1022. msgctxt "z_seam_x label"
  1023. msgid "Z Seam X"
  1024. msgstr "X da Junta-Z"
  1025. #: fdmprinter.def.json
  1026. msgctxt "z_seam_x description"
  1027. msgid "The X coordinate of the position near where to start printing each part in a layer."
  1028. msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  1029. #: fdmprinter.def.json
  1030. msgctxt "z_seam_y label"
  1031. msgid "Z Seam Y"
  1032. msgstr "Y da Junta-Z"
  1033. #: fdmprinter.def.json
  1034. msgctxt "z_seam_y description"
  1035. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1036. msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  1037. #: fdmprinter.def.json
  1038. msgctxt "z_seam_corner label"
  1039. msgid "Seam Corner Preference"
  1040. msgstr "Preferência Canto Junta"
  1041. #: fdmprinter.def.json
  1042. msgctxt "z_seam_corner description"
  1043. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  1044. msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado."
  1045. #: fdmprinter.def.json
  1046. msgctxt "z_seam_corner option z_seam_corner_none"
  1047. msgid "None"
  1048. msgstr "Nenhum"
  1049. #: fdmprinter.def.json
  1050. msgctxt "z_seam_corner option z_seam_corner_inner"
  1051. msgid "Hide Seam"
  1052. msgstr "Ocultar Junta"
  1053. #: fdmprinter.def.json
  1054. msgctxt "z_seam_corner option z_seam_corner_outer"
  1055. msgid "Expose Seam"
  1056. msgstr "Expor Junta"
  1057. #: fdmprinter.def.json
  1058. msgctxt "z_seam_corner option z_seam_corner_any"
  1059. msgid "Hide or Expose Seam"
  1060. msgstr "Ocultar ou Expor Junta"
  1061. #: fdmprinter.def.json
  1062. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1063. msgid "Smart Hiding"
  1064. msgstr "Ocultação Inteligente"
  1065. #: fdmprinter.def.json
  1066. msgctxt "z_seam_relative label"
  1067. msgid "Z Seam Relative"
  1068. msgstr "Relativo à Junta-Z"
  1069. #: fdmprinter.def.json
  1070. msgctxt "z_seam_relative description"
  1071. 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."
  1072. msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção."
  1073. #: fdmprinter.def.json
  1074. msgctxt "top_bottom label"
  1075. msgid "Top/Bottom"
  1076. msgstr "Superior / Inferior"
  1077. #: fdmprinter.def.json
  1078. msgctxt "top_bottom description"
  1079. msgid "Top/Bottom"
  1080. msgstr "Superior / Inferior"
  1081. #: fdmprinter.def.json
  1082. msgctxt "roofing_extruder_nr label"
  1083. msgid "Top Surface Skin Extruder"
  1084. msgstr "Extrusor Revestimento Superior"
  1085. #: fdmprinter.def.json
  1086. msgctxt "roofing_extruder_nr description"
  1087. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  1088. msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores."
  1089. #: fdmprinter.def.json
  1090. msgctxt "roofing_layer_count label"
  1091. msgid "Top Surface Skin Layers"
  1092. msgstr "Camadas Revestimento Superior"
  1093. #: fdmprinter.def.json
  1094. msgctxt "roofing_layer_count description"
  1095. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  1096. msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade."
  1097. #: fdmprinter.def.json
  1098. msgctxt "top_bottom_extruder_nr label"
  1099. msgid "Top/Bottom Extruder"
  1100. msgstr "Extrusor Superior / Inferior"
  1101. #: fdmprinter.def.json
  1102. msgctxt "top_bottom_extruder_nr description"
  1103. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  1104. msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores."
  1105. #: fdmprinter.def.json
  1106. msgctxt "top_bottom_thickness label"
  1107. msgid "Top/Bottom Thickness"
  1108. msgstr "Espessura Superior / Inferior"
  1109. #: fdmprinter.def.json
  1110. msgctxt "top_bottom_thickness description"
  1111. 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."
  1112. msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores."
  1113. #: fdmprinter.def.json
  1114. msgctxt "top_thickness label"
  1115. msgid "Top Thickness"
  1116. msgstr "Espessura Superior"
  1117. #: fdmprinter.def.json
  1118. msgctxt "top_thickness description"
  1119. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  1120. msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores."
  1121. #: fdmprinter.def.json
  1122. msgctxt "top_layers label"
  1123. msgid "Top Layers"
  1124. msgstr "Camadas Superiores"
  1125. #: fdmprinter.def.json
  1126. msgctxt "top_layers description"
  1127. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  1128. msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro."
  1129. #: fdmprinter.def.json
  1130. msgctxt "bottom_thickness label"
  1131. msgid "Bottom Thickness"
  1132. msgstr "Espessura Inferior"
  1133. #: fdmprinter.def.json
  1134. msgctxt "bottom_thickness description"
  1135. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  1136. msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores."
  1137. #: fdmprinter.def.json
  1138. msgctxt "bottom_layers label"
  1139. msgid "Bottom Layers"
  1140. msgstr "Camadas Inferiores"
  1141. #: fdmprinter.def.json
  1142. msgctxt "bottom_layers description"
  1143. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  1144. msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro."
  1145. #: fdmprinter.def.json
  1146. msgctxt "initial_bottom_layers label"
  1147. msgid "Initial Bottom Layers"
  1148. msgstr "Camadas inferiores iniciais"
  1149. #: fdmprinter.def.json
  1150. msgctxt "initial_bottom_layers description"
  1151. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  1152. msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro."
  1153. #: fdmprinter.def.json
  1154. msgctxt "top_bottom_pattern label"
  1155. msgid "Top/Bottom Pattern"
  1156. msgstr "Padrão Superior / Inferior"
  1157. #: fdmprinter.def.json
  1158. msgctxt "top_bottom_pattern description"
  1159. msgid "The pattern of the top/bottom layers."
  1160. msgstr "O padrão geométrico das camadas superiores / inferiores."
  1161. #: fdmprinter.def.json
  1162. msgctxt "top_bottom_pattern option lines"
  1163. msgid "Lines"
  1164. msgstr "Linhas"
  1165. #: fdmprinter.def.json
  1166. msgctxt "top_bottom_pattern option concentric"
  1167. msgid "Concentric"
  1168. msgstr "Concêntrico"
  1169. #: fdmprinter.def.json
  1170. msgctxt "top_bottom_pattern option zigzag"
  1171. msgid "Zig Zag"
  1172. msgstr "Ziguezague"
  1173. #: fdmprinter.def.json
  1174. msgctxt "top_bottom_pattern_0 label"
  1175. msgid "Bottom Pattern Initial Layer"
  1176. msgstr "Padrão da Base na Camada Inicial"
  1177. #: fdmprinter.def.json
  1178. msgctxt "top_bottom_pattern_0 description"
  1179. msgid "The pattern on the bottom of the print on the first layer."
  1180. msgstr "O padrão geométrico da base da peça na camada inicial."
  1181. #: fdmprinter.def.json
  1182. msgctxt "top_bottom_pattern_0 option lines"
  1183. msgid "Lines"
  1184. msgstr "Linhas"
  1185. #: fdmprinter.def.json
  1186. msgctxt "top_bottom_pattern_0 option concentric"
  1187. msgid "Concentric"
  1188. msgstr "Concêntrico"
  1189. #: fdmprinter.def.json
  1190. msgctxt "top_bottom_pattern_0 option zigzag"
  1191. msgid "Zig Zag"
  1192. msgstr "Ziguezague"
  1193. #: fdmprinter.def.json
  1194. msgctxt "connect_skin_polygons label"
  1195. msgid "Connect Top/Bottom Polygons"
  1196. msgstr "Ligar polígonos superiores/inferiores"
  1197. #: fdmprinter.def.json
  1198. msgctxt "connect_skin_polygons description"
  1199. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  1200. msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior."
  1201. #: fdmprinter.def.json
  1202. msgctxt "skin_monotonic label"
  1203. msgid "Monotonic Top/Bottom Order"
  1204. msgstr "Ordem Superior/Inferior em \"Monotonic\""
  1205. #: fdmprinter.def.json
  1206. msgctxt "skin_monotonic description"
  1207. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1208. msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente."
  1209. #: fdmprinter.def.json
  1210. msgctxt "skin_angles label"
  1211. msgid "Top/Bottom Line Directions"
  1212. msgstr "Direções Linha Superior / Inferior"
  1213. #: fdmprinter.def.json
  1214. msgctxt "skin_angles description"
  1215. 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)."
  1216. msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)."
  1217. #: fdmprinter.def.json
  1218. msgctxt "skin_no_small_gaps_heuristic label"
  1219. msgid "No Skin in Z Gaps"
  1220. msgstr "Sem Revestimento nos Espaços Z"
  1221. #: fdmprinter.def.json
  1222. msgctxt "skin_no_small_gaps_heuristic description"
  1223. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  1224. msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar."
  1225. #: fdmprinter.def.json
  1226. msgctxt "skin_outline_count label"
  1227. msgid "Extra Skin Wall Count"
  1228. msgstr "Paredes Revestimento Extra"
  1229. #: fdmprinter.def.json
  1230. msgctxt "skin_outline_count description"
  1231. 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."
  1232. msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento."
  1233. #: fdmprinter.def.json
  1234. msgctxt "ironing_enabled label"
  1235. msgid "Enable Ironing"
  1236. msgstr "Ativar Engomar (Ironing)"
  1237. #: fdmprinter.def.json
  1238. msgctxt "ironing_enabled description"
  1239. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1240. msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material."
  1241. #: fdmprinter.def.json
  1242. msgctxt "ironing_only_highest_layer label"
  1243. msgid "Iron Only Highest Layer"
  1244. msgstr "Engomar Só Última Camada"
  1245. #: fdmprinter.def.json
  1246. msgctxt "ironing_only_highest_layer description"
  1247. 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."
  1248. msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave."
  1249. #: fdmprinter.def.json
  1250. msgctxt "ironing_pattern label"
  1251. msgid "Ironing Pattern"
  1252. msgstr "Padrão de Engomar"
  1253. #: fdmprinter.def.json
  1254. msgctxt "ironing_pattern description"
  1255. msgid "The pattern to use for ironing top surfaces."
  1256. msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores."
  1257. #: fdmprinter.def.json
  1258. msgctxt "ironing_pattern option concentric"
  1259. msgid "Concentric"
  1260. msgstr "Concêntrico"
  1261. #: fdmprinter.def.json
  1262. msgctxt "ironing_pattern option zigzag"
  1263. msgid "Zig Zag"
  1264. msgstr "Ziguezague"
  1265. #: fdmprinter.def.json
  1266. msgctxt "ironing_monotonic label"
  1267. msgid "Monotonic Ironing Order"
  1268. msgstr "Ordem de Engomar em \"Monotonic\""
  1269. #: fdmprinter.def.json
  1270. msgctxt "ironing_monotonic description"
  1271. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1272. msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente."
  1273. #: fdmprinter.def.json
  1274. msgctxt "ironing_line_spacing label"
  1275. msgid "Ironing Line Spacing"
  1276. msgstr "Distância Linhas de Engomar"
  1277. #: fdmprinter.def.json
  1278. msgctxt "ironing_line_spacing description"
  1279. msgid "The distance between the lines of ironing."
  1280. msgstr "A distância entre as linhas de engomar."
  1281. #: fdmprinter.def.json
  1282. msgctxt "ironing_flow label"
  1283. msgid "Ironing Flow"
  1284. msgstr "Fluxo de Engomar"
  1285. #: fdmprinter.def.json
  1286. msgctxt "ironing_flow description"
  1287. 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."
  1288. msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície."
  1289. #: fdmprinter.def.json
  1290. msgctxt "ironing_inset label"
  1291. msgid "Ironing Inset"
  1292. msgstr "Desvio Interior de Engomar"
  1293. #: fdmprinter.def.json
  1294. msgctxt "ironing_inset description"
  1295. 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."
  1296. msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão."
  1297. #: fdmprinter.def.json
  1298. msgctxt "speed_ironing label"
  1299. msgid "Ironing Speed"
  1300. msgstr "Velocidade de Engomar"
  1301. #: fdmprinter.def.json
  1302. msgctxt "speed_ironing description"
  1303. msgid "The speed at which to pass over the top surface."
  1304. msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior."
  1305. #: fdmprinter.def.json
  1306. msgctxt "acceleration_ironing label"
  1307. msgid "Ironing Acceleration"
  1308. msgstr "Aceleração de Engomar"
  1309. #: fdmprinter.def.json
  1310. msgctxt "acceleration_ironing description"
  1311. msgid "The acceleration with which ironing is performed."
  1312. msgstr "A aceleração com a qual se realiza o processo de engomar."
  1313. #: fdmprinter.def.json
  1314. msgctxt "jerk_ironing label"
  1315. msgid "Ironing Jerk"
  1316. msgstr "Jerk de Engomar"
  1317. #: fdmprinter.def.json
  1318. msgctxt "jerk_ironing description"
  1319. msgid "The maximum instantaneous velocity change while performing ironing."
  1320. msgstr "A mudança de velocidade instantânea máxima ao engomar."
  1321. #: fdmprinter.def.json
  1322. msgctxt "skin_overlap label"
  1323. msgid "Skin Overlap Percentage"
  1324. msgstr "Sobreposição Revestimento (%)"
  1325. #: fdmprinter.def.json
  1326. msgctxt "skin_overlap description"
  1327. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1328. msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto."
  1329. #: fdmprinter.def.json
  1330. msgctxt "skin_overlap_mm label"
  1331. msgid "Skin Overlap"
  1332. msgstr "Sobreposição Revestimento (mm)"
  1333. #: fdmprinter.def.json
  1334. msgctxt "skin_overlap_mm description"
  1335. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1336. msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede."
  1337. #: fdmprinter.def.json
  1338. msgctxt "skin_preshrink label"
  1339. msgid "Skin Removal Width"
  1340. msgstr "Largura Remoção Revestimento"
  1341. #: fdmprinter.def.json
  1342. msgctxt "skin_preshrink description"
  1343. 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."
  1344. msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo."
  1345. #: fdmprinter.def.json
  1346. msgctxt "top_skin_preshrink label"
  1347. msgid "Top Skin Removal Width"
  1348. msgstr "Largura Remoção Revestimento Superior"
  1349. #: fdmprinter.def.json
  1350. msgctxt "top_skin_preshrink description"
  1351. 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."
  1352. msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo."
  1353. #: fdmprinter.def.json
  1354. msgctxt "bottom_skin_preshrink label"
  1355. msgid "Bottom Skin Removal Width"
  1356. msgstr "Largura Remoção Revestimento Inferior"
  1357. #: fdmprinter.def.json
  1358. msgctxt "bottom_skin_preshrink description"
  1359. 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."
  1360. msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo."
  1361. #: fdmprinter.def.json
  1362. msgctxt "expand_skins_expand_distance label"
  1363. msgid "Skin Expand Distance"
  1364. msgstr "Distância Expansão Revestimento"
  1365. #: fdmprinter.def.json
  1366. msgctxt "expand_skins_expand_distance description"
  1367. 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."
  1368. msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado."
  1369. #: fdmprinter.def.json
  1370. msgctxt "top_skin_expand_distance label"
  1371. msgid "Top Skin Expand Distance"
  1372. msgstr "Distância Expansão Revestimento Superior"
  1373. #: fdmprinter.def.json
  1374. msgctxt "top_skin_expand_distance description"
  1375. 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."
  1376. msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado."
  1377. #: fdmprinter.def.json
  1378. msgctxt "bottom_skin_expand_distance label"
  1379. msgid "Bottom Skin Expand Distance"
  1380. msgstr "Expansão Revestimento Inferior"
  1381. #: fdmprinter.def.json
  1382. msgctxt "bottom_skin_expand_distance description"
  1383. 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."
  1384. msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado."
  1385. #: fdmprinter.def.json
  1386. msgctxt "max_skin_angle_for_expansion label"
  1387. msgid "Maximum Skin Angle for Expansion"
  1388. msgstr "Ângulo Revestimento para Expansão"
  1389. #: fdmprinter.def.json
  1390. msgctxt "max_skin_angle_for_expansion description"
  1391. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  1392. msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido."
  1393. #: fdmprinter.def.json
  1394. msgctxt "min_skin_width_for_expansion label"
  1395. msgid "Minimum Skin Width for Expansion"
  1396. msgstr "Largura Mínima Revestimento para Expansão"
  1397. #: fdmprinter.def.json
  1398. msgctxt "min_skin_width_for_expansion description"
  1399. 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."
  1400. msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical."
  1401. #: fdmprinter.def.json
  1402. msgctxt "infill label"
  1403. msgid "Infill"
  1404. msgstr "Enchimento"
  1405. #: fdmprinter.def.json
  1406. msgctxt "infill description"
  1407. msgid "Infill"
  1408. msgstr "Enchimento"
  1409. #: fdmprinter.def.json
  1410. msgctxt "infill_extruder_nr label"
  1411. msgid "Infill Extruder"
  1412. msgstr "Extrusor Enchimento"
  1413. #: fdmprinter.def.json
  1414. msgctxt "infill_extruder_nr description"
  1415. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1416. msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores."
  1417. #: fdmprinter.def.json
  1418. msgctxt "infill_sparse_density label"
  1419. msgid "Infill Density"
  1420. msgstr "Densidade do Enchimento"
  1421. #: fdmprinter.def.json
  1422. msgctxt "infill_sparse_density description"
  1423. msgid "Adjusts the density of infill of the print."
  1424. msgstr "Ajusta a densidade do enchimento da impressão."
  1425. #: fdmprinter.def.json
  1426. msgctxt "infill_line_distance label"
  1427. msgid "Infill Line Distance"
  1428. msgstr "Distância Linhas Enchimento"
  1429. #: fdmprinter.def.json
  1430. msgctxt "infill_line_distance description"
  1431. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1432. msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento."
  1433. #: fdmprinter.def.json
  1434. msgctxt "infill_pattern label"
  1435. msgid "Infill Pattern"
  1436. msgstr "Padrão de Enchimento"
  1437. #: fdmprinter.def.json
  1438. msgctxt "infill_pattern description"
  1439. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  1440. msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto."
  1441. #: fdmprinter.def.json
  1442. msgctxt "infill_pattern option grid"
  1443. msgid "Grid"
  1444. msgstr "Grelha"
  1445. #: fdmprinter.def.json
  1446. msgctxt "infill_pattern option lines"
  1447. msgid "Lines"
  1448. msgstr "Linhas"
  1449. #: fdmprinter.def.json
  1450. msgctxt "infill_pattern option triangles"
  1451. msgid "Triangles"
  1452. msgstr "Triângulos"
  1453. #: fdmprinter.def.json
  1454. msgctxt "infill_pattern option trihexagon"
  1455. msgid "Tri-Hexagon"
  1456. msgstr "Tri-Hexágono"
  1457. #: fdmprinter.def.json
  1458. msgctxt "infill_pattern option cubic"
  1459. msgid "Cubic"
  1460. msgstr "Cúbico"
  1461. #: fdmprinter.def.json
  1462. msgctxt "infill_pattern option cubicsubdiv"
  1463. msgid "Cubic Subdivision"
  1464. msgstr "Subdivisão Cúbica"
  1465. #: fdmprinter.def.json
  1466. msgctxt "infill_pattern option tetrahedral"
  1467. msgid "Octet"
  1468. msgstr "Octeto"
  1469. #: fdmprinter.def.json
  1470. msgctxt "infill_pattern option quarter_cubic"
  1471. msgid "Quarter Cubic"
  1472. msgstr "Quarto Cúbico"
  1473. #: fdmprinter.def.json
  1474. msgctxt "infill_pattern option concentric"
  1475. msgid "Concentric"
  1476. msgstr "Concêntrico"
  1477. #: fdmprinter.def.json
  1478. msgctxt "infill_pattern option zigzag"
  1479. msgid "Zig Zag"
  1480. msgstr "Ziguezague"
  1481. #: fdmprinter.def.json
  1482. msgctxt "infill_pattern option cross"
  1483. msgid "Cross"
  1484. msgstr "Cruz"
  1485. #: fdmprinter.def.json
  1486. msgctxt "infill_pattern option cross_3d"
  1487. msgid "Cross 3D"
  1488. msgstr "Cruz 3D"
  1489. #: fdmprinter.def.json
  1490. msgctxt "infill_pattern option gyroid"
  1491. msgid "Gyroid"
  1492. msgstr "Gyroid"
  1493. #: fdmprinter.def.json
  1494. msgctxt "infill_pattern option lightning"
  1495. msgid "Lightning"
  1496. msgstr "Relâmpago"
  1497. #: fdmprinter.def.json
  1498. msgctxt "zig_zaggify_infill label"
  1499. msgid "Connect Infill Lines"
  1500. msgstr "Ligar Linhas Enchimento"
  1501. #: fdmprinter.def.json
  1502. msgctxt "zig_zaggify_infill description"
  1503. 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."
  1504. msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado."
  1505. #: fdmprinter.def.json
  1506. msgctxt "connect_infill_polygons label"
  1507. msgid "Connect Infill Polygons"
  1508. msgstr "Ligar polígonos de enchimento"
  1509. #: fdmprinter.def.json
  1510. msgctxt "connect_infill_polygons description"
  1511. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  1512. msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação."
  1513. #: fdmprinter.def.json
  1514. msgctxt "infill_angles label"
  1515. msgid "Infill Line Directions"
  1516. msgstr "Direções Linhas Enchimento"
  1517. #: fdmprinter.def.json
  1518. msgctxt "infill_angles description"
  1519. 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)."
  1520. msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)."
  1521. #: fdmprinter.def.json
  1522. msgctxt "infill_offset_x label"
  1523. msgid "Infill X Offset"
  1524. msgstr "Deslocar Enchimento em X"
  1525. #: fdmprinter.def.json
  1526. msgctxt "infill_offset_x description"
  1527. msgid "The infill pattern is moved this distance along the X axis."
  1528. msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X."
  1529. #: fdmprinter.def.json
  1530. msgctxt "infill_offset_y label"
  1531. msgid "Infill Y Offset"
  1532. msgstr "Deslocar Enchimento em Y"
  1533. #: fdmprinter.def.json
  1534. msgctxt "infill_offset_y description"
  1535. msgid "The infill pattern is moved this distance along the Y axis."
  1536. msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y."
  1537. #: fdmprinter.def.json
  1538. msgctxt "infill_randomize_start_location label"
  1539. msgid "Randomize Infill Start"
  1540. msgstr "Início aleatório do enchimento"
  1541. #: fdmprinter.def.json
  1542. msgctxt "infill_randomize_start_location description"
  1543. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  1544. msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional."
  1545. #: fdmprinter.def.json
  1546. msgctxt "infill_multiplier label"
  1547. msgid "Infill Line Multiplier"
  1548. msgstr "Multiplicador de linhas de enchimento"
  1549. #: fdmprinter.def.json
  1550. msgctxt "infill_multiplier description"
  1551. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  1552. msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material."
  1553. #: fdmprinter.def.json
  1554. msgctxt "infill_wall_line_count label"
  1555. msgid "Extra Infill Wall Count"
  1556. msgstr "Contagem de paredes de enchimento adicionais"
  1557. #: fdmprinter.def.json
  1558. msgctxt "infill_wall_line_count description"
  1559. msgid ""
  1560. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  1561. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  1562. msgstr ""
  1563. "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional.\n"
  1564. "Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente."
  1565. #: fdmprinter.def.json
  1566. msgctxt "sub_div_rad_add label"
  1567. msgid "Cubic Subdivision Shell"
  1568. msgstr "Invólucro Subdivisão Cúbica"
  1569. #: fdmprinter.def.json
  1570. msgctxt "sub_div_rad_add description"
  1571. 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."
  1572. msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo."
  1573. #: fdmprinter.def.json
  1574. msgctxt "infill_overlap label"
  1575. msgid "Infill Overlap Percentage"
  1576. msgstr "Sobreposição Enchimento (%)"
  1577. #: fdmprinter.def.json
  1578. msgctxt "infill_overlap description"
  1579. 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."
  1580. msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento."
  1581. #: fdmprinter.def.json
  1582. msgctxt "infill_overlap_mm label"
  1583. msgid "Infill Overlap"
  1584. msgstr "Sobreposição Enchimento (mm)"
  1585. #: fdmprinter.def.json
  1586. msgctxt "infill_overlap_mm description"
  1587. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1588. msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento."
  1589. #: fdmprinter.def.json
  1590. msgctxt "infill_wipe_dist label"
  1591. msgid "Infill Wipe Distance"
  1592. msgstr "Distância Limpeza Enchimento"
  1593. #: fdmprinter.def.json
  1594. msgctxt "infill_wipe_dist description"
  1595. 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."
  1596. msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento."
  1597. #: fdmprinter.def.json
  1598. msgctxt "infill_sparse_thickness label"
  1599. msgid "Infill Layer Thickness"
  1600. msgstr "Espessura Camada Enchimento"
  1601. #: fdmprinter.def.json
  1602. msgctxt "infill_sparse_thickness description"
  1603. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1604. msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado."
  1605. #: fdmprinter.def.json
  1606. msgctxt "gradual_infill_steps label"
  1607. msgid "Gradual Infill Steps"
  1608. msgstr "Degraus Enchimento Gradual"
  1609. #: fdmprinter.def.json
  1610. msgctxt "gradual_infill_steps description"
  1611. 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."
  1612. msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento."
  1613. #: fdmprinter.def.json
  1614. msgctxt "gradual_infill_step_height label"
  1615. msgid "Gradual Infill Step Height"
  1616. msgstr "Altura Degraus Enchimento Gradual"
  1617. #: fdmprinter.def.json
  1618. msgctxt "gradual_infill_step_height description"
  1619. msgid "The height of infill of a given density before switching to half the density."
  1620. msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade."
  1621. #: fdmprinter.def.json
  1622. msgctxt "infill_before_walls label"
  1623. msgid "Infill Before Walls"
  1624. msgstr "Enchimento antes das paredes"
  1625. #: fdmprinter.def.json
  1626. msgctxt "infill_before_walls description"
  1627. 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."
  1628. msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície."
  1629. #: fdmprinter.def.json
  1630. msgctxt "min_infill_area label"
  1631. msgid "Minimum Infill Area"
  1632. msgstr "Área de enchimento mínimo"
  1633. #: fdmprinter.def.json
  1634. msgctxt "min_infill_area description"
  1635. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1636. msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)."
  1637. #: fdmprinter.def.json
  1638. msgctxt "infill_support_enabled label"
  1639. msgid "Infill Support"
  1640. msgstr "Enchimento como Suporte"
  1641. #: fdmprinter.def.json
  1642. msgctxt "infill_support_enabled description"
  1643. 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."
  1644. msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme."
  1645. #: fdmprinter.def.json
  1646. msgctxt "infill_support_angle label"
  1647. msgid "Infill Overhang Angle"
  1648. msgstr "Ângulo Saliência Enchimento"
  1649. #: fdmprinter.def.json
  1650. msgctxt "infill_support_angle description"
  1651. 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."
  1652. msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento."
  1653. #: fdmprinter.def.json
  1654. msgctxt "skin_edge_support_thickness label"
  1655. msgid "Skin Edge Support Thickness"
  1656. msgstr "Espessura do Suporte da Aresta de Revestimento"
  1657. #: fdmprinter.def.json
  1658. msgctxt "skin_edge_support_thickness description"
  1659. msgid "The thickness of the extra infill that supports skin edges."
  1660. msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento."
  1661. #: fdmprinter.def.json
  1662. msgctxt "skin_edge_support_layers label"
  1663. msgid "Skin Edge Support Layers"
  1664. msgstr "Camadas do Suporte da Aresta de Revestimento"
  1665. #: fdmprinter.def.json
  1666. msgctxt "skin_edge_support_layers description"
  1667. msgid "The number of infill layers that supports skin edges."
  1668. msgstr "O número de camadas de enchimento que suportam as arestas do revestimento."
  1669. #: fdmprinter.def.json
  1670. msgctxt "lightning_infill_support_angle label"
  1671. msgid "Lightning Infill Support Angle"
  1672. msgstr "Ângulo de suporte de enchimento relâmpago"
  1673. #: fdmprinter.def.json
  1674. msgctxt "lightning_infill_support_angle description"
  1675. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1676. msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada."
  1677. #: fdmprinter.def.json
  1678. msgctxt "lightning_infill_overhang_angle label"
  1679. msgid "Lightning Infill Overhang Angle"
  1680. msgstr "Ângulo de saliência do enchimento relâmpago"
  1681. #: fdmprinter.def.json
  1682. msgctxt "lightning_infill_overhang_angle description"
  1683. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1684. msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura."
  1685. #: fdmprinter.def.json
  1686. msgctxt "lightning_infill_prune_angle label"
  1687. msgid "Lightning Infill Prune Angle"
  1688. msgstr "Ângulo de corte do enchimento relâmpago"
  1689. #: fdmprinter.def.json
  1690. msgctxt "lightning_infill_prune_angle description"
  1691. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  1692. msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas."
  1693. #: fdmprinter.def.json
  1694. msgctxt "lightning_infill_straightening_angle label"
  1695. msgid "Lightning Infill Straightening Angle"
  1696. msgstr "Ângulo de alisamento do enchimento relâmpago"
  1697. #: fdmprinter.def.json
  1698. msgctxt "lightning_infill_straightening_angle description"
  1699. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  1700. msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento."
  1701. #: fdmprinter.def.json
  1702. msgctxt "material label"
  1703. msgid "Material"
  1704. msgstr "Material"
  1705. #: fdmprinter.def.json
  1706. msgctxt "material description"
  1707. msgid "Material"
  1708. msgstr "Material"
  1709. #: fdmprinter.def.json
  1710. msgctxt "default_material_print_temperature label"
  1711. msgid "Default Printing Temperature"
  1712. msgstr "Temperatura Impressão Predefinida"
  1713. #: fdmprinter.def.json
  1714. msgctxt "default_material_print_temperature description"
  1715. 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"
  1716. msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor"
  1717. #: fdmprinter.def.json
  1718. msgctxt "build_volume_temperature label"
  1719. msgid "Build Volume Temperature"
  1720. msgstr "Temperatura do volume de construção"
  1721. #: fdmprinter.def.json
  1722. msgctxt "build_volume_temperature description"
  1723. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1724. msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada."
  1725. #: fdmprinter.def.json
  1726. msgctxt "material_print_temperature label"
  1727. msgid "Printing Temperature"
  1728. msgstr "Temperatura de Impressão"
  1729. #: fdmprinter.def.json
  1730. msgctxt "material_print_temperature description"
  1731. msgid "The temperature used for printing."
  1732. msgstr "A temperatura utilizada para a impressão."
  1733. #: fdmprinter.def.json
  1734. msgctxt "material_print_temperature_layer_0 label"
  1735. msgid "Printing Temperature Initial Layer"
  1736. msgstr "Temperatura Impressão Camada Inicial"
  1737. #: fdmprinter.def.json
  1738. msgctxt "material_print_temperature_layer_0 description"
  1739. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1740. msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial."
  1741. #: fdmprinter.def.json
  1742. msgctxt "material_initial_print_temperature label"
  1743. msgid "Initial Printing Temperature"
  1744. msgstr "Temperatura de impressão inicial"
  1745. #: fdmprinter.def.json
  1746. msgctxt "material_initial_print_temperature description"
  1747. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1748. msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar."
  1749. #: fdmprinter.def.json
  1750. msgctxt "material_final_print_temperature label"
  1751. msgid "Final Printing Temperature"
  1752. msgstr "Temperatura de impressão final"
  1753. #: fdmprinter.def.json
  1754. msgctxt "material_final_print_temperature description"
  1755. msgid "The temperature to which to already start cooling down just before the end of printing."
  1756. msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão."
  1757. #: fdmprinter.def.json
  1758. msgctxt "material_extrusion_cool_down_speed label"
  1759. msgid "Extrusion Cool Down Speed Modifier"
  1760. msgstr "Modificador da velocidade de arrefecimento da extrusão"
  1761. #: fdmprinter.def.json
  1762. msgctxt "material_extrusion_cool_down_speed description"
  1763. 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."
  1764. msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão."
  1765. #: fdmprinter.def.json
  1766. msgctxt "default_material_bed_temperature label"
  1767. msgid "Default Build Plate Temperature"
  1768. msgstr "Temperatura Predefinida Base Construção"
  1769. #: fdmprinter.def.json
  1770. msgctxt "default_material_bed_temperature description"
  1771. 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"
  1772. msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor"
  1773. #: fdmprinter.def.json
  1774. msgctxt "material_bed_temperature label"
  1775. msgid "Build Plate Temperature"
  1776. msgstr "Temperatura Base de Construção"
  1777. #: fdmprinter.def.json
  1778. msgctxt "material_bed_temperature description"
  1779. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1780. msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida."
  1781. #: fdmprinter.def.json
  1782. msgctxt "material_bed_temperature_layer_0 label"
  1783. msgid "Build Plate Temperature Initial Layer"
  1784. msgstr "Temperatura da base de construção da camada inicial"
  1785. #: fdmprinter.def.json
  1786. msgctxt "material_bed_temperature_layer_0 description"
  1787. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  1788. msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada."
  1789. #: fdmprinter.def.json
  1790. msgctxt "material_adhesion_tendency label"
  1791. msgid "Adhesion Tendency"
  1792. msgstr "Tendência de aderência"
  1793. #: fdmprinter.def.json
  1794. msgctxt "material_adhesion_tendency description"
  1795. msgid "Surface adhesion tendency."
  1796. msgstr "A tendência de aderência à superfície."
  1797. #: fdmprinter.def.json
  1798. msgctxt "material_surface_energy label"
  1799. msgid "Surface Energy"
  1800. msgstr "Energia da superfície"
  1801. #: fdmprinter.def.json
  1802. msgctxt "material_surface_energy description"
  1803. msgid "Surface energy."
  1804. msgstr "Energia da superfície."
  1805. #: fdmprinter.def.json
  1806. msgctxt "material_shrinkage_percentage label"
  1807. msgid "Scaling Factor Shrinkage Compensation"
  1808. msgstr "Compensação de redução do fator de escala"
  1809. #: fdmprinter.def.json
  1810. msgctxt "material_shrinkage_percentage description"
  1811. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1812. msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator."
  1813. #: fdmprinter.def.json
  1814. msgctxt "material_shrinkage_percentage_xy label"
  1815. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1816. msgstr "Compensação de contração do fator de dimensionamento horizontal"
  1817. #: fdmprinter.def.json
  1818. msgctxt "material_shrinkage_percentage_xy description"
  1819. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  1820. msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)."
  1821. #: fdmprinter.def.json
  1822. msgctxt "material_shrinkage_percentage_z label"
  1823. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1824. msgstr "Compensação de contração do fator de dimensionamento vertical"
  1825. #: fdmprinter.def.json
  1826. msgctxt "material_shrinkage_percentage_z description"
  1827. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  1828. msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)."
  1829. #: fdmprinter.def.json
  1830. msgctxt "material_crystallinity label"
  1831. msgid "Crystalline Material"
  1832. msgstr "Material Cristalino"
  1833. #: fdmprinter.def.json
  1834. msgctxt "material_crystallinity description"
  1835. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1836. msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?"
  1837. #: fdmprinter.def.json
  1838. msgctxt "material_anti_ooze_retracted_position label"
  1839. msgid "Anti-ooze Retracted Position"
  1840. msgstr "Posição Retraída Antiescorrimento"
  1841. #: fdmprinter.def.json
  1842. msgctxt "material_anti_ooze_retracted_position description"
  1843. msgid "How far the material needs to be retracted before it stops oozing."
  1844. msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento."
  1845. #: fdmprinter.def.json
  1846. msgctxt "material_anti_ooze_retraction_speed label"
  1847. msgid "Anti-ooze Retraction Speed"
  1848. msgstr "Velocidade de Retração Antiescorrimento"
  1849. #: fdmprinter.def.json
  1850. msgctxt "material_anti_ooze_retraction_speed description"
  1851. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1852. msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento."
  1853. #: fdmprinter.def.json
  1854. msgctxt "material_break_preparation_retracted_position label"
  1855. msgid "Break Preparation Retracted Position"
  1856. msgstr "Posição Retraída de Preparação da Separação"
  1857. #: fdmprinter.def.json
  1858. msgctxt "material_break_preparation_retracted_position description"
  1859. msgid "How far the filament can be stretched before it breaks, while heated."
  1860. msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido."
  1861. #: fdmprinter.def.json
  1862. msgctxt "material_break_preparation_speed label"
  1863. msgid "Break Preparation Retraction Speed"
  1864. msgstr "Velocidade de Retração de Preparação da Separação"
  1865. #: fdmprinter.def.json
  1866. msgctxt "material_break_preparation_speed description"
  1867. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1868. msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração."
  1869. #: fdmprinter.def.json
  1870. msgctxt "material_break_preparation_temperature label"
  1871. msgid "Break Preparation Temperature"
  1872. msgstr "Temperatura de preparação da separação"
  1873. #: fdmprinter.def.json
  1874. msgctxt "material_break_preparation_temperature description"
  1875. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1876. msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível."
  1877. #: fdmprinter.def.json
  1878. msgctxt "material_break_retracted_position label"
  1879. msgid "Break Retracted Position"
  1880. msgstr "Posição Retraída de Separação"
  1881. #: fdmprinter.def.json
  1882. msgctxt "material_break_retracted_position description"
  1883. msgid "How far to retract the filament in order to break it cleanly."
  1884. msgstr "A distância de retração do filamento para separá-lo de forma regular."
  1885. #: fdmprinter.def.json
  1886. msgctxt "material_break_speed label"
  1887. msgid "Break Retraction Speed"
  1888. msgstr "Velocidade de Retração de Separação"
  1889. #: fdmprinter.def.json
  1890. msgctxt "material_break_speed description"
  1891. msgid "The speed at which to retract the filament in order to break it cleanly."
  1892. msgstr "A velocidade de retração do filamento para separá-lo de forma regular."
  1893. #: fdmprinter.def.json
  1894. msgctxt "material_break_temperature label"
  1895. msgid "Break Temperature"
  1896. msgstr "Temperatura de Separação"
  1897. #: fdmprinter.def.json
  1898. msgctxt "material_break_temperature description"
  1899. msgid "The temperature at which the filament is broken for a clean break."
  1900. msgstr "A temperatura a que o filamento se quebra para uma separação regular."
  1901. #: fdmprinter.def.json
  1902. msgctxt "material_flush_purge_speed label"
  1903. msgid "Flush Purge Speed"
  1904. msgstr "Velocidade da purga da descarga"
  1905. #: fdmprinter.def.json
  1906. msgctxt "material_flush_purge_speed description"
  1907. msgid "How fast to prime the material after switching to a different material."
  1908. msgstr "A velocidade com que deve preparar o material após mudar para um material diferente."
  1909. #: fdmprinter.def.json
  1910. msgctxt "material_flush_purge_length label"
  1911. msgid "Flush Purge Length"
  1912. msgstr "Comprimento da purga da descarga"
  1913. #: fdmprinter.def.json
  1914. msgctxt "material_flush_purge_length description"
  1915. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1916. msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente."
  1917. #: fdmprinter.def.json
  1918. msgctxt "material_end_of_filament_purge_speed label"
  1919. msgid "End of Filament Purge Speed"
  1920. msgstr "Velocidade da purga do fim do filamento"
  1921. #: fdmprinter.def.json
  1922. msgctxt "material_end_of_filament_purge_speed description"
  1923. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1924. msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material."
  1925. #: fdmprinter.def.json
  1926. msgctxt "material_end_of_filament_purge_length label"
  1927. msgid "End of Filament Purge Length"
  1928. msgstr "Comprimento da purga do fim do filamento"
  1929. #: fdmprinter.def.json
  1930. msgctxt "material_end_of_filament_purge_length description"
  1931. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1932. msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material."
  1933. #: fdmprinter.def.json
  1934. msgctxt "material_maximum_park_duration label"
  1935. msgid "Maximum Park Duration"
  1936. msgstr "Duração máxima do parqueamento"
  1937. #: fdmprinter.def.json
  1938. msgctxt "material_maximum_park_duration description"
  1939. msgid "How long the material can be kept out of dry storage safely."
  1940. msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança."
  1941. #: fdmprinter.def.json
  1942. msgctxt "material_no_load_move_factor label"
  1943. msgid "No Load Move Factor"
  1944. msgstr "Fator do movimento sem carregamento"
  1945. #: fdmprinter.def.json
  1946. msgctxt "material_no_load_move_factor description"
  1947. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  1948. msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos."
  1949. #: fdmprinter.def.json
  1950. msgctxt "material_flow label"
  1951. msgid "Flow"
  1952. msgstr "Fluxo"
  1953. #: fdmprinter.def.json
  1954. msgctxt "material_flow description"
  1955. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1956. msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor."
  1957. #: fdmprinter.def.json
  1958. msgctxt "wall_material_flow label"
  1959. msgid "Wall Flow"
  1960. msgstr "Fluxo da Parede"
  1961. #: fdmprinter.def.json
  1962. msgctxt "wall_material_flow description"
  1963. msgid "Flow compensation on wall lines."
  1964. msgstr "Compensação de fluxo nas linhas de parede."
  1965. #: fdmprinter.def.json
  1966. msgctxt "wall_0_material_flow label"
  1967. msgid "Outer Wall Flow"
  1968. msgstr "Fluxo de Parede Exterior"
  1969. #: fdmprinter.def.json
  1970. msgctxt "wall_0_material_flow description"
  1971. msgid "Flow compensation on the outermost wall line."
  1972. msgstr "Compensação de fluxo na linha de parede exterior."
  1973. #: fdmprinter.def.json
  1974. msgctxt "wall_x_material_flow label"
  1975. msgid "Inner Wall(s) Flow"
  1976. msgstr "Parede de Parede(s) Interior(es)"
  1977. #: fdmprinter.def.json
  1978. msgctxt "wall_x_material_flow description"
  1979. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1980. msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior."
  1981. #: fdmprinter.def.json
  1982. msgctxt "skin_material_flow label"
  1983. msgid "Top/Bottom Flow"
  1984. msgstr "Fluxo Superior/Inferior"
  1985. #: fdmprinter.def.json
  1986. msgctxt "skin_material_flow description"
  1987. msgid "Flow compensation on top/bottom lines."
  1988. msgstr "Compensação de fluxo nas linhas superiores/inferiores."
  1989. #: fdmprinter.def.json
  1990. msgctxt "roofing_material_flow label"
  1991. msgid "Top Surface Skin Flow"
  1992. msgstr "Fluxo de Revestimento da Superfície Superior"
  1993. #: fdmprinter.def.json
  1994. msgctxt "roofing_material_flow description"
  1995. msgid "Flow compensation on lines of the areas at the top of the print."
  1996. msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora."
  1997. #: fdmprinter.def.json
  1998. msgctxt "infill_material_flow label"
  1999. msgid "Infill Flow"
  2000. msgstr "Fluxo de Enchimento"
  2001. #: fdmprinter.def.json
  2002. msgctxt "infill_material_flow description"
  2003. msgid "Flow compensation on infill lines."
  2004. msgstr "Compensação de fluxo nas linhas de enchimento."
  2005. #: fdmprinter.def.json
  2006. msgctxt "skirt_brim_material_flow label"
  2007. msgid "Skirt/Brim Flow"
  2008. msgstr "Fluxo de Contorno/Aba"
  2009. #: fdmprinter.def.json
  2010. msgctxt "skirt_brim_material_flow description"
  2011. msgid "Flow compensation on skirt or brim lines."
  2012. msgstr "Compensação de fluxo nas linhas de contorno ou abas."
  2013. #: fdmprinter.def.json
  2014. msgctxt "support_material_flow label"
  2015. msgid "Support Flow"
  2016. msgstr "Fluxo de Suporte"
  2017. #: fdmprinter.def.json
  2018. msgctxt "support_material_flow description"
  2019. msgid "Flow compensation on support structure lines."
  2020. msgstr "Compensação de fluxo nas linhas das estruturas de suporte."
  2021. #: fdmprinter.def.json
  2022. msgctxt "support_interface_material_flow label"
  2023. msgid "Support Interface Flow"
  2024. msgstr "Fluxo da Interface do Suporte"
  2025. #: fdmprinter.def.json
  2026. msgctxt "support_interface_material_flow description"
  2027. msgid "Flow compensation on lines of support roof or floor."
  2028. msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão."
  2029. #: fdmprinter.def.json
  2030. msgctxt "support_roof_material_flow label"
  2031. msgid "Support Roof Flow"
  2032. msgstr "Fluxo do Teto do Suporte"
  2033. #: fdmprinter.def.json
  2034. msgctxt "support_roof_material_flow description"
  2035. msgid "Flow compensation on support roof lines."
  2036. msgstr "Compensação de fluxo nas linhas do teto do suporte."
  2037. #: fdmprinter.def.json
  2038. msgctxt "support_bottom_material_flow label"
  2039. msgid "Support Floor Flow"
  2040. msgstr "Fluxo do Chão do Suporte"
  2041. #: fdmprinter.def.json
  2042. msgctxt "support_bottom_material_flow description"
  2043. msgid "Flow compensation on support floor lines."
  2044. msgstr "Compensação de fluxo nas linhas do chão do suporte."
  2045. #: fdmprinter.def.json
  2046. msgctxt "prime_tower_flow label"
  2047. msgid "Prime Tower Flow"
  2048. msgstr "Fluxo da torre de preparação"
  2049. #: fdmprinter.def.json
  2050. msgctxt "prime_tower_flow description"
  2051. msgid "Flow compensation on prime tower lines."
  2052. msgstr "Compensação de fluxo nas linhas da torre de preparação."
  2053. #: fdmprinter.def.json
  2054. msgctxt "material_flow_layer_0 label"
  2055. msgid "Initial Layer Flow"
  2056. msgstr "Fluxo Camada Inicial"
  2057. #: fdmprinter.def.json
  2058. msgctxt "material_flow_layer_0 description"
  2059. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  2060. msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor."
  2061. #: fdmprinter.def.json
  2062. msgctxt "material_standby_temperature label"
  2063. msgid "Standby Temperature"
  2064. msgstr "Temperatura em Espera"
  2065. #: fdmprinter.def.json
  2066. msgctxt "material_standby_temperature description"
  2067. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  2068. msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão."
  2069. #: fdmprinter.def.json
  2070. msgctxt "speed label"
  2071. msgid "Speed"
  2072. msgstr "Velocidade"
  2073. #: fdmprinter.def.json
  2074. msgctxt "speed description"
  2075. msgid "Speed"
  2076. msgstr "Velocidade"
  2077. #: fdmprinter.def.json
  2078. msgctxt "speed_print label"
  2079. msgid "Print Speed"
  2080. msgstr "Velocidade de Impressão"
  2081. #: fdmprinter.def.json
  2082. msgctxt "speed_print description"
  2083. msgid "The speed at which printing happens."
  2084. msgstr "A velocidade a que é efetuada a impressão."
  2085. #: fdmprinter.def.json
  2086. msgctxt "speed_infill label"
  2087. msgid "Infill Speed"
  2088. msgstr "Velocidade Enchimento"
  2089. #: fdmprinter.def.json
  2090. msgctxt "speed_infill description"
  2091. msgid "The speed at which infill is printed."
  2092. msgstr "A velocidade a que o enchimento é impresso."
  2093. #: fdmprinter.def.json
  2094. msgctxt "speed_wall label"
  2095. msgid "Wall Speed"
  2096. msgstr "Velocidade Paredes"
  2097. #: fdmprinter.def.json
  2098. msgctxt "speed_wall description"
  2099. msgid "The speed at which the walls are printed."
  2100. msgstr "A velocidade a que as paredes são impressas."
  2101. #: fdmprinter.def.json
  2102. msgctxt "speed_wall_0 label"
  2103. msgid "Outer Wall Speed"
  2104. msgstr "Velocidade Parede Exterior"
  2105. #: fdmprinter.def.json
  2106. msgctxt "speed_wall_0 description"
  2107. 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."
  2108. msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa."
  2109. #: fdmprinter.def.json
  2110. msgctxt "speed_wall_x label"
  2111. msgid "Inner Wall Speed"
  2112. msgstr "Velocidade Parede Interior"
  2113. #: fdmprinter.def.json
  2114. msgctxt "speed_wall_x description"
  2115. 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."
  2116. msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento."
  2117. #: fdmprinter.def.json
  2118. msgctxt "speed_roofing label"
  2119. msgid "Top Surface Skin Speed"
  2120. msgstr "Velocidade Revestimento Superior"
  2121. #: fdmprinter.def.json
  2122. msgctxt "speed_roofing description"
  2123. msgid "The speed at which top surface skin layers are printed."
  2124. msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas."
  2125. #: fdmprinter.def.json
  2126. msgctxt "speed_topbottom label"
  2127. msgid "Top/Bottom Speed"
  2128. msgstr "Velocidade Superior/Inferior"
  2129. #: fdmprinter.def.json
  2130. msgctxt "speed_topbottom description"
  2131. msgid "The speed at which top/bottom layers are printed."
  2132. msgstr "A velocidade a que as camadas superiores/inferiores são impressas."
  2133. #: fdmprinter.def.json
  2134. msgctxt "speed_support label"
  2135. msgid "Support Speed"
  2136. msgstr "Velocidade Suporte"
  2137. #: fdmprinter.def.json
  2138. msgctxt "speed_support description"
  2139. 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."
  2140. msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão."
  2141. #: fdmprinter.def.json
  2142. msgctxt "speed_support_infill label"
  2143. msgid "Support Infill Speed"
  2144. msgstr "Velocidade de enchimento do suporte"
  2145. #: fdmprinter.def.json
  2146. msgctxt "speed_support_infill description"
  2147. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2148. msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade."
  2149. #: fdmprinter.def.json
  2150. msgctxt "speed_support_interface label"
  2151. msgid "Support Interface Speed"
  2152. msgstr "Velocidade da interface de suporte"
  2153. #: fdmprinter.def.json
  2154. msgctxt "speed_support_interface description"
  2155. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2156. msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências."
  2157. #: fdmprinter.def.json
  2158. msgctxt "speed_support_roof label"
  2159. msgid "Support Roof Speed"
  2160. msgstr "Velocidade do tecto de suporte"
  2161. #: fdmprinter.def.json
  2162. msgctxt "speed_support_roof description"
  2163. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2164. msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências."
  2165. #: fdmprinter.def.json
  2166. msgctxt "speed_support_bottom label"
  2167. msgid "Support Floor Speed"
  2168. msgstr "Velocidade do piso de suporte"
  2169. #: fdmprinter.def.json
  2170. msgctxt "speed_support_bottom description"
  2171. 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."
  2172. msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo."
  2173. #: fdmprinter.def.json
  2174. msgctxt "speed_prime_tower label"
  2175. msgid "Prime Tower Speed"
  2176. msgstr "Velocidade da torre de preparação"
  2177. #: fdmprinter.def.json
  2178. msgctxt "speed_prime_tower description"
  2179. 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."
  2180. msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente."
  2181. #: fdmprinter.def.json
  2182. msgctxt "speed_travel label"
  2183. msgid "Travel Speed"
  2184. msgstr "Velocidade de deslocação"
  2185. #: fdmprinter.def.json
  2186. msgctxt "speed_travel description"
  2187. msgid "The speed at which travel moves are made."
  2188. msgstr "A velocidade a que os movimentos de deslocação são efetuados."
  2189. #: fdmprinter.def.json
  2190. msgctxt "speed_layer_0 label"
  2191. msgid "Initial Layer Speed"
  2192. msgstr "Velocidade Camada Inicial"
  2193. #: fdmprinter.def.json
  2194. msgctxt "speed_layer_0 description"
  2195. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  2196. msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft."
  2197. #: fdmprinter.def.json
  2198. msgctxt "speed_print_layer_0 label"
  2199. msgid "Initial Layer Print Speed"
  2200. msgstr "Velocidade de impressão da camada inicial"
  2201. #: fdmprinter.def.json
  2202. msgctxt "speed_print_layer_0 description"
  2203. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2204. msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção."
  2205. #: fdmprinter.def.json
  2206. msgctxt "speed_travel_layer_0 label"
  2207. msgid "Initial Layer Travel Speed"
  2208. msgstr "Velocidade de deslocação da camada inicial"
  2209. #: fdmprinter.def.json
  2210. msgctxt "speed_travel_layer_0 description"
  2211. 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."
  2212. msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão."
  2213. #: fdmprinter.def.json
  2214. msgctxt "skirt_brim_speed label"
  2215. msgid "Skirt/Brim Speed"
  2216. msgstr "Velocidade Contorno/Aba"
  2217. #: fdmprinter.def.json
  2218. msgctxt "skirt_brim_speed description"
  2219. 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."
  2220. msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente."
  2221. #: fdmprinter.def.json
  2222. msgctxt "speed_z_hop label"
  2223. msgid "Z Hop Speed"
  2224. msgstr "Velocidade do Salto Z"
  2225. #: fdmprinter.def.json
  2226. msgctxt "speed_z_hop description"
  2227. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  2228. msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina."
  2229. #: fdmprinter.def.json
  2230. msgctxt "speed_slowdown_layers label"
  2231. msgid "Number of Slower Layers"
  2232. msgstr "Número de camadas mais lentas"
  2233. #: fdmprinter.def.json
  2234. msgctxt "speed_slowdown_layers description"
  2235. 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."
  2236. msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas."
  2237. #: fdmprinter.def.json
  2238. msgctxt "speed_equalize_flow_width_factor label"
  2239. msgid "Flow Equalization Ratio"
  2240. msgstr "Proporção de equalização do fluxo"
  2241. #: fdmprinter.def.json
  2242. msgctxt "speed_equalize_flow_width_factor description"
  2243. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  2244. msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas."
  2245. #: fdmprinter.def.json
  2246. msgctxt "acceleration_enabled label"
  2247. msgid "Enable Acceleration Control"
  2248. msgstr "Ativar controlo da aceleração"
  2249. #: fdmprinter.def.json
  2250. msgctxt "acceleration_enabled description"
  2251. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2252. msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão."
  2253. #: fdmprinter.def.json
  2254. msgctxt "acceleration_travel_enabled label"
  2255. msgid "Enable Travel Acceleration"
  2256. msgstr "Ativar a aceleração da viagem"
  2257. #: fdmprinter.def.json
  2258. msgctxt "acceleration_travel_enabled description"
  2259. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  2260. msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa"
  2261. " no seu destino."
  2262. #: fdmprinter.def.json
  2263. msgctxt "acceleration_print label"
  2264. msgid "Print Acceleration"
  2265. msgstr "Aceleração de impressão"
  2266. #: fdmprinter.def.json
  2267. msgctxt "acceleration_print description"
  2268. msgid "The acceleration with which printing happens."
  2269. msgstr "A aceleração com que é efetuada a impressão."
  2270. #: fdmprinter.def.json
  2271. msgctxt "acceleration_infill label"
  2272. msgid "Infill Acceleration"
  2273. msgstr "Aceleração de enchimento"
  2274. #: fdmprinter.def.json
  2275. msgctxt "acceleration_infill description"
  2276. msgid "The acceleration with which infill is printed."
  2277. msgstr "A aceleração com que o enchimento é impresso."
  2278. #: fdmprinter.def.json
  2279. msgctxt "acceleration_wall label"
  2280. msgid "Wall Acceleration"
  2281. msgstr "Aceleração de parede"
  2282. #: fdmprinter.def.json
  2283. msgctxt "acceleration_wall description"
  2284. msgid "The acceleration with which the walls are printed."
  2285. msgstr "A aceleração com que as paredes são impressas."
  2286. #: fdmprinter.def.json
  2287. msgctxt "acceleration_wall_0 label"
  2288. msgid "Outer Wall Acceleration"
  2289. msgstr "Aceleração da parede exterior"
  2290. #: fdmprinter.def.json
  2291. msgctxt "acceleration_wall_0 description"
  2292. msgid "The acceleration with which the outermost walls are printed."
  2293. msgstr "A aceleração com que as paredes exteriores são impressas."
  2294. #: fdmprinter.def.json
  2295. msgctxt "acceleration_wall_x label"
  2296. msgid "Inner Wall Acceleration"
  2297. msgstr "Aceleração da parede interior"
  2298. #: fdmprinter.def.json
  2299. msgctxt "acceleration_wall_x description"
  2300. msgid "The acceleration with which all inner walls are printed."
  2301. msgstr "A aceleração com que todas as paredes interiores são impressas."
  2302. #: fdmprinter.def.json
  2303. msgctxt "acceleration_roofing label"
  2304. msgid "Top Surface Skin Acceleration"
  2305. msgstr "Aceleração Revestimento Superior"
  2306. #: fdmprinter.def.json
  2307. msgctxt "acceleration_roofing description"
  2308. msgid "The acceleration with which top surface skin layers are printed."
  2309. msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas."
  2310. #: fdmprinter.def.json
  2311. msgctxt "acceleration_topbottom label"
  2312. msgid "Top/Bottom Acceleration"
  2313. msgstr "Aceleração superior/inferior"
  2314. #: fdmprinter.def.json
  2315. msgctxt "acceleration_topbottom description"
  2316. msgid "The acceleration with which top/bottom layers are printed."
  2317. msgstr "A aceleração com que as camadas superiores/inferiores são impressas."
  2318. #: fdmprinter.def.json
  2319. msgctxt "acceleration_support label"
  2320. msgid "Support Acceleration"
  2321. msgstr "Aceleração de suporte"
  2322. #: fdmprinter.def.json
  2323. msgctxt "acceleration_support description"
  2324. msgid "The acceleration with which the support structure is printed."
  2325. msgstr "A aceleração com que a estrutura de suporte é impressa."
  2326. #: fdmprinter.def.json
  2327. msgctxt "acceleration_support_infill label"
  2328. msgid "Support Infill Acceleration"
  2329. msgstr "Aceleração de enchimento do suporte"
  2330. #: fdmprinter.def.json
  2331. msgctxt "acceleration_support_infill description"
  2332. msgid "The acceleration with which the infill of support is printed."
  2333. msgstr "A aceleração com que o enchimento do suporte é impresso."
  2334. #: fdmprinter.def.json
  2335. msgctxt "acceleration_support_interface label"
  2336. msgid "Support Interface Acceleration"
  2337. msgstr "Aceleração da interface de suporte"
  2338. #: fdmprinter.def.json
  2339. msgctxt "acceleration_support_interface description"
  2340. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2341. msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências."
  2342. #: fdmprinter.def.json
  2343. msgctxt "acceleration_support_roof label"
  2344. msgid "Support Roof Acceleration"
  2345. msgstr "Aceleração do tecto de suporte"
  2346. #: fdmprinter.def.json
  2347. msgctxt "acceleration_support_roof description"
  2348. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2349. msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências."
  2350. #: fdmprinter.def.json
  2351. msgctxt "acceleration_support_bottom label"
  2352. msgid "Support Floor Acceleration"
  2353. msgstr "Aceleração do piso de suporte"
  2354. #: fdmprinter.def.json
  2355. msgctxt "acceleration_support_bottom description"
  2356. 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."
  2357. msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo."
  2358. #: fdmprinter.def.json
  2359. msgctxt "acceleration_prime_tower label"
  2360. msgid "Prime Tower Acceleration"
  2361. msgstr "Aceleração da torre de preparação"
  2362. #: fdmprinter.def.json
  2363. msgctxt "acceleration_prime_tower description"
  2364. msgid "The acceleration with which the prime tower is printed."
  2365. msgstr "A aceleração com que a torre de preparação é impressa."
  2366. #: fdmprinter.def.json
  2367. msgctxt "acceleration_travel label"
  2368. msgid "Travel Acceleration"
  2369. msgstr "Aceleração de deslocação"
  2370. #: fdmprinter.def.json
  2371. msgctxt "acceleration_travel description"
  2372. msgid "The acceleration with which travel moves are made."
  2373. msgstr "A aceleração com que os movimentos de deslocação são efetuados."
  2374. #: fdmprinter.def.json
  2375. msgctxt "acceleration_layer_0 label"
  2376. msgid "Initial Layer Acceleration"
  2377. msgstr "Aceleração da camada inicial"
  2378. #: fdmprinter.def.json
  2379. msgctxt "acceleration_layer_0 description"
  2380. msgid "The acceleration for the initial layer."
  2381. msgstr "A aceleração da camada inicial."
  2382. #: fdmprinter.def.json
  2383. msgctxt "acceleration_print_layer_0 label"
  2384. msgid "Initial Layer Print Acceleration"
  2385. msgstr "Aceleração de impressão da camada inicial"
  2386. #: fdmprinter.def.json
  2387. msgctxt "acceleration_print_layer_0 description"
  2388. msgid "The acceleration during the printing of the initial layer."
  2389. msgstr "A aceleração durante a impressão da camada inicial."
  2390. #: fdmprinter.def.json
  2391. msgctxt "acceleration_travel_layer_0 label"
  2392. msgid "Initial Layer Travel Acceleration"
  2393. msgstr "Aceleração de deslocação da camada inicial"
  2394. #: fdmprinter.def.json
  2395. msgctxt "acceleration_travel_layer_0 description"
  2396. msgid "The acceleration for travel moves in the initial layer."
  2397. msgstr "A aceleração dos movimentos de deslocação na camada inicial."
  2398. #: fdmprinter.def.json
  2399. msgctxt "acceleration_skirt_brim label"
  2400. msgid "Skirt/Brim Acceleration"
  2401. msgstr "Aceleração Contorno/Aba"
  2402. #: fdmprinter.def.json
  2403. msgctxt "acceleration_skirt_brim description"
  2404. 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."
  2405. msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente."
  2406. #: fdmprinter.def.json
  2407. msgctxt "jerk_enabled label"
  2408. msgid "Enable Jerk Control"
  2409. msgstr "Ativar Controlo do Jerk"
  2410. #: fdmprinter.def.json
  2411. msgctxt "jerk_enabled description"
  2412. 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."
  2413. 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 em detrimento da qualidade de impressão."
  2414. #: fdmprinter.def.json
  2415. msgctxt "jerk_travel_enabled label"
  2416. msgid "Enable Travel Jerk"
  2417. msgstr "Ativar Jerk de Viagem"
  2418. #: fdmprinter.def.json
  2419. msgctxt "jerk_travel_enabled description"
  2420. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  2421. msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no"
  2422. " seu destino."
  2423. #: fdmprinter.def.json
  2424. msgctxt "jerk_print label"
  2425. msgid "Print Jerk"
  2426. msgstr "Jerk da Impressão"
  2427. #: fdmprinter.def.json
  2428. msgctxt "jerk_print description"
  2429. msgid "The maximum instantaneous velocity change of the print head."
  2430. msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão."
  2431. #: fdmprinter.def.json
  2432. msgctxt "jerk_infill label"
  2433. msgid "Infill Jerk"
  2434. msgstr "Jerk do Enchimento"
  2435. #: fdmprinter.def.json
  2436. msgctxt "jerk_infill description"
  2437. msgid "The maximum instantaneous velocity change with which infill is printed."
  2438. msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso."
  2439. #: fdmprinter.def.json
  2440. msgctxt "jerk_wall label"
  2441. msgid "Wall Jerk"
  2442. msgstr "Jerk das Paredes"
  2443. #: fdmprinter.def.json
  2444. msgctxt "jerk_wall description"
  2445. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2446. msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas."
  2447. #: fdmprinter.def.json
  2448. msgctxt "jerk_wall_0 label"
  2449. msgid "Outer Wall Jerk"
  2450. msgstr "Jerk da Parede Exterior"
  2451. #: fdmprinter.def.json
  2452. msgctxt "jerk_wall_0 description"
  2453. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2454. msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas."
  2455. #: fdmprinter.def.json
  2456. msgctxt "jerk_wall_x label"
  2457. msgid "Inner Wall Jerk"
  2458. msgstr "Jerk das Paredes Interiores"
  2459. #: fdmprinter.def.json
  2460. msgctxt "jerk_wall_x description"
  2461. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2462. msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas."
  2463. #: fdmprinter.def.json
  2464. msgctxt "jerk_roofing label"
  2465. msgid "Top Surface Skin Jerk"
  2466. msgstr "Jerk Revestimento Superior"
  2467. #: fdmprinter.def.json
  2468. msgctxt "jerk_roofing description"
  2469. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2470. msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas."
  2471. #: fdmprinter.def.json
  2472. msgctxt "jerk_topbottom label"
  2473. msgid "Top/Bottom Jerk"
  2474. msgstr "Jerk Superior/Inferior"
  2475. #: fdmprinter.def.json
  2476. msgctxt "jerk_topbottom description"
  2477. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2478. msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas."
  2479. #: fdmprinter.def.json
  2480. msgctxt "jerk_support label"
  2481. msgid "Support Jerk"
  2482. msgstr "Jerk do Suporte"
  2483. #: fdmprinter.def.json
  2484. msgctxt "jerk_support description"
  2485. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2486. msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa."
  2487. #: fdmprinter.def.json
  2488. msgctxt "jerk_support_infill label"
  2489. msgid "Support Infill Jerk"
  2490. msgstr "Jerk do Enchimento do Suporte"
  2491. #: fdmprinter.def.json
  2492. msgctxt "jerk_support_infill description"
  2493. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2494. msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso."
  2495. #: fdmprinter.def.json
  2496. msgctxt "jerk_support_interface label"
  2497. msgid "Support Interface Jerk"
  2498. msgstr "Jerk da Interface do Suporte"
  2499. #: fdmprinter.def.json
  2500. msgctxt "jerk_support_interface description"
  2501. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2502. msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos."
  2503. #: fdmprinter.def.json
  2504. msgctxt "jerk_support_roof label"
  2505. msgid "Support Roof Jerk"
  2506. msgstr "Jerk do Tecto do Suporte"
  2507. #: fdmprinter.def.json
  2508. msgctxt "jerk_support_roof description"
  2509. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2510. msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos."
  2511. #: fdmprinter.def.json
  2512. msgctxt "jerk_support_bottom label"
  2513. msgid "Support Floor Jerk"
  2514. msgstr "Jerk do Piso do Suporte"
  2515. #: fdmprinter.def.json
  2516. msgctxt "jerk_support_bottom description"
  2517. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2518. msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos."
  2519. #: fdmprinter.def.json
  2520. msgctxt "jerk_prime_tower label"
  2521. msgid "Prime Tower Jerk"
  2522. msgstr "Jerk da Torre de Preparação"
  2523. #: fdmprinter.def.json
  2524. msgctxt "jerk_prime_tower description"
  2525. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2526. msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa."
  2527. #: fdmprinter.def.json
  2528. msgctxt "jerk_travel label"
  2529. msgid "Travel Jerk"
  2530. msgstr "Jerk de Deslocação"
  2531. #: fdmprinter.def.json
  2532. msgctxt "jerk_travel description"
  2533. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2534. msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos."
  2535. #: fdmprinter.def.json
  2536. msgctxt "jerk_layer_0 label"
  2537. msgid "Initial Layer Jerk"
  2538. msgstr "Jerk da Camada Inicial"
  2539. #: fdmprinter.def.json
  2540. msgctxt "jerk_layer_0 description"
  2541. msgid "The print maximum instantaneous velocity change for the initial layer."
  2542. msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial."
  2543. #: fdmprinter.def.json
  2544. msgctxt "jerk_print_layer_0 label"
  2545. msgid "Initial Layer Print Jerk"
  2546. msgstr "Jerk Impressão Camada Inicial"
  2547. #: fdmprinter.def.json
  2548. msgctxt "jerk_print_layer_0 description"
  2549. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2550. msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial."
  2551. #: fdmprinter.def.json
  2552. msgctxt "jerk_travel_layer_0 label"
  2553. msgid "Initial Layer Travel Jerk"
  2554. msgstr "Jerk Deslocação Camada Inicial"
  2555. #: fdmprinter.def.json
  2556. msgctxt "jerk_travel_layer_0 description"
  2557. msgid "The acceleration for travel moves in the initial layer."
  2558. msgstr "A aceleração dos movimentos de deslocação na camada inicial."
  2559. #: fdmprinter.def.json
  2560. msgctxt "jerk_skirt_brim label"
  2561. msgid "Skirt/Brim Jerk"
  2562. msgstr "Jerk de Contorno/Aba"
  2563. #: fdmprinter.def.json
  2564. msgctxt "jerk_skirt_brim description"
  2565. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2566. msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos."
  2567. #: fdmprinter.def.json
  2568. msgctxt "travel label"
  2569. msgid "Travel"
  2570. msgstr "Deslocação"
  2571. #: fdmprinter.def.json
  2572. msgctxt "travel description"
  2573. msgid "travel"
  2574. msgstr "deslocação"
  2575. #: fdmprinter.def.json
  2576. msgctxt "retraction_enable label"
  2577. msgid "Enable Retraction"
  2578. msgstr "Ativar Retração"
  2579. #: fdmprinter.def.json
  2580. msgctxt "retraction_enable description"
  2581. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2582. msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão."
  2583. #: fdmprinter.def.json
  2584. msgctxt "retract_at_layer_change label"
  2585. msgid "Retract at Layer Change"
  2586. msgstr "Retrair na Mudança Camada"
  2587. #: fdmprinter.def.json
  2588. msgctxt "retract_at_layer_change description"
  2589. msgid "Retract the filament when the nozzle is moving to the next layer."
  2590. msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte."
  2591. #: fdmprinter.def.json
  2592. msgctxt "retraction_amount label"
  2593. msgid "Retraction Distance"
  2594. msgstr "Distância de Retração"
  2595. #: fdmprinter.def.json
  2596. msgctxt "retraction_amount description"
  2597. msgid "The length of material retracted during a retraction move."
  2598. msgstr "O comprimento do material retraído durante um movimento de retração."
  2599. #: fdmprinter.def.json
  2600. msgctxt "retraction_speed label"
  2601. msgid "Retraction Speed"
  2602. msgstr "Velocidade de Retração"
  2603. #: fdmprinter.def.json
  2604. msgctxt "retraction_speed description"
  2605. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2606. msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração."
  2607. #: fdmprinter.def.json
  2608. msgctxt "retraction_retract_speed label"
  2609. msgid "Retraction Retract Speed"
  2610. msgstr "Velocidade Retrair na Retração"
  2611. #: fdmprinter.def.json
  2612. msgctxt "retraction_retract_speed description"
  2613. msgid "The speed at which the filament is retracted during a retraction move."
  2614. msgstr "A velocidade a que o filamento é retraído durante um movimento de retração."
  2615. #: fdmprinter.def.json
  2616. msgctxt "retraction_prime_speed label"
  2617. msgid "Retraction Prime Speed"
  2618. msgstr "Velocidade de preparação na retração"
  2619. #: fdmprinter.def.json
  2620. msgctxt "retraction_prime_speed description"
  2621. msgid "The speed at which the filament is primed during a retraction move."
  2622. msgstr "A velocidade a que o filamento é preparado durante um movimento de retração."
  2623. #: fdmprinter.def.json
  2624. msgctxt "retraction_extra_prime_amount label"
  2625. msgid "Retraction Extra Prime Amount"
  2626. msgstr "Preparação Adicional de Retração"
  2627. #: fdmprinter.def.json
  2628. msgctxt "retraction_extra_prime_amount description"
  2629. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2630. msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui."
  2631. #: fdmprinter.def.json
  2632. msgctxt "retraction_min_travel label"
  2633. msgid "Retraction Minimum Travel"
  2634. msgstr "Deslocação Mínima da Retração"
  2635. #: fdmprinter.def.json
  2636. msgctxt "retraction_min_travel description"
  2637. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2638. msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida."
  2639. #: fdmprinter.def.json
  2640. msgctxt "retraction_count_max label"
  2641. msgid "Maximum Retraction Count"
  2642. msgstr "Número Máximo Retrações"
  2643. #: fdmprinter.def.json
  2644. msgctxt "retraction_count_max description"
  2645. 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."
  2646. msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração."
  2647. #: fdmprinter.def.json
  2648. msgctxt "retraction_extrusion_window label"
  2649. msgid "Minimum Extrusion Distance Window"
  2650. msgstr "Intervalo Mínimo Distância Extrusão"
  2651. #: fdmprinter.def.json
  2652. msgctxt "retraction_extrusion_window description"
  2653. 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."
  2654. msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento."
  2655. #: fdmprinter.def.json
  2656. msgctxt "limit_support_retractions label"
  2657. msgid "Limit Support Retractions"
  2658. msgstr "Limitar Retrações de Suportes"
  2659. #: fdmprinter.def.json
  2660. msgctxt "limit_support_retractions description"
  2661. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2662. msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha reta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte."
  2663. #: fdmprinter.def.json
  2664. msgctxt "retraction_combing label"
  2665. msgid "Combing Mode"
  2666. msgstr "Modo de Combing"
  2667. #: fdmprinter.def.json
  2668. msgctxt "retraction_combing description"
  2669. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  2670. msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento."
  2671. #: fdmprinter.def.json
  2672. msgctxt "retraction_combing option off"
  2673. msgid "Off"
  2674. msgstr "Desligado"
  2675. #: fdmprinter.def.json
  2676. msgctxt "retraction_combing option all"
  2677. msgid "All"
  2678. msgstr "Tudo"
  2679. #: fdmprinter.def.json
  2680. msgctxt "retraction_combing option no_outer_surfaces"
  2681. msgid "Not on Outer Surface"
  2682. msgstr "Não na Superfície Exterior"
  2683. #: fdmprinter.def.json
  2684. msgctxt "retraction_combing option noskin"
  2685. msgid "Not in Skin"
  2686. msgstr "Não no Revestimento"
  2687. #: fdmprinter.def.json
  2688. msgctxt "retraction_combing option infill"
  2689. msgid "Within Infill"
  2690. msgstr "No Enchimento"
  2691. #: fdmprinter.def.json
  2692. msgctxt "retraction_combing_max_distance label"
  2693. msgid "Max Comb Distance With No Retract"
  2694. msgstr "Distância Max. de Combing sem Retração"
  2695. #: fdmprinter.def.json
  2696. msgctxt "retraction_combing_max_distance description"
  2697. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  2698. msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações."
  2699. #: fdmprinter.def.json
  2700. msgctxt "travel_retract_before_outer_wall label"
  2701. msgid "Retract Before Outer Wall"
  2702. msgstr "Retrair Antes Parede Exterior"
  2703. #: fdmprinter.def.json
  2704. msgctxt "travel_retract_before_outer_wall description"
  2705. msgid "Always retract when moving to start an outer wall."
  2706. msgstr "Retrair sempre quando se vai começar uma parede exterior."
  2707. #: fdmprinter.def.json
  2708. msgctxt "travel_avoid_other_parts label"
  2709. msgid "Avoid Printed Parts When Traveling"
  2710. msgstr "Evitar Áreas Impressas Durante Movimento"
  2711. #: fdmprinter.def.json
  2712. msgctxt "travel_avoid_other_parts description"
  2713. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2714. msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado."
  2715. #: fdmprinter.def.json
  2716. msgctxt "travel_avoid_supports label"
  2717. msgid "Avoid Supports When Traveling"
  2718. msgstr "Evitar Suportes na Deslocação"
  2719. #: fdmprinter.def.json
  2720. msgctxt "travel_avoid_supports description"
  2721. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2722. msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado."
  2723. #: fdmprinter.def.json
  2724. msgctxt "travel_avoid_distance label"
  2725. msgid "Travel Avoid Distance"
  2726. msgstr "Distância para evitar peças durante a deslocação"
  2727. #: fdmprinter.def.json
  2728. msgctxt "travel_avoid_distance description"
  2729. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2730. msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação."
  2731. #: fdmprinter.def.json
  2732. msgctxt "layer_start_x label"
  2733. msgid "Layer Start X"
  2734. msgstr "X Início Camada"
  2735. #: fdmprinter.def.json
  2736. msgctxt "layer_start_x description"
  2737. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2738. msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada."
  2739. #: fdmprinter.def.json
  2740. msgctxt "layer_start_y label"
  2741. msgid "Layer Start Y"
  2742. msgstr "Y Início Camada"
  2743. #: fdmprinter.def.json
  2744. msgctxt "layer_start_y description"
  2745. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2746. msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada."
  2747. #: fdmprinter.def.json
  2748. msgctxt "retraction_hop_enabled label"
  2749. msgid "Z Hop When Retracted"
  2750. msgstr "Salto Z ao retrair"
  2751. #: fdmprinter.def.json
  2752. msgctxt "retraction_hop_enabled description"
  2753. 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."
  2754. msgstr "Sempre que for efetuada uma retração, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção."
  2755. #: fdmprinter.def.json
  2756. msgctxt "retraction_hop_only_when_collides label"
  2757. msgid "Z Hop Only Over Printed Parts"
  2758. msgstr "Salto Z apenas sobre as peças impressas"
  2759. #: fdmprinter.def.json
  2760. msgctxt "retraction_hop_only_when_collides description"
  2761. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2762. msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação."
  2763. #: fdmprinter.def.json
  2764. msgctxt "retraction_hop label"
  2765. msgid "Z Hop Height"
  2766. msgstr "Altura do salto Z"
  2767. #: fdmprinter.def.json
  2768. msgctxt "retraction_hop description"
  2769. msgid "The height difference when performing a Z Hop."
  2770. msgstr "A diferença de altura ao efetuar um salto Z."
  2771. #: fdmprinter.def.json
  2772. msgctxt "retraction_hop_after_extruder_switch label"
  2773. msgid "Z Hop After Extruder Switch"
  2774. msgstr "Salto Z após mudança extrusor"
  2775. #: fdmprinter.def.json
  2776. msgctxt "retraction_hop_after_extruder_switch description"
  2777. 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."
  2778. msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir."
  2779. #: fdmprinter.def.json
  2780. msgctxt "retraction_hop_after_extruder_switch_height label"
  2781. msgid "Z Hop After Extruder Switch Height"
  2782. msgstr "Altura do salto Z após mudança do extrusor"
  2783. #: fdmprinter.def.json
  2784. msgctxt "retraction_hop_after_extruder_switch_height description"
  2785. msgid "The height difference when performing a Z Hop after extruder switch."
  2786. msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor."
  2787. #: fdmprinter.def.json
  2788. msgctxt "cooling label"
  2789. msgid "Cooling"
  2790. msgstr "Arrefecimento"
  2791. #: fdmprinter.def.json
  2792. msgctxt "cooling description"
  2793. msgid "Cooling"
  2794. msgstr "Arrefecimento"
  2795. #: fdmprinter.def.json
  2796. msgctxt "cool_fan_enabled label"
  2797. msgid "Enable Print Cooling"
  2798. msgstr "Ativar Arrefecimento Impressão"
  2799. #: fdmprinter.def.json
  2800. msgctxt "cool_fan_enabled description"
  2801. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2802. msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências."
  2803. #: fdmprinter.def.json
  2804. msgctxt "cool_fan_speed label"
  2805. msgid "Fan Speed"
  2806. msgstr "Velocidade Ventiladores"
  2807. #: fdmprinter.def.json
  2808. msgctxt "cool_fan_speed description"
  2809. msgid "The speed at which the print cooling fans spin."
  2810. msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão."
  2811. #: fdmprinter.def.json
  2812. msgctxt "cool_fan_speed_min label"
  2813. msgid "Regular Fan Speed"
  2814. msgstr "Velocidade Normal Ventiladores"
  2815. #: fdmprinter.def.json
  2816. msgctxt "cool_fan_speed_min description"
  2817. 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."
  2818. msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima."
  2819. #: fdmprinter.def.json
  2820. msgctxt "cool_fan_speed_max label"
  2821. msgid "Maximum Fan Speed"
  2822. msgstr "Velocidade Máxima Ventiladores"
  2823. #: fdmprinter.def.json
  2824. msgctxt "cool_fan_speed_max description"
  2825. 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."
  2826. msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado."
  2827. #: fdmprinter.def.json
  2828. msgctxt "cool_min_layer_time_fan_speed_max label"
  2829. msgid "Regular/Maximum Fan Speed Threshold"
  2830. msgstr "Limiar Normal / Máximo Velocidade Ventilador"
  2831. #: fdmprinter.def.json
  2832. msgctxt "cool_min_layer_time_fan_speed_max description"
  2833. 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."
  2834. msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima."
  2835. #: fdmprinter.def.json
  2836. msgctxt "cool_fan_speed_0 label"
  2837. msgid "Initial Fan Speed"
  2838. msgstr "Velocidade Inicial do ventilador"
  2839. #: fdmprinter.def.json
  2840. msgctxt "cool_fan_speed_0 description"
  2841. 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."
  2842. msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura."
  2843. #: fdmprinter.def.json
  2844. msgctxt "cool_fan_full_at_height label"
  2845. msgid "Regular Fan Speed at Height"
  2846. msgstr "Altura Velocidade Normal Ventilador"
  2847. #: fdmprinter.def.json
  2848. msgctxt "cool_fan_full_at_height description"
  2849. 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."
  2850. msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador."
  2851. #: fdmprinter.def.json
  2852. msgctxt "cool_fan_full_layer label"
  2853. msgid "Regular Fan Speed at Layer"
  2854. msgstr "Camada Velocidade Normal Ventilador"
  2855. #: fdmprinter.def.json
  2856. msgctxt "cool_fan_full_layer description"
  2857. 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."
  2858. msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro."
  2859. #: fdmprinter.def.json
  2860. msgctxt "cool_min_layer_time label"
  2861. msgid "Minimum Layer Time"
  2862. msgstr "Tempo mínimo por camada"
  2863. #: fdmprinter.def.json
  2864. msgctxt "cool_min_layer_time description"
  2865. 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."
  2866. msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada."
  2867. #: fdmprinter.def.json
  2868. msgctxt "cool_min_speed label"
  2869. msgid "Minimum Speed"
  2870. msgstr "Velocidade Mínima"
  2871. #: fdmprinter.def.json
  2872. msgctxt "cool_min_speed description"
  2873. 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."
  2874. msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão."
  2875. #: fdmprinter.def.json
  2876. msgctxt "cool_lift_head label"
  2877. msgid "Lift Head"
  2878. msgstr "Elevar Cabeça"
  2879. #: fdmprinter.def.json
  2880. msgctxt "cool_lift_head description"
  2881. 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."
  2882. msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada."
  2883. #: fdmprinter.def.json
  2884. msgctxt "support label"
  2885. msgid "Support"
  2886. msgstr "Suportes"
  2887. #: fdmprinter.def.json
  2888. msgctxt "support description"
  2889. msgid "Support"
  2890. msgstr "Suportes"
  2891. #: fdmprinter.def.json
  2892. msgctxt "support_enable label"
  2893. msgid "Generate Support"
  2894. msgstr "Criar Suportes"
  2895. #: fdmprinter.def.json
  2896. msgctxt "support_enable description"
  2897. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2898. msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão."
  2899. #: fdmprinter.def.json
  2900. msgctxt "support_extruder_nr label"
  2901. msgid "Support Extruder"
  2902. msgstr "Extrusor dos Suportes"
  2903. #: fdmprinter.def.json
  2904. msgctxt "support_extruder_nr description"
  2905. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2906. msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores."
  2907. #: fdmprinter.def.json
  2908. msgctxt "support_infill_extruder_nr label"
  2909. msgid "Support Infill Extruder"
  2910. msgstr "Extrusor de enchimento do suporte"
  2911. #: fdmprinter.def.json
  2912. msgctxt "support_infill_extruder_nr description"
  2913. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2914. msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores."
  2915. #: fdmprinter.def.json
  2916. msgctxt "support_extruder_nr_layer_0 label"
  2917. msgid "First Layer Support Extruder"
  2918. msgstr "Extrusor de suporte da primeira camada"
  2919. #: fdmprinter.def.json
  2920. msgctxt "support_extruder_nr_layer_0 description"
  2921. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2922. msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores."
  2923. #: fdmprinter.def.json
  2924. msgctxt "support_interface_extruder_nr label"
  2925. msgid "Support Interface Extruder"
  2926. msgstr "Extrusor de interface de suporte"
  2927. #: fdmprinter.def.json
  2928. msgctxt "support_interface_extruder_nr description"
  2929. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2930. msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores."
  2931. #: fdmprinter.def.json
  2932. msgctxt "support_roof_extruder_nr label"
  2933. msgid "Support Roof Extruder"
  2934. msgstr "Extrusor de tecto de suporte"
  2935. #: fdmprinter.def.json
  2936. msgctxt "support_roof_extruder_nr description"
  2937. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2938. msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores."
  2939. #: fdmprinter.def.json
  2940. msgctxt "support_bottom_extruder_nr label"
  2941. msgid "Support Floor Extruder"
  2942. msgstr "Extrusor de piso de suporte"
  2943. #: fdmprinter.def.json
  2944. msgctxt "support_bottom_extruder_nr description"
  2945. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2946. msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores."
  2947. #: fdmprinter.def.json
  2948. msgctxt "support_structure label"
  2949. msgid "Support Structure"
  2950. msgstr "Estrutura de suporte"
  2951. #: fdmprinter.def.json
  2952. msgctxt "support_structure description"
  2953. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  2954. msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção."
  2955. #: fdmprinter.def.json
  2956. msgctxt "support_structure option normal"
  2957. msgid "Normal"
  2958. msgstr "Normal"
  2959. #: fdmprinter.def.json
  2960. msgctxt "support_structure option tree"
  2961. msgid "Tree"
  2962. msgstr "Árvore"
  2963. #: fdmprinter.def.json
  2964. msgctxt "support_tree_angle label"
  2965. msgid "Tree Support Branch Angle"
  2966. msgstr "Ângulo Ramos Suportes Árvore"
  2967. #: fdmprinter.def.json
  2968. msgctxt "support_tree_angle description"
  2969. 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."
  2970. msgstr "O ângulo dos ramos. Usar um ângulo pequeno para criar ramos mais verticais e estáveis. Usar um ângulo maior para conseguir que os ramos tenham um maior alcance."
  2971. #: fdmprinter.def.json
  2972. msgctxt "support_tree_branch_distance label"
  2973. msgid "Tree Support Branch Distance"
  2974. msgstr "Distância Ramos Suportes Árvore"
  2975. #: fdmprinter.def.json
  2976. msgctxt "support_tree_branch_distance description"
  2977. 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."
  2978. msgstr "A distância entre os ramos, quando estes tocam o modelo. Se esta distância for pequena faz com que os suportes tenham mais pontos de contacto com o modelo, permitindo um melhor apoio em saliências mas faz com que os suportes sejam mais difíceis de retirar."
  2979. #: fdmprinter.def.json
  2980. msgctxt "support_tree_branch_diameter label"
  2981. msgid "Tree Support Branch Diameter"
  2982. msgstr "Diâmetro Ramos Suportes Árvore"
  2983. #: fdmprinter.def.json
  2984. msgctxt "support_tree_branch_diameter description"
  2985. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2986. msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base."
  2987. #: fdmprinter.def.json
  2988. msgctxt "support_tree_branch_diameter_angle label"
  2989. msgid "Tree Support Branch Diameter Angle"
  2990. msgstr "Ângulo Diâmetro Ramos Suportes Árvore"
  2991. #: fdmprinter.def.json
  2992. msgctxt "support_tree_branch_diameter_angle description"
  2993. 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."
  2994. msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore."
  2995. #: fdmprinter.def.json
  2996. msgctxt "support_tree_collision_resolution label"
  2997. msgid "Tree Support Collision Resolution"
  2998. msgstr "Resolução Colisão Suportes Árvore"
  2999. #: fdmprinter.def.json
  3000. msgctxt "support_tree_collision_resolution description"
  3001. 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."
  3002. msgstr "A resolução do cálculo de prevenção de colisões com o modelo. Usando um valor baixo irá criar suportes tipo árvore com maior sucesso, mas aumenta drasticamente o tempo de seccionamento."
  3003. #: fdmprinter.def.json
  3004. msgctxt "support_type label"
  3005. msgid "Support Placement"
  3006. msgstr "Colocação do suporte"
  3007. #: fdmprinter.def.json
  3008. msgctxt "support_type description"
  3009. 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."
  3010. msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo."
  3011. #: fdmprinter.def.json
  3012. msgctxt "support_type option buildplate"
  3013. msgid "Touching Buildplate"
  3014. msgstr "A Tocar na base de construção"
  3015. #: fdmprinter.def.json
  3016. msgctxt "support_type option everywhere"
  3017. msgid "Everywhere"
  3018. msgstr "Em todo o lado"
  3019. #: fdmprinter.def.json
  3020. msgctxt "support_angle label"
  3021. msgid "Support Overhang Angle"
  3022. msgstr "Ângulo Saliência para Suportes"
  3023. #: fdmprinter.def.json
  3024. msgctxt "support_angle description"
  3025. 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."
  3026. msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte."
  3027. #: fdmprinter.def.json
  3028. msgctxt "support_pattern label"
  3029. msgid "Support Pattern"
  3030. msgstr "Padrão de Suportes"
  3031. #: fdmprinter.def.json
  3032. msgctxt "support_pattern description"
  3033. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3034. msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção."
  3035. #: fdmprinter.def.json
  3036. msgctxt "support_pattern option lines"
  3037. msgid "Lines"
  3038. msgstr "Linhas"
  3039. #: fdmprinter.def.json
  3040. msgctxt "support_pattern option grid"
  3041. msgid "Grid"
  3042. msgstr "Grelha"
  3043. #: fdmprinter.def.json
  3044. msgctxt "support_pattern option triangles"
  3045. msgid "Triangles"
  3046. msgstr "Triângulos"
  3047. #: fdmprinter.def.json
  3048. msgctxt "support_pattern option concentric"
  3049. msgid "Concentric"
  3050. msgstr "Concêntrico"
  3051. #: fdmprinter.def.json
  3052. msgctxt "support_pattern option zigzag"
  3053. msgid "Zig Zag"
  3054. msgstr "Ziguezague"
  3055. #: fdmprinter.def.json
  3056. msgctxt "support_pattern option cross"
  3057. msgid "Cross"
  3058. msgstr "Cruz"
  3059. #: fdmprinter.def.json
  3060. msgctxt "support_pattern option gyroid"
  3061. msgid "Gyroid"
  3062. msgstr "Gyroid"
  3063. #: fdmprinter.def.json
  3064. msgctxt "support_wall_count label"
  3065. msgid "Support Wall Line Count"
  3066. msgstr "Número Linhas Paredes Suporte"
  3067. #: fdmprinter.def.json
  3068. msgctxt "support_wall_count description"
  3069. 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."
  3070. msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado."
  3071. #: fdmprinter.def.json
  3072. msgctxt "zig_zaggify_support label"
  3073. msgid "Connect Support Lines"
  3074. msgstr "Ligar Linhas de Suporte"
  3075. #: fdmprinter.def.json
  3076. msgctxt "zig_zaggify_support description"
  3077. 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."
  3078. msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material."
  3079. #: fdmprinter.def.json
  3080. msgctxt "support_connect_zigzags label"
  3081. msgid "Connect Support ZigZags"
  3082. msgstr "Ligar ziguezagues de suporte"
  3083. #: fdmprinter.def.json
  3084. msgctxt "support_connect_zigzags description"
  3085. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  3086. msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague."
  3087. #: fdmprinter.def.json
  3088. msgctxt "support_infill_rate label"
  3089. msgid "Support Density"
  3090. msgstr "Densidade do Suporte"
  3091. #: fdmprinter.def.json
  3092. msgctxt "support_infill_rate description"
  3093. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3094. msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover."
  3095. #: fdmprinter.def.json
  3096. msgctxt "support_line_distance label"
  3097. msgid "Support Line Distance"
  3098. msgstr "Distância da linha de suporte"
  3099. #: fdmprinter.def.json
  3100. msgctxt "support_line_distance description"
  3101. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  3102. msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte."
  3103. #: fdmprinter.def.json
  3104. msgctxt "support_initial_layer_line_distance label"
  3105. msgid "Initial Layer Support Line Distance"
  3106. msgstr "Distância da linha de suporte da camada inicial"
  3107. #: fdmprinter.def.json
  3108. msgctxt "support_initial_layer_line_distance description"
  3109. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  3110. msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte."
  3111. #: fdmprinter.def.json
  3112. msgctxt "support_infill_angles label"
  3113. msgid "Support Infill Line Directions"
  3114. msgstr "Direção da linha de enchimento do suporte"
  3115. #: fdmprinter.def.json
  3116. msgctxt "support_infill_angles description"
  3117. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  3118. msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus."
  3119. #: fdmprinter.def.json
  3120. msgctxt "support_brim_enable label"
  3121. msgid "Enable Support Brim"
  3122. msgstr "Ativar aba de suporte"
  3123. #: fdmprinter.def.json
  3124. msgctxt "support_brim_enable description"
  3125. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  3126. msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção."
  3127. #: fdmprinter.def.json
  3128. msgctxt "support_brim_width label"
  3129. msgid "Support Brim Width"
  3130. msgstr "Largura da aba do suporte"
  3131. #: fdmprinter.def.json
  3132. msgctxt "support_brim_width description"
  3133. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  3134. msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional."
  3135. #: fdmprinter.def.json
  3136. msgctxt "support_brim_line_count label"
  3137. msgid "Support Brim Line Count"
  3138. msgstr "Contagem de linhas da aba do suporte"
  3139. #: fdmprinter.def.json
  3140. msgctxt "support_brim_line_count description"
  3141. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  3142. msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional."
  3143. #: fdmprinter.def.json
  3144. msgctxt "support_z_distance label"
  3145. msgid "Support Z Distance"
  3146. msgstr "Distância Z de suporte"
  3147. #: fdmprinter.def.json
  3148. msgctxt "support_z_distance description"
  3149. 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."
  3150. msgstr "A distância entre a parte superior/inferior da estrutura de suporte e a impressão. Esta folga permite retirar os suportes depois de o modelo ser impresso. Este valor é arredondado para um múltiplo da espessura da camada."
  3151. #: fdmprinter.def.json
  3152. msgctxt "support_top_distance label"
  3153. msgid "Support Top Distance"
  3154. msgstr "Distância superior do suporte"
  3155. #: fdmprinter.def.json
  3156. msgctxt "support_top_distance description"
  3157. msgid "Distance from the top of the support to the print."
  3158. msgstr "A distância entre a parte superior do suporte e a impressão."
  3159. #: fdmprinter.def.json
  3160. msgctxt "support_bottom_distance label"
  3161. msgid "Support Bottom Distance"
  3162. msgstr "Distância inferior do suporte"
  3163. #: fdmprinter.def.json
  3164. msgctxt "support_bottom_distance description"
  3165. msgid "Distance from the print to the bottom of the support."
  3166. msgstr "A distância entre a impressão e a parte inferior do suporte."
  3167. #: fdmprinter.def.json
  3168. msgctxt "support_xy_distance label"
  3169. msgid "Support X/Y Distance"
  3170. msgstr "Distância X/Y do suporte"
  3171. #: fdmprinter.def.json
  3172. msgctxt "support_xy_distance description"
  3173. msgid "Distance of the support structure from the print in the X/Y directions."
  3174. msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y."
  3175. #: fdmprinter.def.json
  3176. msgctxt "support_xy_overrides_z label"
  3177. msgid "Support Distance Priority"
  3178. msgstr "Prioridade da distância de suporte"
  3179. #: fdmprinter.def.json
  3180. msgctxt "support_xy_overrides_z description"
  3181. 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."
  3182. msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências."
  3183. #: fdmprinter.def.json
  3184. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3185. msgid "X/Y overrides Z"
  3186. msgstr "X/Y substitui Z"
  3187. #: fdmprinter.def.json
  3188. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3189. msgid "Z overrides X/Y"
  3190. msgstr "Z substitui X/Y"
  3191. #: fdmprinter.def.json
  3192. msgctxt "support_xy_distance_overhang label"
  3193. msgid "Minimum Support X/Y Distance"
  3194. msgstr "Distância X/Y mínima de suporte"
  3195. #: fdmprinter.def.json
  3196. msgctxt "support_xy_distance_overhang description"
  3197. msgid "Distance of the support structure from the overhang in the X/Y directions."
  3198. msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y."
  3199. #: fdmprinter.def.json
  3200. msgctxt "support_bottom_stair_step_height label"
  3201. msgid "Support Stair Step Height"
  3202. msgstr "Altura Degraus Suporte"
  3203. #: fdmprinter.def.json
  3204. msgctxt "support_bottom_stair_step_height description"
  3205. 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."
  3206. msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada."
  3207. #: fdmprinter.def.json
  3208. msgctxt "support_bottom_stair_step_width label"
  3209. msgid "Support Stair Step Maximum Width"
  3210. msgstr "Largura Máxima Degraus Suporte"
  3211. #: fdmprinter.def.json
  3212. msgctxt "support_bottom_stair_step_width description"
  3213. 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."
  3214. msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis."
  3215. #: fdmprinter.def.json
  3216. msgctxt "support_bottom_stair_step_min_slope label"
  3217. msgid "Support Stair Step Minimum Slope Angle"
  3218. msgstr "Ângulo de declive mínimo do degrau da escada de suporte"
  3219. #: fdmprinter.def.json
  3220. msgctxt "support_bottom_stair_step_min_slope description"
  3221. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  3222. msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo."
  3223. #: fdmprinter.def.json
  3224. msgctxt "support_join_distance label"
  3225. msgid "Support Join Distance"
  3226. msgstr "Distância da junção do suporte"
  3227. #: fdmprinter.def.json
  3228. msgctxt "support_join_distance description"
  3229. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3230. msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só."
  3231. #: fdmprinter.def.json
  3232. msgctxt "support_offset label"
  3233. msgid "Support Horizontal Expansion"
  3234. msgstr "Expansão horizontal de suporte"
  3235. #: fdmprinter.def.json
  3236. msgctxt "support_offset description"
  3237. 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."
  3238. msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos."
  3239. #: fdmprinter.def.json
  3240. msgctxt "support_infill_sparse_thickness label"
  3241. msgid "Support Infill Layer Thickness"
  3242. msgstr "Espessura da camada de enchimento de suporte"
  3243. #: fdmprinter.def.json
  3244. msgctxt "support_infill_sparse_thickness description"
  3245. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3246. msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado."
  3247. #: fdmprinter.def.json
  3248. msgctxt "gradual_support_infill_steps label"
  3249. msgid "Gradual Support Infill Steps"
  3250. msgstr "Enchimento Gradual Suporte"
  3251. #: fdmprinter.def.json
  3252. msgctxt "gradual_support_infill_steps description"
  3253. 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."
  3254. msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte."
  3255. #: fdmprinter.def.json
  3256. msgctxt "gradual_support_infill_step_height label"
  3257. msgid "Gradual Support Infill Step Height"
  3258. msgstr "Altura do degrau de enchimento gradual de suporte"
  3259. #: fdmprinter.def.json
  3260. msgctxt "gradual_support_infill_step_height description"
  3261. msgid "The height of support infill of a given density before switching to half the density."
  3262. msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade."
  3263. #: fdmprinter.def.json
  3264. msgctxt "minimum_support_area label"
  3265. msgid "Minimum Support Area"
  3266. msgstr "Área de suporte mínimo"
  3267. #: fdmprinter.def.json
  3268. msgctxt "minimum_support_area description"
  3269. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3270. msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados."
  3271. #: fdmprinter.def.json
  3272. msgctxt "support_interface_enable label"
  3273. msgid "Enable Support Interface"
  3274. msgstr "Ativar interface de suporte"
  3275. #: fdmprinter.def.json
  3276. msgctxt "support_interface_enable description"
  3277. 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."
  3278. msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo."
  3279. #: fdmprinter.def.json
  3280. msgctxt "support_roof_enable label"
  3281. msgid "Enable Support Roof"
  3282. msgstr "Ativar tecto de suporte"
  3283. #: fdmprinter.def.json
  3284. msgctxt "support_roof_enable description"
  3285. 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."
  3286. msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte."
  3287. #: fdmprinter.def.json
  3288. msgctxt "support_bottom_enable label"
  3289. msgid "Enable Support Floor"
  3290. msgstr "Ativar piso de suporte"
  3291. #: fdmprinter.def.json
  3292. msgctxt "support_bottom_enable description"
  3293. 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."
  3294. msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte."
  3295. #: fdmprinter.def.json
  3296. msgctxt "support_interface_height label"
  3297. msgid "Support Interface Thickness"
  3298. msgstr "Espessura Interface Suporte"
  3299. #: fdmprinter.def.json
  3300. msgctxt "support_interface_height description"
  3301. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3302. msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior."
  3303. #: fdmprinter.def.json
  3304. msgctxt "support_roof_height label"
  3305. msgid "Support Roof Thickness"
  3306. msgstr "Espessura do tecto de suporte"
  3307. #: fdmprinter.def.json
  3308. msgctxt "support_roof_height description"
  3309. 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."
  3310. msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado."
  3311. #: fdmprinter.def.json
  3312. msgctxt "support_bottom_height label"
  3313. msgid "Support Floor Thickness"
  3314. msgstr "Espessura do piso de suporte"
  3315. #: fdmprinter.def.json
  3316. msgctxt "support_bottom_height description"
  3317. 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."
  3318. msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado."
  3319. #: fdmprinter.def.json
  3320. msgctxt "support_interface_skip_height label"
  3321. msgid "Support Interface Resolution"
  3322. msgstr "Resolução Interface Suporte"
  3323. #: fdmprinter.def.json
  3324. msgctxt "support_interface_skip_height description"
  3325. 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."
  3326. msgstr "Ao verificar os locais onde existe modelo por cima e por baixo do suporte, tome as medidas necessárias de acordo com a altura determinada. Os valores mais reduzidos irão seccionar mais lentamente, enquanto os valores mais elevados podem fazer com que o suporte normal seja impresso em alguns locais onde deveria existir uma interface de suporte."
  3327. #: fdmprinter.def.json
  3328. msgctxt "support_interface_density label"
  3329. msgid "Support Interface Density"
  3330. msgstr "Densidade da interface de suporte"
  3331. #: fdmprinter.def.json
  3332. msgctxt "support_interface_density description"
  3333. 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."
  3334. msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover."
  3335. #: fdmprinter.def.json
  3336. msgctxt "support_roof_density label"
  3337. msgid "Support Roof Density"
  3338. msgstr "Densidade do tecto de suporte"
  3339. #: fdmprinter.def.json
  3340. msgctxt "support_roof_density description"
  3341. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3342. msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover."
  3343. #: fdmprinter.def.json
  3344. msgctxt "support_roof_line_distance label"
  3345. msgid "Support Roof Line Distance"
  3346. msgstr "Distância da linha do tecto de suporte"
  3347. #: fdmprinter.def.json
  3348. msgctxt "support_roof_line_distance description"
  3349. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3350. msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado."
  3351. #: fdmprinter.def.json
  3352. msgctxt "support_bottom_density label"
  3353. msgid "Support Floor Density"
  3354. msgstr "Densidade do piso de suporte"
  3355. #: fdmprinter.def.json
  3356. msgctxt "support_bottom_density description"
  3357. 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."
  3358. msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo."
  3359. #: fdmprinter.def.json
  3360. msgctxt "support_bottom_line_distance label"
  3361. msgid "Support Floor Line Distance"
  3362. msgstr "Distância da linha do piso de suporte"
  3363. #: fdmprinter.def.json
  3364. msgctxt "support_bottom_line_distance description"
  3365. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3366. msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado."
  3367. #: fdmprinter.def.json
  3368. msgctxt "support_interface_pattern label"
  3369. msgid "Support Interface Pattern"
  3370. msgstr "Padrão da interface de suporte"
  3371. #: fdmprinter.def.json
  3372. msgctxt "support_interface_pattern description"
  3373. msgid "The pattern with which the interface of the support with the model is printed."
  3374. msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa."
  3375. #: fdmprinter.def.json
  3376. msgctxt "support_interface_pattern option lines"
  3377. msgid "Lines"
  3378. msgstr "Linhas"
  3379. #: fdmprinter.def.json
  3380. msgctxt "support_interface_pattern option grid"
  3381. msgid "Grid"
  3382. msgstr "Grelha"
  3383. #: fdmprinter.def.json
  3384. msgctxt "support_interface_pattern option triangles"
  3385. msgid "Triangles"
  3386. msgstr "Triângulos"
  3387. #: fdmprinter.def.json
  3388. msgctxt "support_interface_pattern option concentric"
  3389. msgid "Concentric"
  3390. msgstr "Concêntrico"
  3391. #: fdmprinter.def.json
  3392. msgctxt "support_interface_pattern option zigzag"
  3393. msgid "Zig Zag"
  3394. msgstr "Ziguezague"
  3395. #: fdmprinter.def.json
  3396. msgctxt "support_roof_pattern label"
  3397. msgid "Support Roof Pattern"
  3398. msgstr "Padrão do tecto de suporte"
  3399. #: fdmprinter.def.json
  3400. msgctxt "support_roof_pattern description"
  3401. msgid "The pattern with which the roofs of the support are printed."
  3402. msgstr "O padrão geométrico com que os tectos do suporte são impressos."
  3403. #: fdmprinter.def.json
  3404. msgctxt "support_roof_pattern option lines"
  3405. msgid "Lines"
  3406. msgstr "Linhas"
  3407. #: fdmprinter.def.json
  3408. msgctxt "support_roof_pattern option grid"
  3409. msgid "Grid"
  3410. msgstr "Grelha"
  3411. #: fdmprinter.def.json
  3412. msgctxt "support_roof_pattern option triangles"
  3413. msgid "Triangles"
  3414. msgstr "Triângulos"
  3415. #: fdmprinter.def.json
  3416. msgctxt "support_roof_pattern option concentric"
  3417. msgid "Concentric"
  3418. msgstr "Concêntrico"
  3419. #: fdmprinter.def.json
  3420. msgctxt "support_roof_pattern option zigzag"
  3421. msgid "Zig Zag"
  3422. msgstr "Ziguezague"
  3423. #: fdmprinter.def.json
  3424. msgctxt "support_bottom_pattern label"
  3425. msgid "Support Floor Pattern"
  3426. msgstr "Padrão Piso Suporte"
  3427. #: fdmprinter.def.json
  3428. msgctxt "support_bottom_pattern description"
  3429. msgid "The pattern with which the floors of the support are printed."
  3430. msgstr "O padrão geométrico com que os pisos do suporte são impressos."
  3431. #: fdmprinter.def.json
  3432. msgctxt "support_bottom_pattern option lines"
  3433. msgid "Lines"
  3434. msgstr "Linhas"
  3435. #: fdmprinter.def.json
  3436. msgctxt "support_bottom_pattern option grid"
  3437. msgid "Grid"
  3438. msgstr "Grelha"
  3439. #: fdmprinter.def.json
  3440. msgctxt "support_bottom_pattern option triangles"
  3441. msgid "Triangles"
  3442. msgstr "Triângulos"
  3443. #: fdmprinter.def.json
  3444. msgctxt "support_bottom_pattern option concentric"
  3445. msgid "Concentric"
  3446. msgstr "Concêntrico"
  3447. #: fdmprinter.def.json
  3448. msgctxt "support_bottom_pattern option zigzag"
  3449. msgid "Zig Zag"
  3450. msgstr "Ziguezague"
  3451. #: fdmprinter.def.json
  3452. msgctxt "minimum_interface_area label"
  3453. msgid "Minimum Support Interface Area"
  3454. msgstr "Área mínima da interface de suporte"
  3455. #: fdmprinter.def.json
  3456. msgctxt "minimum_interface_area description"
  3457. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3458. msgstr "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal."
  3459. #: fdmprinter.def.json
  3460. msgctxt "minimum_roof_area label"
  3461. msgid "Minimum Support Roof Area"
  3462. msgstr "Área mínima do teto de suporte"
  3463. #: fdmprinter.def.json
  3464. msgctxt "minimum_roof_area description"
  3465. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3466. msgstr "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal."
  3467. #: fdmprinter.def.json
  3468. msgctxt "minimum_bottom_area label"
  3469. msgid "Minimum Support Floor Area"
  3470. msgstr "Área mínima do piso de suporte"
  3471. #: fdmprinter.def.json
  3472. msgctxt "minimum_bottom_area description"
  3473. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3474. msgstr "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal."
  3475. #: fdmprinter.def.json
  3476. msgctxt "support_interface_offset label"
  3477. msgid "Support Interface Horizontal Expansion"
  3478. msgstr "Expansão horizontal da interface de suporte"
  3479. #: fdmprinter.def.json
  3480. msgctxt "support_interface_offset description"
  3481. msgid "Amount of offset applied to the support interface polygons."
  3482. msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte."
  3483. #: fdmprinter.def.json
  3484. msgctxt "support_roof_offset label"
  3485. msgid "Support Roof Horizontal Expansion"
  3486. msgstr "Expansão horizontal do teto de suporte"
  3487. #: fdmprinter.def.json
  3488. msgctxt "support_roof_offset description"
  3489. msgid "Amount of offset applied to the roofs of the support."
  3490. msgstr "Quantidade do desvio aplicado aos tetos de suporte."
  3491. #: fdmprinter.def.json
  3492. msgctxt "support_bottom_offset label"
  3493. msgid "Support Floor Horizontal Expansion"
  3494. msgstr "Expansão horizontal do piso de suporte"
  3495. #: fdmprinter.def.json
  3496. msgctxt "support_bottom_offset description"
  3497. msgid "Amount of offset applied to the floors of the support."
  3498. msgstr "Quantidade do desvio aplicado aos pisos de suporte."
  3499. #: fdmprinter.def.json
  3500. msgctxt "support_interface_angles label"
  3501. msgid "Support Interface Line Directions"
  3502. msgstr "Direções da linha da interface do suporte"
  3503. #: fdmprinter.def.json
  3504. msgctxt "support_interface_angles description"
  3505. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3506. msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)."
  3507. #: fdmprinter.def.json
  3508. msgctxt "support_roof_angles label"
  3509. msgid "Support Roof Line Directions"
  3510. msgstr "Direções da linha do teto do suporte"
  3511. #: fdmprinter.def.json
  3512. msgctxt "support_roof_angles description"
  3513. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3514. msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)."
  3515. #: fdmprinter.def.json
  3516. msgctxt "support_bottom_angles label"
  3517. msgid "Support Floor Line Directions"
  3518. msgstr "Direções da linha do piso do suporte"
  3519. #: fdmprinter.def.json
  3520. msgctxt "support_bottom_angles description"
  3521. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3522. msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)."
  3523. #: fdmprinter.def.json
  3524. msgctxt "support_fan_enable label"
  3525. msgid "Fan Speed Override"
  3526. msgstr "Substituir velocidade da ventoinha"
  3527. #: fdmprinter.def.json
  3528. msgctxt "support_fan_enable description"
  3529. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3530. msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte."
  3531. #: fdmprinter.def.json
  3532. msgctxt "support_supported_skin_fan_speed label"
  3533. msgid "Supported Skin Fan Speed"
  3534. msgstr "Velocidade da ventoinha de revestimento suportada"
  3535. #: fdmprinter.def.json
  3536. msgctxt "support_supported_skin_fan_speed description"
  3537. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  3538. msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte."
  3539. #: fdmprinter.def.json
  3540. msgctxt "support_use_towers label"
  3541. msgid "Use Towers"
  3542. msgstr "Utilizar torres"
  3543. #: fdmprinter.def.json
  3544. msgctxt "support_use_towers description"
  3545. 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."
  3546. msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto."
  3547. #: fdmprinter.def.json
  3548. msgctxt "support_tower_diameter label"
  3549. msgid "Tower Diameter"
  3550. msgstr "Diâmetro da torre"
  3551. #: fdmprinter.def.json
  3552. msgctxt "support_tower_diameter description"
  3553. msgid "The diameter of a special tower."
  3554. msgstr "O diâmetro de uma torre especial."
  3555. #: fdmprinter.def.json
  3556. msgctxt "support_tower_maximum_supported_diameter label"
  3557. msgid "Maximum Tower-Supported Diameter"
  3558. msgstr "Diâmetro Máximo Suportado pela Torre"
  3559. #: fdmprinter.def.json
  3560. msgctxt "support_tower_maximum_supported_diameter description"
  3561. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3562. msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada."
  3563. #: fdmprinter.def.json
  3564. msgctxt "support_tower_roof_angle label"
  3565. msgid "Tower Roof Angle"
  3566. msgstr "Ângulo do tecto da torre"
  3567. #: fdmprinter.def.json
  3568. msgctxt "support_tower_roof_angle description"
  3569. 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."
  3570. msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados."
  3571. #: fdmprinter.def.json
  3572. msgctxt "support_mesh_drop_down label"
  3573. msgid "Drop Down Support Mesh"
  3574. msgstr "Malha de suporte pendente"
  3575. #: fdmprinter.def.json
  3576. msgctxt "support_mesh_drop_down description"
  3577. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3578. msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte."
  3579. #: fdmprinter.def.json
  3580. msgctxt "support_meshes_present label"
  3581. msgid "Scene Has Support Meshes"
  3582. msgstr "O cenário tem malhas de suporte"
  3583. #: fdmprinter.def.json
  3584. msgctxt "support_meshes_present description"
  3585. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3586. msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura."
  3587. #: fdmprinter.def.json
  3588. msgctxt "platform_adhesion label"
  3589. msgid "Build Plate Adhesion"
  3590. msgstr "Aderência"
  3591. #: fdmprinter.def.json
  3592. msgctxt "platform_adhesion description"
  3593. msgid "Adhesion"
  3594. msgstr "Aderência à Base de Construção"
  3595. #: fdmprinter.def.json
  3596. msgctxt "prime_blob_enable label"
  3597. msgid "Enable Prime Blob"
  3598. msgstr "\"Blob\" de Preparação"
  3599. #: fdmprinter.def.json
  3600. msgctxt "prime_blob_enable description"
  3601. 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."
  3602. msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo."
  3603. #: fdmprinter.def.json
  3604. msgctxt "extruder_prime_pos_x label"
  3605. msgid "Extruder Prime X Position"
  3606. msgstr "Posição X Preparação Extrusor"
  3607. #: fdmprinter.def.json
  3608. msgctxt "extruder_prime_pos_x description"
  3609. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3610. msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão."
  3611. #: fdmprinter.def.json
  3612. msgctxt "extruder_prime_pos_y label"
  3613. msgid "Extruder Prime Y Position"
  3614. msgstr "Posição Y Preparação Extrusor"
  3615. #: fdmprinter.def.json
  3616. msgctxt "extruder_prime_pos_y description"
  3617. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3618. msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão."
  3619. #: fdmprinter.def.json
  3620. msgctxt "adhesion_type label"
  3621. msgid "Build Plate Adhesion Type"
  3622. msgstr "Modos de Aderência"
  3623. #: fdmprinter.def.json
  3624. msgctxt "adhesion_type description"
  3625. 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."
  3626. msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo."
  3627. #: fdmprinter.def.json
  3628. msgctxt "adhesion_type option skirt"
  3629. msgid "Skirt"
  3630. msgstr "Contorno"
  3631. #: fdmprinter.def.json
  3632. msgctxt "adhesion_type option brim"
  3633. msgid "Brim"
  3634. msgstr "Aba"
  3635. #: fdmprinter.def.json
  3636. msgctxt "adhesion_type option raft"
  3637. msgid "Raft"
  3638. msgstr "Raft"
  3639. #: fdmprinter.def.json
  3640. msgctxt "adhesion_type option none"
  3641. msgid "None"
  3642. msgstr "Nenhum"
  3643. #: fdmprinter.def.json
  3644. msgctxt "adhesion_extruder_nr label"
  3645. msgid "Build Plate Adhesion Extruder"
  3646. msgstr "Extrusor para Aderência"
  3647. #: fdmprinter.def.json
  3648. msgctxt "adhesion_extruder_nr description"
  3649. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3650. msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores."
  3651. #: fdmprinter.def.json
  3652. msgctxt "skirt_brim_extruder_nr label"
  3653. msgid "Skirt/Brim Extruder"
  3654. msgstr "Extrusor do contorno/aba"
  3655. #: fdmprinter.def.json
  3656. msgctxt "skirt_brim_extruder_nr description"
  3657. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  3658. msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos."
  3659. #: fdmprinter.def.json
  3660. msgctxt "raft_base_extruder_nr label"
  3661. msgid "Raft Base Extruder"
  3662. msgstr "Extrusor da base do raft"
  3663. #: fdmprinter.def.json
  3664. msgctxt "raft_base_extruder_nr description"
  3665. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  3666. msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos."
  3667. #: fdmprinter.def.json
  3668. msgctxt "raft_interface_extruder_nr label"
  3669. msgid "Raft Middle Extruder"
  3670. msgstr "Extrusor do meio do raft"
  3671. #: fdmprinter.def.json
  3672. msgctxt "raft_interface_extruder_nr description"
  3673. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  3674. msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos."
  3675. #: fdmprinter.def.json
  3676. msgctxt "raft_surface_extruder_nr label"
  3677. msgid "Raft Top Extruder"
  3678. msgstr "Extrusora superior do raft"
  3679. #: fdmprinter.def.json
  3680. msgctxt "raft_surface_extruder_nr description"
  3681. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  3682. msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos."
  3683. #: fdmprinter.def.json
  3684. msgctxt "skirt_line_count label"
  3685. msgid "Skirt Line Count"
  3686. msgstr "Número Linhas Contorno"
  3687. #: fdmprinter.def.json
  3688. msgctxt "skirt_line_count description"
  3689. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3690. msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno."
  3691. #: fdmprinter.def.json
  3692. msgctxt "skirt_gap label"
  3693. msgid "Skirt Distance"
  3694. msgstr "Distância Contorno"
  3695. #: fdmprinter.def.json
  3696. msgctxt "skirt_gap description"
  3697. msgid ""
  3698. "The horizontal distance between the skirt and the first layer of the print.\n"
  3699. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3700. msgstr ""
  3701. "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n"
  3702. "Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior."
  3703. #: fdmprinter.def.json
  3704. msgctxt "skirt_brim_minimal_length label"
  3705. msgid "Skirt/Brim Minimum Length"
  3706. msgstr "Comprimento Mínimo Contorno/Aba"
  3707. #: fdmprinter.def.json
  3708. msgctxt "skirt_brim_minimal_length description"
  3709. 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."
  3710. msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada."
  3711. #: fdmprinter.def.json
  3712. msgctxt "brim_width label"
  3713. msgid "Brim Width"
  3714. msgstr "Largura da Aba"
  3715. #: fdmprinter.def.json
  3716. msgctxt "brim_width description"
  3717. 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."
  3718. msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva."
  3719. #: fdmprinter.def.json
  3720. msgctxt "brim_line_count label"
  3721. msgid "Brim Line Count"
  3722. msgstr "Número Linhas da Aba"
  3723. #: fdmprinter.def.json
  3724. msgctxt "brim_line_count description"
  3725. 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."
  3726. msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva."
  3727. #: fdmprinter.def.json
  3728. msgctxt "brim_gap label"
  3729. msgid "Brim Distance"
  3730. msgstr "Distância da Aba"
  3731. #: fdmprinter.def.json
  3732. msgctxt "brim_gap description"
  3733. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3734. msgstr "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas."
  3735. #: fdmprinter.def.json
  3736. msgctxt "brim_replaces_support label"
  3737. msgid "Brim Replaces Support"
  3738. msgstr "A aba substitui o suporte"
  3739. #: fdmprinter.def.json
  3740. msgctxt "brim_replaces_support description"
  3741. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  3742. msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba."
  3743. #: fdmprinter.def.json
  3744. msgctxt "brim_outside_only label"
  3745. msgid "Brim Only on Outside"
  3746. msgstr "Aba Apenas no Exterior"
  3747. #: fdmprinter.def.json
  3748. msgctxt "brim_outside_only description"
  3749. 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."
  3750. msgstr "Imprimir a aba apenas no exterior do modelo. Isto reduz a quantidade de abas a remover posteriormente, e ao mesmo tempo não reduz assim tanto a aderência à base."
  3751. #: fdmprinter.def.json
  3752. msgctxt "raft_margin label"
  3753. msgid "Raft Extra Margin"
  3754. msgstr "Margem Adicional Raft"
  3755. #: fdmprinter.def.json
  3756. msgctxt "raft_margin description"
  3757. 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."
  3758. msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão."
  3759. #: fdmprinter.def.json
  3760. msgctxt "raft_smoothing label"
  3761. msgid "Raft Smoothing"
  3762. msgstr "Suavização Raft"
  3763. #: fdmprinter.def.json
  3764. msgctxt "raft_smoothing description"
  3765. 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."
  3766. msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo."
  3767. #: fdmprinter.def.json
  3768. msgctxt "raft_airgap label"
  3769. msgid "Raft Air Gap"
  3770. msgstr "Caixa de Ar do Raft"
  3771. #: fdmprinter.def.json
  3772. msgctxt "raft_airgap description"
  3773. 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."
  3774. msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft."
  3775. #: fdmprinter.def.json
  3776. msgctxt "layer_0_z_overlap label"
  3777. msgid "Initial Layer Z Overlap"
  3778. msgstr "Sobreposição Z Camada Inicial"
  3779. #: fdmprinter.def.json
  3780. msgctxt "layer_0_z_overlap description"
  3781. 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."
  3782. msgstr "Sobrepor, na direção Z, a primeira e a segunda camadas do modelo para compensar o filamento perdido na caixa de ar. O valor da distância com que todos os modelos acima da primeira camada do modelo serão deslocados para baixo."
  3783. #: fdmprinter.def.json
  3784. msgctxt "raft_surface_layers label"
  3785. msgid "Raft Top Layers"
  3786. msgstr "Camadas Superiores do Raft"
  3787. #: fdmprinter.def.json
  3788. msgctxt "raft_surface_layers description"
  3789. 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."
  3790. msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada."
  3791. #: fdmprinter.def.json
  3792. msgctxt "raft_surface_thickness label"
  3793. msgid "Raft Top Layer Thickness"
  3794. msgstr "Espessura Camada Superior Raft"
  3795. #: fdmprinter.def.json
  3796. msgctxt "raft_surface_thickness description"
  3797. msgid "Layer thickness of the top raft layers."
  3798. msgstr "A espessura das camadas superiores do raft."
  3799. #: fdmprinter.def.json
  3800. msgctxt "raft_surface_line_width label"
  3801. msgid "Raft Top Line Width"
  3802. msgstr "Diâmetro Linha Superior do Raft"
  3803. #: fdmprinter.def.json
  3804. msgctxt "raft_surface_line_width description"
  3805. 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."
  3806. msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso."
  3807. #: fdmprinter.def.json
  3808. msgctxt "raft_surface_line_spacing label"
  3809. msgid "Raft Top Spacing"
  3810. msgstr "Espaçamento Superior do Raft"
  3811. #: fdmprinter.def.json
  3812. msgctxt "raft_surface_line_spacing description"
  3813. 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."
  3814. msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme."
  3815. #: fdmprinter.def.json
  3816. msgctxt "raft_interface_layers label"
  3817. msgid "Raft Middle Layers"
  3818. msgstr "Camadas do meio do raft"
  3819. #: fdmprinter.def.json
  3820. msgctxt "raft_interface_layers description"
  3821. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3822. msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente."
  3823. #: fdmprinter.def.json
  3824. msgctxt "raft_interface_thickness label"
  3825. msgid "Raft Middle Thickness"
  3826. msgstr "Espessura do Meio do Raft"
  3827. #: fdmprinter.def.json
  3828. msgctxt "raft_interface_thickness description"
  3829. msgid "Layer thickness of the middle raft layer."
  3830. msgstr "A espessura da camada do meio do raft. (segunda camada)"
  3831. #: fdmprinter.def.json
  3832. msgctxt "raft_interface_line_width label"
  3833. msgid "Raft Middle Line Width"
  3834. msgstr "Diâmetro Linha do Meio do Raft"
  3835. #: fdmprinter.def.json
  3836. msgctxt "raft_interface_line_width description"
  3837. 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."
  3838. msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção."
  3839. #: fdmprinter.def.json
  3840. msgctxt "raft_interface_line_spacing label"
  3841. msgid "Raft Middle Spacing"
  3842. msgstr "Espaçamento do Meio do Raft"
  3843. #: fdmprinter.def.json
  3844. msgctxt "raft_interface_line_spacing description"
  3845. 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."
  3846. msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft."
  3847. #: fdmprinter.def.json
  3848. msgctxt "raft_base_thickness label"
  3849. msgid "Raft Base Thickness"
  3850. msgstr "Espessura da Base do Raft"
  3851. #: fdmprinter.def.json
  3852. msgctxt "raft_base_thickness description"
  3853. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3854. msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora."
  3855. #: fdmprinter.def.json
  3856. msgctxt "raft_base_line_width label"
  3857. msgid "Raft Base Line Width"
  3858. msgstr "Diâmetro Linha Base do Raft"
  3859. #: fdmprinter.def.json
  3860. msgctxt "raft_base_line_width description"
  3861. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3862. msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção."
  3863. #: fdmprinter.def.json
  3864. msgctxt "raft_base_line_spacing label"
  3865. msgid "Raft Base Line Spacing"
  3866. msgstr "Espaçamento da Linha Base do Raft"
  3867. #: fdmprinter.def.json
  3868. msgctxt "raft_base_line_spacing description"
  3869. 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."
  3870. msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção."
  3871. #: fdmprinter.def.json
  3872. msgctxt "raft_speed label"
  3873. msgid "Raft Print Speed"
  3874. msgstr "Velocidade Impressão do Raft"
  3875. #: fdmprinter.def.json
  3876. msgctxt "raft_speed description"
  3877. msgid "The speed at which the raft is printed."
  3878. msgstr "A velocidade a que o raft é impresso."
  3879. #: fdmprinter.def.json
  3880. msgctxt "raft_surface_speed label"
  3881. msgid "Raft Top Print Speed"
  3882. msgstr "Velocidade do Topo do Raft"
  3883. #: fdmprinter.def.json
  3884. msgctxt "raft_surface_speed description"
  3885. 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."
  3886. msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície."
  3887. #: fdmprinter.def.json
  3888. msgctxt "raft_interface_speed label"
  3889. msgid "Raft Middle Print Speed"
  3890. msgstr "Velocidade do Meio do Raft"
  3891. #: fdmprinter.def.json
  3892. msgctxt "raft_interface_speed description"
  3893. 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."
  3894. msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado."
  3895. #: fdmprinter.def.json
  3896. msgctxt "raft_base_speed label"
  3897. msgid "Raft Base Print Speed"
  3898. msgstr "Velocidade da Base do Raft"
  3899. #: fdmprinter.def.json
  3900. msgctxt "raft_base_speed description"
  3901. 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."
  3902. msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado."
  3903. #: fdmprinter.def.json
  3904. msgctxt "raft_acceleration label"
  3905. msgid "Raft Print Acceleration"
  3906. msgstr "Aceleração Impressão do Raft"
  3907. #: fdmprinter.def.json
  3908. msgctxt "raft_acceleration description"
  3909. msgid "The acceleration with which the raft is printed."
  3910. msgstr "A aceleração com que o raft é impresso."
  3911. #: fdmprinter.def.json
  3912. msgctxt "raft_surface_acceleration label"
  3913. msgid "Raft Top Print Acceleration"
  3914. msgstr "Aceleração do Topo do Raft"
  3915. #: fdmprinter.def.json
  3916. msgctxt "raft_surface_acceleration description"
  3917. msgid "The acceleration with which the top raft layers are printed."
  3918. msgstr "A aceleração com que as camadas superiores do raft são impressas."
  3919. #: fdmprinter.def.json
  3920. msgctxt "raft_interface_acceleration label"
  3921. msgid "Raft Middle Print Acceleration"
  3922. msgstr "Aceleração do Meio do Raft"
  3923. #: fdmprinter.def.json
  3924. msgctxt "raft_interface_acceleration description"
  3925. msgid "The acceleration with which the middle raft layer is printed."
  3926. msgstr "A aceleração com que a camada do meio do raft é impressa."
  3927. #: fdmprinter.def.json
  3928. msgctxt "raft_base_acceleration label"
  3929. msgid "Raft Base Print Acceleration"
  3930. msgstr "Aceleração da Base do Raft"
  3931. #: fdmprinter.def.json
  3932. msgctxt "raft_base_acceleration description"
  3933. msgid "The acceleration with which the base raft layer is printed."
  3934. msgstr "A aceleração com que a camada inferior (base) do raft é impressa."
  3935. #: fdmprinter.def.json
  3936. msgctxt "raft_jerk label"
  3937. msgid "Raft Print Jerk"
  3938. msgstr "Jerk de impressão do raft"
  3939. #: fdmprinter.def.json
  3940. msgctxt "raft_jerk description"
  3941. msgid "The jerk with which the raft is printed."
  3942. msgstr "O jerk com que o raft é impresso."
  3943. #: fdmprinter.def.json
  3944. msgctxt "raft_surface_jerk label"
  3945. msgid "Raft Top Print Jerk"
  3946. msgstr "Jerk de impressão superior do raft"
  3947. #: fdmprinter.def.json
  3948. msgctxt "raft_surface_jerk description"
  3949. msgid "The jerk with which the top raft layers are printed."
  3950. msgstr "O jerk com que as camadas superiores do raft são impressas."
  3951. #: fdmprinter.def.json
  3952. msgctxt "raft_interface_jerk label"
  3953. msgid "Raft Middle Print Jerk"
  3954. msgstr "Jerk de impressão do meio do raft"
  3955. #: fdmprinter.def.json
  3956. msgctxt "raft_interface_jerk description"
  3957. msgid "The jerk with which the middle raft layer is printed."
  3958. msgstr "O jerk com que a camada do meio do raft é impressa."
  3959. #: fdmprinter.def.json
  3960. msgctxt "raft_base_jerk label"
  3961. msgid "Raft Base Print Jerk"
  3962. msgstr "Jerk de impressão inferior do raft"
  3963. #: fdmprinter.def.json
  3964. msgctxt "raft_base_jerk description"
  3965. msgid "The jerk with which the base raft layer is printed."
  3966. msgstr "O jerk com que a camada da base do raft é impressa."
  3967. #: fdmprinter.def.json
  3968. msgctxt "raft_fan_speed label"
  3969. msgid "Raft Fan Speed"
  3970. msgstr "Velocidade do ventilador do raft"
  3971. #: fdmprinter.def.json
  3972. msgctxt "raft_fan_speed description"
  3973. msgid "The fan speed for the raft."
  3974. msgstr "A velocidade do ventilador do raft."
  3975. #: fdmprinter.def.json
  3976. msgctxt "raft_surface_fan_speed label"
  3977. msgid "Raft Top Fan Speed"
  3978. msgstr "Velocidade do ventilador superior do raft"
  3979. #: fdmprinter.def.json
  3980. msgctxt "raft_surface_fan_speed description"
  3981. msgid "The fan speed for the top raft layers."
  3982. msgstr "A velocidade do ventilador das camadas superiores do raft."
  3983. #: fdmprinter.def.json
  3984. msgctxt "raft_interface_fan_speed label"
  3985. msgid "Raft Middle Fan Speed"
  3986. msgstr "Velocidade do ventilador do meio do raft"
  3987. #: fdmprinter.def.json
  3988. msgctxt "raft_interface_fan_speed description"
  3989. msgid "The fan speed for the middle raft layer."
  3990. msgstr "A velocidade do ventilador da camada do meio do raft."
  3991. #: fdmprinter.def.json
  3992. msgctxt "raft_base_fan_speed label"
  3993. msgid "Raft Base Fan Speed"
  3994. msgstr "Velocidade do ventilador inferior do raft"
  3995. #: fdmprinter.def.json
  3996. msgctxt "raft_base_fan_speed description"
  3997. msgid "The fan speed for the base raft layer."
  3998. msgstr "A velocidade do ventilador da camada inferior do raft."
  3999. #: fdmprinter.def.json
  4000. msgctxt "dual label"
  4001. msgid "Dual Extrusion"
  4002. msgstr "Dupla Extrusão"
  4003. #: fdmprinter.def.json
  4004. msgctxt "dual description"
  4005. msgid "Settings used for printing with multiple extruders."
  4006. msgstr "Definições utilizadas para imprimir com vários extrusores."
  4007. #: fdmprinter.def.json
  4008. msgctxt "prime_tower_enable label"
  4009. msgid "Enable Prime Tower"
  4010. msgstr "Ativar torre de preparação"
  4011. #: fdmprinter.def.json
  4012. msgctxt "prime_tower_enable description"
  4013. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  4014. msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle."
  4015. #: fdmprinter.def.json
  4016. msgctxt "prime_tower_size label"
  4017. msgid "Prime Tower Size"
  4018. msgstr "Tamanho Torre de Preparação"
  4019. #: fdmprinter.def.json
  4020. msgctxt "prime_tower_size description"
  4021. msgid "The width of the prime tower."
  4022. msgstr "A largura da torre de preparação."
  4023. #: fdmprinter.def.json
  4024. msgctxt "prime_tower_min_volume label"
  4025. msgid "Prime Tower Minimum Volume"
  4026. msgstr "Volume mínimo da torre de preparação"
  4027. #: fdmprinter.def.json
  4028. msgctxt "prime_tower_min_volume description"
  4029. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  4030. msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente."
  4031. #: fdmprinter.def.json
  4032. msgctxt "prime_tower_position_x label"
  4033. msgid "Prime Tower X Position"
  4034. msgstr "Posição X da torre de preparação"
  4035. #: fdmprinter.def.json
  4036. msgctxt "prime_tower_position_x description"
  4037. msgid "The x coordinate of the position of the prime tower."
  4038. msgstr "A coordenada X da posição da torre de preparação."
  4039. #: fdmprinter.def.json
  4040. msgctxt "prime_tower_position_y label"
  4041. msgid "Prime Tower Y Position"
  4042. msgstr "Posição Y da torre de preparação"
  4043. #: fdmprinter.def.json
  4044. msgctxt "prime_tower_position_y description"
  4045. msgid "The y coordinate of the position of the prime tower."
  4046. msgstr "A coordenada Y da posição da torre de preparação."
  4047. #: fdmprinter.def.json
  4048. msgctxt "prime_tower_wipe_enabled label"
  4049. msgid "Wipe Inactive Nozzle on Prime Tower"
  4050. msgstr "Limpar nozzle inativo na torre de preparação"
  4051. #: fdmprinter.def.json
  4052. msgctxt "prime_tower_wipe_enabled description"
  4053. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  4054. msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação."
  4055. #: fdmprinter.def.json
  4056. msgctxt "prime_tower_brim_enable label"
  4057. msgid "Prime Tower Brim"
  4058. msgstr "Aba da torre de preparação"
  4059. #: fdmprinter.def.json
  4060. msgctxt "prime_tower_brim_enable description"
  4061. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  4062. msgstr "As torres de preparação poderão necessitar de uma aderência adicional concedida por uma aba, ainda que o modelo não o necessite. Atualmente, não é possível utilizá-la com o tipo de aderência \"Raft\"."
  4063. #: fdmprinter.def.json
  4064. msgctxt "ooze_shield_enabled label"
  4065. msgid "Enable Ooze Shield"
  4066. msgstr "Ativar proteção contra escorrimento"
  4067. #: fdmprinter.def.json
  4068. msgctxt "ooze_shield_enabled description"
  4069. 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."
  4070. msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle."
  4071. #: fdmprinter.def.json
  4072. msgctxt "ooze_shield_angle label"
  4073. msgid "Ooze Shield Angle"
  4074. msgstr "Ângulo da proteção contra escorrimentos"
  4075. #: fdmprinter.def.json
  4076. msgctxt "ooze_shield_angle description"
  4077. 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."
  4078. msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material."
  4079. #: fdmprinter.def.json
  4080. msgctxt "ooze_shield_dist label"
  4081. msgid "Ooze Shield Distance"
  4082. msgstr "Distância da proteção contra escorrimentos"
  4083. #: fdmprinter.def.json
  4084. msgctxt "ooze_shield_dist description"
  4085. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  4086. msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y."
  4087. #: fdmprinter.def.json
  4088. msgctxt "switch_extruder_retraction_amount label"
  4089. msgid "Nozzle Switch Retraction Distance"
  4090. msgstr "Distância de retração de substituição do nozzle"
  4091. #: fdmprinter.def.json
  4092. msgctxt "switch_extruder_retraction_amount description"
  4093. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  4094. msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento."
  4095. #: fdmprinter.def.json
  4096. msgctxt "switch_extruder_retraction_speeds label"
  4097. msgid "Nozzle Switch Retraction Speed"
  4098. msgstr "Velocidade de retração de substituição do nozzle"
  4099. #: fdmprinter.def.json
  4100. msgctxt "switch_extruder_retraction_speeds description"
  4101. 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."
  4102. msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento."
  4103. #: fdmprinter.def.json
  4104. msgctxt "switch_extruder_retraction_speed label"
  4105. msgid "Nozzle Switch Retract Speed"
  4106. msgstr "Velocidade de recolha de substituição do nozzle"
  4107. #: fdmprinter.def.json
  4108. msgctxt "switch_extruder_retraction_speed description"
  4109. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  4110. msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle."
  4111. #: fdmprinter.def.json
  4112. msgctxt "switch_extruder_prime_speed label"
  4113. msgid "Nozzle Switch Prime Speed"
  4114. msgstr "Velocidade de preparação de substituição do nozzle"
  4115. #: fdmprinter.def.json
  4116. msgctxt "switch_extruder_prime_speed description"
  4117. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  4118. msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle."
  4119. #: fdmprinter.def.json
  4120. msgctxt "switch_extruder_extra_prime_amount label"
  4121. msgid "Nozzle Switch Extra Prime Amount"
  4122. msgstr "Quantidade de Preparação Extra de Substituição do Nozzle"
  4123. #: fdmprinter.def.json
  4124. msgctxt "switch_extruder_extra_prime_amount description"
  4125. msgid "Extra material to prime after nozzle switching."
  4126. msgstr "Material extra a preparar após a substituição do nozzle."
  4127. #: fdmprinter.def.json
  4128. msgctxt "meshfix label"
  4129. msgid "Mesh Fixes"
  4130. msgstr "Correção de Objectos (Mesh)"
  4131. #: fdmprinter.def.json
  4132. msgctxt "meshfix description"
  4133. msgid "Make the meshes more suited for 3D printing."
  4134. msgstr "Torne os objetos mais adequados para impressão 3D."
  4135. #: fdmprinter.def.json
  4136. msgctxt "meshfix_union_all label"
  4137. msgid "Union Overlapping Volumes"
  4138. msgstr "Unir Volumes Sobrepostos"
  4139. #: fdmprinter.def.json
  4140. msgctxt "meshfix_union_all description"
  4141. 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."
  4142. msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores."
  4143. #: fdmprinter.def.json
  4144. msgctxt "meshfix_union_all_remove_holes label"
  4145. msgid "Remove All Holes"
  4146. msgstr "Remover Todos Buracos"
  4147. #: fdmprinter.def.json
  4148. msgctxt "meshfix_union_all_remove_holes description"
  4149. 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."
  4150. msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo."
  4151. #: fdmprinter.def.json
  4152. msgctxt "meshfix_extensive_stitching label"
  4153. msgid "Extensive Stitching"
  4154. msgstr "Costura Extensiva"
  4155. #: fdmprinter.def.json
  4156. msgctxt "meshfix_extensive_stitching description"
  4157. 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."
  4158. msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento."
  4159. #: fdmprinter.def.json
  4160. msgctxt "meshfix_keep_open_polygons label"
  4161. msgid "Keep Disconnected Faces"
  4162. msgstr "Manter Faces Soltas"
  4163. #: fdmprinter.def.json
  4164. msgctxt "meshfix_keep_open_polygons description"
  4165. 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."
  4166. msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado."
  4167. #: fdmprinter.def.json
  4168. msgctxt "multiple_mesh_overlap label"
  4169. msgid "Merged Meshes Overlap"
  4170. msgstr "Sobreposição Malhas Combinadas"
  4171. #: fdmprinter.def.json
  4172. msgctxt "multiple_mesh_overlap description"
  4173. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  4174. msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação."
  4175. #: fdmprinter.def.json
  4176. msgctxt "carve_multiple_volumes label"
  4177. msgid "Remove Mesh Intersection"
  4178. msgstr "Remover interceção de malhas"
  4179. #: fdmprinter.def.json
  4180. msgctxt "carve_multiple_volumes description"
  4181. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  4182. msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados."
  4183. #: fdmprinter.def.json
  4184. msgctxt "alternate_carve_order label"
  4185. msgid "Alternate Mesh Removal"
  4186. msgstr "Alternar remoção de malha"
  4187. #: fdmprinter.def.json
  4188. msgctxt "alternate_carve_order description"
  4189. 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."
  4190. msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas."
  4191. #: fdmprinter.def.json
  4192. msgctxt "remove_empty_first_layers label"
  4193. msgid "Remove Empty First Layers"
  4194. msgstr "Remover Camadas Iniciais Vazias"
  4195. #: fdmprinter.def.json
  4196. msgctxt "remove_empty_first_layers description"
  4197. 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."
  4198. msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro."
  4199. #: fdmprinter.def.json
  4200. msgctxt "meshfix_maximum_resolution label"
  4201. msgid "Maximum Resolution"
  4202. msgstr "Resolução Máxima"
  4203. #: fdmprinter.def.json
  4204. msgctxt "meshfix_maximum_resolution description"
  4205. 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."
  4206. msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados."
  4207. #: fdmprinter.def.json
  4208. msgctxt "meshfix_maximum_travel_resolution label"
  4209. msgid "Maximum Travel Resolution"
  4210. msgstr "Resolução Máxima Deslocação"
  4211. #: fdmprinter.def.json
  4212. msgctxt "meshfix_maximum_travel_resolution description"
  4213. 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."
  4214. msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas."
  4215. #: fdmprinter.def.json
  4216. msgctxt "meshfix_maximum_deviation label"
  4217. msgid "Maximum Deviation"
  4218. msgstr "Desvio máximo"
  4219. #: fdmprinter.def.json
  4220. msgctxt "meshfix_maximum_deviation description"
  4221. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  4222. msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro."
  4223. #: fdmprinter.def.json
  4224. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  4225. msgid "Maximum Extrusion Area Deviation"
  4226. msgstr "Desvio máximo da área de extrusão"
  4227. #: fdmprinter.def.json
  4228. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  4229. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  4230. msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno."
  4231. #: fdmprinter.def.json
  4232. msgctxt "blackmagic label"
  4233. msgid "Special Modes"
  4234. msgstr "Modos Especiais"
  4235. #: fdmprinter.def.json
  4236. msgctxt "blackmagic description"
  4237. msgid "Non-traditional ways to print your models."
  4238. msgstr "Formas não tradicionais de imprimir os seus modelos."
  4239. #: fdmprinter.def.json
  4240. msgctxt "print_sequence label"
  4241. msgid "Print Sequence"
  4242. msgstr "Sequência de impressão"
  4243. #: fdmprinter.def.json
  4244. msgctxt "print_sequence description"
  4245. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  4246. msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y."
  4247. #: fdmprinter.def.json
  4248. msgctxt "print_sequence option all_at_once"
  4249. msgid "All at Once"
  4250. msgstr "Simultaneamente"
  4251. #: fdmprinter.def.json
  4252. msgctxt "print_sequence option one_at_a_time"
  4253. msgid "One at a Time"
  4254. msgstr "Individualmente"
  4255. #: fdmprinter.def.json
  4256. msgctxt "infill_mesh label"
  4257. msgid "Infill Mesh"
  4258. msgstr "Objecto de Enchimento"
  4259. #: fdmprinter.def.json
  4260. msgctxt "infill_mesh description"
  4261. 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."
  4262. msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior."
  4263. #: fdmprinter.def.json
  4264. msgctxt "infill_mesh_order label"
  4265. msgid "Mesh Processing Rank"
  4266. msgstr "Classificação de processamento de malha"
  4267. #: fdmprinter.def.json
  4268. msgctxt "infill_mesh_order description"
  4269. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  4270. msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais."
  4271. #: fdmprinter.def.json
  4272. msgctxt "cutting_mesh label"
  4273. msgid "Cutting Mesh"
  4274. msgstr "Malha de corte"
  4275. #: fdmprinter.def.json
  4276. msgctxt "cutting_mesh description"
  4277. 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."
  4278. msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta."
  4279. #: fdmprinter.def.json
  4280. msgctxt "mold_enabled label"
  4281. msgid "Mold"
  4282. msgstr "Molde"
  4283. #: fdmprinter.def.json
  4284. msgctxt "mold_enabled description"
  4285. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4286. msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção."
  4287. #: fdmprinter.def.json
  4288. msgctxt "mold_width label"
  4289. msgid "Minimal Mold Width"
  4290. msgstr "Largura mínima do molde"
  4291. #: fdmprinter.def.json
  4292. msgctxt "mold_width description"
  4293. msgid "The minimal distance between the outside of the mold and the outside of the model."
  4294. msgstr "A distância mínima entre o exterior do molde e o exterior do modelo."
  4295. #: fdmprinter.def.json
  4296. msgctxt "mold_roof_height label"
  4297. msgid "Mold Roof Height"
  4298. msgstr "Altura do tecto do molde"
  4299. #: fdmprinter.def.json
  4300. msgctxt "mold_roof_height description"
  4301. msgid "The height above horizontal parts in your model which to print mold."
  4302. msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde."
  4303. #: fdmprinter.def.json
  4304. msgctxt "mold_angle label"
  4305. msgid "Mold Angle"
  4306. msgstr "Ângulo do molde"
  4307. #: fdmprinter.def.json
  4308. msgctxt "mold_angle description"
  4309. 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."
  4310. msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo."
  4311. #: fdmprinter.def.json
  4312. msgctxt "support_mesh label"
  4313. msgid "Support Mesh"
  4314. msgstr "Malha de suporte"
  4315. #: fdmprinter.def.json
  4316. msgctxt "support_mesh description"
  4317. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4318. msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte."
  4319. #: fdmprinter.def.json
  4320. msgctxt "anti_overhang_mesh label"
  4321. msgid "Anti Overhang Mesh"
  4322. msgstr "Malha antissaliências"
  4323. #: fdmprinter.def.json
  4324. msgctxt "anti_overhang_mesh description"
  4325. 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."
  4326. msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas."
  4327. #: fdmprinter.def.json
  4328. msgctxt "magic_mesh_surface_mode label"
  4329. msgid "Surface Mode"
  4330. msgstr "Modo de superfície"
  4331. #: fdmprinter.def.json
  4332. msgctxt "magic_mesh_surface_mode description"
  4333. 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."
  4334. msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies."
  4335. #: fdmprinter.def.json
  4336. msgctxt "magic_mesh_surface_mode option normal"
  4337. msgid "Normal"
  4338. msgstr "Normal"
  4339. #: fdmprinter.def.json
  4340. msgctxt "magic_mesh_surface_mode option surface"
  4341. msgid "Surface"
  4342. msgstr "Superfície"
  4343. #: fdmprinter.def.json
  4344. msgctxt "magic_mesh_surface_mode option both"
  4345. msgid "Both"
  4346. msgstr "Ambos"
  4347. #: fdmprinter.def.json
  4348. msgctxt "magic_spiralize label"
  4349. msgid "Spiralize Outer Contour"
  4350. msgstr "\"Spiralize\" Contorno Exterior"
  4351. #: fdmprinter.def.json
  4352. msgctxt "magic_spiralize description"
  4353. 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."
  4354. msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça."
  4355. #: fdmprinter.def.json
  4356. msgctxt "smooth_spiralized_contours label"
  4357. msgid "Smooth Spiralized Contours"
  4358. msgstr "\"Spiralize\" Suavizar Contornos"
  4359. #: fdmprinter.def.json
  4360. msgctxt "smooth_spiralized_contours description"
  4361. 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."
  4362. msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície."
  4363. #: fdmprinter.def.json
  4364. msgctxt "relative_extrusion label"
  4365. msgid "Relative Extrusion"
  4366. msgstr "Extrusão relativa"
  4367. #: fdmprinter.def.json
  4368. msgctxt "relative_extrusion description"
  4369. 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."
  4370. msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code."
  4371. #: fdmprinter.def.json
  4372. msgctxt "experimental label"
  4373. msgid "Experimental"
  4374. msgstr "Experimental"
  4375. #: fdmprinter.def.json
  4376. msgctxt "experimental description"
  4377. msgid "Features that haven't completely been fleshed out yet."
  4378. msgstr "Funcionalidades que ainda não foram totalmente lançadas."
  4379. #: fdmprinter.def.json
  4380. msgctxt "slicing_tolerance label"
  4381. msgid "Slicing Tolerance"
  4382. msgstr "Tolerância do Seccionamento"
  4383. #: fdmprinter.def.json
  4384. msgctxt "slicing_tolerance description"
  4385. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4386. msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original."
  4387. #: fdmprinter.def.json
  4388. msgctxt "slicing_tolerance option middle"
  4389. msgid "Middle"
  4390. msgstr "Centro"
  4391. #: fdmprinter.def.json
  4392. msgctxt "slicing_tolerance option exclusive"
  4393. msgid "Exclusive"
  4394. msgstr "Exclusivo"
  4395. #: fdmprinter.def.json
  4396. msgctxt "slicing_tolerance option inclusive"
  4397. msgid "Inclusive"
  4398. msgstr "Inclusivo"
  4399. #: fdmprinter.def.json
  4400. msgctxt "roofing_line_width label"
  4401. msgid "Top Surface Skin Line Width"
  4402. msgstr "Diâmetro Linha Revestimento Superior"
  4403. #: fdmprinter.def.json
  4404. msgctxt "roofing_line_width description"
  4405. msgid "Width of a single line of the areas at the top of the print."
  4406. msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão."
  4407. #: fdmprinter.def.json
  4408. msgctxt "roofing_pattern label"
  4409. msgid "Top Surface Skin Pattern"
  4410. msgstr "Padrão Revestimento Superior"
  4411. #: fdmprinter.def.json
  4412. msgctxt "roofing_pattern description"
  4413. msgid "The pattern of the top most layers."
  4414. msgstr "O padrão geométrico das camadas de revestimento da superfície superior."
  4415. #: fdmprinter.def.json
  4416. msgctxt "roofing_pattern option lines"
  4417. msgid "Lines"
  4418. msgstr "Linhas"
  4419. #: fdmprinter.def.json
  4420. msgctxt "roofing_pattern option concentric"
  4421. msgid "Concentric"
  4422. msgstr "Concêntrico"
  4423. #: fdmprinter.def.json
  4424. msgctxt "roofing_pattern option zigzag"
  4425. msgid "Zig Zag"
  4426. msgstr "Ziguezague"
  4427. #: fdmprinter.def.json
  4428. msgctxt "roofing_monotonic label"
  4429. msgid "Monotonic Top Surface Order"
  4430. msgstr "Ordem da superfície superior em \"Monotonic\""
  4431. #: fdmprinter.def.json
  4432. msgctxt "roofing_monotonic description"
  4433. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  4434. msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente."
  4435. #: fdmprinter.def.json
  4436. msgctxt "roofing_angles label"
  4437. msgid "Top Surface Skin Line Directions"
  4438. msgstr "Direções Linha Revestimento Superior"
  4439. #: fdmprinter.def.json
  4440. msgctxt "roofing_angles description"
  4441. 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)."
  4442. msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)."
  4443. #: fdmprinter.def.json
  4444. msgctxt "infill_enable_travel_optimization label"
  4445. msgid "Infill Travel Optimization"
  4446. msgstr "Optimização Deslocação Enchimento"
  4447. #: fdmprinter.def.json
  4448. msgctxt "infill_enable_travel_optimization description"
  4449. 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."
  4450. msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente."
  4451. #: fdmprinter.def.json
  4452. msgctxt "material_flow_dependent_temperature label"
  4453. msgid "Auto Temperature"
  4454. msgstr "Temperatura Automática"
  4455. #: fdmprinter.def.json
  4456. msgctxt "material_flow_dependent_temperature description"
  4457. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4458. msgstr "Mudar, automaticamente, a temperatura de cada camada com a velocidade de fluxo média dessa camada."
  4459. #: fdmprinter.def.json
  4460. msgctxt "material_flow_temp_graph label"
  4461. msgid "Flow Temperature Graph"
  4462. msgstr "Gráfico de temperatura de fluxo"
  4463. #: fdmprinter.def.json
  4464. msgctxt "material_flow_temp_graph description"
  4465. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4466. msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)."
  4467. #: fdmprinter.def.json
  4468. msgctxt "minimum_polygon_circumference label"
  4469. msgid "Minimum Polygon Circumference"
  4470. msgstr "Circunferência Mínima do Polígono"
  4471. #: fdmprinter.def.json
  4472. msgctxt "minimum_polygon_circumference description"
  4473. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  4474. msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes."
  4475. #: fdmprinter.def.json
  4476. msgctxt "support_skip_some_zags label"
  4477. msgid "Break Up Support In Chunks"
  4478. msgstr "Separar Suportes em Blocos"
  4479. #: fdmprinter.def.json
  4480. msgctxt "support_skip_some_zags description"
  4481. 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."
  4482. msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte."
  4483. #: fdmprinter.def.json
  4484. msgctxt "support_skip_zag_per_mm label"
  4485. msgid "Support Chunk Size"
  4486. msgstr "Tamanho do bloco de suporte"
  4487. #: fdmprinter.def.json
  4488. msgctxt "support_skip_zag_per_mm description"
  4489. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4490. msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte."
  4491. #: fdmprinter.def.json
  4492. msgctxt "support_zag_skip_count label"
  4493. msgid "Support Chunk Line Count"
  4494. msgstr "Número de linhas do bloco de suporte"
  4495. #: fdmprinter.def.json
  4496. msgctxt "support_zag_skip_count description"
  4497. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4498. msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte."
  4499. #: fdmprinter.def.json
  4500. msgctxt "draft_shield_enabled label"
  4501. msgid "Enable Draft Shield"
  4502. msgstr "Barreira contra correntes de ar"
  4503. #: fdmprinter.def.json
  4504. msgctxt "draft_shield_enabled description"
  4505. 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."
  4506. msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade."
  4507. #: fdmprinter.def.json
  4508. msgctxt "draft_shield_dist label"
  4509. msgid "Draft Shield X/Y Distance"
  4510. msgstr "Distância X/Y da proteção contra correntes de ar"
  4511. #: fdmprinter.def.json
  4512. msgctxt "draft_shield_dist description"
  4513. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4514. msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y."
  4515. #: fdmprinter.def.json
  4516. msgctxt "draft_shield_height_limitation label"
  4517. msgid "Draft Shield Limitation"
  4518. msgstr "Limite de proteção contra correntes de ar"
  4519. #: fdmprinter.def.json
  4520. msgctxt "draft_shield_height_limitation description"
  4521. 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."
  4522. msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada."
  4523. #: fdmprinter.def.json
  4524. msgctxt "draft_shield_height_limitation option full"
  4525. msgid "Full"
  4526. msgstr "Máximo"
  4527. #: fdmprinter.def.json
  4528. msgctxt "draft_shield_height_limitation option limited"
  4529. msgid "Limited"
  4530. msgstr "Limitado"
  4531. #: fdmprinter.def.json
  4532. msgctxt "draft_shield_height label"
  4533. msgid "Draft Shield Height"
  4534. msgstr "Altura da proteção contra correntes de ar"
  4535. #: fdmprinter.def.json
  4536. msgctxt "draft_shield_height description"
  4537. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4538. msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura."
  4539. #: fdmprinter.def.json
  4540. msgctxt "conical_overhang_enabled label"
  4541. msgid "Make Overhang Printable"
  4542. msgstr "Tornar Saliência Imprimível"
  4543. #: fdmprinter.def.json
  4544. msgctxt "conical_overhang_enabled description"
  4545. 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."
  4546. msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais."
  4547. #: fdmprinter.def.json
  4548. msgctxt "conical_overhang_angle label"
  4549. msgid "Maximum Model Angle"
  4550. msgstr "Ângulo máximo do modelo"
  4551. #: fdmprinter.def.json
  4552. msgctxt "conical_overhang_angle description"
  4553. 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."
  4554. msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma."
  4555. #: fdmprinter.def.json
  4556. msgctxt "conical_overhang_hole_size label"
  4557. msgid "Maximum Overhang Hole Area"
  4558. msgstr "Área máxima do buraco da saliência"
  4559. #: fdmprinter.def.json
  4560. msgctxt "conical_overhang_hole_size description"
  4561. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  4562. msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo."
  4563. #: fdmprinter.def.json
  4564. msgctxt "coasting_enable label"
  4565. msgid "Enable Coasting"
  4566. msgstr "Ativar desaceleração"
  4567. #: fdmprinter.def.json
  4568. msgctxt "coasting_enable description"
  4569. 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."
  4570. msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios."
  4571. #: fdmprinter.def.json
  4572. msgctxt "coasting_volume label"
  4573. msgid "Coasting Volume"
  4574. msgstr "Volume de desaceleração"
  4575. #: fdmprinter.def.json
  4576. msgctxt "coasting_volume description"
  4577. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4578. msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle."
  4579. #: fdmprinter.def.json
  4580. msgctxt "coasting_min_volume label"
  4581. msgid "Minimum Volume Before Coasting"
  4582. msgstr "Volume mínimo antes da desaceleração"
  4583. #: fdmprinter.def.json
  4584. msgctxt "coasting_min_volume description"
  4585. 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."
  4586. msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração."
  4587. #: fdmprinter.def.json
  4588. msgctxt "coasting_speed label"
  4589. msgid "Coasting Speed"
  4590. msgstr "Velocidade de desaceleração"
  4591. #: fdmprinter.def.json
  4592. msgctxt "coasting_speed description"
  4593. 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."
  4594. msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui."
  4595. #: fdmprinter.def.json
  4596. msgctxt "cross_infill_pocket_size label"
  4597. msgid "Cross 3D Pocket Size"
  4598. msgstr "Tamanho da bolsa de cruz 3D"
  4599. #: fdmprinter.def.json
  4600. msgctxt "cross_infill_pocket_size description"
  4601. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4602. msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio."
  4603. #: fdmprinter.def.json
  4604. msgctxt "cross_infill_density_image label"
  4605. msgid "Cross Infill Density Image"
  4606. msgstr "Imagem Densidade Enchimento Cruz"
  4607. #: fdmprinter.def.json
  4608. msgctxt "cross_infill_density_image description"
  4609. 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."
  4610. msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão."
  4611. #: fdmprinter.def.json
  4612. msgctxt "cross_support_density_image label"
  4613. msgid "Cross Fill Density Image for Support"
  4614. msgstr "Imagem Densidade Suporte em Cruz"
  4615. #: fdmprinter.def.json
  4616. msgctxt "cross_support_density_image description"
  4617. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4618. msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes."
  4619. #: fdmprinter.def.json
  4620. msgctxt "support_conical_enabled label"
  4621. msgid "Enable Conical Support"
  4622. msgstr "Ativar suporte cónico"
  4623. #: fdmprinter.def.json
  4624. msgctxt "support_conical_enabled description"
  4625. msgid "Make support areas smaller at the bottom than at the overhang."
  4626. msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência."
  4627. #: fdmprinter.def.json
  4628. msgctxt "support_conical_angle label"
  4629. msgid "Conical Support Angle"
  4630. msgstr "Ângulo do suporte cónico"
  4631. #: fdmprinter.def.json
  4632. msgctxt "support_conical_angle description"
  4633. 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."
  4634. msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior."
  4635. #: fdmprinter.def.json
  4636. msgctxt "support_conical_min_width label"
  4637. msgid "Conical Support Minimum Width"
  4638. msgstr "Largura mínima do suporte cónico"
  4639. #: fdmprinter.def.json
  4640. msgctxt "support_conical_min_width description"
  4641. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4642. msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis."
  4643. #: fdmprinter.def.json
  4644. msgctxt "magic_fuzzy_skin_enabled label"
  4645. msgid "Fuzzy Skin"
  4646. msgstr "Revestimento Difuso"
  4647. #: fdmprinter.def.json
  4648. msgctxt "magic_fuzzy_skin_enabled description"
  4649. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4650. msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso."
  4651. #: fdmprinter.def.json
  4652. msgctxt "magic_fuzzy_skin_outside_only label"
  4653. msgid "Fuzzy Skin Outside Only"
  4654. msgstr "Revestimento difuso apenas no exterior"
  4655. #: fdmprinter.def.json
  4656. msgctxt "magic_fuzzy_skin_outside_only description"
  4657. msgid "Jitter only the parts' outlines and not the parts' holes."
  4658. msgstr "Vibrar apenas os contornos das peças e não os buracos das peças."
  4659. #: fdmprinter.def.json
  4660. msgctxt "magic_fuzzy_skin_thickness label"
  4661. msgid "Fuzzy Skin Thickness"
  4662. msgstr "Espessura Revestimento Difuso"
  4663. #: fdmprinter.def.json
  4664. msgctxt "magic_fuzzy_skin_thickness description"
  4665. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4666. msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas."
  4667. #: fdmprinter.def.json
  4668. msgctxt "magic_fuzzy_skin_point_density label"
  4669. msgid "Fuzzy Skin Density"
  4670. msgstr "Densidade Revestimento Difuso"
  4671. #: fdmprinter.def.json
  4672. msgctxt "magic_fuzzy_skin_point_density description"
  4673. 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."
  4674. msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução."
  4675. #: fdmprinter.def.json
  4676. msgctxt "magic_fuzzy_skin_point_dist label"
  4677. msgid "Fuzzy Skin Point Distance"
  4678. msgstr "Distância do ponto de revestimento difuso"
  4679. #: fdmprinter.def.json
  4680. msgctxt "magic_fuzzy_skin_point_dist description"
  4681. 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."
  4682. msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso."
  4683. #: fdmprinter.def.json
  4684. msgctxt "flow_rate_max_extrusion_offset label"
  4685. msgid "Flow Rate Compensation Max Extrusion Offset"
  4686. msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo"
  4687. #: fdmprinter.def.json
  4688. msgctxt "flow_rate_max_extrusion_offset description"
  4689. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4690. msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo."
  4691. #: fdmprinter.def.json
  4692. msgctxt "flow_rate_extrusion_offset_factor label"
  4693. msgid "Flow Rate Compensation Factor"
  4694. msgstr "Fator de compensação da taxa de fluxo"
  4695. #: fdmprinter.def.json
  4696. msgctxt "flow_rate_extrusion_offset_factor description"
  4697. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  4698. msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão."
  4699. #: fdmprinter.def.json
  4700. msgctxt "wireframe_enabled label"
  4701. msgid "Wire Printing"
  4702. msgstr "Impressão em Fios"
  4703. #: fdmprinter.def.json
  4704. msgctxt "wireframe_enabled description"
  4705. 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."
  4706. msgstr "Imprime apenas a superfície exterior com uma estrutura entrelaçada dispersa a partir \"do ar\". Isto é realizado ao imprimir horizontalmente os contornos do modelo em determinados intervalos Z que são ligados através de linhas ascendentes e diagonais descendentes."
  4707. #: fdmprinter.def.json
  4708. msgctxt "wireframe_height label"
  4709. msgid "WP Connection Height"
  4710. msgstr "Altura de ligação da impressão em fios"
  4711. #: fdmprinter.def.json
  4712. msgctxt "wireframe_height description"
  4713. 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."
  4714. msgstr "A altura das linhas ascendentes e diagonais descendentes entre duas partes horizontais. Isto determina a densidade geral da estrutura de rede. Aplica-se apenas à impressão de fios."
  4715. #: fdmprinter.def.json
  4716. msgctxt "wireframe_roof_inset label"
  4717. msgid "WP Roof Inset Distance"
  4718. msgstr "Distância de inserção do tecto da impressão de fios"
  4719. #: fdmprinter.def.json
  4720. msgctxt "wireframe_roof_inset description"
  4721. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4722. msgstr "A distância percorrida ao efetuar uma ligação a partir de um contorno de telhado interno. Aplica-se apenas à impressão de fios."
  4723. #: fdmprinter.def.json
  4724. msgctxt "wireframe_printspeed label"
  4725. msgid "WP Speed"
  4726. msgstr "Velocidade da impressão de fios"
  4727. #: fdmprinter.def.json
  4728. msgctxt "wireframe_printspeed description"
  4729. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4730. msgstr "Velocidade à qual o nozzle se movimenta ao extrudir material. Aplica-se apenas à impressão de fios."
  4731. #: fdmprinter.def.json
  4732. msgctxt "wireframe_printspeed_bottom label"
  4733. msgid "WP Bottom Printing Speed"
  4734. msgstr "Velocidade de impressão da parte inferior da impressão de fios"
  4735. #: fdmprinter.def.json
  4736. msgctxt "wireframe_printspeed_bottom description"
  4737. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4738. msgstr "Velocidade de impressão da primeira camada, que é a única camada que entra em contacto com a plataforma de construção. Aplica-se apenas à impressão de fios."
  4739. #: fdmprinter.def.json
  4740. msgctxt "wireframe_printspeed_up label"
  4741. msgid "WP Upward Printing Speed"
  4742. msgstr "Velocidade de impressão ascendente da impressão de fios"
  4743. #: fdmprinter.def.json
  4744. msgctxt "wireframe_printspeed_up description"
  4745. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4746. msgstr "A velocidade de impressão de uma linha ascendente \"no ar\". Aplica-se apenas à impressão de fios."
  4747. #: fdmprinter.def.json
  4748. msgctxt "wireframe_printspeed_down label"
  4749. msgid "WP Downward Printing Speed"
  4750. msgstr "Velocidade de impressão descendente da impressão de fios"
  4751. #: fdmprinter.def.json
  4752. msgctxt "wireframe_printspeed_down description"
  4753. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4754. msgstr "Velocidade de impressão de uma linha diagonal descendente. Aplica-se apenas à impressão de fios."
  4755. #: fdmprinter.def.json
  4756. msgctxt "wireframe_printspeed_flat label"
  4757. msgid "WP Horizontal Printing Speed"
  4758. msgstr "Velocidade de impressão horizontal da impressão de fios"
  4759. #: fdmprinter.def.json
  4760. msgctxt "wireframe_printspeed_flat description"
  4761. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4762. msgstr "Velocidade de impressão de contornos horizontais do modelo. Aplica-se apenas à impressão de fios."
  4763. #: fdmprinter.def.json
  4764. msgctxt "wireframe_flow label"
  4765. msgid "WP Flow"
  4766. msgstr "Fluxo de impressão de fios"
  4767. #: fdmprinter.def.json
  4768. msgctxt "wireframe_flow description"
  4769. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4770. msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor. Aplica-se apenas à impressão de fios."
  4771. #: fdmprinter.def.json
  4772. msgctxt "wireframe_flow_connection label"
  4773. msgid "WP Connection Flow"
  4774. msgstr "Fluxo de ligação da impressão de fios"
  4775. #: fdmprinter.def.json
  4776. msgctxt "wireframe_flow_connection description"
  4777. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4778. msgstr "A compensação de fluxo ao deslocar-se para cima ou para baixo. Aplica-se apenas à impressão de fios."
  4779. #: fdmprinter.def.json
  4780. msgctxt "wireframe_flow_flat label"
  4781. msgid "WP Flat Flow"
  4782. msgstr "Fluxo plano da impressão de fios"
  4783. #: fdmprinter.def.json
  4784. msgctxt "wireframe_flow_flat description"
  4785. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4786. msgstr "Compensação de fluxo ao imprimir linhas planas. Aplica-se apenas à impressão de fios."
  4787. #: fdmprinter.def.json
  4788. msgctxt "wireframe_top_delay label"
  4789. msgid "WP Top Delay"
  4790. msgstr "Atraso superior da impressão de fios"
  4791. #: fdmprinter.def.json
  4792. msgctxt "wireframe_top_delay description"
  4793. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4794. msgstr "O tempo de atraso após um movimento ascendente, para que a linha ascendente possa endurecer. Aplica-se apenas à impressão de fios."
  4795. #: fdmprinter.def.json
  4796. msgctxt "wireframe_bottom_delay label"
  4797. msgid "WP Bottom Delay"
  4798. msgstr "Atraso da parte inferior da impressão de fios"
  4799. #: fdmprinter.def.json
  4800. msgctxt "wireframe_bottom_delay description"
  4801. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4802. msgstr "O tempo de atraso após um movimento descendente. Aplica-se apenas à impressão de fios."
  4803. #: fdmprinter.def.json
  4804. msgctxt "wireframe_flat_delay label"
  4805. msgid "WP Flat Delay"
  4806. msgstr "Atraso plano da impressão de fios"
  4807. #: fdmprinter.def.json
  4808. msgctxt "wireframe_flat_delay description"
  4809. 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."
  4810. msgstr "Tempo de atraso entre dois segmentos horizontais. A introdução desse atraso pode causar melhor aderência às camadas anteriores nos pontos de ligação. No entanto, os atrasos demasiado longos podem causar flacidez. Aplica-se apenas à impressão de fios."
  4811. #: fdmprinter.def.json
  4812. msgctxt "wireframe_up_half_speed label"
  4813. msgid "WP Ease Upward"
  4814. msgstr "Facilidade de movimento ascendente da impressão de fios"
  4815. #: fdmprinter.def.json
  4816. msgctxt "wireframe_up_half_speed description"
  4817. msgid ""
  4818. "Distance of an upward move which is extruded with half speed.\n"
  4819. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4820. msgstr ""
  4821. "A distância de um movimento ascendente que é extrudido a metade da velocidade.\n"
  4822. "Isto pode causar melhor aderência às camadas anteriores, sendo que o material nessas camadas não é demasiado aquecido. Aplica-se apenas à impressão de fios."
  4823. #: fdmprinter.def.json
  4824. msgctxt "wireframe_top_jump label"
  4825. msgid "WP Knot Size"
  4826. msgstr "Tamanho do nó da impressão de fios"
  4827. #: fdmprinter.def.json
  4828. msgctxt "wireframe_top_jump description"
  4829. 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."
  4830. msgstr "Cria um pequeno nó no topo de uma linha ascendente, para que a camada horizontal subsequente possa ligar-se com maior facilidade. Aplica-se apenas à impressão de fios."
  4831. #: fdmprinter.def.json
  4832. msgctxt "wireframe_fall_down label"
  4833. msgid "WP Fall Down"
  4834. msgstr "Queda da impressão de fios"
  4835. #: fdmprinter.def.json
  4836. msgctxt "wireframe_fall_down description"
  4837. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4838. msgstr "Distância à qual o material cai após uma extrusão ascendente. Esta distância é compensada. Aplica-se apenas à impressão de fios."
  4839. #: fdmprinter.def.json
  4840. msgctxt "wireframe_drag_along label"
  4841. msgid "WP Drag Along"
  4842. msgstr "Arrastamento da impressão de fios"
  4843. #: fdmprinter.def.json
  4844. msgctxt "wireframe_drag_along description"
  4845. 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."
  4846. msgstr "Distância à qual o material de uma extrusão ascendente é arrastado juntamente com a extrusão diagonal descendente. Esta distância é compensada. Aplica-se apenas à impressão de fios."
  4847. #: fdmprinter.def.json
  4848. msgctxt "wireframe_strategy label"
  4849. msgid "WP Strategy"
  4850. msgstr "Estratégia de impressão de fios"
  4851. #: fdmprinter.def.json
  4852. msgctxt "wireframe_strategy description"
  4853. 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."
  4854. msgstr "Estratégia para assegurar que duas camadas consecutivas se ligam a cada ponto de ligação. A retração permite que as linhas ascendentes endureçam na posição correta, mas pode causar a trituração do filamento. É possível fazer um nó no final de uma linha ascendente para aumentar a probabilidade de ligação e para permitir o arrefecimento da linha. No entanto, podem ser necessárias velocidades de impressão reduzidas. Outra estratégia é compensar a flacidez do topo de uma linha ascendente. Porém, as linhas nem sempre cairão conforme previsto."
  4855. #: fdmprinter.def.json
  4856. msgctxt "wireframe_strategy option compensate"
  4857. msgid "Compensate"
  4858. msgstr "Compensar"
  4859. #: fdmprinter.def.json
  4860. msgctxt "wireframe_strategy option knot"
  4861. msgid "Knot"
  4862. msgstr "Nó"
  4863. #: fdmprinter.def.json
  4864. msgctxt "wireframe_strategy option retract"
  4865. msgid "Retract"
  4866. msgstr "Retrair"
  4867. #: fdmprinter.def.json
  4868. msgctxt "wireframe_straight_before_down label"
  4869. msgid "WP Straighten Downward Lines"
  4870. msgstr "Linhas retas descendentes da impressão de fios"
  4871. #: fdmprinter.def.json
  4872. msgctxt "wireframe_straight_before_down description"
  4873. 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."
  4874. msgstr "A percentagem de uma linha diagonal descendente que é abrangida por uma peça da linha horizontal. Isto pode impedir a flacidez do ponto mais elevado das linhas ascendentes. Aplica-se apenas à impressão de fios."
  4875. #: fdmprinter.def.json
  4876. msgctxt "wireframe_roof_fall_down label"
  4877. msgid "WP Roof Fall Down"
  4878. msgstr "Queda do tecto da impressão de fios"
  4879. #: fdmprinter.def.json
  4880. msgctxt "wireframe_roof_fall_down description"
  4881. 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."
  4882. msgstr "A distância à qual as linhas horizontais do tecto que são impressas \"no ar\" caem ao ser impressas. Esta distância é compensada. Aplica-se apenas à impressão de fios."
  4883. #: fdmprinter.def.json
  4884. msgctxt "wireframe_roof_drag_along label"
  4885. msgid "WP Roof Drag Along"
  4886. msgstr "Arrastamento do tecto da impressão de fios"
  4887. #: fdmprinter.def.json
  4888. msgctxt "wireframe_roof_drag_along description"
  4889. 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."
  4890. msgstr "A distância da parte final de uma linha interior que é arrastada ao regressar ao contorno externo do tecto. Esta distância é compensada. Aplica-se apenas à impressão de fios."
  4891. #: fdmprinter.def.json
  4892. msgctxt "wireframe_roof_outer_delay label"
  4893. msgid "WP Roof Outer Delay"
  4894. msgstr "Atraso externo do tecto da impressão de fios"
  4895. #: fdmprinter.def.json
  4896. msgctxt "wireframe_roof_outer_delay description"
  4897. 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."
  4898. msgstr "Tempo gasto nos perímetros externos do buraco que se irá transformar em tecto. Períodos de tempo mais longos permitem garantir uma melhor ligação. Aplica-se apenas à impressão de fios."
  4899. #: fdmprinter.def.json
  4900. msgctxt "wireframe_nozzle_clearance label"
  4901. msgid "WP Nozzle Clearance"
  4902. msgstr "Espaço do nozzle da impressão de fios"
  4903. #: fdmprinter.def.json
  4904. msgctxt "wireframe_nozzle_clearance description"
  4905. 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."
  4906. msgstr "Distância entre o nozzle e as linhas horizontais descendentes. Uma maior folga resulta em linhas horizontais descendentes com um ângulo menos acentuado, o que, por sua vez, resulta em menos ligações ascendentes com a camada seguinte. Aplica-se apenas à impressão de fios."
  4907. #: fdmprinter.def.json
  4908. msgctxt "adaptive_layer_height_enabled label"
  4909. msgid "Use Adaptive Layers"
  4910. msgstr "Utilizar camadas adaptáveis"
  4911. #: fdmprinter.def.json
  4912. msgctxt "adaptive_layer_height_enabled description"
  4913. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4914. msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo."
  4915. #: fdmprinter.def.json
  4916. msgctxt "adaptive_layer_height_variation label"
  4917. msgid "Adaptive Layers Maximum Variation"
  4918. msgstr "Variação máxima das camadas adaptáveis"
  4919. #: fdmprinter.def.json
  4920. msgctxt "adaptive_layer_height_variation description"
  4921. msgid "The maximum allowed height different from the base layer height."
  4922. msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas."
  4923. #: fdmprinter.def.json
  4924. msgctxt "adaptive_layer_height_variation_step label"
  4925. msgid "Adaptive Layers Variation Step Size"
  4926. msgstr "Tamanho da fase de variação das camadas adaptáveis"
  4927. #: fdmprinter.def.json
  4928. msgctxt "adaptive_layer_height_variation_step description"
  4929. msgid "The difference in height of the next layer height compared to the previous one."
  4930. msgstr "A diferença de espessura da camada seguinte em comparação com a anterior."
  4931. #: fdmprinter.def.json
  4932. msgctxt "adaptive_layer_height_threshold label"
  4933. msgid "Adaptive Layers Topography Size"
  4934. msgstr "Dimensão da topografia das camadas adaptáveis"
  4935. #: fdmprinter.def.json
  4936. msgctxt "adaptive_layer_height_threshold description"
  4937. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  4938. msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas."
  4939. #: fdmprinter.def.json
  4940. msgctxt "wall_overhang_angle label"
  4941. msgid "Overhanging Wall Angle"
  4942. msgstr "Ângulo da parede de saliências"
  4943. #: fdmprinter.def.json
  4944. msgctxt "wall_overhang_angle description"
  4945. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4946. msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências."
  4947. #: fdmprinter.def.json
  4948. msgctxt "wall_overhang_speed_factor label"
  4949. msgid "Overhanging Wall Speed"
  4950. msgstr "Velocidade da parede de saliências"
  4951. #: fdmprinter.def.json
  4952. msgctxt "wall_overhang_speed_factor description"
  4953. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4954. msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal."
  4955. #: fdmprinter.def.json
  4956. msgctxt "bridge_settings_enabled label"
  4957. msgid "Enable Bridge Settings"
  4958. msgstr "Ativar Definições de Bridge"
  4959. #: fdmprinter.def.json
  4960. msgctxt "bridge_settings_enabled description"
  4961. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4962. msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências."
  4963. #: fdmprinter.def.json
  4964. msgctxt "bridge_wall_min_length label"
  4965. msgid "Minimum Bridge Wall Length"
  4966. msgstr "Comprimento mínimo da parede de Bridge"
  4967. #: fdmprinter.def.json
  4968. msgctxt "bridge_wall_min_length description"
  4969. 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."
  4970. msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge."
  4971. #: fdmprinter.def.json
  4972. msgctxt "bridge_skin_support_threshold label"
  4973. msgid "Bridge Skin Support Threshold"
  4974. msgstr "Limiar do suporte do revestimento de Bridge"
  4975. #: fdmprinter.def.json
  4976. msgctxt "bridge_skin_support_threshold description"
  4977. 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."
  4978. msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais."
  4979. #: fdmprinter.def.json
  4980. msgctxt "bridge_sparse_infill_max_density label"
  4981. msgid "Bridge Sparse Infill Max Density"
  4982. msgstr "Densidade Máx. Enchimento Disperso de Bridge"
  4983. #: fdmprinter.def.json
  4984. msgctxt "bridge_sparse_infill_max_density description"
  4985. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  4986. msgstr "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge."
  4987. #: fdmprinter.def.json
  4988. msgctxt "bridge_wall_coast label"
  4989. msgid "Bridge Wall Coasting"
  4990. msgstr "Desaceleração da parede de Bridge"
  4991. #: fdmprinter.def.json
  4992. msgctxt "bridge_wall_coast description"
  4993. 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."
  4994. msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso."
  4995. #: fdmprinter.def.json
  4996. msgctxt "bridge_wall_speed label"
  4997. msgid "Bridge Wall Speed"
  4998. msgstr "Velocidade da parede de Bridge"
  4999. #: fdmprinter.def.json
  5000. msgctxt "bridge_wall_speed description"
  5001. msgid "The speed at which the bridge walls are printed."
  5002. msgstr "A velocidade a que as paredes de Bridge são impressas."
  5003. #: fdmprinter.def.json
  5004. msgctxt "bridge_wall_material_flow label"
  5005. msgid "Bridge Wall Flow"
  5006. msgstr "Fluxo da parede de Bridge"
  5007. #: fdmprinter.def.json
  5008. msgctxt "bridge_wall_material_flow description"
  5009. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  5010. msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  5011. #: fdmprinter.def.json
  5012. msgctxt "bridge_skin_speed label"
  5013. msgid "Bridge Skin Speed"
  5014. msgstr "Velocidade do revestimento de Bridge"
  5015. #: fdmprinter.def.json
  5016. msgctxt "bridge_skin_speed description"
  5017. msgid "The speed at which bridge skin regions are printed."
  5018. msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas."
  5019. #: fdmprinter.def.json
  5020. msgctxt "bridge_skin_material_flow label"
  5021. msgid "Bridge Skin Flow"
  5022. msgstr "Fluxo do revestimento de Bridge"
  5023. #: fdmprinter.def.json
  5024. msgctxt "bridge_skin_material_flow description"
  5025. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  5026. msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  5027. #: fdmprinter.def.json
  5028. msgctxt "bridge_skin_density label"
  5029. msgid "Bridge Skin Density"
  5030. msgstr "Densidade do revestimento de Bridge"
  5031. #: fdmprinter.def.json
  5032. msgctxt "bridge_skin_density description"
  5033. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5034. msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  5035. #: fdmprinter.def.json
  5036. msgctxt "bridge_fan_speed label"
  5037. msgid "Bridge Fan Speed"
  5038. msgstr "Velocidade da ventoinha de Bridge"
  5039. #: fdmprinter.def.json
  5040. msgctxt "bridge_fan_speed description"
  5041. msgid "Percentage fan speed to use when printing bridge walls and skin."
  5042. msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge."
  5043. #: fdmprinter.def.json
  5044. msgctxt "bridge_enable_more_layers label"
  5045. msgid "Bridge Has Multiple Layers"
  5046. msgstr "Bridge com múltiplas camadas"
  5047. #: fdmprinter.def.json
  5048. msgctxt "bridge_enable_more_layers description"
  5049. 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."
  5050. msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais."
  5051. #: fdmprinter.def.json
  5052. msgctxt "bridge_skin_speed_2 label"
  5053. msgid "Bridge Second Skin Speed"
  5054. msgstr "Velocidade do segundo revestimento de Bridge"
  5055. #: fdmprinter.def.json
  5056. msgctxt "bridge_skin_speed_2 description"
  5057. msgid "Print speed to use when printing the second bridge skin layer."
  5058. msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge."
  5059. #: fdmprinter.def.json
  5060. msgctxt "bridge_skin_material_flow_2 label"
  5061. msgid "Bridge Second Skin Flow"
  5062. msgstr "Fluxo do segundo revestimento de Bridge"
  5063. #: fdmprinter.def.json
  5064. msgctxt "bridge_skin_material_flow_2 description"
  5065. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  5066. msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  5067. #: fdmprinter.def.json
  5068. msgctxt "bridge_skin_density_2 label"
  5069. msgid "Bridge Second Skin Density"
  5070. msgstr "Densidade do segundo revestimento de Bridge"
  5071. #: fdmprinter.def.json
  5072. msgctxt "bridge_skin_density_2 description"
  5073. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5074. msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  5075. #: fdmprinter.def.json
  5076. msgctxt "bridge_fan_speed_2 label"
  5077. msgid "Bridge Second Skin Fan Speed"
  5078. msgstr "Velocidade da ventoinha do segundo revestimento de Bridge"
  5079. #: fdmprinter.def.json
  5080. msgctxt "bridge_fan_speed_2 description"
  5081. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  5082. msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge."
  5083. #: fdmprinter.def.json
  5084. msgctxt "bridge_skin_speed_3 label"
  5085. msgid "Bridge Third Skin Speed"
  5086. msgstr "Velocidade do terceiro revestimento de Bridge"
  5087. #: fdmprinter.def.json
  5088. msgctxt "bridge_skin_speed_3 description"
  5089. msgid "Print speed to use when printing the third bridge skin layer."
  5090. msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge."
  5091. #: fdmprinter.def.json
  5092. msgctxt "bridge_skin_material_flow_3 label"
  5093. msgid "Bridge Third Skin Flow"
  5094. msgstr "Fluxo do terceiro revestimento de Bridge"
  5095. #: fdmprinter.def.json
  5096. msgctxt "bridge_skin_material_flow_3 description"
  5097. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  5098. msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  5099. #: fdmprinter.def.json
  5100. msgctxt "bridge_skin_density_3 label"
  5101. msgid "Bridge Third Skin Density"
  5102. msgstr "Densidade do terceiro revestimento de Bridge"
  5103. #: fdmprinter.def.json
  5104. msgctxt "bridge_skin_density_3 description"
  5105. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  5106. msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  5107. #: fdmprinter.def.json
  5108. msgctxt "bridge_fan_speed_3 label"
  5109. msgid "Bridge Third Skin Fan Speed"
  5110. msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge"
  5111. #: fdmprinter.def.json
  5112. msgctxt "bridge_fan_speed_3 description"
  5113. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  5114. msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge."
  5115. #: fdmprinter.def.json
  5116. msgctxt "clean_between_layers label"
  5117. msgid "Wipe Nozzle Between Layers"
  5118. msgstr "Limpar nozzle entre camadas"
  5119. #: fdmprinter.def.json
  5120. msgctxt "clean_between_layers description"
  5121. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5122. msgstr "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar."
  5123. #: fdmprinter.def.json
  5124. msgctxt "max_extrusion_before_wipe label"
  5125. msgid "Material Volume Between Wipes"
  5126. msgstr "Volume de material entre limpezas"
  5127. #: fdmprinter.def.json
  5128. msgctxt "max_extrusion_before_wipe description"
  5129. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  5130. msgstr "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada."
  5131. #: fdmprinter.def.json
  5132. msgctxt "wipe_retraction_enable label"
  5133. msgid "Wipe Retraction Enable"
  5134. msgstr "Retração de limpeza ativada"
  5135. #: fdmprinter.def.json
  5136. msgctxt "wipe_retraction_enable description"
  5137. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  5138. msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão."
  5139. #: fdmprinter.def.json
  5140. msgctxt "wipe_retraction_amount label"
  5141. msgid "Wipe Retraction Distance"
  5142. msgstr "Distância de retração da limpeza"
  5143. #: fdmprinter.def.json
  5144. msgctxt "wipe_retraction_amount description"
  5145. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  5146. msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza."
  5147. #: fdmprinter.def.json
  5148. msgctxt "wipe_retraction_extra_prime_amount label"
  5149. msgid "Wipe Retraction Extra Prime Amount"
  5150. msgstr "Quantidade de preparação adicional de retração de limpeza"
  5151. #: fdmprinter.def.json
  5152. msgctxt "wipe_retraction_extra_prime_amount description"
  5153. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  5154. msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui."
  5155. #: fdmprinter.def.json
  5156. msgctxt "wipe_retraction_speed label"
  5157. msgid "Wipe Retraction Speed"
  5158. msgstr "Velocidade de retração de limpeza"
  5159. #: fdmprinter.def.json
  5160. msgctxt "wipe_retraction_speed description"
  5161. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  5162. msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza."
  5163. #: fdmprinter.def.json
  5164. msgctxt "wipe_retraction_retract_speed label"
  5165. msgid "Wipe Retraction Retract Speed"
  5166. msgstr "Velocidade de retração na retração de limpeza"
  5167. #: fdmprinter.def.json
  5168. msgctxt "wipe_retraction_retract_speed description"
  5169. msgid "The speed at which the filament is retracted during a wipe retraction move."
  5170. msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza."
  5171. #: fdmprinter.def.json
  5172. msgctxt "wipe_retraction_prime_speed label"
  5173. msgid "Wipe Retraction Prime Speed"
  5174. msgstr "Velocidade de preparação da retração de limpeza"
  5175. #: fdmprinter.def.json
  5176. msgctxt "wipe_retraction_prime_speed description"
  5177. msgid "The speed at which the filament is primed during a wipe retraction move."
  5178. msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza."
  5179. #: fdmprinter.def.json
  5180. msgctxt "wipe_pause label"
  5181. msgid "Wipe Pause"
  5182. msgstr "Pausa na limpeza"
  5183. #: fdmprinter.def.json
  5184. msgctxt "wipe_pause description"
  5185. msgid "Pause after the unretract."
  5186. msgstr "Coloca a limpeza em pausa após anular a retração."
  5187. #: fdmprinter.def.json
  5188. msgctxt "wipe_hop_enable label"
  5189. msgid "Wipe Z Hop"
  5190. msgstr "Salto Z de limpeza"
  5191. #: fdmprinter.def.json
  5192. msgctxt "wipe_hop_enable description"
  5193. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5194. msgstr "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção."
  5195. #: fdmprinter.def.json
  5196. msgctxt "wipe_hop_amount label"
  5197. msgid "Wipe Z Hop Height"
  5198. msgstr "Altura do salto Z de limpeza"
  5199. #: fdmprinter.def.json
  5200. msgctxt "wipe_hop_amount description"
  5201. msgid "The height difference when performing a Z Hop."
  5202. msgstr "A diferença de altura ao efetuar um salto Z."
  5203. #: fdmprinter.def.json
  5204. msgctxt "wipe_hop_speed label"
  5205. msgid "Wipe Hop Speed"
  5206. msgstr "Velocidade do salto de limpeza"
  5207. #: fdmprinter.def.json
  5208. msgctxt "wipe_hop_speed description"
  5209. msgid "Speed to move the z-axis during the hop."
  5210. msgstr "Velocidade para mover o eixo Z durante o salto."
  5211. #: fdmprinter.def.json
  5212. msgctxt "wipe_brush_pos_x label"
  5213. msgid "Wipe Brush X Position"
  5214. msgstr "Posição X da escova de limpeza"
  5215. #: fdmprinter.def.json
  5216. msgctxt "wipe_brush_pos_x description"
  5217. msgid "X location where wipe script will start."
  5218. msgstr "Localização X onde o script de limpeza será iniciado."
  5219. #: fdmprinter.def.json
  5220. msgctxt "wipe_repeat_count label"
  5221. msgid "Wipe Repeat Count"
  5222. msgstr "Contagem de repetições de limpeza"
  5223. #: fdmprinter.def.json
  5224. msgctxt "wipe_repeat_count description"
  5225. msgid "Number of times to move the nozzle across the brush."
  5226. msgstr "Número de vezes que o nozzle deve ser passado pela escova."
  5227. #: fdmprinter.def.json
  5228. msgctxt "wipe_move_distance label"
  5229. msgid "Wipe Move Distance"
  5230. msgstr "Distância do movimento de limpeza"
  5231. #: fdmprinter.def.json
  5232. msgctxt "wipe_move_distance description"
  5233. msgid "The distance to move the head back and forth across the brush."
  5234. msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova."
  5235. #: fdmprinter.def.json
  5236. msgctxt "small_hole_max_size label"
  5237. msgid "Small Hole Max Size"
  5238. msgstr "Tamanho máximo do buraco pequeno"
  5239. #: fdmprinter.def.json
  5240. msgctxt "small_hole_max_size description"
  5241. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5242. msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno."
  5243. #: fdmprinter.def.json
  5244. msgctxt "small_feature_max_length label"
  5245. msgid "Small Feature Max Length"
  5246. msgstr "Comprimento máximo do elemento pequeno"
  5247. #: fdmprinter.def.json
  5248. msgctxt "small_feature_max_length description"
  5249. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5250. msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno."
  5251. #: fdmprinter.def.json
  5252. msgctxt "small_feature_speed_factor label"
  5253. msgid "Small Feature Speed"
  5254. msgstr "Velocidade de elemento pequeno"
  5255. #: fdmprinter.def.json
  5256. msgctxt "small_feature_speed_factor description"
  5257. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5258. msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão."
  5259. #: fdmprinter.def.json
  5260. msgctxt "small_feature_speed_factor_0 label"
  5261. msgid "Small Feature Initial Layer Speed"
  5262. msgstr "Velocidade da camada inicial de partes pequenas"
  5263. #: fdmprinter.def.json
  5264. msgctxt "small_feature_speed_factor_0 description"
  5265. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5266. msgstr "Os elementos pequenos na primeira camada serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão."
  5267. #: fdmprinter.def.json
  5268. msgctxt "material_alternate_walls label"
  5269. msgid "Alternate Wall Directions"
  5270. msgstr "Direções de parede alternadas"
  5271. #: fdmprinter.def.json
  5272. msgctxt "material_alternate_walls description"
  5273. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  5274. msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal."
  5275. #: fdmprinter.def.json
  5276. msgctxt "raft_remove_inside_corners label"
  5277. msgid "Remove Raft Inside Corners"
  5278. msgstr "Remover cantos interiores do raft"
  5279. #: fdmprinter.def.json
  5280. msgctxt "raft_remove_inside_corners description"
  5281. msgid "Remove inside corners from the raft, causing the raft to become convex."
  5282. msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo."
  5283. #: fdmprinter.def.json
  5284. msgctxt "raft_base_wall_count label"
  5285. msgid "Raft Base Wall Count"
  5286. msgstr "Número de paredes da base do raft"
  5287. #: fdmprinter.def.json
  5288. msgctxt "raft_base_wall_count description"
  5289. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  5290. msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft."
  5291. #: fdmprinter.def.json
  5292. msgctxt "command_line_settings label"
  5293. msgid "Command Line Settings"
  5294. msgstr "Definições de linha de comando"
  5295. #: fdmprinter.def.json
  5296. msgctxt "command_line_settings description"
  5297. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5298. msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura."
  5299. #: fdmprinter.def.json
  5300. msgctxt "center_object label"
  5301. msgid "Center Object"
  5302. msgstr "Centrar Objeto"
  5303. #: fdmprinter.def.json
  5304. msgctxt "center_object description"
  5305. 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."
  5306. msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado."
  5307. #: fdmprinter.def.json
  5308. msgctxt "mesh_position_x label"
  5309. msgid "Mesh Position X"
  5310. msgstr "Posição X do Objeto"
  5311. #: fdmprinter.def.json
  5312. msgctxt "mesh_position_x description"
  5313. msgid "Offset applied to the object in the x direction."
  5314. msgstr "Desvio aplicado ao objeto na direção X."
  5315. #: fdmprinter.def.json
  5316. msgctxt "mesh_position_y label"
  5317. msgid "Mesh Position Y"
  5318. msgstr "Posição Y do Objeto"
  5319. #: fdmprinter.def.json
  5320. msgctxt "mesh_position_y description"
  5321. msgid "Offset applied to the object in the y direction."
  5322. msgstr "Desvio aplicado ao objeto na direção Y."
  5323. #: fdmprinter.def.json
  5324. msgctxt "mesh_position_z label"
  5325. msgid "Mesh Position Z"
  5326. msgstr "Posição Z do Objeto"
  5327. #: fdmprinter.def.json
  5328. msgctxt "mesh_position_z description"
  5329. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5330. msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"."
  5331. #: fdmprinter.def.json
  5332. msgctxt "mesh_rotation_matrix label"
  5333. msgid "Mesh Rotation Matrix"
  5334. msgstr "Matriz Rotação do Objeto"
  5335. #: fdmprinter.def.json
  5336. msgctxt "mesh_rotation_matrix description"
  5337. msgid "Transformation matrix to be applied to the model when loading it from file."
  5338. msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro."
  5339. #~ msgctxt "machine_head_with_fans_polygon description"
  5340. #~ msgid "A 2D silhouette of the print head (fan caps included)."
  5341. #~ msgstr "Uma silhueta 2D da cabeça de impressão (incluindo tampas do(s) ventilador(s))."
  5342. # antes das interiores?
  5343. #~ msgctxt "outer_inset_first label"
  5344. #~ msgid "Outer Before Inner Walls"
  5345. #~ msgstr "Paredes Exteriores Primeiro"
  5346. #~ msgctxt "outer_inset_first description"
  5347. #~ 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."
  5348. #~ msgstr "Quando ativado, imprime as paredes do exterior para o interior. Isto pode ajudar a melhorar a precisão dimensional em X e Y quando utilizar um plástico com alta viscosidade, como o ABS; no entanto, pode diminuir a qualidade de impressão da superfície exterior, especialmente em saliências."
  5349. #~ msgctxt "travel_compensate_overlapping_walls_enabled label"
  5350. #~ msgid "Compensate Wall Overlaps"
  5351. #~ msgstr "Compensar Sobreposição Paredes"
  5352. #~ msgctxt "travel_compensate_overlapping_walls_enabled description"
  5353. #~ msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  5354. #~ msgstr "Compensar o fluxo em partes de uma parede a ser impressa, onde já exista uma parede."
  5355. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  5356. #~ msgid "Compensate Outer Wall Overlaps"
  5357. #~ msgstr "Compensar Paredes Exteriores"
  5358. #~ msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  5359. #~ msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  5360. #~ msgstr "Compensar o fluxo em partes de uma parede exterior a ser impressa, onde já exista uma parede."
  5361. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  5362. #~ msgid "Compensate Inner Wall Overlaps"
  5363. #~ msgstr "Compensar Paredes Interiores"
  5364. #~ msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  5365. #~ msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  5366. #~ msgstr "Compensar o fluxo em partes de uma parede interior a ser impressa, onde já exista uma parede."
  5367. #~ msgctxt "wall_min_flow label"
  5368. #~ msgid "Minimum Wall Flow"
  5369. #~ msgstr "Fluxo de parede mínimo"
  5370. #~ msgctxt "wall_min_flow description"
  5371. #~ msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  5372. #~ msgstr "Fluxo percentual mínimo permitido para uma linha de parede. A compensação de substituição de paredes reduz o fluxo de uma parede quando se situa junto a uma parede existente. As paredes cujo fluxo é inferior a este valor serão substituídas com um movimento de deslocação. Ao utilizar esta definição, deve ativar a compensação de sobreposição de paredes e imprimir a parede exterior antes das paredes interiores."
  5373. #~ msgctxt "wall_min_flow_retract label"
  5374. #~ msgid "Prefer Retract"
  5375. #~ msgstr "Preferir retração"
  5376. #~ msgctxt "wall_min_flow_retract description"
  5377. #~ msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  5378. #~ msgstr "Se ativada, é utilizada retração em vez de combing para movimentos de deslocação que substituem paredes cujo fluxo está abaixo do limiar mínimo de fluxo."
  5379. #~ msgctxt "fill_perimeter_gaps label"
  5380. #~ msgid "Fill Gaps Between Walls"
  5381. #~ msgstr "Preencher Folgas Entre Paredes"
  5382. # rever!
  5383. # onde nenhuma parede cabe
  5384. #~ msgctxt "fill_perimeter_gaps description"
  5385. #~ msgid "Fills the gaps between walls where no walls fit."
  5386. #~ msgstr "Preencher as folgas entre as paredes onde não é possível criar paredes."
  5387. #~ msgctxt "fill_perimeter_gaps option nowhere"
  5388. #~ msgid "Nowhere"
  5389. #~ msgstr "Em lado nenhum"
  5390. #~ msgctxt "fill_perimeter_gaps option everywhere"
  5391. #~ msgid "Everywhere"
  5392. #~ msgstr "Em todo o lado"
  5393. #~ msgctxt "filter_out_tiny_gaps label"
  5394. #~ msgid "Filter Out Tiny Gaps"
  5395. #~ msgstr "Descartar Folgas Mínimas"
  5396. #~ msgctxt "filter_out_tiny_gaps description"
  5397. #~ msgid "Filter out tiny gaps to reduce blobs on outside of model."
  5398. #~ msgstr "Descartar folgas muito pequenas, entre paredes, para reduzir \"blobs\" (borrões) no exterior da impressão."
  5399. #~ msgctxt "speed_equalize_flow_enabled label"
  5400. #~ msgid "Equalize Filament Flow"
  5401. #~ msgstr "Equilibrar fluxo de filamento"
  5402. #~ msgctxt "speed_equalize_flow_enabled description"
  5403. #~ 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."
  5404. #~ msgstr "Imprime linhas mais finas do que o normal de forma mais rápida, para que a quantidade de material extrudido por segundo permaneça o mesmo. As peças finas do modelo podem requerer linhas impressas com uma menor espessura de linha do que a especificada nas definições. Esta definição controla as mudanças de velocidade dessas linhas."
  5405. #~ msgctxt "speed_equalize_flow_max label"
  5406. #~ msgid "Maximum Speed for Flow Equalization"
  5407. #~ msgstr "Velocidade máxima para equilíbrio de fluxo"
  5408. #~ msgctxt "speed_equalize_flow_max description"
  5409. #~ msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  5410. #~ msgstr "A velocidade máxima de impressão ao ajustar a velocidade de impressão para equilibrar o fluxo."
  5411. #~ msgctxt "machine_start_gcode description"
  5412. #~ msgid "G-code commands to be executed at the very start - separated by \\n."
  5413. #~ msgstr "Comandos G-code a serem executados no início – separados por \\n."
  5414. #~ msgctxt "machine_end_gcode description"
  5415. #~ msgid "G-code commands to be executed at the very end - separated by \\n."
  5416. #~ msgstr "Comandos G-code a serem executados no fim – separados por \\n."
  5417. #~ msgctxt "machine_max_feedrate_e label"
  5418. #~ msgid "Maximum Feedrate"
  5419. #~ msgstr "Velocidade Máxima de Alimentação"
  5420. #~ msgctxt "infill_pattern description"
  5421. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the (internal) roofs of the object. As such, the infill percentage is only 'valid' one layer below whatever it needs to support of the model."
  5422. #~ msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões em grelha, triângulo, tri-hexágono, octeto, quarto cúbico, cruz e concêntricos são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas as partes superiores (internas) do objeto. Como tal, a percentagem de enchimento só é \"válida\" uma camada abaixo do que for necessário para suportar o modelo."
  5423. #~ msgctxt "lightning_infill_prune_angle description"
  5424. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the pruning of the outer extremities of trees. Measured in the angle given the thickness."
  5425. #~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao corte das extremidades exteriores das árvores. Medido como um ângulo conforme a espessura."
  5426. #~ msgctxt "lightning_infill_straightening_angle description"
  5427. #~ msgid "The difference a lightning infill layer can have with the one immediately above w.r.t the smoothing of trees. Measured in the angle given the thickness."
  5428. #~ msgstr "A diferença que uma camada de enchimento relâmpago pode ter com uma imediatamente acima no que diz respeito ao alisamento das árvores. Medido como um ângulo conforme a espessura."
  5429. #~ msgctxt "infill_pattern description"
  5430. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5431. #~ msgstr "O padrão do material de enchimento da impressão. A direção de troca de enchimento de linha e ziguezague em camadas alternadas, reduzindo os custos de material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos Gyroid, cúbico, quarto cúbico e octeto são alterados a cada camada para fornecer uma distribuição mais uniforme da resistência em cada direção."
  5432. #~ msgctxt "mold_width description"
  5433. #~ msgid "The minimal distance between the ouside of the mold and the outside of the model."
  5434. #~ msgstr "A distância mínima entre o exterior do molde e o exterior do modelo."
  5435. #~ msgctxt "machine_steps_per_mm_e description"
  5436. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5437. #~ msgstr "O numero de passos dos motores de passos (stepper motors) que irão resultar em um milímetro de extrusão."
  5438. #~ msgctxt "retraction_combing_max_distance description"
  5439. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5440. #~ msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações."
  5441. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5442. #~ msgid "Apply the extruder offset to the coordinate system."
  5443. #~ msgstr "Aplicar o desvio do extrusor ao sistema de coordenadas."
  5444. #~ msgctxt "shell label"
  5445. #~ msgid "Shell"
  5446. #~ msgstr "Invólucro"
  5447. #~ msgctxt "max_skin_angle_for_expansion description"
  5448. #~ 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."
  5449. #~ msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e um ângulo de 90° é vertical."
  5450. #~ msgctxt "speed_layer_0 description"
  5451. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5452. #~ msgstr "A velocidade da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção."
  5453. #~ msgctxt "infill_mesh_order description"
  5454. #~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5455. #~ msgstr "Determina a prioridade desta malha quando se consideram várias malhas de enchimento em sobreposição. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a classificação mais baixa. Uma malha de enchimento com uma ordem superior irá modificar o enchimento das malhas de enchimento com uma ordem inferior e as malhas normais."
  5456. #~ msgctxt "material_bed_temperature description"
  5457. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5458. #~ msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base não será alterada."
  5459. #~ msgctxt "material_bed_temperature_layer_0 description"
  5460. #~ msgid "The temperature used for the heated build plate at the first layer."
  5461. #~ msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada."
  5462. #~ msgctxt "material_shrinkage_percentage label"
  5463. #~ msgid "Shrinkage Ratio"
  5464. #~ msgstr "Proporção de Contração"
  5465. #~ msgctxt "material_shrinkage_percentage description"
  5466. #~ msgid "Shrinkage ratio in percentage."
  5467. #~ msgstr "Proporção de Contração em percentagem."
  5468. #~ msgctxt "infill_mesh_order description"
  5469. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5470. #~ msgstr "Determina a prioridade desta malha ao considerar volumes de sobreposição. As áreas com múltiplas malhas serão afetadas por malhas de classificação inferior. Uma malha de enchimento com uma ordem superior irá modificar o enchimento das malhas de enchimento com uma ordem inferior e as malhas normais."
  5471. #~ msgctxt "print_sequence description"
  5472. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
  5473. #~ msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y. "
  5474. #~ msgctxt "infill_mesh_order label"
  5475. #~ msgid "Infill Mesh Order"
  5476. #~ msgstr "Hierarquia Objectos Enchimento"
  5477. # rever!
  5478. # ordem superior?
  5479. # inferior?
  5480. # normais?
  5481. #~ msgctxt "infill_mesh_order description"
  5482. #~ 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."
  5483. #~ msgstr "Determina qual o Objecto de Enchimento que se encontra no interior do enchimento de outro Objecto de Enchimento. Um objecto de enchimento com um nível superior na hierarquia irá modificar o enchimento dos objectos de enchimento em níveis inferiores assim como o enchimento dos objectos normais."
  5484. #~ msgctxt "support_tree_enable label"
  5485. #~ msgid "Tree Support"
  5486. #~ msgstr "Suportes tipo Árvore"
  5487. #~ msgctxt "support_tree_enable description"
  5488. #~ 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."
  5489. #~ msgstr "Criar suportes tipo árvores com troncos e ramos que suportam a impressão. Com esta definição talvez se possa reduzir o material usado assim como o tempo de impressão, mas aumenta consideravelmente o tempo de seccionamento."
  5490. # rever!
  5491. # centro ou meio?
  5492. #~ msgctxt "slicing_tolerance description"
  5493. #~ 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."
  5494. #~ msgstr "Métodos para seccionar as camadas com as superfícies diagonais. As áreas de uma camada podem ser geradas onde o centro da camada intersecta a superfície (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo da espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram no interior dos perímetros da camada (Inclusivo). A opção Exclusivo retém o maior número de detalhes, a opção Inclusivo garante a melhor adaptação ao modelo e a opção Centro tem o menor tempo de processamento."
  5495. #~ msgctxt "spaghetti_infill_enabled label"
  5496. #~ msgid "Spaghetti Infill"
  5497. #~ msgstr "Enchimento em esparguete"
  5498. #~ msgctxt "spaghetti_infill_enabled description"
  5499. #~ 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."
  5500. #~ msgstr "Imprime o enchimento de tempos a tempos, para que o filamento encaracole desordenadamente dentro do objeto. Isto reduz o tempo de impressão, mas o comportamento é um pouco imprevisível."
  5501. #~ msgctxt "spaghetti_infill_stepped label"
  5502. #~ msgid "Spaghetti Infill Stepping"
  5503. #~ msgstr "Passos de enchimento em esparguete"
  5504. #~ msgctxt "spaghetti_infill_stepped description"
  5505. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5506. #~ msgstr "Imprime o enchimento em esparguete de forma faseada ou extrude todos os filamentos de enchimento no final da impressão."
  5507. #~ msgctxt "spaghetti_max_infill_angle label"
  5508. #~ msgid "Spaghetti Maximum Infill Angle"
  5509. #~ msgstr "Ângulo de enchimento máximo em esparguete"
  5510. #~ msgctxt "spaghetti_max_infill_angle description"
  5511. #~ 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."
  5512. #~ msgstr "O ângulo máximo em relação ao eixo Z do interior da impressão para áreas que devem ser preenchidas posteriormente com o enchimento em esparguete. A redução deste valor produz mais partes angulares no modelo que deverão ser preenchidas em cada camada."
  5513. #~ msgctxt "spaghetti_max_height label"
  5514. #~ msgid "Spaghetti Infill Maximum Height"
  5515. #~ msgstr "Altura máxima de enchimento em esparguete"
  5516. #~ msgctxt "spaghetti_max_height description"
  5517. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5518. #~ msgstr "A altura máxima do espaço interior que pode ser combinado e preenchido a partir da parte superior."
  5519. #~ msgctxt "spaghetti_inset label"
  5520. #~ msgid "Spaghetti Inset"
  5521. #~ msgstr "Inserção em esparguete"
  5522. #~ msgctxt "spaghetti_inset description"
  5523. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5524. #~ msgstr "O desvio das paredes a partir do qual o enchimento em esparguete será impresso."
  5525. #~ msgctxt "spaghetti_flow label"
  5526. #~ msgid "Spaghetti Flow"
  5527. #~ msgstr "Fluxo em esparguete"
  5528. #~ msgctxt "spaghetti_flow description"
  5529. #~ 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."
  5530. #~ msgstr "Ajusta a densidade do enchimento em esparguete. Observe que a Densidade de enchimento controla apenas o espaçamento entre linhas do padrão de enchimento e não a quantidade de extrusão para o enchimento em esparguete."
  5531. #~ msgctxt "spaghetti_infill_extra_volume label"
  5532. #~ msgid "Spaghetti Infill Extra Volume"
  5533. #~ msgstr "Volume adicional de enchimento em esparguete"
  5534. #~ msgctxt "spaghetti_infill_extra_volume description"
  5535. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5536. #~ msgstr "Um termo de correção para ajustar o volume total a ser extrudido sempre que for realizado o enchimento em esparguete."
  5537. #~ msgctxt "material_guid description"
  5538. #~ msgid "GUID of the material. This is set automatically. "
  5539. #~ msgstr "GUID do material. Este é definido automaticamente. "
  5540. #~ msgctxt "machine_filament_park_distance label"
  5541. #~ msgid "Filament Park Distance"
  5542. #~ msgstr "Distância de \"estacionamento\" do filamento"
  5543. #~ msgctxt "machine_filament_park_distance description"
  5544. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5545. #~ msgstr "A distância, a partir da ponta do nozzle, à qual o filamento deve ser \"estacionado\" quando um extrusor já não está em utilização."
  5546. #~ msgctxt "material_flush_purge_speed description"
  5547. #~ msgid "Material Station internal value"
  5548. #~ msgstr "Valor interno da Material Station"
  5549. #~ msgctxt "material_flush_purge_length description"
  5550. #~ msgid "Material Station internal value"
  5551. #~ msgstr "Valor interno da Material Station"
  5552. #~ msgctxt "material_end_of_filament_purge_speed label"
  5553. #~ msgid "End Of Filament Purge Speed"
  5554. #~ msgstr "Velocidade da purga do fim do filamento"
  5555. #~ msgctxt "material_end_of_filament_purge_speed description"
  5556. #~ msgid "Material Station internal value"
  5557. #~ msgstr "Valor interno da Material Station"
  5558. #~ msgctxt "material_end_of_filament_purge_length label"
  5559. #~ msgid "End Of Filament Purge Length"
  5560. #~ msgstr "Comprimento da purga do fim do filamento"
  5561. #~ msgctxt "material_end_of_filament_purge_length description"
  5562. #~ msgid "Material Station internal value"
  5563. #~ msgstr "Valor interno da Material Station"
  5564. #~ msgctxt "material_maximum_park_duration description"
  5565. #~ msgid "Material Station internal value"
  5566. #~ msgstr "Valor interno da Material Station"
  5567. #~ msgctxt "material_no_load_move_factor description"
  5568. #~ msgid "Material Station internal value"
  5569. #~ msgstr "Valor interno da Material Station"
  5570. #~ msgctxt "retraction_enable description"
  5571. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5572. #~ msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão. "
  5573. #~ msgctxt "support_xy_distance_overhang description"
  5574. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5575. #~ msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y. "
  5576. #~ msgctxt "meshfix description"
  5577. #~ msgid "category_fixes"
  5578. #~ msgstr "correção_categorias"
  5579. #~ msgctxt "blackmagic description"
  5580. #~ msgid "category_blackmagic"
  5581. #~ msgstr "categoria_blackmagic"
  5582. #~ msgctxt "experimental description"
  5583. #~ msgid "experimental!"
  5584. #~ msgstr "experimental!"
  5585. #~ msgctxt "machine_head_polygon label"
  5586. #~ msgid "Machine Head Polygon"
  5587. #~ msgstr "Polígono da cabeça da máquina"
  5588. #~ msgctxt "machine_head_polygon description"
  5589. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5590. #~ msgstr "Uma silhueta 2D da cabeça de impressão (excluindo tampas do(s) ventilador(s))."
  5591. #~ msgctxt "print_sequence description"
  5592. #~ 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."
  5593. #~ msgstr "Imprime todos os modelos uma camada de cada vez ou aguarda pela conclusão de um modelo antes de avançar para o seguinte. O modo Individualmente apenas é possível se todos os modelos estiverem separados de tal forma que toda a cabeça de impressão possa mover-se entre eles e todos os modelos estejam abaixo da distância entre o nozzle e os eixos X/Y."
  5594. #~ msgctxt "support_tree_wall_thickness label"
  5595. #~ msgid "Tree Support Wall Thickness"
  5596. #~ msgstr "Espessura Paredes Suportes Árvore"
  5597. #~ msgctxt "support_tree_wall_thickness description"
  5598. #~ 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."
  5599. #~ msgstr "A espessura das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
  5600. #~ msgctxt "support_tree_wall_count label"
  5601. #~ msgid "Tree Support Wall Line Count"
  5602. #~ msgstr "Número Paredes Suportes Árvore"
  5603. #~ msgctxt "support_tree_wall_count description"
  5604. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5605. #~ msgstr "O número das paredes dos ramos da árvore de suporte. Paredes mais espessas demoram mais tempo a imprimir mas são mais resistentes."
  5606. #~ msgctxt "clean_between_layers description"
  5607. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5608. #~ msgstr "Incluir ou não o G-code de limpeza do nozzle entre as camadas. Ativar esta definição poderá influenciar o comportamento de retração na mudança de camada. Utilize as definições de Retração de limpeza para controlar a retração nas camadas onde o script de limpeza estará em funcionamento."
  5609. #~ msgctxt "max_extrusion_before_wipe description"
  5610. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5611. #~ msgstr "Material máximo que pode ser extrudido antes de ser iniciada outra limpeza do nozzle."
  5612. #~ msgctxt "wipe_retraction_prime_speed label"
  5613. #~ msgid "Retraction Prime Speed"
  5614. #~ msgstr "Velocidade de preparação na retração"
  5615. #~ msgctxt "wipe_hop_enable label"
  5616. #~ msgid "Wipe Z Hop When Retracted"
  5617. #~ msgstr "Salto Z de limpeza ao retrair"
  5618. #~ msgctxt "wipe_hop_enable description"
  5619. #~ 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."
  5620. #~ msgstr "Sempre que for efetuada uma retração, a base de construção é baixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção."
  5621. #~ msgctxt "minimum_interface_area description"
  5622. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5623. #~ msgstr "Tamanho mínimo da área para polígonos da interface de suporte. Os polígonos com uma área inferior a este valor não serão gerados."
  5624. #~ msgctxt "minimum_roof_area description"
  5625. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5626. #~ msgstr "Tamanho mínimo da área para os tetos de suporte. Os polígonos com uma área inferior a este valor não serão gerados."
  5627. #~ msgctxt "minimum_bottom_area description"
  5628. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5629. #~ msgstr "Tamanho mínimo da área para os pisos de suporte. Os polígonos com uma área inferior a este valor não serão gerados."
  5630. #~ msgctxt "skin_alternate_rotation label"
  5631. #~ msgid "Alternate Skin Rotation"
  5632. #~ msgstr "Alternar Rotação Revestimento"
  5633. #~ msgctxt "skin_alternate_rotation description"
  5634. #~ 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."
  5635. #~ msgstr "Alterna a direção na qual as camadas superiores/inferiores são impressas. Geralmente, estas são impressas apenas na diagonal. Esta definição adiciona também as direções só em X e só em Y."
  5636. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5637. #~ msgid "Flow rate compensation max extrusion offset"
  5638. #~ msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo"
  5639. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5640. #~ msgid "The maximum distance in mm to compensate."
  5641. #~ msgstr "A distância máxima em milímetros a ser compensada."
  5642. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5643. #~ msgid "Flow rate compensation factor"
  5644. #~ msgstr "Fator de compensação da taxa de fluxo"
  5645. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5646. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5647. #~ msgstr "O fator de multiplicação da taxa de fluxo -> translação de distância."
  5648. #~ msgctxt "adaptive_layer_height_threshold label"
  5649. #~ msgid "Adaptive Layers Threshold"
  5650. #~ msgstr "Limiar das camadas adaptáveis"
  5651. #~ msgctxt "adaptive_layer_height_threshold description"
  5652. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5653. #~ msgstr "O limiar em que se deve usar, ou não, uma menor espessura de camada. Este número é comparado com a tangente da inclinação mais acentuada numa camada."
  5654. #~ msgctxt "wall_overhang_angle description"
  5655. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  5656. #~ msgstr "As paredes que se salientam mais do que este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede será tratada como saliente."
  5657. #~ msgctxt "small_feature_speed_factor description"
  5658. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5659. #~ msgstr "Os elementos pequenos serão impressos a esta percentagem da velocidade de impressão normal. A impressão mais lenta poderá contribuir para uma maior aderência e precisão."
  5660. #~ msgctxt "small_feature_speed_factor_0 label"
  5661. #~ msgid "First Layer Speed"
  5662. #~ msgstr "Velocidade da primeira camada"
  5663. #~ msgctxt "small_feature_speed_factor_0 description"
  5664. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5665. #~ msgstr "Os elementos pequenos da primeira camada serão impressos a esta percentagem da velocidade de impressão normal. A impressão mais lenta poderá contribuir para uma maior aderência e precisão."
  5666. # O objetivo é derreter mais o plástico das superfícies superiores, criando uma superfície mais uniforme.
  5667. #~ msgctxt "ironing_enabled description"
  5668. #~ 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."
  5669. #~ msgstr "Passar com o nozzle uma vez mais, sobre as superfícies superiores, mas sem extrudir material. O objetivo é criar superfícies mais suaves/lisas, ao derreter (\"engomar\") o plástico das superfícies superiores."
  5670. #~ msgctxt "start_layers_at_same_position label"
  5671. #~ msgid "Start Layers with the Same Part"
  5672. #~ msgstr "Começar Camadas Mesmo Objecto"
  5673. #~ msgctxt "start_layers_at_same_position description"
  5674. #~ 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."
  5675. #~ msgstr "Em cada camada, começar a imprimir o objeto perto do mesmo ponto, para não se começar a imprimir uma nova camada com a peça com a qual se terminou a camada anterior. O que resulta em melhores impressões de saliências e de pequenos objectos, mas aumenta o tempo de impressão."
  5676. #~ msgctxt "support_infill_angles description"
  5677. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5678. #~ msgstr "Orientação do padrão de enchimento para suportes. O padrão de enchimento do suporte gira no plano horizontal."
  5679. #~ msgctxt "meshfix_maximum_deviation description"
  5680. #~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller."
  5681. #~ msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será inferior."
  5682. #~ msgctxt "machine_gcode_flavor label"
  5683. #~ msgid "G-code Flavour"
  5684. #~ msgstr "Variante de G-code"
  5685. # rever!
  5686. # torna mais provável que esta surja num canto
  5687. # aconteça? surja? apareça?
  5688. #~ msgctxt "z_seam_corner description"
  5689. #~ 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."
  5690. #~ msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior."
  5691. # rever!
  5692. # gaps? Espaços? intervalos? folgas?
  5693. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5694. #~ msgid "Ignore Small Z Gaps"
  5695. #~ msgstr "Ignorar Pequenos Espaços Z"
  5696. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5697. #~ 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."
  5698. #~ msgstr "Quando o modelo tem pequenos espaços verticais, cerca de mais 5% de tempo de cálculo pode ser despendido na criação das superfícies de revestimentos superior e inferior nestes pequenos espaços. Nesse caso desative esta definição."
  5699. #~ msgctxt "build_volume_temperature description"
  5700. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5701. #~ msgstr "A temperatura utilizada para o volume de construção. Se for 0, a temperatura do volume de construção não será ajustada."
  5702. #~ msgctxt "limit_support_retractions description"
  5703. #~ 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."
  5704. #~ msgstr "Eliminar a retração quando o movimento de suporte para suporte é em linha recta. Ativar esta definição reduz o tempo de impressão, mas pode levar a que aja um excessivo numero de fios nas estruturas de suporte."
  5705. #~ msgctxt "max_feedrate_z_override label"
  5706. #~ msgid "Maximum Z Speed"
  5707. #~ msgstr "Velocidade Z máxima"
  5708. # a que a base de construção é movida. Defini-la como zero
  5709. #~ msgctxt "max_feedrate_z_override description"
  5710. #~ 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."
  5711. #~ msgstr "A velocidade máxima do movimento da base de construção. Definir esta como zero faz com que a impressão utilize as predefinições de firmware para a velocidade Z máxima."
  5712. #~ msgctxt "support_join_distance description"
  5713. #~ 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."
  5714. #~ msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só."
  5715. #~ msgctxt "support_minimal_diameter label"
  5716. #~ msgid "Minimum Diameter"
  5717. #~ msgstr "Diâmetro mínimo"
  5718. #~ msgctxt "support_minimal_diameter description"
  5719. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5720. #~ msgstr "O diâmetro mínimo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada."
  5721. #~ msgctxt "prime_tower_circular label"
  5722. #~ msgid "Circular Prime Tower"
  5723. #~ msgstr "Torre de preparação circular"
  5724. #~ msgctxt "prime_tower_circular description"
  5725. #~ msgid "Make the prime tower as a circular shape."
  5726. #~ msgstr "Faça a torre de preparação como uma forma circular."
  5727. #~ msgctxt "prime_tower_flow description"
  5728. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5729. #~ msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor."
  5730. #~ msgctxt "smooth_spiralized_contours description"
  5731. #~ 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."
  5732. #~ msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente imperceptível na impressão, mas continuará a ser visível na visualização por camadas). Ter em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície."
  5733. #~ msgctxt "support_conical_enabled description"
  5734. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5735. #~ msgstr "Funcionalidade experimental: torna as áreas de suporte mais reduzidas na parte inferior do que na saliência."
  5736. #~ msgctxt "extruders_enabled_count label"
  5737. #~ msgid "Number of Extruders that are enabled"
  5738. #~ msgstr "O numero de Extrusores que estão activos"
  5739. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5740. #~ msgid "Outer nozzle diameter"
  5741. #~ msgstr "Diâmetro externo do nozzle"
  5742. #~ msgctxt "machine_nozzle_head_distance label"
  5743. #~ msgid "Nozzle length"
  5744. #~ msgstr "Comprimento do nozzle"
  5745. #~ msgctxt "machine_nozzle_expansion_angle label"
  5746. #~ msgid "Nozzle angle"
  5747. #~ msgstr "Ângulo do nozzle"
  5748. #~ msgctxt "machine_heat_zone_length label"
  5749. #~ msgid "Heat zone length"
  5750. #~ msgstr "Comprimento da zona de aquecimento"
  5751. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5752. #~ msgid "Heat up speed"
  5753. #~ msgstr "Velocidade de aquecimento"
  5754. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5755. #~ msgid "Cool down speed"
  5756. #~ msgstr "Velocidade de arrefecimento"
  5757. #~ msgctxt "machine_gcode_flavor label"
  5758. #~ msgid "G-code flavour"
  5759. #~ msgstr "Variante de G-code"
  5760. #~ msgctxt "machine_disallowed_areas label"
  5761. #~ msgid "Disallowed areas"
  5762. #~ msgstr "Áreas não permitidas"
  5763. #~ msgctxt "machine_head_polygon label"
  5764. #~ msgid "Machine head polygon"
  5765. #~ msgstr "Polígono da cabeça da máquina"
  5766. #~ msgctxt "machine_head_with_fans_polygon label"
  5767. #~ msgid "Machine head & Fan polygon"
  5768. #~ msgstr "Polígono da cabeça e ventilador da máquina"
  5769. #~ msgctxt "gantry_height label"
  5770. #~ msgid "Gantry height"
  5771. #~ msgstr "Altura do pórtico"
  5772. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5773. #~ msgid "Offset With Extruder"
  5774. #~ msgstr "Desviar com Extrusor"
  5775. #~ msgctxt "adaptive_layer_height_enabled label"
  5776. #~ msgid "Use adaptive layers"
  5777. #~ msgstr "Camadas Adaptáveis"
  5778. #~ msgctxt "adaptive_layer_height_variation label"
  5779. #~ msgid "Adaptive layers maximum variation"
  5780. #~ msgstr "Variação Máxima Camadas Adaptáveis"
  5781. #~ msgctxt "adaptive_layer_height_variation_step label"
  5782. #~ msgid "Adaptive layers variation step size"
  5783. #~ msgstr "Variação Degraus Camadas Adaptáveis"
  5784. #~ msgctxt "adaptive_layer_height_threshold label"
  5785. #~ msgid "Adaptive layers threshold"
  5786. #~ msgstr "Limiar Camadas Adaptáveis"
  5787. #~ msgctxt "skin_overlap description"
  5788. #~ 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."
  5789. #~ msgstr "A sobreposição entre o revestimento e as paredes, como percentagem do diâmetro da linha do revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Esta é uma percentagem da média dos diâmetros das linhas de revestimento e da parede mais interior."
  5790. #~ msgctxt "skin_overlap_mm description"
  5791. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5792. #~ msgstr "A distância em milímetros da sobreposição entre o revestimento e as paredes. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento."
  5793. #~ msgctxt "switch_extruder_retraction_amount description"
  5794. #~ 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."
  5795. #~ msgstr "A quantidade de retração: defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento."
  5796. #~ msgctxt "retraction_combing description"
  5797. #~ 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 and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5798. #~ msgstr "Combing mantém o bocal em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o bocal irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores e também apenas efetuar o combing no enchimento. Observe que a opção \"No enchimento\" tem o mesmo comportamento que a opção \"Não no Revestimento\" em versões anteriores do Cura."
  5799. #~ msgctxt "connect_skin_polygons description"
  5800. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5801. #~ msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior."
  5802. # of the print
  5803. # da impressão? da peça?
  5804. # A direção do
  5805. # No enchimento com Linha e Ziguezague a direção é invertida em camadas alternadas
  5806. # invertido? rodado?
  5807. # padrões - ?geometricos??
  5808. # alterados? mudam? movidos? delocados?
  5809. # fornecer uma? permitir uma?
  5810. #~ msgctxt "infill_pattern description"
  5811. #~ 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."
  5812. #~ msgstr "O padrão geométrico do enchimento da impressão. A direção do enchimento com Linhas e Ziguezague é invertida em camadas alternadas, reduzindo os custos em material. Os padrões em Grelha, Triângulo, Tri-Hexágono, Cúbico, Octeto, Quarto Cúbico, Cruz e Concêntrico são totalmente impressos em cada camada. Os enchimentos Cúbico, Quarto Cúbico e Octeto são deslocados em cada camada para permitir uma distribuição mais uniforme da resistência em cada direção."
  5813. #~ msgctxt "infill_pattern option concentric_3d"
  5814. #~ msgid "Concentric 3D"
  5815. #~ msgstr "Concêntrico 3D"
  5816. #~ msgctxt "retraction_combing description"
  5817. #~ 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."
  5818. #~ msgstr "\"Combing\" mantém o nozzle dentro das áreas já impressas durante o movimento. Isto resulta em movimentos ligeiramente mais longos, mas reduz a necessidade de retrações. Se o \"Combing\" estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha recta para o próximo ponto. Também é possível evitar o \"Combing\" em áreas de revestimento superiores/inferiores efetuando o \"Combing\" apenas dentro do enchimento."
  5819. #~ msgctxt "support_pattern option concentric_3d"
  5820. #~ msgid "Concentric 3D"
  5821. #~ msgstr "Concêntrico 3D"
  5822. #~ msgctxt "support_interface_pattern option concentric_3d"
  5823. #~ msgid "Concentric 3D"
  5824. #~ msgstr "Concêntrico 3D"
  5825. #~ msgctxt "support_roof_pattern option concentric_3d"
  5826. #~ msgid "Concentric 3D"
  5827. #~ msgstr "Concêntrico 3D"
  5828. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5829. #~ msgid "Concentric 3D"
  5830. #~ msgstr "Concêntrico 3D"
  5831. #~ msgctxt "raft_base_line_spacing label"
  5832. #~ msgid "Raft Line Spacing"
  5833. #~ msgstr "Espaçamento Linhas Base Raft"
  5834. #~ msgctxt "prime_tower_wall_thickness label"
  5835. #~ msgid "Prime Tower Thickness"
  5836. #~ msgstr "Espessura da torre de preparação"
  5837. #~ msgctxt "prime_tower_wall_thickness description"
  5838. #~ 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."
  5839. #~ msgstr "A espessura da torre de preparação oca. Uma espessura superior a metade do Volume mínimo da torre de preparação irá resultar numa torre de preparação densa."
  5840. # rever!
  5841. # mudança?
  5842. # troca?
  5843. # substituição?
  5844. #~ msgctxt "dual_pre_wipe label"
  5845. #~ msgid "Wipe Nozzle After Switch"
  5846. #~ msgstr "Limpar nozzle após mudança"
  5847. # rever!
  5848. # vazou? vazado?
  5849. # escorreu? escorrido?
  5850. #~ msgctxt "dual_pre_wipe description"
  5851. #~ 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."
  5852. #~ msgstr "Após a mudança de extrusor, limpar o material que escorreu do nozzle na primeira \"coisa\" impressa. Isto executa um movimento lento de limpeza num local onde o material que tenha escorrido seja menos prejudicial para a qualidade da superfície da sua impressão."
  5853. #~ msgctxt "prime_tower_purge_volume label"
  5854. #~ msgid "Prime Tower Purge Volume"
  5855. #~ msgstr "Volume Purga Torre Preparação"
  5856. #~ msgctxt "prime_tower_purge_volume description"
  5857. #~ 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."
  5858. #~ msgstr "Quantidade de filamento a ser purgado ao limpar na torre de preparação. A purga é útil para compensar o filamento perdido por escorrimento durante a inatividade do nozzle."
  5859. #~ msgctxt "bridge_wall_max_overhang label"
  5860. #~ msgid "Bridge Wall Max Overhang"
  5861. #~ msgstr "Saliências máx. da parede de Bridge"
  5862. #~ msgctxt "bridge_wall_max_overhang description"
  5863. #~ 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."
  5864. #~ msgstr "A largura máxima permitida para a região de ar sob uma linha de parede, antes de a parede ser impressa utilizando as definições de Bridge. Expressa como uma percentagem da largura da linha de parede. Quando a folga de ar é mais larga do que este valor, a linha de parede é impressa utilizando as definições de Bridge. Caso contrário, a linha de parede é impressa utilizando as definições normais. Quanto mais baixo for o valor, mais provável é que as linhas de parede das saliências sejam impressas utilizando definições de Bridge."
  5865. #~ msgctxt "optimize_wall_printing_order description"
  5866. #~ 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."
  5867. #~ msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem otimização."
  5868. #~ msgctxt "retraction_combing option noskin"
  5869. #~ msgid "No Skin"
  5870. #~ msgstr "Sem Revestimento"
  5871. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5872. #~ msgid "Alternate Cross 3D Pockets"
  5873. #~ msgstr "Alternar bolsas de cruz 3D"
  5874. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5875. #~ 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."
  5876. #~ msgstr "Aplica bolsas em apenas metade dos cruzamentos de quatro vias no padrão de cruz 3D e alterna a localização das bolsas entre alturas onde o padrão está em contacto consigo próprio."
  5877. #~ msgctxt "infill_hollow label"
  5878. #~ msgid "Hollow Out Objects"
  5879. #~ msgstr "Esvaziar Objetos"
  5880. #~ msgctxt "infill_hollow description"
  5881. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5882. #~ msgstr "Remover todo o enchimento e tornar o interior do objeto elegível para ter suportes."
  5883. #~ msgctxt "adaptive_layer_height_variation description"
  5884. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5885. #~ msgstr "A diferença máxima de espessura (em mm) permitida em relação ao valor base definido em Espessura das Camadas."
  5886. #~ msgctxt "center_object label"
  5887. #~ msgid "Center object"
  5888. #~ msgstr "Centrar objeto"
  5889. #~ msgctxt "mesh_position_x label"
  5890. #~ msgid "Mesh position x"
  5891. #~ msgstr "Posição X do objeto"
  5892. #~ msgctxt "mesh_position_y label"
  5893. #~ msgid "Mesh position y"
  5894. #~ msgstr "Posição Y do objeto"
  5895. #~ msgctxt "mesh_position_z label"
  5896. #~ msgid "Mesh position z"
  5897. #~ msgstr "Posição Z do objeto"