fdmprinter.def.json.po 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700
  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-09-12 17:04+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. msgctxt "ironing_inset description"
  15. 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."
  16. 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."
  17. msgctxt "material_no_load_move_factor description"
  18. 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."
  19. 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."
  20. msgctxt "roofing_angles description"
  21. 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)."
  22. 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)."
  23. msgctxt "skin_angles description"
  24. 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)."
  25. 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)."
  26. msgctxt "support_infill_angles description"
  27. 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."
  28. 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."
  29. msgctxt "support_bottom_angles description"
  30. 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)."
  31. 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)."
  32. msgctxt "support_interface_angles description"
  33. 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)."
  34. 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)."
  35. msgctxt "support_roof_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 "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)."
  38. msgctxt "infill_angles description"
  39. 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)."
  40. 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)."
  41. msgctxt "nozzle_disallowed_areas description"
  42. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  43. msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar."
  44. msgctxt "machine_disallowed_areas description"
  45. msgid "A list of polygons with areas the print head is not allowed to enter."
  46. msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar."
  47. msgctxt "brim_inside_margin description"
  48. 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."
  49. 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."
  50. msgctxt "support_tree_branch_reach_limit description"
  51. 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) "
  52. msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)"
  53. msgctxt "extruder_prime_pos_abs label"
  54. msgid "Absolute Extruder Prime Position"
  55. msgstr "Posição Absoluta Preparação Extrusor"
  56. msgctxt "adaptive_layer_height_variation label"
  57. msgid "Adaptive Layers Maximum Variation"
  58. msgstr "Variação máxima das camadas adaptáveis"
  59. msgctxt "adaptive_layer_height_threshold label"
  60. msgid "Adaptive Layers Topography Size"
  61. msgstr "Dimensão da topografia das camadas adaptáveis"
  62. msgctxt "adaptive_layer_height_variation_step label"
  63. msgid "Adaptive Layers Variation Step Size"
  64. msgstr "Tamanho da fase de variação das camadas adaptáveis"
  65. msgctxt "adaptive_layer_height_enabled description"
  66. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  67. msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo."
  68. msgctxt "infill_wall_line_count description"
  69. msgid ""
  70. "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"
  71. "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."
  72. msgstr ""
  73. "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"
  74. "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."
  75. msgctxt "platform_adhesion description"
  76. msgid "Adhesion"
  77. msgstr "Aderência à Base de Construção"
  78. msgctxt "material_adhesion_tendency label"
  79. msgid "Adhesion Tendency"
  80. msgstr "Tendência de aderência"
  81. msgctxt "skin_overlap description"
  82. 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."
  83. 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."
  84. msgctxt "skin_overlap_mm description"
  85. 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."
  86. 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."
  87. msgctxt "infill_sparse_density description"
  88. msgid "Adjusts the density of infill of the print."
  89. msgstr "Ajusta a densidade do enchimento da impressão."
  90. msgctxt "support_interface_density description"
  91. 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."
  92. 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."
  93. msgctxt "support_tree_top_rate description"
  94. 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."
  95. msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo."
  96. msgctxt "support_infill_rate description"
  97. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  98. 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."
  99. msgctxt "material_diameter description"
  100. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  101. msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado."
  102. msgctxt "support_type description"
  103. 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."
  104. 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."
  105. msgctxt "prime_tower_wipe_enabled description"
  106. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  107. 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."
  108. msgctxt "retraction_hop_after_extruder_switch description"
  109. 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."
  110. 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."
  111. msgctxt "retraction_combing option all"
  112. msgid "All"
  113. msgstr "Tudo"
  114. msgctxt "print_sequence option all_at_once"
  115. msgid "All at Once"
  116. msgstr "Simultaneamente"
  117. msgctxt "resolution description"
  118. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  119. 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)."
  120. msgctxt "alternate_extra_perimeter label"
  121. msgid "Alternate Extra Wall"
  122. msgstr "Alternar Parede Adicional"
  123. msgctxt "alternate_carve_order label"
  124. msgid "Alternate Mesh Removal"
  125. msgstr "Alternar remoção de malha"
  126. msgctxt "material_alternate_walls label"
  127. msgid "Alternate Wall Directions"
  128. msgstr "Direções de parede alternadas"
  129. msgctxt "material_alternate_walls description"
  130. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  131. 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."
  132. msgctxt "machine_buildplate_type option aluminum"
  133. msgid "Aluminum"
  134. msgstr "Alumínio"
  135. msgctxt "machine_always_write_active_tool label"
  136. msgid "Always Write Active Tool"
  137. msgstr "Ferramenta ativa escrever sempre"
  138. msgctxt "travel_retract_before_outer_wall description"
  139. msgid "Always retract when moving to start an outer wall."
  140. msgstr "Retrair sempre quando se vai começar uma parede exterior."
  141. msgctxt "xy_offset description"
  142. 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."
  143. 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."
  144. msgctxt "xy_offset_layer_0 description"
  145. 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\"."
  146. 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\"."
  147. msgctxt "support_offset description"
  148. 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."
  149. 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."
  150. msgctxt "support_bottom_offset description"
  151. msgid "Amount of offset applied to the floors of the support."
  152. msgstr "Quantidade do desvio aplicado aos pisos de suporte."
  153. msgctxt "support_roof_offset description"
  154. msgid "Amount of offset applied to the roofs of the support."
  155. msgstr "Quantidade do desvio aplicado aos tetos de suporte."
  156. msgctxt "support_interface_offset description"
  157. msgid "Amount of offset applied to the support interface polygons."
  158. msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte."
  159. msgctxt "wipe_retraction_amount description"
  160. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  161. msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza."
  162. msgctxt "sub_div_rad_add description"
  163. 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."
  164. 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."
  165. msgctxt "anti_overhang_mesh label"
  166. msgid "Anti Overhang Mesh"
  167. msgstr "Malha antissaliências"
  168. msgctxt "material_anti_ooze_retracted_position label"
  169. msgid "Anti-ooze Retracted Position"
  170. msgstr "Posição Retraída Antiescorrimento"
  171. msgctxt "material_anti_ooze_retraction_speed label"
  172. msgid "Anti-ooze Retraction Speed"
  173. msgstr "Velocidade de Retração Antiescorrimento"
  174. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  175. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  176. msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras."
  177. msgctxt "interlocking_enable description"
  178. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  179. 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."
  180. msgctxt "travel_avoid_other_parts label"
  181. msgid "Avoid Printed Parts When Traveling"
  182. msgstr "Evitar Áreas Impressas Durante Movimento"
  183. msgctxt "travel_avoid_supports label"
  184. msgid "Avoid Supports When Traveling"
  185. msgstr "Evitar Suportes na Deslocação"
  186. msgctxt "z_seam_position option back"
  187. msgid "Back"
  188. msgstr "Anterior"
  189. msgctxt "z_seam_position option backleft"
  190. msgid "Back Left"
  191. msgstr "Posterior esquerda"
  192. msgctxt "z_seam_position option backright"
  193. msgid "Back Right"
  194. msgstr "Posterior direita"
  195. msgctxt "machine_gcode_flavor option BFB"
  196. msgid "Bits from Bytes"
  197. msgstr "Bits from Bytes"
  198. msgctxt "magic_mesh_surface_mode option both"
  199. msgid "Both"
  200. msgstr "Ambos"
  201. msgctxt "support_interface_priority option nothing"
  202. msgid "Both overlap"
  203. msgstr "Ambas se sobrepõem"
  204. msgctxt "bottom_layers label"
  205. msgid "Bottom Layers"
  206. msgstr "Camadas Inferiores"
  207. msgctxt "top_bottom_pattern_0 label"
  208. msgid "Bottom Pattern Initial Layer"
  209. msgstr "Padrão da Base na Camada Inicial"
  210. msgctxt "bottom_skin_expand_distance label"
  211. msgid "Bottom Skin Expand Distance"
  212. msgstr "Expansão Revestimento Inferior"
  213. msgctxt "bottom_skin_preshrink label"
  214. msgid "Bottom Skin Removal Width"
  215. msgstr "Largura Remoção Revestimento Inferior"
  216. msgctxt "bottom_thickness label"
  217. msgid "Bottom Thickness"
  218. msgstr "Espessura Inferior"
  219. msgctxt "support_tree_top_rate label"
  220. msgid "Branch Density"
  221. msgstr "Densidade dos Ramos"
  222. msgctxt "support_tree_branch_diameter label"
  223. msgid "Branch Diameter"
  224. msgstr "Diâmetro do Ramo"
  225. msgctxt "support_tree_branch_diameter_angle label"
  226. msgid "Branch Diameter Angle"
  227. msgstr "Ângulo dos Ramos"
  228. msgctxt "material_break_preparation_retracted_position label"
  229. msgid "Break Preparation Retracted Position"
  230. msgstr "Posição Retraída de Preparação da Separação"
  231. msgctxt "material_break_preparation_speed label"
  232. msgid "Break Preparation Retraction Speed"
  233. msgstr "Velocidade de Retração de Preparação da Separação"
  234. msgctxt "material_break_preparation_temperature label"
  235. msgid "Break Preparation Temperature"
  236. msgstr "Temperatura de preparação da separação"
  237. msgctxt "material_break_retracted_position label"
  238. msgid "Break Retracted Position"
  239. msgstr "Posição Retraída de Separação"
  240. msgctxt "material_break_speed label"
  241. msgid "Break Retraction Speed"
  242. msgstr "Velocidade de Retração de Separação"
  243. msgctxt "material_break_temperature label"
  244. msgid "Break Temperature"
  245. msgstr "Temperatura de Separação"
  246. msgctxt "support_skip_some_zags label"
  247. msgid "Break Up Support In Chunks"
  248. msgstr "Separar Suportes em Blocos"
  249. msgctxt "bridge_fan_speed label"
  250. msgid "Bridge Fan Speed"
  251. msgstr "Velocidade da ventoinha de Bridge"
  252. msgctxt "bridge_enable_more_layers label"
  253. msgid "Bridge Has Multiple Layers"
  254. msgstr "Bridge com múltiplas camadas"
  255. msgctxt "bridge_skin_density_2 label"
  256. msgid "Bridge Second Skin Density"
  257. msgstr "Densidade do segundo revestimento de Bridge"
  258. msgctxt "bridge_fan_speed_2 label"
  259. msgid "Bridge Second Skin Fan Speed"
  260. msgstr "Velocidade da ventoinha do segundo revestimento de Bridge"
  261. msgctxt "bridge_skin_material_flow_2 label"
  262. msgid "Bridge Second Skin Flow"
  263. msgstr "Fluxo do segundo revestimento de Bridge"
  264. msgctxt "bridge_skin_speed_2 label"
  265. msgid "Bridge Second Skin Speed"
  266. msgstr "Velocidade do segundo revestimento de Bridge"
  267. msgctxt "bridge_skin_density label"
  268. msgid "Bridge Skin Density"
  269. msgstr "Densidade do revestimento de Bridge"
  270. msgctxt "bridge_skin_material_flow label"
  271. msgid "Bridge Skin Flow"
  272. msgstr "Fluxo do revestimento de Bridge"
  273. msgctxt "bridge_skin_speed label"
  274. msgid "Bridge Skin Speed"
  275. msgstr "Velocidade do revestimento de Bridge"
  276. msgctxt "bridge_skin_support_threshold label"
  277. msgid "Bridge Skin Support Threshold"
  278. msgstr "Limiar do suporte do revestimento de Bridge"
  279. msgctxt "bridge_sparse_infill_max_density label"
  280. msgid "Bridge Sparse Infill Max Density"
  281. msgstr "Densidade Máx. Enchimento Disperso de Bridge"
  282. msgctxt "bridge_skin_density_3 label"
  283. msgid "Bridge Third Skin Density"
  284. msgstr "Densidade do terceiro revestimento de Bridge"
  285. msgctxt "bridge_fan_speed_3 label"
  286. msgid "Bridge Third Skin Fan Speed"
  287. msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge"
  288. msgctxt "bridge_skin_material_flow_3 label"
  289. msgid "Bridge Third Skin Flow"
  290. msgstr "Fluxo do terceiro revestimento de Bridge"
  291. msgctxt "bridge_skin_speed_3 label"
  292. msgid "Bridge Third Skin Speed"
  293. msgstr "Velocidade do terceiro revestimento de Bridge"
  294. msgctxt "bridge_wall_coast label"
  295. msgid "Bridge Wall Coasting"
  296. msgstr "Desaceleração da parede de Bridge"
  297. msgctxt "bridge_wall_material_flow label"
  298. msgid "Bridge Wall Flow"
  299. msgstr "Fluxo da parede de Bridge"
  300. msgctxt "bridge_wall_speed label"
  301. msgid "Bridge Wall Speed"
  302. msgstr "Velocidade da parede de Bridge"
  303. msgctxt "adhesion_type option brim"
  304. msgid "Brim"
  305. msgstr "Aba"
  306. msgctxt "brim_gap label"
  307. msgid "Brim Distance"
  308. msgstr "Distância da Aba"
  309. msgctxt "brim_inside_margin label"
  310. msgid "Brim Inside Avoid Margin"
  311. msgstr "Borda interna evitar margem"
  312. msgctxt "brim_line_count label"
  313. msgid "Brim Line Count"
  314. msgstr "Número Linhas da Aba"
  315. msgctxt "brim_outside_only label"
  316. msgid "Brim Only on Outside"
  317. msgstr "Aba Apenas no Exterior"
  318. msgctxt "brim_replaces_support label"
  319. msgid "Brim Replaces Support"
  320. msgstr "A aba substitui o suporte"
  321. msgctxt "brim_width label"
  322. msgid "Brim Width"
  323. msgstr "Largura da Aba"
  324. msgctxt "platform_adhesion label"
  325. msgid "Build Plate Adhesion"
  326. msgstr "Aderência"
  327. msgctxt "adhesion_extruder_nr label"
  328. msgid "Build Plate Adhesion Extruder"
  329. msgstr "Extrusor para Aderência"
  330. msgctxt "adhesion_type label"
  331. msgid "Build Plate Adhesion Type"
  332. msgstr "Modos de Aderência"
  333. msgctxt "machine_buildplate_type label"
  334. msgid "Build Plate Material"
  335. msgstr "Material da Base de Construção"
  336. msgctxt "machine_shape label"
  337. msgid "Build Plate Shape"
  338. msgstr "Forma da Base de Construção"
  339. msgctxt "material_bed_temperature label"
  340. msgid "Build Plate Temperature"
  341. msgstr "Temperatura Base de Construção"
  342. msgctxt "material_bed_temperature_layer_0 label"
  343. msgid "Build Plate Temperature Initial Layer"
  344. msgstr "Temperatura da base de construção da camada inicial"
  345. msgctxt "build_volume_temperature label"
  346. msgid "Build Volume Temperature"
  347. msgstr "Temperatura do volume de construção"
  348. msgctxt "center_object label"
  349. msgid "Center Object"
  350. msgstr "Centrar Objeto"
  351. msgctxt "conical_overhang_enabled description"
  352. 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."
  353. 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."
  354. msgctxt "support_structure description"
  355. 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."
  356. 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."
  357. msgctxt "coasting_speed label"
  358. msgid "Coasting Speed"
  359. msgstr "Velocidade de desaceleração"
  360. msgctxt "coasting_volume label"
  361. msgid "Coasting Volume"
  362. msgstr "Volume de desaceleração"
  363. msgctxt "coasting_enable description"
  364. 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."
  365. 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."
  366. msgctxt "retraction_combing label"
  367. msgid "Combing Mode"
  368. msgstr "Modo de Combing"
  369. msgctxt "retraction_combing description"
  370. 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."
  371. 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."
  372. msgctxt "command_line_settings label"
  373. msgid "Command Line Settings"
  374. msgstr "Definições de linha de comando"
  375. msgctxt "infill_pattern option concentric"
  376. msgid "Concentric"
  377. msgstr "Concêntrico"
  378. msgctxt "ironing_pattern option concentric"
  379. msgid "Concentric"
  380. msgstr "Concêntrico"
  381. msgctxt "roofing_pattern option concentric"
  382. msgid "Concentric"
  383. msgstr "Concêntrico"
  384. msgctxt "support_bottom_pattern option concentric"
  385. msgid "Concentric"
  386. msgstr "Concêntrico"
  387. msgctxt "support_interface_pattern option concentric"
  388. msgid "Concentric"
  389. msgstr "Concêntrico"
  390. msgctxt "support_pattern option concentric"
  391. msgid "Concentric"
  392. msgstr "Concêntrico"
  393. msgctxt "support_roof_pattern option concentric"
  394. msgid "Concentric"
  395. msgstr "Concêntrico"
  396. msgctxt "top_bottom_pattern option concentric"
  397. msgid "Concentric"
  398. msgstr "Concêntrico"
  399. msgctxt "top_bottom_pattern_0 option concentric"
  400. msgid "Concentric"
  401. msgstr "Concêntrico"
  402. msgctxt "support_conical_angle label"
  403. msgid "Conical Support Angle"
  404. msgstr "Ângulo do suporte cónico"
  405. msgctxt "support_conical_min_width label"
  406. msgid "Conical Support Minimum Width"
  407. msgstr "Largura mínima do suporte cónico"
  408. msgctxt "zig_zaggify_infill label"
  409. msgid "Connect Infill Lines"
  410. msgstr "Ligar Linhas Enchimento"
  411. msgctxt "connect_infill_polygons label"
  412. msgid "Connect Infill Polygons"
  413. msgstr "Ligar polígonos de enchimento"
  414. msgctxt "zig_zaggify_support label"
  415. msgid "Connect Support Lines"
  416. msgstr "Ligar Linhas de Suporte"
  417. msgctxt "support_connect_zigzags label"
  418. msgid "Connect Support ZigZags"
  419. msgstr "Ligar ziguezagues de suporte"
  420. msgctxt "connect_skin_polygons label"
  421. msgid "Connect Top/Bottom Polygons"
  422. msgstr "Ligar polígonos superiores/inferiores"
  423. msgctxt "connect_infill_polygons description"
  424. 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."
  425. 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."
  426. msgctxt "support_connect_zigzags description"
  427. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  428. msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague."
  429. msgctxt "zig_zaggify_support description"
  430. 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."
  431. 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."
  432. msgctxt "zig_zaggify_infill description"
  433. 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."
  434. 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."
  435. msgctxt "connect_skin_polygons description"
  436. 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."
  437. 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."
  438. msgctxt "z_seam_corner description"
  439. 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."
  440. 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."
  441. msgctxt "infill_multiplier description"
  442. 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."
  443. 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."
  444. msgctxt "machine_nozzle_cool_down_speed label"
  445. msgid "Cool Down Speed"
  446. msgstr "Velocidade de arrefecimento"
  447. msgctxt "cooling description"
  448. msgid "Cooling"
  449. msgstr "Arrefecimento"
  450. msgctxt "cooling label"
  451. msgid "Cooling"
  452. msgstr "Arrefecimento"
  453. msgctxt "infill_pattern option cross"
  454. msgid "Cross"
  455. msgstr "Cruz"
  456. msgctxt "support_pattern option cross"
  457. msgid "Cross"
  458. msgstr "Cruz"
  459. msgctxt "infill_pattern option cross_3d"
  460. msgid "Cross 3D"
  461. msgstr "Cruz 3D"
  462. msgctxt "cross_infill_pocket_size label"
  463. msgid "Cross 3D Pocket Size"
  464. msgstr "Tamanho da bolsa de cruz 3D"
  465. msgctxt "cross_support_density_image label"
  466. msgid "Cross Fill Density Image for Support"
  467. msgstr "Imagem Densidade Suporte em Cruz"
  468. msgctxt "cross_infill_density_image label"
  469. msgid "Cross Infill Density Image"
  470. msgstr "Imagem Densidade Enchimento Cruz"
  471. msgctxt "material_crystallinity label"
  472. msgid "Crystalline Material"
  473. msgstr "Material Cristalino"
  474. msgctxt "infill_pattern option cubic"
  475. msgid "Cubic"
  476. msgstr "Cúbico"
  477. msgctxt "infill_pattern option cubicsubdiv"
  478. msgid "Cubic Subdivision"
  479. msgstr "Subdivisão Cúbica"
  480. msgctxt "sub_div_rad_add label"
  481. msgid "Cubic Subdivision Shell"
  482. msgstr "Invólucro Subdivisão Cúbica"
  483. msgctxt "cutting_mesh label"
  484. msgid "Cutting Mesh"
  485. msgstr "Malha de corte"
  486. msgctxt "material_flow_temp_graph description"
  487. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  488. msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)."
  489. msgctxt "machine_acceleration label"
  490. msgid "Default Acceleration"
  491. msgstr "Aceleração Predefinida"
  492. msgctxt "default_material_bed_temperature label"
  493. msgid "Default Build Plate Temperature"
  494. msgstr "Temperatura Predefinida Base Construção"
  495. msgctxt "machine_max_jerk_e label"
  496. msgid "Default Filament Jerk"
  497. msgstr "Jerk Predefinido do Filamento"
  498. msgctxt "default_material_print_temperature label"
  499. msgid "Default Printing Temperature"
  500. msgstr "Temperatura Impressão Predefinida"
  501. msgctxt "machine_max_jerk_xy label"
  502. msgid "Default X-Y Jerk"
  503. msgstr "Jerk X-Y Predefinido"
  504. msgctxt "machine_max_jerk_z label"
  505. msgid "Default Z Jerk"
  506. msgstr "Jerk Z Predefinido"
  507. msgctxt "machine_max_jerk_xy description"
  508. msgid "Default jerk for movement in the horizontal plane."
  509. msgstr "O jerk predefinido do movimento no plano horizontal."
  510. msgctxt "machine_max_jerk_z description"
  511. msgid "Default jerk for the motor of the Z-direction."
  512. msgstr "O jerk predefinido do motor da direção Z."
  513. msgctxt "machine_max_jerk_e description"
  514. msgid "Default jerk for the motor of the filament."
  515. msgstr "O jerk predefinido do motor do filamento."
  516. msgctxt "bridge_settings_enabled description"
  517. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  518. 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."
  519. msgctxt "inset_direction description"
  520. 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."
  521. 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."
  522. msgctxt "infill_mesh_order description"
  523. 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."
  524. 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."
  525. msgctxt "lightning_infill_support_angle description"
  526. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  527. 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."
  528. msgctxt "lightning_infill_overhang_angle description"
  529. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  530. 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."
  531. msgctxt "material_diameter label"
  532. msgid "Diameter"
  533. msgstr "Diâmetro"
  534. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  535. msgid "Diameter Increase To Model"
  536. msgstr "Aumento do Diâmetro Apoio no Modelo"
  537. msgctxt "support_tree_bp_diameter description"
  538. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  539. msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base."
  540. msgctxt "adhesion_type description"
  541. 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."
  542. 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."
  543. msgctxt "machine_disallowed_areas label"
  544. msgid "Disallowed Areas"
  545. msgstr "Áreas não permitidas"
  546. msgctxt "infill_line_distance description"
  547. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  548. 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."
  549. msgctxt "support_initial_layer_line_distance description"
  550. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  551. msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte."
  552. msgctxt "support_bottom_line_distance description"
  553. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  554. 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."
  555. msgctxt "support_roof_line_distance description"
  556. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  557. 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."
  558. msgctxt "support_line_distance description"
  559. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  560. msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte."
  561. msgctxt "support_bottom_distance description"
  562. msgid "Distance from the print to the bottom of the support."
  563. msgstr "A distância entre a impressão e a parte inferior do suporte."
  564. msgctxt "support_top_distance description"
  565. msgid "Distance from the top of the support to the print."
  566. msgstr "A distância entre a parte superior do suporte e a impressão."
  567. msgctxt "support_z_distance description"
  568. 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."
  569. 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."
  570. msgctxt "infill_wipe_dist description"
  571. 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."
  572. 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."
  573. msgctxt "wall_0_wipe_dist description"
  574. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  575. msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z."
  576. msgctxt "draft_shield_dist description"
  577. msgid "Distance of the draft shield from the print, in the X/Y directions."
  578. msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y."
  579. msgctxt "ooze_shield_dist description"
  580. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  581. msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y."
  582. msgctxt "support_xy_distance_overhang description"
  583. msgid "Distance of the support structure from the overhang in the X/Y directions."
  584. msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y."
  585. msgctxt "support_xy_distance description"
  586. msgid "Distance of the support structure from the print in the X/Y directions."
  587. msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y."
  588. msgctxt "meshfix_fluid_motion_shift_distance description"
  589. msgid "Distance points are shifted to smooth the path"
  590. msgstr ""
  591. msgctxt "meshfix_fluid_motion_small_distance description"
  592. msgid "Distance points are shifted to smooth the path"
  593. msgstr ""
  594. msgctxt "min_infill_area description"
  595. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  596. msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)."
  597. msgctxt "draft_shield_height label"
  598. msgid "Draft Shield Height"
  599. msgstr "Altura da proteção contra correntes de ar"
  600. msgctxt "draft_shield_height_limitation label"
  601. msgid "Draft Shield Limitation"
  602. msgstr "Limite de proteção contra correntes de ar"
  603. msgctxt "draft_shield_dist label"
  604. msgid "Draft Shield X/Y Distance"
  605. msgstr "Distância X/Y da proteção contra correntes de ar"
  606. msgctxt "support_mesh_drop_down label"
  607. msgid "Drop Down Support Mesh"
  608. msgstr "Malha de suporte pendente"
  609. msgctxt "dual label"
  610. msgid "Dual Extrusion"
  611. msgstr "Dupla Extrusão"
  612. msgctxt "machine_shape option elliptic"
  613. msgid "Elliptic"
  614. msgstr "Elíptica"
  615. msgctxt "acceleration_enabled label"
  616. msgid "Enable Acceleration Control"
  617. msgstr "Ativar controlo da aceleração"
  618. msgctxt "bridge_settings_enabled label"
  619. msgid "Enable Bridge Settings"
  620. msgstr "Ativar Definições de Bridge"
  621. msgctxt "coasting_enable label"
  622. msgid "Enable Coasting"
  623. msgstr "Ativar desaceleração"
  624. msgctxt "support_conical_enabled label"
  625. msgid "Enable Conical Support"
  626. msgstr "Ativar suporte cónico"
  627. msgctxt "draft_shield_enabled label"
  628. msgid "Enable Draft Shield"
  629. msgstr "Barreira contra correntes de ar"
  630. msgctxt "meshfix_fluid_motion_enabled label"
  631. msgid "Enable Fluid Motion"
  632. msgstr ""
  633. msgctxt "ironing_enabled label"
  634. msgid "Enable Ironing"
  635. msgstr "Ativar Engomar (Ironing)"
  636. msgctxt "jerk_enabled label"
  637. msgid "Enable Jerk Control"
  638. msgstr "Ativar Controlo do Jerk"
  639. msgctxt "machine_nozzle_temp_enabled label"
  640. msgid "Enable Nozzle Temperature Control"
  641. msgstr "Ativar controlo de temperatura do nozzle"
  642. msgctxt "ooze_shield_enabled label"
  643. msgid "Enable Ooze Shield"
  644. msgstr "Ativar proteção contra escorrimento"
  645. msgctxt "prime_blob_enable label"
  646. msgid "Enable Prime Blob"
  647. msgstr "\"Blob\" de Preparação"
  648. msgctxt "prime_tower_enable label"
  649. msgid "Enable Prime Tower"
  650. msgstr "Ativar torre de preparação"
  651. msgctxt "cool_fan_enabled label"
  652. msgid "Enable Print Cooling"
  653. msgstr "Ativar Arrefecimento Impressão"
  654. msgctxt "retraction_enable label"
  655. msgid "Enable Retraction"
  656. msgstr "Ativar Retração"
  657. msgctxt "support_brim_enable label"
  658. msgid "Enable Support Brim"
  659. msgstr "Ativar aba de suporte"
  660. msgctxt "support_bottom_enable label"
  661. msgid "Enable Support Floor"
  662. msgstr "Ativar piso de suporte"
  663. msgctxt "support_interface_enable label"
  664. msgid "Enable Support Interface"
  665. msgstr "Ativar interface de suporte"
  666. msgctxt "support_roof_enable label"
  667. msgid "Enable Support Roof"
  668. msgstr "Ativar tecto de suporte"
  669. msgctxt "acceleration_travel_enabled label"
  670. msgid "Enable Travel Acceleration"
  671. msgstr "Ativar a aceleração da viagem"
  672. msgctxt "jerk_travel_enabled label"
  673. msgid "Enable Travel Jerk"
  674. msgstr "Ativar Jerk de Viagem"
  675. msgctxt "ooze_shield_enabled description"
  676. 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."
  677. 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."
  678. msgctxt "small_skin_on_surface description"
  679. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  680. msgstr ""
  681. msgctxt "jerk_enabled description"
  682. 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."
  683. 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."
  684. msgctxt "acceleration_enabled description"
  685. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  686. 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."
  687. msgctxt "cool_fan_enabled description"
  688. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  689. 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."
  690. msgctxt "machine_end_gcode label"
  691. msgid "End G-code"
  692. msgstr "G-code Final"
  693. msgctxt "material_end_of_filament_purge_length label"
  694. msgid "End of Filament Purge Length"
  695. msgstr "Comprimento da purga do fim do filamento"
  696. msgctxt "material_end_of_filament_purge_speed label"
  697. msgid "End of Filament Purge Speed"
  698. msgstr "Velocidade da purga do fim do filamento"
  699. msgctxt "brim_replaces_support description"
  700. 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."
  701. 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."
  702. msgctxt "support_type option everywhere"
  703. msgid "Everywhere"
  704. msgstr "Em todo o lado"
  705. msgctxt "slicing_tolerance option exclusive"
  706. msgid "Exclusive"
  707. msgstr "Exclusivo"
  708. msgctxt "experimental label"
  709. msgid "Experimental"
  710. msgstr "Experimental"
  711. msgctxt "z_seam_corner option z_seam_corner_outer"
  712. msgid "Expose Seam"
  713. msgstr "Expor Junta"
  714. msgctxt "meshfix_extensive_stitching label"
  715. msgid "Extensive Stitching"
  716. msgstr "Costura Extensiva"
  717. msgctxt "meshfix_extensive_stitching description"
  718. 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."
  719. 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."
  720. msgctxt "infill_wall_line_count label"
  721. msgid "Extra Infill Wall Count"
  722. msgstr "Contagem de paredes de enchimento adicionais"
  723. msgctxt "skin_outline_count label"
  724. msgid "Extra Skin Wall Count"
  725. msgstr "Paredes Revestimento Extra"
  726. msgctxt "switch_extruder_extra_prime_amount description"
  727. msgid "Extra material to prime after nozzle switching."
  728. msgstr "Material extra a preparar após a substituição do nozzle."
  729. msgctxt "extruder_prime_pos_x label"
  730. msgid "Extruder Prime X Position"
  731. msgstr "Posição X Preparação Extrusor"
  732. msgctxt "extruder_prime_pos_y label"
  733. msgid "Extruder Prime Y Position"
  734. msgstr "Posição Y Preparação Extrusor"
  735. msgctxt "extruder_prime_pos_z label"
  736. msgid "Extruder Prime Z Position"
  737. msgstr "Posição Z para Preparação Extrusor"
  738. msgctxt "machine_extruders_share_heater label"
  739. msgid "Extruders Share Heater"
  740. msgstr "Extrusoras Partilham Aquecedor"
  741. msgctxt "machine_extruders_share_nozzle label"
  742. msgid "Extruders Share Nozzle"
  743. msgstr "Extrusoras partilham bocal"
  744. msgctxt "material_extrusion_cool_down_speed label"
  745. msgid "Extrusion Cool Down Speed Modifier"
  746. msgstr "Modificador da velocidade de arrefecimento da extrusão"
  747. msgctxt "speed_equalize_flow_width_factor description"
  748. 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."
  749. 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."
  750. msgctxt "cool_fan_speed label"
  751. msgid "Fan Speed"
  752. msgstr "Velocidade Ventiladores"
  753. msgctxt "support_fan_enable label"
  754. msgid "Fan Speed Override"
  755. msgstr "Substituir velocidade da ventoinha"
  756. msgctxt "small_feature_max_length description"
  757. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  758. msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno."
  759. msgctxt "experimental description"
  760. msgid "Features that haven't completely been fleshed out yet."
  761. msgstr "Funcionalidades que ainda não foram totalmente lançadas."
  762. msgctxt "machine_feeder_wheel_diameter label"
  763. msgid "Feeder Wheel Diameter"
  764. msgstr "Diâmetro Roda do Alimentador"
  765. msgctxt "material_final_print_temperature label"
  766. msgid "Final Printing Temperature"
  767. msgstr "Temperatura de impressão final"
  768. msgctxt "machine_firmware_retract label"
  769. msgid "Firmware Retraction"
  770. msgstr "Retração em Firmware"
  771. msgctxt "support_extruder_nr_layer_0 label"
  772. msgid "First Layer Support Extruder"
  773. msgstr "Extrusor de suporte da primeira camada"
  774. msgctxt "material_flow label"
  775. msgid "Flow"
  776. msgstr "Fluxo"
  777. msgctxt "speed_equalize_flow_width_factor label"
  778. msgid "Flow Equalization Ratio"
  779. msgstr "Proporção de equalização do fluxo"
  780. msgctxt "flow_rate_extrusion_offset_factor label"
  781. msgid "Flow Rate Compensation Factor"
  782. msgstr "Fator de compensação da taxa de fluxo"
  783. msgctxt "flow_rate_max_extrusion_offset label"
  784. msgid "Flow Rate Compensation Max Extrusion Offset"
  785. msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo"
  786. msgctxt "material_flow_temp_graph label"
  787. msgid "Flow Temperature Graph"
  788. msgstr "Gráfico de temperatura de fluxo"
  789. msgctxt "material_flow_layer_0 description"
  790. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  791. msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor."
  792. msgctxt "skin_material_flow_layer_0 description"
  793. msgid "Flow compensation on bottom lines of the first layer"
  794. msgstr "Compensação de fluxo nos resultados da primeira camada"
  795. msgctxt "infill_material_flow description"
  796. msgid "Flow compensation on infill lines."
  797. msgstr "Compensação de fluxo nas linhas de enchimento."
  798. msgctxt "support_interface_material_flow description"
  799. msgid "Flow compensation on lines of support roof or floor."
  800. msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão."
  801. msgctxt "roofing_material_flow description"
  802. msgid "Flow compensation on lines of the areas at the top of the print."
  803. msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora."
  804. msgctxt "prime_tower_flow description"
  805. msgid "Flow compensation on prime tower lines."
  806. msgstr "Compensação de fluxo nas linhas da torre de preparação."
  807. msgctxt "skirt_brim_material_flow description"
  808. msgid "Flow compensation on skirt or brim lines."
  809. msgstr "Compensação de fluxo nas linhas de contorno ou abas."
  810. msgctxt "support_bottom_material_flow description"
  811. msgid "Flow compensation on support floor lines."
  812. msgstr "Compensação de fluxo nas linhas do chão do suporte."
  813. msgctxt "support_roof_material_flow description"
  814. msgid "Flow compensation on support roof lines."
  815. msgstr "Compensação de fluxo nas linhas do teto do suporte."
  816. msgctxt "support_material_flow description"
  817. msgid "Flow compensation on support structure lines."
  818. msgstr "Compensação de fluxo nas linhas das estruturas de suporte."
  819. msgctxt "wall_0_material_flow_layer_0 description"
  820. msgid "Flow compensation on the outermost wall line of the first layer."
  821. msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada."
  822. msgctxt "wall_0_material_flow description"
  823. msgid "Flow compensation on the outermost wall line."
  824. msgstr "Compensação de fluxo na linha de parede exterior."
  825. msgctxt "skin_material_flow description"
  826. msgid "Flow compensation on top/bottom lines."
  827. msgstr "Compensação de fluxo nas linhas superiores/inferiores."
  828. msgctxt "wall_x_material_flow_layer_0 description"
  829. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  830. 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"
  831. msgctxt "wall_x_material_flow description"
  832. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  833. msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior."
  834. msgctxt "wall_material_flow description"
  835. msgid "Flow compensation on wall lines."
  836. msgstr "Compensação de fluxo nas linhas de parede."
  837. msgctxt "material_flow description"
  838. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  839. msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor."
  840. msgctxt "meshfix_fluid_motion_angle label"
  841. msgid "Fluid Motion Angle"
  842. msgstr ""
  843. msgctxt "meshfix_fluid_motion_shift_distance label"
  844. msgid "Fluid Motion Shift Distance"
  845. msgstr ""
  846. msgctxt "meshfix_fluid_motion_small_distance label"
  847. msgid "Fluid Motion Small Distance"
  848. msgstr ""
  849. msgctxt "material_flush_purge_length label"
  850. msgid "Flush Purge Length"
  851. msgstr "Comprimento da purga da descarga"
  852. msgctxt "material_flush_purge_speed label"
  853. msgid "Flush Purge Speed"
  854. msgstr "Velocidade da purga da descarga"
  855. msgctxt "min_wall_line_width description"
  856. 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."
  857. 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."
  858. msgctxt "z_seam_position option front"
  859. msgid "Front"
  860. msgstr "Frontal"
  861. msgctxt "z_seam_position option frontleft"
  862. msgid "Front Left"
  863. msgstr "Frontal esquerda"
  864. msgctxt "z_seam_position option frontright"
  865. msgid "Front Right"
  866. msgstr "Frontal direita"
  867. msgctxt "draft_shield_height_limitation option full"
  868. msgid "Full"
  869. msgstr "Máximo"
  870. msgctxt "magic_fuzzy_skin_enabled label"
  871. msgid "Fuzzy Skin"
  872. msgstr "Revestimento Difuso"
  873. msgctxt "magic_fuzzy_skin_point_density label"
  874. msgid "Fuzzy Skin Density"
  875. msgstr "Densidade Revestimento Difuso"
  876. msgctxt "magic_fuzzy_skin_outside_only label"
  877. msgid "Fuzzy Skin Outside Only"
  878. msgstr "Revestimento difuso apenas no exterior"
  879. msgctxt "magic_fuzzy_skin_point_dist label"
  880. msgid "Fuzzy Skin Point Distance"
  881. msgstr "Distância do ponto de revestimento difuso"
  882. msgctxt "magic_fuzzy_skin_thickness label"
  883. msgid "Fuzzy Skin Thickness"
  884. msgstr "Espessura Revestimento Difuso"
  885. msgctxt "machine_gcode_flavor label"
  886. msgid "G-code Flavor"
  887. msgstr "Variante do G-code"
  888. msgctxt "machine_end_gcode description"
  889. msgid ""
  890. "G-code commands to be executed at the very end - separated by \n"
  891. "."
  892. msgstr ""
  893. "Comandos G-code a serem executados no fim – separados por \n"
  894. "."
  895. msgctxt "machine_start_gcode description"
  896. msgid ""
  897. "G-code commands to be executed at the very start - separated by \n"
  898. "."
  899. msgstr ""
  900. "Comandos G-code a serem executados no início – separados por \n"
  901. "."
  902. msgctxt "material_guid description"
  903. msgid "GUID of the material. This is set automatically."
  904. msgstr "GUID do material. Este é definido automaticamente."
  905. msgctxt "gantry_height label"
  906. msgid "Gantry Height"
  907. msgstr "Altura do pórtico"
  908. msgctxt "interlocking_enable label"
  909. msgid "Generate Interlocking Structure"
  910. msgstr "Gerar estrutura de interligação"
  911. msgctxt "support_enable label"
  912. msgid "Generate Support"
  913. msgstr "Criar Suportes"
  914. msgctxt "support_brim_enable description"
  915. 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."
  916. 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."
  917. msgctxt "support_interface_enable description"
  918. 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."
  919. 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."
  920. msgctxt "support_bottom_enable description"
  921. 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."
  922. 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."
  923. msgctxt "support_roof_enable description"
  924. 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."
  925. 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."
  926. msgctxt "support_enable description"
  927. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  928. 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."
  929. msgctxt "machine_buildplate_type option glass"
  930. msgid "Glass"
  931. msgstr "Vidro"
  932. msgctxt "ironing_enabled description"
  933. 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."
  934. 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."
  935. msgctxt "gradual_infill_step_height label"
  936. msgid "Gradual Infill Step Height"
  937. msgstr "Altura Degraus Enchimento Gradual"
  938. msgctxt "gradual_infill_steps label"
  939. msgid "Gradual Infill Steps"
  940. msgstr "Degraus Enchimento Gradual"
  941. msgctxt "gradual_support_infill_step_height label"
  942. msgid "Gradual Support Infill Step Height"
  943. msgstr "Altura do degrau de enchimento gradual de suporte"
  944. msgctxt "gradual_support_infill_steps label"
  945. msgid "Gradual Support Infill Steps"
  946. msgstr "Enchimento Gradual Suporte"
  947. msgctxt "cool_min_temperature description"
  948. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  949. msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada."
  950. msgctxt "infill_pattern option grid"
  951. msgid "Grid"
  952. msgstr "Grelha"
  953. msgctxt "support_bottom_pattern option grid"
  954. msgid "Grid"
  955. msgstr "Grelha"
  956. msgctxt "support_interface_pattern option grid"
  957. msgid "Grid"
  958. msgstr "Grelha"
  959. msgctxt "support_pattern option grid"
  960. msgid "Grid"
  961. msgstr "Grelha"
  962. msgctxt "support_roof_pattern option grid"
  963. msgid "Grid"
  964. msgstr "Grelha"
  965. msgctxt "machine_gcode_flavor option Griffin"
  966. msgid "Griffin"
  967. msgstr "Griffin"
  968. msgctxt "infill_pattern option gyroid"
  969. msgid "Gyroid"
  970. msgstr "Gyroid"
  971. msgctxt "support_pattern option gyroid"
  972. msgid "Gyroid"
  973. msgstr "Gyroid"
  974. msgctxt "machine_heated_build_volume label"
  975. msgid "Has Build Volume Temperature Stabilization"
  976. msgstr "Tem estabilização da temperatura do volume de construção"
  977. msgctxt "machine_heated_bed label"
  978. msgid "Has Heated Build Plate"
  979. msgstr "Tem Base de Construção Aquecida"
  980. msgctxt "machine_nozzle_heat_up_speed label"
  981. msgid "Heat Up Speed"
  982. msgstr "Velocidade de aquecimento"
  983. msgctxt "machine_heat_zone_length label"
  984. msgid "Heat Zone Length"
  985. msgstr "Comprimento da zona de aquecimento"
  986. msgctxt "draft_shield_height description"
  987. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  988. 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."
  989. msgctxt "z_seam_corner option z_seam_corner_inner"
  990. msgid "Hide Seam"
  991. msgstr "Ocultar Junta"
  992. msgctxt "z_seam_corner option z_seam_corner_any"
  993. msgid "Hide or Expose Seam"
  994. msgstr "Ocultar ou Expor Junta"
  995. msgctxt "hole_xy_offset label"
  996. msgid "Hole Horizontal Expansion"
  997. msgstr "Expansão horizontal de buraco"
  998. msgctxt "hole_xy_offset_max_diameter label"
  999. msgid "Hole Horizontal Expansion Max Diameter"
  1000. msgstr "Diâmetro máximo da Expansão Horizontal de Buraco"
  1001. msgctxt "small_hole_max_size description"
  1002. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  1003. msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno."
  1004. msgctxt "xy_offset label"
  1005. msgid "Horizontal Expansion"
  1006. msgstr "Expansão Horizontal"
  1007. msgctxt "material_shrinkage_percentage_xy label"
  1008. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1009. msgstr "Compensação de contração do fator de dimensionamento horizontal"
  1010. msgctxt "material_break_preparation_retracted_position description"
  1011. msgid "How far the filament can be stretched before it breaks, while heated."
  1012. msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido."
  1013. msgctxt "material_anti_ooze_retracted_position description"
  1014. msgid "How far the material needs to be retracted before it stops oozing."
  1015. msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento."
  1016. msgctxt "flow_rate_extrusion_offset_factor description"
  1017. 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."
  1018. 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."
  1019. msgctxt "material_break_retracted_position description"
  1020. msgid "How far to retract the filament in order to break it cleanly."
  1021. msgstr "A distância de retração do filamento para separá-lo de forma regular."
  1022. msgctxt "material_break_preparation_speed description"
  1023. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1024. msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração."
  1025. msgctxt "material_anti_ooze_retraction_speed description"
  1026. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1027. msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento."
  1028. msgctxt "material_end_of_filament_purge_speed description"
  1029. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1030. msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material."
  1031. msgctxt "material_flush_purge_speed description"
  1032. msgid "How fast to prime the material after switching to a different material."
  1033. msgstr "A velocidade com que deve preparar o material após mudar para um material diferente."
  1034. msgctxt "material_maximum_park_duration description"
  1035. msgid "How long the material can be kept out of dry storage safely."
  1036. msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança."
  1037. msgctxt "machine_steps_per_mm_x description"
  1038. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  1039. 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."
  1040. msgctxt "machine_steps_per_mm_y description"
  1041. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  1042. 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."
  1043. msgctxt "machine_steps_per_mm_z description"
  1044. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  1045. 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."
  1046. msgctxt "machine_steps_per_mm_e description"
  1047. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  1048. 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."
  1049. msgctxt "material_end_of_filament_purge_length description"
  1050. 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."
  1051. 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."
  1052. msgctxt "material_flush_purge_length description"
  1053. 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."
  1054. 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."
  1055. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  1056. 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."
  1057. 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."
  1058. msgctxt "support_interface_priority description"
  1059. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  1060. msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte."
  1061. msgctxt "support_tree_min_height_to_model description"
  1062. 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."
  1063. msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte."
  1064. msgctxt "bridge_skin_support_threshold description"
  1065. 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."
  1066. 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."
  1067. msgctxt "meshfix_fluid_motion_angle description"
  1068. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  1069. msgstr ""
  1070. msgctxt "bridge_enable_more_layers description"
  1071. 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."
  1072. 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."
  1073. msgctxt "wall_transition_filter_distance description"
  1074. 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."
  1075. 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."
  1076. msgctxt "raft_margin description"
  1077. 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."
  1078. 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."
  1079. msgctxt "meshfix_union_all description"
  1080. 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."
  1081. 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."
  1082. msgctxt "material_bed_temp_prepend label"
  1083. msgid "Include Build Plate Temperature"
  1084. msgstr "Incluir Temperatura da Base de Construção"
  1085. msgctxt "material_print_temp_prepend label"
  1086. msgid "Include Material Temperatures"
  1087. msgstr "Incluir Temperaturas do Material"
  1088. msgctxt "slicing_tolerance option inclusive"
  1089. msgid "Inclusive"
  1090. msgstr "Inclusivo"
  1091. msgctxt "infill description"
  1092. msgid "Infill"
  1093. msgstr "Enchimento"
  1094. msgctxt "infill label"
  1095. msgid "Infill"
  1096. msgstr "Enchimento"
  1097. msgctxt "acceleration_infill label"
  1098. msgid "Infill Acceleration"
  1099. msgstr "Aceleração de enchimento"
  1100. msgctxt "infill_before_walls label"
  1101. msgid "Infill Before Walls"
  1102. msgstr "Enchimento antes das paredes"
  1103. msgctxt "infill_sparse_density label"
  1104. msgid "Infill Density"
  1105. msgstr "Densidade do Enchimento"
  1106. msgctxt "infill_extruder_nr label"
  1107. msgid "Infill Extruder"
  1108. msgstr "Extrusor Enchimento"
  1109. msgctxt "infill_material_flow label"
  1110. msgid "Infill Flow"
  1111. msgstr "Fluxo de Enchimento"
  1112. msgctxt "jerk_infill label"
  1113. msgid "Infill Jerk"
  1114. msgstr "Jerk do Enchimento"
  1115. msgctxt "infill_sparse_thickness label"
  1116. msgid "Infill Layer Thickness"
  1117. msgstr "Espessura Camada Enchimento"
  1118. msgctxt "infill_angles label"
  1119. msgid "Infill Line Directions"
  1120. msgstr "Direções Linhas Enchimento"
  1121. msgctxt "infill_line_distance label"
  1122. msgid "Infill Line Distance"
  1123. msgstr "Distância Linhas Enchimento"
  1124. msgctxt "infill_multiplier label"
  1125. msgid "Infill Line Multiplier"
  1126. msgstr "Multiplicador de linhas de enchimento"
  1127. msgctxt "infill_line_width label"
  1128. msgid "Infill Line Width"
  1129. msgstr "Diâmetro Linha Enchimento"
  1130. msgctxt "infill_mesh label"
  1131. msgid "Infill Mesh"
  1132. msgstr "Objecto de Enchimento"
  1133. msgctxt "infill_support_angle label"
  1134. msgid "Infill Overhang Angle"
  1135. msgstr "Ângulo Saliência Enchimento"
  1136. msgctxt "infill_overlap_mm label"
  1137. msgid "Infill Overlap"
  1138. msgstr "Sobreposição Enchimento (mm)"
  1139. msgctxt "infill_overlap label"
  1140. msgid "Infill Overlap Percentage"
  1141. msgstr "Sobreposição Enchimento (%)"
  1142. msgctxt "infill_pattern label"
  1143. msgid "Infill Pattern"
  1144. msgstr "Padrão de Enchimento"
  1145. msgctxt "speed_infill label"
  1146. msgid "Infill Speed"
  1147. msgstr "Velocidade Enchimento"
  1148. msgctxt "infill_support_enabled label"
  1149. msgid "Infill Support"
  1150. msgstr "Enchimento como Suporte"
  1151. msgctxt "infill_enable_travel_optimization label"
  1152. msgid "Infill Travel Optimization"
  1153. msgstr "Optimização Deslocação Enchimento"
  1154. msgctxt "infill_wipe_dist label"
  1155. msgid "Infill Wipe Distance"
  1156. msgstr "Distância Limpeza Enchimento"
  1157. msgctxt "infill_offset_x label"
  1158. msgid "Infill X Offset"
  1159. msgstr "Deslocar Enchimento em X"
  1160. msgctxt "infill_offset_y label"
  1161. msgid "Infill Y Offset"
  1162. msgstr "Deslocar Enchimento em Y"
  1163. msgctxt "initial_bottom_layers label"
  1164. msgid "Initial Bottom Layers"
  1165. msgstr "Camadas inferiores iniciais"
  1166. msgctxt "cool_fan_speed_0 label"
  1167. msgid "Initial Fan Speed"
  1168. msgstr "Velocidade Inicial do ventilador"
  1169. msgctxt "acceleration_layer_0 label"
  1170. msgid "Initial Layer Acceleration"
  1171. msgstr "Aceleração da camada inicial"
  1172. msgctxt "skin_material_flow_layer_0 label"
  1173. msgid "Initial Layer Bottom Flow"
  1174. msgstr "Fluxo inferior da camada inicial"
  1175. msgctxt "support_tree_bp_diameter label"
  1176. msgid "Initial Layer Diameter"
  1177. msgstr "Diâmetro da Camada Inicial"
  1178. msgctxt "material_flow_layer_0 label"
  1179. msgid "Initial Layer Flow"
  1180. msgstr "Fluxo Camada Inicial"
  1181. msgctxt "layer_height_0 label"
  1182. msgid "Initial Layer Height"
  1183. msgstr "Espessura da Camada Inicial"
  1184. msgctxt "xy_offset_layer_0 label"
  1185. msgid "Initial Layer Horizontal Expansion"
  1186. msgstr "Expansão Horizontal Camada Inicial"
  1187. msgctxt "wall_x_material_flow_layer_0 label"
  1188. msgid "Initial Layer Inner Wall Flow"
  1189. msgstr "Fluxo da parede interna da camada inicial"
  1190. msgctxt "jerk_layer_0 label"
  1191. msgid "Initial Layer Jerk"
  1192. msgstr "Jerk da Camada Inicial"
  1193. msgctxt "initial_layer_line_width_factor label"
  1194. msgid "Initial Layer Line Width"
  1195. msgstr "Diâmetro Linha Camada Inicial"
  1196. msgctxt "wall_0_material_flow_layer_0 label"
  1197. msgid "Initial Layer Outer Wall Flow"
  1198. msgstr "Fluxo da parede externa da camada inicial"
  1199. msgctxt "acceleration_print_layer_0 label"
  1200. msgid "Initial Layer Print Acceleration"
  1201. msgstr "Aceleração de impressão da camada inicial"
  1202. msgctxt "jerk_print_layer_0 label"
  1203. msgid "Initial Layer Print Jerk"
  1204. msgstr "Jerk Impressão Camada Inicial"
  1205. msgctxt "speed_print_layer_0 label"
  1206. msgid "Initial Layer Print Speed"
  1207. msgstr "Velocidade de impressão da camada inicial"
  1208. msgctxt "speed_layer_0 label"
  1209. msgid "Initial Layer Speed"
  1210. msgstr "Velocidade Camada Inicial"
  1211. msgctxt "support_initial_layer_line_distance label"
  1212. msgid "Initial Layer Support Line Distance"
  1213. msgstr "Distância da linha de suporte da camada inicial"
  1214. msgctxt "acceleration_travel_layer_0 label"
  1215. msgid "Initial Layer Travel Acceleration"
  1216. msgstr "Aceleração de deslocação da camada inicial"
  1217. msgctxt "jerk_travel_layer_0 label"
  1218. msgid "Initial Layer Travel Jerk"
  1219. msgstr "Jerk Deslocação Camada Inicial"
  1220. msgctxt "speed_travel_layer_0 label"
  1221. msgid "Initial Layer Travel Speed"
  1222. msgstr "Velocidade de deslocação da camada inicial"
  1223. msgctxt "layer_0_z_overlap label"
  1224. msgid "Initial Layer Z Overlap"
  1225. msgstr "Sobreposição Z Camada Inicial"
  1226. msgctxt "material_initial_print_temperature label"
  1227. msgid "Initial Printing Temperature"
  1228. msgstr "Temperatura de impressão inicial"
  1229. msgctxt "acceleration_wall_x label"
  1230. msgid "Inner Wall Acceleration"
  1231. msgstr "Aceleração da parede interior"
  1232. msgctxt "wall_x_extruder_nr label"
  1233. msgid "Inner Wall Extruder"
  1234. msgstr "Extrusor Paredes Interiores"
  1235. msgctxt "jerk_wall_x label"
  1236. msgid "Inner Wall Jerk"
  1237. msgstr "Jerk das Paredes Interiores"
  1238. msgctxt "speed_wall_x label"
  1239. msgid "Inner Wall Speed"
  1240. msgstr "Velocidade Parede Interior"
  1241. msgctxt "wall_x_material_flow label"
  1242. msgid "Inner Wall(s) Flow"
  1243. msgstr "Parede de Parede(s) Interior(es)"
  1244. msgctxt "wall_line_width_x label"
  1245. msgid "Inner Wall(s) Line Width"
  1246. msgstr "Diâmetro Linha Parede(s) Interior"
  1247. msgctxt "wall_0_inset description"
  1248. 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."
  1249. 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."
  1250. msgctxt "inset_direction option inside_out"
  1251. msgid "Inside To Outside"
  1252. msgstr "De dentro para fora"
  1253. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  1254. msgid "Interface lines preferred"
  1255. msgstr "Linhas de interface preferidas"
  1256. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  1257. msgid "Interface preferred"
  1258. msgstr "Interface preferida"
  1259. msgctxt "interlocking_beam_layer_count label"
  1260. msgid "Interlocking Beam Layer Count"
  1261. msgstr "Contagem de camada de feixe de interligação"
  1262. msgctxt "interlocking_beam_width label"
  1263. msgid "Interlocking Beam Width"
  1264. msgstr "Largura do feixe de interligação"
  1265. msgctxt "interlocking_boundary_avoidance label"
  1266. msgid "Interlocking Boundary Avoidance"
  1267. msgstr "Evitar a interligação de fronteiras"
  1268. msgctxt "interlocking_depth label"
  1269. msgid "Interlocking Depth"
  1270. msgstr "Profundidade de interligação"
  1271. msgctxt "interlocking_orientation label"
  1272. msgid "Interlocking Structure Orientation"
  1273. msgstr "Orientação da estrutura de interligação"
  1274. msgctxt "ironing_only_highest_layer label"
  1275. msgid "Iron Only Highest Layer"
  1276. msgstr "Engomar Só Última Camada"
  1277. msgctxt "acceleration_ironing label"
  1278. msgid "Ironing Acceleration"
  1279. msgstr "Aceleração de Engomar"
  1280. msgctxt "ironing_flow label"
  1281. msgid "Ironing Flow"
  1282. msgstr "Fluxo de Engomar"
  1283. msgctxt "ironing_inset label"
  1284. msgid "Ironing Inset"
  1285. msgstr "Desvio Interior de Engomar"
  1286. msgctxt "jerk_ironing label"
  1287. msgid "Ironing Jerk"
  1288. msgstr "Jerk de Engomar"
  1289. msgctxt "ironing_line_spacing label"
  1290. msgid "Ironing Line Spacing"
  1291. msgstr "Distância Linhas de Engomar"
  1292. msgctxt "ironing_pattern label"
  1293. msgid "Ironing Pattern"
  1294. msgstr "Padrão de Engomar"
  1295. msgctxt "speed_ironing label"
  1296. msgid "Ironing Speed"
  1297. msgstr "Velocidade de Engomar"
  1298. msgctxt "machine_center_is_zero label"
  1299. msgid "Is Center Origin"
  1300. msgstr "O Centro é a Origem"
  1301. msgctxt "material_is_support_material label"
  1302. msgid "Is support material"
  1303. msgstr "É um material de suporte"
  1304. msgctxt "material_crystallinity description"
  1305. 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)?"
  1306. 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)?"
  1307. msgctxt "material_is_support_material description"
  1308. msgid "Is this material typically used as a support material during printing."
  1309. msgstr "Este material é utilizado como material de suporte durante a impressão."
  1310. msgctxt "magic_fuzzy_skin_outside_only description"
  1311. msgid "Jitter only the parts' outlines and not the parts' holes."
  1312. msgstr "Vibrar apenas os contornos das peças e não os buracos das peças."
  1313. msgctxt "meshfix_keep_open_polygons label"
  1314. msgid "Keep Disconnected Faces"
  1315. msgstr "Manter Faces Soltas"
  1316. msgctxt "layer_height label"
  1317. msgid "Layer Height"
  1318. msgstr "Espessura das Camadas"
  1319. msgctxt "layer_start_x label"
  1320. msgid "Layer Start X"
  1321. msgstr "X Início Camada"
  1322. msgctxt "layer_start_y label"
  1323. msgid "Layer Start Y"
  1324. msgstr "Y Início Camada"
  1325. msgctxt "raft_base_thickness description"
  1326. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  1327. msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora."
  1328. msgctxt "raft_interface_thickness description"
  1329. msgid "Layer thickness of the middle raft layer."
  1330. msgstr "A espessura da camada do meio do raft. (segunda camada)"
  1331. msgctxt "raft_surface_thickness description"
  1332. msgid "Layer thickness of the top raft layers."
  1333. msgstr "A espessura das camadas superiores do raft."
  1334. msgctxt "support_skip_zag_per_mm description"
  1335. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  1336. msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte."
  1337. msgctxt "z_seam_position option left"
  1338. msgid "Left"
  1339. msgstr "Esquerda"
  1340. msgctxt "cool_lift_head label"
  1341. msgid "Lift Head"
  1342. msgstr "Elevar Cabeça"
  1343. msgctxt "infill_pattern option lightning"
  1344. msgid "Lightning"
  1345. msgstr "Relâmpago"
  1346. msgctxt "lightning_infill_overhang_angle label"
  1347. msgid "Lightning Infill Overhang Angle"
  1348. msgstr "Ângulo de saliência do enchimento relâmpago"
  1349. msgctxt "lightning_infill_prune_angle label"
  1350. msgid "Lightning Infill Prune Angle"
  1351. msgstr "Ângulo de corte do enchimento relâmpago"
  1352. msgctxt "lightning_infill_straightening_angle label"
  1353. msgid "Lightning Infill Straightening Angle"
  1354. msgstr "Ângulo de alisamento do enchimento relâmpago"
  1355. msgctxt "lightning_infill_support_angle label"
  1356. msgid "Lightning Infill Support Angle"
  1357. msgstr "Ângulo de suporte de enchimento relâmpago"
  1358. msgctxt "support_tree_limit_branch_reach label"
  1359. msgid "Limit Branch Reach"
  1360. msgstr "Limitar o Alcance dos Ramos"
  1361. msgctxt "support_tree_limit_branch_reach description"
  1362. 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)"
  1363. msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)"
  1364. msgctxt "cutting_mesh description"
  1365. 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."
  1366. 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."
  1367. msgctxt "draft_shield_height_limitation option limited"
  1368. msgid "Limited"
  1369. msgstr "Limitado"
  1370. msgctxt "line_width label"
  1371. msgid "Line Width"
  1372. msgstr "Diâmetro da Linha"
  1373. msgctxt "infill_pattern option lines"
  1374. msgid "Lines"
  1375. msgstr "Linhas"
  1376. msgctxt "roofing_pattern option lines"
  1377. msgid "Lines"
  1378. msgstr "Linhas"
  1379. msgctxt "support_bottom_pattern option lines"
  1380. msgid "Lines"
  1381. msgstr "Linhas"
  1382. msgctxt "support_interface_pattern option lines"
  1383. msgid "Lines"
  1384. msgstr "Linhas"
  1385. msgctxt "support_pattern option lines"
  1386. msgid "Lines"
  1387. msgstr "Linhas"
  1388. msgctxt "support_roof_pattern option lines"
  1389. msgid "Lines"
  1390. msgstr "Linhas"
  1391. msgctxt "top_bottom_pattern option lines"
  1392. msgid "Lines"
  1393. msgstr "Linhas"
  1394. msgctxt "top_bottom_pattern_0 option lines"
  1395. msgid "Lines"
  1396. msgstr "Linhas"
  1397. msgctxt "machine_gcode_flavor option MACH3"
  1398. msgid "Mach3"
  1399. msgstr "Mach3"
  1400. msgctxt "machine_settings label"
  1401. msgid "Machine"
  1402. msgstr "Máquina"
  1403. msgctxt "machine_depth label"
  1404. msgid "Machine Depth"
  1405. msgstr "Profundidade da Máquina"
  1406. msgctxt "machine_head_with_fans_polygon label"
  1407. msgid "Machine Head & Fan Polygon"
  1408. msgstr "Polígono da cabeça e do ventilador da máquina"
  1409. msgctxt "machine_height label"
  1410. msgid "Machine Height"
  1411. msgstr "Altura da Máquina"
  1412. msgctxt "machine_name label"
  1413. msgid "Machine Type"
  1414. msgstr "Tipo de Máquina"
  1415. msgctxt "machine_width label"
  1416. msgid "Machine Width"
  1417. msgstr "Largura da Máquina"
  1418. msgctxt "machine_settings description"
  1419. msgid "Machine specific settings"
  1420. msgstr "Definições específicas da máquina"
  1421. msgctxt "conical_overhang_enabled label"
  1422. msgid "Make Overhang Printable"
  1423. msgstr "Tornar Saliência Imprimível"
  1424. msgctxt "multiple_mesh_overlap description"
  1425. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  1426. msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação."
  1427. msgctxt "support_conical_enabled description"
  1428. msgid "Make support areas smaller at the bottom than at the overhang."
  1429. msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência."
  1430. msgctxt "support_mesh_drop_down description"
  1431. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  1432. msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte."
  1433. msgctxt "extruder_prime_pos_abs description"
  1434. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  1435. msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça."
  1436. msgctxt "layer_0_z_overlap description"
  1437. 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."
  1438. 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."
  1439. msgctxt "meshfix description"
  1440. msgid "Make the meshes more suited for 3D printing."
  1441. msgstr "Torne os objetos mais adequados para impressão 3D."
  1442. msgctxt "machine_gcode_flavor option Makerbot"
  1443. msgid "Makerbot"
  1444. msgstr "Makerbot"
  1445. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  1446. msgid "Marlin"
  1447. msgstr "Marlin"
  1448. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  1449. msgid "Marlin (Volumetric)"
  1450. msgstr "Marlin (Volumétrico)"
  1451. msgctxt "material description"
  1452. msgid "Material"
  1453. msgstr "Material"
  1454. msgctxt "material label"
  1455. msgid "Material"
  1456. msgstr "Material"
  1457. msgctxt "material_guid label"
  1458. msgid "Material GUID"
  1459. msgstr "GUID do material"
  1460. msgctxt "max_extrusion_before_wipe label"
  1461. msgid "Material Volume Between Wipes"
  1462. msgstr "Volume de material entre limpezas"
  1463. msgctxt "retraction_combing_max_distance label"
  1464. msgid "Max Comb Distance With No Retract"
  1465. msgstr "Distância Max. de Combing sem Retração"
  1466. msgctxt "machine_max_acceleration_x label"
  1467. msgid "Maximum Acceleration X"
  1468. msgstr "Aceleração X Máxima"
  1469. msgctxt "machine_max_acceleration_y label"
  1470. msgid "Maximum Acceleration Y"
  1471. msgstr "Aceleração Y Máxima"
  1472. msgctxt "machine_max_acceleration_z label"
  1473. msgid "Maximum Acceleration Z"
  1474. msgstr "Aceleração Z Máxima"
  1475. msgctxt "support_tree_angle label"
  1476. msgid "Maximum Branch Angle"
  1477. msgstr "Ângulo Máximo dos Ramos"
  1478. msgctxt "meshfix_maximum_deviation label"
  1479. msgid "Maximum Deviation"
  1480. msgstr "Desvio máximo"
  1481. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  1482. msgid "Maximum Extrusion Area Deviation"
  1483. msgstr "Desvio máximo da área de extrusão"
  1484. msgctxt "cool_fan_speed_max label"
  1485. msgid "Maximum Fan Speed"
  1486. msgstr "Velocidade Máxima Ventiladores"
  1487. msgctxt "machine_max_acceleration_e label"
  1488. msgid "Maximum Filament Acceleration"
  1489. msgstr "Aceleração Máxima do Filamento"
  1490. msgctxt "conical_overhang_angle label"
  1491. msgid "Maximum Model Angle"
  1492. msgstr "Ângulo máximo do modelo"
  1493. msgctxt "conical_overhang_hole_size label"
  1494. msgid "Maximum Overhang Hole Area"
  1495. msgstr "Área máxima do buraco da saliência"
  1496. msgctxt "material_maximum_park_duration label"
  1497. msgid "Maximum Park Duration"
  1498. msgstr "Duração máxima do parqueamento"
  1499. msgctxt "meshfix_maximum_resolution label"
  1500. msgid "Maximum Resolution"
  1501. msgstr "Resolução Máxima"
  1502. msgctxt "retraction_count_max label"
  1503. msgid "Maximum Retraction Count"
  1504. msgstr "Número Máximo Retrações"
  1505. msgctxt "max_skin_angle_for_expansion label"
  1506. msgid "Maximum Skin Angle for Expansion"
  1507. msgstr "Ângulo Revestimento para Expansão"
  1508. msgctxt "machine_max_feedrate_e label"
  1509. msgid "Maximum Speed E"
  1510. msgstr "Velocidade Máxima de E"
  1511. msgctxt "machine_max_feedrate_x label"
  1512. msgid "Maximum Speed X"
  1513. msgstr "Velocidade X Máxima"
  1514. msgctxt "machine_max_feedrate_y label"
  1515. msgid "Maximum Speed Y"
  1516. msgstr "Velocidade Y Máxima"
  1517. msgctxt "machine_max_feedrate_z label"
  1518. msgid "Maximum Speed Z"
  1519. msgstr "Velocidade Z Máxima"
  1520. msgctxt "support_tower_maximum_supported_diameter label"
  1521. msgid "Maximum Tower-Supported Diameter"
  1522. msgstr "Diâmetro Máximo Suportado pela Torre"
  1523. msgctxt "meshfix_maximum_travel_resolution label"
  1524. msgid "Maximum Travel Resolution"
  1525. msgstr "Resolução Máxima Deslocação"
  1526. msgctxt "machine_max_acceleration_x description"
  1527. msgid "Maximum acceleration for the motor of the X-direction"
  1528. msgstr "A aceleração máxima do motor da direção X"
  1529. msgctxt "machine_max_acceleration_y description"
  1530. msgid "Maximum acceleration for the motor of the Y-direction."
  1531. msgstr "A aceleração máxima do motor da direção Y."
  1532. msgctxt "machine_max_acceleration_z description"
  1533. msgid "Maximum acceleration for the motor of the Z-direction."
  1534. msgstr "A aceleração máxima do motor da direção Z."
  1535. msgctxt "machine_max_acceleration_e description"
  1536. msgid "Maximum acceleration for the motor of the filament."
  1537. msgstr "A aceleração máxima do motor do filamento."
  1538. msgctxt "bridge_sparse_infill_max_density description"
  1539. 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."
  1540. 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."
  1541. msgctxt "support_tower_maximum_supported_diameter description"
  1542. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  1543. 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."
  1544. msgctxt "max_extrusion_before_wipe description"
  1545. 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."
  1546. 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."
  1547. msgctxt "multiple_mesh_overlap label"
  1548. msgid "Merged Meshes Overlap"
  1549. msgstr "Sobreposição Malhas Combinadas"
  1550. msgctxt "meshfix label"
  1551. msgid "Mesh Fixes"
  1552. msgstr "Correção de Objectos (Mesh)"
  1553. msgctxt "mesh_position_x label"
  1554. msgid "Mesh Position X"
  1555. msgstr "Posição X do Objeto"
  1556. msgctxt "mesh_position_y label"
  1557. msgid "Mesh Position Y"
  1558. msgstr "Posição Y do Objeto"
  1559. msgctxt "mesh_position_z label"
  1560. msgid "Mesh Position Z"
  1561. msgstr "Posição Z do Objeto"
  1562. msgctxt "infill_mesh_order label"
  1563. msgid "Mesh Processing Rank"
  1564. msgstr "Classificação de processamento de malha"
  1565. msgctxt "mesh_rotation_matrix label"
  1566. msgid "Mesh Rotation Matrix"
  1567. msgstr "Matriz Rotação do Objeto"
  1568. msgctxt "slicing_tolerance option middle"
  1569. msgid "Middle"
  1570. msgstr "Centro"
  1571. msgctxt "mold_width label"
  1572. msgid "Minimal Mold Width"
  1573. msgstr "Largura mínima do molde"
  1574. msgctxt "machine_min_cool_heat_time_window label"
  1575. msgid "Minimal Time Standby Temperature"
  1576. msgstr "Tempo Mínimo da Temperatura em Modo de Espera"
  1577. msgctxt "bridge_wall_min_length label"
  1578. msgid "Minimum Bridge Wall Length"
  1579. msgstr "Comprimento mínimo da parede de Bridge"
  1580. msgctxt "min_even_wall_line_width label"
  1581. msgid "Minimum Even Wall Line Width"
  1582. msgstr "Diâmetro mínimo de linha da parede Par"
  1583. msgctxt "retraction_extrusion_window label"
  1584. msgid "Minimum Extrusion Distance Window"
  1585. msgstr "Intervalo Mínimo Distância Extrusão"
  1586. msgctxt "min_feature_size label"
  1587. msgid "Minimum Feature Size"
  1588. msgstr "Tamanho mínimo da característica"
  1589. msgctxt "machine_minimum_feedrate label"
  1590. msgid "Minimum Feedrate"
  1591. msgstr "Velocidade Mínima de Alimentação"
  1592. msgctxt "support_tree_min_height_to_model label"
  1593. msgid "Minimum Height To Model"
  1594. msgstr "Altura Mínima ao Modelo"
  1595. msgctxt "min_infill_area label"
  1596. msgid "Minimum Infill Area"
  1597. msgstr "Área de enchimento mínimo"
  1598. msgctxt "cool_min_layer_time label"
  1599. msgid "Minimum Layer Time"
  1600. msgstr "Tempo mínimo por camada"
  1601. msgctxt "min_odd_wall_line_width label"
  1602. msgid "Minimum Odd Wall Line Width"
  1603. msgstr "Diâmetro mínimo de linha da parede Ímpar"
  1604. msgctxt "minimum_polygon_circumference label"
  1605. msgid "Minimum Polygon Circumference"
  1606. msgstr "Circunferência Mínima do Polígono"
  1607. msgctxt "min_skin_width_for_expansion label"
  1608. msgid "Minimum Skin Width for Expansion"
  1609. msgstr "Largura Mínima Revestimento para Expansão"
  1610. msgctxt "cool_min_speed label"
  1611. msgid "Minimum Speed"
  1612. msgstr "Velocidade Mínima"
  1613. msgctxt "minimum_support_area label"
  1614. msgid "Minimum Support Area"
  1615. msgstr "Área de suporte mínimo"
  1616. msgctxt "minimum_bottom_area label"
  1617. msgid "Minimum Support Floor Area"
  1618. msgstr "Área mínima do piso de suporte"
  1619. msgctxt "minimum_interface_area label"
  1620. msgid "Minimum Support Interface Area"
  1621. msgstr "Área mínima da interface de suporte"
  1622. msgctxt "minimum_roof_area label"
  1623. msgid "Minimum Support Roof Area"
  1624. msgstr "Área mínima do teto de suporte"
  1625. msgctxt "support_xy_distance_overhang label"
  1626. msgid "Minimum Support X/Y Distance"
  1627. msgstr "Distância X/Y mínima de suporte"
  1628. msgctxt "min_bead_width label"
  1629. msgid "Minimum Thin Wall Line Width"
  1630. msgstr "Diâmetro mínimo de linha da parede fina"
  1631. msgctxt "coasting_min_volume label"
  1632. msgid "Minimum Volume Before Coasting"
  1633. msgstr "Volume mínimo antes da desaceleração"
  1634. msgctxt "min_wall_line_width label"
  1635. msgid "Minimum Wall Line Width"
  1636. msgstr "Diâmetro mínimo de linha da parede"
  1637. msgctxt "minimum_interface_area description"
  1638. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  1639. 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."
  1640. msgctxt "minimum_support_area description"
  1641. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  1642. 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."
  1643. msgctxt "minimum_bottom_area description"
  1644. 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."
  1645. 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."
  1646. msgctxt "minimum_roof_area description"
  1647. 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."
  1648. 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."
  1649. msgctxt "min_feature_size description"
  1650. 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."
  1651. 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."
  1652. msgctxt "support_conical_min_width description"
  1653. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  1654. 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."
  1655. msgctxt "mold_enabled label"
  1656. msgid "Mold"
  1657. msgstr "Molde"
  1658. msgctxt "mold_angle label"
  1659. msgid "Mold Angle"
  1660. msgstr "Ângulo do molde"
  1661. msgctxt "mold_roof_height label"
  1662. msgid "Mold Roof Height"
  1663. msgstr "Altura do tecto do molde"
  1664. msgctxt "ironing_monotonic label"
  1665. msgid "Monotonic Ironing Order"
  1666. msgstr "Ordem de Engomar em \"Monotonic\""
  1667. msgctxt "roofing_monotonic label"
  1668. msgid "Monotonic Top Surface Order"
  1669. msgstr "Ordem da superfície superior em \"Monotonic\""
  1670. msgctxt "skin_monotonic label"
  1671. msgid "Monotonic Top/Bottom Order"
  1672. msgstr "Ordem Superior/Inferior em \"Monotonic\""
  1673. msgctxt "skirt_line_count description"
  1674. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  1675. msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno."
  1676. msgctxt "initial_layer_line_width_factor description"
  1677. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  1678. msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção."
  1679. msgctxt "material_no_load_move_factor label"
  1680. msgid "No Load Move Factor"
  1681. msgstr "Fator do movimento sem carregamento"
  1682. msgctxt "skin_no_small_gaps_heuristic label"
  1683. msgid "No Skin in Z Gaps"
  1684. msgstr "Sem Revestimento nos Espaços Z"
  1685. msgctxt "blackmagic description"
  1686. msgid "Non-traditional ways to print your models."
  1687. msgstr "Formas não tradicionais de imprimir os seus modelos."
  1688. msgctxt "adhesion_type option none"
  1689. msgid "None"
  1690. msgstr "Nenhum"
  1691. msgctxt "z_seam_corner option z_seam_corner_none"
  1692. msgid "None"
  1693. msgstr "Nenhum"
  1694. msgctxt "magic_mesh_surface_mode option normal"
  1695. msgid "Normal"
  1696. msgstr ""
  1697. msgctxt "support_structure option normal"
  1698. msgid "Normal"
  1699. msgstr ""
  1700. msgctxt "meshfix_keep_open_polygons description"
  1701. 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."
  1702. 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."
  1703. msgctxt "retraction_combing option noskin"
  1704. msgid "Not in Skin"
  1705. msgstr "Não no Revestimento"
  1706. msgctxt "retraction_combing option no_outer_surfaces"
  1707. msgid "Not on Outer Surface"
  1708. msgstr "Não na Superfície Exterior"
  1709. msgctxt "machine_nozzle_expansion_angle label"
  1710. msgid "Nozzle Angle"
  1711. msgstr "Ângulo do nozzle"
  1712. msgctxt "machine_nozzle_size label"
  1713. msgid "Nozzle Diameter"
  1714. msgstr "Diâmetro do Nozzle"
  1715. msgctxt "nozzle_disallowed_areas label"
  1716. msgid "Nozzle Disallowed Areas"
  1717. msgstr "Áreas não permitidas ao nozzle"
  1718. msgctxt "machine_nozzle_id label"
  1719. msgid "Nozzle ID"
  1720. msgstr "ID do Nozzle"
  1721. msgctxt "machine_nozzle_head_distance label"
  1722. msgid "Nozzle Length"
  1723. msgstr "Comprimento do nozzle"
  1724. msgctxt "switch_extruder_extra_prime_amount label"
  1725. msgid "Nozzle Switch Extra Prime Amount"
  1726. msgstr "Quantidade de Preparação Extra de Substituição do Nozzle"
  1727. msgctxt "switch_extruder_prime_speed label"
  1728. msgid "Nozzle Switch Prime Speed"
  1729. msgstr "Velocidade de preparação de substituição do nozzle"
  1730. msgctxt "switch_extruder_retraction_speed label"
  1731. msgid "Nozzle Switch Retract Speed"
  1732. msgstr "Velocidade de recolha de substituição do nozzle"
  1733. msgctxt "switch_extruder_retraction_amount label"
  1734. msgid "Nozzle Switch Retraction Distance"
  1735. msgstr "Distância de retração de substituição do nozzle"
  1736. msgctxt "switch_extruder_retraction_speeds label"
  1737. msgid "Nozzle Switch Retraction Speed"
  1738. msgstr "Velocidade de retração de substituição do nozzle"
  1739. msgctxt "machine_extruder_count label"
  1740. msgid "Number of Extruders"
  1741. msgstr "Número de Extrusores"
  1742. msgctxt "extruders_enabled_count label"
  1743. msgid "Number of Extruders That Are Enabled"
  1744. msgstr "Número de extrusores ativos"
  1745. msgctxt "speed_slowdown_layers label"
  1746. msgid "Number of Slower Layers"
  1747. msgstr "Número de camadas mais lentas"
  1748. msgctxt "extruders_enabled_count description"
  1749. msgid "Number of extruder trains that are enabled; automatically set in software"
  1750. msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software"
  1751. msgctxt "machine_extruder_count description"
  1752. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  1753. 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."
  1754. msgctxt "wipe_repeat_count description"
  1755. msgid "Number of times to move the nozzle across the brush."
  1756. msgstr "Número de vezes que o nozzle deve ser passado pela escova."
  1757. msgctxt "gradual_infill_steps description"
  1758. 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."
  1759. 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."
  1760. msgctxt "gradual_support_infill_steps description"
  1761. 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."
  1762. 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."
  1763. msgctxt "infill_pattern option tetrahedral"
  1764. msgid "Octet"
  1765. msgstr "Octeto"
  1766. msgctxt "retraction_combing option off"
  1767. msgid "Off"
  1768. msgstr "Desligado"
  1769. msgctxt "mesh_position_x description"
  1770. msgid "Offset applied to the object in the x direction."
  1771. msgstr "Desvio aplicado ao objeto na direção X."
  1772. msgctxt "mesh_position_y description"
  1773. msgid "Offset applied to the object in the y direction."
  1774. msgstr "Desvio aplicado ao objeto na direção Y."
  1775. msgctxt "mesh_position_z description"
  1776. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  1777. 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\"."
  1778. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  1779. msgid "Offset with Extruder"
  1780. msgstr "Desviar com extrusor"
  1781. msgctxt "support_tree_rest_preference option buildplate"
  1782. msgid "On buildplate when possible"
  1783. msgstr "Na placa de construção quando possível"
  1784. msgctxt "support_tree_rest_preference option graceful"
  1785. msgid "On model if required"
  1786. msgstr "No modelo, se necessário"
  1787. msgctxt "print_sequence option one_at_a_time"
  1788. msgid "One at a Time"
  1789. msgstr "Individualmente"
  1790. msgctxt "retraction_hop_only_when_collides description"
  1791. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  1792. 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."
  1793. msgctxt "ironing_only_highest_layer description"
  1794. 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."
  1795. 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."
  1796. msgctxt "brim_outside_only description"
  1797. 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."
  1798. 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."
  1799. msgctxt "ooze_shield_angle label"
  1800. msgid "Ooze Shield Angle"
  1801. msgstr "Ângulo da proteção contra escorrimentos"
  1802. msgctxt "ooze_shield_dist label"
  1803. msgid "Ooze Shield Distance"
  1804. msgstr "Distância da proteção contra escorrimentos"
  1805. msgctxt "support_tree_branch_reach_limit label"
  1806. msgid "Optimal Branch Range"
  1807. msgstr "Alcance dos Ramos Ideal"
  1808. msgctxt "optimize_wall_printing_order label"
  1809. msgid "Optimize Wall Printing Order"
  1810. msgstr "Otimizar Ordem Paredes"
  1811. msgctxt "optimize_wall_printing_order description"
  1812. 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."
  1813. 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."
  1814. msgctxt "machine_nozzle_tip_outer_diameter label"
  1815. msgid "Outer Nozzle Diameter"
  1816. msgstr "Diâmetro externo do nozzle"
  1817. msgctxt "acceleration_wall_0 label"
  1818. msgid "Outer Wall Acceleration"
  1819. msgstr "Aceleração da parede exterior"
  1820. msgctxt "wall_0_extruder_nr label"
  1821. msgid "Outer Wall Extruder"
  1822. msgstr "Extrusor Parede Exterior"
  1823. msgctxt "wall_0_material_flow label"
  1824. msgid "Outer Wall Flow"
  1825. msgstr "Fluxo de Parede Exterior"
  1826. msgctxt "wall_0_inset label"
  1827. msgid "Outer Wall Inset"
  1828. msgstr "Desvio Parede Exterior"
  1829. msgctxt "jerk_wall_0 label"
  1830. msgid "Outer Wall Jerk"
  1831. msgstr "Jerk da Parede Exterior"
  1832. msgctxt "wall_line_width_0 label"
  1833. msgid "Outer Wall Line Width"
  1834. msgstr "Diâmetro Linha Parede Exterior"
  1835. msgctxt "speed_wall_0 label"
  1836. msgid "Outer Wall Speed"
  1837. msgstr "Velocidade Parede Exterior"
  1838. msgctxt "wall_0_wipe_dist label"
  1839. msgid "Outer Wall Wipe Distance"
  1840. msgstr "Distância Limpeza Parede Exterior"
  1841. msgctxt "inset_direction option outside_in"
  1842. msgid "Outside To Inside"
  1843. msgstr "De fora para dentro"
  1844. msgctxt "wall_overhang_angle label"
  1845. msgid "Overhanging Wall Angle"
  1846. msgstr "Ângulo da parede de saliências"
  1847. msgctxt "wall_overhang_speed_factor label"
  1848. msgid "Overhanging Wall Speed"
  1849. msgstr "Velocidade da parede de saliências"
  1850. msgctxt "wall_overhang_speed_factor description"
  1851. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  1852. msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal."
  1853. msgctxt "wipe_pause description"
  1854. msgid "Pause after the unretract."
  1855. msgstr "Coloca a limpeza em pausa após anular a retração."
  1856. msgctxt "bridge_fan_speed description"
  1857. msgid "Percentage fan speed to use when printing bridge walls and skin."
  1858. msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge."
  1859. msgctxt "bridge_fan_speed_2 description"
  1860. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  1861. msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge."
  1862. msgctxt "support_supported_skin_fan_speed description"
  1863. 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."
  1864. 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."
  1865. msgctxt "bridge_fan_speed_3 description"
  1866. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  1867. msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge."
  1868. msgctxt "minimum_polygon_circumference description"
  1869. 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."
  1870. 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."
  1871. msgctxt "support_tree_angle_slow label"
  1872. msgid "Preferred Branch Angle"
  1873. msgstr "Ângulo dos Ramos preferido"
  1874. msgctxt "wall_transition_filter_deviation description"
  1875. 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."
  1876. 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."
  1877. msgctxt "acceleration_prime_tower label"
  1878. msgid "Prime Tower Acceleration"
  1879. msgstr "Aceleração da torre de preparação"
  1880. msgctxt "prime_tower_brim_enable label"
  1881. msgid "Prime Tower Brim"
  1882. msgstr "Aba da torre de preparação"
  1883. msgctxt "prime_tower_flow label"
  1884. msgid "Prime Tower Flow"
  1885. msgstr "Fluxo da torre de preparação"
  1886. msgctxt "jerk_prime_tower label"
  1887. msgid "Prime Tower Jerk"
  1888. msgstr "Jerk da Torre de Preparação"
  1889. msgctxt "prime_tower_line_width label"
  1890. msgid "Prime Tower Line Width"
  1891. msgstr "Diâmetro Linha Torre Preparação"
  1892. msgctxt "prime_tower_min_volume label"
  1893. msgid "Prime Tower Minimum Volume"
  1894. msgstr "Volume mínimo da torre de preparação"
  1895. msgctxt "prime_tower_size label"
  1896. msgid "Prime Tower Size"
  1897. msgstr "Tamanho Torre de Preparação"
  1898. msgctxt "speed_prime_tower label"
  1899. msgid "Prime Tower Speed"
  1900. msgstr "Velocidade da torre de preparação"
  1901. msgctxt "prime_tower_position_x label"
  1902. msgid "Prime Tower X Position"
  1903. msgstr "Posição X da torre de preparação"
  1904. msgctxt "prime_tower_position_y label"
  1905. msgid "Prime Tower Y Position"
  1906. msgstr "Posição Y da torre de preparação"
  1907. msgctxt "prime_tower_brim_enable description"
  1908. 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."
  1909. 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\"."
  1910. msgctxt "acceleration_print label"
  1911. msgid "Print Acceleration"
  1912. msgstr "Aceleração de impressão"
  1913. msgctxt "jerk_print label"
  1914. msgid "Print Jerk"
  1915. msgstr "Jerk da Impressão"
  1916. msgctxt "print_sequence label"
  1917. msgid "Print Sequence"
  1918. msgstr "Sequência de impressão"
  1919. msgctxt "speed_print label"
  1920. msgid "Print Speed"
  1921. msgstr "Velocidade de Impressão"
  1922. msgctxt "fill_outline_gaps label"
  1923. msgid "Print Thin Walls"
  1924. msgstr "Imprimir Paredes Finas"
  1925. msgctxt "prime_tower_enable description"
  1926. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  1927. msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle."
  1928. msgctxt "infill_support_enabled description"
  1929. 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."
  1930. 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."
  1931. msgctxt "ironing_monotonic description"
  1932. 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."
  1933. 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."
  1934. msgctxt "mold_enabled description"
  1935. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  1936. 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."
  1937. msgctxt "fill_outline_gaps description"
  1938. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  1939. msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle."
  1940. msgctxt "bridge_skin_speed_2 description"
  1941. msgid "Print speed to use when printing the second bridge skin layer."
  1942. msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge."
  1943. msgctxt "bridge_skin_speed_3 description"
  1944. msgid "Print speed to use when printing the third bridge skin layer."
  1945. msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge."
  1946. msgctxt "infill_before_walls description"
  1947. 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."
  1948. 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."
  1949. msgctxt "roofing_monotonic description"
  1950. 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."
  1951. 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."
  1952. msgctxt "skin_monotonic description"
  1953. 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."
  1954. 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."
  1955. msgctxt "material_print_temperature label"
  1956. msgid "Printing Temperature"
  1957. msgstr "Temperatura de Impressão"
  1958. msgctxt "material_print_temperature_layer_0 label"
  1959. msgid "Printing Temperature Initial Layer"
  1960. msgstr "Temperatura Impressão Camada Inicial"
  1961. msgctxt "skirt_height description"
  1962. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  1963. msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno."
  1964. msgctxt "alternate_extra_perimeter description"
  1965. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  1966. msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas."
  1967. msgctxt "resolution label"
  1968. msgid "Quality"
  1969. msgstr "Qualidade"
  1970. msgctxt "infill_pattern option quarter_cubic"
  1971. msgid "Quarter Cubic"
  1972. msgstr "Quarto Cúbico"
  1973. msgctxt "adhesion_type option raft"
  1974. msgid "Raft"
  1975. msgstr "Raft"
  1976. msgctxt "raft_airgap label"
  1977. msgid "Raft Air Gap"
  1978. msgstr "Caixa de Ar do Raft"
  1979. msgctxt "raft_base_extruder_nr label"
  1980. msgid "Raft Base Extruder"
  1981. msgstr "Extrusor da base do raft"
  1982. msgctxt "raft_base_fan_speed label"
  1983. msgid "Raft Base Fan Speed"
  1984. msgstr "Velocidade do ventilador inferior do raft"
  1985. msgctxt "raft_base_line_spacing label"
  1986. msgid "Raft Base Line Spacing"
  1987. msgstr "Espaçamento da Linha Base do Raft"
  1988. msgctxt "raft_base_line_width label"
  1989. msgid "Raft Base Line Width"
  1990. msgstr "Diâmetro Linha Base do Raft"
  1991. msgctxt "raft_base_acceleration label"
  1992. msgid "Raft Base Print Acceleration"
  1993. msgstr "Aceleração da Base do Raft"
  1994. msgctxt "raft_base_jerk label"
  1995. msgid "Raft Base Print Jerk"
  1996. msgstr "Jerk de impressão inferior do raft"
  1997. msgctxt "raft_base_speed label"
  1998. msgid "Raft Base Print Speed"
  1999. msgstr "Velocidade da Base do Raft"
  2000. msgctxt "raft_base_thickness label"
  2001. msgid "Raft Base Thickness"
  2002. msgstr "Espessura da Base do Raft"
  2003. msgctxt "raft_base_wall_count label"
  2004. msgid "Raft Base Wall Count"
  2005. msgstr "Número de paredes da base do raft"
  2006. msgctxt "raft_margin label"
  2007. msgid "Raft Extra Margin"
  2008. msgstr "Margem Adicional Raft"
  2009. msgctxt "raft_fan_speed label"
  2010. msgid "Raft Fan Speed"
  2011. msgstr "Velocidade do ventilador do raft"
  2012. msgctxt "raft_interface_extruder_nr label"
  2013. msgid "Raft Middle Extruder"
  2014. msgstr "Extrusor do meio do raft"
  2015. msgctxt "raft_interface_fan_speed label"
  2016. msgid "Raft Middle Fan Speed"
  2017. msgstr "Velocidade do ventilador do meio do raft"
  2018. msgctxt "raft_interface_layers label"
  2019. msgid "Raft Middle Layers"
  2020. msgstr "Camadas do meio do raft"
  2021. msgctxt "raft_interface_line_width label"
  2022. msgid "Raft Middle Line Width"
  2023. msgstr "Diâmetro Linha do Meio do Raft"
  2024. msgctxt "raft_interface_acceleration label"
  2025. msgid "Raft Middle Print Acceleration"
  2026. msgstr "Aceleração do Meio do Raft"
  2027. msgctxt "raft_interface_jerk label"
  2028. msgid "Raft Middle Print Jerk"
  2029. msgstr "Jerk de impressão do meio do raft"
  2030. msgctxt "raft_interface_speed label"
  2031. msgid "Raft Middle Print Speed"
  2032. msgstr "Velocidade do Meio do Raft"
  2033. msgctxt "raft_interface_line_spacing label"
  2034. msgid "Raft Middle Spacing"
  2035. msgstr "Espaçamento do Meio do Raft"
  2036. msgctxt "raft_interface_thickness label"
  2037. msgid "Raft Middle Thickness"
  2038. msgstr "Espessura do Meio do Raft"
  2039. msgctxt "raft_acceleration label"
  2040. msgid "Raft Print Acceleration"
  2041. msgstr "Aceleração Impressão do Raft"
  2042. msgctxt "raft_jerk label"
  2043. msgid "Raft Print Jerk"
  2044. msgstr "Jerk de impressão do raft"
  2045. msgctxt "raft_speed label"
  2046. msgid "Raft Print Speed"
  2047. msgstr "Velocidade Impressão do Raft"
  2048. msgctxt "raft_smoothing label"
  2049. msgid "Raft Smoothing"
  2050. msgstr "Suavização Raft"
  2051. msgctxt "raft_surface_extruder_nr label"
  2052. msgid "Raft Top Extruder"
  2053. msgstr "Extrusora superior do raft"
  2054. msgctxt "raft_surface_fan_speed label"
  2055. msgid "Raft Top Fan Speed"
  2056. msgstr "Velocidade do ventilador superior do raft"
  2057. msgctxt "raft_surface_thickness label"
  2058. msgid "Raft Top Layer Thickness"
  2059. msgstr "Espessura Camada Superior Raft"
  2060. msgctxt "raft_surface_layers label"
  2061. msgid "Raft Top Layers"
  2062. msgstr "Camadas Superiores do Raft"
  2063. msgctxt "raft_surface_line_width label"
  2064. msgid "Raft Top Line Width"
  2065. msgstr "Diâmetro Linha Superior do Raft"
  2066. msgctxt "raft_surface_acceleration label"
  2067. msgid "Raft Top Print Acceleration"
  2068. msgstr "Aceleração do Topo do Raft"
  2069. msgctxt "raft_surface_jerk label"
  2070. msgid "Raft Top Print Jerk"
  2071. msgstr "Jerk de impressão superior do raft"
  2072. msgctxt "raft_surface_speed label"
  2073. msgid "Raft Top Print Speed"
  2074. msgstr "Velocidade do Topo do Raft"
  2075. msgctxt "raft_surface_line_spacing label"
  2076. msgid "Raft Top Spacing"
  2077. msgstr "Espaçamento Superior do Raft"
  2078. msgctxt "z_seam_type option random"
  2079. msgid "Random"
  2080. msgstr "Aleatório"
  2081. msgctxt "infill_randomize_start_location label"
  2082. msgid "Randomize Infill Start"
  2083. msgstr "Início aleatório do enchimento"
  2084. msgctxt "infill_randomize_start_location description"
  2085. 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."
  2086. 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."
  2087. msgctxt "magic_fuzzy_skin_enabled description"
  2088. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  2089. msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso."
  2090. msgctxt "machine_shape option rectangular"
  2091. msgid "Rectangular"
  2092. msgstr ""
  2093. msgctxt "cool_fan_speed_min label"
  2094. msgid "Regular Fan Speed"
  2095. msgstr "Velocidade Normal Ventiladores"
  2096. msgctxt "cool_fan_full_at_height label"
  2097. msgid "Regular Fan Speed at Height"
  2098. msgstr "Altura Velocidade Normal Ventilador"
  2099. msgctxt "cool_fan_full_layer label"
  2100. msgid "Regular Fan Speed at Layer"
  2101. msgstr "Camada Velocidade Normal Ventilador"
  2102. msgctxt "cool_min_layer_time_fan_speed_max label"
  2103. msgid "Regular/Maximum Fan Speed Threshold"
  2104. msgstr "Limiar Normal / Máximo Velocidade Ventilador"
  2105. msgctxt "relative_extrusion label"
  2106. msgid "Relative Extrusion"
  2107. msgstr "Extrusão relativa"
  2108. msgctxt "meshfix_union_all_remove_holes label"
  2109. msgid "Remove All Holes"
  2110. msgstr "Remover Todos Buracos"
  2111. msgctxt "remove_empty_first_layers label"
  2112. msgid "Remove Empty First Layers"
  2113. msgstr "Remover Camadas Iniciais Vazias"
  2114. msgctxt "carve_multiple_volumes label"
  2115. msgid "Remove Mesh Intersection"
  2116. msgstr "Remover interceção de malhas"
  2117. msgctxt "raft_remove_inside_corners label"
  2118. msgid "Remove Raft Inside Corners"
  2119. msgstr "Remover cantos interiores do raft"
  2120. msgctxt "carve_multiple_volumes description"
  2121. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  2122. 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."
  2123. msgctxt "remove_empty_first_layers description"
  2124. 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."
  2125. 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."
  2126. msgctxt "raft_remove_inside_corners description"
  2127. msgid "Remove inside corners from the raft, causing the raft to become convex."
  2128. msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo."
  2129. msgctxt "meshfix_union_all_remove_holes description"
  2130. 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."
  2131. 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."
  2132. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  2133. msgid "RepRap"
  2134. msgstr "RepRap"
  2135. msgctxt "machine_gcode_flavor option Repetier"
  2136. msgid "Repetier"
  2137. msgstr "Repetier"
  2138. msgctxt "skin_outline_count description"
  2139. 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."
  2140. 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."
  2141. msgctxt "support_tree_rest_preference label"
  2142. msgid "Rest Preference"
  2143. msgstr "Preferência de Apoio"
  2144. msgctxt "travel_retract_before_outer_wall label"
  2145. msgid "Retract Before Outer Wall"
  2146. msgstr "Retrair Antes Parede Exterior"
  2147. msgctxt "retract_at_layer_change label"
  2148. msgid "Retract at Layer Change"
  2149. msgstr "Retrair na Mudança Camada"
  2150. msgctxt "retraction_enable description"
  2151. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2152. msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão."
  2153. msgctxt "wipe_retraction_enable description"
  2154. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2155. msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão."
  2156. msgctxt "retract_at_layer_change description"
  2157. msgid "Retract the filament when the nozzle is moving to the next layer."
  2158. msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte."
  2159. msgctxt "retraction_amount label"
  2160. msgid "Retraction Distance"
  2161. msgstr "Distância de Retração"
  2162. msgctxt "retraction_extra_prime_amount label"
  2163. msgid "Retraction Extra Prime Amount"
  2164. msgstr "Preparação Adicional de Retração"
  2165. msgctxt "retraction_min_travel label"
  2166. msgid "Retraction Minimum Travel"
  2167. msgstr "Deslocação Mínima da Retração"
  2168. msgctxt "retraction_prime_speed label"
  2169. msgid "Retraction Prime Speed"
  2170. msgstr "Velocidade de preparação na retração"
  2171. msgctxt "retraction_retract_speed label"
  2172. msgid "Retraction Retract Speed"
  2173. msgstr "Velocidade Retrair na Retração"
  2174. msgctxt "retraction_speed label"
  2175. msgid "Retraction Speed"
  2176. msgstr "Velocidade de Retração"
  2177. msgctxt "z_seam_position option right"
  2178. msgid "Right"
  2179. msgstr "Direita"
  2180. msgctxt "machine_scale_fan_speed_zero_to_one label"
  2181. msgid "Scale Fan Speed To 0-1"
  2182. msgstr "Ajustar a velocidade do ventilador entre 0-1"
  2183. msgctxt "machine_scale_fan_speed_zero_to_one description"
  2184. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  2185. msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256."
  2186. msgctxt "material_shrinkage_percentage label"
  2187. msgid "Scaling Factor Shrinkage Compensation"
  2188. msgstr "Compensação de redução do fator de escala"
  2189. msgctxt "support_meshes_present label"
  2190. msgid "Scene Has Support Meshes"
  2191. msgstr "O cenário tem malhas de suporte"
  2192. msgctxt "z_seam_corner label"
  2193. msgid "Seam Corner Preference"
  2194. msgstr "Preferência Canto Junta"
  2195. msgctxt "draft_shield_height_limitation description"
  2196. 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."
  2197. 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."
  2198. msgctxt "dual description"
  2199. msgid "Settings used for printing with multiple extruders."
  2200. msgstr "Definições utilizadas para imprimir com vários extrusores."
  2201. msgctxt "command_line_settings description"
  2202. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  2203. msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura."
  2204. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  2205. msgid "Shared Nozzle Initial Retraction"
  2206. msgstr "Retração inicial do bocal partilhado"
  2207. msgctxt "z_seam_type option sharpest_corner"
  2208. msgid "Sharpest Corner"
  2209. msgstr "Canto mais Acentuado"
  2210. msgctxt "shell description"
  2211. msgid "Shell"
  2212. msgstr "Invólucro"
  2213. msgctxt "z_seam_type option shortest"
  2214. msgid "Shortest"
  2215. msgstr "Mais curto"
  2216. msgctxt "machine_show_variants label"
  2217. msgid "Show Machine Variants"
  2218. msgstr "Mostrar Variantes da Máquina"
  2219. msgctxt "skin_edge_support_layers label"
  2220. msgid "Skin Edge Support Layers"
  2221. msgstr "Camadas do Suporte da Aresta de Revestimento"
  2222. msgctxt "skin_edge_support_thickness label"
  2223. msgid "Skin Edge Support Thickness"
  2224. msgstr "Espessura do Suporte da Aresta de Revestimento"
  2225. msgctxt "expand_skins_expand_distance label"
  2226. msgid "Skin Expand Distance"
  2227. msgstr "Distância Expansão Revestimento"
  2228. msgctxt "skin_overlap_mm label"
  2229. msgid "Skin Overlap"
  2230. msgstr "Sobreposição Revestimento (mm)"
  2231. msgctxt "skin_overlap label"
  2232. msgid "Skin Overlap Percentage"
  2233. msgstr "Sobreposição Revestimento (%)"
  2234. msgctxt "skin_preshrink label"
  2235. msgid "Skin Removal Width"
  2236. msgstr "Largura Remoção Revestimento"
  2237. msgctxt "min_skin_width_for_expansion description"
  2238. 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."
  2239. 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."
  2240. msgctxt "support_zag_skip_count description"
  2241. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  2242. msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte."
  2243. msgctxt "support_skip_some_zags description"
  2244. 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."
  2245. 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."
  2246. msgctxt "adhesion_type option skirt"
  2247. msgid "Skirt"
  2248. msgstr "Contorno"
  2249. msgctxt "skirt_gap label"
  2250. msgid "Skirt Distance"
  2251. msgstr "Distância Contorno"
  2252. msgctxt "skirt_height label"
  2253. msgid "Skirt Height"
  2254. msgstr "Altura do contorno"
  2255. msgctxt "skirt_line_count label"
  2256. msgid "Skirt Line Count"
  2257. msgstr "Número Linhas Contorno"
  2258. msgctxt "acceleration_skirt_brim label"
  2259. msgid "Skirt/Brim Acceleration"
  2260. msgstr "Aceleração Contorno/Aba"
  2261. msgctxt "skirt_brim_extruder_nr label"
  2262. msgid "Skirt/Brim Extruder"
  2263. msgstr "Extrusor do contorno/aba"
  2264. msgctxt "skirt_brim_material_flow label"
  2265. msgid "Skirt/Brim Flow"
  2266. msgstr "Fluxo de Contorno/Aba"
  2267. msgctxt "jerk_skirt_brim label"
  2268. msgid "Skirt/Brim Jerk"
  2269. msgstr "Jerk de Contorno/Aba"
  2270. msgctxt "skirt_brim_line_width label"
  2271. msgid "Skirt/Brim Line Width"
  2272. msgstr "Diâmetro Linha Contorno/Aba"
  2273. msgctxt "skirt_brim_minimal_length label"
  2274. msgid "Skirt/Brim Minimum Length"
  2275. msgstr "Comprimento Mínimo Contorno/Aba"
  2276. msgctxt "skirt_brim_speed label"
  2277. msgid "Skirt/Brim Speed"
  2278. msgstr "Velocidade Contorno/Aba"
  2279. msgctxt "slicing_tolerance label"
  2280. msgid "Slicing Tolerance"
  2281. msgstr "Tolerância do Seccionamento"
  2282. msgctxt "small_feature_speed_factor_0 label"
  2283. msgid "Small Feature Initial Layer Speed"
  2284. msgstr "Velocidade da camada inicial de partes pequenas"
  2285. msgctxt "small_feature_max_length label"
  2286. msgid "Small Feature Max Length"
  2287. msgstr "Comprimento máximo do elemento pequeno"
  2288. msgctxt "small_feature_speed_factor label"
  2289. msgid "Small Feature Speed"
  2290. msgstr "Velocidade de elemento pequeno"
  2291. msgctxt "small_hole_max_size label"
  2292. msgid "Small Hole Max Size"
  2293. msgstr "Tamanho máximo do buraco pequeno"
  2294. msgctxt "cool_min_temperature label"
  2295. msgid "Small Layer Printing Temperature"
  2296. msgstr "Temperatura de impressão de camada pequena"
  2297. msgctxt "small_skin_on_surface label"
  2298. msgid "Small Top/Bottom On Surface"
  2299. msgstr ""
  2300. msgctxt "small_skin_width label"
  2301. msgid "Small Top/Bottom Width"
  2302. msgstr "Largura Mínima Superior/Inferior"
  2303. msgctxt "small_feature_speed_factor_0 description"
  2304. 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."
  2305. 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."
  2306. msgctxt "small_feature_speed_factor description"
  2307. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  2308. 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."
  2309. msgctxt "small_skin_width description"
  2310. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  2311. msgstr ""
  2312. msgctxt "brim_smart_ordering label"
  2313. msgid "Smart Brim"
  2314. msgstr "Aba Inteligente"
  2315. msgctxt "z_seam_corner option z_seam_corner_weighted"
  2316. msgid "Smart Hiding"
  2317. msgstr "Ocultação Inteligente"
  2318. msgctxt "smooth_spiralized_contours label"
  2319. msgid "Smooth Spiralized Contours"
  2320. msgstr "\"Spiralize\" Suavizar Contornos"
  2321. msgctxt "smooth_spiralized_contours description"
  2322. 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."
  2323. 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."
  2324. msgctxt "retraction_extra_prime_amount description"
  2325. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2326. msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui."
  2327. msgctxt "wipe_retraction_extra_prime_amount description"
  2328. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  2329. msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui."
  2330. msgctxt "blackmagic label"
  2331. msgid "Special Modes"
  2332. msgstr "Modos Especiais"
  2333. msgctxt "speed description"
  2334. msgid "Speed"
  2335. msgstr "Velocidade"
  2336. msgctxt "speed label"
  2337. msgid "Speed"
  2338. msgstr "Velocidade"
  2339. msgctxt "wipe_hop_speed description"
  2340. msgid "Speed to move the z-axis during the hop."
  2341. msgstr "Velocidade para mover o eixo Z durante o salto."
  2342. msgctxt "magic_spiralize label"
  2343. msgid "Spiralize Outer Contour"
  2344. msgstr "\"Spiralize\" Contorno Exterior"
  2345. msgctxt "magic_spiralize description"
  2346. 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."
  2347. 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."
  2348. msgctxt "material_standby_temperature label"
  2349. msgid "Standby Temperature"
  2350. msgstr "Temperatura em Espera"
  2351. msgctxt "machine_start_gcode label"
  2352. msgid "Start G-code"
  2353. msgstr "G-code Inicial"
  2354. msgctxt "z_seam_type description"
  2355. 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."
  2356. 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."
  2357. msgctxt "machine_steps_per_mm_e label"
  2358. msgid "Steps per Millimeter (E)"
  2359. msgstr "Passos por Milímetro (E)"
  2360. msgctxt "machine_steps_per_mm_x label"
  2361. msgid "Steps per Millimeter (X)"
  2362. msgstr "Passos por Milímetro (X)"
  2363. msgctxt "machine_steps_per_mm_y label"
  2364. msgid "Steps per Millimeter (Y)"
  2365. msgstr "Passos por Milímetro (Y)"
  2366. msgctxt "machine_steps_per_mm_z label"
  2367. msgid "Steps per Millimeter (Z)"
  2368. msgstr "Passos por Milímetro (Z)"
  2369. msgctxt "support description"
  2370. msgid "Support"
  2371. msgstr "Suportes"
  2372. msgctxt "support label"
  2373. msgid "Support"
  2374. msgstr "Suportes"
  2375. msgctxt "acceleration_support label"
  2376. msgid "Support Acceleration"
  2377. msgstr "Aceleração de suporte"
  2378. msgctxt "support_bottom_distance label"
  2379. msgid "Support Bottom Distance"
  2380. msgstr "Distância inferior do suporte"
  2381. msgctxt "support_bottom_wall_count label"
  2382. msgid "Support Bottom Wall Line Count"
  2383. msgstr "Contagem das linhas da parede inferior de suporte"
  2384. msgctxt "support_brim_line_count label"
  2385. msgid "Support Brim Line Count"
  2386. msgstr "Contagem de linhas da aba do suporte"
  2387. msgctxt "support_brim_width label"
  2388. msgid "Support Brim Width"
  2389. msgstr "Largura da aba do suporte"
  2390. msgctxt "support_zag_skip_count label"
  2391. msgid "Support Chunk Line Count"
  2392. msgstr "Número de linhas do bloco de suporte"
  2393. msgctxt "support_skip_zag_per_mm label"
  2394. msgid "Support Chunk Size"
  2395. msgstr "Tamanho do bloco de suporte"
  2396. msgctxt "support_infill_rate label"
  2397. msgid "Support Density"
  2398. msgstr "Densidade do Suporte"
  2399. msgctxt "support_xy_overrides_z label"
  2400. msgid "Support Distance Priority"
  2401. msgstr "Prioridade da distância de suporte"
  2402. msgctxt "support_extruder_nr label"
  2403. msgid "Support Extruder"
  2404. msgstr "Extrusor dos Suportes"
  2405. msgctxt "acceleration_support_bottom label"
  2406. msgid "Support Floor Acceleration"
  2407. msgstr "Aceleração do piso de suporte"
  2408. msgctxt "support_bottom_density label"
  2409. msgid "Support Floor Density"
  2410. msgstr "Densidade do piso de suporte"
  2411. msgctxt "support_bottom_extruder_nr label"
  2412. msgid "Support Floor Extruder"
  2413. msgstr "Extrusor de piso de suporte"
  2414. msgctxt "support_bottom_material_flow label"
  2415. msgid "Support Floor Flow"
  2416. msgstr "Fluxo do Chão do Suporte"
  2417. msgctxt "support_bottom_offset label"
  2418. msgid "Support Floor Horizontal Expansion"
  2419. msgstr "Expansão horizontal do piso de suporte"
  2420. msgctxt "jerk_support_bottom label"
  2421. msgid "Support Floor Jerk"
  2422. msgstr "Jerk do Piso do Suporte"
  2423. msgctxt "support_bottom_angles label"
  2424. msgid "Support Floor Line Directions"
  2425. msgstr "Direções da linha do piso do suporte"
  2426. msgctxt "support_bottom_line_distance label"
  2427. msgid "Support Floor Line Distance"
  2428. msgstr "Distância da linha do piso de suporte"
  2429. msgctxt "support_bottom_line_width label"
  2430. msgid "Support Floor Line Width"
  2431. msgstr "Diâmetro Linha Piso Suporte"
  2432. msgctxt "support_bottom_pattern label"
  2433. msgid "Support Floor Pattern"
  2434. msgstr "Padrão Piso Suporte"
  2435. msgctxt "speed_support_bottom label"
  2436. msgid "Support Floor Speed"
  2437. msgstr "Velocidade do piso de suporte"
  2438. msgctxt "support_bottom_height label"
  2439. msgid "Support Floor Thickness"
  2440. msgstr "Espessura do piso de suporte"
  2441. msgctxt "support_material_flow label"
  2442. msgid "Support Flow"
  2443. msgstr "Fluxo de Suporte"
  2444. msgctxt "support_offset label"
  2445. msgid "Support Horizontal Expansion"
  2446. msgstr "Expansão horizontal de suporte"
  2447. msgctxt "acceleration_support_infill label"
  2448. msgid "Support Infill Acceleration"
  2449. msgstr "Aceleração de enchimento do suporte"
  2450. msgctxt "support_infill_extruder_nr label"
  2451. msgid "Support Infill Extruder"
  2452. msgstr "Extrusor de enchimento do suporte"
  2453. msgctxt "jerk_support_infill label"
  2454. msgid "Support Infill Jerk"
  2455. msgstr "Jerk do Enchimento do Suporte"
  2456. msgctxt "support_infill_sparse_thickness label"
  2457. msgid "Support Infill Layer Thickness"
  2458. msgstr "Espessura da camada de enchimento de suporte"
  2459. msgctxt "support_infill_angles label"
  2460. msgid "Support Infill Line Directions"
  2461. msgstr "Direção da linha de enchimento do suporte"
  2462. msgctxt "speed_support_infill label"
  2463. msgid "Support Infill Speed"
  2464. msgstr "Velocidade de enchimento do suporte"
  2465. msgctxt "acceleration_support_interface label"
  2466. msgid "Support Interface Acceleration"
  2467. msgstr "Aceleração da interface de suporte"
  2468. msgctxt "support_interface_density label"
  2469. msgid "Support Interface Density"
  2470. msgstr "Densidade da interface de suporte"
  2471. msgctxt "support_interface_extruder_nr label"
  2472. msgid "Support Interface Extruder"
  2473. msgstr "Extrusor de interface de suporte"
  2474. msgctxt "support_interface_material_flow label"
  2475. msgid "Support Interface Flow"
  2476. msgstr "Fluxo da Interface do Suporte"
  2477. msgctxt "support_interface_offset label"
  2478. msgid "Support Interface Horizontal Expansion"
  2479. msgstr "Expansão horizontal da interface de suporte"
  2480. msgctxt "jerk_support_interface label"
  2481. msgid "Support Interface Jerk"
  2482. msgstr "Jerk da Interface do Suporte"
  2483. msgctxt "support_interface_angles label"
  2484. msgid "Support Interface Line Directions"
  2485. msgstr "Direções da linha da interface do suporte"
  2486. msgctxt "support_interface_line_width label"
  2487. msgid "Support Interface Line Width"
  2488. msgstr "Diâmetro Linha Interface Suporte"
  2489. msgctxt "support_interface_pattern label"
  2490. msgid "Support Interface Pattern"
  2491. msgstr "Padrão da interface de suporte"
  2492. msgctxt "support_interface_priority label"
  2493. msgid "Support Interface Priority"
  2494. msgstr "Prioridade da Interface e Suporte"
  2495. msgctxt "support_interface_skip_height label"
  2496. msgid "Support Interface Resolution"
  2497. msgstr "Resolução Interface Suporte"
  2498. msgctxt "speed_support_interface label"
  2499. msgid "Support Interface Speed"
  2500. msgstr "Velocidade da interface de suporte"
  2501. msgctxt "support_interface_height label"
  2502. msgid "Support Interface Thickness"
  2503. msgstr "Espessura Interface Suporte"
  2504. msgctxt "support_interface_wall_count label"
  2505. msgid "Support Interface Wall Line Count"
  2506. msgstr "Contagem das linhas de parede da interface de suporte"
  2507. msgctxt "jerk_support label"
  2508. msgid "Support Jerk"
  2509. msgstr "Jerk do Suporte"
  2510. msgctxt "support_join_distance label"
  2511. msgid "Support Join Distance"
  2512. msgstr "Distância da junção do suporte"
  2513. msgctxt "support_line_distance label"
  2514. msgid "Support Line Distance"
  2515. msgstr "Distância da linha de suporte"
  2516. msgctxt "support_line_width label"
  2517. msgid "Support Line Width"
  2518. msgstr "Diâmetro Linha Suportes"
  2519. msgctxt "support_mesh label"
  2520. msgid "Support Mesh"
  2521. msgstr "Malha de suporte"
  2522. msgctxt "support_angle label"
  2523. msgid "Support Overhang Angle"
  2524. msgstr "Ângulo Saliência para Suportes"
  2525. msgctxt "support_pattern label"
  2526. msgid "Support Pattern"
  2527. msgstr "Padrão de Suportes"
  2528. msgctxt "support_type label"
  2529. msgid "Support Placement"
  2530. msgstr "Colocação do suporte"
  2531. msgctxt "acceleration_support_roof label"
  2532. msgid "Support Roof Acceleration"
  2533. msgstr "Aceleração do tecto de suporte"
  2534. msgctxt "support_roof_density label"
  2535. msgid "Support Roof Density"
  2536. msgstr "Densidade do tecto de suporte"
  2537. msgctxt "support_roof_extruder_nr label"
  2538. msgid "Support Roof Extruder"
  2539. msgstr "Extrusor de tecto de suporte"
  2540. msgctxt "support_roof_material_flow label"
  2541. msgid "Support Roof Flow"
  2542. msgstr "Fluxo do Teto do Suporte"
  2543. msgctxt "support_roof_offset label"
  2544. msgid "Support Roof Horizontal Expansion"
  2545. msgstr "Expansão horizontal do teto de suporte"
  2546. msgctxt "jerk_support_roof label"
  2547. msgid "Support Roof Jerk"
  2548. msgstr "Jerk do Tecto do Suporte"
  2549. msgctxt "support_roof_angles label"
  2550. msgid "Support Roof Line Directions"
  2551. msgstr "Direções da linha do teto do suporte"
  2552. msgctxt "support_roof_line_distance label"
  2553. msgid "Support Roof Line Distance"
  2554. msgstr "Distância da linha do tecto de suporte"
  2555. msgctxt "support_roof_line_width label"
  2556. msgid "Support Roof Line Width"
  2557. msgstr "Diâmetro Linha Tecto Suporte"
  2558. msgctxt "support_roof_pattern label"
  2559. msgid "Support Roof Pattern"
  2560. msgstr "Padrão do tecto de suporte"
  2561. msgctxt "speed_support_roof label"
  2562. msgid "Support Roof Speed"
  2563. msgstr "Velocidade do tecto de suporte"
  2564. msgctxt "support_roof_height label"
  2565. msgid "Support Roof Thickness"
  2566. msgstr "Espessura do tecto de suporte"
  2567. msgctxt "support_roof_wall_count label"
  2568. msgid "Support Roof Wall Line Count"
  2569. msgstr "Contagem das linhas de parede do telhado de suporte"
  2570. msgctxt "speed_support label"
  2571. msgid "Support Speed"
  2572. msgstr "Velocidade Suporte"
  2573. msgctxt "support_bottom_stair_step_height label"
  2574. msgid "Support Stair Step Height"
  2575. msgstr "Altura Degraus Suporte"
  2576. msgctxt "support_bottom_stair_step_width label"
  2577. msgid "Support Stair Step Maximum Width"
  2578. msgstr "Largura Máxima Degraus Suporte"
  2579. msgctxt "support_bottom_stair_step_min_slope label"
  2580. msgid "Support Stair Step Minimum Slope Angle"
  2581. msgstr "Ângulo de declive mínimo do degrau da escada de suporte"
  2582. msgctxt "support_structure label"
  2583. msgid "Support Structure"
  2584. msgstr "Estrutura de suporte"
  2585. msgctxt "support_top_distance label"
  2586. msgid "Support Top Distance"
  2587. msgstr "Distância superior do suporte"
  2588. msgctxt "support_wall_count label"
  2589. msgid "Support Wall Line Count"
  2590. msgstr "Número Linhas Paredes Suporte"
  2591. msgctxt "support_xy_distance label"
  2592. msgid "Support X/Y Distance"
  2593. msgstr "Distância X/Y do suporte"
  2594. msgctxt "support_z_distance label"
  2595. msgid "Support Z Distance"
  2596. msgstr "Distância Z de suporte"
  2597. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2598. msgid "Support lines preferred"
  2599. msgstr "Tipo de linhas de suporte preferidas"
  2600. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2601. msgid "Support preferred"
  2602. msgstr "Estrutura suporte preferida"
  2603. msgctxt "support_supported_skin_fan_speed label"
  2604. msgid "Supported Skin Fan Speed"
  2605. msgstr "Velocidade da ventoinha de revestimento suportada"
  2606. msgctxt "magic_mesh_surface_mode option surface"
  2607. msgid "Surface"
  2608. msgstr "Superfície"
  2609. msgctxt "material_surface_energy label"
  2610. msgid "Surface Energy"
  2611. msgstr "Energia da superfície"
  2612. msgctxt "magic_mesh_surface_mode label"
  2613. msgid "Surface Mode"
  2614. msgstr "Modo de superfície"
  2615. msgctxt "material_adhesion_tendency description"
  2616. msgid "Surface adhesion tendency."
  2617. msgstr "A tendência de aderência à superfície."
  2618. msgctxt "material_surface_energy description"
  2619. msgid "Surface energy."
  2620. msgstr "Energia da superfície."
  2621. msgctxt "brim_smart_ordering description"
  2622. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  2623. msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba."
  2624. msgctxt "alternate_carve_order description"
  2625. 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."
  2626. 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."
  2627. msgctxt "adaptive_layer_height_threshold description"
  2628. 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."
  2629. 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."
  2630. msgctxt "layer_start_x description"
  2631. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2632. 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."
  2633. msgctxt "z_seam_x description"
  2634. msgid "The X coordinate of the position near where to start printing each part in a layer."
  2635. msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  2636. msgctxt "extruder_prime_pos_x description"
  2637. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2638. msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão."
  2639. msgctxt "layer_start_y description"
  2640. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2641. msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada."
  2642. msgctxt "z_seam_y description"
  2643. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  2644. msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  2645. msgctxt "extruder_prime_pos_y description"
  2646. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2647. msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão."
  2648. msgctxt "extruder_prime_pos_z description"
  2649. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  2650. msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão."
  2651. msgctxt "acceleration_print_layer_0 description"
  2652. msgid "The acceleration during the printing of the initial layer."
  2653. msgstr "A aceleração durante a impressão da camada inicial."
  2654. msgctxt "acceleration_layer_0 description"
  2655. msgid "The acceleration for the initial layer."
  2656. msgstr "A aceleração da camada inicial."
  2657. msgctxt "acceleration_travel_layer_0 description"
  2658. msgid "The acceleration for travel moves in the initial layer."
  2659. msgstr "A aceleração dos movimentos de deslocação na camada inicial."
  2660. msgctxt "jerk_travel_layer_0 description"
  2661. msgid "The acceleration for travel moves in the initial layer."
  2662. msgstr "A aceleração dos movimentos de deslocação na camada inicial."
  2663. msgctxt "acceleration_wall_x description"
  2664. msgid "The acceleration with which all inner walls are printed."
  2665. msgstr "A aceleração com que todas as paredes interiores são impressas."
  2666. msgctxt "acceleration_infill description"
  2667. msgid "The acceleration with which infill is printed."
  2668. msgstr "A aceleração com que o enchimento é impresso."
  2669. msgctxt "acceleration_ironing description"
  2670. msgid "The acceleration with which ironing is performed."
  2671. msgstr "A aceleração com a qual se realiza o processo de engomar."
  2672. msgctxt "acceleration_print description"
  2673. msgid "The acceleration with which printing happens."
  2674. msgstr "A aceleração com que é efetuada a impressão."
  2675. msgctxt "raft_base_acceleration description"
  2676. msgid "The acceleration with which the base raft layer is printed."
  2677. msgstr "A aceleração com que a camada inferior (base) do raft é impressa."
  2678. msgctxt "acceleration_support_bottom description"
  2679. 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."
  2680. 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."
  2681. msgctxt "acceleration_support_infill description"
  2682. msgid "The acceleration with which the infill of support is printed."
  2683. msgstr "A aceleração com que o enchimento do suporte é impresso."
  2684. msgctxt "raft_interface_acceleration description"
  2685. msgid "The acceleration with which the middle raft layer is printed."
  2686. msgstr "A aceleração com que a camada do meio do raft é impressa."
  2687. msgctxt "acceleration_wall_0 description"
  2688. msgid "The acceleration with which the outermost walls are printed."
  2689. msgstr "A aceleração com que as paredes exteriores são impressas."
  2690. msgctxt "acceleration_prime_tower description"
  2691. msgid "The acceleration with which the prime tower is printed."
  2692. msgstr "A aceleração com que a torre de preparação é impressa."
  2693. msgctxt "raft_acceleration description"
  2694. msgid "The acceleration with which the raft is printed."
  2695. msgstr "A aceleração com que o raft é impresso."
  2696. msgctxt "acceleration_support_interface description"
  2697. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2698. 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."
  2699. msgctxt "acceleration_support_roof description"
  2700. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2701. 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."
  2702. msgctxt "acceleration_skirt_brim description"
  2703. 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."
  2704. 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."
  2705. msgctxt "acceleration_support description"
  2706. msgid "The acceleration with which the support structure is printed."
  2707. msgstr "A aceleração com que a estrutura de suporte é impressa."
  2708. msgctxt "raft_surface_acceleration description"
  2709. msgid "The acceleration with which the top raft layers are printed."
  2710. msgstr "A aceleração com que as camadas superiores do raft são impressas."
  2711. msgctxt "acceleration_wall description"
  2712. msgid "The acceleration with which the walls are printed."
  2713. msgstr "A aceleração com que as paredes são impressas."
  2714. msgctxt "acceleration_roofing description"
  2715. msgid "The acceleration with which top surface skin layers are printed."
  2716. msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas."
  2717. msgctxt "acceleration_topbottom description"
  2718. msgid "The acceleration with which top/bottom layers are printed."
  2719. msgstr "A aceleração com que as camadas superiores/inferiores são impressas."
  2720. msgctxt "acceleration_travel description"
  2721. msgid "The acceleration with which travel moves are made."
  2722. msgstr "A aceleração com que os movimentos de deslocação são efetuados."
  2723. msgctxt "ironing_flow description"
  2724. 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."
  2725. 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."
  2726. msgctxt "infill_overlap description"
  2727. 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."
  2728. 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."
  2729. msgctxt "infill_overlap_mm description"
  2730. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  2731. 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."
  2732. msgctxt "switch_extruder_retraction_amount description"
  2733. 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."
  2734. 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."
  2735. msgctxt "machine_nozzle_expansion_angle description"
  2736. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  2737. msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle."
  2738. msgctxt "support_tower_roof_angle description"
  2739. 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."
  2740. 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."
  2741. msgctxt "mold_angle description"
  2742. 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."
  2743. 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."
  2744. msgctxt "support_tree_branch_diameter_angle description"
  2745. 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."
  2746. 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."
  2747. msgctxt "support_conical_angle description"
  2748. 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."
  2749. 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."
  2750. msgctxt "magic_fuzzy_skin_point_density description"
  2751. 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."
  2752. 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."
  2753. msgctxt "magic_fuzzy_skin_point_dist description"
  2754. 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."
  2755. 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."
  2756. msgctxt "machine_acceleration description"
  2757. msgid "The default acceleration of print head movement."
  2758. msgstr "A aceleração predefinida do movimento da cabeça de impressão."
  2759. msgctxt "default_material_print_temperature description"
  2760. 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"
  2761. 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"
  2762. msgctxt "default_material_bed_temperature description"
  2763. 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"
  2764. 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"
  2765. msgctxt "bridge_skin_density description"
  2766. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2767. msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  2768. msgctxt "support_bottom_density description"
  2769. 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."
  2770. 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."
  2771. msgctxt "support_roof_density description"
  2772. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2773. 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."
  2774. msgctxt "bridge_skin_density_2 description"
  2775. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2776. msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  2777. msgctxt "bridge_skin_density_3 description"
  2778. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  2779. msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento."
  2780. msgctxt "machine_depth description"
  2781. msgid "The depth (Y-direction) of the printable area."
  2782. msgstr "A profundidade (direção Y) da área de impressão."
  2783. msgctxt "support_tower_diameter description"
  2784. msgid "The diameter of a special tower."
  2785. msgstr "O diâmetro de uma torre especial."
  2786. msgctxt "support_tree_branch_diameter description"
  2787. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2788. 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."
  2789. msgctxt "support_tree_tip_diameter description"
  2790. msgid "The diameter of the top of the tip of the branches of tree support."
  2791. msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore."
  2792. msgctxt "machine_feeder_wheel_diameter description"
  2793. msgid "The diameter of the wheel that drives the material in the feeder."
  2794. msgstr "O diâmetro da roda que conduz o material pelo alimentador."
  2795. msgctxt "support_tree_max_diameter description"
  2796. 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."
  2797. 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."
  2798. msgctxt "adaptive_layer_height_variation_step description"
  2799. msgid "The difference in height of the next layer height compared to the previous one."
  2800. msgstr "A diferença de espessura da camada seguinte em comparação com a anterior."
  2801. msgctxt "ironing_line_spacing description"
  2802. msgid "The distance between the lines of ironing."
  2803. msgstr "A distância entre as linhas de engomar."
  2804. msgctxt "travel_avoid_distance description"
  2805. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2806. msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação."
  2807. msgctxt "raft_base_line_spacing description"
  2808. 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."
  2809. 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."
  2810. msgctxt "raft_interface_line_spacing description"
  2811. 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."
  2812. 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."
  2813. msgctxt "raft_surface_line_spacing description"
  2814. 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."
  2815. 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."
  2816. msgctxt "interlocking_depth description"
  2817. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  2818. 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."
  2819. msgctxt "brim_width description"
  2820. 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."
  2821. 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."
  2822. msgctxt "interlocking_boundary_avoidance description"
  2823. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  2824. msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células."
  2825. msgctxt "machine_heat_zone_length description"
  2826. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  2827. msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento."
  2828. msgctxt "bottom_skin_expand_distance description"
  2829. 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."
  2830. 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."
  2831. msgctxt "expand_skins_expand_distance description"
  2832. 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."
  2833. 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."
  2834. msgctxt "top_skin_expand_distance description"
  2835. 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."
  2836. 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."
  2837. msgctxt "wipe_move_distance description"
  2838. msgid "The distance to move the head back and forth across the brush."
  2839. msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova."
  2840. msgctxt "lightning_infill_prune_angle description"
  2841. 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."
  2842. 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."
  2843. msgctxt "material_extrusion_cool_down_speed description"
  2844. 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."
  2845. 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."
  2846. msgctxt "support_extruder_nr_layer_0 description"
  2847. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2848. msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores."
  2849. msgctxt "raft_base_extruder_nr description"
  2850. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2851. msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos."
  2852. msgctxt "support_bottom_extruder_nr description"
  2853. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2854. msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores."
  2855. msgctxt "support_infill_extruder_nr description"
  2856. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2857. msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores."
  2858. msgctxt "raft_interface_extruder_nr description"
  2859. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2860. 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."
  2861. msgctxt "support_interface_extruder_nr description"
  2862. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2863. msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores."
  2864. msgctxt "support_roof_extruder_nr description"
  2865. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2866. msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores."
  2867. msgctxt "skirt_brim_extruder_nr description"
  2868. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2869. msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos."
  2870. msgctxt "adhesion_extruder_nr description"
  2871. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2872. msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores."
  2873. msgctxt "support_extruder_nr description"
  2874. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2875. msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores."
  2876. msgctxt "raft_surface_extruder_nr description"
  2877. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2878. msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos."
  2879. msgctxt "infill_extruder_nr description"
  2880. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  2881. msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores."
  2882. msgctxt "wall_x_extruder_nr description"
  2883. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  2884. msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores."
  2885. msgctxt "wall_0_extruder_nr description"
  2886. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  2887. msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores."
  2888. msgctxt "top_bottom_extruder_nr description"
  2889. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  2890. 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."
  2891. msgctxt "roofing_extruder_nr description"
  2892. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  2893. 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."
  2894. msgctxt "wall_extruder_nr description"
  2895. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  2896. msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores."
  2897. msgctxt "raft_base_fan_speed description"
  2898. msgid "The fan speed for the base raft layer."
  2899. msgstr "A velocidade do ventilador da camada inferior do raft."
  2900. msgctxt "raft_interface_fan_speed description"
  2901. msgid "The fan speed for the middle raft layer."
  2902. msgstr "A velocidade do ventilador da camada do meio do raft."
  2903. msgctxt "raft_fan_speed description"
  2904. msgid "The fan speed for the raft."
  2905. msgstr "A velocidade do ventilador do raft."
  2906. msgctxt "raft_surface_fan_speed description"
  2907. msgid "The fan speed for the top raft layers."
  2908. msgstr "A velocidade do ventilador das camadas superiores do raft."
  2909. msgctxt "cross_infill_density_image description"
  2910. 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."
  2911. 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."
  2912. msgctxt "cross_support_density_image description"
  2913. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  2914. 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."
  2915. msgctxt "speed_slowdown_layers description"
  2916. 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."
  2917. 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."
  2918. msgctxt "raft_airgap description"
  2919. 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."
  2920. 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."
  2921. msgctxt "machine_height description"
  2922. msgid "The height (Z-direction) of the printable area."
  2923. msgstr "A altura (direção Z) da área de impressão."
  2924. msgctxt "mold_roof_height description"
  2925. msgid "The height above horizontal parts in your model which to print mold."
  2926. msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde."
  2927. msgctxt "cool_fan_full_at_height description"
  2928. 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."
  2929. 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."
  2930. msgctxt "gantry_height description"
  2931. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  2932. msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)."
  2933. msgctxt "machine_nozzle_head_distance description"
  2934. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  2935. msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão."
  2936. msgctxt "retraction_hop_after_extruder_switch_height description"
  2937. msgid "The height difference when performing a Z Hop after extruder switch."
  2938. msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor."
  2939. msgctxt "retraction_hop description"
  2940. msgid "The height difference when performing a Z Hop."
  2941. msgstr "A diferença de altura ao efetuar um salto Z."
  2942. msgctxt "wipe_hop_amount description"
  2943. msgid "The height difference when performing a Z Hop."
  2944. msgstr "A diferença de altura ao efetuar um salto Z."
  2945. msgctxt "layer_height description"
  2946. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  2947. 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."
  2948. msgctxt "gradual_infill_step_height description"
  2949. msgid "The height of infill of a given density before switching to half the density."
  2950. msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade."
  2951. msgctxt "gradual_support_infill_step_height description"
  2952. msgid "The height of support infill of a given density before switching to half the density."
  2953. msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade."
  2954. msgctxt "interlocking_beam_layer_count description"
  2955. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2956. 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."
  2957. msgctxt "interlocking_orientation description"
  2958. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  2959. 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."
  2960. msgctxt "layer_height_0 description"
  2961. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  2962. msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção."
  2963. msgctxt "support_bottom_stair_step_height description"
  2964. 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."
  2965. 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."
  2966. msgctxt "brim_gap description"
  2967. 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."
  2968. 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."
  2969. msgctxt "skirt_gap description"
  2970. msgid ""
  2971. "The horizontal distance between the skirt and the first layer of the print.\n"
  2972. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2973. msgstr ""
  2974. "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão.\n"
  2975. "Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior."
  2976. msgctxt "lightning_infill_straightening_angle description"
  2977. 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."
  2978. 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."
  2979. msgctxt "infill_offset_x description"
  2980. msgid "The infill pattern is moved this distance along the X axis."
  2981. msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X."
  2982. msgctxt "infill_offset_y description"
  2983. msgid "The infill pattern is moved this distance along the Y axis."
  2984. msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y."
  2985. msgctxt "machine_nozzle_size description"
  2986. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  2987. msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional."
  2988. msgctxt "raft_base_jerk description"
  2989. msgid "The jerk with which the base raft layer is printed."
  2990. msgstr "O jerk com que a camada da base do raft é impressa."
  2991. msgctxt "raft_interface_jerk description"
  2992. msgid "The jerk with which the middle raft layer is printed."
  2993. msgstr "O jerk com que a camada do meio do raft é impressa."
  2994. msgctxt "raft_jerk description"
  2995. msgid "The jerk with which the raft is printed."
  2996. msgstr "O jerk com que o raft é impresso."
  2997. msgctxt "raft_surface_jerk description"
  2998. msgid "The jerk with which the top raft layers are printed."
  2999. msgstr "O jerk com que as camadas superiores do raft são impressas."
  3000. msgctxt "bottom_skin_preshrink description"
  3001. 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."
  3002. 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."
  3003. msgctxt "skin_preshrink description"
  3004. 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."
  3005. 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."
  3006. msgctxt "top_skin_preshrink description"
  3007. 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."
  3008. 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."
  3009. msgctxt "cool_fan_full_layer description"
  3010. 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."
  3011. 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."
  3012. msgctxt "cool_min_layer_time_fan_speed_max description"
  3013. 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."
  3014. 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."
  3015. msgctxt "retraction_amount description"
  3016. msgid "The length of material retracted during a retraction move."
  3017. msgstr "O comprimento do material retraído durante um movimento de retração."
  3018. msgctxt "machine_buildplate_type description"
  3019. msgid "The material of the build plate installed on the printer."
  3020. msgstr "O material da base de construção instalada na impressora."
  3021. msgctxt "adaptive_layer_height_variation description"
  3022. msgid "The maximum allowed height different from the base layer height."
  3023. msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas."
  3024. msgctxt "ooze_shield_angle description"
  3025. 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."
  3026. 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."
  3027. msgctxt "conical_overhang_angle description"
  3028. 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."
  3029. 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."
  3030. msgctxt "support_tree_angle description"
  3031. 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."
  3032. msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance."
  3033. msgctxt "conical_overhang_hole_size description"
  3034. 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."
  3035. 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."
  3036. msgctxt "meshfix_maximum_deviation description"
  3037. 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."
  3038. 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."
  3039. msgctxt "support_join_distance description"
  3040. 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."
  3041. 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ó."
  3042. msgctxt "flow_rate_max_extrusion_offset description"
  3043. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3044. msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo."
  3045. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3046. 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."
  3047. 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."
  3048. msgctxt "jerk_print_layer_0 description"
  3049. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  3050. msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial."
  3051. msgctxt "jerk_print description"
  3052. msgid "The maximum instantaneous velocity change of the print head."
  3053. msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão."
  3054. msgctxt "jerk_ironing description"
  3055. msgid "The maximum instantaneous velocity change while performing ironing."
  3056. msgstr "A mudança de velocidade instantânea máxima ao engomar."
  3057. msgctxt "jerk_wall_x description"
  3058. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  3059. msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas."
  3060. msgctxt "jerk_infill description"
  3061. msgid "The maximum instantaneous velocity change with which infill is printed."
  3062. msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso."
  3063. msgctxt "jerk_support_bottom description"
  3064. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  3065. msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos."
  3066. msgctxt "jerk_support_infill description"
  3067. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  3068. msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso."
  3069. msgctxt "jerk_wall_0 description"
  3070. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  3071. msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas."
  3072. msgctxt "jerk_prime_tower description"
  3073. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  3074. msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa."
  3075. msgctxt "jerk_support_interface description"
  3076. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  3077. msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos."
  3078. msgctxt "jerk_support_roof description"
  3079. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  3080. msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos."
  3081. msgctxt "jerk_skirt_brim description"
  3082. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  3083. msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos."
  3084. msgctxt "jerk_support description"
  3085. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  3086. msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa."
  3087. msgctxt "jerk_wall description"
  3088. msgid "The maximum instantaneous velocity change with which the walls are printed."
  3089. msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas."
  3090. msgctxt "jerk_roofing description"
  3091. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  3092. msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas."
  3093. msgctxt "jerk_topbottom description"
  3094. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  3095. msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas."
  3096. msgctxt "jerk_travel description"
  3097. msgid "The maximum instantaneous velocity change with which travel moves are made."
  3098. msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos."
  3099. msgctxt "machine_max_feedrate_x description"
  3100. msgid "The maximum speed for the motor of the X-direction."
  3101. msgstr "A velocidade máxima do motor da direção X."
  3102. msgctxt "machine_max_feedrate_y description"
  3103. msgid "The maximum speed for the motor of the Y-direction."
  3104. msgstr "A velocidade máxima do motor da direção Y."
  3105. msgctxt "machine_max_feedrate_z description"
  3106. msgid "The maximum speed for the motor of the Z-direction."
  3107. msgstr "A velocidade máxima do motor da direção Z."
  3108. msgctxt "machine_max_feedrate_e description"
  3109. msgid "The maximum speed of the filament."
  3110. msgstr "A velocidade máxima do filamento."
  3111. msgctxt "support_bottom_stair_step_width description"
  3112. 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."
  3113. 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."
  3114. msgctxt "mold_width description"
  3115. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3116. msgstr "A distância mínima entre o exterior do molde e o exterior do modelo."
  3117. msgctxt "machine_minimum_feedrate description"
  3118. msgid "The minimal movement speed of the print head."
  3119. msgstr "A velocidade mínima de movimento da cabeça de impressão."
  3120. msgctxt "material_initial_print_temperature description"
  3121. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  3122. msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar."
  3123. msgctxt "machine_min_cool_heat_time_window description"
  3124. 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."
  3125. 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."
  3126. msgctxt "infill_support_angle description"
  3127. 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."
  3128. 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."
  3129. msgctxt "support_angle description"
  3130. 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."
  3131. 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."
  3132. msgctxt "retraction_min_travel description"
  3133. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  3134. 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."
  3135. msgctxt "skirt_brim_minimal_length description"
  3136. 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."
  3137. 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."
  3138. msgctxt "min_odd_wall_line_width description"
  3139. 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."
  3140. 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."
  3141. msgctxt "min_even_wall_line_width description"
  3142. 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."
  3143. 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."
  3144. msgctxt "cool_min_speed description"
  3145. 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."
  3146. 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."
  3147. msgctxt "meshfix_maximum_resolution description"
  3148. 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."
  3149. 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."
  3150. msgctxt "meshfix_maximum_travel_resolution description"
  3151. 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."
  3152. 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."
  3153. msgctxt "support_bottom_stair_step_min_slope description"
  3154. 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."
  3155. 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."
  3156. msgctxt "cool_min_layer_time description"
  3157. 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."
  3158. 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."
  3159. msgctxt "prime_tower_min_volume description"
  3160. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3161. msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente."
  3162. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  3163. 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"
  3164. msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo"
  3165. msgctxt "machine_name description"
  3166. msgid "The name of your 3D printer model."
  3167. msgstr "O nome do seu modelo de impressora 3D."
  3168. msgctxt "machine_nozzle_id description"
  3169. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  3170. msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"."
  3171. msgctxt "travel_avoid_other_parts description"
  3172. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  3173. msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado."
  3174. msgctxt "travel_avoid_supports description"
  3175. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  3176. msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado."
  3177. msgctxt "bottom_layers description"
  3178. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  3179. msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro."
  3180. msgctxt "raft_base_wall_count description"
  3181. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3182. msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft."
  3183. msgctxt "skin_edge_support_layers description"
  3184. msgid "The number of infill layers that supports skin edges."
  3185. msgstr "O número de camadas de enchimento que suportam as arestas do revestimento."
  3186. msgctxt "initial_bottom_layers description"
  3187. 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."
  3188. 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."
  3189. msgctxt "raft_interface_layers description"
  3190. 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."
  3191. 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."
  3192. msgctxt "brim_line_count description"
  3193. 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."
  3194. 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."
  3195. msgctxt "support_brim_line_count description"
  3196. 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."
  3197. 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."
  3198. msgctxt "raft_surface_layers description"
  3199. 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."
  3200. 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."
  3201. msgctxt "top_layers description"
  3202. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  3203. msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro."
  3204. msgctxt "roofing_layer_count description"
  3205. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  3206. 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."
  3207. msgctxt "support_wall_count description"
  3208. 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."
  3209. 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."
  3210. msgctxt "support_bottom_wall_count description"
  3211. 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."
  3212. 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."
  3213. msgctxt "support_roof_wall_count description"
  3214. 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."
  3215. 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."
  3216. msgctxt "support_interface_wall_count description"
  3217. 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."
  3218. 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."
  3219. msgctxt "wall_distribution_count description"
  3220. 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."
  3221. 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."
  3222. msgctxt "wall_line_count description"
  3223. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  3224. msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro."
  3225. msgctxt "machine_nozzle_tip_outer_diameter description"
  3226. msgid "The outer diameter of the tip of the nozzle."
  3227. msgstr "O diâmetro externo da ponta do nozzle."
  3228. msgctxt "infill_pattern description"
  3229. 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."
  3230. 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."
  3231. msgctxt "support_pattern description"
  3232. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  3233. 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."
  3234. msgctxt "roofing_pattern description"
  3235. msgid "The pattern of the top most layers."
  3236. msgstr "O padrão geométrico das camadas de revestimento da superfície superior."
  3237. msgctxt "top_bottom_pattern description"
  3238. msgid "The pattern of the top/bottom layers."
  3239. msgstr "O padrão geométrico das camadas superiores / inferiores."
  3240. msgctxt "top_bottom_pattern_0 description"
  3241. msgid "The pattern on the bottom of the print on the first layer."
  3242. msgstr "O padrão geométrico da base da peça na camada inicial."
  3243. msgctxt "ironing_pattern description"
  3244. msgid "The pattern to use for ironing top surfaces."
  3245. msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores."
  3246. msgctxt "support_bottom_pattern description"
  3247. msgid "The pattern with which the floors of the support are printed."
  3248. msgstr "O padrão geométrico com que os pisos do suporte são impressos."
  3249. msgctxt "support_interface_pattern description"
  3250. msgid "The pattern with which the interface of the support with the model is printed."
  3251. msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa."
  3252. msgctxt "support_roof_pattern description"
  3253. msgid "The pattern with which the roofs of the support are printed."
  3254. msgstr "O padrão geométrico com que os tectos do suporte são impressos."
  3255. msgctxt "z_seam_position description"
  3256. msgid "The position near where to start printing each part in a layer."
  3257. msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada."
  3258. msgctxt "support_tree_angle_slow description"
  3259. 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."
  3260. msgstr "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente."
  3261. msgctxt "support_tree_rest_preference description"
  3262. 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."
  3263. msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo."
  3264. msgctxt "jerk_layer_0 description"
  3265. msgid "The print maximum instantaneous velocity change for the initial layer."
  3266. msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial."
  3267. msgctxt "machine_shape description"
  3268. msgid "The shape of the build plate without taking unprintable areas into account."
  3269. msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir."
  3270. msgctxt "machine_head_with_fans_polygon description"
  3271. 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."
  3272. 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."
  3273. msgctxt "cross_infill_pocket_size description"
  3274. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3275. 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."
  3276. msgctxt "coasting_min_volume description"
  3277. 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."
  3278. 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."
  3279. msgctxt "machine_nozzle_cool_down_speed description"
  3280. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  3281. 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."
  3282. msgctxt "machine_nozzle_heat_up_speed description"
  3283. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  3284. 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."
  3285. msgctxt "speed_wall_x description"
  3286. 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."
  3287. 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."
  3288. msgctxt "bridge_skin_speed description"
  3289. msgid "The speed at which bridge skin regions are printed."
  3290. msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas."
  3291. msgctxt "speed_infill description"
  3292. msgid "The speed at which infill is printed."
  3293. msgstr "A velocidade a que o enchimento é impresso."
  3294. msgctxt "speed_print description"
  3295. msgid "The speed at which printing happens."
  3296. msgstr "A velocidade a que é efetuada a impressão."
  3297. msgctxt "raft_base_speed description"
  3298. 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."
  3299. 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."
  3300. msgctxt "bridge_wall_speed description"
  3301. msgid "The speed at which the bridge walls are printed."
  3302. msgstr "A velocidade a que as paredes de Bridge são impressas."
  3303. msgctxt "cool_fan_speed_0 description"
  3304. 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."
  3305. 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."
  3306. msgctxt "cool_fan_speed_min description"
  3307. 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."
  3308. 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."
  3309. msgctxt "cool_fan_speed_max description"
  3310. 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."
  3311. 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."
  3312. msgctxt "retraction_prime_speed description"
  3313. msgid "The speed at which the filament is primed during a retraction move."
  3314. msgstr "A velocidade a que o filamento é preparado durante um movimento de retração."
  3315. msgctxt "wipe_retraction_prime_speed description"
  3316. msgid "The speed at which the filament is primed during a wipe retraction move."
  3317. msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza."
  3318. msgctxt "switch_extruder_prime_speed description"
  3319. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3320. msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle."
  3321. msgctxt "retraction_speed description"
  3322. msgid "The speed at which the filament is retracted and primed during a retraction move."
  3323. msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração."
  3324. msgctxt "wipe_retraction_speed description"
  3325. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  3326. msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza."
  3327. msgctxt "switch_extruder_retraction_speed description"
  3328. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3329. msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle."
  3330. msgctxt "retraction_retract_speed description"
  3331. msgid "The speed at which the filament is retracted during a retraction move."
  3332. msgstr "A velocidade a que o filamento é retraído durante um movimento de retração."
  3333. msgctxt "wipe_retraction_retract_speed description"
  3334. msgid "The speed at which the filament is retracted during a wipe retraction move."
  3335. msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza."
  3336. msgctxt "switch_extruder_retraction_speeds description"
  3337. 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."
  3338. 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."
  3339. msgctxt "speed_support_bottom description"
  3340. 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."
  3341. 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."
  3342. msgctxt "speed_support_infill description"
  3343. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  3344. msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade."
  3345. msgctxt "raft_interface_speed description"
  3346. 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."
  3347. 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."
  3348. msgctxt "speed_wall_0 description"
  3349. 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."
  3350. 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."
  3351. msgctxt "speed_prime_tower description"
  3352. 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."
  3353. 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."
  3354. msgctxt "cool_fan_speed description"
  3355. msgid "The speed at which the print cooling fans spin."
  3356. msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão."
  3357. msgctxt "raft_speed description"
  3358. msgid "The speed at which the raft is printed."
  3359. msgstr "A velocidade a que o raft é impresso."
  3360. msgctxt "speed_support_interface description"
  3361. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  3362. 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."
  3363. msgctxt "speed_support_roof description"
  3364. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  3365. msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências."
  3366. msgctxt "skirt_brim_speed description"
  3367. 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."
  3368. 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."
  3369. msgctxt "speed_support description"
  3370. 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."
  3371. 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."
  3372. msgctxt "raft_surface_speed description"
  3373. 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."
  3374. 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."
  3375. msgctxt "speed_z_hop description"
  3376. 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."
  3377. 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."
  3378. msgctxt "speed_wall description"
  3379. msgid "The speed at which the walls are printed."
  3380. msgstr "A velocidade a que as paredes são impressas."
  3381. msgctxt "speed_ironing description"
  3382. msgid "The speed at which to pass over the top surface."
  3383. msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior."
  3384. msgctxt "material_break_speed description"
  3385. msgid "The speed at which to retract the filament in order to break it cleanly."
  3386. msgstr "A velocidade de retração do filamento para separá-lo de forma regular."
  3387. msgctxt "speed_roofing description"
  3388. msgid "The speed at which top surface skin layers are printed."
  3389. msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas."
  3390. msgctxt "speed_topbottom description"
  3391. msgid "The speed at which top/bottom layers are printed."
  3392. msgstr "A velocidade a que as camadas superiores/inferiores são impressas."
  3393. msgctxt "speed_travel description"
  3394. msgid "The speed at which travel moves are made."
  3395. msgstr "A velocidade a que os movimentos de deslocação são efetuados."
  3396. msgctxt "coasting_speed description"
  3397. 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."
  3398. 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."
  3399. msgctxt "speed_layer_0 description"
  3400. 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."
  3401. 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."
  3402. msgctxt "speed_print_layer_0 description"
  3403. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  3404. msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção."
  3405. msgctxt "speed_travel_layer_0 description"
  3406. 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."
  3407. 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."
  3408. msgctxt "material_break_temperature description"
  3409. msgid "The temperature at which the filament is broken for a clean break."
  3410. msgstr "A temperatura a que o filamento se quebra para uma separação regular."
  3411. msgctxt "build_volume_temperature description"
  3412. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  3413. 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."
  3414. msgctxt "material_standby_temperature description"
  3415. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  3416. msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão."
  3417. msgctxt "material_final_print_temperature description"
  3418. msgid "The temperature to which to already start cooling down just before the end of printing."
  3419. msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão."
  3420. msgctxt "material_print_temperature_layer_0 description"
  3421. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  3422. msgstr "A temperatura utilizada para imprimir a primeira camada. Esta é definida como 0 para desativar o manuseamento especial da camada inicial."
  3423. msgctxt "material_print_temperature description"
  3424. msgid "The temperature used for printing."
  3425. msgstr "A temperatura utilizada para a impressão."
  3426. msgctxt "material_bed_temperature_layer_0 description"
  3427. 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."
  3428. 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."
  3429. msgctxt "material_bed_temperature description"
  3430. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  3431. 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."
  3432. msgctxt "material_break_preparation_temperature description"
  3433. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  3434. msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível."
  3435. msgctxt "bottom_thickness description"
  3436. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  3437. msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores."
  3438. msgctxt "skin_edge_support_thickness description"
  3439. msgid "The thickness of the extra infill that supports skin edges."
  3440. msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento."
  3441. msgctxt "support_interface_height description"
  3442. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3443. msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior."
  3444. msgctxt "support_bottom_height description"
  3445. 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."
  3446. 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."
  3447. msgctxt "support_roof_height description"
  3448. 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."
  3449. msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado."
  3450. msgctxt "top_thickness description"
  3451. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  3452. msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores."
  3453. msgctxt "top_bottom_thickness description"
  3454. 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."
  3455. 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."
  3456. msgctxt "wall_thickness description"
  3457. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  3458. 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."
  3459. msgctxt "infill_sparse_thickness description"
  3460. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3461. msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado."
  3462. msgctxt "support_infill_sparse_thickness description"
  3463. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3464. 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."
  3465. msgctxt "machine_gcode_flavor description"
  3466. msgid "The type of g-code to be generated."
  3467. msgstr "O tipo de G-code a ser gerado."
  3468. msgctxt "coasting_volume description"
  3469. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3470. msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle."
  3471. msgctxt "machine_width description"
  3472. msgid "The width (X-direction) of the printable area."
  3473. msgstr "A largura (direção X) da área de impressão."
  3474. msgctxt "support_brim_width description"
  3475. 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."
  3476. 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."
  3477. msgctxt "interlocking_beam_width description"
  3478. msgid "The width of the interlocking structure beams."
  3479. msgstr "A largura das vigas da estrutura de interligação."
  3480. msgctxt "prime_tower_size description"
  3481. msgid "The width of the prime tower."
  3482. msgstr "A largura da torre de preparação."
  3483. msgctxt "magic_fuzzy_skin_thickness description"
  3484. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3485. 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."
  3486. msgctxt "retraction_extrusion_window description"
  3487. 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."
  3488. 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."
  3489. msgctxt "prime_tower_position_x description"
  3490. msgid "The x coordinate of the position of the prime tower."
  3491. msgstr "A coordenada X da posição da torre de preparação."
  3492. msgctxt "prime_tower_position_y description"
  3493. msgid "The y coordinate of the position of the prime tower."
  3494. msgstr "A coordenada Y da posição da torre de preparação."
  3495. msgctxt "support_meshes_present description"
  3496. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3497. msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura."
  3498. msgctxt "bridge_wall_coast description"
  3499. 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."
  3500. 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."
  3501. msgctxt "raft_smoothing description"
  3502. 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."
  3503. 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."
  3504. msgctxt "retraction_count_max description"
  3505. 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."
  3506. 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."
  3507. msgctxt "draft_shield_enabled description"
  3508. 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."
  3509. 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."
  3510. msgctxt "support_tree_tip_diameter label"
  3511. msgid "Tip Diameter"
  3512. msgstr "Diâmetro da Ponta do Ramo"
  3513. msgctxt "material_shrinkage_percentage_xy description"
  3514. 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)."
  3515. msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)."
  3516. msgctxt "material_shrinkage_percentage_z description"
  3517. 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)."
  3518. msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)."
  3519. msgctxt "material_shrinkage_percentage description"
  3520. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  3521. msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator."
  3522. msgctxt "top_layers label"
  3523. msgid "Top Layers"
  3524. msgstr "Camadas Superiores"
  3525. msgctxt "top_skin_expand_distance label"
  3526. msgid "Top Skin Expand Distance"
  3527. msgstr "Distância Expansão Revestimento Superior"
  3528. msgctxt "top_skin_preshrink label"
  3529. msgid "Top Skin Removal Width"
  3530. msgstr "Largura Remoção Revestimento Superior"
  3531. msgctxt "acceleration_roofing label"
  3532. msgid "Top Surface Skin Acceleration"
  3533. msgstr "Aceleração Revestimento Superior"
  3534. msgctxt "roofing_extruder_nr label"
  3535. msgid "Top Surface Skin Extruder"
  3536. msgstr "Extrusor Revestimento Superior"
  3537. msgctxt "roofing_material_flow label"
  3538. msgid "Top Surface Skin Flow"
  3539. msgstr "Fluxo de Revestimento da Superfície Superior"
  3540. msgctxt "jerk_roofing label"
  3541. msgid "Top Surface Skin Jerk"
  3542. msgstr "Jerk Revestimento Superior"
  3543. msgctxt "roofing_layer_count label"
  3544. msgid "Top Surface Skin Layers"
  3545. msgstr "Camadas Revestimento Superior"
  3546. msgctxt "roofing_angles label"
  3547. msgid "Top Surface Skin Line Directions"
  3548. msgstr "Direções Linha Revestimento Superior"
  3549. msgctxt "roofing_line_width label"
  3550. msgid "Top Surface Skin Line Width"
  3551. msgstr "Diâmetro Linha Revestimento Superior"
  3552. msgctxt "roofing_pattern label"
  3553. msgid "Top Surface Skin Pattern"
  3554. msgstr "Padrão Revestimento Superior"
  3555. msgctxt "speed_roofing label"
  3556. msgid "Top Surface Skin Speed"
  3557. msgstr "Velocidade Revestimento Superior"
  3558. msgctxt "top_thickness label"
  3559. msgid "Top Thickness"
  3560. msgstr "Espessura Superior"
  3561. msgctxt "max_skin_angle_for_expansion description"
  3562. 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."
  3563. 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."
  3564. msgctxt "top_bottom description"
  3565. msgid "Top/Bottom"
  3566. msgstr "Superior / Inferior"
  3567. msgctxt "top_bottom label"
  3568. msgid "Top/Bottom"
  3569. msgstr "Superior / Inferior"
  3570. msgctxt "acceleration_topbottom label"
  3571. msgid "Top/Bottom Acceleration"
  3572. msgstr "Aceleração superior/inferior"
  3573. msgctxt "top_bottom_extruder_nr label"
  3574. msgid "Top/Bottom Extruder"
  3575. msgstr "Extrusor Superior / Inferior"
  3576. msgctxt "skin_material_flow label"
  3577. msgid "Top/Bottom Flow"
  3578. msgstr "Fluxo Superior/Inferior"
  3579. msgctxt "jerk_topbottom label"
  3580. msgid "Top/Bottom Jerk"
  3581. msgstr "Jerk Superior/Inferior"
  3582. msgctxt "skin_angles label"
  3583. msgid "Top/Bottom Line Directions"
  3584. msgstr "Direções Linha Superior / Inferior"
  3585. msgctxt "skin_line_width label"
  3586. msgid "Top/Bottom Line Width"
  3587. msgstr "Diâmetro Linha Superior / Inferior"
  3588. msgctxt "top_bottom_pattern label"
  3589. msgid "Top/Bottom Pattern"
  3590. msgstr "Padrão Superior / Inferior"
  3591. msgctxt "speed_topbottom label"
  3592. msgid "Top/Bottom Speed"
  3593. msgstr "Velocidade Superior/Inferior"
  3594. msgctxt "top_bottom_thickness label"
  3595. msgid "Top/Bottom Thickness"
  3596. msgstr "Espessura Superior / Inferior"
  3597. msgctxt "support_type option buildplate"
  3598. msgid "Touching Buildplate"
  3599. msgstr "A Tocar na base de construção"
  3600. msgctxt "support_tower_diameter label"
  3601. msgid "Tower Diameter"
  3602. msgstr "Diâmetro da torre"
  3603. msgctxt "support_tower_roof_angle label"
  3604. msgid "Tower Roof Angle"
  3605. msgstr "Ângulo do tecto da torre"
  3606. msgctxt "mesh_rotation_matrix description"
  3607. msgid "Transformation matrix to be applied to the model when loading it from file."
  3608. msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro."
  3609. msgctxt "travel label"
  3610. msgid "Travel"
  3611. msgstr "Deslocação"
  3612. msgctxt "acceleration_travel label"
  3613. msgid "Travel Acceleration"
  3614. msgstr "Aceleração de deslocação"
  3615. msgctxt "travel_avoid_distance label"
  3616. msgid "Travel Avoid Distance"
  3617. msgstr "Distância para evitar peças durante a deslocação"
  3618. msgctxt "jerk_travel label"
  3619. msgid "Travel Jerk"
  3620. msgstr "Jerk de Deslocação"
  3621. msgctxt "speed_travel label"
  3622. msgid "Travel Speed"
  3623. msgstr "Velocidade de deslocação"
  3624. msgctxt "magic_mesh_surface_mode description"
  3625. 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."
  3626. 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."
  3627. msgctxt "support_structure option tree"
  3628. msgid "Tree"
  3629. msgstr "Árvore"
  3630. msgctxt "infill_pattern option trihexagon"
  3631. msgid "Tri-Hexagon"
  3632. msgstr "Tri-Hexágono"
  3633. msgctxt "infill_pattern option triangles"
  3634. msgid "Triangles"
  3635. msgstr "Triângulos"
  3636. msgctxt "support_bottom_pattern option triangles"
  3637. msgid "Triangles"
  3638. msgstr "Triângulos"
  3639. msgctxt "support_interface_pattern option triangles"
  3640. msgid "Triangles"
  3641. msgstr "Triângulos"
  3642. msgctxt "support_pattern option triangles"
  3643. msgid "Triangles"
  3644. msgstr "Triângulos"
  3645. msgctxt "support_roof_pattern option triangles"
  3646. msgid "Triangles"
  3647. msgstr "Triângulos"
  3648. msgctxt "support_tree_max_diameter label"
  3649. msgid "Trunk Diameter"
  3650. msgstr "Diâmetro do Tronco"
  3651. msgctxt "machine_gcode_flavor option UltiGCode"
  3652. msgid "Ultimaker 2"
  3653. msgstr "Ultimaker 2"
  3654. msgctxt "meshfix_union_all label"
  3655. msgid "Union Overlapping Volumes"
  3656. msgstr "Unir Volumes Sobrepostos"
  3657. msgctxt "bridge_wall_min_length description"
  3658. 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."
  3659. 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."
  3660. msgctxt "adaptive_layer_height_enabled label"
  3661. msgid "Use Adaptive Layers"
  3662. msgstr "Utilizar camadas adaptáveis"
  3663. msgctxt "support_use_towers label"
  3664. msgid "Use Towers"
  3665. msgstr "Utilizar torres"
  3666. msgctxt "acceleration_travel_enabled description"
  3667. 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."
  3668. 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."
  3669. msgctxt "jerk_travel_enabled description"
  3670. 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."
  3671. 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."
  3672. msgctxt "relative_extrusion description"
  3673. 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."
  3674. 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."
  3675. msgctxt "support_use_towers description"
  3676. 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."
  3677. 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."
  3678. msgctxt "infill_mesh description"
  3679. 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."
  3680. 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."
  3681. msgctxt "support_mesh description"
  3682. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3683. msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte."
  3684. msgctxt "anti_overhang_mesh description"
  3685. 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."
  3686. 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."
  3687. msgctxt "z_seam_type option back"
  3688. msgid "User Specified"
  3689. msgstr "Definido pelo utilizador"
  3690. msgctxt "material_shrinkage_percentage_z label"
  3691. msgid "Vertical Scaling Factor Shrinkage Compensation"
  3692. msgstr "Compensação de contração do fator de dimensionamento vertical"
  3693. msgctxt "slicing_tolerance description"
  3694. 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."
  3695. 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."
  3696. msgctxt "material_bed_temp_wait label"
  3697. msgid "Wait for Build Plate Heatup"
  3698. msgstr "Esperar pelo Aquecimento da Base de Construção"
  3699. msgctxt "material_print_temp_wait label"
  3700. msgid "Wait for Nozzle Heatup"
  3701. msgstr "Esperar pelo aquecimento do nozzle"
  3702. msgctxt "acceleration_wall label"
  3703. msgid "Wall Acceleration"
  3704. msgstr "Aceleração de parede"
  3705. msgctxt "wall_distribution_count label"
  3706. msgid "Wall Distribution Count"
  3707. msgstr "Número de paredes distribuídas"
  3708. msgctxt "wall_extruder_nr label"
  3709. msgid "Wall Extruder"
  3710. msgstr "Extrusor Paredes"
  3711. msgctxt "wall_material_flow label"
  3712. msgid "Wall Flow"
  3713. msgstr "Fluxo da Parede"
  3714. msgctxt "jerk_wall label"
  3715. msgid "Wall Jerk"
  3716. msgstr "Jerk das Paredes"
  3717. msgctxt "wall_line_count label"
  3718. msgid "Wall Line Count"
  3719. msgstr "Número Linhas Paredes"
  3720. msgctxt "wall_line_width label"
  3721. msgid "Wall Line Width"
  3722. msgstr "Diâmetro Linha Parede"
  3723. msgctxt "inset_direction label"
  3724. msgid "Wall Ordering"
  3725. msgstr "Ordenação de paredes"
  3726. msgctxt "speed_wall label"
  3727. msgid "Wall Speed"
  3728. msgstr "Velocidade Paredes"
  3729. msgctxt "wall_thickness label"
  3730. msgid "Wall Thickness"
  3731. msgstr "Espessura das Paredes"
  3732. msgctxt "wall_transition_length label"
  3733. msgid "Wall Transition Length"
  3734. msgstr "Comprimento de transição de paredes"
  3735. msgctxt "wall_transition_filter_distance label"
  3736. msgid "Wall Transitioning Filter Distance"
  3737. msgstr "Distância do filtro de transição de paredes"
  3738. msgctxt "wall_transition_filter_deviation label"
  3739. msgid "Wall Transitioning Filter Margin"
  3740. msgstr "Margem do filtro de transição de paredes"
  3741. msgctxt "wall_transition_angle label"
  3742. msgid "Wall Transitioning Threshold Angle"
  3743. msgstr "Ângulo do limiar de transição de paredes"
  3744. msgctxt "shell label"
  3745. msgid "Walls"
  3746. msgstr "Paredes"
  3747. msgctxt "wall_overhang_angle description"
  3748. 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."
  3749. 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."
  3750. msgctxt "support_interface_skip_height description"
  3751. 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."
  3752. 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."
  3753. msgctxt "meshfix_fluid_motion_enabled description"
  3754. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3755. msgstr ""
  3756. msgctxt "infill_enable_travel_optimization description"
  3757. 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."
  3758. 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."
  3759. msgctxt "support_fan_enable description"
  3760. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3761. msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte."
  3762. msgctxt "z_seam_relative description"
  3763. 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."
  3764. 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."
  3765. msgctxt "retraction_combing_max_distance description"
  3766. 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."
  3767. 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."
  3768. msgctxt "hole_xy_offset_max_diameter description"
  3769. 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."
  3770. msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos."
  3771. msgctxt "hole_xy_offset description"
  3772. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  3773. msgstr ""
  3774. msgctxt "bridge_skin_material_flow description"
  3775. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3776. msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  3777. msgctxt "bridge_wall_material_flow description"
  3778. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3779. msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  3780. msgctxt "bridge_skin_material_flow_2 description"
  3781. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  3782. msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  3783. msgctxt "bridge_skin_material_flow_3 description"
  3784. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  3785. msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor."
  3786. msgctxt "cool_lift_head description"
  3787. 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."
  3788. 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."
  3789. msgctxt "skin_no_small_gaps_heuristic description"
  3790. 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."
  3791. 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."
  3792. msgctxt "wall_transition_angle description"
  3793. 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."
  3794. 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."
  3795. msgctxt "wall_transition_length description"
  3796. 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."
  3797. 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."
  3798. msgctxt "wipe_hop_enable description"
  3799. 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."
  3800. 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."
  3801. msgctxt "retraction_hop_enabled description"
  3802. 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."
  3803. 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."
  3804. msgctxt "support_xy_overrides_z description"
  3805. 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."
  3806. 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."
  3807. msgctxt "machine_center_is_zero description"
  3808. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  3809. msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão."
  3810. msgctxt "machine_endstop_positive_direction_x description"
  3811. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  3812. msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)."
  3813. msgctxt "machine_endstop_positive_direction_y description"
  3814. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  3815. msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)."
  3816. msgctxt "machine_endstop_positive_direction_z description"
  3817. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  3818. msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)."
  3819. msgctxt "machine_extruders_share_heater description"
  3820. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  3821. msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor."
  3822. msgctxt "machine_extruders_share_nozzle description"
  3823. 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."
  3824. 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'."
  3825. msgctxt "machine_heated_bed description"
  3826. msgid "Whether the machine has a heated build plate present."
  3827. msgstr "Se a máquina tem ou não uma base de construção aquecida."
  3828. msgctxt "machine_heated_build_volume description"
  3829. msgid "Whether the machine is able to stabilize the build volume temperature."
  3830. msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção."
  3831. msgctxt "center_object description"
  3832. 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."
  3833. 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."
  3834. msgctxt "machine_nozzle_temp_enabled description"
  3835. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  3836. 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."
  3837. msgctxt "material_bed_temp_prepend description"
  3838. 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."
  3839. 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."
  3840. msgctxt "material_print_temp_prepend description"
  3841. 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."
  3842. 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."
  3843. msgctxt "clean_between_layers description"
  3844. 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."
  3845. 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."
  3846. msgctxt "material_bed_temp_wait description"
  3847. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  3848. msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque."
  3849. msgctxt "prime_blob_enable description"
  3850. 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."
  3851. 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."
  3852. msgctxt "print_sequence description"
  3853. 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."
  3854. 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."
  3855. msgctxt "machine_show_variants description"
  3856. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  3857. msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados."
  3858. msgctxt "machine_firmware_retract description"
  3859. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  3860. 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."
  3861. msgctxt "material_print_temp_wait description"
  3862. msgid "Whether to wait until the nozzle temperature is reached at the start."
  3863. msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque."
  3864. msgctxt "infill_line_width description"
  3865. msgid "Width of a single infill line."
  3866. msgstr "O diâmetro de uma única linha de enchimento."
  3867. msgctxt "support_interface_line_width description"
  3868. msgid "Width of a single line of support roof or floor."
  3869. msgstr "O diâmetro de uma única linha do chão ou tecto de suporte."
  3870. msgctxt "roofing_line_width description"
  3871. msgid "Width of a single line of the areas at the top of the print."
  3872. msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão."
  3873. msgctxt "line_width description"
  3874. 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."
  3875. 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."
  3876. msgctxt "prime_tower_line_width description"
  3877. msgid "Width of a single prime tower line."
  3878. msgstr "O diâmetro de uma única linha da torre de preparação."
  3879. msgctxt "skirt_brim_line_width description"
  3880. msgid "Width of a single skirt or brim line."
  3881. msgstr "O diâmetro de uma única linha do contorno ou da aba."
  3882. msgctxt "support_bottom_line_width description"
  3883. msgid "Width of a single support floor line."
  3884. msgstr "O diâmetro de uma única linha do piso de suporte."
  3885. msgctxt "support_roof_line_width description"
  3886. msgid "Width of a single support roof line."
  3887. msgstr "O diâmetro de uma única linha do tecto de suporte."
  3888. msgctxt "support_line_width description"
  3889. msgid "Width of a single support structure line."
  3890. msgstr "O diâmetro de uma única linha da estrutura de suporte."
  3891. msgctxt "skin_line_width description"
  3892. msgid "Width of a single top/bottom line."
  3893. msgstr "O diâmetro de uma única linha das superfícies superior/inferior."
  3894. msgctxt "wall_line_width_x description"
  3895. msgid "Width of a single wall line for all wall lines except the outermost one."
  3896. msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior."
  3897. msgctxt "wall_line_width description"
  3898. msgid "Width of a single wall line."
  3899. msgstr "O diâmetro de uma única linha de parede."
  3900. msgctxt "raft_base_line_width description"
  3901. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3902. 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."
  3903. msgctxt "raft_interface_line_width description"
  3904. 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."
  3905. 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."
  3906. msgctxt "raft_surface_line_width description"
  3907. 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."
  3908. 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."
  3909. msgctxt "wall_line_width_0 description"
  3910. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  3911. msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe."
  3912. msgctxt "min_bead_width description"
  3913. 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."
  3914. 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."
  3915. msgctxt "wipe_brush_pos_x label"
  3916. msgid "Wipe Brush X Position"
  3917. msgstr "Posição X da escova de limpeza"
  3918. msgctxt "wipe_hop_speed label"
  3919. msgid "Wipe Hop Speed"
  3920. msgstr "Velocidade do salto de limpeza"
  3921. msgctxt "prime_tower_wipe_enabled label"
  3922. msgid "Wipe Inactive Nozzle on Prime Tower"
  3923. msgstr "Limpar nozzle inativo na torre de preparação"
  3924. msgctxt "wipe_move_distance label"
  3925. msgid "Wipe Move Distance"
  3926. msgstr "Distância do movimento de limpeza"
  3927. msgctxt "clean_between_layers label"
  3928. msgid "Wipe Nozzle Between Layers"
  3929. msgstr "Limpar nozzle entre camadas"
  3930. msgctxt "wipe_pause label"
  3931. msgid "Wipe Pause"
  3932. msgstr "Pausa na limpeza"
  3933. msgctxt "wipe_repeat_count label"
  3934. msgid "Wipe Repeat Count"
  3935. msgstr "Contagem de repetições de limpeza"
  3936. msgctxt "wipe_retraction_amount label"
  3937. msgid "Wipe Retraction Distance"
  3938. msgstr "Distância de retração da limpeza"
  3939. msgctxt "wipe_retraction_enable label"
  3940. msgid "Wipe Retraction Enable"
  3941. msgstr "Retração de limpeza ativada"
  3942. msgctxt "wipe_retraction_extra_prime_amount label"
  3943. msgid "Wipe Retraction Extra Prime Amount"
  3944. msgstr "Quantidade de preparação adicional de retração de limpeza"
  3945. msgctxt "wipe_retraction_prime_speed label"
  3946. msgid "Wipe Retraction Prime Speed"
  3947. msgstr "Velocidade de preparação da retração de limpeza"
  3948. msgctxt "wipe_retraction_retract_speed label"
  3949. msgid "Wipe Retraction Retract Speed"
  3950. msgstr "Velocidade de retração na retração de limpeza"
  3951. msgctxt "wipe_retraction_speed label"
  3952. msgid "Wipe Retraction Speed"
  3953. msgstr "Velocidade de retração de limpeza"
  3954. msgctxt "wipe_hop_enable label"
  3955. msgid "Wipe Z Hop"
  3956. msgstr "Salto Z de limpeza"
  3957. msgctxt "wipe_hop_amount label"
  3958. msgid "Wipe Z Hop Height"
  3959. msgstr "Altura do salto Z de limpeza"
  3960. msgctxt "retraction_combing option infill"
  3961. msgid "Within Infill"
  3962. msgstr "No Enchimento"
  3963. msgctxt "machine_always_write_active_tool description"
  3964. 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."
  3965. 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."
  3966. msgctxt "machine_endstop_positive_direction_x label"
  3967. msgid "X Endstop in Positive Direction"
  3968. msgstr "Endstop X no Sentido Positivo"
  3969. msgctxt "wipe_brush_pos_x description"
  3970. msgid "X location where wipe script will start."
  3971. msgstr "Localização X onde o script de limpeza será iniciado."
  3972. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3973. msgid "X/Y overrides Z"
  3974. msgstr "X/Y substitui Z"
  3975. msgctxt "machine_endstop_positive_direction_y label"
  3976. msgid "Y Endstop in Positive Direction"
  3977. msgstr "Endstop Y no Sentido Positivo"
  3978. msgctxt "machine_endstop_positive_direction_z label"
  3979. msgid "Z Endstop in Positive Direction"
  3980. msgstr "Endstop Z no Sentido Positivo"
  3981. msgctxt "retraction_hop_after_extruder_switch label"
  3982. msgid "Z Hop After Extruder Switch"
  3983. msgstr "Salto Z após mudança extrusor"
  3984. msgctxt "retraction_hop_after_extruder_switch_height label"
  3985. msgid "Z Hop After Extruder Switch Height"
  3986. msgstr "Altura do salto Z após mudança do extrusor"
  3987. msgctxt "retraction_hop label"
  3988. msgid "Z Hop Height"
  3989. msgstr "Altura do salto Z"
  3990. msgctxt "retraction_hop_only_when_collides label"
  3991. msgid "Z Hop Only Over Printed Parts"
  3992. msgstr "Salto Z apenas sobre as peças impressas"
  3993. msgctxt "speed_z_hop label"
  3994. msgid "Z Hop Speed"
  3995. msgstr "Velocidade do Salto Z"
  3996. msgctxt "retraction_hop_enabled label"
  3997. msgid "Z Hop When Retracted"
  3998. msgstr "Salto Z ao retrair"
  3999. msgctxt "z_seam_type label"
  4000. msgid "Z Seam Alignment"
  4001. msgstr "Alinhamento da Junta-Z"
  4002. msgctxt "z_seam_position label"
  4003. msgid "Z Seam Position"
  4004. msgstr "Posição da Junta-Z"
  4005. msgctxt "z_seam_relative label"
  4006. msgid "Z Seam Relative"
  4007. msgstr "Relativo à Junta-Z"
  4008. msgctxt "z_seam_x label"
  4009. msgid "Z Seam X"
  4010. msgstr "X da Junta-Z"
  4011. msgctxt "z_seam_y label"
  4012. msgid "Z Seam Y"
  4013. msgstr "Y da Junta-Z"
  4014. msgctxt "support_xy_overrides_z option z_overrides_xy"
  4015. msgid "Z overrides X/Y"
  4016. msgstr "Z substitui X/Y"
  4017. msgctxt "infill_pattern option zigzag"
  4018. msgid "Zig Zag"
  4019. msgstr "Ziguezague"
  4020. msgctxt "ironing_pattern option zigzag"
  4021. msgid "Zig Zag"
  4022. msgstr "Ziguezague"
  4023. msgctxt "roofing_pattern option zigzag"
  4024. msgid "Zig Zag"
  4025. msgstr "Ziguezague"
  4026. msgctxt "support_bottom_pattern option zigzag"
  4027. msgid "Zig Zag"
  4028. msgstr "Ziguezague"
  4029. msgctxt "support_interface_pattern option zigzag"
  4030. msgid "Zig Zag"
  4031. msgstr "Ziguezague"
  4032. msgctxt "support_pattern option zigzag"
  4033. msgid "Zig Zag"
  4034. msgstr "Ziguezague"
  4035. msgctxt "support_roof_pattern option zigzag"
  4036. msgid "Zig Zag"
  4037. msgstr "Ziguezague"
  4038. msgctxt "top_bottom_pattern option zigzag"
  4039. msgid "Zig Zag"
  4040. msgstr "Ziguezague"
  4041. msgctxt "top_bottom_pattern_0 option zigzag"
  4042. msgid "Zig Zag"
  4043. msgstr "Ziguezague"
  4044. msgctxt "travel description"
  4045. msgid "travel"
  4046. msgstr "deslocação"
  4047. ### Settings added by bundled engine backend plugins. Add this manually for now. Should be removed whenever we handle it better.
  4048. msgctxt "gradual_flow_enabled label"
  4049. msgid "Gradual flow enabled"
  4050. msgstr ""
  4051. msgctxt "gradual_flow_enabled description"
  4052. msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops."
  4053. msgstr ""
  4054. msgctxt "max_flow_acceleration label"
  4055. msgid "Gradual flow max acceleration"
  4056. msgstr ""
  4057. msgctxt "max_flow_acceleration description"
  4058. msgid "Maximum acceleration for gradual flow changes"
  4059. msgstr ""
  4060. msgctxt "layer_0_max_flow_acceleration label"
  4061. msgid "Initial layer max flow acceleration"
  4062. msgstr ""
  4063. msgctxt "layer_0_max_flow_acceleration description"
  4064. msgid "Minimum speed for gradual flow changes for the first layer"
  4065. msgstr ""
  4066. msgctxt "gradual_flow_discretisation_step_size label"
  4067. msgid "Gradual flow discretisation step size"
  4068. msgstr ""
  4069. msgctxt "gradual_flow_discretisation_step_size description"
  4070. msgid "Duration of each step in the gradual flow change"
  4071. msgstr ""
  4072. msgctxt "reset_flow_duration label"
  4073. msgid "Reset flow duration"
  4074. msgstr ""
  4075. msgctxt "reset_flow_duration description"
  4076. msgid "For any travel move longer than this value, the material flow is reset to the paths target flow"
  4077. msgstr ""
  4078. #~ msgctxt "hole_xy_offset description"
  4079. #~ 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."
  4080. #~ 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."
  4081. #~ msgctxt "material_flow_dependent_temperature label"
  4082. #~ msgid "Auto Temperature"
  4083. #~ msgstr "Temperatura Automática"
  4084. #~ msgctxt "material_flow_dependent_temperature description"
  4085. #~ msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4086. #~ msgstr "Mudar, automaticamente, a temperatura de cada camada com a velocidade de fluxo média dessa camada."
  4087. #~ msgctxt "wireframe_strategy option compensate"
  4088. #~ msgid "Compensate"
  4089. #~ msgstr "Compensar"
  4090. #~ msgctxt "wireframe_top_jump description"
  4091. #~ 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."
  4092. #~ 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."
  4093. #~ msgctxt "wireframe_bottom_delay description"
  4094. #~ msgid "Delay time after a downward move. Only applies to Wire Printing."
  4095. #~ msgstr "O tempo de atraso após um movimento descendente. Aplica-se apenas à impressão de fios."
  4096. #~ msgctxt "wireframe_top_delay description"
  4097. #~ msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4098. #~ msgstr "O tempo de atraso após um movimento ascendente, para que a linha ascendente possa endurecer. Aplica-se apenas à impressão de fios."
  4099. #~ msgctxt "wireframe_flat_delay description"
  4100. #~ 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."
  4101. #~ 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."
  4102. #~ msgctxt "wireframe_nozzle_clearance description"
  4103. #~ 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."
  4104. #~ 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."
  4105. #~ msgctxt "wireframe_up_half_speed description"
  4106. #~ msgid ""
  4107. #~ "Distance of an upward move which is extruded with half speed.\n"
  4108. #~ "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4109. #~ msgstr ""
  4110. #~ "A distância de um movimento ascendente que é extrudido a metade da velocidade.\n"
  4111. #~ "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."
  4112. #~ msgctxt "wireframe_fall_down description"
  4113. #~ msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4114. #~ msgstr "Distância à qual o material cai após uma extrusão ascendente. Esta distância é compensada. Aplica-se apenas à impressão de fios."
  4115. #~ msgctxt "wireframe_drag_along description"
  4116. #~ 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."
  4117. #~ 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."
  4118. #~ msgctxt "wireframe_flow_connection description"
  4119. #~ msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4120. #~ msgstr "A compensação de fluxo ao deslocar-se para cima ou para baixo. Aplica-se apenas à impressão de fios."
  4121. #~ msgctxt "wireframe_flow_flat description"
  4122. #~ msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4123. #~ msgstr "Compensação de fluxo ao imprimir linhas planas. Aplica-se apenas à impressão de fios."
  4124. #~ msgctxt "wireframe_flow description"
  4125. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4126. #~ msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor. Aplica-se apenas à impressão de fios."
  4127. #~ msgctxt "support_tree_branch_distance description"
  4128. #~ 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."
  4129. #~ 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."
  4130. #~ msgctxt "wireframe_strategy option knot"
  4131. #~ msgid "Knot"
  4132. #~ msgstr "Nó"
  4133. #~ msgctxt "limit_support_retractions label"
  4134. #~ msgid "Limit Support Retractions"
  4135. #~ msgstr "Limitar Retrações de Suportes"
  4136. #~ msgctxt "limit_support_retractions description"
  4137. #~ 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."
  4138. #~ 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."
  4139. #~ msgctxt "wireframe_straight_before_down description"
  4140. #~ 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."
  4141. #~ 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."
  4142. #~ msgctxt "wireframe_enabled description"
  4143. #~ 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."
  4144. #~ 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."
  4145. #~ msgctxt "support_tree_collision_resolution description"
  4146. #~ 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."
  4147. #~ 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."
  4148. #~ msgctxt "wireframe_strategy option retract"
  4149. #~ msgid "Retract"
  4150. #~ msgstr "Retrair"
  4151. #~ msgctxt "small_skin_width description"
  4152. #~ msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions."
  4153. #~ msgstr "As regiões superiores/inferiores mais pequenas são preenchidas com paredes em vez do padrão superior/inferior predefinido. Isto ajuda a evitar movimentos bruscos."
  4154. #~ msgctxt "wireframe_printspeed description"
  4155. #~ msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4156. #~ msgstr "Velocidade à qual o nozzle se movimenta ao extrudir material. Aplica-se apenas à impressão de fios."
  4157. #~ msgctxt "wireframe_printspeed_down description"
  4158. #~ msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4159. #~ msgstr "Velocidade de impressão de uma linha diagonal descendente. Aplica-se apenas à impressão de fios."
  4160. #~ msgctxt "wireframe_printspeed_up description"
  4161. #~ msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4162. #~ msgstr "A velocidade de impressão de uma linha ascendente \"no ar\". Aplica-se apenas à impressão de fios."
  4163. #~ msgctxt "wireframe_printspeed_bottom description"
  4164. #~ msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4165. #~ 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."
  4166. #~ msgctxt "wireframe_printspeed_flat description"
  4167. #~ msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4168. #~ msgstr "Velocidade de impressão de contornos horizontais do modelo. Aplica-se apenas à impressão de fios."
  4169. #~ msgctxt "wireframe_strategy description"
  4170. #~ 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."
  4171. #~ 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."
  4172. #~ msgctxt "support_tree_angle description"
  4173. #~ 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."
  4174. #~ 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."
  4175. #~ msgctxt "wireframe_roof_inset description"
  4176. #~ msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4177. #~ 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."
  4178. #~ msgctxt "wireframe_roof_drag_along description"
  4179. #~ 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."
  4180. #~ 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."
  4181. #~ msgctxt "wireframe_roof_fall_down description"
  4182. #~ 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."
  4183. #~ 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."
  4184. #~ msgctxt "wireframe_height description"
  4185. #~ 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."
  4186. #~ 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."
  4187. #~ msgctxt "wireframe_roof_outer_delay description"
  4188. #~ 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."
  4189. #~ 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."
  4190. #~ msgctxt "support_tree_angle label"
  4191. #~ msgid "Tree Support Branch Angle"
  4192. #~ msgstr "Ângulo Ramos Suportes Árvore"
  4193. #~ msgctxt "support_tree_branch_diameter label"
  4194. #~ msgid "Tree Support Branch Diameter"
  4195. #~ msgstr "Diâmetro Ramos Suportes Árvore"
  4196. #~ msgctxt "support_tree_branch_diameter_angle label"
  4197. #~ msgid "Tree Support Branch Diameter Angle"
  4198. #~ msgstr "Ângulo Diâmetro Ramos Suportes Árvore"
  4199. #~ msgctxt "support_tree_branch_distance label"
  4200. #~ msgid "Tree Support Branch Distance"
  4201. #~ msgstr "Distância Ramos Suportes Árvore"
  4202. #~ msgctxt "support_tree_collision_resolution label"
  4203. #~ msgid "Tree Support Collision Resolution"
  4204. #~ msgstr "Resolução Colisão Suportes Árvore"
  4205. #~ msgctxt "support_tree_max_diameter label"
  4206. #~ msgid "Tree Support Trunk Diameter"
  4207. #~ msgstr "Diâmetro Tronco Suporte Árvore"
  4208. #~ msgctxt "wireframe_bottom_delay label"
  4209. #~ msgid "WP Bottom Delay"
  4210. #~ msgstr "Atraso da parte inferior da impressão de fios"
  4211. #~ msgctxt "wireframe_printspeed_bottom label"
  4212. #~ msgid "WP Bottom Printing Speed"
  4213. #~ msgstr "Velocidade de impressão da parte inferior da impressão de fios"
  4214. #~ msgctxt "wireframe_flow_connection label"
  4215. #~ msgid "WP Connection Flow"
  4216. #~ msgstr "Fluxo de ligação da impressão de fios"
  4217. #~ msgctxt "wireframe_height label"
  4218. #~ msgid "WP Connection Height"
  4219. #~ msgstr "Altura de ligação da impressão em fios"
  4220. #~ msgctxt "wireframe_printspeed_down label"
  4221. #~ msgid "WP Downward Printing Speed"
  4222. #~ msgstr "Velocidade de impressão descendente da impressão de fios"
  4223. #~ msgctxt "wireframe_drag_along label"
  4224. #~ msgid "WP Drag Along"
  4225. #~ msgstr "Arrastamento da impressão de fios"
  4226. #~ msgctxt "wireframe_up_half_speed label"
  4227. #~ msgid "WP Ease Upward"
  4228. #~ msgstr "Facilidade de movimento ascendente da impressão de fios"
  4229. #~ msgctxt "wireframe_fall_down label"
  4230. #~ msgid "WP Fall Down"
  4231. #~ msgstr "Queda da impressão de fios"
  4232. #~ msgctxt "wireframe_flat_delay label"
  4233. #~ msgid "WP Flat Delay"
  4234. #~ msgstr "Atraso plano da impressão de fios"
  4235. #~ msgctxt "wireframe_flow_flat label"
  4236. #~ msgid "WP Flat Flow"
  4237. #~ msgstr "Fluxo plano da impressão de fios"
  4238. #~ msgctxt "wireframe_flow label"
  4239. #~ msgid "WP Flow"
  4240. #~ msgstr "Fluxo de impressão de fios"
  4241. #~ msgctxt "wireframe_printspeed_flat label"
  4242. #~ msgid "WP Horizontal Printing Speed"
  4243. #~ msgstr "Velocidade de impressão horizontal da impressão de fios"
  4244. #~ msgctxt "wireframe_top_jump label"
  4245. #~ msgid "WP Knot Size"
  4246. #~ msgstr "Tamanho do nó da impressão de fios"
  4247. #~ msgctxt "wireframe_nozzle_clearance label"
  4248. #~ msgid "WP Nozzle Clearance"
  4249. #~ msgstr "Espaço do nozzle da impressão de fios"
  4250. #~ msgctxt "wireframe_roof_drag_along label"
  4251. #~ msgid "WP Roof Drag Along"
  4252. #~ msgstr "Arrastamento do tecto da impressão de fios"
  4253. #~ msgctxt "wireframe_roof_fall_down label"
  4254. #~ msgid "WP Roof Fall Down"
  4255. #~ msgstr "Queda do tecto da impressão de fios"
  4256. #~ msgctxt "wireframe_roof_inset label"
  4257. #~ msgid "WP Roof Inset Distance"
  4258. #~ msgstr "Distância de inserção do tecto da impressão de fios"
  4259. #~ msgctxt "wireframe_roof_outer_delay label"
  4260. #~ msgid "WP Roof Outer Delay"
  4261. #~ msgstr "Atraso externo do tecto da impressão de fios"
  4262. #~ msgctxt "wireframe_printspeed label"
  4263. #~ msgid "WP Speed"
  4264. #~ msgstr "Velocidade da impressão de fios"
  4265. #~ msgctxt "wireframe_straight_before_down label"
  4266. #~ msgid "WP Straighten Downward Lines"
  4267. #~ msgstr "Linhas retas descendentes da impressão de fios"
  4268. #~ msgctxt "wireframe_strategy label"
  4269. #~ msgid "WP Strategy"
  4270. #~ msgstr "Estratégia de impressão de fios"
  4271. #~ msgctxt "wireframe_top_delay label"
  4272. #~ msgid "WP Top Delay"
  4273. #~ msgstr "Atraso superior da impressão de fios"
  4274. #~ msgctxt "wireframe_printspeed_up label"
  4275. #~ msgid "WP Upward Printing Speed"
  4276. #~ msgstr "Velocidade de impressão ascendente da impressão de fios"
  4277. #~ msgctxt "wireframe_enabled label"
  4278. #~ msgid "Wire Printing"
  4279. #~ msgstr "Impressão em Fios"