fdmprinter.def.json.po 348 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.7\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2020-07-31 14:10+0000\n"
  10. "PO-Revision-Date: 2020-08-21 13:40+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Spanish <info@lionbridge.com>, Spanish <info@bothof.nl>\n"
  13. "Language: es_ES\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.2.3\n"
  18. #: fdmprinter.def.json
  19. msgctxt "machine_settings label"
  20. msgid "Machine"
  21. msgstr "Máquina"
  22. #: fdmprinter.def.json
  23. msgctxt "machine_settings description"
  24. msgid "Machine specific settings"
  25. msgstr "Ajustes específicos de la máquina"
  26. #: fdmprinter.def.json
  27. msgctxt "machine_name label"
  28. msgid "Machine Type"
  29. msgstr "Tipo de máquina"
  30. #: fdmprinter.def.json
  31. msgctxt "machine_name description"
  32. msgid "The name of your 3D printer model."
  33. msgstr "Nombre del modelo de la impresora 3D."
  34. #: fdmprinter.def.json
  35. msgctxt "machine_show_variants label"
  36. msgid "Show Machine Variants"
  37. msgstr "Mostrar versiones de la máquina"
  38. #: fdmprinter.def.json
  39. msgctxt "machine_show_variants description"
  40. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  41. msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes."
  42. #: fdmprinter.def.json
  43. msgctxt "machine_start_gcode label"
  44. msgid "Start G-code"
  45. msgstr "Iniciar GCode"
  46. #: fdmprinter.def.json
  47. msgctxt "machine_start_gcode description"
  48. msgid ""
  49. "G-code commands to be executed at the very start - separated by \n"
  50. "."
  51. msgstr ""
  52. "Los comandos de GCode que se ejecutarán justo al inicio separados por - \n"
  53. "."
  54. #: fdmprinter.def.json
  55. msgctxt "machine_end_gcode label"
  56. msgid "End G-code"
  57. msgstr "Finalizar GCode"
  58. #: fdmprinter.def.json
  59. msgctxt "machine_end_gcode description"
  60. msgid ""
  61. "G-code commands to be executed at the very end - separated by \n"
  62. "."
  63. msgstr ""
  64. "Los comandos de GCode que se ejecutarán justo al final separados por -\n"
  65. "."
  66. #: fdmprinter.def.json
  67. msgctxt "material_guid label"
  68. msgid "Material GUID"
  69. msgstr "GUID del material"
  70. #: fdmprinter.def.json
  71. msgctxt "material_guid description"
  72. msgid "GUID of the material. This is set automatically."
  73. msgstr "GUID del material. Este valor se define de forma automática."
  74. #: fdmprinter.def.json
  75. msgctxt "material_diameter label"
  76. msgid "Diameter"
  77. msgstr "Diámetro"
  78. #: fdmprinter.def.json
  79. msgctxt "material_diameter description"
  80. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  81. msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado."
  82. #: fdmprinter.def.json
  83. msgctxt "material_bed_temp_wait label"
  84. msgid "Wait for Build Plate Heatup"
  85. msgstr "Esperar a que la placa de impresión se caliente"
  86. #: fdmprinter.def.json
  87. msgctxt "material_bed_temp_wait description"
  88. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  89. msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio."
  90. #: fdmprinter.def.json
  91. msgctxt "material_print_temp_wait label"
  92. msgid "Wait for Nozzle Heatup"
  93. msgstr "Esperar a la que la tobera se caliente"
  94. #: fdmprinter.def.json
  95. msgctxt "material_print_temp_wait description"
  96. msgid "Whether to wait until the nozzle temperature is reached at the start."
  97. msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio."
  98. #: fdmprinter.def.json
  99. msgctxt "material_print_temp_prepend label"
  100. msgid "Include Material Temperatures"
  101. msgstr "Incluir temperaturas del material"
  102. #: fdmprinter.def.json
  103. msgctxt "material_print_temp_prepend description"
  104. 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."
  105. msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática."
  106. #: fdmprinter.def.json
  107. msgctxt "material_bed_temp_prepend label"
  108. msgid "Include Build Plate Temperature"
  109. msgstr "Incluir temperatura de la placa de impresión"
  110. #: fdmprinter.def.json
  111. msgctxt "material_bed_temp_prepend description"
  112. 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."
  113. msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática."
  114. #: fdmprinter.def.json
  115. msgctxt "machine_width label"
  116. msgid "Machine Width"
  117. msgstr "Ancho de la máquina"
  118. #: fdmprinter.def.json
  119. msgctxt "machine_width description"
  120. msgid "The width (X-direction) of the printable area."
  121. msgstr "Ancho (dimensión sobre el eje X) del área de impresión."
  122. #: fdmprinter.def.json
  123. msgctxt "machine_depth label"
  124. msgid "Machine Depth"
  125. msgstr "Profundidad de la máquina"
  126. #: fdmprinter.def.json
  127. msgctxt "machine_depth description"
  128. msgid "The depth (Y-direction) of the printable area."
  129. msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión."
  130. #: fdmprinter.def.json
  131. msgctxt "machine_shape label"
  132. msgid "Build Plate Shape"
  133. msgstr "Forma de la placa de impresión"
  134. #: fdmprinter.def.json
  135. msgctxt "machine_shape description"
  136. msgid "The shape of the build plate without taking unprintable areas into account."
  137. msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión."
  138. #: fdmprinter.def.json
  139. msgctxt "machine_shape option rectangular"
  140. msgid "Rectangular"
  141. msgstr "Rectangular"
  142. #: fdmprinter.def.json
  143. msgctxt "machine_shape option elliptic"
  144. msgid "Elliptic"
  145. msgstr "Elíptica"
  146. #: fdmprinter.def.json
  147. msgctxt "machine_buildplate_type label"
  148. msgid "Build Plate Material"
  149. msgstr "Material de placa de impresión"
  150. #: fdmprinter.def.json
  151. msgctxt "machine_buildplate_type description"
  152. msgid "The material of the build plate installed on the printer."
  153. msgstr "Material de la placa de impresión colocado en la impresora."
  154. #: fdmprinter.def.json
  155. msgctxt "machine_buildplate_type option glass"
  156. msgid "Glass"
  157. msgstr "Vidrio"
  158. #: fdmprinter.def.json
  159. msgctxt "machine_buildplate_type option aluminum"
  160. msgid "Aluminum"
  161. msgstr "Aluminio"
  162. #: fdmprinter.def.json
  163. msgctxt "machine_height label"
  164. msgid "Machine Height"
  165. msgstr "Altura de la máquina"
  166. #: fdmprinter.def.json
  167. msgctxt "machine_height description"
  168. msgid "The height (Z-direction) of the printable area."
  169. msgstr "Altura (dimensión sobre el eje Z) del área de impresión."
  170. #: fdmprinter.def.json
  171. msgctxt "machine_heated_bed label"
  172. msgid "Has Heated Build Plate"
  173. msgstr "Tiene una placa de impresión caliente"
  174. #: fdmprinter.def.json
  175. msgctxt "machine_heated_bed description"
  176. msgid "Whether the machine has a heated build plate present."
  177. msgstr "Indica si la máquina tiene una placa de impresión caliente."
  178. #: fdmprinter.def.json
  179. msgctxt "machine_heated_build_volume label"
  180. msgid "Has Build Volume Temperature Stabilization"
  181. msgstr "Tiene estabilización de temperatura del volumen de impresión"
  182. #: fdmprinter.def.json
  183. msgctxt "machine_heated_build_volume description"
  184. msgid "Whether the machine is able to stabilize the build volume temperature."
  185. msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión."
  186. #: fdmprinter.def.json
  187. msgctxt "machine_always_write_active_tool label"
  188. msgid "Always Write Active Tool"
  189. msgstr "Escriba siempre la herramienta activa"
  190. #: fdmprinter.def.json
  191. msgctxt "machine_always_write_active_tool description"
  192. 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."
  193. msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie"
  194. " u otro firmware con comandos de herramientas modales."
  195. #: fdmprinter.def.json
  196. msgctxt "machine_center_is_zero label"
  197. msgid "Is Center Origin"
  198. msgstr "El origen está centrado"
  199. #: fdmprinter.def.json
  200. msgctxt "machine_center_is_zero description"
  201. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  202. msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión."
  203. #: fdmprinter.def.json
  204. msgctxt "machine_extruder_count label"
  205. msgid "Number of Extruders"
  206. msgstr "Número de extrusores"
  207. #: fdmprinter.def.json
  208. msgctxt "machine_extruder_count description"
  209. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  210. msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera."
  211. #: fdmprinter.def.json
  212. msgctxt "extruders_enabled_count label"
  213. msgid "Number of Extruders That Are Enabled"
  214. msgstr "Número de extrusores habilitados"
  215. #: fdmprinter.def.json
  216. msgctxt "extruders_enabled_count description"
  217. msgid "Number of extruder trains that are enabled; automatically set in software"
  218. msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática"
  219. #: fdmprinter.def.json
  220. msgctxt "machine_nozzle_tip_outer_diameter label"
  221. msgid "Outer Nozzle Diameter"
  222. msgstr "Diámetro exterior de la tobera"
  223. #: fdmprinter.def.json
  224. msgctxt "machine_nozzle_tip_outer_diameter description"
  225. msgid "The outer diameter of the tip of the nozzle."
  226. msgstr "Diámetro exterior de la punta de la tobera."
  227. #: fdmprinter.def.json
  228. msgctxt "machine_nozzle_head_distance label"
  229. msgid "Nozzle Length"
  230. msgstr "Longitud de la tobera"
  231. #: fdmprinter.def.json
  232. msgctxt "machine_nozzle_head_distance description"
  233. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  234. msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión."
  235. #: fdmprinter.def.json
  236. msgctxt "machine_nozzle_expansion_angle label"
  237. msgid "Nozzle Angle"
  238. msgstr "Ángulo de la tobera"
  239. #: fdmprinter.def.json
  240. msgctxt "machine_nozzle_expansion_angle description"
  241. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  242. msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera."
  243. #: fdmprinter.def.json
  244. msgctxt "machine_heat_zone_length label"
  245. msgid "Heat Zone Length"
  246. msgstr "Longitud de la zona térmica"
  247. #: fdmprinter.def.json
  248. msgctxt "machine_heat_zone_length description"
  249. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  250. msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento."
  251. #: fdmprinter.def.json
  252. msgctxt "machine_nozzle_temp_enabled label"
  253. msgid "Enable Nozzle Temperature Control"
  254. msgstr "Habilitar control de temperatura de la tobera"
  255. #: fdmprinter.def.json
  256. msgctxt "machine_nozzle_temp_enabled description"
  257. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  258. msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción."
  259. #: fdmprinter.def.json
  260. msgctxt "machine_nozzle_heat_up_speed label"
  261. msgid "Heat Up Speed"
  262. msgstr "Velocidad de calentamiento"
  263. #: fdmprinter.def.json
  264. msgctxt "machine_nozzle_heat_up_speed description"
  265. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  266. msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera."
  267. #: fdmprinter.def.json
  268. msgctxt "machine_nozzle_cool_down_speed label"
  269. msgid "Cool Down Speed"
  270. msgstr "Velocidad de enfriamiento"
  271. #: fdmprinter.def.json
  272. msgctxt "machine_nozzle_cool_down_speed description"
  273. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  274. msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera."
  275. #: fdmprinter.def.json
  276. msgctxt "machine_min_cool_heat_time_window label"
  277. msgid "Minimal Time Standby Temperature"
  278. msgstr "Temperatura mínima en modo de espera"
  279. #: fdmprinter.def.json
  280. msgctxt "machine_min_cool_heat_time_window description"
  281. 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."
  282. msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido."
  283. #: fdmprinter.def.json
  284. msgctxt "machine_gcode_flavor label"
  285. msgid "G-code Flavor"
  286. msgstr "Tipo de GCode"
  287. #: fdmprinter.def.json
  288. msgctxt "machine_gcode_flavor description"
  289. msgid "The type of g-code to be generated."
  290. msgstr "Tipo de GCode que se va a generar."
  291. #: fdmprinter.def.json
  292. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  293. msgid "Marlin"
  294. msgstr "Marlin"
  295. #: fdmprinter.def.json
  296. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  297. msgid "Marlin (Volumetric)"
  298. msgstr "Marlin (Volumetric)"
  299. #: fdmprinter.def.json
  300. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  301. msgid "RepRap"
  302. msgstr "RepRap"
  303. #: fdmprinter.def.json
  304. msgctxt "machine_gcode_flavor option UltiGCode"
  305. msgid "Ultimaker 2"
  306. msgstr "Ultimaker 2"
  307. #: fdmprinter.def.json
  308. msgctxt "machine_gcode_flavor option Griffin"
  309. msgid "Griffin"
  310. msgstr "Griffin"
  311. #: fdmprinter.def.json
  312. msgctxt "machine_gcode_flavor option Makerbot"
  313. msgid "Makerbot"
  314. msgstr "Makerbot"
  315. #: fdmprinter.def.json
  316. msgctxt "machine_gcode_flavor option BFB"
  317. msgid "Bits from Bytes"
  318. msgstr "Bits from Bytes"
  319. #: fdmprinter.def.json
  320. msgctxt "machine_gcode_flavor option MACH3"
  321. msgid "Mach3"
  322. msgstr "Mach3"
  323. #: fdmprinter.def.json
  324. msgctxt "machine_gcode_flavor option Repetier"
  325. msgid "Repetier"
  326. msgstr "Repetier"
  327. #: fdmprinter.def.json
  328. msgctxt "machine_firmware_retract label"
  329. msgid "Firmware Retraction"
  330. msgstr "Retracción de firmware"
  331. #: fdmprinter.def.json
  332. msgctxt "machine_firmware_retract description"
  333. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  334. msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material."
  335. #: fdmprinter.def.json
  336. msgctxt "machine_extruders_share_heater label"
  337. msgid "Extruders Share Heater"
  338. msgstr "Calentador compartido de extrusores"
  339. #: fdmprinter.def.json
  340. msgctxt "machine_extruders_share_heater description"
  341. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  342. msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio."
  343. #: fdmprinter.def.json
  344. msgctxt "machine_disallowed_areas label"
  345. msgid "Disallowed Areas"
  346. msgstr "Áreas no permitidas"
  347. #: fdmprinter.def.json
  348. msgctxt "machine_disallowed_areas description"
  349. msgid "A list of polygons with areas the print head is not allowed to enter."
  350. msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir."
  351. #: fdmprinter.def.json
  352. msgctxt "nozzle_disallowed_areas label"
  353. msgid "Nozzle Disallowed Areas"
  354. msgstr "Áreas no permitidas para la tobera"
  355. #: fdmprinter.def.json
  356. msgctxt "nozzle_disallowed_areas description"
  357. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  358. msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar."
  359. #: fdmprinter.def.json
  360. msgctxt "machine_head_with_fans_polygon label"
  361. msgid "Machine Head & Fan Polygon"
  362. msgstr "Polígono del cabezal de la máquina y del ventilador"
  363. #: fdmprinter.def.json
  364. msgctxt "machine_head_with_fans_polygon description"
  365. msgid "A 2D silhouette of the print head (fan caps included)."
  366. msgstr "Silueta 2D del cabezal de impresión (incluidas las tapas del ventilador)."
  367. #: fdmprinter.def.json
  368. msgctxt "gantry_height label"
  369. msgid "Gantry Height"
  370. msgstr "Altura del puente"
  371. #: fdmprinter.def.json
  372. msgctxt "gantry_height description"
  373. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  374. msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)."
  375. #: fdmprinter.def.json
  376. msgctxt "machine_nozzle_id label"
  377. msgid "Nozzle ID"
  378. msgstr "Id. de la tobera"
  379. #: fdmprinter.def.json
  380. msgctxt "machine_nozzle_id description"
  381. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  382. msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"."
  383. #: fdmprinter.def.json
  384. msgctxt "machine_nozzle_size label"
  385. msgid "Nozzle Diameter"
  386. msgstr "Diámetro de la tobera"
  387. #: fdmprinter.def.json
  388. msgctxt "machine_nozzle_size description"
  389. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  390. msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar."
  391. #: fdmprinter.def.json
  392. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  393. msgid "Offset with Extruder"
  394. msgstr "Desplazamiento con extrusor"
  395. #: fdmprinter.def.json
  396. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  397. msgid "Apply the extruder offset to the coordinate system."
  398. msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas."
  399. #: fdmprinter.def.json
  400. msgctxt "extruder_prime_pos_z label"
  401. msgid "Extruder Prime Z Position"
  402. msgstr "Posición de preparación del extrusor sobre el eje Z"
  403. #: fdmprinter.def.json
  404. msgctxt "extruder_prime_pos_z description"
  405. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  406. msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión."
  407. #: fdmprinter.def.json
  408. msgctxt "extruder_prime_pos_abs label"
  409. msgid "Absolute Extruder Prime Position"
  410. msgstr "Posición de preparación absoluta del extrusor"
  411. #: fdmprinter.def.json
  412. msgctxt "extruder_prime_pos_abs description"
  413. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  414. msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal."
  415. #: fdmprinter.def.json
  416. msgctxt "machine_max_feedrate_x label"
  417. msgid "Maximum Speed X"
  418. msgstr "Velocidad máxima sobre el eje X"
  419. #: fdmprinter.def.json
  420. msgctxt "machine_max_feedrate_x description"
  421. msgid "The maximum speed for the motor of the X-direction."
  422. msgstr "Velocidad máxima del motor de la dirección X."
  423. #: fdmprinter.def.json
  424. msgctxt "machine_max_feedrate_y label"
  425. msgid "Maximum Speed Y"
  426. msgstr "Velocidad máxima sobre el eje Y"
  427. #: fdmprinter.def.json
  428. msgctxt "machine_max_feedrate_y description"
  429. msgid "The maximum speed for the motor of the Y-direction."
  430. msgstr "Velocidad máxima del motor de la dirección Y."
  431. #: fdmprinter.def.json
  432. msgctxt "machine_max_feedrate_z label"
  433. msgid "Maximum Speed Z"
  434. msgstr "Velocidad máxima sobre el eje Z"
  435. #: fdmprinter.def.json
  436. msgctxt "machine_max_feedrate_z description"
  437. msgid "The maximum speed for the motor of the Z-direction."
  438. msgstr "Velocidad máxima del motor de la dirección Z."
  439. #: fdmprinter.def.json
  440. msgctxt "machine_max_feedrate_e label"
  441. msgid "Maximum Feedrate"
  442. msgstr "Velocidad de alimentación máxima"
  443. #: fdmprinter.def.json
  444. msgctxt "machine_max_feedrate_e description"
  445. msgid "The maximum speed of the filament."
  446. msgstr "Velocidad máxima del filamento."
  447. #: fdmprinter.def.json
  448. msgctxt "machine_max_acceleration_x label"
  449. msgid "Maximum Acceleration X"
  450. msgstr "Aceleración máxima sobre el eje X"
  451. #: fdmprinter.def.json
  452. msgctxt "machine_max_acceleration_x description"
  453. msgid "Maximum acceleration for the motor of the X-direction"
  454. msgstr "Aceleración máxima del motor de la dirección X"
  455. #: fdmprinter.def.json
  456. msgctxt "machine_max_acceleration_y label"
  457. msgid "Maximum Acceleration Y"
  458. msgstr "Aceleración máxima de Y"
  459. #: fdmprinter.def.json
  460. msgctxt "machine_max_acceleration_y description"
  461. msgid "Maximum acceleration for the motor of the Y-direction."
  462. msgstr "Aceleración máxima del motor de la dirección Y."
  463. #: fdmprinter.def.json
  464. msgctxt "machine_max_acceleration_z label"
  465. msgid "Maximum Acceleration Z"
  466. msgstr "Aceleración máxima de Z"
  467. #: fdmprinter.def.json
  468. msgctxt "machine_max_acceleration_z description"
  469. msgid "Maximum acceleration for the motor of the Z-direction."
  470. msgstr "Aceleración máxima del motor de la dirección Z."
  471. #: fdmprinter.def.json
  472. msgctxt "machine_max_acceleration_e label"
  473. msgid "Maximum Filament Acceleration"
  474. msgstr "Aceleración máxima del filamento"
  475. #: fdmprinter.def.json
  476. msgctxt "machine_max_acceleration_e description"
  477. msgid "Maximum acceleration for the motor of the filament."
  478. msgstr "Aceleración máxima del motor del filamento."
  479. #: fdmprinter.def.json
  480. msgctxt "machine_acceleration label"
  481. msgid "Default Acceleration"
  482. msgstr "Aceleración predeterminada"
  483. #: fdmprinter.def.json
  484. msgctxt "machine_acceleration description"
  485. msgid "The default acceleration of print head movement."
  486. msgstr "Aceleración predeterminada del movimiento del cabezal de impresión."
  487. #: fdmprinter.def.json
  488. msgctxt "machine_max_jerk_xy label"
  489. msgid "Default X-Y Jerk"
  490. msgstr "Impulso X-Y predeterminado"
  491. #: fdmprinter.def.json
  492. msgctxt "machine_max_jerk_xy description"
  493. msgid "Default jerk for movement in the horizontal plane."
  494. msgstr "Impulso predeterminado para el movimiento en el plano horizontal."
  495. #: fdmprinter.def.json
  496. msgctxt "machine_max_jerk_z label"
  497. msgid "Default Z Jerk"
  498. msgstr "Impulso Z predeterminado"
  499. #: fdmprinter.def.json
  500. msgctxt "machine_max_jerk_z description"
  501. msgid "Default jerk for the motor of the Z-direction."
  502. msgstr "Impulso predeterminado del motor de la dirección Z."
  503. #: fdmprinter.def.json
  504. msgctxt "machine_max_jerk_e label"
  505. msgid "Default Filament Jerk"
  506. msgstr "Impulso de filamento predeterminado"
  507. #: fdmprinter.def.json
  508. msgctxt "machine_max_jerk_e description"
  509. msgid "Default jerk for the motor of the filament."
  510. msgstr "Impulso predeterminado del motor del filamento."
  511. #: fdmprinter.def.json
  512. msgctxt "machine_steps_per_mm_x label"
  513. msgid "Steps per Millimeter (X)"
  514. msgstr "Pasos por milímetro (X)"
  515. #: fdmprinter.def.json
  516. msgctxt "machine_steps_per_mm_x description"
  517. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  518. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X."
  519. #: fdmprinter.def.json
  520. msgctxt "machine_steps_per_mm_y label"
  521. msgid "Steps per Millimeter (Y)"
  522. msgstr "Pasos por milímetro (Y)"
  523. #: fdmprinter.def.json
  524. msgctxt "machine_steps_per_mm_y description"
  525. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  526. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y."
  527. #: fdmprinter.def.json
  528. msgctxt "machine_steps_per_mm_z label"
  529. msgid "Steps per Millimeter (Z)"
  530. msgstr "Pasos por milímetro (Z)"
  531. #: fdmprinter.def.json
  532. msgctxt "machine_steps_per_mm_z description"
  533. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  534. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z."
  535. #: fdmprinter.def.json
  536. msgctxt "machine_steps_per_mm_e label"
  537. msgid "Steps per Millimeter (E)"
  538. msgstr "Pasos por milímetro (E)"
  539. #: fdmprinter.def.json
  540. msgctxt "machine_steps_per_mm_e description"
  541. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  542. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección E."
  543. #: fdmprinter.def.json
  544. msgctxt "machine_endstop_positive_direction_x label"
  545. msgid "X Endstop in Positive Direction"
  546. msgstr "Tope de X en dirección positiva"
  547. #: fdmprinter.def.json
  548. msgctxt "machine_endstop_positive_direction_x description"
  549. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  550. msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)."
  551. #: fdmprinter.def.json
  552. msgctxt "machine_endstop_positive_direction_y label"
  553. msgid "Y Endstop in Positive Direction"
  554. msgstr "Tope de Y en dirección positiva"
  555. #: fdmprinter.def.json
  556. msgctxt "machine_endstop_positive_direction_y description"
  557. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  558. msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)."
  559. #: fdmprinter.def.json
  560. msgctxt "machine_endstop_positive_direction_z label"
  561. msgid "Z Endstop in Positive Direction"
  562. msgstr "Tope de Z en dirección positiva"
  563. #: fdmprinter.def.json
  564. msgctxt "machine_endstop_positive_direction_z description"
  565. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  566. msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)."
  567. #: fdmprinter.def.json
  568. msgctxt "machine_minimum_feedrate label"
  569. msgid "Minimum Feedrate"
  570. msgstr "Velocidad de alimentación mínima"
  571. #: fdmprinter.def.json
  572. msgctxt "machine_minimum_feedrate description"
  573. msgid "The minimal movement speed of the print head."
  574. msgstr "Velocidad mínima de movimiento del cabezal de impresión."
  575. #: fdmprinter.def.json
  576. msgctxt "machine_feeder_wheel_diameter label"
  577. msgid "Feeder Wheel Diameter"
  578. msgstr "Diámetro de la rueda del alimentador"
  579. #: fdmprinter.def.json
  580. msgctxt "machine_feeder_wheel_diameter description"
  581. msgid "The diameter of the wheel that drives the material in the feeder."
  582. msgstr "El diámetro de la rueda que dirige el material hacia el alimentador."
  583. #: fdmprinter.def.json
  584. msgctxt "resolution label"
  585. msgid "Quality"
  586. msgstr "Calidad"
  587. #: fdmprinter.def.json
  588. msgctxt "resolution description"
  589. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  590. msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)."
  591. #: fdmprinter.def.json
  592. msgctxt "layer_height label"
  593. msgid "Layer Height"
  594. msgstr "Altura de capa"
  595. #: fdmprinter.def.json
  596. msgctxt "layer_height description"
  597. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  598. msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución."
  599. #: fdmprinter.def.json
  600. msgctxt "layer_height_0 label"
  601. msgid "Initial Layer Height"
  602. msgstr "Altura de capa inicial"
  603. #: fdmprinter.def.json
  604. msgctxt "layer_height_0 description"
  605. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  606. msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad."
  607. #: fdmprinter.def.json
  608. msgctxt "line_width label"
  609. msgid "Line Width"
  610. msgstr "Ancho de línea"
  611. #: fdmprinter.def.json
  612. msgctxt "line_width description"
  613. 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."
  614. msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones."
  615. #: fdmprinter.def.json
  616. msgctxt "wall_line_width label"
  617. msgid "Wall Line Width"
  618. msgstr "Ancho de línea de pared"
  619. #: fdmprinter.def.json
  620. msgctxt "wall_line_width description"
  621. msgid "Width of a single wall line."
  622. msgstr "Ancho de una sola línea de pared."
  623. #: fdmprinter.def.json
  624. msgctxt "wall_line_width_0 label"
  625. msgid "Outer Wall Line Width"
  626. msgstr "Ancho de línea de la pared exterior"
  627. #: fdmprinter.def.json
  628. msgctxt "wall_line_width_0 description"
  629. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  630. msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle."
  631. #: fdmprinter.def.json
  632. msgctxt "wall_line_width_x label"
  633. msgid "Inner Wall(s) Line Width"
  634. msgstr "Ancho de línea de pared(es) interna(s)"
  635. #: fdmprinter.def.json
  636. msgctxt "wall_line_width_x description"
  637. msgid "Width of a single wall line for all wall lines except the outermost one."
  638. msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa."
  639. #: fdmprinter.def.json
  640. msgctxt "skin_line_width label"
  641. msgid "Top/Bottom Line Width"
  642. msgstr "Ancho de línea superior/inferior"
  643. #: fdmprinter.def.json
  644. msgctxt "skin_line_width description"
  645. msgid "Width of a single top/bottom line."
  646. msgstr "Ancho de una sola línea superior/inferior."
  647. #: fdmprinter.def.json
  648. msgctxt "infill_line_width label"
  649. msgid "Infill Line Width"
  650. msgstr "Ancho de línea de relleno"
  651. #: fdmprinter.def.json
  652. msgctxt "infill_line_width description"
  653. msgid "Width of a single infill line."
  654. msgstr "Ancho de una sola línea de relleno."
  655. #: fdmprinter.def.json
  656. msgctxt "skirt_brim_line_width label"
  657. msgid "Skirt/Brim Line Width"
  658. msgstr "Ancho de línea de falda/borde"
  659. #: fdmprinter.def.json
  660. msgctxt "skirt_brim_line_width description"
  661. msgid "Width of a single skirt or brim line."
  662. msgstr "Ancho de una sola línea de falda o borde."
  663. #: fdmprinter.def.json
  664. msgctxt "support_line_width label"
  665. msgid "Support Line Width"
  666. msgstr "Ancho de línea de soporte"
  667. #: fdmprinter.def.json
  668. msgctxt "support_line_width description"
  669. msgid "Width of a single support structure line."
  670. msgstr "Ancho de una sola línea de estructura de soporte."
  671. #: fdmprinter.def.json
  672. msgctxt "support_interface_line_width label"
  673. msgid "Support Interface Line Width"
  674. msgstr "Ancho de línea de interfaz de soporte"
  675. #: fdmprinter.def.json
  676. msgctxt "support_interface_line_width description"
  677. msgid "Width of a single line of support roof or floor."
  678. msgstr "Ancho de una sola línea de techo o suelo de soporte."
  679. #: fdmprinter.def.json
  680. msgctxt "support_roof_line_width label"
  681. msgid "Support Roof Line Width"
  682. msgstr "Ancho de línea del techo de soporte"
  683. #: fdmprinter.def.json
  684. msgctxt "support_roof_line_width description"
  685. msgid "Width of a single support roof line."
  686. msgstr "Ancho de una sola línea de techo de soporte."
  687. #: fdmprinter.def.json
  688. msgctxt "support_bottom_line_width label"
  689. msgid "Support Floor Line Width"
  690. msgstr "Ancho de línea del suelo de soporte"
  691. #: fdmprinter.def.json
  692. msgctxt "support_bottom_line_width description"
  693. msgid "Width of a single support floor line."
  694. msgstr "Ancho de una sola línea de suelo de soporte."
  695. #: fdmprinter.def.json
  696. msgctxt "prime_tower_line_width label"
  697. msgid "Prime Tower Line Width"
  698. msgstr "Ancho de línea de la torre auxiliar"
  699. #: fdmprinter.def.json
  700. msgctxt "prime_tower_line_width description"
  701. msgid "Width of a single prime tower line."
  702. msgstr "Ancho de una sola línea de la torre auxiliar."
  703. #: fdmprinter.def.json
  704. msgctxt "initial_layer_line_width_factor label"
  705. msgid "Initial Layer Line Width"
  706. msgstr "Ancho de línea de la capa inicial"
  707. #: fdmprinter.def.json
  708. msgctxt "initial_layer_line_width_factor description"
  709. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  710. msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma."
  711. #: fdmprinter.def.json
  712. msgctxt "shell label"
  713. msgid "Shell"
  714. msgstr "Perímetro"
  715. #: fdmprinter.def.json
  716. msgctxt "shell description"
  717. msgid "Shell"
  718. msgstr "Perímetro"
  719. #: fdmprinter.def.json
  720. msgctxt "wall_extruder_nr label"
  721. msgid "Wall Extruder"
  722. msgstr "Extrusor de pared"
  723. #: fdmprinter.def.json
  724. msgctxt "wall_extruder_nr description"
  725. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  726. msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple."
  727. #: fdmprinter.def.json
  728. msgctxt "wall_0_extruder_nr label"
  729. msgid "Outer Wall Extruder"
  730. msgstr "Extrusor de pared exterior"
  731. #: fdmprinter.def.json
  732. msgctxt "wall_0_extruder_nr description"
  733. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  734. msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple."
  735. #: fdmprinter.def.json
  736. msgctxt "wall_x_extruder_nr label"
  737. msgid "Inner Wall Extruder"
  738. msgstr "Extrusor de pared interior"
  739. #: fdmprinter.def.json
  740. msgctxt "wall_x_extruder_nr description"
  741. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  742. msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple."
  743. #: fdmprinter.def.json
  744. msgctxt "wall_thickness label"
  745. msgid "Wall Thickness"
  746. msgstr "Grosor de la pared"
  747. #: fdmprinter.def.json
  748. msgctxt "wall_thickness description"
  749. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  750. msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes."
  751. #: fdmprinter.def.json
  752. msgctxt "wall_line_count label"
  753. msgid "Wall Line Count"
  754. msgstr "Recuento de líneas de pared"
  755. #: fdmprinter.def.json
  756. msgctxt "wall_line_count description"
  757. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  758. msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero."
  759. #: fdmprinter.def.json
  760. msgctxt "wall_0_wipe_dist label"
  761. msgid "Outer Wall Wipe Distance"
  762. msgstr "Distancia de pasada de la pared exterior"
  763. #: fdmprinter.def.json
  764. msgctxt "wall_0_wipe_dist description"
  765. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  766. msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z."
  767. #: fdmprinter.def.json
  768. msgctxt "roofing_extruder_nr label"
  769. msgid "Top Surface Skin Extruder"
  770. msgstr "Extrusor de la superficie superior del forro"
  771. #: fdmprinter.def.json
  772. msgctxt "roofing_extruder_nr description"
  773. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  774. msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple."
  775. #: fdmprinter.def.json
  776. msgctxt "roofing_layer_count label"
  777. msgid "Top Surface Skin Layers"
  778. msgstr "Capas de la superficie superior del forro"
  779. #: fdmprinter.def.json
  780. msgctxt "roofing_layer_count description"
  781. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  782. msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad."
  783. #: fdmprinter.def.json
  784. msgctxt "top_bottom_extruder_nr label"
  785. msgid "Top/Bottom Extruder"
  786. msgstr "Extrusor superior/inferior"
  787. #: fdmprinter.def.json
  788. msgctxt "top_bottom_extruder_nr description"
  789. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  790. msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple."
  791. #: fdmprinter.def.json
  792. msgctxt "top_bottom_thickness label"
  793. msgid "Top/Bottom Thickness"
  794. msgstr "Grosor superior/inferior"
  795. #: fdmprinter.def.json
  796. msgctxt "top_bottom_thickness description"
  797. 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."
  798. msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores."
  799. #: fdmprinter.def.json
  800. msgctxt "top_thickness label"
  801. msgid "Top Thickness"
  802. msgstr "Grosor superior"
  803. #: fdmprinter.def.json
  804. msgctxt "top_thickness description"
  805. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  806. msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores."
  807. #: fdmprinter.def.json
  808. msgctxt "top_layers label"
  809. msgid "Top Layers"
  810. msgstr "Capas superiores"
  811. #: fdmprinter.def.json
  812. msgctxt "top_layers description"
  813. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  814. msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero."
  815. #: fdmprinter.def.json
  816. msgctxt "bottom_thickness label"
  817. msgid "Bottom Thickness"
  818. msgstr "Grosor inferior"
  819. #: fdmprinter.def.json
  820. msgctxt "bottom_thickness description"
  821. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  822. msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores."
  823. #: fdmprinter.def.json
  824. msgctxt "bottom_layers label"
  825. msgid "Bottom Layers"
  826. msgstr "Capas inferiores"
  827. #: fdmprinter.def.json
  828. msgctxt "bottom_layers description"
  829. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  830. msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero."
  831. #: fdmprinter.def.json
  832. msgctxt "initial_bottom_layers label"
  833. msgid "Initial Bottom Layers"
  834. msgstr "Capas inferiores iniciales"
  835. #: fdmprinter.def.json
  836. msgctxt "initial_bottom_layers description"
  837. 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."
  838. msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero."
  839. #: fdmprinter.def.json
  840. msgctxt "top_bottom_pattern label"
  841. msgid "Top/Bottom Pattern"
  842. msgstr "Patrón superior/inferior"
  843. #: fdmprinter.def.json
  844. msgctxt "top_bottom_pattern description"
  845. msgid "The pattern of the top/bottom layers."
  846. msgstr "Patrón de las capas superiores/inferiores."
  847. #: fdmprinter.def.json
  848. msgctxt "top_bottom_pattern option lines"
  849. msgid "Lines"
  850. msgstr "Líneas"
  851. #: fdmprinter.def.json
  852. msgctxt "top_bottom_pattern option concentric"
  853. msgid "Concentric"
  854. msgstr "Concéntrico"
  855. #: fdmprinter.def.json
  856. msgctxt "top_bottom_pattern option zigzag"
  857. msgid "Zig Zag"
  858. msgstr "Zigzag"
  859. #: fdmprinter.def.json
  860. msgctxt "top_bottom_pattern_0 label"
  861. msgid "Bottom Pattern Initial Layer"
  862. msgstr "Patrón inferior de la capa inicial"
  863. #: fdmprinter.def.json
  864. msgctxt "top_bottom_pattern_0 description"
  865. msgid "The pattern on the bottom of the print on the first layer."
  866. msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa."
  867. #: fdmprinter.def.json
  868. msgctxt "top_bottom_pattern_0 option lines"
  869. msgid "Lines"
  870. msgstr "Líneas"
  871. #: fdmprinter.def.json
  872. msgctxt "top_bottom_pattern_0 option concentric"
  873. msgid "Concentric"
  874. msgstr "Concéntrico"
  875. #: fdmprinter.def.json
  876. msgctxt "top_bottom_pattern_0 option zigzag"
  877. msgid "Zig Zag"
  878. msgstr "Zigzag"
  879. #: fdmprinter.def.json
  880. msgctxt "connect_skin_polygons label"
  881. msgid "Connect Top/Bottom Polygons"
  882. msgstr "Conectar polígonos superiores/inferiores"
  883. #: fdmprinter.def.json
  884. msgctxt "connect_skin_polygons description"
  885. 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."
  886. msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior."
  887. #: fdmprinter.def.json
  888. msgctxt "skin_angles label"
  889. msgid "Top/Bottom Line Directions"
  890. msgstr "Direcciones de línea superior/inferior"
  891. #: fdmprinter.def.json
  892. msgctxt "skin_angles description"
  893. 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)."
  894. msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)."
  895. #: fdmprinter.def.json
  896. msgctxt "wall_0_inset label"
  897. msgid "Outer Wall Inset"
  898. msgstr "Entrante en la pared exterior"
  899. #: fdmprinter.def.json
  900. msgctxt "wall_0_inset description"
  901. 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."
  902. msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores."
  903. #: fdmprinter.def.json
  904. msgctxt "optimize_wall_printing_order label"
  905. msgid "Optimize Wall Printing Order"
  906. msgstr "Optimizar el orden de impresión de paredes"
  907. #: fdmprinter.def.json
  908. msgctxt "optimize_wall_printing_order description"
  909. 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."
  910. msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión."
  911. #: fdmprinter.def.json
  912. msgctxt "outer_inset_first label"
  913. msgid "Outer Before Inner Walls"
  914. msgstr "Paredes exteriores antes que interiores"
  915. #: fdmprinter.def.json
  916. msgctxt "outer_inset_first description"
  917. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  918. msgstr "Cuando está activado, imprime las paredes de fuera hacia dentro. Este ajuste puede mejorar la precisión dimensional en las direcciones X e Y si se utiliza un plástico de alta viscosidad como el ABS. Sin embargo, puede reducir la calidad de impresión de la superficie exterior, especialmente en voladizos."
  919. #: fdmprinter.def.json
  920. msgctxt "alternate_extra_perimeter label"
  921. msgid "Alternate Extra Wall"
  922. msgstr "Alternar pared adicional"
  923. #: fdmprinter.def.json
  924. msgctxt "alternate_extra_perimeter description"
  925. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  926. msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas."
  927. #: fdmprinter.def.json
  928. msgctxt "travel_compensate_overlapping_walls_enabled label"
  929. msgid "Compensate Wall Overlaps"
  930. msgstr "Compensar superposiciones de pared"
  931. #: fdmprinter.def.json
  932. msgctxt "travel_compensate_overlapping_walls_enabled description"
  933. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  934. msgstr "Compensa el flujo en partes de una pared que se están imprimiendo dónde ya hay una pared."
  935. #: fdmprinter.def.json
  936. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  937. msgid "Compensate Outer Wall Overlaps"
  938. msgstr "Compensar superposiciones de pared exterior"
  939. #: fdmprinter.def.json
  940. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  941. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  942. msgstr "Compensa el flujo en partes de una pared exterior que se están imprimiendo donde ya hay una pared."
  943. #: fdmprinter.def.json
  944. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  945. msgid "Compensate Inner Wall Overlaps"
  946. msgstr "Compensar superposiciones de pared interior"
  947. #: fdmprinter.def.json
  948. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  949. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  950. msgstr "Compensa el flujo en partes de una pared interior que se están imprimiendo donde ya hay una pared."
  951. #: fdmprinter.def.json
  952. msgctxt "wall_min_flow label"
  953. msgid "Minimum Wall Flow"
  954. msgstr "Flujo de pared mínimo"
  955. #: fdmprinter.def.json
  956. msgctxt "wall_min_flow description"
  957. msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  958. msgstr "Porcentaje mínimo de flujo permitido en una línea de pared. La compensación de superposición reduce el flujo de pared cuando se coloca cerca de otra pared. Las paredes con flujos inferiores a este valor se sustituirán con un movimiento de desplazamiento. Al utilizar este ajuste debe habilitar la compensación de superposición de pared e imprimir la pared exterior antes que las interiores."
  959. #: fdmprinter.def.json
  960. msgctxt "wall_min_flow_retract label"
  961. msgid "Prefer Retract"
  962. msgstr "Preferencia de retracción"
  963. #: fdmprinter.def.json
  964. msgctxt "wall_min_flow_retract description"
  965. msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  966. msgstr "Si se habilita esta opción, se utilizará retracción en lugar de peinada para los movimientos de desplazamiento que sustituyen las paredes cuyo flujo está por debajo de los límites mínimos de flujo."
  967. #: fdmprinter.def.json
  968. msgctxt "fill_perimeter_gaps label"
  969. msgid "Fill Gaps Between Walls"
  970. msgstr "Rellenar espacios entre paredes"
  971. #: fdmprinter.def.json
  972. msgctxt "fill_perimeter_gaps description"
  973. msgid "Fills the gaps between walls where no walls fit."
  974. msgstr "Rellena espacios entre paredes en los que no encaja ninguna pared."
  975. #: fdmprinter.def.json
  976. msgctxt "fill_perimeter_gaps option nowhere"
  977. msgid "Nowhere"
  978. msgstr "En ningún sitio"
  979. #: fdmprinter.def.json
  980. msgctxt "fill_perimeter_gaps option everywhere"
  981. msgid "Everywhere"
  982. msgstr "En todas partes"
  983. #: fdmprinter.def.json
  984. msgctxt "filter_out_tiny_gaps label"
  985. msgid "Filter Out Tiny Gaps"
  986. msgstr "Filtrar pequeños huecos"
  987. #: fdmprinter.def.json
  988. msgctxt "filter_out_tiny_gaps description"
  989. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  990. msgstr "Filtrar pequeños huecos para reducir las gotas en la parte externa del modelo."
  991. #: fdmprinter.def.json
  992. msgctxt "fill_outline_gaps label"
  993. msgid "Print Thin Walls"
  994. msgstr "Imprimir paredes finas"
  995. #: fdmprinter.def.json
  996. msgctxt "fill_outline_gaps description"
  997. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  998. msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera."
  999. #: fdmprinter.def.json
  1000. msgctxt "xy_offset label"
  1001. msgid "Horizontal Expansion"
  1002. msgstr "Expansión horizontal"
  1003. #: fdmprinter.def.json
  1004. msgctxt "xy_offset description"
  1005. 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."
  1006. msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños."
  1007. #: fdmprinter.def.json
  1008. msgctxt "xy_offset_layer_0 label"
  1009. msgid "Initial Layer Horizontal Expansion"
  1010. msgstr "Expansión horizontal de la capa inicial"
  1011. #: fdmprinter.def.json
  1012. msgctxt "xy_offset_layer_0 description"
  1013. 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\"."
  1014. msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»."
  1015. #: fdmprinter.def.json
  1016. msgctxt "hole_xy_offset label"
  1017. msgid "Hole Horizontal Expansion"
  1018. msgstr "Expansión horizontal de orificios"
  1019. #: fdmprinter.def.json
  1020. msgctxt "hole_xy_offset description"
  1021. 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."
  1022. msgstr "Cantidad de desplazamiento aplicado a todos los orificios en cada capa. Los valores positivos aumentan el tamaño de los orificios y los valores negativos reducen el tamaño de los mismos."
  1023. #: fdmprinter.def.json
  1024. msgctxt "z_seam_type label"
  1025. msgid "Z Seam Alignment"
  1026. msgstr "Alineación de costuras en Z"
  1027. #: fdmprinter.def.json
  1028. msgctxt "z_seam_type description"
  1029. 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."
  1030. msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida."
  1031. #: fdmprinter.def.json
  1032. msgctxt "z_seam_type option back"
  1033. msgid "User Specified"
  1034. msgstr "Especificada por el usuario"
  1035. #: fdmprinter.def.json
  1036. msgctxt "z_seam_type option shortest"
  1037. msgid "Shortest"
  1038. msgstr "Más corta"
  1039. #: fdmprinter.def.json
  1040. msgctxt "z_seam_type option random"
  1041. msgid "Random"
  1042. msgstr "Aleatoria"
  1043. #: fdmprinter.def.json
  1044. msgctxt "z_seam_type option sharpest_corner"
  1045. msgid "Sharpest Corner"
  1046. msgstr "Esquina más pronunciada"
  1047. #: fdmprinter.def.json
  1048. msgctxt "z_seam_position label"
  1049. msgid "Z Seam Position"
  1050. msgstr "Posición de costura en Z"
  1051. #: fdmprinter.def.json
  1052. msgctxt "z_seam_position description"
  1053. msgid "The position near where to start printing each part in a layer."
  1054. msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa."
  1055. #: fdmprinter.def.json
  1056. msgctxt "z_seam_position option backleft"
  1057. msgid "Back Left"
  1058. msgstr "Posterior izquierda"
  1059. #: fdmprinter.def.json
  1060. msgctxt "z_seam_position option back"
  1061. msgid "Back"
  1062. msgstr "Posterior"
  1063. #: fdmprinter.def.json
  1064. msgctxt "z_seam_position option backright"
  1065. msgid "Back Right"
  1066. msgstr "Posterior derecha"
  1067. #: fdmprinter.def.json
  1068. msgctxt "z_seam_position option right"
  1069. msgid "Right"
  1070. msgstr "Derecha"
  1071. #: fdmprinter.def.json
  1072. msgctxt "z_seam_position option frontright"
  1073. msgid "Front Right"
  1074. msgstr "Delantera derecha"
  1075. #: fdmprinter.def.json
  1076. msgctxt "z_seam_position option front"
  1077. msgid "Front"
  1078. msgstr "Delantera"
  1079. #: fdmprinter.def.json
  1080. msgctxt "z_seam_position option frontleft"
  1081. msgid "Front Left"
  1082. msgstr "Delantera izquierda"
  1083. #: fdmprinter.def.json
  1084. msgctxt "z_seam_position option left"
  1085. msgid "Left"
  1086. msgstr "Izquierda"
  1087. #: fdmprinter.def.json
  1088. msgctxt "z_seam_x label"
  1089. msgid "Z Seam X"
  1090. msgstr "X de la costura Z"
  1091. #: fdmprinter.def.json
  1092. msgctxt "z_seam_x description"
  1093. msgid "The X coordinate of the position near where to start printing each part in a layer."
  1094. msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa."
  1095. #: fdmprinter.def.json
  1096. msgctxt "z_seam_y label"
  1097. msgid "Z Seam Y"
  1098. msgstr "Y de la costura Z"
  1099. #: fdmprinter.def.json
  1100. msgctxt "z_seam_y description"
  1101. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1102. msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa."
  1103. #: fdmprinter.def.json
  1104. msgctxt "z_seam_corner label"
  1105. msgid "Seam Corner Preference"
  1106. msgstr "Preferencia de esquina de costura"
  1107. #: fdmprinter.def.json
  1108. msgctxt "z_seam_corner description"
  1109. 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."
  1110. msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno."
  1111. #: fdmprinter.def.json
  1112. msgctxt "z_seam_corner option z_seam_corner_none"
  1113. msgid "None"
  1114. msgstr "Ninguno"
  1115. #: fdmprinter.def.json
  1116. msgctxt "z_seam_corner option z_seam_corner_inner"
  1117. msgid "Hide Seam"
  1118. msgstr "Ocultar costura"
  1119. #: fdmprinter.def.json
  1120. msgctxt "z_seam_corner option z_seam_corner_outer"
  1121. msgid "Expose Seam"
  1122. msgstr "Mostrar costura"
  1123. #: fdmprinter.def.json
  1124. msgctxt "z_seam_corner option z_seam_corner_any"
  1125. msgid "Hide or Expose Seam"
  1126. msgstr "Ocultar o mostrar costura"
  1127. #: fdmprinter.def.json
  1128. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1129. msgid "Smart Hiding"
  1130. msgstr "Costura inteligente"
  1131. #: fdmprinter.def.json
  1132. msgctxt "z_seam_relative label"
  1133. msgid "Z Seam Relative"
  1134. msgstr "Costuras relativas en Z"
  1135. #: fdmprinter.def.json
  1136. msgctxt "z_seam_relative description"
  1137. 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."
  1138. msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión."
  1139. #: fdmprinter.def.json
  1140. msgctxt "skin_no_small_gaps_heuristic label"
  1141. msgid "No Skin in Z Gaps"
  1142. msgstr "Sin forro en huecos en Z"
  1143. #: fdmprinter.def.json
  1144. msgctxt "skin_no_small_gaps_heuristic description"
  1145. 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."
  1146. msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire."
  1147. #: fdmprinter.def.json
  1148. msgctxt "skin_outline_count label"
  1149. msgid "Extra Skin Wall Count"
  1150. msgstr "Recuento de paredes adicionales de forro"
  1151. #: fdmprinter.def.json
  1152. msgctxt "skin_outline_count description"
  1153. 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."
  1154. msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno."
  1155. #: fdmprinter.def.json
  1156. msgctxt "ironing_enabled label"
  1157. msgid "Enable Ironing"
  1158. msgstr "Habilitar alisado"
  1159. #: fdmprinter.def.json
  1160. msgctxt "ironing_enabled description"
  1161. 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."
  1162. msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material."
  1163. #: fdmprinter.def.json
  1164. msgctxt "ironing_only_highest_layer label"
  1165. msgid "Iron Only Highest Layer"
  1166. msgstr "Planchar solo la capa superior"
  1167. #: fdmprinter.def.json
  1168. msgctxt "ironing_only_highest_layer description"
  1169. 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."
  1170. msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave."
  1171. #: fdmprinter.def.json
  1172. msgctxt "ironing_pattern label"
  1173. msgid "Ironing Pattern"
  1174. msgstr "Patrón de alisado"
  1175. #: fdmprinter.def.json
  1176. msgctxt "ironing_pattern description"
  1177. msgid "The pattern to use for ironing top surfaces."
  1178. msgstr "El patrón que se usará para el alisado de las superficies superiores."
  1179. #: fdmprinter.def.json
  1180. msgctxt "ironing_pattern option concentric"
  1181. msgid "Concentric"
  1182. msgstr "Concéntrico"
  1183. #: fdmprinter.def.json
  1184. msgctxt "ironing_pattern option zigzag"
  1185. msgid "Zig Zag"
  1186. msgstr "Zigzag"
  1187. #: fdmprinter.def.json
  1188. msgctxt "ironing_line_spacing label"
  1189. msgid "Ironing Line Spacing"
  1190. msgstr "Espaciado de líneas del alisado"
  1191. #: fdmprinter.def.json
  1192. msgctxt "ironing_line_spacing description"
  1193. msgid "The distance between the lines of ironing."
  1194. msgstr "Distancia entre las líneas del alisado."
  1195. #: fdmprinter.def.json
  1196. msgctxt "ironing_flow label"
  1197. msgid "Ironing Flow"
  1198. msgstr "Flujo de alisado"
  1199. #: fdmprinter.def.json
  1200. msgctxt "ironing_flow description"
  1201. 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."
  1202. msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie."
  1203. #: fdmprinter.def.json
  1204. msgctxt "ironing_inset label"
  1205. msgid "Ironing Inset"
  1206. msgstr "Inserción de alisado"
  1207. #: fdmprinter.def.json
  1208. msgctxt "ironing_inset description"
  1209. 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."
  1210. msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular."
  1211. #: fdmprinter.def.json
  1212. msgctxt "speed_ironing label"
  1213. msgid "Ironing Speed"
  1214. msgstr "Velocidad de alisado"
  1215. #: fdmprinter.def.json
  1216. msgctxt "speed_ironing description"
  1217. msgid "The speed at which to pass over the top surface."
  1218. msgstr "Velocidad a la que pasa por encima de la superficie superior."
  1219. #: fdmprinter.def.json
  1220. msgctxt "acceleration_ironing label"
  1221. msgid "Ironing Acceleration"
  1222. msgstr "Aceleración del alisado"
  1223. #: fdmprinter.def.json
  1224. msgctxt "acceleration_ironing description"
  1225. msgid "The acceleration with which ironing is performed."
  1226. msgstr "La aceleración a la que se produce el alisado."
  1227. #: fdmprinter.def.json
  1228. msgctxt "jerk_ironing label"
  1229. msgid "Ironing Jerk"
  1230. msgstr "Impulso de alisado"
  1231. #: fdmprinter.def.json
  1232. msgctxt "jerk_ironing description"
  1233. msgid "The maximum instantaneous velocity change while performing ironing."
  1234. msgstr "Cambio en la velocidad instantánea máxima durante el alisado."
  1235. #: fdmprinter.def.json
  1236. msgctxt "skin_overlap label"
  1237. msgid "Skin Overlap Percentage"
  1238. msgstr "Porcentaje de superposición del forro"
  1239. #: fdmprinter.def.json
  1240. msgctxt "skin_overlap description"
  1241. 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."
  1242. msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared."
  1243. #: fdmprinter.def.json
  1244. msgctxt "skin_overlap_mm label"
  1245. msgid "Skin Overlap"
  1246. msgstr "Superposición del forro"
  1247. #: fdmprinter.def.json
  1248. msgctxt "skin_overlap_mm description"
  1249. 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."
  1250. msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared."
  1251. #: fdmprinter.def.json
  1252. msgctxt "infill label"
  1253. msgid "Infill"
  1254. msgstr "Relleno"
  1255. #: fdmprinter.def.json
  1256. msgctxt "infill description"
  1257. msgid "Infill"
  1258. msgstr "Relleno"
  1259. #: fdmprinter.def.json
  1260. msgctxt "infill_extruder_nr label"
  1261. msgid "Infill Extruder"
  1262. msgstr "Extrusor del relleno"
  1263. #: fdmprinter.def.json
  1264. msgctxt "infill_extruder_nr description"
  1265. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1266. msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple."
  1267. #: fdmprinter.def.json
  1268. msgctxt "infill_sparse_density label"
  1269. msgid "Infill Density"
  1270. msgstr "Densidad de relleno"
  1271. #: fdmprinter.def.json
  1272. msgctxt "infill_sparse_density description"
  1273. msgid "Adjusts the density of infill of the print."
  1274. msgstr "Ajusta la densidad del relleno de la impresión."
  1275. #: fdmprinter.def.json
  1276. msgctxt "infill_line_distance label"
  1277. msgid "Infill Line Distance"
  1278. msgstr "Distancia de línea de relleno"
  1279. #: fdmprinter.def.json
  1280. msgctxt "infill_line_distance description"
  1281. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1282. msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno."
  1283. #: fdmprinter.def.json
  1284. msgctxt "infill_pattern label"
  1285. msgid "Infill Pattern"
  1286. msgstr "Patrón de relleno"
  1287. #: fdmprinter.def.json
  1288. msgctxt "infill_pattern description"
  1289. 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."
  1290. msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octeto, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. El relleno giroide, cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección."
  1291. #: fdmprinter.def.json
  1292. msgctxt "infill_pattern option grid"
  1293. msgid "Grid"
  1294. msgstr "Rejilla"
  1295. #: fdmprinter.def.json
  1296. msgctxt "infill_pattern option lines"
  1297. msgid "Lines"
  1298. msgstr "Líneas"
  1299. #: fdmprinter.def.json
  1300. msgctxt "infill_pattern option triangles"
  1301. msgid "Triangles"
  1302. msgstr "Triángulos"
  1303. #: fdmprinter.def.json
  1304. msgctxt "infill_pattern option trihexagon"
  1305. msgid "Tri-Hexagon"
  1306. msgstr "Trihexagonal"
  1307. #: fdmprinter.def.json
  1308. msgctxt "infill_pattern option cubic"
  1309. msgid "Cubic"
  1310. msgstr "Cúbico"
  1311. #: fdmprinter.def.json
  1312. msgctxt "infill_pattern option cubicsubdiv"
  1313. msgid "Cubic Subdivision"
  1314. msgstr "Subdivisión cúbica"
  1315. #: fdmprinter.def.json
  1316. msgctxt "infill_pattern option tetrahedral"
  1317. msgid "Octet"
  1318. msgstr "Octeto"
  1319. #: fdmprinter.def.json
  1320. msgctxt "infill_pattern option quarter_cubic"
  1321. msgid "Quarter Cubic"
  1322. msgstr "Cúbico bitruncado"
  1323. #: fdmprinter.def.json
  1324. msgctxt "infill_pattern option concentric"
  1325. msgid "Concentric"
  1326. msgstr "Concéntrico"
  1327. #: fdmprinter.def.json
  1328. msgctxt "infill_pattern option zigzag"
  1329. msgid "Zig Zag"
  1330. msgstr "Zigzag"
  1331. #: fdmprinter.def.json
  1332. msgctxt "infill_pattern option cross"
  1333. msgid "Cross"
  1334. msgstr "Cruz"
  1335. #: fdmprinter.def.json
  1336. msgctxt "infill_pattern option cross_3d"
  1337. msgid "Cross 3D"
  1338. msgstr "Cruz 3D"
  1339. #: fdmprinter.def.json
  1340. msgctxt "infill_pattern option gyroid"
  1341. msgid "Gyroid"
  1342. msgstr "Giroide"
  1343. #: fdmprinter.def.json
  1344. msgctxt "zig_zaggify_infill label"
  1345. msgid "Connect Infill Lines"
  1346. msgstr "Conectar líneas de relleno"
  1347. #: fdmprinter.def.json
  1348. msgctxt "zig_zaggify_infill description"
  1349. 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."
  1350. msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado."
  1351. #: fdmprinter.def.json
  1352. msgctxt "connect_infill_polygons label"
  1353. msgid "Connect Infill Polygons"
  1354. msgstr "Conectar polígonos de relleno"
  1355. #: fdmprinter.def.json
  1356. msgctxt "connect_infill_polygons description"
  1357. 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."
  1358. msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados."
  1359. #: fdmprinter.def.json
  1360. msgctxt "infill_angles label"
  1361. msgid "Infill Line Directions"
  1362. msgstr "Direcciones de línea de relleno"
  1363. #: fdmprinter.def.json
  1364. msgctxt "infill_angles description"
  1365. 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)."
  1366. msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)."
  1367. #: fdmprinter.def.json
  1368. msgctxt "infill_offset_x label"
  1369. msgid "Infill X Offset"
  1370. msgstr "Desplazamiento del relleno sobre el eje X"
  1371. #: fdmprinter.def.json
  1372. msgctxt "infill_offset_x description"
  1373. msgid "The infill pattern is moved this distance along the X axis."
  1374. msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X."
  1375. #: fdmprinter.def.json
  1376. msgctxt "infill_offset_y label"
  1377. msgid "Infill Y Offset"
  1378. msgstr "Desplazamiento del relleno sobre el eje Y"
  1379. #: fdmprinter.def.json
  1380. msgctxt "infill_offset_y description"
  1381. msgid "The infill pattern is moved this distance along the Y axis."
  1382. msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y."
  1383. #: fdmprinter.def.json
  1384. msgctxt "infill_randomize_start_location label"
  1385. msgid "Randomize Infill Start"
  1386. msgstr "Comienzo de relleno aleatorio"
  1387. #: fdmprinter.def.json
  1388. msgctxt "infill_randomize_start_location description"
  1389. 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."
  1390. msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional."
  1391. #: fdmprinter.def.json
  1392. msgctxt "infill_multiplier label"
  1393. msgid "Infill Line Multiplier"
  1394. msgstr "Multiplicador de línea de relleno"
  1395. #: fdmprinter.def.json
  1396. msgctxt "infill_multiplier description"
  1397. 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."
  1398. msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material."
  1399. #: fdmprinter.def.json
  1400. msgctxt "infill_wall_line_count label"
  1401. msgid "Extra Infill Wall Count"
  1402. msgstr "Recuento de líneas de pared adicional"
  1403. #: fdmprinter.def.json
  1404. msgctxt "infill_wall_line_count description"
  1405. msgid ""
  1406. "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"
  1407. "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."
  1408. msgstr ""
  1409. "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material.\n"
  1410. "Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente."
  1411. #: fdmprinter.def.json
  1412. msgctxt "sub_div_rad_add label"
  1413. msgid "Cubic Subdivision Shell"
  1414. msgstr "Perímetro de la subdivisión cúbica"
  1415. #: fdmprinter.def.json
  1416. msgctxt "sub_div_rad_add description"
  1417. 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."
  1418. msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo."
  1419. #: fdmprinter.def.json
  1420. msgctxt "infill_overlap label"
  1421. msgid "Infill Overlap Percentage"
  1422. msgstr "Porcentaje de superposición del relleno"
  1423. #: fdmprinter.def.json
  1424. msgctxt "infill_overlap description"
  1425. 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."
  1426. msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno."
  1427. #: fdmprinter.def.json
  1428. msgctxt "infill_overlap_mm label"
  1429. msgid "Infill Overlap"
  1430. msgstr "Superposición del relleno"
  1431. #: fdmprinter.def.json
  1432. msgctxt "infill_overlap_mm description"
  1433. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1434. msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno."
  1435. #: fdmprinter.def.json
  1436. msgctxt "infill_wipe_dist label"
  1437. msgid "Infill Wipe Distance"
  1438. msgstr "Distancia de pasada de relleno"
  1439. #: fdmprinter.def.json
  1440. msgctxt "infill_wipe_dist description"
  1441. 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."
  1442. msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno."
  1443. #: fdmprinter.def.json
  1444. msgctxt "infill_sparse_thickness label"
  1445. msgid "Infill Layer Thickness"
  1446. msgstr "Grosor de la capa de relleno"
  1447. #: fdmprinter.def.json
  1448. msgctxt "infill_sparse_thickness description"
  1449. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1450. msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea."
  1451. #: fdmprinter.def.json
  1452. msgctxt "gradual_infill_steps label"
  1453. msgid "Gradual Infill Steps"
  1454. msgstr "Pasos de relleno necesarios"
  1455. #: fdmprinter.def.json
  1456. msgctxt "gradual_infill_steps description"
  1457. 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."
  1458. msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno."
  1459. #: fdmprinter.def.json
  1460. msgctxt "gradual_infill_step_height label"
  1461. msgid "Gradual Infill Step Height"
  1462. msgstr "Altura necesaria de los pasos de relleno"
  1463. #: fdmprinter.def.json
  1464. msgctxt "gradual_infill_step_height description"
  1465. msgid "The height of infill of a given density before switching to half the density."
  1466. msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad."
  1467. #: fdmprinter.def.json
  1468. msgctxt "infill_before_walls label"
  1469. msgid "Infill Before Walls"
  1470. msgstr "Relleno antes que las paredes"
  1471. #: fdmprinter.def.json
  1472. msgctxt "infill_before_walls description"
  1473. 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."
  1474. msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie."
  1475. #: fdmprinter.def.json
  1476. msgctxt "min_infill_area label"
  1477. msgid "Minimum Infill Area"
  1478. msgstr "Área de relleno mínima"
  1479. #: fdmprinter.def.json
  1480. msgctxt "min_infill_area description"
  1481. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1482. msgstr "No genere áreas con un relleno inferior a este (utilice forro)."
  1483. #: fdmprinter.def.json
  1484. msgctxt "infill_support_enabled label"
  1485. msgid "Infill Support"
  1486. msgstr "Soporte de relleno"
  1487. #: fdmprinter.def.json
  1488. msgctxt "infill_support_enabled description"
  1489. 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."
  1490. msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme."
  1491. #: fdmprinter.def.json
  1492. msgctxt "infill_support_angle label"
  1493. msgid "Infill Overhang Angle"
  1494. msgstr "Ángulo de voladizo de relleno"
  1495. #: fdmprinter.def.json
  1496. msgctxt "infill_support_angle description"
  1497. 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."
  1498. msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno."
  1499. #: fdmprinter.def.json
  1500. msgctxt "skin_preshrink label"
  1501. msgid "Skin Removal Width"
  1502. msgstr "Anchura de retirada del forro"
  1503. #: fdmprinter.def.json
  1504. msgctxt "skin_preshrink description"
  1505. 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."
  1506. msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo."
  1507. #: fdmprinter.def.json
  1508. msgctxt "top_skin_preshrink label"
  1509. msgid "Top Skin Removal Width"
  1510. msgstr "Anchura de retirada del forro superior"
  1511. #: fdmprinter.def.json
  1512. msgctxt "top_skin_preshrink description"
  1513. 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."
  1514. msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo."
  1515. #: fdmprinter.def.json
  1516. msgctxt "bottom_skin_preshrink label"
  1517. msgid "Bottom Skin Removal Width"
  1518. msgstr "Anchura de retirada del forro inferior"
  1519. #: fdmprinter.def.json
  1520. msgctxt "bottom_skin_preshrink description"
  1521. 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."
  1522. msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo."
  1523. #: fdmprinter.def.json
  1524. msgctxt "expand_skins_expand_distance label"
  1525. msgid "Skin Expand Distance"
  1526. msgstr "Distancia de expansión del forro"
  1527. #: fdmprinter.def.json
  1528. msgctxt "expand_skins_expand_distance description"
  1529. 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."
  1530. msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material."
  1531. #: fdmprinter.def.json
  1532. msgctxt "top_skin_expand_distance label"
  1533. msgid "Top Skin Expand Distance"
  1534. msgstr "Distancia de expansión del forro superior"
  1535. #: fdmprinter.def.json
  1536. msgctxt "top_skin_expand_distance description"
  1537. 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."
  1538. msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material."
  1539. #: fdmprinter.def.json
  1540. msgctxt "bottom_skin_expand_distance label"
  1541. msgid "Bottom Skin Expand Distance"
  1542. msgstr "Distancia de expansión del forro inferior"
  1543. #: fdmprinter.def.json
  1544. msgctxt "bottom_skin_expand_distance description"
  1545. 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."
  1546. msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material."
  1547. #: fdmprinter.def.json
  1548. msgctxt "max_skin_angle_for_expansion label"
  1549. msgid "Maximum Skin Angle for Expansion"
  1550. msgstr "Ángulo máximo de expansión del forro"
  1551. #: fdmprinter.def.json
  1552. msgctxt "max_skin_angle_for_expansion description"
  1553. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  1554. msgstr "Las superficies superiores e inferiores de un objeto con un ángulo mayor que este no expanden los forros superior e inferior. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical. Un ángulo de 0º es horizontal, mientras que uno de 90º es vertical."
  1555. #: fdmprinter.def.json
  1556. msgctxt "min_skin_width_for_expansion label"
  1557. msgid "Minimum Skin Width for Expansion"
  1558. msgstr "Anchura de expansión mínima del forro"
  1559. #: fdmprinter.def.json
  1560. msgctxt "min_skin_width_for_expansion description"
  1561. 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."
  1562. msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical."
  1563. #: fdmprinter.def.json
  1564. msgctxt "skin_edge_support_thickness label"
  1565. msgid "Skin Edge Support Thickness"
  1566. msgstr "Espesor de soporte de los bordes del forro"
  1567. #: fdmprinter.def.json
  1568. msgctxt "skin_edge_support_thickness description"
  1569. msgid "The thickness of the extra infill that supports skin edges."
  1570. msgstr "El grosor del relleno extra que soporta los bordes del forro."
  1571. #: fdmprinter.def.json
  1572. msgctxt "skin_edge_support_layers label"
  1573. msgid "Skin Edge Support Layers"
  1574. msgstr "Capas de soporte de los bordes del forro"
  1575. #: fdmprinter.def.json
  1576. msgctxt "skin_edge_support_layers description"
  1577. msgid "The number of infill layers that supports skin edges."
  1578. msgstr "El número de capas de relleno que soportan los bordes del forro."
  1579. #: fdmprinter.def.json
  1580. msgctxt "material label"
  1581. msgid "Material"
  1582. msgstr "Material"
  1583. #: fdmprinter.def.json
  1584. msgctxt "material description"
  1585. msgid "Material"
  1586. msgstr "Material"
  1587. #: fdmprinter.def.json
  1588. msgctxt "default_material_print_temperature label"
  1589. msgid "Default Printing Temperature"
  1590. msgstr "Temperatura de impresión predeterminada"
  1591. #: fdmprinter.def.json
  1592. msgctxt "default_material_print_temperature description"
  1593. 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"
  1594. msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor"
  1595. #: fdmprinter.def.json
  1596. msgctxt "build_volume_temperature label"
  1597. msgid "Build Volume Temperature"
  1598. msgstr "Temperatura de volumen de impresión"
  1599. #: fdmprinter.def.json
  1600. msgctxt "build_volume_temperature description"
  1601. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1602. msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará."
  1603. #: fdmprinter.def.json
  1604. msgctxt "material_print_temperature label"
  1605. msgid "Printing Temperature"
  1606. msgstr "Temperatura de impresión"
  1607. #: fdmprinter.def.json
  1608. msgctxt "material_print_temperature description"
  1609. msgid "The temperature used for printing."
  1610. msgstr "Temperatura de la impresión."
  1611. #: fdmprinter.def.json
  1612. msgctxt "material_print_temperature_layer_0 label"
  1613. msgid "Printing Temperature Initial Layer"
  1614. msgstr "Temperatura de impresión de la capa inicial"
  1615. #: fdmprinter.def.json
  1616. msgctxt "material_print_temperature_layer_0 description"
  1617. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1618. msgstr "Temperatura que se usa para imprimir la primera capa. Se ajusta a 0 para desactivar la manipulación especial de la capa inicial."
  1619. #: fdmprinter.def.json
  1620. msgctxt "material_initial_print_temperature label"
  1621. msgid "Initial Printing Temperature"
  1622. msgstr "Temperatura de impresión inicial"
  1623. #: fdmprinter.def.json
  1624. msgctxt "material_initial_print_temperature description"
  1625. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1626. msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión."
  1627. #: fdmprinter.def.json
  1628. msgctxt "material_final_print_temperature label"
  1629. msgid "Final Printing Temperature"
  1630. msgstr "Temperatura de impresión final"
  1631. #: fdmprinter.def.json
  1632. msgctxt "material_final_print_temperature description"
  1633. msgid "The temperature to which to already start cooling down just before the end of printing."
  1634. msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión."
  1635. #: fdmprinter.def.json
  1636. msgctxt "material_extrusion_cool_down_speed label"
  1637. msgid "Extrusion Cool Down Speed Modifier"
  1638. msgstr "Modificador de la velocidad de enfriamiento de la extrusión"
  1639. #: fdmprinter.def.json
  1640. msgctxt "material_extrusion_cool_down_speed description"
  1641. 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."
  1642. msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión."
  1643. #: fdmprinter.def.json
  1644. msgctxt "default_material_bed_temperature label"
  1645. msgid "Default Build Plate Temperature"
  1646. msgstr "Temperatura predeterminada de la placa de impresión"
  1647. #: fdmprinter.def.json
  1648. msgctxt "default_material_bed_temperature description"
  1649. 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"
  1650. msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor"
  1651. #: fdmprinter.def.json
  1652. msgctxt "material_bed_temperature label"
  1653. msgid "Build Plate Temperature"
  1654. msgstr "Temperatura de la placa de impresión"
  1655. #: fdmprinter.def.json
  1656. msgctxt "material_bed_temperature description"
  1657. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1658. msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la temperatura de la plataforma no se ajustará."
  1659. #: fdmprinter.def.json
  1660. msgctxt "material_bed_temperature_layer_0 label"
  1661. msgid "Build Plate Temperature Initial Layer"
  1662. msgstr "Temperatura de la placa de impresión en la capa inicial"
  1663. #: fdmprinter.def.json
  1664. msgctxt "material_bed_temperature_layer_0 description"
  1665. msgid "The temperature used for the heated build plate at the first layer."
  1666. msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa."
  1667. #: fdmprinter.def.json
  1668. msgctxt "material_adhesion_tendency label"
  1669. msgid "Adhesion Tendency"
  1670. msgstr "Tendencia de adherencia"
  1671. #: fdmprinter.def.json
  1672. msgctxt "material_adhesion_tendency description"
  1673. msgid "Surface adhesion tendency."
  1674. msgstr "Tendencia de adherencia de la superficie."
  1675. #: fdmprinter.def.json
  1676. msgctxt "material_surface_energy label"
  1677. msgid "Surface Energy"
  1678. msgstr "Energía de la superficie"
  1679. #: fdmprinter.def.json
  1680. msgctxt "material_surface_energy description"
  1681. msgid "Surface energy."
  1682. msgstr "Energía de la superficie."
  1683. #: fdmprinter.def.json
  1684. msgctxt "material_shrinkage_percentage label"
  1685. msgid "Shrinkage Ratio"
  1686. msgstr "Índice de compresión"
  1687. #: fdmprinter.def.json
  1688. msgctxt "material_shrinkage_percentage description"
  1689. msgid "Shrinkage ratio in percentage."
  1690. msgstr "Índice de compresión en porcentaje."
  1691. #: fdmprinter.def.json
  1692. msgctxt "material_crystallinity label"
  1693. msgid "Crystalline Material"
  1694. msgstr "Material cristalino"
  1695. #: fdmprinter.def.json
  1696. msgctxt "material_crystallinity description"
  1697. 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)?"
  1698. msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?"
  1699. #: fdmprinter.def.json
  1700. msgctxt "material_anti_ooze_retracted_position label"
  1701. msgid "Anti-ooze Retracted Position"
  1702. msgstr "Velocidad de retracción antirrezumado"
  1703. #: fdmprinter.def.json
  1704. msgctxt "material_anti_ooze_retracted_position description"
  1705. msgid "How far the material needs to be retracted before it stops oozing."
  1706. msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado."
  1707. #: fdmprinter.def.json
  1708. msgctxt "material_anti_ooze_retraction_speed label"
  1709. msgid "Anti-ooze Retraction Speed"
  1710. msgstr "Velocidad de retracción antirrezumado"
  1711. #: fdmprinter.def.json
  1712. msgctxt "material_anti_ooze_retraction_speed description"
  1713. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1714. msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado."
  1715. #: fdmprinter.def.json
  1716. msgctxt "material_break_preparation_retracted_position label"
  1717. msgid "Break Preparation Retracted Position"
  1718. msgstr "Posición retraída de preparación de rotura"
  1719. #: fdmprinter.def.json
  1720. msgctxt "material_break_preparation_retracted_position description"
  1721. msgid "How far the filament can be stretched before it breaks, while heated."
  1722. msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta."
  1723. #: fdmprinter.def.json
  1724. msgctxt "material_break_preparation_speed label"
  1725. msgid "Break Preparation Retraction Speed"
  1726. msgstr "Velocidad de retracción de preparación de rotura"
  1727. #: fdmprinter.def.json
  1728. msgctxt "material_break_preparation_speed description"
  1729. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1730. msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción."
  1731. #: fdmprinter.def.json
  1732. msgctxt "material_break_preparation_temperature label"
  1733. msgid "Break Preparation Temperature"
  1734. msgstr "Temperatura de preparación de rotura"
  1735. #: fdmprinter.def.json
  1736. msgctxt "material_break_preparation_temperature description"
  1737. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1738. msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible."
  1739. #: fdmprinter.def.json
  1740. msgctxt "material_break_retracted_position label"
  1741. msgid "Break Retracted Position"
  1742. msgstr "Posición retraída de rotura"
  1743. #: fdmprinter.def.json
  1744. msgctxt "material_break_retracted_position description"
  1745. msgid "How far to retract the filament in order to break it cleanly."
  1746. msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente."
  1747. #: fdmprinter.def.json
  1748. msgctxt "material_break_speed label"
  1749. msgid "Break Retraction Speed"
  1750. msgstr "Velocidad de retracción de rotura"
  1751. #: fdmprinter.def.json
  1752. msgctxt "material_break_speed description"
  1753. msgid "The speed at which to retract the filament in order to break it cleanly."
  1754. msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente."
  1755. #: fdmprinter.def.json
  1756. msgctxt "material_break_temperature label"
  1757. msgid "Break Temperature"
  1758. msgstr "Temperatura de rotura"
  1759. #: fdmprinter.def.json
  1760. msgctxt "material_break_temperature description"
  1761. msgid "The temperature at which the filament is broken for a clean break."
  1762. msgstr "Temperatura a la que se rompe el filamento de forma limpia."
  1763. #: fdmprinter.def.json
  1764. msgctxt "material_flush_purge_speed label"
  1765. msgid "Flush Purge Speed"
  1766. msgstr "Velocidad de purga de descarga"
  1767. #: fdmprinter.def.json
  1768. msgctxt "material_flush_purge_speed description"
  1769. msgid "How fast to prime the material after switching to a different material."
  1770. msgstr "La velocidad de cebado del material después de cambiar a otro material."
  1771. #: fdmprinter.def.json
  1772. msgctxt "material_flush_purge_length label"
  1773. msgid "Flush Purge Length"
  1774. msgstr "Longitud de purga de descarga"
  1775. #: fdmprinter.def.json
  1776. msgctxt "material_flush_purge_length description"
  1777. 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."
  1778. msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material."
  1779. #: fdmprinter.def.json
  1780. msgctxt "material_end_of_filament_purge_speed label"
  1781. msgid "End of Filament Purge Speed"
  1782. msgstr "Velocidad de purga del extremo del filamento"
  1783. #: fdmprinter.def.json
  1784. msgctxt "material_end_of_filament_purge_speed description"
  1785. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1786. msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material."
  1787. #: fdmprinter.def.json
  1788. msgctxt "material_end_of_filament_purge_length label"
  1789. msgid "End of Filament Purge Length"
  1790. msgstr "Longitud de purga del extremo del filamento"
  1791. #: fdmprinter.def.json
  1792. msgctxt "material_end_of_filament_purge_length description"
  1793. 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."
  1794. msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material."
  1795. #: fdmprinter.def.json
  1796. msgctxt "material_maximum_park_duration label"
  1797. msgid "Maximum Park Duration"
  1798. msgstr "Duración máxima de estacionamiento"
  1799. #: fdmprinter.def.json
  1800. msgctxt "material_maximum_park_duration description"
  1801. msgid "How long the material can be kept out of dry storage safely."
  1802. msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura."
  1803. #: fdmprinter.def.json
  1804. msgctxt "material_no_load_move_factor label"
  1805. msgid "No Load Move Factor"
  1806. msgstr "Factor de desplazamiento sin carga"
  1807. #: fdmprinter.def.json
  1808. msgctxt "material_no_load_move_factor description"
  1809. 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."
  1810. msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento."
  1811. #: fdmprinter.def.json
  1812. msgctxt "material_flow label"
  1813. msgid "Flow"
  1814. msgstr "Flujo"
  1815. #: fdmprinter.def.json
  1816. msgctxt "material_flow description"
  1817. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1818. msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor."
  1819. #: fdmprinter.def.json
  1820. msgctxt "wall_material_flow label"
  1821. msgid "Wall Flow"
  1822. msgstr "Flujo de pared"
  1823. #: fdmprinter.def.json
  1824. msgctxt "wall_material_flow description"
  1825. msgid "Flow compensation on wall lines."
  1826. msgstr "Compensación de flujo en líneas de pared."
  1827. #: fdmprinter.def.json
  1828. msgctxt "wall_0_material_flow label"
  1829. msgid "Outer Wall Flow"
  1830. msgstr "Flujo de pared exterior"
  1831. #: fdmprinter.def.json
  1832. msgctxt "wall_0_material_flow description"
  1833. msgid "Flow compensation on the outermost wall line."
  1834. msgstr "Compensación de flujo en la línea de pared más externa."
  1835. #: fdmprinter.def.json
  1836. msgctxt "wall_x_material_flow label"
  1837. msgid "Inner Wall(s) Flow"
  1838. msgstr "Flujo de pared o paredes interiores"
  1839. #: fdmprinter.def.json
  1840. msgctxt "wall_x_material_flow description"
  1841. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1842. msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa."
  1843. #: fdmprinter.def.json
  1844. msgctxt "skin_material_flow label"
  1845. msgid "Top/Bottom Flow"
  1846. msgstr "Flujo superior o inferior"
  1847. #: fdmprinter.def.json
  1848. msgctxt "skin_material_flow description"
  1849. msgid "Flow compensation on top/bottom lines."
  1850. msgstr "Compensación de flujo en las líneas superiores o inferiores."
  1851. #: fdmprinter.def.json
  1852. msgctxt "roofing_material_flow label"
  1853. msgid "Top Surface Skin Flow"
  1854. msgstr "Flujo de forro de superficie superior"
  1855. #: fdmprinter.def.json
  1856. msgctxt "roofing_material_flow description"
  1857. msgid "Flow compensation on lines of the areas at the top of the print."
  1858. msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión."
  1859. #: fdmprinter.def.json
  1860. msgctxt "infill_material_flow label"
  1861. msgid "Infill Flow"
  1862. msgstr "Flujo de relleno"
  1863. #: fdmprinter.def.json
  1864. msgctxt "infill_material_flow description"
  1865. msgid "Flow compensation on infill lines."
  1866. msgstr "Compensación de flujo en líneas de relleno."
  1867. #: fdmprinter.def.json
  1868. msgctxt "skirt_brim_material_flow label"
  1869. msgid "Skirt/Brim Flow"
  1870. msgstr "Flujo de falda/borde"
  1871. #: fdmprinter.def.json
  1872. msgctxt "skirt_brim_material_flow description"
  1873. msgid "Flow compensation on skirt or brim lines."
  1874. msgstr "Compensación de flujo en líneas de falda o borde."
  1875. #: fdmprinter.def.json
  1876. msgctxt "support_material_flow label"
  1877. msgid "Support Flow"
  1878. msgstr "Flujo de soporte"
  1879. #: fdmprinter.def.json
  1880. msgctxt "support_material_flow description"
  1881. msgid "Flow compensation on support structure lines."
  1882. msgstr "Compensación de flujo en líneas de estructura de soporte."
  1883. #: fdmprinter.def.json
  1884. msgctxt "support_interface_material_flow label"
  1885. msgid "Support Interface Flow"
  1886. msgstr "Flujo de interfaz de soporte"
  1887. #: fdmprinter.def.json
  1888. msgctxt "support_interface_material_flow description"
  1889. msgid "Flow compensation on lines of support roof or floor."
  1890. msgstr "Compensación de flujo en líneas de techo o suelo de soporte."
  1891. #: fdmprinter.def.json
  1892. msgctxt "support_roof_material_flow label"
  1893. msgid "Support Roof Flow"
  1894. msgstr "Flujo de techo de soporte"
  1895. #: fdmprinter.def.json
  1896. msgctxt "support_roof_material_flow description"
  1897. msgid "Flow compensation on support roof lines."
  1898. msgstr "Compensación de flujo en líneas de techo de soporte."
  1899. #: fdmprinter.def.json
  1900. msgctxt "support_bottom_material_flow label"
  1901. msgid "Support Floor Flow"
  1902. msgstr "Flujo de suelo de soporte"
  1903. #: fdmprinter.def.json
  1904. msgctxt "support_bottom_material_flow description"
  1905. msgid "Flow compensation on support floor lines."
  1906. msgstr "Compensación de flujo en líneas de suelo de soporte."
  1907. #: fdmprinter.def.json
  1908. msgctxt "prime_tower_flow label"
  1909. msgid "Prime Tower Flow"
  1910. msgstr "Flujo de la torre auxiliar"
  1911. #: fdmprinter.def.json
  1912. msgctxt "prime_tower_flow description"
  1913. msgid "Flow compensation on prime tower lines."
  1914. msgstr "Compensación de flujo en líneas de la torre auxiliar."
  1915. #: fdmprinter.def.json
  1916. msgctxt "material_flow_layer_0 label"
  1917. msgid "Initial Layer Flow"
  1918. msgstr "Flujo de capa inicial"
  1919. #: fdmprinter.def.json
  1920. msgctxt "material_flow_layer_0 description"
  1921. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1922. msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor."
  1923. #: fdmprinter.def.json
  1924. msgctxt "material_standby_temperature label"
  1925. msgid "Standby Temperature"
  1926. msgstr "Temperatura en modo de espera"
  1927. #: fdmprinter.def.json
  1928. msgctxt "material_standby_temperature description"
  1929. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1930. msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión."
  1931. #: fdmprinter.def.json
  1932. msgctxt "speed label"
  1933. msgid "Speed"
  1934. msgstr "Velocidad"
  1935. #: fdmprinter.def.json
  1936. msgctxt "speed description"
  1937. msgid "Speed"
  1938. msgstr "Velocidad"
  1939. #: fdmprinter.def.json
  1940. msgctxt "speed_print label"
  1941. msgid "Print Speed"
  1942. msgstr "Velocidad de impresión"
  1943. #: fdmprinter.def.json
  1944. msgctxt "speed_print description"
  1945. msgid "The speed at which printing happens."
  1946. msgstr "Velocidad a la que se realiza la impresión."
  1947. #: fdmprinter.def.json
  1948. msgctxt "speed_infill label"
  1949. msgid "Infill Speed"
  1950. msgstr "Velocidad de relleno"
  1951. #: fdmprinter.def.json
  1952. msgctxt "speed_infill description"
  1953. msgid "The speed at which infill is printed."
  1954. msgstr "Velocidad a la que se imprime el relleno."
  1955. #: fdmprinter.def.json
  1956. msgctxt "speed_wall label"
  1957. msgid "Wall Speed"
  1958. msgstr "Velocidad de pared"
  1959. #: fdmprinter.def.json
  1960. msgctxt "speed_wall description"
  1961. msgid "The speed at which the walls are printed."
  1962. msgstr "Velocidad a la que se imprimen las paredes."
  1963. #: fdmprinter.def.json
  1964. msgctxt "speed_wall_0 label"
  1965. msgid "Outer Wall Speed"
  1966. msgstr "Velocidad de pared exterior"
  1967. #: fdmprinter.def.json
  1968. msgctxt "speed_wall_0 description"
  1969. 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."
  1970. msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad."
  1971. #: fdmprinter.def.json
  1972. msgctxt "speed_wall_x label"
  1973. msgid "Inner Wall Speed"
  1974. msgstr "Velocidad de pared interior"
  1975. #: fdmprinter.def.json
  1976. msgctxt "speed_wall_x description"
  1977. 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."
  1978. msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien."
  1979. #: fdmprinter.def.json
  1980. msgctxt "speed_roofing label"
  1981. msgid "Top Surface Skin Speed"
  1982. msgstr "Velocidad de la superficie superior del forro"
  1983. #: fdmprinter.def.json
  1984. msgctxt "speed_roofing description"
  1985. msgid "The speed at which top surface skin layers are printed."
  1986. msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro."
  1987. #: fdmprinter.def.json
  1988. msgctxt "speed_topbottom label"
  1989. msgid "Top/Bottom Speed"
  1990. msgstr "Velocidad superior/inferior"
  1991. #: fdmprinter.def.json
  1992. msgctxt "speed_topbottom description"
  1993. msgid "The speed at which top/bottom layers are printed."
  1994. msgstr "Velocidad a la que se imprimen las capas superiores/inferiores."
  1995. #: fdmprinter.def.json
  1996. msgctxt "speed_support label"
  1997. msgid "Support Speed"
  1998. msgstr "Velocidad de soporte"
  1999. #: fdmprinter.def.json
  2000. msgctxt "speed_support description"
  2001. 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."
  2002. msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión."
  2003. #: fdmprinter.def.json
  2004. msgctxt "speed_support_infill label"
  2005. msgid "Support Infill Speed"
  2006. msgstr "Velocidad de relleno del soporte"
  2007. #: fdmprinter.def.json
  2008. msgctxt "speed_support_infill description"
  2009. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2010. msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad."
  2011. #: fdmprinter.def.json
  2012. msgctxt "speed_support_interface label"
  2013. msgid "Support Interface Speed"
  2014. msgstr "Velocidad de interfaz del soporte"
  2015. #: fdmprinter.def.json
  2016. msgctxt "speed_support_interface description"
  2017. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2018. msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo."
  2019. #: fdmprinter.def.json
  2020. msgctxt "speed_support_roof label"
  2021. msgid "Support Roof Speed"
  2022. msgstr "Velocidad del techo del soporte"
  2023. #: fdmprinter.def.json
  2024. msgctxt "speed_support_roof description"
  2025. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2026. msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo."
  2027. #: fdmprinter.def.json
  2028. msgctxt "speed_support_bottom label"
  2029. msgid "Support Floor Speed"
  2030. msgstr "Velocidad del suelo del soporte"
  2031. #: fdmprinter.def.json
  2032. msgctxt "speed_support_bottom description"
  2033. 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."
  2034. msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo."
  2035. #: fdmprinter.def.json
  2036. msgctxt "speed_prime_tower label"
  2037. msgid "Prime Tower Speed"
  2038. msgstr "Velocidad de la torre auxiliar"
  2039. #: fdmprinter.def.json
  2040. msgctxt "speed_prime_tower description"
  2041. 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."
  2042. msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente."
  2043. #: fdmprinter.def.json
  2044. msgctxt "speed_travel label"
  2045. msgid "Travel Speed"
  2046. msgstr "Velocidad de desplazamiento"
  2047. #: fdmprinter.def.json
  2048. msgctxt "speed_travel description"
  2049. msgid "The speed at which travel moves are made."
  2050. msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento."
  2051. #: fdmprinter.def.json
  2052. msgctxt "speed_layer_0 label"
  2053. msgid "Initial Layer Speed"
  2054. msgstr "Velocidad de capa inicial"
  2055. #: fdmprinter.def.json
  2056. msgctxt "speed_layer_0 description"
  2057. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2058. msgstr "Velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión."
  2059. #: fdmprinter.def.json
  2060. msgctxt "speed_print_layer_0 label"
  2061. msgid "Initial Layer Print Speed"
  2062. msgstr "Velocidad de impresión de la capa inicial"
  2063. #: fdmprinter.def.json
  2064. msgctxt "speed_print_layer_0 description"
  2065. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2066. msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión."
  2067. #: fdmprinter.def.json
  2068. msgctxt "speed_travel_layer_0 label"
  2069. msgid "Initial Layer Travel Speed"
  2070. msgstr "Velocidad de desplazamiento de la capa inicial"
  2071. #: fdmprinter.def.json
  2072. msgctxt "speed_travel_layer_0 description"
  2073. 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."
  2074. msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión."
  2075. #: fdmprinter.def.json
  2076. msgctxt "skirt_brim_speed label"
  2077. msgid "Skirt/Brim Speed"
  2078. msgstr "Velocidad de falda/borde"
  2079. #: fdmprinter.def.json
  2080. msgctxt "skirt_brim_speed description"
  2081. 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."
  2082. msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente."
  2083. #: fdmprinter.def.json
  2084. msgctxt "speed_z_hop label"
  2085. msgid "Z Hop Speed"
  2086. msgstr "Velocidad del salto en Z"
  2087. #: fdmprinter.def.json
  2088. msgctxt "speed_z_hop description"
  2089. 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."
  2090. msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar."
  2091. #: fdmprinter.def.json
  2092. msgctxt "speed_slowdown_layers label"
  2093. msgid "Number of Slower Layers"
  2094. msgstr "Número de capas más lentas"
  2095. #: fdmprinter.def.json
  2096. msgctxt "speed_slowdown_layers description"
  2097. 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."
  2098. msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas."
  2099. #: fdmprinter.def.json
  2100. msgctxt "speed_equalize_flow_enabled label"
  2101. msgid "Equalize Filament Flow"
  2102. msgstr "Igualar flujo de filamentos"
  2103. #: fdmprinter.def.json
  2104. msgctxt "speed_equalize_flow_enabled description"
  2105. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  2106. msgstr "Imprimir las líneas finas más rápido que las normales de modo que la cantidad de material rezumado por segundo no varíe. Puede ser necesario que las partes finas del modelo se impriman con un ancho de línea más pequeño que el definido en los ajustes. Este ajuste controla los cambios de velocidad de dichas líneas."
  2107. #: fdmprinter.def.json
  2108. msgctxt "speed_equalize_flow_max label"
  2109. msgid "Maximum Speed for Flow Equalization"
  2110. msgstr "Velocidad máxima de igualación de flujo"
  2111. #: fdmprinter.def.json
  2112. msgctxt "speed_equalize_flow_max description"
  2113. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  2114. msgstr "Velocidad de impresión máxima cuando se ajusta la velocidad de impresión para igualar el flujo."
  2115. #: fdmprinter.def.json
  2116. msgctxt "acceleration_enabled label"
  2117. msgid "Enable Acceleration Control"
  2118. msgstr "Activar control de aceleración"
  2119. #: fdmprinter.def.json
  2120. msgctxt "acceleration_enabled description"
  2121. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2122. msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión."
  2123. #: fdmprinter.def.json
  2124. msgctxt "acceleration_print label"
  2125. msgid "Print Acceleration"
  2126. msgstr "Aceleración de la impresión"
  2127. #: fdmprinter.def.json
  2128. msgctxt "acceleration_print description"
  2129. msgid "The acceleration with which printing happens."
  2130. msgstr "Aceleración a la que se realiza la impresión."
  2131. #: fdmprinter.def.json
  2132. msgctxt "acceleration_infill label"
  2133. msgid "Infill Acceleration"
  2134. msgstr "Aceleración del relleno"
  2135. #: fdmprinter.def.json
  2136. msgctxt "acceleration_infill description"
  2137. msgid "The acceleration with which infill is printed."
  2138. msgstr "Aceleración a la que se imprime el relleno."
  2139. #: fdmprinter.def.json
  2140. msgctxt "acceleration_wall label"
  2141. msgid "Wall Acceleration"
  2142. msgstr "Aceleración de la pared"
  2143. #: fdmprinter.def.json
  2144. msgctxt "acceleration_wall description"
  2145. msgid "The acceleration with which the walls are printed."
  2146. msgstr "Aceleración a la que se imprimen las paredes."
  2147. #: fdmprinter.def.json
  2148. msgctxt "acceleration_wall_0 label"
  2149. msgid "Outer Wall Acceleration"
  2150. msgstr "Aceleración de pared exterior"
  2151. #: fdmprinter.def.json
  2152. msgctxt "acceleration_wall_0 description"
  2153. msgid "The acceleration with which the outermost walls are printed."
  2154. msgstr "Aceleración a la que se imprimen las paredes exteriores."
  2155. #: fdmprinter.def.json
  2156. msgctxt "acceleration_wall_x label"
  2157. msgid "Inner Wall Acceleration"
  2158. msgstr "Aceleración de pared interior"
  2159. #: fdmprinter.def.json
  2160. msgctxt "acceleration_wall_x description"
  2161. msgid "The acceleration with which all inner walls are printed."
  2162. msgstr "Aceleración a la que se imprimen las paredes interiores."
  2163. #: fdmprinter.def.json
  2164. msgctxt "acceleration_roofing label"
  2165. msgid "Top Surface Skin Acceleration"
  2166. msgstr "Aceleración de la superficie superior del forro"
  2167. #: fdmprinter.def.json
  2168. msgctxt "acceleration_roofing description"
  2169. msgid "The acceleration with which top surface skin layers are printed."
  2170. msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro."
  2171. #: fdmprinter.def.json
  2172. msgctxt "acceleration_topbottom label"
  2173. msgid "Top/Bottom Acceleration"
  2174. msgstr "Aceleración superior/inferior"
  2175. #: fdmprinter.def.json
  2176. msgctxt "acceleration_topbottom description"
  2177. msgid "The acceleration with which top/bottom layers are printed."
  2178. msgstr "Aceleración a la que se imprimen las capas superiores/inferiores."
  2179. #: fdmprinter.def.json
  2180. msgctxt "acceleration_support label"
  2181. msgid "Support Acceleration"
  2182. msgstr "Aceleración de soporte"
  2183. #: fdmprinter.def.json
  2184. msgctxt "acceleration_support description"
  2185. msgid "The acceleration with which the support structure is printed."
  2186. msgstr "Aceleración a la que se imprime la estructura de soporte."
  2187. #: fdmprinter.def.json
  2188. msgctxt "acceleration_support_infill label"
  2189. msgid "Support Infill Acceleration"
  2190. msgstr "Aceleración de relleno de soporte"
  2191. #: fdmprinter.def.json
  2192. msgctxt "acceleration_support_infill description"
  2193. msgid "The acceleration with which the infill of support is printed."
  2194. msgstr "Aceleración a la que se imprime el relleno de soporte."
  2195. #: fdmprinter.def.json
  2196. msgctxt "acceleration_support_interface label"
  2197. msgid "Support Interface Acceleration"
  2198. msgstr "Aceleración de interfaz de soporte"
  2199. #: fdmprinter.def.json
  2200. msgctxt "acceleration_support_interface description"
  2201. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2202. msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo."
  2203. #: fdmprinter.def.json
  2204. msgctxt "acceleration_support_roof label"
  2205. msgid "Support Roof Acceleration"
  2206. msgstr "Aceleración del techo del soporte"
  2207. #: fdmprinter.def.json
  2208. msgctxt "acceleration_support_roof description"
  2209. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2210. msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo."
  2211. #: fdmprinter.def.json
  2212. msgctxt "acceleration_support_bottom label"
  2213. msgid "Support Floor Acceleration"
  2214. msgstr "Aceleración del suelo del soporte"
  2215. #: fdmprinter.def.json
  2216. msgctxt "acceleration_support_bottom description"
  2217. 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."
  2218. msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo."
  2219. #: fdmprinter.def.json
  2220. msgctxt "acceleration_prime_tower label"
  2221. msgid "Prime Tower Acceleration"
  2222. msgstr "Aceleración de la torre auxiliar"
  2223. #: fdmprinter.def.json
  2224. msgctxt "acceleration_prime_tower description"
  2225. msgid "The acceleration with which the prime tower is printed."
  2226. msgstr "Aceleración a la que se imprime la torre auxiliar."
  2227. #: fdmprinter.def.json
  2228. msgctxt "acceleration_travel label"
  2229. msgid "Travel Acceleration"
  2230. msgstr "Aceleración de desplazamiento"
  2231. #: fdmprinter.def.json
  2232. msgctxt "acceleration_travel description"
  2233. msgid "The acceleration with which travel moves are made."
  2234. msgstr "Aceleración a la que se realizan los movimientos de desplazamiento."
  2235. #: fdmprinter.def.json
  2236. msgctxt "acceleration_layer_0 label"
  2237. msgid "Initial Layer Acceleration"
  2238. msgstr "Aceleración de la capa inicial"
  2239. #: fdmprinter.def.json
  2240. msgctxt "acceleration_layer_0 description"
  2241. msgid "The acceleration for the initial layer."
  2242. msgstr "Aceleración de la capa inicial."
  2243. #: fdmprinter.def.json
  2244. msgctxt "acceleration_print_layer_0 label"
  2245. msgid "Initial Layer Print Acceleration"
  2246. msgstr "Aceleración de impresión de la capa inicial"
  2247. #: fdmprinter.def.json
  2248. msgctxt "acceleration_print_layer_0 description"
  2249. msgid "The acceleration during the printing of the initial layer."
  2250. msgstr "Aceleración durante la impresión de la capa inicial."
  2251. #: fdmprinter.def.json
  2252. msgctxt "acceleration_travel_layer_0 label"
  2253. msgid "Initial Layer Travel Acceleration"
  2254. msgstr "Aceleración de desplazamiento de la capa inicial"
  2255. #: fdmprinter.def.json
  2256. msgctxt "acceleration_travel_layer_0 description"
  2257. msgid "The acceleration for travel moves in the initial layer."
  2258. msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial."
  2259. #: fdmprinter.def.json
  2260. msgctxt "acceleration_skirt_brim label"
  2261. msgid "Skirt/Brim Acceleration"
  2262. msgstr "Aceleración de falda/borde"
  2263. #: fdmprinter.def.json
  2264. msgctxt "acceleration_skirt_brim description"
  2265. 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."
  2266. msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente."
  2267. #: fdmprinter.def.json
  2268. msgctxt "jerk_enabled label"
  2269. msgid "Enable Jerk Control"
  2270. msgstr "Activar control de impulso"
  2271. #: fdmprinter.def.json
  2272. msgctxt "jerk_enabled description"
  2273. 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."
  2274. msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión."
  2275. #: fdmprinter.def.json
  2276. msgctxt "jerk_print label"
  2277. msgid "Print Jerk"
  2278. msgstr "Impulso de impresión"
  2279. #: fdmprinter.def.json
  2280. msgctxt "jerk_print description"
  2281. msgid "The maximum instantaneous velocity change of the print head."
  2282. msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión."
  2283. #: fdmprinter.def.json
  2284. msgctxt "jerk_infill label"
  2285. msgid "Infill Jerk"
  2286. msgstr "Impulso de relleno"
  2287. #: fdmprinter.def.json
  2288. msgctxt "jerk_infill description"
  2289. msgid "The maximum instantaneous velocity change with which infill is printed."
  2290. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno."
  2291. #: fdmprinter.def.json
  2292. msgctxt "jerk_wall label"
  2293. msgid "Wall Jerk"
  2294. msgstr "Impulso de pared"
  2295. #: fdmprinter.def.json
  2296. msgctxt "jerk_wall description"
  2297. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2298. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes."
  2299. #: fdmprinter.def.json
  2300. msgctxt "jerk_wall_0 label"
  2301. msgid "Outer Wall Jerk"
  2302. msgstr "Impulso de pared exterior"
  2303. #: fdmprinter.def.json
  2304. msgctxt "jerk_wall_0 description"
  2305. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2306. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores."
  2307. #: fdmprinter.def.json
  2308. msgctxt "jerk_wall_x label"
  2309. msgid "Inner Wall Jerk"
  2310. msgstr "Impulso de pared interior"
  2311. #: fdmprinter.def.json
  2312. msgctxt "jerk_wall_x description"
  2313. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2314. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores."
  2315. #: fdmprinter.def.json
  2316. msgctxt "jerk_roofing label"
  2317. msgid "Top Surface Skin Jerk"
  2318. msgstr "Impulso de la superficie superior del forro"
  2319. #: fdmprinter.def.json
  2320. msgctxt "jerk_roofing description"
  2321. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2322. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro."
  2323. #: fdmprinter.def.json
  2324. msgctxt "jerk_topbottom label"
  2325. msgid "Top/Bottom Jerk"
  2326. msgstr "Impulso superior/inferior"
  2327. #: fdmprinter.def.json
  2328. msgctxt "jerk_topbottom description"
  2329. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2330. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores."
  2331. #: fdmprinter.def.json
  2332. msgctxt "jerk_support label"
  2333. msgid "Support Jerk"
  2334. msgstr "Impulso de soporte"
  2335. #: fdmprinter.def.json
  2336. msgctxt "jerk_support description"
  2337. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2338. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte."
  2339. #: fdmprinter.def.json
  2340. msgctxt "jerk_support_infill label"
  2341. msgid "Support Infill Jerk"
  2342. msgstr "Impulso de relleno de soporte"
  2343. #: fdmprinter.def.json
  2344. msgctxt "jerk_support_infill description"
  2345. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2346. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte."
  2347. #: fdmprinter.def.json
  2348. msgctxt "jerk_support_interface label"
  2349. msgid "Support Interface Jerk"
  2350. msgstr "Impulso de interfaz de soporte"
  2351. #: fdmprinter.def.json
  2352. msgctxt "jerk_support_interface description"
  2353. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2354. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte."
  2355. #: fdmprinter.def.json
  2356. msgctxt "jerk_support_roof label"
  2357. msgid "Support Roof Jerk"
  2358. msgstr "Impulso del techo del soporte"
  2359. #: fdmprinter.def.json
  2360. msgctxt "jerk_support_roof description"
  2361. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2362. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte."
  2363. #: fdmprinter.def.json
  2364. msgctxt "jerk_support_bottom label"
  2365. msgid "Support Floor Jerk"
  2366. msgstr "Impulso del suelo del soporte"
  2367. #: fdmprinter.def.json
  2368. msgctxt "jerk_support_bottom description"
  2369. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2370. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte."
  2371. #: fdmprinter.def.json
  2372. msgctxt "jerk_prime_tower label"
  2373. msgid "Prime Tower Jerk"
  2374. msgstr "Impulso de la torre auxiliar"
  2375. #: fdmprinter.def.json
  2376. msgctxt "jerk_prime_tower description"
  2377. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2378. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar."
  2379. #: fdmprinter.def.json
  2380. msgctxt "jerk_travel label"
  2381. msgid "Travel Jerk"
  2382. msgstr "Impulso de desplazamiento"
  2383. #: fdmprinter.def.json
  2384. msgctxt "jerk_travel description"
  2385. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2386. msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento."
  2387. #: fdmprinter.def.json
  2388. msgctxt "jerk_layer_0 label"
  2389. msgid "Initial Layer Jerk"
  2390. msgstr "Impulso de capa inicial"
  2391. #: fdmprinter.def.json
  2392. msgctxt "jerk_layer_0 description"
  2393. msgid "The print maximum instantaneous velocity change for the initial layer."
  2394. msgstr "Cambio en la velocidad instantánea máxima de la capa inicial."
  2395. #: fdmprinter.def.json
  2396. msgctxt "jerk_print_layer_0 label"
  2397. msgid "Initial Layer Print Jerk"
  2398. msgstr "Impulso de impresión de capa inicial"
  2399. #: fdmprinter.def.json
  2400. msgctxt "jerk_print_layer_0 description"
  2401. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2402. msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial."
  2403. #: fdmprinter.def.json
  2404. msgctxt "jerk_travel_layer_0 label"
  2405. msgid "Initial Layer Travel Jerk"
  2406. msgstr "Impulso de desplazamiento de capa inicial"
  2407. #: fdmprinter.def.json
  2408. msgctxt "jerk_travel_layer_0 description"
  2409. msgid "The acceleration for travel moves in the initial layer."
  2410. msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial."
  2411. #: fdmprinter.def.json
  2412. msgctxt "jerk_skirt_brim label"
  2413. msgid "Skirt/Brim Jerk"
  2414. msgstr "Impulso de falda/borde"
  2415. #: fdmprinter.def.json
  2416. msgctxt "jerk_skirt_brim description"
  2417. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2418. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde."
  2419. #: fdmprinter.def.json
  2420. msgctxt "travel label"
  2421. msgid "Travel"
  2422. msgstr "Desplazamiento"
  2423. #: fdmprinter.def.json
  2424. msgctxt "travel description"
  2425. msgid "travel"
  2426. msgstr "desplazamiento"
  2427. #: fdmprinter.def.json
  2428. msgctxt "retraction_enable label"
  2429. msgid "Enable Retraction"
  2430. msgstr "Habilitar la retracción"
  2431. #: fdmprinter.def.json
  2432. msgctxt "retraction_enable description"
  2433. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2434. msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa."
  2435. #: fdmprinter.def.json
  2436. msgctxt "retract_at_layer_change label"
  2437. msgid "Retract at Layer Change"
  2438. msgstr "Retracción en el cambio de capa"
  2439. #: fdmprinter.def.json
  2440. msgctxt "retract_at_layer_change description"
  2441. msgid "Retract the filament when the nozzle is moving to the next layer."
  2442. msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa."
  2443. #: fdmprinter.def.json
  2444. msgctxt "retraction_amount label"
  2445. msgid "Retraction Distance"
  2446. msgstr "Distancia de retracción"
  2447. #: fdmprinter.def.json
  2448. msgctxt "retraction_amount description"
  2449. msgid "The length of material retracted during a retraction move."
  2450. msgstr "Longitud del material retraído durante un movimiento de retracción."
  2451. #: fdmprinter.def.json
  2452. msgctxt "retraction_speed label"
  2453. msgid "Retraction Speed"
  2454. msgstr "Velocidad de retracción"
  2455. #: fdmprinter.def.json
  2456. msgctxt "retraction_speed description"
  2457. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2458. msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción."
  2459. #: fdmprinter.def.json
  2460. msgctxt "retraction_retract_speed label"
  2461. msgid "Retraction Retract Speed"
  2462. msgstr "Velocidad de retracción"
  2463. #: fdmprinter.def.json
  2464. msgctxt "retraction_retract_speed description"
  2465. msgid "The speed at which the filament is retracted during a retraction move."
  2466. msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción."
  2467. #: fdmprinter.def.json
  2468. msgctxt "retraction_prime_speed label"
  2469. msgid "Retraction Prime Speed"
  2470. msgstr "Velocidad de cebado de retracción"
  2471. #: fdmprinter.def.json
  2472. msgctxt "retraction_prime_speed description"
  2473. msgid "The speed at which the filament is primed during a retraction move."
  2474. msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción."
  2475. #: fdmprinter.def.json
  2476. msgctxt "retraction_extra_prime_amount label"
  2477. msgid "Retraction Extra Prime Amount"
  2478. msgstr "Cantidad de cebado adicional de retracción"
  2479. #: fdmprinter.def.json
  2480. msgctxt "retraction_extra_prime_amount description"
  2481. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2482. msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí."
  2483. #: fdmprinter.def.json
  2484. msgctxt "retraction_min_travel label"
  2485. msgid "Retraction Minimum Travel"
  2486. msgstr "Desplazamiento mínimo de retracción"
  2487. #: fdmprinter.def.json
  2488. msgctxt "retraction_min_travel description"
  2489. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2490. msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña."
  2491. #: fdmprinter.def.json
  2492. msgctxt "retraction_count_max label"
  2493. msgid "Maximum Retraction Count"
  2494. msgstr "Recuento máximo de retracciones"
  2495. #: fdmprinter.def.json
  2496. msgctxt "retraction_count_max description"
  2497. 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."
  2498. msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento."
  2499. #: fdmprinter.def.json
  2500. msgctxt "retraction_extrusion_window label"
  2501. msgid "Minimum Extrusion Distance Window"
  2502. msgstr "Ventana de distancia mínima de extrusión"
  2503. #: fdmprinter.def.json
  2504. msgctxt "retraction_extrusion_window description"
  2505. 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."
  2506. msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material."
  2507. #: fdmprinter.def.json
  2508. msgctxt "limit_support_retractions label"
  2509. msgid "Limit Support Retractions"
  2510. msgstr "Limitar las retracciones de soporte"
  2511. #: fdmprinter.def.json
  2512. msgctxt "limit_support_retractions description"
  2513. 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."
  2514. msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte."
  2515. #: fdmprinter.def.json
  2516. msgctxt "retraction_combing label"
  2517. msgid "Combing Mode"
  2518. msgstr "Modo Peinada"
  2519. #: fdmprinter.def.json
  2520. msgctxt "retraction_combing description"
  2521. 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."
  2522. msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno."
  2523. #: fdmprinter.def.json
  2524. msgctxt "retraction_combing option off"
  2525. msgid "Off"
  2526. msgstr "Apagado"
  2527. #: fdmprinter.def.json
  2528. msgctxt "retraction_combing option all"
  2529. msgid "All"
  2530. msgstr "Todo"
  2531. #: fdmprinter.def.json
  2532. msgctxt "retraction_combing option noskin"
  2533. msgid "Not in Skin"
  2534. msgstr "No en el forro"
  2535. #: fdmprinter.def.json
  2536. msgctxt "retraction_combing option infill"
  2537. msgid "Within Infill"
  2538. msgstr "Sobre el relleno"
  2539. #: fdmprinter.def.json
  2540. msgctxt "retraction_combing_max_distance label"
  2541. msgid "Max Comb Distance With No Retract"
  2542. msgstr "Distancia de peinada máxima sin retracción"
  2543. #: fdmprinter.def.json
  2544. msgctxt "retraction_combing_max_distance description"
  2545. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2546. msgstr "Si no es cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción."
  2547. #: fdmprinter.def.json
  2548. msgctxt "travel_retract_before_outer_wall label"
  2549. msgid "Retract Before Outer Wall"
  2550. msgstr "Retracción antes de la pared exterior"
  2551. #: fdmprinter.def.json
  2552. msgctxt "travel_retract_before_outer_wall description"
  2553. msgid "Always retract when moving to start an outer wall."
  2554. msgstr "Retraer siempre al desplazarse para empezar una pared exterior."
  2555. #: fdmprinter.def.json
  2556. msgctxt "travel_avoid_other_parts label"
  2557. msgid "Avoid Printed Parts When Traveling"
  2558. msgstr "Evitar partes impresas al desplazarse"
  2559. #: fdmprinter.def.json
  2560. msgctxt "travel_avoid_other_parts description"
  2561. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2562. msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada."
  2563. #: fdmprinter.def.json
  2564. msgctxt "travel_avoid_supports label"
  2565. msgid "Avoid Supports When Traveling"
  2566. msgstr "Evitar soportes al desplazarse"
  2567. #: fdmprinter.def.json
  2568. msgctxt "travel_avoid_supports description"
  2569. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2570. msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada."
  2571. #: fdmprinter.def.json
  2572. msgctxt "travel_avoid_distance label"
  2573. msgid "Travel Avoid Distance"
  2574. msgstr "Distancia para evitar al desplazarse"
  2575. #: fdmprinter.def.json
  2576. msgctxt "travel_avoid_distance description"
  2577. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2578. msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento."
  2579. #: fdmprinter.def.json
  2580. msgctxt "layer_start_x label"
  2581. msgid "Layer Start X"
  2582. msgstr "X de inicio de capa"
  2583. #: fdmprinter.def.json
  2584. msgctxt "layer_start_x description"
  2585. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2586. msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa."
  2587. #: fdmprinter.def.json
  2588. msgctxt "layer_start_y label"
  2589. msgid "Layer Start Y"
  2590. msgstr "Y de inicio de capa"
  2591. #: fdmprinter.def.json
  2592. msgctxt "layer_start_y description"
  2593. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2594. msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa."
  2595. #: fdmprinter.def.json
  2596. msgctxt "retraction_hop_enabled label"
  2597. msgid "Z Hop When Retracted"
  2598. msgstr "Salto en Z en la retracción"
  2599. #: fdmprinter.def.json
  2600. msgctxt "retraction_hop_enabled description"
  2601. 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."
  2602. msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión."
  2603. #: fdmprinter.def.json
  2604. msgctxt "retraction_hop_only_when_collides label"
  2605. msgid "Z Hop Only Over Printed Parts"
  2606. msgstr "Salto en Z solo en las partes impresas"
  2607. #: fdmprinter.def.json
  2608. msgctxt "retraction_hop_only_when_collides description"
  2609. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2610. msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse."
  2611. #: fdmprinter.def.json
  2612. msgctxt "retraction_hop label"
  2613. msgid "Z Hop Height"
  2614. msgstr "Altura del salto en Z"
  2615. #: fdmprinter.def.json
  2616. msgctxt "retraction_hop description"
  2617. msgid "The height difference when performing a Z Hop."
  2618. msgstr "Diferencia de altura cuando se realiza un salto en Z."
  2619. #: fdmprinter.def.json
  2620. msgctxt "retraction_hop_after_extruder_switch label"
  2621. msgid "Z Hop After Extruder Switch"
  2622. msgstr "Salto en Z tras cambio de extrusor"
  2623. #: fdmprinter.def.json
  2624. msgctxt "retraction_hop_after_extruder_switch description"
  2625. 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."
  2626. msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión."
  2627. #: fdmprinter.def.json
  2628. msgctxt "retraction_hop_after_extruder_switch_height label"
  2629. msgid "Z Hop After Extruder Switch Height"
  2630. msgstr "Salto en Z tras altura de cambio de extrusor"
  2631. #: fdmprinter.def.json
  2632. msgctxt "retraction_hop_after_extruder_switch_height description"
  2633. msgid "The height difference when performing a Z Hop after extruder switch."
  2634. msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor."
  2635. #: fdmprinter.def.json
  2636. msgctxt "cooling label"
  2637. msgid "Cooling"
  2638. msgstr "Refrigeración"
  2639. #: fdmprinter.def.json
  2640. msgctxt "cooling description"
  2641. msgid "Cooling"
  2642. msgstr "Refrigeración"
  2643. #: fdmprinter.def.json
  2644. msgctxt "cool_fan_enabled label"
  2645. msgid "Enable Print Cooling"
  2646. msgstr "Activar refrigeración de impresión"
  2647. #: fdmprinter.def.json
  2648. msgctxt "cool_fan_enabled description"
  2649. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2650. msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos."
  2651. #: fdmprinter.def.json
  2652. msgctxt "cool_fan_speed label"
  2653. msgid "Fan Speed"
  2654. msgstr "Velocidad del ventilador"
  2655. #: fdmprinter.def.json
  2656. msgctxt "cool_fan_speed description"
  2657. msgid "The speed at which the print cooling fans spin."
  2658. msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión."
  2659. #: fdmprinter.def.json
  2660. msgctxt "cool_fan_speed_min label"
  2661. msgid "Regular Fan Speed"
  2662. msgstr "Velocidad normal del ventilador"
  2663. #: fdmprinter.def.json
  2664. msgctxt "cool_fan_speed_min description"
  2665. 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."
  2666. msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador."
  2667. #: fdmprinter.def.json
  2668. msgctxt "cool_fan_speed_max label"
  2669. msgid "Maximum Fan Speed"
  2670. msgstr "Velocidad máxima del ventilador"
  2671. #: fdmprinter.def.json
  2672. msgctxt "cool_fan_speed_max description"
  2673. 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."
  2674. msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral."
  2675. #: fdmprinter.def.json
  2676. msgctxt "cool_min_layer_time_fan_speed_max label"
  2677. msgid "Regular/Maximum Fan Speed Threshold"
  2678. msgstr "Umbral de velocidad normal/máxima del ventilador"
  2679. #: fdmprinter.def.json
  2680. msgctxt "cool_min_layer_time_fan_speed_max description"
  2681. 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."
  2682. msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador."
  2683. #: fdmprinter.def.json
  2684. msgctxt "cool_fan_speed_0 label"
  2685. msgid "Initial Fan Speed"
  2686. msgstr "Velocidad inicial del ventilador"
  2687. #: fdmprinter.def.json
  2688. msgctxt "cool_fan_speed_0 description"
  2689. 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."
  2690. msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura."
  2691. #: fdmprinter.def.json
  2692. msgctxt "cool_fan_full_at_height label"
  2693. msgid "Regular Fan Speed at Height"
  2694. msgstr "Velocidad normal del ventilador a altura"
  2695. #: fdmprinter.def.json
  2696. msgctxt "cool_fan_full_at_height description"
  2697. 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."
  2698. msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador."
  2699. #: fdmprinter.def.json
  2700. msgctxt "cool_fan_full_layer label"
  2701. msgid "Regular Fan Speed at Layer"
  2702. msgstr "Velocidad normal del ventilador por capa"
  2703. #: fdmprinter.def.json
  2704. msgctxt "cool_fan_full_layer description"
  2705. 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."
  2706. msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero."
  2707. #: fdmprinter.def.json
  2708. msgctxt "cool_min_layer_time label"
  2709. msgid "Minimum Layer Time"
  2710. msgstr "Tiempo mínimo de capa"
  2711. #: fdmprinter.def.json
  2712. msgctxt "cool_min_layer_time description"
  2713. 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."
  2714. msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo."
  2715. #: fdmprinter.def.json
  2716. msgctxt "cool_min_speed label"
  2717. msgid "Minimum Speed"
  2718. msgstr "Velocidad mínima"
  2719. #: fdmprinter.def.json
  2720. msgctxt "cool_min_speed description"
  2721. 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."
  2722. msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad."
  2723. #: fdmprinter.def.json
  2724. msgctxt "cool_lift_head label"
  2725. msgid "Lift Head"
  2726. msgstr "Levantar el cabezal"
  2727. #: fdmprinter.def.json
  2728. msgctxt "cool_lift_head description"
  2729. 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."
  2730. msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa."
  2731. #: fdmprinter.def.json
  2732. msgctxt "support label"
  2733. msgid "Support"
  2734. msgstr "Soporte"
  2735. #: fdmprinter.def.json
  2736. msgctxt "support description"
  2737. msgid "Support"
  2738. msgstr "Soporte"
  2739. #: fdmprinter.def.json
  2740. msgctxt "support_enable label"
  2741. msgid "Generate Support"
  2742. msgstr "Generar soporte"
  2743. #: fdmprinter.def.json
  2744. msgctxt "support_enable description"
  2745. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2746. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  2747. #: fdmprinter.def.json
  2748. msgctxt "support_extruder_nr label"
  2749. msgid "Support Extruder"
  2750. msgstr "Extrusor del soporte"
  2751. #: fdmprinter.def.json
  2752. msgctxt "support_extruder_nr description"
  2753. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2754. msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple."
  2755. #: fdmprinter.def.json
  2756. msgctxt "support_infill_extruder_nr label"
  2757. msgid "Support Infill Extruder"
  2758. msgstr "Extrusor del relleno de soporte"
  2759. #: fdmprinter.def.json
  2760. msgctxt "support_infill_extruder_nr description"
  2761. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2762. msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple."
  2763. #: fdmprinter.def.json
  2764. msgctxt "support_extruder_nr_layer_0 label"
  2765. msgid "First Layer Support Extruder"
  2766. msgstr "Extrusor del soporte de la primera capa"
  2767. #: fdmprinter.def.json
  2768. msgctxt "support_extruder_nr_layer_0 description"
  2769. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2770. msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple."
  2771. #: fdmprinter.def.json
  2772. msgctxt "support_interface_extruder_nr label"
  2773. msgid "Support Interface Extruder"
  2774. msgstr "Extrusor de la interfaz de soporte"
  2775. #: fdmprinter.def.json
  2776. msgctxt "support_interface_extruder_nr description"
  2777. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2778. msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple."
  2779. #: fdmprinter.def.json
  2780. msgctxt "support_roof_extruder_nr label"
  2781. msgid "Support Roof Extruder"
  2782. msgstr "Extrusor del techo del soporte"
  2783. #: fdmprinter.def.json
  2784. msgctxt "support_roof_extruder_nr description"
  2785. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2786. msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple."
  2787. #: fdmprinter.def.json
  2788. msgctxt "support_bottom_extruder_nr label"
  2789. msgid "Support Floor Extruder"
  2790. msgstr "Extrusor del suelo del soporte"
  2791. #: fdmprinter.def.json
  2792. msgctxt "support_bottom_extruder_nr description"
  2793. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2794. msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple."
  2795. #: fdmprinter.def.json
  2796. msgctxt "support_structure label"
  2797. msgid "Support Structure"
  2798. msgstr "Estructura de soporte"
  2799. #: fdmprinter.def.json
  2800. msgctxt "support_structure description"
  2801. 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."
  2802. msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo"
  2803. " y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite"
  2804. " que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión."
  2805. #: fdmprinter.def.json
  2806. msgctxt "support_structure option normal"
  2807. msgid "Normal"
  2808. msgstr "Normal"
  2809. #: fdmprinter.def.json
  2810. msgctxt "support_structure option tree"
  2811. msgid "Tree"
  2812. msgstr "Árbol"
  2813. #: fdmprinter.def.json
  2814. msgctxt "support_tree_angle label"
  2815. msgid "Tree Support Branch Angle"
  2816. msgstr "Ángulo de las ramas del soporte en árbol"
  2817. #: fdmprinter.def.json
  2818. msgctxt "support_tree_angle description"
  2819. 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."
  2820. msgstr "El ángulo de las ramas. Utilice un ángulo inferior para que sean más verticales y estables. Utilice un ángulo superior para poder tener más alcance."
  2821. #: fdmprinter.def.json
  2822. msgctxt "support_tree_branch_distance label"
  2823. msgid "Tree Support Branch Distance"
  2824. msgstr "Distancia de las ramas del soporte en árbol"
  2825. #: fdmprinter.def.json
  2826. msgctxt "support_tree_branch_distance description"
  2827. 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."
  2828. msgstr "Qué separación deben tener las ramas cuando tocan el modelo. Reducir esta distancia ocasionará que el soporte en árbol toque el modelo en más puntos, produciendo mejor cobertura pero dificultando la tarea de retirar el soporte."
  2829. #: fdmprinter.def.json
  2830. msgctxt "support_tree_branch_diameter label"
  2831. msgid "Tree Support Branch Diameter"
  2832. msgstr "Diámetro de las ramas del soporte en árbol"
  2833. #: fdmprinter.def.json
  2834. msgctxt "support_tree_branch_diameter description"
  2835. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2836. msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto."
  2837. #: fdmprinter.def.json
  2838. msgctxt "support_tree_branch_diameter_angle label"
  2839. msgid "Tree Support Branch Diameter Angle"
  2840. msgstr "Ángulo de diámetro de las ramas del soporte en árbol"
  2841. #: fdmprinter.def.json
  2842. msgctxt "support_tree_branch_diameter_angle description"
  2843. 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."
  2844. msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol."
  2845. #: fdmprinter.def.json
  2846. msgctxt "support_tree_collision_resolution label"
  2847. msgid "Tree Support Collision Resolution"
  2848. msgstr "Resolución de colisión del soporte en árbol"
  2849. #: fdmprinter.def.json
  2850. msgctxt "support_tree_collision_resolution description"
  2851. 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."
  2852. msgstr "Resolución para computar colisiones para evitar golpear el modelo. Establecer un ajuste bajo producirá árboles más precisos que producen fallos con menor frecuencia, pero aumenta significativamente el tiempo de fragmentación."
  2853. #: fdmprinter.def.json
  2854. msgctxt "support_type label"
  2855. msgid "Support Placement"
  2856. msgstr "Colocación del soporte"
  2857. #: fdmprinter.def.json
  2858. msgctxt "support_type description"
  2859. 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."
  2860. msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo."
  2861. #: fdmprinter.def.json
  2862. msgctxt "support_type option buildplate"
  2863. msgid "Touching Buildplate"
  2864. msgstr "Tocando la placa de impresión"
  2865. #: fdmprinter.def.json
  2866. msgctxt "support_type option everywhere"
  2867. msgid "Everywhere"
  2868. msgstr "En todos sitios"
  2869. #: fdmprinter.def.json
  2870. msgctxt "support_angle label"
  2871. msgid "Support Overhang Angle"
  2872. msgstr "Ángulo de voladizo del soporte"
  2873. #: fdmprinter.def.json
  2874. msgctxt "support_angle description"
  2875. 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."
  2876. msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte."
  2877. #: fdmprinter.def.json
  2878. msgctxt "support_pattern label"
  2879. msgid "Support Pattern"
  2880. msgstr "Patrón del soporte"
  2881. #: fdmprinter.def.json
  2882. msgctxt "support_pattern description"
  2883. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2884. msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar."
  2885. #: fdmprinter.def.json
  2886. msgctxt "support_pattern option lines"
  2887. msgid "Lines"
  2888. msgstr "Líneas"
  2889. #: fdmprinter.def.json
  2890. msgctxt "support_pattern option grid"
  2891. msgid "Grid"
  2892. msgstr "Rejilla"
  2893. #: fdmprinter.def.json
  2894. msgctxt "support_pattern option triangles"
  2895. msgid "Triangles"
  2896. msgstr "Triángulos"
  2897. #: fdmprinter.def.json
  2898. msgctxt "support_pattern option concentric"
  2899. msgid "Concentric"
  2900. msgstr "Concéntrico"
  2901. #: fdmprinter.def.json
  2902. msgctxt "support_pattern option zigzag"
  2903. msgid "Zig Zag"
  2904. msgstr "Zigzag"
  2905. #: fdmprinter.def.json
  2906. msgctxt "support_pattern option cross"
  2907. msgid "Cross"
  2908. msgstr "Cruz"
  2909. #: fdmprinter.def.json
  2910. msgctxt "support_pattern option gyroid"
  2911. msgid "Gyroid"
  2912. msgstr "Giroide"
  2913. #: fdmprinter.def.json
  2914. msgctxt "support_wall_count label"
  2915. msgid "Support Wall Line Count"
  2916. msgstr "Recuento de líneas de pared del soporte"
  2917. #: fdmprinter.def.json
  2918. msgctxt "support_wall_count description"
  2919. 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."
  2920. msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado."
  2921. #: fdmprinter.def.json
  2922. msgctxt "zig_zaggify_support label"
  2923. msgid "Connect Support Lines"
  2924. msgstr "Conectar líneas del soporte"
  2925. #: fdmprinter.def.json
  2926. msgctxt "zig_zaggify_support description"
  2927. 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."
  2928. msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material."
  2929. #: fdmprinter.def.json
  2930. msgctxt "support_connect_zigzags label"
  2931. msgid "Connect Support ZigZags"
  2932. msgstr "Conectar zigzags del soporte"
  2933. #: fdmprinter.def.json
  2934. msgctxt "support_connect_zigzags description"
  2935. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2936. msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag."
  2937. #: fdmprinter.def.json
  2938. msgctxt "support_infill_rate label"
  2939. msgid "Support Density"
  2940. msgstr "Densidad del soporte"
  2941. #: fdmprinter.def.json
  2942. msgctxt "support_infill_rate description"
  2943. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2944. msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar."
  2945. #: fdmprinter.def.json
  2946. msgctxt "support_line_distance label"
  2947. msgid "Support Line Distance"
  2948. msgstr "Distancia de línea del soporte"
  2949. #: fdmprinter.def.json
  2950. msgctxt "support_line_distance description"
  2951. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2952. msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte."
  2953. #: fdmprinter.def.json
  2954. msgctxt "support_initial_layer_line_distance label"
  2955. msgid "Initial Layer Support Line Distance"
  2956. msgstr "Distancia de línea del soporte de la capa inicial"
  2957. #: fdmprinter.def.json
  2958. msgctxt "support_initial_layer_line_distance description"
  2959. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2960. msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte."
  2961. #: fdmprinter.def.json
  2962. msgctxt "support_infill_angles label"
  2963. msgid "Support Infill Line Directions"
  2964. msgstr "Dirección de línea de relleno de soporte"
  2965. #: fdmprinter.def.json
  2966. msgctxt "support_infill_angles description"
  2967. 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."
  2968. msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados."
  2969. #: fdmprinter.def.json
  2970. msgctxt "support_brim_enable label"
  2971. msgid "Enable Support Brim"
  2972. msgstr "Habilitar borde de soporte"
  2973. #: fdmprinter.def.json
  2974. msgctxt "support_brim_enable description"
  2975. 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."
  2976. msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión."
  2977. #: fdmprinter.def.json
  2978. msgctxt "support_brim_width label"
  2979. msgid "Support Brim Width"
  2980. msgstr "Ancho del borde de soporte"
  2981. #: fdmprinter.def.json
  2982. msgctxt "support_brim_width description"
  2983. 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."
  2984. msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional."
  2985. #: fdmprinter.def.json
  2986. msgctxt "support_brim_line_count label"
  2987. msgid "Support Brim Line Count"
  2988. msgstr "Recuento de líneas del borde de soporte"
  2989. #: fdmprinter.def.json
  2990. msgctxt "support_brim_line_count description"
  2991. 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."
  2992. msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional."
  2993. #: fdmprinter.def.json
  2994. msgctxt "support_z_distance label"
  2995. msgid "Support Z Distance"
  2996. msgstr "Distancia en Z del soporte"
  2997. #: fdmprinter.def.json
  2998. msgctxt "support_z_distance description"
  2999. 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."
  3000. msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Este valor se redondea hacia el múltiplo de la altura de la capa."
  3001. #: fdmprinter.def.json
  3002. msgctxt "support_top_distance label"
  3003. msgid "Support Top Distance"
  3004. msgstr "Distancia superior del soporte"
  3005. #: fdmprinter.def.json
  3006. msgctxt "support_top_distance description"
  3007. msgid "Distance from the top of the support to the print."
  3008. msgstr "Distancia desde la parte superior del soporte a la impresión."
  3009. #: fdmprinter.def.json
  3010. msgctxt "support_bottom_distance label"
  3011. msgid "Support Bottom Distance"
  3012. msgstr "Distancia inferior del soporte"
  3013. #: fdmprinter.def.json
  3014. msgctxt "support_bottom_distance description"
  3015. msgid "Distance from the print to the bottom of the support."
  3016. msgstr "Distancia desde la parte inferior del soporte a la impresión."
  3017. #: fdmprinter.def.json
  3018. msgctxt "support_xy_distance label"
  3019. msgid "Support X/Y Distance"
  3020. msgstr "Distancia X/Y del soporte"
  3021. #: fdmprinter.def.json
  3022. msgctxt "support_xy_distance description"
  3023. msgid "Distance of the support structure from the print in the X/Y directions."
  3024. msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y."
  3025. #: fdmprinter.def.json
  3026. msgctxt "support_xy_overrides_z label"
  3027. msgid "Support Distance Priority"
  3028. msgstr "Prioridad de las distancias del soporte"
  3029. #: fdmprinter.def.json
  3030. msgctxt "support_xy_overrides_z description"
  3031. 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."
  3032. msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos."
  3033. #: fdmprinter.def.json
  3034. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3035. msgid "X/Y overrides Z"
  3036. msgstr "X/Y sobre Z"
  3037. #: fdmprinter.def.json
  3038. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3039. msgid "Z overrides X/Y"
  3040. msgstr "Z sobre X/Y"
  3041. #: fdmprinter.def.json
  3042. msgctxt "support_xy_distance_overhang label"
  3043. msgid "Minimum Support X/Y Distance"
  3044. msgstr "Distancia X/Y mínima del soporte"
  3045. #: fdmprinter.def.json
  3046. msgctxt "support_xy_distance_overhang description"
  3047. msgid "Distance of the support structure from the overhang in the X/Y directions."
  3048. msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y."
  3049. #: fdmprinter.def.json
  3050. msgctxt "support_bottom_stair_step_height label"
  3051. msgid "Support Stair Step Height"
  3052. msgstr "Altura del escalón de la escalera del soporte"
  3053. #: fdmprinter.def.json
  3054. msgctxt "support_bottom_stair_step_height description"
  3055. 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."
  3056. msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera."
  3057. #: fdmprinter.def.json
  3058. msgctxt "support_bottom_stair_step_width label"
  3059. msgid "Support Stair Step Maximum Width"
  3060. msgstr "Ancho máximo del escalón de la escalera del soporte"
  3061. #: fdmprinter.def.json
  3062. msgctxt "support_bottom_stair_step_width description"
  3063. 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."
  3064. msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables."
  3065. #: fdmprinter.def.json
  3066. msgctxt "support_bottom_stair_step_min_slope label"
  3067. msgid "Support Stair Step Minimum Slope Angle"
  3068. msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte"
  3069. #: fdmprinter.def.json
  3070. msgctxt "support_bottom_stair_step_min_slope description"
  3071. 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."
  3072. msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte"
  3073. " en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo."
  3074. #: fdmprinter.def.json
  3075. msgctxt "support_join_distance label"
  3076. msgid "Support Join Distance"
  3077. msgstr "Distancia de unión del soporte"
  3078. #: fdmprinter.def.json
  3079. msgctxt "support_join_distance description"
  3080. 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."
  3081. msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una."
  3082. #: fdmprinter.def.json
  3083. msgctxt "support_offset label"
  3084. msgid "Support Horizontal Expansion"
  3085. msgstr "Expansión horizontal del soporte"
  3086. #: fdmprinter.def.json
  3087. msgctxt "support_offset description"
  3088. 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."
  3089. msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto."
  3090. #: fdmprinter.def.json
  3091. msgctxt "support_infill_sparse_thickness label"
  3092. msgid "Support Infill Layer Thickness"
  3093. msgstr "Grosor de la capa de relleno de soporte"
  3094. #: fdmprinter.def.json
  3095. msgctxt "support_infill_sparse_thickness description"
  3096. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3097. msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea."
  3098. #: fdmprinter.def.json
  3099. msgctxt "gradual_support_infill_steps label"
  3100. msgid "Gradual Support Infill Steps"
  3101. msgstr "Escalones de relleno de soporte"
  3102. #: fdmprinter.def.json
  3103. msgctxt "gradual_support_infill_steps description"
  3104. 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."
  3105. msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte."
  3106. #: fdmprinter.def.json
  3107. msgctxt "gradual_support_infill_step_height label"
  3108. msgid "Gradual Support Infill Step Height"
  3109. msgstr "Altura necesaria de los escalones de relleno de soporte"
  3110. #: fdmprinter.def.json
  3111. msgctxt "gradual_support_infill_step_height description"
  3112. msgid "The height of support infill of a given density before switching to half the density."
  3113. msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad."
  3114. #: fdmprinter.def.json
  3115. msgctxt "minimum_support_area label"
  3116. msgid "Minimum Support Area"
  3117. msgstr "Área del soporte mínima"
  3118. #: fdmprinter.def.json
  3119. msgctxt "minimum_support_area description"
  3120. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3121. msgstr "Tamaño del área mínima para los polígonos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor."
  3122. #: fdmprinter.def.json
  3123. msgctxt "support_interface_enable label"
  3124. msgid "Enable Support Interface"
  3125. msgstr "Habilitar interfaz del soporte"
  3126. #: fdmprinter.def.json
  3127. msgctxt "support_interface_enable description"
  3128. 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."
  3129. msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo."
  3130. #: fdmprinter.def.json
  3131. msgctxt "support_roof_enable label"
  3132. msgid "Enable Support Roof"
  3133. msgstr "Habilitar techo del soporte"
  3134. #: fdmprinter.def.json
  3135. msgctxt "support_roof_enable description"
  3136. 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."
  3137. msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte."
  3138. #: fdmprinter.def.json
  3139. msgctxt "support_bottom_enable label"
  3140. msgid "Enable Support Floor"
  3141. msgstr "Habilitar suelo del soporte"
  3142. #: fdmprinter.def.json
  3143. msgctxt "support_bottom_enable description"
  3144. 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."
  3145. msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte."
  3146. #: fdmprinter.def.json
  3147. msgctxt "support_interface_height label"
  3148. msgid "Support Interface Thickness"
  3149. msgstr "Grosor de la interfaz del soporte"
  3150. #: fdmprinter.def.json
  3151. msgctxt "support_interface_height description"
  3152. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3153. msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior."
  3154. #: fdmprinter.def.json
  3155. msgctxt "support_roof_height label"
  3156. msgid "Support Roof Thickness"
  3157. msgstr "Grosor del techo del soporte"
  3158. #: fdmprinter.def.json
  3159. msgctxt "support_roof_height description"
  3160. 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."
  3161. msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo."
  3162. #: fdmprinter.def.json
  3163. msgctxt "support_bottom_height label"
  3164. msgid "Support Floor Thickness"
  3165. msgstr "Grosor del suelo del soporte"
  3166. #: fdmprinter.def.json
  3167. msgctxt "support_bottom_height description"
  3168. 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."
  3169. msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte."
  3170. #: fdmprinter.def.json
  3171. msgctxt "support_interface_skip_height label"
  3172. msgid "Support Interface Resolution"
  3173. msgstr "Resolución de la interfaz de soporte"
  3174. #: fdmprinter.def.json
  3175. msgctxt "support_interface_skip_height description"
  3176. 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."
  3177. msgstr "A la hora de comprobar si existe un modelo por encima y por debajo del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte."
  3178. #: fdmprinter.def.json
  3179. msgctxt "support_interface_density label"
  3180. msgid "Support Interface Density"
  3181. msgstr "Densidad de la interfaz de soporte"
  3182. #: fdmprinter.def.json
  3183. msgctxt "support_interface_density description"
  3184. 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."
  3185. msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar."
  3186. #: fdmprinter.def.json
  3187. msgctxt "support_roof_density label"
  3188. msgid "Support Roof Density"
  3189. msgstr "Densidad del techo del soporte"
  3190. #: fdmprinter.def.json
  3191. msgctxt "support_roof_density description"
  3192. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3193. msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar."
  3194. #: fdmprinter.def.json
  3195. msgctxt "support_roof_line_distance label"
  3196. msgid "Support Roof Line Distance"
  3197. msgstr "Distancia de línea del techo del soporte"
  3198. #: fdmprinter.def.json
  3199. msgctxt "support_roof_line_distance description"
  3200. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3201. msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente."
  3202. #: fdmprinter.def.json
  3203. msgctxt "support_bottom_density label"
  3204. msgid "Support Floor Density"
  3205. msgstr "Densidad del suelo del soporte"
  3206. #: fdmprinter.def.json
  3207. msgctxt "support_bottom_density description"
  3208. 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."
  3209. msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo."
  3210. #: fdmprinter.def.json
  3211. msgctxt "support_bottom_line_distance label"
  3212. msgid "Support Floor Line Distance"
  3213. msgstr "Distancia de línea del suelo de soporte"
  3214. #: fdmprinter.def.json
  3215. msgctxt "support_bottom_line_distance description"
  3216. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3217. msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente."
  3218. #: fdmprinter.def.json
  3219. msgctxt "support_interface_pattern label"
  3220. msgid "Support Interface Pattern"
  3221. msgstr "Patrón de la interfaz de soporte"
  3222. #: fdmprinter.def.json
  3223. msgctxt "support_interface_pattern description"
  3224. msgid "The pattern with which the interface of the support with the model is printed."
  3225. msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo."
  3226. #: fdmprinter.def.json
  3227. msgctxt "support_interface_pattern option lines"
  3228. msgid "Lines"
  3229. msgstr "Líneas"
  3230. #: fdmprinter.def.json
  3231. msgctxt "support_interface_pattern option grid"
  3232. msgid "Grid"
  3233. msgstr "Rejilla"
  3234. #: fdmprinter.def.json
  3235. msgctxt "support_interface_pattern option triangles"
  3236. msgid "Triangles"
  3237. msgstr "Triángulos"
  3238. #: fdmprinter.def.json
  3239. msgctxt "support_interface_pattern option concentric"
  3240. msgid "Concentric"
  3241. msgstr "Concéntrico"
  3242. #: fdmprinter.def.json
  3243. msgctxt "support_interface_pattern option zigzag"
  3244. msgid "Zig Zag"
  3245. msgstr "Zigzag"
  3246. #: fdmprinter.def.json
  3247. msgctxt "support_roof_pattern label"
  3248. msgid "Support Roof Pattern"
  3249. msgstr "Patrón del techo del soporte"
  3250. #: fdmprinter.def.json
  3251. msgctxt "support_roof_pattern description"
  3252. msgid "The pattern with which the roofs of the support are printed."
  3253. msgstr "Patrón con el que se imprimen los techos del soporte."
  3254. #: fdmprinter.def.json
  3255. msgctxt "support_roof_pattern option lines"
  3256. msgid "Lines"
  3257. msgstr "Líneas"
  3258. #: fdmprinter.def.json
  3259. msgctxt "support_roof_pattern option grid"
  3260. msgid "Grid"
  3261. msgstr "Rejilla"
  3262. #: fdmprinter.def.json
  3263. msgctxt "support_roof_pattern option triangles"
  3264. msgid "Triangles"
  3265. msgstr "Triángulos"
  3266. #: fdmprinter.def.json
  3267. msgctxt "support_roof_pattern option concentric"
  3268. msgid "Concentric"
  3269. msgstr "Concéntrico"
  3270. #: fdmprinter.def.json
  3271. msgctxt "support_roof_pattern option zigzag"
  3272. msgid "Zig Zag"
  3273. msgstr "Zigzag"
  3274. #: fdmprinter.def.json
  3275. msgctxt "support_bottom_pattern label"
  3276. msgid "Support Floor Pattern"
  3277. msgstr "Patrón del suelo del soporte"
  3278. #: fdmprinter.def.json
  3279. msgctxt "support_bottom_pattern description"
  3280. msgid "The pattern with which the floors of the support are printed."
  3281. msgstr "Patrón con el que se imprimen los suelos del soporte."
  3282. #: fdmprinter.def.json
  3283. msgctxt "support_bottom_pattern option lines"
  3284. msgid "Lines"
  3285. msgstr "Líneas"
  3286. #: fdmprinter.def.json
  3287. msgctxt "support_bottom_pattern option grid"
  3288. msgid "Grid"
  3289. msgstr "Rejilla"
  3290. #: fdmprinter.def.json
  3291. msgctxt "support_bottom_pattern option triangles"
  3292. msgid "Triangles"
  3293. msgstr "Triángulos"
  3294. #: fdmprinter.def.json
  3295. msgctxt "support_bottom_pattern option concentric"
  3296. msgid "Concentric"
  3297. msgstr "Concéntrico"
  3298. #: fdmprinter.def.json
  3299. msgctxt "support_bottom_pattern option zigzag"
  3300. msgid "Zig Zag"
  3301. msgstr "Zigzag"
  3302. #: fdmprinter.def.json
  3303. msgctxt "minimum_interface_area label"
  3304. msgid "Minimum Support Interface Area"
  3305. msgstr "Área de la interfaz de soporte mínima"
  3306. #: fdmprinter.def.json
  3307. msgctxt "minimum_interface_area description"
  3308. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3309. msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal."
  3310. #: fdmprinter.def.json
  3311. msgctxt "minimum_roof_area label"
  3312. msgid "Minimum Support Roof Area"
  3313. msgstr "Área de los techos del soporte mínima"
  3314. #: fdmprinter.def.json
  3315. msgctxt "minimum_roof_area description"
  3316. 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."
  3317. msgstr "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal."
  3318. #: fdmprinter.def.json
  3319. msgctxt "minimum_bottom_area label"
  3320. msgid "Minimum Support Floor Area"
  3321. msgstr "Área de los suelos del soporte mínima"
  3322. #: fdmprinter.def.json
  3323. msgctxt "minimum_bottom_area description"
  3324. 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."
  3325. msgstr "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal."
  3326. #: fdmprinter.def.json
  3327. msgctxt "support_interface_offset label"
  3328. msgid "Support Interface Horizontal Expansion"
  3329. msgstr "Expansión horizontal de la interfaz de soporte"
  3330. #: fdmprinter.def.json
  3331. msgctxt "support_interface_offset description"
  3332. msgid "Amount of offset applied to the support interface polygons."
  3333. msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte."
  3334. #: fdmprinter.def.json
  3335. msgctxt "support_roof_offset label"
  3336. msgid "Support Roof Horizontal Expansion"
  3337. msgstr "Expansión horizontal de los techos del soporte"
  3338. #: fdmprinter.def.json
  3339. msgctxt "support_roof_offset description"
  3340. msgid "Amount of offset applied to the roofs of the support."
  3341. msgstr "Cantidad de desplazamiento aplicado a los techos del soporte."
  3342. #: fdmprinter.def.json
  3343. msgctxt "support_bottom_offset label"
  3344. msgid "Support Floor Horizontal Expansion"
  3345. msgstr "Expansión horizontal de los suelos de soporte"
  3346. #: fdmprinter.def.json
  3347. msgctxt "support_bottom_offset description"
  3348. msgid "Amount of offset applied to the floors of the support."
  3349. msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte."
  3350. #: fdmprinter.def.json
  3351. msgctxt "support_interface_angles label"
  3352. msgid "Support Interface Line Directions"
  3353. msgstr "Direcciones de línea de interfaz de soporte"
  3354. #: fdmprinter.def.json
  3355. msgctxt "support_interface_angles description"
  3356. 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)."
  3357. msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)."
  3358. #: fdmprinter.def.json
  3359. msgctxt "support_roof_angles label"
  3360. msgid "Support Roof Line Directions"
  3361. msgstr "Direcciones de línea del techo de soporte"
  3362. #: fdmprinter.def.json
  3363. msgctxt "support_roof_angles description"
  3364. 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)."
  3365. msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)."
  3366. #: fdmprinter.def.json
  3367. msgctxt "support_bottom_angles label"
  3368. msgid "Support Floor Line Directions"
  3369. msgstr "Direcciones de línea del suelo de soporte"
  3370. #: fdmprinter.def.json
  3371. msgctxt "support_bottom_angles description"
  3372. 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)."
  3373. msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)."
  3374. #: fdmprinter.def.json
  3375. msgctxt "support_fan_enable label"
  3376. msgid "Fan Speed Override"
  3377. msgstr "Alteración de velocidad del ventilador"
  3378. #: fdmprinter.def.json
  3379. msgctxt "support_fan_enable description"
  3380. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3381. msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte."
  3382. #: fdmprinter.def.json
  3383. msgctxt "support_supported_skin_fan_speed label"
  3384. msgid "Supported Skin Fan Speed"
  3385. msgstr "Velocidad del ventilador para forro con soporte"
  3386. #: fdmprinter.def.json
  3387. msgctxt "support_supported_skin_fan_speed description"
  3388. 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."
  3389. msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte."
  3390. #: fdmprinter.def.json
  3391. msgctxt "support_use_towers label"
  3392. msgid "Use Towers"
  3393. msgstr "Usar torres"
  3394. #: fdmprinter.def.json
  3395. msgctxt "support_use_towers description"
  3396. 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."
  3397. msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo."
  3398. #: fdmprinter.def.json
  3399. msgctxt "support_tower_diameter label"
  3400. msgid "Tower Diameter"
  3401. msgstr "Diámetro de la torre"
  3402. #: fdmprinter.def.json
  3403. msgctxt "support_tower_diameter description"
  3404. msgid "The diameter of a special tower."
  3405. msgstr "Diámetro de una torre especial."
  3406. #: fdmprinter.def.json
  3407. msgctxt "support_tower_maximum_supported_diameter label"
  3408. msgid "Maximum Tower-Supported Diameter"
  3409. msgstr "Diámetro máximo soportado por la torre"
  3410. #: fdmprinter.def.json
  3411. msgctxt "support_tower_maximum_supported_diameter description"
  3412. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3413. msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada."
  3414. #: fdmprinter.def.json
  3415. msgctxt "support_tower_roof_angle label"
  3416. msgid "Tower Roof Angle"
  3417. msgstr "Ángulo del techo de la torre"
  3418. #: fdmprinter.def.json
  3419. msgctxt "support_tower_roof_angle description"
  3420. 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."
  3421. msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos."
  3422. #: fdmprinter.def.json
  3423. msgctxt "support_mesh_drop_down label"
  3424. msgid "Drop Down Support Mesh"
  3425. msgstr "Malla de soporte desplegable"
  3426. #: fdmprinter.def.json
  3427. msgctxt "support_mesh_drop_down description"
  3428. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3429. msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte."
  3430. #: fdmprinter.def.json
  3431. msgctxt "support_meshes_present label"
  3432. msgid "Scene Has Support Meshes"
  3433. msgstr "La escena tiene mallas de soporte"
  3434. #: fdmprinter.def.json
  3435. msgctxt "support_meshes_present description"
  3436. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3437. msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura."
  3438. #: fdmprinter.def.json
  3439. msgctxt "platform_adhesion label"
  3440. msgid "Build Plate Adhesion"
  3441. msgstr "Adherencia de la placa de impresión"
  3442. #: fdmprinter.def.json
  3443. msgctxt "platform_adhesion description"
  3444. msgid "Adhesion"
  3445. msgstr "Adherencia"
  3446. #: fdmprinter.def.json
  3447. msgctxt "prime_blob_enable label"
  3448. msgid "Enable Prime Blob"
  3449. msgstr "Activar gotas de cebado"
  3450. #: fdmprinter.def.json
  3451. msgctxt "prime_blob_enable description"
  3452. 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."
  3453. msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste."
  3454. #: fdmprinter.def.json
  3455. msgctxt "extruder_prime_pos_x label"
  3456. msgid "Extruder Prime X Position"
  3457. msgstr "Posición de preparación del extrusor sobre el eje X"
  3458. #: fdmprinter.def.json
  3459. msgctxt "extruder_prime_pos_x description"
  3460. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3461. msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión."
  3462. #: fdmprinter.def.json
  3463. msgctxt "extruder_prime_pos_y label"
  3464. msgid "Extruder Prime Y Position"
  3465. msgstr "Posición de preparación del extrusor sobre el eje Y"
  3466. #: fdmprinter.def.json
  3467. msgctxt "extruder_prime_pos_y description"
  3468. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3469. msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión."
  3470. #: fdmprinter.def.json
  3471. msgctxt "adhesion_type label"
  3472. msgid "Build Plate Adhesion Type"
  3473. msgstr "Tipo adherencia de la placa de impresión"
  3474. #: fdmprinter.def.json
  3475. msgctxt "adhesion_type description"
  3476. 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."
  3477. msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo."
  3478. #: fdmprinter.def.json
  3479. msgctxt "adhesion_type option skirt"
  3480. msgid "Skirt"
  3481. msgstr "Falda"
  3482. #: fdmprinter.def.json
  3483. msgctxt "adhesion_type option brim"
  3484. msgid "Brim"
  3485. msgstr "Borde"
  3486. #: fdmprinter.def.json
  3487. msgctxt "adhesion_type option raft"
  3488. msgid "Raft"
  3489. msgstr "Balsa"
  3490. #: fdmprinter.def.json
  3491. msgctxt "adhesion_type option none"
  3492. msgid "None"
  3493. msgstr "Ninguno"
  3494. #: fdmprinter.def.json
  3495. msgctxt "adhesion_extruder_nr label"
  3496. msgid "Build Plate Adhesion Extruder"
  3497. msgstr "Extrusor de adherencia de la placa de impresión"
  3498. #: fdmprinter.def.json
  3499. msgctxt "adhesion_extruder_nr description"
  3500. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3501. msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple."
  3502. #: fdmprinter.def.json
  3503. msgctxt "skirt_line_count label"
  3504. msgid "Skirt Line Count"
  3505. msgstr "Recuento de líneas de falda"
  3506. #: fdmprinter.def.json
  3507. msgctxt "skirt_line_count description"
  3508. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3509. msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda."
  3510. #: fdmprinter.def.json
  3511. msgctxt "skirt_gap label"
  3512. msgid "Skirt Distance"
  3513. msgstr "Distancia de falda"
  3514. #: fdmprinter.def.json
  3515. msgctxt "skirt_gap description"
  3516. msgid ""
  3517. "The horizontal distance between the skirt and the first layer of the print.\n"
  3518. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3519. msgstr ""
  3520. "La distancia horizontal entre la falda y la primera capa de la impresión.\n"
  3521. "Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia."
  3522. #: fdmprinter.def.json
  3523. msgctxt "skirt_brim_minimal_length label"
  3524. msgid "Skirt/Brim Minimum Length"
  3525. msgstr "Longitud mínima de falda/borde"
  3526. #: fdmprinter.def.json
  3527. msgctxt "skirt_brim_minimal_length description"
  3528. 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."
  3529. msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora."
  3530. #: fdmprinter.def.json
  3531. msgctxt "brim_width label"
  3532. msgid "Brim Width"
  3533. msgstr "Ancho del borde"
  3534. #: fdmprinter.def.json
  3535. msgctxt "brim_width description"
  3536. 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."
  3537. msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva."
  3538. #: fdmprinter.def.json
  3539. msgctxt "brim_line_count label"
  3540. msgid "Brim Line Count"
  3541. msgstr "Recuento de líneas de borde"
  3542. #: fdmprinter.def.json
  3543. msgctxt "brim_line_count description"
  3544. 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."
  3545. msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva."
  3546. #: fdmprinter.def.json
  3547. msgctxt "brim_gap label"
  3548. msgid "Brim Distance"
  3549. msgstr "Distancia del borde"
  3550. #: fdmprinter.def.json
  3551. msgctxt "brim_gap description"
  3552. 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."
  3553. msgstr "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas."
  3554. #: fdmprinter.def.json
  3555. msgctxt "brim_replaces_support label"
  3556. msgid "Brim Replaces Support"
  3557. msgstr "Sustituir soporte por borde"
  3558. #: fdmprinter.def.json
  3559. msgctxt "brim_replaces_support description"
  3560. 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."
  3561. msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde."
  3562. #: fdmprinter.def.json
  3563. msgctxt "brim_outside_only label"
  3564. msgid "Brim Only on Outside"
  3565. msgstr "Borde solo en el exterior"
  3566. #: fdmprinter.def.json
  3567. msgctxt "brim_outside_only description"
  3568. 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."
  3569. msgstr "Imprimir solo el borde en el exterior del modelo. Esto reduce el número de bordes que deberá retirar después sin que la adherencia a la plataforma se vea muy afectada."
  3570. #: fdmprinter.def.json
  3571. msgctxt "raft_margin label"
  3572. msgid "Raft Extra Margin"
  3573. msgstr "Margen adicional de la balsa"
  3574. #: fdmprinter.def.json
  3575. msgctxt "raft_margin description"
  3576. 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."
  3577. msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión."
  3578. #: fdmprinter.def.json
  3579. msgctxt "raft_smoothing label"
  3580. msgid "Raft Smoothing"
  3581. msgstr "Suavizado de la balsa"
  3582. #: fdmprinter.def.json
  3583. msgctxt "raft_smoothing description"
  3584. 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."
  3585. msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo."
  3586. #: fdmprinter.def.json
  3587. msgctxt "raft_airgap label"
  3588. msgid "Raft Air Gap"
  3589. msgstr "Cámara de aire de la balsa"
  3590. #: fdmprinter.def.json
  3591. msgctxt "raft_airgap description"
  3592. 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."
  3593. msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa."
  3594. #: fdmprinter.def.json
  3595. msgctxt "layer_0_z_overlap label"
  3596. msgid "Initial Layer Z Overlap"
  3597. msgstr "Superposición de las capas iniciales en Z"
  3598. #: fdmprinter.def.json
  3599. msgctxt "layer_0_z_overlap description"
  3600. 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."
  3601. msgstr "La superposición entre la primera y segunda capa del modelo para compensar la pérdida de material en el hueco de aire. Todas las capas por encima de la primera capa se desplazan hacia abajo por esta cantidad."
  3602. #: fdmprinter.def.json
  3603. msgctxt "raft_surface_layers label"
  3604. msgid "Raft Top Layers"
  3605. msgstr "Capas superiores de la balsa"
  3606. #: fdmprinter.def.json
  3607. msgctxt "raft_surface_layers description"
  3608. 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."
  3609. msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una."
  3610. #: fdmprinter.def.json
  3611. msgctxt "raft_surface_thickness label"
  3612. msgid "Raft Top Layer Thickness"
  3613. msgstr "Grosor de las capas superiores de la balsa"
  3614. #: fdmprinter.def.json
  3615. msgctxt "raft_surface_thickness description"
  3616. msgid "Layer thickness of the top raft layers."
  3617. msgstr "Grosor de capa de las capas superiores de la balsa."
  3618. #: fdmprinter.def.json
  3619. msgctxt "raft_surface_line_width label"
  3620. msgid "Raft Top Line Width"
  3621. msgstr "Ancho de las líneas superiores de la balsa"
  3622. #: fdmprinter.def.json
  3623. msgctxt "raft_surface_line_width description"
  3624. 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."
  3625. msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa."
  3626. #: fdmprinter.def.json
  3627. msgctxt "raft_surface_line_spacing label"
  3628. msgid "Raft Top Spacing"
  3629. msgstr "Espaciado superior de la balsa"
  3630. #: fdmprinter.def.json
  3631. msgctxt "raft_surface_line_spacing description"
  3632. 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."
  3633. msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida."
  3634. #: fdmprinter.def.json
  3635. msgctxt "raft_interface_thickness label"
  3636. msgid "Raft Middle Thickness"
  3637. msgstr "Grosor intermedio de la balsa"
  3638. #: fdmprinter.def.json
  3639. msgctxt "raft_interface_thickness description"
  3640. msgid "Layer thickness of the middle raft layer."
  3641. msgstr "Grosor de la capa intermedia de la balsa."
  3642. #: fdmprinter.def.json
  3643. msgctxt "raft_interface_line_width label"
  3644. msgid "Raft Middle Line Width"
  3645. msgstr "Ancho de la línea intermedia de la balsa"
  3646. #: fdmprinter.def.json
  3647. msgctxt "raft_interface_line_width description"
  3648. 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."
  3649. msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión."
  3650. #: fdmprinter.def.json
  3651. msgctxt "raft_interface_line_spacing label"
  3652. msgid "Raft Middle Spacing"
  3653. msgstr "Espaciado intermedio de la balsa"
  3654. #: fdmprinter.def.json
  3655. msgctxt "raft_interface_line_spacing description"
  3656. 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."
  3657. msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa."
  3658. #: fdmprinter.def.json
  3659. msgctxt "raft_base_thickness label"
  3660. msgid "Raft Base Thickness"
  3661. msgstr "Grosor de la base de la balsa"
  3662. #: fdmprinter.def.json
  3663. msgctxt "raft_base_thickness description"
  3664. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3665. msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora."
  3666. #: fdmprinter.def.json
  3667. msgctxt "raft_base_line_width label"
  3668. msgid "Raft Base Line Width"
  3669. msgstr "Ancho de la línea base de la balsa"
  3670. #: fdmprinter.def.json
  3671. msgctxt "raft_base_line_width description"
  3672. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3673. msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión."
  3674. #: fdmprinter.def.json
  3675. msgctxt "raft_base_line_spacing label"
  3676. msgid "Raft Base Line Spacing"
  3677. msgstr "Espacio de la línea base de la balsa"
  3678. #: fdmprinter.def.json
  3679. msgctxt "raft_base_line_spacing description"
  3680. 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."
  3681. msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión."
  3682. #: fdmprinter.def.json
  3683. msgctxt "raft_speed label"
  3684. msgid "Raft Print Speed"
  3685. msgstr "Velocidad de impresión de la balsa"
  3686. #: fdmprinter.def.json
  3687. msgctxt "raft_speed description"
  3688. msgid "The speed at which the raft is printed."
  3689. msgstr "Velocidad a la que se imprime la balsa."
  3690. #: fdmprinter.def.json
  3691. msgctxt "raft_surface_speed label"
  3692. msgid "Raft Top Print Speed"
  3693. msgstr "Velocidad de impresión de la balsa superior"
  3694. #: fdmprinter.def.json
  3695. msgctxt "raft_surface_speed description"
  3696. 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."
  3697. msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes."
  3698. #: fdmprinter.def.json
  3699. msgctxt "raft_interface_speed label"
  3700. msgid "Raft Middle Print Speed"
  3701. msgstr "Velocidad de impresión de la balsa intermedia"
  3702. #: fdmprinter.def.json
  3703. msgctxt "raft_interface_speed description"
  3704. 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."
  3705. msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto."
  3706. #: fdmprinter.def.json
  3707. msgctxt "raft_base_speed label"
  3708. msgid "Raft Base Print Speed"
  3709. msgstr "Velocidad de impresión de la base de la balsa"
  3710. #: fdmprinter.def.json
  3711. msgctxt "raft_base_speed description"
  3712. 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."
  3713. msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto."
  3714. #: fdmprinter.def.json
  3715. msgctxt "raft_acceleration label"
  3716. msgid "Raft Print Acceleration"
  3717. msgstr "Aceleración de impresión de la balsa"
  3718. #: fdmprinter.def.json
  3719. msgctxt "raft_acceleration description"
  3720. msgid "The acceleration with which the raft is printed."
  3721. msgstr "Aceleración a la que se imprime la balsa."
  3722. #: fdmprinter.def.json
  3723. msgctxt "raft_surface_acceleration label"
  3724. msgid "Raft Top Print Acceleration"
  3725. msgstr "Aceleración de la impresión de la balsa superior"
  3726. #: fdmprinter.def.json
  3727. msgctxt "raft_surface_acceleration description"
  3728. msgid "The acceleration with which the top raft layers are printed."
  3729. msgstr "Aceleración a la que se imprimen las capas superiores de la balsa."
  3730. #: fdmprinter.def.json
  3731. msgctxt "raft_interface_acceleration label"
  3732. msgid "Raft Middle Print Acceleration"
  3733. msgstr "Aceleración de la impresión de la balsa intermedia"
  3734. #: fdmprinter.def.json
  3735. msgctxt "raft_interface_acceleration description"
  3736. msgid "The acceleration with which the middle raft layer is printed."
  3737. msgstr "Aceleración a la que se imprime la capa intermedia de la balsa."
  3738. #: fdmprinter.def.json
  3739. msgctxt "raft_base_acceleration label"
  3740. msgid "Raft Base Print Acceleration"
  3741. msgstr "Aceleración de la impresión de la base de la balsa"
  3742. #: fdmprinter.def.json
  3743. msgctxt "raft_base_acceleration description"
  3744. msgid "The acceleration with which the base raft layer is printed."
  3745. msgstr "Aceleración a la que se imprime la capa base de la balsa."
  3746. #: fdmprinter.def.json
  3747. msgctxt "raft_jerk label"
  3748. msgid "Raft Print Jerk"
  3749. msgstr "Impulso de impresión de la balsa"
  3750. #: fdmprinter.def.json
  3751. msgctxt "raft_jerk description"
  3752. msgid "The jerk with which the raft is printed."
  3753. msgstr "Impulso con el que se imprime la balsa."
  3754. #: fdmprinter.def.json
  3755. msgctxt "raft_surface_jerk label"
  3756. msgid "Raft Top Print Jerk"
  3757. msgstr "Impulso de impresión de balsa superior"
  3758. #: fdmprinter.def.json
  3759. msgctxt "raft_surface_jerk description"
  3760. msgid "The jerk with which the top raft layers are printed."
  3761. msgstr "Impulso con el que se imprimen las capas superiores de la balsa."
  3762. #: fdmprinter.def.json
  3763. msgctxt "raft_interface_jerk label"
  3764. msgid "Raft Middle Print Jerk"
  3765. msgstr "Impulso de impresión de balsa intermedia"
  3766. #: fdmprinter.def.json
  3767. msgctxt "raft_interface_jerk description"
  3768. msgid "The jerk with which the middle raft layer is printed."
  3769. msgstr "Impulso con el que se imprime la capa intermedia de la balsa."
  3770. #: fdmprinter.def.json
  3771. msgctxt "raft_base_jerk label"
  3772. msgid "Raft Base Print Jerk"
  3773. msgstr "Impulso de impresión de base de la balsa"
  3774. #: fdmprinter.def.json
  3775. msgctxt "raft_base_jerk description"
  3776. msgid "The jerk with which the base raft layer is printed."
  3777. msgstr "Impulso con el que se imprime la capa base de la balsa."
  3778. #: fdmprinter.def.json
  3779. msgctxt "raft_fan_speed label"
  3780. msgid "Raft Fan Speed"
  3781. msgstr "Velocidad del ventilador de la balsa"
  3782. #: fdmprinter.def.json
  3783. msgctxt "raft_fan_speed description"
  3784. msgid "The fan speed for the raft."
  3785. msgstr "Velocidad del ventilador para la balsa."
  3786. #: fdmprinter.def.json
  3787. msgctxt "raft_surface_fan_speed label"
  3788. msgid "Raft Top Fan Speed"
  3789. msgstr "Velocidad del ventilador de balsa superior"
  3790. #: fdmprinter.def.json
  3791. msgctxt "raft_surface_fan_speed description"
  3792. msgid "The fan speed for the top raft layers."
  3793. msgstr "Velocidad del ventilador para las capas superiores de la balsa."
  3794. #: fdmprinter.def.json
  3795. msgctxt "raft_interface_fan_speed label"
  3796. msgid "Raft Middle Fan Speed"
  3797. msgstr "Velocidad del ventilador de balsa intermedia"
  3798. #: fdmprinter.def.json
  3799. msgctxt "raft_interface_fan_speed description"
  3800. msgid "The fan speed for the middle raft layer."
  3801. msgstr "Velocidad del ventilador para la capa intermedia de la balsa."
  3802. #: fdmprinter.def.json
  3803. msgctxt "raft_base_fan_speed label"
  3804. msgid "Raft Base Fan Speed"
  3805. msgstr "Velocidad del ventilador de la base de la balsa"
  3806. #: fdmprinter.def.json
  3807. msgctxt "raft_base_fan_speed description"
  3808. msgid "The fan speed for the base raft layer."
  3809. msgstr "Velocidad del ventilador para la capa base de la balsa."
  3810. #: fdmprinter.def.json
  3811. msgctxt "dual label"
  3812. msgid "Dual Extrusion"
  3813. msgstr "Extrusión doble"
  3814. #: fdmprinter.def.json
  3815. msgctxt "dual description"
  3816. msgid "Settings used for printing with multiple extruders."
  3817. msgstr "Ajustes utilizados en la impresión con varios extrusores."
  3818. #: fdmprinter.def.json
  3819. msgctxt "prime_tower_enable label"
  3820. msgid "Enable Prime Tower"
  3821. msgstr "Activar la torre auxiliar"
  3822. #: fdmprinter.def.json
  3823. msgctxt "prime_tower_enable description"
  3824. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3825. msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera."
  3826. #: fdmprinter.def.json
  3827. msgctxt "prime_tower_size label"
  3828. msgid "Prime Tower Size"
  3829. msgstr "Tamaño de la torre auxiliar"
  3830. #: fdmprinter.def.json
  3831. msgctxt "prime_tower_size description"
  3832. msgid "The width of the prime tower."
  3833. msgstr "Anchura de la torre auxiliar."
  3834. #: fdmprinter.def.json
  3835. msgctxt "prime_tower_min_volume label"
  3836. msgid "Prime Tower Minimum Volume"
  3837. msgstr "Volumen mínimo de la torre auxiliar"
  3838. #: fdmprinter.def.json
  3839. msgctxt "prime_tower_min_volume description"
  3840. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3841. msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material."
  3842. #: fdmprinter.def.json
  3843. msgctxt "prime_tower_position_x label"
  3844. msgid "Prime Tower X Position"
  3845. msgstr "Posición de la torre auxiliar sobre el eje X"
  3846. #: fdmprinter.def.json
  3847. msgctxt "prime_tower_position_x description"
  3848. msgid "The x coordinate of the position of the prime tower."
  3849. msgstr "Coordenada X de la posición de la torre auxiliar."
  3850. #: fdmprinter.def.json
  3851. msgctxt "prime_tower_position_y label"
  3852. msgid "Prime Tower Y Position"
  3853. msgstr "Posición de la torre auxiliar sobre el eje Y"
  3854. #: fdmprinter.def.json
  3855. msgctxt "prime_tower_position_y description"
  3856. msgid "The y coordinate of the position of the prime tower."
  3857. msgstr "Coordenada Y de la posición de la torre auxiliar."
  3858. #: fdmprinter.def.json
  3859. msgctxt "prime_tower_wipe_enabled label"
  3860. msgid "Wipe Inactive Nozzle on Prime Tower"
  3861. msgstr "Limpiar tobera inactiva de la torre auxiliar"
  3862. #: fdmprinter.def.json
  3863. msgctxt "prime_tower_wipe_enabled description"
  3864. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3865. msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar."
  3866. #: fdmprinter.def.json
  3867. msgctxt "prime_tower_brim_enable label"
  3868. msgid "Prime Tower Brim"
  3869. msgstr "Borde de la torre auxiliar"
  3870. #: fdmprinter.def.json
  3871. msgctxt "prime_tower_brim_enable description"
  3872. 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."
  3873. msgstr "Puede que las torres auxiliares necesiten la adherencia adicional que proporciona un borde, aunque no sea requisito del modelo. Actualmente, no se puede usar con el tipo de adherencia «balsa»."
  3874. #: fdmprinter.def.json
  3875. msgctxt "ooze_shield_enabled label"
  3876. msgid "Enable Ooze Shield"
  3877. msgstr "Activar placa de rezumado"
  3878. #: fdmprinter.def.json
  3879. msgctxt "ooze_shield_enabled description"
  3880. 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."
  3881. msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera."
  3882. #: fdmprinter.def.json
  3883. msgctxt "ooze_shield_angle label"
  3884. msgid "Ooze Shield Angle"
  3885. msgstr "Ángulo de la placa de rezumado"
  3886. #: fdmprinter.def.json
  3887. msgctxt "ooze_shield_angle description"
  3888. 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."
  3889. msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material."
  3890. #: fdmprinter.def.json
  3891. msgctxt "ooze_shield_dist label"
  3892. msgid "Ooze Shield Distance"
  3893. msgstr "Distancia de la placa de rezumado"
  3894. #: fdmprinter.def.json
  3895. msgctxt "ooze_shield_dist description"
  3896. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3897. msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y."
  3898. #: fdmprinter.def.json
  3899. msgctxt "switch_extruder_retraction_amount label"
  3900. msgid "Nozzle Switch Retraction Distance"
  3901. msgstr "Distancia de retracción del cambio de tobera"
  3902. #: fdmprinter.def.json
  3903. msgctxt "switch_extruder_retraction_amount description"
  3904. 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."
  3905. msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento."
  3906. #: fdmprinter.def.json
  3907. msgctxt "switch_extruder_retraction_speeds label"
  3908. msgid "Nozzle Switch Retraction Speed"
  3909. msgstr "Velocidad de retracción del cambio de tobera"
  3910. #: fdmprinter.def.json
  3911. msgctxt "switch_extruder_retraction_speeds description"
  3912. 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."
  3913. msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste."
  3914. #: fdmprinter.def.json
  3915. msgctxt "switch_extruder_retraction_speed label"
  3916. msgid "Nozzle Switch Retract Speed"
  3917. msgstr "Velocidad de retracción del cambio de tobera"
  3918. #: fdmprinter.def.json
  3919. msgctxt "switch_extruder_retraction_speed description"
  3920. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3921. msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
  3922. #: fdmprinter.def.json
  3923. msgctxt "switch_extruder_prime_speed label"
  3924. msgid "Nozzle Switch Prime Speed"
  3925. msgstr "Velocidad de cebado del cambio de tobera"
  3926. #: fdmprinter.def.json
  3927. msgctxt "switch_extruder_prime_speed description"
  3928. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3929. msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
  3930. #: fdmprinter.def.json
  3931. msgctxt "switch_extruder_extra_prime_amount label"
  3932. msgid "Nozzle Switch Extra Prime Amount"
  3933. msgstr "Volumen de cebado adicional tras cambio de tobera"
  3934. #: fdmprinter.def.json
  3935. msgctxt "switch_extruder_extra_prime_amount description"
  3936. msgid "Extra material to prime after nozzle switching."
  3937. msgstr "Material adicional que debe cebarse tras el cambio de tobera."
  3938. #: fdmprinter.def.json
  3939. msgctxt "meshfix label"
  3940. msgid "Mesh Fixes"
  3941. msgstr "Correcciones de malla"
  3942. #: fdmprinter.def.json
  3943. msgctxt "meshfix description"
  3944. msgid "Make the meshes more suited for 3D printing."
  3945. msgstr "Consiga las mallas más adecuadas para la impresión 3D."
  3946. #: fdmprinter.def.json
  3947. msgctxt "meshfix_union_all label"
  3948. msgid "Union Overlapping Volumes"
  3949. msgstr "Volúmenes de superposiciones de uniones"
  3950. #: fdmprinter.def.json
  3951. msgctxt "meshfix_union_all description"
  3952. 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."
  3953. msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto."
  3954. #: fdmprinter.def.json
  3955. msgctxt "meshfix_union_all_remove_holes label"
  3956. msgid "Remove All Holes"
  3957. msgstr "Eliminar todos los agujeros"
  3958. #: fdmprinter.def.json
  3959. msgctxt "meshfix_union_all_remove_holes description"
  3960. 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."
  3961. msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo."
  3962. #: fdmprinter.def.json
  3963. msgctxt "meshfix_extensive_stitching label"
  3964. msgid "Extensive Stitching"
  3965. msgstr "Cosido amplio"
  3966. #: fdmprinter.def.json
  3967. msgctxt "meshfix_extensive_stitching description"
  3968. 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."
  3969. msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento."
  3970. #: fdmprinter.def.json
  3971. msgctxt "meshfix_keep_open_polygons label"
  3972. msgid "Keep Disconnected Faces"
  3973. msgstr "Mantener caras desconectadas"
  3974. #: fdmprinter.def.json
  3975. msgctxt "meshfix_keep_open_polygons description"
  3976. 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."
  3977. msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado."
  3978. #: fdmprinter.def.json
  3979. msgctxt "multiple_mesh_overlap label"
  3980. msgid "Merged Meshes Overlap"
  3981. msgstr "Superponer mallas combinadas"
  3982. #: fdmprinter.def.json
  3983. msgctxt "multiple_mesh_overlap description"
  3984. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3985. msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas."
  3986. #: fdmprinter.def.json
  3987. msgctxt "carve_multiple_volumes label"
  3988. msgid "Remove Mesh Intersection"
  3989. msgstr "Eliminar el cruce de mallas"
  3990. #: fdmprinter.def.json
  3991. msgctxt "carve_multiple_volumes description"
  3992. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3993. msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales."
  3994. #: fdmprinter.def.json
  3995. msgctxt "alternate_carve_order label"
  3996. msgid "Alternate Mesh Removal"
  3997. msgstr "Alternar la retirada de las mallas"
  3998. #: fdmprinter.def.json
  3999. msgctxt "alternate_carve_order description"
  4000. 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."
  4001. msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas."
  4002. #: fdmprinter.def.json
  4003. msgctxt "remove_empty_first_layers label"
  4004. msgid "Remove Empty First Layers"
  4005. msgstr "Eliminar primeras capas vacías"
  4006. #: fdmprinter.def.json
  4007. msgctxt "remove_empty_first_layers description"
  4008. 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."
  4009. msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio."
  4010. #: fdmprinter.def.json
  4011. msgctxt "meshfix_maximum_resolution label"
  4012. msgid "Maximum Resolution"
  4013. msgstr "Resolución máxima"
  4014. #: fdmprinter.def.json
  4015. msgctxt "meshfix_maximum_resolution description"
  4016. 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."
  4017. msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar."
  4018. #: fdmprinter.def.json
  4019. msgctxt "meshfix_maximum_travel_resolution label"
  4020. msgid "Maximum Travel Resolution"
  4021. msgstr "Resolución de desplazamiento máximo"
  4022. #: fdmprinter.def.json
  4023. msgctxt "meshfix_maximum_travel_resolution description"
  4024. 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."
  4025. msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso."
  4026. #: fdmprinter.def.json
  4027. msgctxt "meshfix_maximum_deviation label"
  4028. msgid "Maximum Deviation"
  4029. msgstr "Desviación máxima"
  4030. #: fdmprinter.def.json
  4031. msgctxt "meshfix_maximum_deviation description"
  4032. 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."
  4033. msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad."
  4034. #: fdmprinter.def.json
  4035. msgctxt "blackmagic label"
  4036. msgid "Special Modes"
  4037. msgstr "Modos especiales"
  4038. #: fdmprinter.def.json
  4039. msgctxt "blackmagic description"
  4040. msgid "Non-traditional ways to print your models."
  4041. msgstr "Formas no tradicionales de imprimir sus modelos."
  4042. #: fdmprinter.def.json
  4043. msgctxt "print_sequence label"
  4044. msgid "Print Sequence"
  4045. msgstr "Secuencia de impresión"
  4046. #: fdmprinter.def.json
  4047. msgctxt "print_sequence description"
  4048. 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."
  4049. msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo"
  4050. " de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén"
  4051. " a menos de la distancia entre la boquilla y los ejes X/Y."
  4052. #: fdmprinter.def.json
  4053. msgctxt "print_sequence option all_at_once"
  4054. msgid "All at Once"
  4055. msgstr "Todos a la vez"
  4056. #: fdmprinter.def.json
  4057. msgctxt "print_sequence option one_at_a_time"
  4058. msgid "One at a Time"
  4059. msgstr "De uno en uno"
  4060. #: fdmprinter.def.json
  4061. msgctxt "infill_mesh label"
  4062. msgid "Infill Mesh"
  4063. msgstr "Malla de relleno"
  4064. #: fdmprinter.def.json
  4065. msgctxt "infill_mesh description"
  4066. 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."
  4067. msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla."
  4068. #: fdmprinter.def.json
  4069. msgctxt "infill_mesh_order label"
  4070. msgid "Mesh Processing Rank"
  4071. msgstr "Rango de procesamiento de la malla"
  4072. #: fdmprinter.def.json
  4073. msgctxt "infill_mesh_order description"
  4074. msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  4075. msgstr "Determina la prioridad de esta malla al tener en cuenta los volúmenes superpuestos. Las áreas con varias mallas se verán afectadas por la malla de menor"
  4076. " rango. Una malla de relleno con un orden superior modificará el relleno de las mallas de relleno con un orden inferior y las mallas normales."
  4077. #: fdmprinter.def.json
  4078. msgctxt "cutting_mesh label"
  4079. msgid "Cutting Mesh"
  4080. msgstr "Cortar malla"
  4081. #: fdmprinter.def.json
  4082. msgctxt "cutting_mesh description"
  4083. 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."
  4084. msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente."
  4085. #: fdmprinter.def.json
  4086. msgctxt "mold_enabled label"
  4087. msgid "Mold"
  4088. msgstr "Molde"
  4089. #: fdmprinter.def.json
  4090. msgctxt "mold_enabled description"
  4091. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4092. msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión."
  4093. #: fdmprinter.def.json
  4094. msgctxt "mold_width label"
  4095. msgid "Minimal Mold Width"
  4096. msgstr "Ancho de molde mínimo"
  4097. #: fdmprinter.def.json
  4098. msgctxt "mold_width description"
  4099. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  4100. msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo."
  4101. #: fdmprinter.def.json
  4102. msgctxt "mold_roof_height label"
  4103. msgid "Mold Roof Height"
  4104. msgstr "Altura del techo del molde"
  4105. #: fdmprinter.def.json
  4106. msgctxt "mold_roof_height description"
  4107. msgid "The height above horizontal parts in your model which to print mold."
  4108. msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde."
  4109. #: fdmprinter.def.json
  4110. msgctxt "mold_angle label"
  4111. msgid "Mold Angle"
  4112. msgstr "Ángulo del molde"
  4113. #: fdmprinter.def.json
  4114. msgctxt "mold_angle description"
  4115. 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."
  4116. msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo."
  4117. #: fdmprinter.def.json
  4118. msgctxt "support_mesh label"
  4119. msgid "Support Mesh"
  4120. msgstr "Malla de soporte"
  4121. #: fdmprinter.def.json
  4122. msgctxt "support_mesh description"
  4123. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4124. msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte."
  4125. #: fdmprinter.def.json
  4126. msgctxt "anti_overhang_mesh label"
  4127. msgid "Anti Overhang Mesh"
  4128. msgstr "Malla antivoladizo"
  4129. #: fdmprinter.def.json
  4130. msgctxt "anti_overhang_mesh description"
  4131. 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."
  4132. msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas."
  4133. #: fdmprinter.def.json
  4134. msgctxt "magic_mesh_surface_mode label"
  4135. msgid "Surface Mode"
  4136. msgstr "Modo de superficie"
  4137. #: fdmprinter.def.json
  4138. msgctxt "magic_mesh_surface_mode description"
  4139. 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."
  4140. msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies."
  4141. #: fdmprinter.def.json
  4142. msgctxt "magic_mesh_surface_mode option normal"
  4143. msgid "Normal"
  4144. msgstr "Normal"
  4145. #: fdmprinter.def.json
  4146. msgctxt "magic_mesh_surface_mode option surface"
  4147. msgid "Surface"
  4148. msgstr "Superficie"
  4149. #: fdmprinter.def.json
  4150. msgctxt "magic_mesh_surface_mode option both"
  4151. msgid "Both"
  4152. msgstr "Ambos"
  4153. #: fdmprinter.def.json
  4154. msgctxt "magic_spiralize label"
  4155. msgid "Spiralize Outer Contour"
  4156. msgstr "Espiralizar el contorno exterior"
  4157. #: fdmprinter.def.json
  4158. msgctxt "magic_spiralize description"
  4159. 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."
  4160. msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza."
  4161. #: fdmprinter.def.json
  4162. msgctxt "smooth_spiralized_contours label"
  4163. msgid "Smooth Spiralized Contours"
  4164. msgstr "Contornos espiralizados suaves"
  4165. #: fdmprinter.def.json
  4166. msgctxt "smooth_spiralized_contours description"
  4167. 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."
  4168. msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie."
  4169. #: fdmprinter.def.json
  4170. msgctxt "relative_extrusion label"
  4171. msgid "Relative Extrusion"
  4172. msgstr "Extrusión relativa"
  4173. #: fdmprinter.def.json
  4174. msgctxt "relative_extrusion description"
  4175. 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."
  4176. msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode."
  4177. #: fdmprinter.def.json
  4178. msgctxt "experimental label"
  4179. msgid "Experimental"
  4180. msgstr "Experimental"
  4181. #: fdmprinter.def.json
  4182. msgctxt "experimental description"
  4183. msgid "Features that haven't completely been fleshed out yet."
  4184. msgstr "Características que aún no se han desarrollado por completo."
  4185. #: fdmprinter.def.json
  4186. msgctxt "slicing_tolerance label"
  4187. msgid "Slicing Tolerance"
  4188. msgstr "Tolerancia de segmentación"
  4189. #: fdmprinter.def.json
  4190. msgctxt "slicing_tolerance description"
  4191. 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."
  4192. msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada"
  4193. " espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o"
  4194. " una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles,"
  4195. " la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original."
  4196. #: fdmprinter.def.json
  4197. msgctxt "slicing_tolerance option middle"
  4198. msgid "Middle"
  4199. msgstr "Media"
  4200. #: fdmprinter.def.json
  4201. msgctxt "slicing_tolerance option exclusive"
  4202. msgid "Exclusive"
  4203. msgstr "Exclusiva"
  4204. #: fdmprinter.def.json
  4205. msgctxt "slicing_tolerance option inclusive"
  4206. msgid "Inclusive"
  4207. msgstr "Inclusiva"
  4208. #: fdmprinter.def.json
  4209. msgctxt "roofing_line_width label"
  4210. msgid "Top Surface Skin Line Width"
  4211. msgstr "Ancho de línea de la superficie superior del forro"
  4212. #: fdmprinter.def.json
  4213. msgctxt "roofing_line_width description"
  4214. msgid "Width of a single line of the areas at the top of the print."
  4215. msgstr "Ancho de una sola línea de las áreas superiores de la impresión."
  4216. #: fdmprinter.def.json
  4217. msgctxt "roofing_pattern label"
  4218. msgid "Top Surface Skin Pattern"
  4219. msgstr "Patrón de la superficie superior del forro"
  4220. #: fdmprinter.def.json
  4221. msgctxt "roofing_pattern description"
  4222. msgid "The pattern of the top most layers."
  4223. msgstr "El patrón de las capas de nivel superior."
  4224. #: fdmprinter.def.json
  4225. msgctxt "roofing_pattern option lines"
  4226. msgid "Lines"
  4227. msgstr "Líneas"
  4228. #: fdmprinter.def.json
  4229. msgctxt "roofing_pattern option concentric"
  4230. msgid "Concentric"
  4231. msgstr "Concéntrico"
  4232. #: fdmprinter.def.json
  4233. msgctxt "roofing_pattern option zigzag"
  4234. msgid "Zig Zag"
  4235. msgstr "Zigzag"
  4236. #: fdmprinter.def.json
  4237. msgctxt "roofing_angles label"
  4238. msgid "Top Surface Skin Line Directions"
  4239. msgstr "Direcciones de línea de la superficie superior del forro"
  4240. #: fdmprinter.def.json
  4241. msgctxt "roofing_angles description"
  4242. 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)."
  4243. msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)."
  4244. #: fdmprinter.def.json
  4245. msgctxt "infill_enable_travel_optimization label"
  4246. msgid "Infill Travel Optimization"
  4247. msgstr "Optimización del desplazamiento del relleno"
  4248. #: fdmprinter.def.json
  4249. msgctxt "infill_enable_travel_optimization description"
  4250. 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."
  4251. msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida."
  4252. #: fdmprinter.def.json
  4253. msgctxt "material_flow_dependent_temperature label"
  4254. msgid "Auto Temperature"
  4255. msgstr "Temperatura automática"
  4256. #: fdmprinter.def.json
  4257. msgctxt "material_flow_dependent_temperature description"
  4258. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4259. msgstr "Cambia automáticamente la temperatura para cada capa con la velocidad media de flujo de esa capa."
  4260. #: fdmprinter.def.json
  4261. msgctxt "material_flow_temp_graph label"
  4262. msgid "Flow Temperature Graph"
  4263. msgstr "Gráfico de flujo y temperatura"
  4264. #: fdmprinter.def.json
  4265. msgctxt "material_flow_temp_graph description"
  4266. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4267. msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)."
  4268. #: fdmprinter.def.json
  4269. msgctxt "minimum_polygon_circumference label"
  4270. msgid "Minimum Polygon Circumference"
  4271. msgstr "Circunferencia mínima de polígono"
  4272. #: fdmprinter.def.json
  4273. msgctxt "minimum_polygon_circumference description"
  4274. 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."
  4275. msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles."
  4276. #: fdmprinter.def.json
  4277. msgctxt "support_skip_some_zags label"
  4278. msgid "Break Up Support In Chunks"
  4279. msgstr "Descomponer el soporte en pedazos"
  4280. #: fdmprinter.def.json
  4281. msgctxt "support_skip_some_zags description"
  4282. 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."
  4283. msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag."
  4284. #: fdmprinter.def.json
  4285. msgctxt "support_skip_zag_per_mm label"
  4286. msgid "Support Chunk Size"
  4287. msgstr "Tamaño de los pedazos de soporte"
  4288. #: fdmprinter.def.json
  4289. msgctxt "support_skip_zag_per_mm description"
  4290. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4291. msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer."
  4292. #: fdmprinter.def.json
  4293. msgctxt "support_zag_skip_count label"
  4294. msgid "Support Chunk Line Count"
  4295. msgstr "Recuento de líneas de pedazos del soporte"
  4296. #: fdmprinter.def.json
  4297. msgctxt "support_zag_skip_count description"
  4298. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4299. msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente."
  4300. #: fdmprinter.def.json
  4301. msgctxt "draft_shield_enabled label"
  4302. msgid "Enable Draft Shield"
  4303. msgstr "Habilitar parabrisas"
  4304. #: fdmprinter.def.json
  4305. msgctxt "draft_shield_enabled description"
  4306. 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."
  4307. msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente."
  4308. #: fdmprinter.def.json
  4309. msgctxt "draft_shield_dist label"
  4310. msgid "Draft Shield X/Y Distance"
  4311. msgstr "Distancia X/Y del parabrisas"
  4312. #: fdmprinter.def.json
  4313. msgctxt "draft_shield_dist description"
  4314. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4315. msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y."
  4316. #: fdmprinter.def.json
  4317. msgctxt "draft_shield_height_limitation label"
  4318. msgid "Draft Shield Limitation"
  4319. msgstr "Limitación del parabrisas"
  4320. #: fdmprinter.def.json
  4321. msgctxt "draft_shield_height_limitation description"
  4322. 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."
  4323. msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada."
  4324. #: fdmprinter.def.json
  4325. msgctxt "draft_shield_height_limitation option full"
  4326. msgid "Full"
  4327. msgstr "Completo"
  4328. #: fdmprinter.def.json
  4329. msgctxt "draft_shield_height_limitation option limited"
  4330. msgid "Limited"
  4331. msgstr "Limitado"
  4332. #: fdmprinter.def.json
  4333. msgctxt "draft_shield_height label"
  4334. msgid "Draft Shield Height"
  4335. msgstr "Altura del parabrisas"
  4336. #: fdmprinter.def.json
  4337. msgctxt "draft_shield_height description"
  4338. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4339. msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas."
  4340. #: fdmprinter.def.json
  4341. msgctxt "conical_overhang_enabled label"
  4342. msgid "Make Overhang Printable"
  4343. msgstr "Convertir voladizo en imprimible"
  4344. #: fdmprinter.def.json
  4345. msgctxt "conical_overhang_enabled description"
  4346. 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."
  4347. msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales."
  4348. #: fdmprinter.def.json
  4349. msgctxt "conical_overhang_angle label"
  4350. msgid "Maximum Model Angle"
  4351. msgstr "Ángulo máximo del modelo"
  4352. #: fdmprinter.def.json
  4353. msgctxt "conical_overhang_angle description"
  4354. 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."
  4355. msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo."
  4356. #: fdmprinter.def.json
  4357. msgctxt "coasting_enable label"
  4358. msgid "Enable Coasting"
  4359. msgstr "Habilitar depósito por inercia"
  4360. #: fdmprinter.def.json
  4361. msgctxt "coasting_enable description"
  4362. 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."
  4363. msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado."
  4364. #: fdmprinter.def.json
  4365. msgctxt "coasting_volume label"
  4366. msgid "Coasting Volume"
  4367. msgstr "Volumen de depósito por inercia"
  4368. #: fdmprinter.def.json
  4369. msgctxt "coasting_volume description"
  4370. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4371. msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera."
  4372. #: fdmprinter.def.json
  4373. msgctxt "coasting_min_volume label"
  4374. msgid "Minimum Volume Before Coasting"
  4375. msgstr "Volumen mínimo antes del depósito por inercia"
  4376. #: fdmprinter.def.json
  4377. msgctxt "coasting_min_volume description"
  4378. 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."
  4379. msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia."
  4380. #: fdmprinter.def.json
  4381. msgctxt "coasting_speed label"
  4382. msgid "Coasting Speed"
  4383. msgstr "Velocidad de depósito por inercia"
  4384. #: fdmprinter.def.json
  4385. msgctxt "coasting_speed description"
  4386. 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."
  4387. msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia."
  4388. #: fdmprinter.def.json
  4389. msgctxt "cross_infill_pocket_size label"
  4390. msgid "Cross 3D Pocket Size"
  4391. msgstr "Tamaño de las bolsas 3D en cruces"
  4392. #: fdmprinter.def.json
  4393. msgctxt "cross_infill_pocket_size description"
  4394. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4395. msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo."
  4396. #: fdmprinter.def.json
  4397. msgctxt "cross_infill_density_image label"
  4398. msgid "Cross Infill Density Image"
  4399. msgstr "Imagen de densidad de relleno cruzada"
  4400. #: fdmprinter.def.json
  4401. msgctxt "cross_infill_density_image description"
  4402. 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."
  4403. msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión."
  4404. #: fdmprinter.def.json
  4405. msgctxt "cross_support_density_image label"
  4406. msgid "Cross Fill Density Image for Support"
  4407. msgstr "Imagen de densidad de relleno cruzada para soporte"
  4408. #: fdmprinter.def.json
  4409. msgctxt "cross_support_density_image description"
  4410. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4411. msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte."
  4412. #: fdmprinter.def.json
  4413. msgctxt "support_conical_enabled label"
  4414. msgid "Enable Conical Support"
  4415. msgstr "Activar soporte cónico"
  4416. #: fdmprinter.def.json
  4417. msgctxt "support_conical_enabled description"
  4418. msgid "Make support areas smaller at the bottom than at the overhang."
  4419. msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo."
  4420. #: fdmprinter.def.json
  4421. msgctxt "support_conical_angle label"
  4422. msgid "Conical Support Angle"
  4423. msgstr "Ángulo del soporte cónico"
  4424. #: fdmprinter.def.json
  4425. msgctxt "support_conical_angle description"
  4426. 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."
  4427. msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior."
  4428. #: fdmprinter.def.json
  4429. msgctxt "support_conical_min_width label"
  4430. msgid "Conical Support Minimum Width"
  4431. msgstr "Anchura mínima del soporte cónico"
  4432. #: fdmprinter.def.json
  4433. msgctxt "support_conical_min_width description"
  4434. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4435. msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables."
  4436. #: fdmprinter.def.json
  4437. msgctxt "magic_fuzzy_skin_enabled label"
  4438. msgid "Fuzzy Skin"
  4439. msgstr "Forro difuso"
  4440. #: fdmprinter.def.json
  4441. msgctxt "magic_fuzzy_skin_enabled description"
  4442. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4443. msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso."
  4444. #: fdmprinter.def.json
  4445. msgctxt "magic_fuzzy_skin_outside_only label"
  4446. msgid "Fuzzy Skin Outside Only"
  4447. msgstr "Forro difuso exterior únicamente"
  4448. #: fdmprinter.def.json
  4449. msgctxt "magic_fuzzy_skin_outside_only description"
  4450. msgid "Jitter only the parts' outlines and not the parts' holes."
  4451. msgstr "Use solo los contornos de las piezas, no los orificios de las piezas."
  4452. #: fdmprinter.def.json
  4453. msgctxt "magic_fuzzy_skin_thickness label"
  4454. msgid "Fuzzy Skin Thickness"
  4455. msgstr "Grosor del forro difuso"
  4456. #: fdmprinter.def.json
  4457. msgctxt "magic_fuzzy_skin_thickness description"
  4458. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4459. msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas."
  4460. #: fdmprinter.def.json
  4461. msgctxt "magic_fuzzy_skin_point_density label"
  4462. msgid "Fuzzy Skin Density"
  4463. msgstr "Densidad del forro difuso"
  4464. #: fdmprinter.def.json
  4465. msgctxt "magic_fuzzy_skin_point_density description"
  4466. 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."
  4467. msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución."
  4468. #: fdmprinter.def.json
  4469. msgctxt "magic_fuzzy_skin_point_dist label"
  4470. msgid "Fuzzy Skin Point Distance"
  4471. msgstr "Distancia de punto del forro difuso"
  4472. #: fdmprinter.def.json
  4473. msgctxt "magic_fuzzy_skin_point_dist description"
  4474. 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."
  4475. msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso."
  4476. #: fdmprinter.def.json
  4477. msgctxt "flow_rate_max_extrusion_offset label"
  4478. msgid "Flow Rate Compensation Max Extrusion Offset"
  4479. msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal"
  4480. #: fdmprinter.def.json
  4481. msgctxt "flow_rate_max_extrusion_offset description"
  4482. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4483. msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal."
  4484. #: fdmprinter.def.json
  4485. msgctxt "flow_rate_extrusion_offset_factor label"
  4486. msgid "Flow Rate Compensation Factor"
  4487. msgstr "Factor de compensación del caudal"
  4488. #: fdmprinter.def.json
  4489. msgctxt "flow_rate_extrusion_offset_factor description"
  4490. 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."
  4491. msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión."
  4492. #: fdmprinter.def.json
  4493. msgctxt "wireframe_enabled label"
  4494. msgid "Wire Printing"
  4495. msgstr "Impresión de alambre"
  4496. #: fdmprinter.def.json
  4497. msgctxt "wireframe_enabled description"
  4498. 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."
  4499. msgstr "Imprime solo la superficie exterior con una estructura reticulada poco densa, imprimiendo 'en el aire'. Esto se realiza mediante la impresión horizontal de los contornos del modelo a intervalos Z dados que están conectados a través de líneas ascendentes y descendentes en diagonal."
  4500. #: fdmprinter.def.json
  4501. msgctxt "wireframe_height label"
  4502. msgid "WP Connection Height"
  4503. msgstr "Altura de conexión en IA"
  4504. #: fdmprinter.def.json
  4505. msgctxt "wireframe_height description"
  4506. 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."
  4507. msgstr "Altura de las líneas ascendentes y descendentes en diagonal entre dos partes horizontales. Esto determina la densidad global de la estructura reticulada. Solo se aplica a la Impresión de Alambre."
  4508. #: fdmprinter.def.json
  4509. msgctxt "wireframe_roof_inset label"
  4510. msgid "WP Roof Inset Distance"
  4511. msgstr "Distancia a la inserción del techo en IA"
  4512. #: fdmprinter.def.json
  4513. msgctxt "wireframe_roof_inset description"
  4514. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4515. msgstr "Distancia cubierta al hacer una conexión desde un contorno del techo hacia el interior. Solo se aplica a la impresión de alambre."
  4516. #: fdmprinter.def.json
  4517. msgctxt "wireframe_printspeed label"
  4518. msgid "WP Speed"
  4519. msgstr "Velocidad de IA"
  4520. #: fdmprinter.def.json
  4521. msgctxt "wireframe_printspeed description"
  4522. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4523. msgstr "Velocidad a la que la tobera se desplaza durante la extrusión de material. Solo se aplica a la impresión de alambre."
  4524. #: fdmprinter.def.json
  4525. msgctxt "wireframe_printspeed_bottom label"
  4526. msgid "WP Bottom Printing Speed"
  4527. msgstr "Velocidad de impresión de la parte inferior en IA"
  4528. #: fdmprinter.def.json
  4529. msgctxt "wireframe_printspeed_bottom description"
  4530. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4531. msgstr "Velocidad de impresión de la primera capa, que es la única capa que toca la plataforma de impresión. Solo se aplica a la impresión de alambre."
  4532. #: fdmprinter.def.json
  4533. msgctxt "wireframe_printspeed_up label"
  4534. msgid "WP Upward Printing Speed"
  4535. msgstr "Velocidad de impresión ascendente en IA"
  4536. #: fdmprinter.def.json
  4537. msgctxt "wireframe_printspeed_up description"
  4538. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4539. msgstr "Velocidad de impresión de una línea ascendente 'en el aire'. Solo se aplica a la impresión de alambre."
  4540. #: fdmprinter.def.json
  4541. msgctxt "wireframe_printspeed_down label"
  4542. msgid "WP Downward Printing Speed"
  4543. msgstr "Velocidad de impresión descendente en IA"
  4544. #: fdmprinter.def.json
  4545. msgctxt "wireframe_printspeed_down description"
  4546. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4547. msgstr "Velocidad de impresión de una línea descendente en diagonal 'en el aire'. Solo se aplica a la impresión de alambre."
  4548. #: fdmprinter.def.json
  4549. msgctxt "wireframe_printspeed_flat label"
  4550. msgid "WP Horizontal Printing Speed"
  4551. msgstr "Velocidad de impresión horizontal en IA"
  4552. #: fdmprinter.def.json
  4553. msgctxt "wireframe_printspeed_flat description"
  4554. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4555. msgstr "Velocidad de impresión de los contornos horizontales del modelo. Solo se aplica a la impresión de alambre."
  4556. #: fdmprinter.def.json
  4557. msgctxt "wireframe_flow label"
  4558. msgid "WP Flow"
  4559. msgstr "Flujo en IA"
  4560. #: fdmprinter.def.json
  4561. msgctxt "wireframe_flow description"
  4562. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4563. msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor. Solo se aplica a la impresión de alambre."
  4564. #: fdmprinter.def.json
  4565. msgctxt "wireframe_flow_connection label"
  4566. msgid "WP Connection Flow"
  4567. msgstr "Flujo de conexión en IA"
  4568. #: fdmprinter.def.json
  4569. msgctxt "wireframe_flow_connection description"
  4570. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4571. msgstr "Compensación de flujo cuando se va hacia arriba o hacia abajo. Solo se aplica a la impresión de alambre."
  4572. #: fdmprinter.def.json
  4573. msgctxt "wireframe_flow_flat label"
  4574. msgid "WP Flat Flow"
  4575. msgstr "Flujo plano en IA"
  4576. #: fdmprinter.def.json
  4577. msgctxt "wireframe_flow_flat description"
  4578. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4579. msgstr "Compensación de flujo al imprimir líneas planas. Solo se aplica a la impresión de alambre."
  4580. #: fdmprinter.def.json
  4581. msgctxt "wireframe_top_delay label"
  4582. msgid "WP Top Delay"
  4583. msgstr "Retardo superior en IA"
  4584. #: fdmprinter.def.json
  4585. msgctxt "wireframe_top_delay description"
  4586. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4587. msgstr "Tiempo de retardo después de un movimiento ascendente, para que la línea ascendente pueda endurecerse. Solo se aplica a la impresión de alambre."
  4588. #: fdmprinter.def.json
  4589. msgctxt "wireframe_bottom_delay label"
  4590. msgid "WP Bottom Delay"
  4591. msgstr "Retardo inferior en IA"
  4592. #: fdmprinter.def.json
  4593. msgctxt "wireframe_bottom_delay description"
  4594. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4595. msgstr "Tiempo de retardo después de un movimiento descendente. Solo se aplica a la impresión de alambre."
  4596. #: fdmprinter.def.json
  4597. msgctxt "wireframe_flat_delay label"
  4598. msgid "WP Flat Delay"
  4599. msgstr "Retardo plano en IA"
  4600. #: fdmprinter.def.json
  4601. msgctxt "wireframe_flat_delay description"
  4602. 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."
  4603. msgstr "Tiempo de retardo entre dos segmentos horizontales. La introducción de este retardo puede causar una mejor adherencia a las capas anteriores en los puntos de conexión, mientras que los retardos demasiado prolongados causan combados. Solo se aplica a la impresión de alambre."
  4604. #: fdmprinter.def.json
  4605. msgctxt "wireframe_up_half_speed label"
  4606. msgid "WP Ease Upward"
  4607. msgstr "Facilidad de ascenso en IA"
  4608. #: fdmprinter.def.json
  4609. msgctxt "wireframe_up_half_speed description"
  4610. msgid ""
  4611. "Distance of an upward move which is extruded with half speed.\n"
  4612. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4613. msgstr ""
  4614. "Distancia de un movimiento ascendente que se extrude a media velocidad.\n"
  4615. "Esto puede causar una mejor adherencia a las capas anteriores, aunque no calienta demasiado el material en esas capas. Solo se aplica a la impresión de alambre."
  4616. #: fdmprinter.def.json
  4617. msgctxt "wireframe_top_jump label"
  4618. msgid "WP Knot Size"
  4619. msgstr "Tamaño de nudo de IA"
  4620. #: fdmprinter.def.json
  4621. msgctxt "wireframe_top_jump description"
  4622. 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."
  4623. msgstr "Crea un pequeño nudo en la parte superior de una línea ascendente, de modo que la siguiente capa horizontal tendrá mayor probabilidad de conectarse a la misma. Solo se aplica a la impresión de alambre."
  4624. #: fdmprinter.def.json
  4625. msgctxt "wireframe_fall_down label"
  4626. msgid "WP Fall Down"
  4627. msgstr "Caída en IA"
  4628. #: fdmprinter.def.json
  4629. msgctxt "wireframe_fall_down description"
  4630. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4631. msgstr "Distancia a la que cae el material después de una extrusión ascendente. Esta distancia se compensa. Solo se aplica a la impresión de alambre."
  4632. #: fdmprinter.def.json
  4633. msgctxt "wireframe_drag_along label"
  4634. msgid "WP Drag Along"
  4635. msgstr "Arrastre en IA"
  4636. #: fdmprinter.def.json
  4637. msgctxt "wireframe_drag_along description"
  4638. 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."
  4639. msgstr "Distancia a la que el material de una extrusión ascendente se arrastra junto con la extrusión descendente en diagonal. Esta distancia se compensa. Solo se aplica a la impresión de alambre."
  4640. #: fdmprinter.def.json
  4641. msgctxt "wireframe_strategy label"
  4642. msgid "WP Strategy"
  4643. msgstr "Estrategia en IA"
  4644. #: fdmprinter.def.json
  4645. msgctxt "wireframe_strategy description"
  4646. 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."
  4647. msgstr "Estrategia para asegurarse de que dos capas consecutivas conecten en cada punto de conexión. La retracción permite que las líneas ascendentes se endurezcan en la posición correcta, pero pueden hacer que filamento se desmenuce. Se puede realizar un nudo al final de una línea ascendente para aumentar la posibilidad de conexión a la misma y dejar que la línea se enfríe; sin embargo, esto puede requerir velocidades de impresión lentas. Otra estrategia consiste en compensar el combado de la parte superior de una línea ascendente; sin embargo, las líneas no siempre caen como se espera."
  4648. #: fdmprinter.def.json
  4649. msgctxt "wireframe_strategy option compensate"
  4650. msgid "Compensate"
  4651. msgstr "Compensar"
  4652. #: fdmprinter.def.json
  4653. msgctxt "wireframe_strategy option knot"
  4654. msgid "Knot"
  4655. msgstr "Nudo"
  4656. #: fdmprinter.def.json
  4657. msgctxt "wireframe_strategy option retract"
  4658. msgid "Retract"
  4659. msgstr "Retraer"
  4660. #: fdmprinter.def.json
  4661. msgctxt "wireframe_straight_before_down label"
  4662. msgid "WP Straighten Downward Lines"
  4663. msgstr "Enderezar líneas descendentes en IA"
  4664. #: fdmprinter.def.json
  4665. msgctxt "wireframe_straight_before_down description"
  4666. 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."
  4667. msgstr "Porcentaje de una línea descendente en diagonal que está cubierta por un trozo de línea horizontal. Esto puede evitar el combado del punto de nivel superior de las líneas ascendentes. Solo se aplica a la impresión de alambre."
  4668. #: fdmprinter.def.json
  4669. msgctxt "wireframe_roof_fall_down label"
  4670. msgid "WP Roof Fall Down"
  4671. msgstr "Caída del techo en IA"
  4672. #: fdmprinter.def.json
  4673. msgctxt "wireframe_roof_fall_down description"
  4674. 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."
  4675. msgstr "Distancia a la que las líneas horizontales del techo impresas 'en el aire' caen mientras se imprime. Esta distancia se compensa. Solo se aplica a la impresión de alambre."
  4676. #: fdmprinter.def.json
  4677. msgctxt "wireframe_roof_drag_along label"
  4678. msgid "WP Roof Drag Along"
  4679. msgstr "Arrastre del techo en IA"
  4680. #: fdmprinter.def.json
  4681. msgctxt "wireframe_roof_drag_along description"
  4682. 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."
  4683. msgstr "La distancia del trozo final de una línea entrante que se arrastra al volver al contorno exterior del techo. Esta distancia se compensa. Solo se aplica a la impresión de alambre."
  4684. #: fdmprinter.def.json
  4685. msgctxt "wireframe_roof_outer_delay label"
  4686. msgid "WP Roof Outer Delay"
  4687. msgstr "Retardo exterior del techo en IA"
  4688. #: fdmprinter.def.json
  4689. msgctxt "wireframe_roof_outer_delay description"
  4690. 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."
  4691. msgstr "El tiempo empleado en los perímetros exteriores del agujero que se convertirá en un techo. Cuanto mayor sea el tiempo, mejor será la conexión. Solo se aplica a la impresión de alambre."
  4692. #: fdmprinter.def.json
  4693. msgctxt "wireframe_nozzle_clearance label"
  4694. msgid "WP Nozzle Clearance"
  4695. msgstr "Holgura de la tobera en IA"
  4696. #: fdmprinter.def.json
  4697. msgctxt "wireframe_nozzle_clearance description"
  4698. 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."
  4699. msgstr "Distancia entre la tobera y líneas descendentes en horizontal. Cuanto mayor sea la holgura, menos pronunciado será el ángulo de las líneas descendentes en diagonal, lo que a su vez se traduce en menos conexiones ascendentes con la siguiente capa. Solo se aplica a la impresión de alambre."
  4700. #: fdmprinter.def.json
  4701. msgctxt "adaptive_layer_height_enabled label"
  4702. msgid "Use Adaptive Layers"
  4703. msgstr "Utilizar capas de adaptación"
  4704. #: fdmprinter.def.json
  4705. msgctxt "adaptive_layer_height_enabled description"
  4706. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4707. msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo."
  4708. #: fdmprinter.def.json
  4709. msgctxt "adaptive_layer_height_variation label"
  4710. msgid "Adaptive Layers Maximum Variation"
  4711. msgstr "Variación máxima de las capas de adaptación"
  4712. #: fdmprinter.def.json
  4713. msgctxt "adaptive_layer_height_variation description"
  4714. msgid "The maximum allowed height different from the base layer height."
  4715. msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base."
  4716. #: fdmprinter.def.json
  4717. msgctxt "adaptive_layer_height_variation_step label"
  4718. msgid "Adaptive Layers Variation Step Size"
  4719. msgstr "Tamaño de pasos de variación de las capas de adaptación"
  4720. #: fdmprinter.def.json
  4721. msgctxt "adaptive_layer_height_variation_step description"
  4722. msgid "The difference in height of the next layer height compared to the previous one."
  4723. msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior."
  4724. #: fdmprinter.def.json
  4725. msgctxt "adaptive_layer_height_threshold label"
  4726. msgid "Adaptive Layers Topography Size"
  4727. msgstr "Tamaño de la topografía de las capas de adaptación"
  4728. #: fdmprinter.def.json
  4729. msgctxt "adaptive_layer_height_threshold description"
  4730. 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."
  4731. msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas."
  4732. #: fdmprinter.def.json
  4733. msgctxt "wall_overhang_angle label"
  4734. msgid "Overhanging Wall Angle"
  4735. msgstr "Ángulo de voladizo de pared"
  4736. #: fdmprinter.def.json
  4737. msgctxt "wall_overhang_angle description"
  4738. 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."
  4739. msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo."
  4740. #: fdmprinter.def.json
  4741. msgctxt "wall_overhang_speed_factor label"
  4742. msgid "Overhanging Wall Speed"
  4743. msgstr "Velocidad de voladizo de pared"
  4744. #: fdmprinter.def.json
  4745. msgctxt "wall_overhang_speed_factor description"
  4746. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4747. msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal."
  4748. #: fdmprinter.def.json
  4749. msgctxt "bridge_settings_enabled label"
  4750. msgid "Enable Bridge Settings"
  4751. msgstr "Habilitar ajustes del puente"
  4752. #: fdmprinter.def.json
  4753. msgctxt "bridge_settings_enabled description"
  4754. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4755. msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes."
  4756. #: fdmprinter.def.json
  4757. msgctxt "bridge_wall_min_length label"
  4758. msgid "Minimum Bridge Wall Length"
  4759. msgstr "Longitud mínima de la pared del puente"
  4760. #: fdmprinter.def.json
  4761. msgctxt "bridge_wall_min_length description"
  4762. 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."
  4763. msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente."
  4764. #: fdmprinter.def.json
  4765. msgctxt "bridge_skin_support_threshold label"
  4766. msgid "Bridge Skin Support Threshold"
  4767. msgstr "Umbral del soporte del forro del puente"
  4768. #: fdmprinter.def.json
  4769. msgctxt "bridge_skin_support_threshold description"
  4770. 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."
  4771. msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales."
  4772. #: fdmprinter.def.json
  4773. msgctxt "bridge_sparse_infill_max_density label"
  4774. msgid "Bridge Sparse Infill Max Density"
  4775. msgstr "Densidad máxima de relleno de puente escaso"
  4776. #: fdmprinter.def.json
  4777. msgctxt "bridge_sparse_infill_max_density description"
  4778. 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."
  4779. msgstr "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente."
  4780. #: fdmprinter.def.json
  4781. msgctxt "bridge_wall_coast label"
  4782. msgid "Bridge Wall Coasting"
  4783. msgstr "Depósito por inercia de la pared del puente"
  4784. #: fdmprinter.def.json
  4785. msgctxt "bridge_wall_coast description"
  4786. 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."
  4787. msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal."
  4788. #: fdmprinter.def.json
  4789. msgctxt "bridge_wall_speed label"
  4790. msgid "Bridge Wall Speed"
  4791. msgstr "Velocidad de pared del puente"
  4792. #: fdmprinter.def.json
  4793. msgctxt "bridge_wall_speed description"
  4794. msgid "The speed at which the bridge walls are printed."
  4795. msgstr "Velocidad a la que se imprimen las paredes del puente."
  4796. #: fdmprinter.def.json
  4797. msgctxt "bridge_wall_material_flow label"
  4798. msgid "Bridge Wall Flow"
  4799. msgstr "Flujo de pared del puente"
  4800. #: fdmprinter.def.json
  4801. msgctxt "bridge_wall_material_flow description"
  4802. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4803. msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor."
  4804. #: fdmprinter.def.json
  4805. msgctxt "bridge_skin_speed label"
  4806. msgid "Bridge Skin Speed"
  4807. msgstr "Velocidad de forro del puente"
  4808. #: fdmprinter.def.json
  4809. msgctxt "bridge_skin_speed description"
  4810. msgid "The speed at which bridge skin regions are printed."
  4811. msgstr "Velocidad a la que se imprimen las áreas de forro del puente."
  4812. #: fdmprinter.def.json
  4813. msgctxt "bridge_skin_material_flow label"
  4814. msgid "Bridge Skin Flow"
  4815. msgstr "Flujo de forro del puente"
  4816. #: fdmprinter.def.json
  4817. msgctxt "bridge_skin_material_flow description"
  4818. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4819. msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor."
  4820. #: fdmprinter.def.json
  4821. msgctxt "bridge_skin_density label"
  4822. msgid "Bridge Skin Density"
  4823. msgstr "Densidad de forro del puente"
  4824. #: fdmprinter.def.json
  4825. msgctxt "bridge_skin_density description"
  4826. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4827. msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4828. #: fdmprinter.def.json
  4829. msgctxt "bridge_fan_speed label"
  4830. msgid "Bridge Fan Speed"
  4831. msgstr "Velocidad del ventilador del puente"
  4832. #: fdmprinter.def.json
  4833. msgctxt "bridge_fan_speed description"
  4834. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4835. msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente."
  4836. #: fdmprinter.def.json
  4837. msgctxt "bridge_enable_more_layers label"
  4838. msgid "Bridge Has Multiple Layers"
  4839. msgstr "Puente con varias capas"
  4840. #: fdmprinter.def.json
  4841. msgctxt "bridge_enable_more_layers description"
  4842. 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."
  4843. msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales."
  4844. #: fdmprinter.def.json
  4845. msgctxt "bridge_skin_speed_2 label"
  4846. msgid "Bridge Second Skin Speed"
  4847. msgstr "Velocidad del segundo forro del puente"
  4848. #: fdmprinter.def.json
  4849. msgctxt "bridge_skin_speed_2 description"
  4850. msgid "Print speed to use when printing the second bridge skin layer."
  4851. msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente."
  4852. #: fdmprinter.def.json
  4853. msgctxt "bridge_skin_material_flow_2 label"
  4854. msgid "Bridge Second Skin Flow"
  4855. msgstr "Flujo del segundo forro del puente"
  4856. #: fdmprinter.def.json
  4857. msgctxt "bridge_skin_material_flow_2 description"
  4858. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4859. msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor."
  4860. #: fdmprinter.def.json
  4861. msgctxt "bridge_skin_density_2 label"
  4862. msgid "Bridge Second Skin Density"
  4863. msgstr "Densidad del segundo forro del puente"
  4864. #: fdmprinter.def.json
  4865. msgctxt "bridge_skin_density_2 description"
  4866. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4867. msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4868. #: fdmprinter.def.json
  4869. msgctxt "bridge_fan_speed_2 label"
  4870. msgid "Bridge Second Skin Fan Speed"
  4871. msgstr "Velocidad del ventilador del segundo forro del puente"
  4872. #: fdmprinter.def.json
  4873. msgctxt "bridge_fan_speed_2 description"
  4874. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4875. msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente."
  4876. #: fdmprinter.def.json
  4877. msgctxt "bridge_skin_speed_3 label"
  4878. msgid "Bridge Third Skin Speed"
  4879. msgstr "Velocidad del tercer forro del puente"
  4880. #: fdmprinter.def.json
  4881. msgctxt "bridge_skin_speed_3 description"
  4882. msgid "Print speed to use when printing the third bridge skin layer."
  4883. msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente."
  4884. #: fdmprinter.def.json
  4885. msgctxt "bridge_skin_material_flow_3 label"
  4886. msgid "Bridge Third Skin Flow"
  4887. msgstr "Flujo del tercer forro del puente"
  4888. #: fdmprinter.def.json
  4889. msgctxt "bridge_skin_material_flow_3 description"
  4890. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4891. msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor."
  4892. #: fdmprinter.def.json
  4893. msgctxt "bridge_skin_density_3 label"
  4894. msgid "Bridge Third Skin Density"
  4895. msgstr "Densidad del tercer forro del puente"
  4896. #: fdmprinter.def.json
  4897. msgctxt "bridge_skin_density_3 description"
  4898. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4899. msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4900. #: fdmprinter.def.json
  4901. msgctxt "bridge_fan_speed_3 label"
  4902. msgid "Bridge Third Skin Fan Speed"
  4903. msgstr "Velocidad del ventilador del tercer forro del puente"
  4904. #: fdmprinter.def.json
  4905. msgctxt "bridge_fan_speed_3 description"
  4906. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4907. msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente."
  4908. #: fdmprinter.def.json
  4909. msgctxt "clean_between_layers label"
  4910. msgid "Wipe Nozzle Between Layers"
  4911. msgstr "Limpiar tobera entre capas"
  4912. #: fdmprinter.def.json
  4913. msgctxt "clean_between_layers description"
  4914. 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."
  4915. msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso."
  4916. #: fdmprinter.def.json
  4917. msgctxt "max_extrusion_before_wipe label"
  4918. msgid "Material Volume Between Wipes"
  4919. msgstr "Volumen de material entre limpiezas"
  4920. #: fdmprinter.def.json
  4921. msgctxt "max_extrusion_before_wipe description"
  4922. 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."
  4923. msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa."
  4924. #: fdmprinter.def.json
  4925. msgctxt "wipe_retraction_enable label"
  4926. msgid "Wipe Retraction Enable"
  4927. msgstr "Habilitación de retracción de limpieza"
  4928. #: fdmprinter.def.json
  4929. msgctxt "wipe_retraction_enable description"
  4930. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4931. msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa."
  4932. #: fdmprinter.def.json
  4933. msgctxt "wipe_retraction_amount label"
  4934. msgid "Wipe Retraction Distance"
  4935. msgstr "Distancia de retracción de limpieza"
  4936. #: fdmprinter.def.json
  4937. msgctxt "wipe_retraction_amount description"
  4938. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4939. msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza."
  4940. #: fdmprinter.def.json
  4941. msgctxt "wipe_retraction_extra_prime_amount label"
  4942. msgid "Wipe Retraction Extra Prime Amount"
  4943. msgstr "Cantidad de cebado adicional de retracción de limpieza"
  4944. #: fdmprinter.def.json
  4945. msgctxt "wipe_retraction_extra_prime_amount description"
  4946. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4947. msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí."
  4948. #: fdmprinter.def.json
  4949. msgctxt "wipe_retraction_speed label"
  4950. msgid "Wipe Retraction Speed"
  4951. msgstr "Velocidad de retracción de limpieza"
  4952. #: fdmprinter.def.json
  4953. msgctxt "wipe_retraction_speed description"
  4954. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4955. msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza."
  4956. #: fdmprinter.def.json
  4957. msgctxt "wipe_retraction_retract_speed label"
  4958. msgid "Wipe Retraction Retract Speed"
  4959. msgstr "Velocidad de retracción en retracción de limpieza"
  4960. #: fdmprinter.def.json
  4961. msgctxt "wipe_retraction_retract_speed description"
  4962. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4963. msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza."
  4964. #: fdmprinter.def.json
  4965. msgctxt "wipe_retraction_prime_speed label"
  4966. msgid "Wipe Retraction Prime Speed"
  4967. msgstr "Velocidad de cebado de retracción de limpieza"
  4968. #: fdmprinter.def.json
  4969. msgctxt "wipe_retraction_prime_speed description"
  4970. msgid "The speed at which the filament is primed during a wipe retraction move."
  4971. msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza."
  4972. #: fdmprinter.def.json
  4973. msgctxt "wipe_pause label"
  4974. msgid "Wipe Pause"
  4975. msgstr "Pausar limpieza"
  4976. #: fdmprinter.def.json
  4977. msgctxt "wipe_pause description"
  4978. msgid "Pause after the unretract."
  4979. msgstr "Pausa después de no haber retracción."
  4980. #: fdmprinter.def.json
  4981. msgctxt "wipe_hop_enable label"
  4982. msgid "Wipe Z Hop"
  4983. msgstr "Limpiar salto en Z"
  4984. #: fdmprinter.def.json
  4985. msgctxt "wipe_hop_enable description"
  4986. 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."
  4987. msgstr "Siempre que se limpia, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión."
  4988. #: fdmprinter.def.json
  4989. msgctxt "wipe_hop_amount label"
  4990. msgid "Wipe Z Hop Height"
  4991. msgstr "Limpiar altura del salto en Z"
  4992. #: fdmprinter.def.json
  4993. msgctxt "wipe_hop_amount description"
  4994. msgid "The height difference when performing a Z Hop."
  4995. msgstr "Diferencia de altura cuando se realiza un salto en Z."
  4996. #: fdmprinter.def.json
  4997. msgctxt "wipe_hop_speed label"
  4998. msgid "Wipe Hop Speed"
  4999. msgstr "Limpiar velocidad de salto"
  5000. #: fdmprinter.def.json
  5001. msgctxt "wipe_hop_speed description"
  5002. msgid "Speed to move the z-axis during the hop."
  5003. msgstr "Velocidad para mover el eje Z durante el salto."
  5004. #: fdmprinter.def.json
  5005. msgctxt "wipe_brush_pos_x label"
  5006. msgid "Wipe Brush X Position"
  5007. msgstr "Limpiar posición X de cepillo"
  5008. #: fdmprinter.def.json
  5009. msgctxt "wipe_brush_pos_x description"
  5010. msgid "X location where wipe script will start."
  5011. msgstr "Ubicación X donde se iniciará la secuencia de limpieza."
  5012. #: fdmprinter.def.json
  5013. msgctxt "wipe_repeat_count label"
  5014. msgid "Wipe Repeat Count"
  5015. msgstr "Recuento de repeticiones de limpieza"
  5016. #: fdmprinter.def.json
  5017. msgctxt "wipe_repeat_count description"
  5018. msgid "Number of times to move the nozzle across the brush."
  5019. msgstr "Número de movimientos de la tobera a lo largo del cepillo."
  5020. #: fdmprinter.def.json
  5021. msgctxt "wipe_move_distance label"
  5022. msgid "Wipe Move Distance"
  5023. msgstr "Distancia de movimiento de limpieza"
  5024. #: fdmprinter.def.json
  5025. msgctxt "wipe_move_distance description"
  5026. msgid "The distance to move the head back and forth across the brush."
  5027. msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo."
  5028. #: fdmprinter.def.json
  5029. msgctxt "small_hole_max_size label"
  5030. msgid "Small Hole Max Size"
  5031. msgstr "Tamaño máximo de agujero pequeño"
  5032. #: fdmprinter.def.json
  5033. msgctxt "small_hole_max_size description"
  5034. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5035. msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes."
  5036. #: fdmprinter.def.json
  5037. msgctxt "small_feature_max_length label"
  5038. msgid "Small Feature Max Length"
  5039. msgstr "Longitud máxima de pequeñas partes"
  5040. #: fdmprinter.def.json
  5041. msgctxt "small_feature_max_length description"
  5042. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5043. msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes."
  5044. #: fdmprinter.def.json
  5045. msgctxt "small_feature_speed_factor label"
  5046. msgid "Small Feature Speed"
  5047. msgstr "Velocidad de pequeñas partes"
  5048. #: fdmprinter.def.json
  5049. msgctxt "small_feature_speed_factor description"
  5050. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5051. msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
  5052. #: fdmprinter.def.json
  5053. msgctxt "small_feature_speed_factor_0 label"
  5054. msgid "Small Feature Initial Layer Speed"
  5055. msgstr "Velocidad de la capa inicial de partes pequeñas"
  5056. #: fdmprinter.def.json
  5057. msgctxt "small_feature_speed_factor_0 description"
  5058. 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."
  5059. msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
  5060. #: fdmprinter.def.json
  5061. msgctxt "command_line_settings label"
  5062. msgid "Command Line Settings"
  5063. msgstr "Ajustes de la línea de comandos"
  5064. #: fdmprinter.def.json
  5065. msgctxt "command_line_settings description"
  5066. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5067. msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura."
  5068. #: fdmprinter.def.json
  5069. msgctxt "center_object label"
  5070. msgid "Center Object"
  5071. msgstr "Centrar objeto"
  5072. #: fdmprinter.def.json
  5073. msgctxt "center_object description"
  5074. 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."
  5075. msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto."
  5076. #: fdmprinter.def.json
  5077. msgctxt "mesh_position_x label"
  5078. msgid "Mesh Position X"
  5079. msgstr "Posición X en la malla"
  5080. #: fdmprinter.def.json
  5081. msgctxt "mesh_position_x description"
  5082. msgid "Offset applied to the object in the x direction."
  5083. msgstr "Desplazamiento aplicado al objeto en la dirección x."
  5084. #: fdmprinter.def.json
  5085. msgctxt "mesh_position_y label"
  5086. msgid "Mesh Position Y"
  5087. msgstr "Posición Y en la malla"
  5088. #: fdmprinter.def.json
  5089. msgctxt "mesh_position_y description"
  5090. msgid "Offset applied to the object in the y direction."
  5091. msgstr "Desplazamiento aplicado al objeto en la dirección y."
  5092. #: fdmprinter.def.json
  5093. msgctxt "mesh_position_z label"
  5094. msgid "Mesh Position Z"
  5095. msgstr "Posición Z en la malla"
  5096. #: fdmprinter.def.json
  5097. msgctxt "mesh_position_z description"
  5098. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5099. msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»."
  5100. #: fdmprinter.def.json
  5101. msgctxt "mesh_rotation_matrix label"
  5102. msgid "Mesh Rotation Matrix"
  5103. msgstr "Matriz de rotación de la malla"
  5104. #: fdmprinter.def.json
  5105. msgctxt "mesh_rotation_matrix description"
  5106. msgid "Transformation matrix to be applied to the model when loading it from file."
  5107. msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo."
  5108. #~ msgctxt "print_sequence description"
  5109. #~ 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. "
  5110. #~ msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y. "
  5111. #~ msgctxt "infill_mesh_order label"
  5112. #~ msgid "Infill Mesh Order"
  5113. #~ msgstr "Orden de las mallas de relleno"
  5114. #~ msgctxt "infill_mesh_order description"
  5115. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5116. #~ msgstr "Determina qué malla de relleno está dentro del relleno de otra malla de relleno. Una malla de relleno de orden superior modificará el relleno de las mallas de relleno con un orden inferior y mallas normales."
  5117. #~ msgctxt "support_tree_enable label"
  5118. #~ msgid "Tree Support"
  5119. #~ msgstr "Soporte en árbol"
  5120. #~ msgctxt "support_tree_enable description"
  5121. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5122. #~ msgstr "Generar un soporte en forma de árbol con ramas que apoyan la impresión. Esto puede reducir el uso de material y el tiempo de impresión, pero aumenta considerablemente el tiempo de fragmentación."
  5123. #~ msgctxt "slicing_tolerance description"
  5124. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5125. #~ msgstr "Cómo segmentar capas con superficies diagonales. Las áreas de una capa se pueden crear según el punto en el que el centro de esta intersecta con la superficie (Media). Las capas también pueden tener áreas comprendidas en el volumen a lo largo de la altura de la capa (Exclusiva) o una capa puede tener áreas comprendidas en cualquier lugar de la capa (Inclusiva). Las capas exclusivas tienen un mayor nivel de detalle, mientras que las inclusivas son las que mejor se ajustan y las medias las que tardan menos en procesarse."
  5126. #~ msgctxt "spaghetti_infill_enabled label"
  5127. #~ msgid "Spaghetti Infill"
  5128. #~ msgstr "Relleno spaghetti"
  5129. #~ msgctxt "spaghetti_infill_enabled description"
  5130. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5131. #~ msgstr "Imprima el relleno cada cierto tiempo para que el filamento se enrosque caóticamente dentro del objeto. Esto reduce el tiempo de impresión, pero el comportamiento es más bien impredecible."
  5132. #~ msgctxt "spaghetti_infill_stepped label"
  5133. #~ msgid "Spaghetti Infill Stepping"
  5134. #~ msgstr "Relleno spaghetti en escalones"
  5135. #~ msgctxt "spaghetti_infill_stepped description"
  5136. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5137. #~ msgstr "Puede elegir si imprimir el relleno spaghetti en escalones o extruir todos los filamentos del relleno al final de la impresión."
  5138. #~ msgctxt "spaghetti_max_infill_angle label"
  5139. #~ msgid "Spaghetti Maximum Infill Angle"
  5140. #~ msgstr "Ángulo máximo de relleno spaghetti"
  5141. #~ msgctxt "spaghetti_max_infill_angle description"
  5142. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5143. #~ msgstr "Ángulo máximo con respecto al eje Z de dentro de la impresora para áreas que se deben rellenar con relleno spaghetti más tarde. Reducir este valor produce que las piezas con más ángulos del modelo se rellenen en cada capa."
  5144. #~ msgctxt "spaghetti_max_height label"
  5145. #~ msgid "Spaghetti Infill Maximum Height"
  5146. #~ msgstr "Altura máxima de relleno spaghetti"
  5147. #~ msgctxt "spaghetti_max_height description"
  5148. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5149. #~ msgstr "Altura máxima del espacio interior se puede combinar y rellenar desde arriba."
  5150. #~ msgctxt "spaghetti_inset label"
  5151. #~ msgid "Spaghetti Inset"
  5152. #~ msgstr "Entrante spaghetti"
  5153. #~ msgctxt "spaghetti_inset description"
  5154. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5155. #~ msgstr "Desplazamiento de las paredes desde las que se va a imprimir el relleno spaghetti."
  5156. #~ msgctxt "spaghetti_flow label"
  5157. #~ msgid "Spaghetti Flow"
  5158. #~ msgstr "Flujo spaghetti"
  5159. #~ msgctxt "spaghetti_flow description"
  5160. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5161. #~ msgstr "Ajusta la densidad del relleno spaghetti. Tenga en cuenta que la densidad de relleno solo controla el espaciado entre líneas del patrón de relleno, no la cantidad de extrusión del relleno spaghetti."
  5162. #~ msgctxt "spaghetti_infill_extra_volume label"
  5163. #~ msgid "Spaghetti Infill Extra Volume"
  5164. #~ msgstr "Volumen adicional de relleno spaghetti"
  5165. #~ msgctxt "spaghetti_infill_extra_volume description"
  5166. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5167. #~ msgstr "Término de corrección para ajustar el volumen total que se extruye cada vez que se usa el relleno spaghetti."
  5168. #~ msgctxt "material_guid description"
  5169. #~ msgid "GUID of the material. This is set automatically. "
  5170. #~ msgstr "GUID del material. Este valor se define de forma automática. "
  5171. #~ msgctxt "machine_filament_park_distance label"
  5172. #~ msgid "Filament Park Distance"
  5173. #~ msgstr "Distancia a la cual se estaciona el filamento"
  5174. #~ msgctxt "machine_filament_park_distance description"
  5175. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5176. #~ msgstr "Distancia desde la punta de la tobera a la cual se estaciona el filamento cuando un extrusor ya no se utiliza."
  5177. #~ msgctxt "material_flush_purge_speed description"
  5178. #~ msgid "Material Station internal value"
  5179. #~ msgstr "Valor interno de Material Station"
  5180. #~ msgctxt "material_flush_purge_length description"
  5181. #~ msgid "Material Station internal value"
  5182. #~ msgstr "Valor interno de Material Station"
  5183. #~ msgctxt "material_end_of_filament_purge_speed label"
  5184. #~ msgid "End Of Filament Purge Speed"
  5185. #~ msgstr "Velocidad de purga del extremo del filamento"
  5186. #~ msgctxt "material_end_of_filament_purge_speed description"
  5187. #~ msgid "Material Station internal value"
  5188. #~ msgstr "Valor interno de Material Station"
  5189. #~ msgctxt "material_end_of_filament_purge_length label"
  5190. #~ msgid "End Of Filament Purge Length"
  5191. #~ msgstr "Longitud de purga del extremo del filamento"
  5192. #~ msgctxt "material_end_of_filament_purge_length description"
  5193. #~ msgid "Material Station internal value"
  5194. #~ msgstr "Valor interno de Material Station"
  5195. #~ msgctxt "material_maximum_park_duration description"
  5196. #~ msgid "Material Station internal value"
  5197. #~ msgstr "Valor interno de Material Station"
  5198. #~ msgctxt "material_no_load_move_factor description"
  5199. #~ msgid "Material Station internal value"
  5200. #~ msgstr "Valor interno de Material Station"
  5201. #~ msgctxt "retraction_enable description"
  5202. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5203. #~ msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa. "
  5204. #~ msgctxt "support_xy_distance_overhang description"
  5205. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5206. #~ msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y. "
  5207. #~ msgctxt "meshfix description"
  5208. #~ msgid "category_fixes"
  5209. #~ msgstr "category_fixes"
  5210. #~ msgctxt "blackmagic description"
  5211. #~ msgid "category_blackmagic"
  5212. #~ msgstr "category_blackmagic"
  5213. #~ msgctxt "experimental description"
  5214. #~ msgid "experimental!"
  5215. #~ msgstr "¡Experimental!"
  5216. #~ msgctxt "machine_head_polygon label"
  5217. #~ msgid "Machine Head Polygon"
  5218. #~ msgstr "Polígono del cabezal de la máquina"
  5219. #~ msgctxt "machine_head_polygon description"
  5220. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5221. #~ msgstr "Silueta 2D del cabezal de impresión (sin incluir las tapas del ventilador)."
  5222. #~ msgctxt "print_sequence description"
  5223. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5224. #~ msgstr "Con esta opción se decide si imprimir todos los modelos de una capa a la vez o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si se separan todos los modelos de tal manera que el cabezal de impresión completo pueda moverse entre los modelos y todos los modelos son menores que la distancia entre la tobera y los ejes X/Y."
  5225. #~ msgctxt "support_tree_wall_thickness label"
  5226. #~ msgid "Tree Support Wall Thickness"
  5227. #~ msgstr "Grosor de las paredes del soporte en árbol"
  5228. #~ msgctxt "support_tree_wall_thickness description"
  5229. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5230. #~ msgstr "El grosor de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
  5231. #~ msgctxt "support_tree_wall_count label"
  5232. #~ msgid "Tree Support Wall Line Count"
  5233. #~ msgstr "Recuento de líneas de pared del soporte en árbol"
  5234. #~ msgctxt "support_tree_wall_count description"
  5235. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5236. #~ msgstr "El número de las paredes de las ramas del soporte en árbol. Imprimir paredes más gruesas llevará más tiempo pero no se caerán tan fácilmente."
  5237. #~ msgctxt "clean_between_layers description"
  5238. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5239. #~ msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas. Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso."
  5240. #~ msgctxt "max_extrusion_before_wipe description"
  5241. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5242. #~ msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de tobera."
  5243. #~ msgctxt "wipe_retraction_prime_speed label"
  5244. #~ msgid "Retraction Prime Speed"
  5245. #~ msgstr "Velocidad de cebado de retracción"
  5246. #~ msgctxt "wipe_hop_enable label"
  5247. #~ msgid "Wipe Z Hop When Retracted"
  5248. #~ msgstr "Limpiar salto en Z en la retracción"
  5249. #~ msgctxt "wipe_hop_enable description"
  5250. #~ 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."
  5251. #~ msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión."
  5252. #~ msgctxt "minimum_interface_area description"
  5253. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5254. #~ msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. No se generarán polígonos que posean un área de menor tamaño que este valor."
  5255. #~ msgctxt "minimum_roof_area description"
  5256. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5257. #~ msgstr "Tamaño del área mínima para los techos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor."
  5258. #~ msgctxt "minimum_bottom_area description"
  5259. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5260. #~ msgstr "Tamaño del área mínima para los suelos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor."
  5261. #~ msgctxt "skin_alternate_rotation label"
  5262. #~ msgid "Alternate Skin Rotation"
  5263. #~ msgstr "Alternar la rotación del forro"
  5264. #~ msgctxt "skin_alternate_rotation description"
  5265. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5266. #~ msgstr "Alterna la dirección en la que se imprimen las capas superiores/inferiores. Normalmente, se imprimen únicamente en diagonal. Este ajuste añade las direcciones solo X y solo Y."
  5267. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5268. #~ msgid "Flow rate compensation max extrusion offset"
  5269. #~ msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal"
  5270. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5271. #~ msgid "The maximum distance in mm to compensate."
  5272. #~ msgstr "Distancia máxima en mm que se va a compensar."
  5273. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5274. #~ msgid "Flow rate compensation factor"
  5275. #~ msgstr "Factor de compensación del caudal"
  5276. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5277. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5278. #~ msgstr "La multiplicación factor por caudal da como resultado la conversión de distancia."
  5279. #~ msgctxt "adaptive_layer_height_threshold label"
  5280. #~ msgid "Adaptive Layers Threshold"
  5281. #~ msgstr "Umbral de las capas de adaptación"
  5282. #~ msgctxt "adaptive_layer_height_threshold description"
  5283. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5284. #~ msgstr "Umbral para usar o no una capa más pequeña. Este número se compara con el curtido de la pendiente más empinada de una capa."
  5285. #~ msgctxt "wall_overhang_angle description"
  5286. #~ 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."
  5287. #~ msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared."
  5288. #~ msgctxt "small_feature_speed_factor description"
  5289. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5290. #~ msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
  5291. #~ msgctxt "small_feature_speed_factor_0 label"
  5292. #~ msgid "First Layer Speed"
  5293. #~ msgstr "Velocidad de primera capa"
  5294. #~ msgctxt "small_feature_speed_factor_0 description"
  5295. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5296. #~ msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión."
  5297. #~ msgctxt "ironing_enabled description"
  5298. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5299. #~ msgstr "Pasar por la superficie superior una vez más, pero sin extruir material, para derretir la parte externa del plástico y crear una superficie más lisa."
  5300. #~ msgctxt "start_layers_at_same_position label"
  5301. #~ msgid "Start Layers with the Same Part"
  5302. #~ msgstr "Comenzar capas con la misma parte"
  5303. #~ msgctxt "start_layers_at_same_position description"
  5304. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5305. #~ msgstr "En cada capa, comenzar imprimiendo el objeto cerca del mismo punto, de forma que no se comienza una capa imprimiendo la pieza en la que finalizó la capa anterior. Esto permite mejorar los voladizos y las partes pequeñas, a costa de un mayor tiempo de impresión."
  5306. #~ msgctxt "support_infill_angles description"
  5307. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5308. #~ msgstr "Orientación del patrón de relleno para soportes. El patrón de relleno de soporte se gira en el plano horizontal."
  5309. #~ msgctxt "meshfix_maximum_deviation description"
  5310. #~ 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."
  5311. #~ msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño."
  5312. #~ msgctxt "machine_gcode_flavor label"
  5313. #~ msgid "G-code Flavour"
  5314. #~ msgstr "Tipo de GCode"
  5315. #~ msgctxt "z_seam_corner description"
  5316. #~ 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."
  5317. #~ msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura sea en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior."
  5318. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5319. #~ msgid "Ignore Small Z Gaps"
  5320. #~ msgstr "Ignorar los pequeños huecos en Z"
  5321. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5322. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5323. #~ msgstr "Cuando el modelo tiene pequeños huecos verticales, el tiempo de cálculo puede aumentar alrededor de un 5 % para generar el forro superior e inferior en estos espacios estrechos. En tal caso, desactive este ajuste."
  5324. #~ msgctxt "build_volume_temperature description"
  5325. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5326. #~ msgstr "La temperatura utilizada para el volumen de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará."
  5327. #~ msgctxt "limit_support_retractions description"
  5328. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5329. #~ msgstr "Omitir la retracción al moverse de soporte a soporte en línea recta. Habilitar este ajuste ahorra tiempo de impresión pero puede ocasionar un encordado excesivo en la estructura de soporte."
  5330. #~ msgctxt "max_feedrate_z_override label"
  5331. #~ msgid "Maximum Z Speed"
  5332. #~ msgstr "Velocidad máxima de Z"
  5333. #~ msgctxt "max_feedrate_z_override description"
  5334. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5335. #~ msgstr "Velocidad máxima a la que se mueve la placa de impresión. Definir este valor en 0 hace que la impresión utilice los valores predeterminados de la velocidad máxima de Z."
  5336. #~ msgctxt "support_join_distance description"
  5337. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5338. #~ msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando estructuras separadas están más cerca entre sí que de este valor, las estructuras se combinan en una."
  5339. #~ msgctxt "support_minimal_diameter label"
  5340. #~ msgid "Minimum Diameter"
  5341. #~ msgstr "Diámetro mínimo"
  5342. #~ msgctxt "support_minimal_diameter description"
  5343. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5344. #~ msgstr "Diámetro mínimo en las direcciones X/Y de una pequeña área que soportará una torre de soporte especializada."
  5345. #~ msgctxt "prime_tower_circular label"
  5346. #~ msgid "Circular Prime Tower"
  5347. #~ msgstr "Torre auxiliar circular"
  5348. #~ msgctxt "prime_tower_circular description"
  5349. #~ msgid "Make the prime tower as a circular shape."
  5350. #~ msgstr "Hacer que la torre auxiliar sea circular."
  5351. #~ msgctxt "prime_tower_flow description"
  5352. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5353. #~ msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor."
  5354. #~ msgctxt "smooth_spiralized_contours description"
  5355. #~ 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."
  5356. #~ msgstr "Suavice los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie."
  5357. #~ msgctxt "support_conical_enabled description"
  5358. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5359. #~ msgstr "Función experimental: hace áreas de soporte más pequeñas en la parte inferior que en el voladizo."
  5360. #~ msgctxt "extruders_enabled_count label"
  5361. #~ msgid "Number of Extruders that are enabled"
  5362. #~ msgstr "Número de extrusores habilitados"
  5363. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5364. #~ msgid "Outer nozzle diameter"
  5365. #~ msgstr "Diámetro exterior de la tobera"
  5366. #~ msgctxt "machine_nozzle_head_distance label"
  5367. #~ msgid "Nozzle length"
  5368. #~ msgstr "Longitud de la tobera"
  5369. #~ msgctxt "machine_nozzle_expansion_angle label"
  5370. #~ msgid "Nozzle angle"
  5371. #~ msgstr "Ángulo de la tobera"
  5372. #~ msgctxt "machine_heat_zone_length label"
  5373. #~ msgid "Heat zone length"
  5374. #~ msgstr "Longitud de la zona térmica"
  5375. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5376. #~ msgid "Heat up speed"
  5377. #~ msgstr "Velocidad de calentamiento"
  5378. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5379. #~ msgid "Cool down speed"
  5380. #~ msgstr "Velocidad de enfriamiento"
  5381. #~ msgctxt "machine_gcode_flavor label"
  5382. #~ msgid "G-code flavour"
  5383. #~ msgstr "Tipo de GCode"
  5384. #~ msgctxt "machine_disallowed_areas label"
  5385. #~ msgid "Disallowed areas"
  5386. #~ msgstr "Áreas no permitidas"
  5387. #~ msgctxt "machine_head_polygon label"
  5388. #~ msgid "Machine head polygon"
  5389. #~ msgstr "Polígono del cabezal de la máquina"
  5390. #~ msgctxt "machine_head_with_fans_polygon label"
  5391. #~ msgid "Machine head & Fan polygon"
  5392. #~ msgstr "Polígono del cabezal de la máquina y del ventilador"
  5393. #~ msgctxt "gantry_height label"
  5394. #~ msgid "Gantry height"
  5395. #~ msgstr "Altura del puente"
  5396. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5397. #~ msgid "Offset With Extruder"
  5398. #~ msgstr "Desplazamiento con extrusor"
  5399. #~ msgctxt "adaptive_layer_height_enabled label"
  5400. #~ msgid "Use adaptive layers"
  5401. #~ msgstr "Utilizar capas de adaptación"
  5402. #~ msgctxt "adaptive_layer_height_variation label"
  5403. #~ msgid "Adaptive layers maximum variation"
  5404. #~ msgstr "Variación máxima de las capas de adaptación"
  5405. #~ msgctxt "adaptive_layer_height_variation_step label"
  5406. #~ msgid "Adaptive layers variation step size"
  5407. #~ msgstr "Tamaño de pasos de variación de las capas de adaptación"
  5408. #~ msgctxt "adaptive_layer_height_threshold label"
  5409. #~ msgid "Adaptive layers threshold"
  5410. #~ msgstr "Umbral de las capas de adaptación"
  5411. #~ msgctxt "skin_overlap description"
  5412. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5413. #~ msgstr "La cantidad de superposición entre el forro y las paredes son un porcentaje del ancho de la línea de forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Este es el porcentaje de la media de los anchos de las líneas del forro y la pared más profunda."
  5414. #~ msgctxt "skin_overlap_mm description"
  5415. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5416. #~ msgstr "Cantidad de superposición entre el forro y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el forro."
  5417. #~ msgctxt "switch_extruder_retraction_amount description"
  5418. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5419. #~ msgstr "Distancia de la retracción: utilice el valor cero para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento."
  5420. #~ msgctxt "retraction_combing description"
  5421. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5422. #~ msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores y además peinar solo en el relleno. La opción de «Sobre el relleno» actúa exactamente igual que la «No está en el forro» de las versiones de Cura anteriores."
  5423. #~ msgctxt "connect_skin_polygons description"
  5424. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5425. #~ msgstr "Conectar las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que la bajaría la calidad de la superficie superior."
  5426. #~ msgctxt "infill_pattern description"
  5427. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5428. #~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste del material. Los patrones de rejilla, triángulo, trihexagonal, cúbico, de octeto, cúbico bitruncado y transversal y concéntrico se imprimen en todas las capas por completo. El relleno cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección."
  5429. #~ msgctxt "infill_pattern option concentric_3d"
  5430. #~ msgid "Concentric 3D"
  5431. #~ msgstr "Concéntrico 3D"
  5432. #~ msgctxt "retraction_combing description"
  5433. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5434. #~ msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores peinando solo dentro del relleno."
  5435. #~ msgctxt "support_pattern option concentric_3d"
  5436. #~ msgid "Concentric 3D"
  5437. #~ msgstr "Concéntrico 3D"
  5438. #~ msgctxt "support_interface_pattern option concentric_3d"
  5439. #~ msgid "Concentric 3D"
  5440. #~ msgstr "Concéntrico 3D"
  5441. #~ msgctxt "support_roof_pattern option concentric_3d"
  5442. #~ msgid "Concentric 3D"
  5443. #~ msgstr "Concéntrico 3D"
  5444. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5445. #~ msgid "Concentric 3D"
  5446. #~ msgstr "Concéntrico 3D"
  5447. #~ msgctxt "raft_base_line_spacing label"
  5448. #~ msgid "Raft Line Spacing"
  5449. #~ msgstr "Espaciado de líneas de la balsa"
  5450. #~ msgctxt "prime_tower_wall_thickness label"
  5451. #~ msgid "Prime Tower Thickness"
  5452. #~ msgstr "Grosor de la torre auxiliar"
  5453. #~ msgctxt "prime_tower_wall_thickness description"
  5454. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5455. #~ msgstr "El grosor de la torre auxiliar hueca. Un grosor mayor de la mitad del volumen mínimo de la torre auxiliar dará lugar a una torre auxiliar densa."
  5456. #~ msgctxt "dual_pre_wipe label"
  5457. #~ msgid "Wipe Nozzle After Switch"
  5458. #~ msgstr "Limpiar tobera después de cambiar"
  5459. #~ msgctxt "dual_pre_wipe description"
  5460. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5461. #~ msgstr "Tras cambiar de extrusor, limpie el material que rezuma de la tobera en el primer objeto que imprima. Esto lleva a cabo un movimiento de limpieza lento y suave en un lugar en el que el material que rezuma produzca el menor daño posible a la calidad superficial de la impresión."
  5462. #~ msgctxt "prime_tower_purge_volume label"
  5463. #~ msgid "Prime Tower Purge Volume"
  5464. #~ msgstr "Volumen de purga de la torre auxiliar"
  5465. #~ msgctxt "prime_tower_purge_volume description"
  5466. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5467. #~ msgstr "Cantidad de filamentos que purgar al limpiar la torre auxiliar. La purga sirve para compensar la pérdida de filamentos que se produce durante el rezumado cuando la tobera está inactiva."
  5468. #~ msgctxt "bridge_wall_max_overhang label"
  5469. #~ msgid "Bridge Wall Max Overhang"
  5470. #~ msgstr "Voladizo máximo de pared del puente"
  5471. #~ msgctxt "bridge_wall_max_overhang description"
  5472. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5473. #~ msgstr "Ancho máximo permitido de la cámara de aire por debajo de una línea de pared antes imprimir la pared utilizando los ajustes de puente. Se expresa como porcentaje del ancho de la línea de la pared. Si la cámara de aire es mayor, la línea de la pared de imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes habituales. Cuando menor sea el valor, más probable es que las líneas de pared del voladizo se impriman utilizando ajustes de puente."
  5474. #~ msgctxt "optimize_wall_printing_order description"
  5475. #~ 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."
  5476. #~ msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización."
  5477. #~ msgctxt "retraction_combing option noskin"
  5478. #~ msgid "No Skin"
  5479. #~ msgstr "Sin forro"
  5480. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5481. #~ msgid "Alternate Cross 3D Pockets"
  5482. #~ msgstr "Alternar bolsas 3D en cruz"
  5483. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5484. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5485. #~ msgstr "Solo se aplica a mitad de los cruces en patrones de cruz 3D y alterna la ubicación de las bolsas entre las alturas a las que el patrón coincide consigo mismo."
  5486. #~ msgctxt "infill_hollow label"
  5487. #~ msgid "Hollow Out Objects"
  5488. #~ msgstr "Vaciar objetos"
  5489. #~ msgctxt "infill_hollow description"
  5490. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5491. #~ msgstr "Eliminar totalmente el relleno y hacer que el interior del objeto reúna los requisitos para tener una estructura de soporte."
  5492. #~ msgctxt "adaptive_layer_height_variation description"
  5493. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5494. #~ msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base en mm."
  5495. #~ msgctxt "center_object label"
  5496. #~ msgid "Center object"
  5497. #~ msgstr "Centrar objeto"
  5498. #~ msgctxt "mesh_position_x label"
  5499. #~ msgid "Mesh position x"
  5500. #~ msgstr "Posición X en la malla"
  5501. #~ msgctxt "mesh_position_y label"
  5502. #~ msgid "Mesh position y"
  5503. #~ msgstr "Posición Y en la malla"
  5504. #~ msgctxt "mesh_position_z label"
  5505. #~ msgid "Mesh position z"
  5506. #~ msgstr "Posición Z en la malla"
  5507. #~ msgctxt "machine_start_gcode label"
  5508. #~ msgid "Start GCode"
  5509. #~ msgstr "Gcode inicial"
  5510. #~ msgctxt "machine_start_gcode description"
  5511. #~ msgid ""
  5512. #~ "Gcode commands to be executed at the very start - separated by \n"
  5513. #~ "."
  5514. #~ msgstr ""
  5515. #~ "Los comandos de Gcode que se ejecutarán justo al inicio - separados por \n"
  5516. #~ "."
  5517. #~ msgctxt "machine_end_gcode label"
  5518. #~ msgid "End GCode"
  5519. #~ msgstr "Gcode final"
  5520. #~ msgctxt "machine_end_gcode description"
  5521. #~ msgid ""
  5522. #~ "Gcode commands to be executed at the very end - separated by \n"
  5523. #~ "."
  5524. #~ msgstr ""
  5525. #~ "Los comandos de Gcode que se ejecutarán justo al final - separados por \n"
  5526. #~ "."
  5527. #~ msgctxt "machine_gcode_flavor label"
  5528. #~ msgid "Gcode flavour"
  5529. #~ msgstr "Tipo de Gcode"
  5530. #~ msgctxt "machine_gcode_flavor description"
  5531. #~ msgid "The type of gcode to be generated."
  5532. #~ msgstr "Tipo de Gcode que se va a generar."
  5533. #~ msgctxt "meshfix_keep_open_polygons description"
  5534. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  5535. #~ msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado."
  5536. #~ msgctxt "relative_extrusion description"
  5537. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  5538. #~ msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode."
  5539. #~ msgctxt "infill_offset_x description"
  5540. #~ msgid "The infill pattern is offset this distance along the X axis."
  5541. #~ msgstr "El patrón de relleno se desplaza esta distancia a lo largo del eje X."
  5542. #~ msgctxt "infill_offset_y description"
  5543. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5544. #~ msgstr "El patrón de relleno se desplaza esta distancia a lo largo del eje Y."
  5545. #~ msgctxt "infill_overlap description"
  5546. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5547. #~ msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno."
  5548. #~ msgctxt "skin_overlap description"
  5549. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5550. #~ msgstr "Cantidad de superposición entre el forro y las paredes como porcentaje del ancho de línea. Una ligera superposición permite que las paredes conecten firmemente con el forro. Este es el porcentaje de la media de los anchos de las líneas del forro y la pared más profunda."
  5551. #~ msgctxt "material_bed_temperature description"
  5552. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5553. #~ msgstr "Temperatura de la placa de impresión una vez caliente. Si el valor es 0, la plataforma no se calentará en esta impresión."
  5554. #~ msgctxt "wall_x_extruder_nr label"
  5555. #~ msgid "Inner Walls Extruder"
  5556. #~ msgstr "Extrusor de paredes interiores"
  5557. #~ msgctxt "infill_pattern description"
  5558. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5559. #~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambia de dirección en capas alternas, con lo que se reduce el coste del material. Los patrones de rejilla, triángulo, cúbico, de octeto, cúbico bitruncado y concéntrico se imprimen en todas las capas por completo. El relleno cúbico, cúbico bitruncado y de octeto cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección."
  5560. #~ msgctxt "zig_zaggify_infill description"
  5561. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5562. #~ msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y reduce el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado."
  5563. #~ msgctxt "skirt_gap description"
  5564. #~ msgid ""
  5565. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5566. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5567. #~ msgstr ""
  5568. #~ "La distancia horizontal entre la falda y la primera capa de la impresión.\n"
  5569. #~ "Esta es la distancia mínima; múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia."
  5570. #~ msgctxt "z_offset_layer_0 label"
  5571. #~ msgid "Initial Layer Z Offset"
  5572. #~ msgstr "Desplazamiento Z de la capa inicial"
  5573. #~ msgctxt "z_offset_layer_0 description"
  5574. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5575. #~ msgstr "El extrusor se desplaza de la altura normal de la primera capa con este valor, el cual puede ser positivo (elevado) o negativo (bajo). Algunas clases de filamentos se adhieren mejor a la placa de impresión si se levanta ligeramente el extrusor."
  5576. #~ msgctxt "z_offset_taper_layers label"
  5577. #~ msgid "Z Offset Taper Layers"
  5578. #~ msgstr "Desplazamiento Z de capas en disminución"
  5579. #~ msgctxt "z_offset_taper_layers description"
  5580. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5581. #~ msgstr "Si no es cero, el desplazamiento Z se reduce a cero en las capas. Un valor de cero implica que el desplazamiento Z se mantiene constante en todas las capas de impresión."
  5582. #~ msgctxt "raft_smoothing description"
  5583. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  5584. #~ msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo."
  5585. #~ msgctxt "infill_pattern description"
  5586. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5587. #~ msgstr "Patrón del material de relleno de la impresión. El relleno de línea y zigzag cambian de dirección en capas alternas, reduciendo así el coste del material. Los patrones de rejilla, triángulo, cúbico, tetraédrico y concéntrico se imprimen en todas las capas por completo. El relleno cúbico y el tetraédrico cambian en cada capa para proporcionar una distribución de fuerza equitativa en cada dirección."
  5588. #~ msgctxt "infill_pattern option tetrahedral"
  5589. #~ msgid "Tetrahedral"
  5590. #~ msgstr "Tetraédrico"
  5591. #~ msgctxt "expand_skins_into_infill label"
  5592. #~ msgid "Expand Skins Into Infill"
  5593. #~ msgstr "Expandir forros en el relleno"
  5594. #~ msgctxt "expand_skins_into_infill description"
  5595. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5596. #~ msgstr "Expanda las áreas de forro del forro superior e inferior en superficies planas. De forma predeterminada, los forros se detienen por debajo de las líneas de pared que rodean el relleno, pero pueden aparecer agujeros si su densidad es muy baja. Esta configuración expande los forros más allá de las líneas de pared de modo que el relleno de la siguiente capa recae en el forro."
  5597. #~ msgctxt "expand_upper_skins label"
  5598. #~ msgid "Expand Top Skins Into Infill"
  5599. #~ msgstr "Expandir forros superiores en el relleno"
  5600. #~ msgctxt "expand_upper_skins description"
  5601. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5602. #~ msgstr "Expanda las áreas del forro superior (áreas con aire por encima) para que soporten el relleno que tiene arriba."
  5603. #~ msgctxt "expand_lower_skins label"
  5604. #~ msgid "Expand Bottom Skins Into Infill"
  5605. #~ msgstr "Expandir forros inferiores en el relleno"
  5606. #~ msgctxt "expand_lower_skins description"
  5607. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5608. #~ msgstr "Expanda las áreas del forro inferior (áreas con aire por debajo) para que queden sujetas por las capas de relleno superiores e inferiores."
  5609. #~ msgctxt "expand_skins_expand_distance description"
  5610. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5611. #~ msgstr "Distancia de expansión de los forros en el relleno. La distancia predeterminada es suficiente para cubrir el hueco que existe entre las líneas de relleno y evitará que aparezcan agujeros en el forro en aquellas áreas en las que la densidad del relleno es baja. A menudo una distancia más pequeña es suficiente."
  5612. #~ msgctxt "support_skip_some_zags label"
  5613. #~ msgid "Skip Some ZigZags Connections"
  5614. #~ msgstr "Omitir algunas conexiones en zigzag"
  5615. #~ msgctxt "support_skip_some_zags description"
  5616. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5617. #~ msgstr "Omite algunas conexiones en zigzag para que la estructura de soporte se rompa fácilmente."
  5618. #~ msgctxt "support_zag_skip_count label"
  5619. #~ msgid "ZigZag Connection Skip Count"
  5620. #~ msgstr "Omitir recuento de conexión en zigzag"
  5621. #~ msgctxt "support_zag_skip_count description"
  5622. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5623. #~ msgstr "Omite una de cada N líneas de conexión para que la estructura de soporte se rompa fácilmente."
  5624. #~ msgctxt "machine_show_variants label"
  5625. #~ msgid "Show machine variants"
  5626. #~ msgstr "Mostrar versiones de la máquina"
  5627. #~ msgctxt "material_bed_temp_wait label"
  5628. #~ msgid "Wait for build plate heatup"
  5629. #~ msgstr "Esperar a que la placa de impresión se caliente"
  5630. #~ msgctxt "material_print_temp_wait label"
  5631. #~ msgid "Wait for nozzle heatup"
  5632. #~ msgstr "Esperar a la que la tobera se caliente"
  5633. #~ msgctxt "material_print_temp_prepend label"
  5634. #~ msgid "Include material temperatures"
  5635. #~ msgstr "Incluir temperaturas del material"
  5636. #~ msgctxt "material_bed_temp_prepend label"
  5637. #~ msgid "Include build plate temperature"
  5638. #~ msgstr "Incluir temperatura de placa de impresión"
  5639. #~ msgctxt "machine_width label"
  5640. #~ msgid "Machine width"
  5641. #~ msgstr "Ancho de la máquina"
  5642. #~ msgctxt "machine_depth label"
  5643. #~ msgid "Machine depth"
  5644. #~ msgstr "Profundidad de la máquina"
  5645. #~ msgctxt "machine_shape label"
  5646. #~ msgid "Build plate shape"
  5647. #~ msgstr "Forma de la placa de impresión"
  5648. #~ msgctxt "machine_height label"
  5649. #~ msgid "Machine height"
  5650. #~ msgstr "Altura de la máquina"
  5651. #~ msgctxt "machine_heated_bed label"
  5652. #~ msgid "Has heated build plate"
  5653. #~ msgstr "Tiene una placa de impresión caliente"
  5654. #~ msgctxt "machine_center_is_zero label"
  5655. #~ msgid "Is center origin"
  5656. #~ msgstr "El origen está centrado"
  5657. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5658. #~ msgid "RepRap (Marlin/Sprinter)"
  5659. #~ msgstr "RepRap (Marlin/Sprinter)"
  5660. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5661. #~ msgid "RepRap (Volumetric)"
  5662. #~ msgstr "RepRap (Volumetric)"
  5663. #~ msgctxt "wall_thickness description"
  5664. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5665. #~ msgstr "Grosor de las paredes exteriores en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes."
  5666. #~ msgctxt "skin_overlap description"
  5667. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5668. #~ msgstr "Cantidad de superposición entre el forro y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el forro."
  5669. #~ msgctxt "support_interface_line_width description"
  5670. #~ msgid "Width of a single support interface line."
  5671. #~ msgstr "Ancho de una sola línea de la interfaz de soporte."
  5672. #~ msgctxt "sub_div_rad_mult label"
  5673. #~ msgid "Cubic Subdivision Radius"
  5674. #~ msgstr "Radio de la subdivisión cúbica"
  5675. #~ msgctxt "sub_div_rad_mult description"
  5676. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  5677. #~ msgstr "Un multiplicador del radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más subdivisiones habrá, es decir, mayor cantidad de cubos pequeños."
  5678. #~ msgctxt "expand_upper_skins label"
  5679. #~ msgid "Expand Upper Skins"
  5680. #~ msgstr "Expandir los forros superiores"
  5681. #~ msgctxt "expand_upper_skins description"
  5682. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  5683. #~ msgstr "Expanda las áreas del forro superior (áreas con aire por encima) para que soporte el relleno que tiene arriba."
  5684. #~ msgctxt "expand_lower_skins label"
  5685. #~ msgid "Expand Lower Skins"
  5686. #~ msgstr "Expandir los forros inferiores"
  5687. #~ msgctxt "expand_lower_skins description"
  5688. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5689. #~ msgstr "Expanda las áreas del forro inferior (áreas con aire por debajo) para que queden sujetas por las capas de relleno superiores e inferiores."
  5690. #~ msgctxt "speed_support_interface description"
  5691. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  5692. #~ msgstr "Velocidad a la que se imprimen los techos y las partes inferiores del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo."
  5693. #~ msgctxt "acceleration_support_interface description"
  5694. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  5695. #~ msgstr "Aceleración a la que se imprimen los techos y las partes inferiores del soporte. Imprimirlos a aceleraciones inferiores puede mejorar la calidad del voladizo."
  5696. #~ msgctxt "jerk_support_interface description"
  5697. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  5698. #~ msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y las partes inferiores del soporte."
  5699. #~ msgctxt "support_enable label"
  5700. #~ msgid "Enable Support"
  5701. #~ msgstr "Habilitar el soporte"
  5702. #~ msgctxt "support_enable description"
  5703. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5704. #~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos."
  5705. #~ msgctxt "support_interface_extruder_nr description"
  5706. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  5707. #~ msgstr "El tren extrusor que se utiliza para imprimir los techos y partes inferiores del soporte. Se emplea en la extrusión múltiple."
  5708. #~ msgctxt "support_bottom_stair_step_height description"
  5709. #~ 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."
  5710. #~ msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables."
  5711. #~ msgctxt "support_bottom_height label"
  5712. #~ msgid "Support Bottom Thickness"
  5713. #~ msgstr "Grosor inferior del soporte"
  5714. #~ msgctxt "support_bottom_height description"
  5715. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  5716. #~ msgstr "Grosor de las partes inferiores del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte."
  5717. #~ msgctxt "support_interface_skip_height description"
  5718. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  5719. #~ msgstr "A la hora de comprobar si existe un modelo por encima del soporte, tome las medidas de la altura determinada. Reducir los valores hará que se segmente más despacio, mientras que valores más altos pueden provocar que el soporte normal se imprima en lugares en los que debería haber una interfaz de soporte."
  5720. #~ msgctxt "support_interface_density description"
  5721. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  5722. #~ msgstr "Ajusta la densidad de los techos y partes inferiores de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar."
  5723. #~ msgctxt "support_interface_line_distance label"
  5724. #~ msgid "Support Interface Line Distance"
  5725. #~ msgstr "Distancia de línea de la interfaz de soporte"
  5726. #~ msgctxt "support_interface_line_distance description"
  5727. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  5728. #~ msgstr "Distancia entre las líneas de la interfaz de soporte impresas. Este ajuste se calcula según la Densidad de la interfaz de soporte, pero se puede ajustar de forma independiente."
  5729. #~ msgctxt "magic_spiralize description"
  5730. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  5731. #~ msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función se denominaba Joris en versiones anteriores."
  5732. #~ msgctxt "material_print_temperature description"
  5733. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  5734. #~ msgstr "Temperatura que se usa para la impresión. Se ajusta a 0 para precalentar la impresora de forma manual."
  5735. #~ msgctxt "material_bed_temperature description"
  5736. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  5737. #~ msgstr "Temperatura de la placa de impresión una vez caliente. Utilice el valor cero para precalentar la impresora de forma manual."
  5738. #~ msgctxt "support_z_distance description"
  5739. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  5740. #~ msgstr "Distancia desde la parte superior/inferior de la estructura de soporte a la impresión. Este hueco ofrece holgura para retirar los soportes tras imprimir el modelo. Esta valor se redondea hacia al múltiplo de la altura de la capa inferior más cercano."
  5741. #~ msgctxt "z_seam_type option back"
  5742. #~ msgid "Back"
  5743. #~ msgstr "Parte posterior"
  5744. #~ msgctxt "multiple_mesh_overlap label"
  5745. #~ msgid "Dual Extrusion Overlap"
  5746. #~ msgstr "Superposición de extrusión doble"