fdmprinter.def.json.po 321 KB

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