fdmprinter.def.json.po 327 KB

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